diff --git a/.gitignore b/.gitignore index 6d8b9b0c..200982db 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,9 @@ slides_sources/build *.pyc *junk* +# testing detritus +.cache + #ignore sublime workspace files *.sublime* @@ -13,3 +16,6 @@ slides_sources/build # editor back-up files *.*~ + +# pycache +__pycache__/* \ No newline at end of file diff --git a/Examples/Session01/schedule.py b/Examples/Session01/schedule.py index fb9602de..4bdb59db 100644 --- a/Examples/Session01/schedule.py +++ b/Examples/Session01/schedule.py @@ -1,5 +1,5 @@ """ -Schedule students for lightning talks, fall 2014 +Schedule students for lightning talks, fall 2015 """ import random @@ -8,33 +8,36 @@ # remove the header line del students[0] -# clean it up a bit: +# strip the whitespace +students = [line.strip() for line in students] # remove the languages, colon, etc. students = [line.split(":")[0] for line in students] # reverse the first, last names - # separate them: students = [line.split(",") for line in students] - # put them back together -students = [first + last for last, first in students] +students = ["{} {}".format(first.strip(), last) for last, first in students] +# put them in random order random.shuffle(students) -weeks = range(2,11) - -weeks4 = weeks*4 +# make a list from 1 to 10 +weeks = list(range(2, 11)) -schedule = zip(weeks4, students) +# make three of them... +weeks = weeks * 4 -schedule.sort() +# put the students together with the weeks +schedule = zip(weeks, students) -outfile = open('schedule.txt', 'w') +# sort it for output +schedule = sorted(schedule) -for week, student in schedule: - line = 'week %s: %s\n' % (week, student) - print line, - outfile.write(line) -outfile.close() +# write it to a file (and print to screen) +with open('schedule.txt', 'w') as outfile: + for week, student in schedule: + line = 'week {}: {}\n'.format(week, student) + print(line) + outfile.write(line) diff --git a/Examples/Session01/schedule.txt b/Examples/Session01/schedule.txt deleted file mode 100644 index 59a173f1..00000000 --- a/Examples/Session01/schedule.txt +++ /dev/null @@ -1,35 +0,0 @@ -week 2: Chantal Huynh -week 2: Eric Buer -week 2: Ian M Davis -week 2: Schuyler Alan Schwafel -week 3: James Brent Nunn -week 3: Lauren Fries -week 3: Lesley D Reece -week 3: Michel Claessens -week 4: Benjamin C Mier -week 4: Robert W Perkins -week 4: Vinay Gupta -week 4: Wayne R Fukuhara -week 5: Darcy Balcarce -week 5: David Fugelso -week 5: Henry B Fischer -week 5: Kyle R Hart -week 6: Aleksey Kramer -week 6: Alexander R Galvin -week 6: Gideon I Sylvan -week 6: Hui Zhang -week 7: Andrew P Klock -week 7: Danielle G Marcos -week 7: Ousmane Conde -week 7: Salim Hassan Hamed -week 8: Alireza Hashemloo -week 8: Arielle R Simmons -week 8: Eric W Westman -week 8: Ryan J Albright -week 9: Alexandra N Kazakova -week 9: Erik Ivan Lottsfeldt -week 9: Louis John Ascoli -week 9: Ralph P Brand -week 10: Bryan L Davis -week 10: Carolyn J Evans -week 10: Changqing Zhu diff --git a/Examples/Session01/students.txt b/Examples/Session01/students.txt deleted file mode 100644 index 59d4840a..00000000 --- a/Examples/Session01/students.txt +++ /dev/null @@ -1,36 +0,0 @@ -name: languages -Albright, Ryan J : VBA, -Ascoli, Louis John : Basic, assm, shell -Balcarce, Darcy : matlab, autocad, python -Brand, Ralph P : C, C++, SQL, -Buer, Eric : matlab, VBA, SQL, -Claessens, Michel : VBA, basic SQL, pascal, matlab -Conde, Ousmane : -Davis, Bryan L : -Davis, Ian M : C++ -Evans, Carolyn J : SQL, -Fischer, Henry B : C, VB, SQL, SAS, -Fries, Lauren : python -Fugelso, David : C, C++, C#, Java -Fukuhara, Wayne R : VB, -Galvin, Alexander R : shell, C++, python -Gupta, Vinay : C, C++, shell -Hamed, Salim Hassan : Java, R, SAS, VBA -Hart, Kyle R : QBasic, HTML, -Hashemloo, Alireza :Javascript, PHP, C++ -Huynh, Chantal : Basic, SQL, Stata -Kazakova, Alexandra N : R, python, -Klock, Andrew P : C++, R, perl -Kramer, Aleksey :Java, R, shell -Lottsfeldt, Erik Ivan : basic, fortran, -Marcos, Danielle G : python -Mier, Benjamin C : C++, C#, -Nunn, James Brent : shell, SQL, perl, pl1 -Perkins, Robert W : fortran, pascal, stata, javascript, sql -Reece, Lesley D : html, SQL, PLSQL, perl, shell -Schwafel, Schuyler Alan : bash, python, perl, php -Simmons, Arielle R : Scheme, Java, VBA, python -Sylvan, Gideon I : -Westman, Eric W : C#, PHP, SQL, javascript -Zhang, Hui : FoxBase -Zhu, Changqing : C, diff --git a/Examples/Session01/test.py b/Examples/Session01/test.py index 2304d6c1..8a557325 100644 --- a/Examples/Session01/test.py +++ b/Examples/Session01/test.py @@ -1,8 +1,12 @@ x = 5 -y = 56 +y = 55 + +print(x, y) -print x, y def f(): x = 5 + return x +def f2(): + 5 + "5" diff --git a/Examples/Session02/codingbat.rst b/Examples/Session02/codingbat.rst index 9f3c5d74..b1dddb52 100644 --- a/Examples/Session02/codingbat.rst +++ b/Examples/Session02/codingbat.rst @@ -1,7 +1,8 @@ + Coding Bat examples -###################### +#################### -Warmup-1 > monkey_trouble +Warmup-1 > monkey_trouble ============================ We have two monkeys, a and b, and the parameters a_smile and b_smile indicate if each is smiling. We are in trouble if they are both smiling or if neither of them is smiling. Return True if we are in trouble:: @@ -11,38 +12,38 @@ We have two monkeys, a and b, and the parameters a_smile and b_smile indicate if monkey_trouble(True, False) → False -Warmup-1 > sleep_in +Warmup-1 > sleep_in ======================= -The parameter weekday is True if it is a weekday, and the parameter vacation is True if we are on vacation. We sleep in if it is not a weekday or we're on vacation. Return True if we sleep in. +The parameter weekday is True if it is a weekday, and the parameter vacation is True if we are on vacation. We sleep in if it is not a weekday or we're on vacation. Return True if we sleep in. sleep_in(False, False) → True sleep_in(True, False) → False sleep_in(False, True) → True -Warmup-1 > diff21 -======================= +Warmup-1 > diff21 +================= -Given an int n, return the absolute difference between n and 21, except return double the absolute difference if n is over 21. +Given an int n, return the absolute difference between n and 21, except return double the absolute difference if n is over 21. diff21(19) → 2 diff21(10) → 11 diff21(21) → 0 -Warmup-1 > makes10 -====================== +Warmup-1 > makes10 +=================== -Given 2 ints, a and b, return True if one if them is 10 or if their sum is 10. +Given 2 ints, a and b, return True if one if them is 10 or if their sum is 10. makes10(9, 10) → True makes10(9, 9) → False makes10(1, 9) → True -Logic-1 > cigar_party +Logic-1 > cigar_party ====================== -When squirrels get together for a party, they like to have cigars. A squirrel party is successful when the number of cigars is between 40 and 60, inclusive. Unless it is the weekend, in which case there is no upper bound on the number of cigars. Return True if the party with the given values is successful, or False otherwise. +When squirrels get together for a party, they like to have cigars. A squirrel party is successful when the number of cigars is between 40 and 60, inclusive. Unless it is the weekend, in which case there is no upper bound on the number of cigars. Return True if the party with the given values is successful, or False otherwise. cigar_party(30, False) → False cigar_party(50, False) → True diff --git a/Examples/Session02/factorial.py b/Examples/Session02/factorial.py new file mode 100644 index 00000000..2a069e0e --- /dev/null +++ b/Examples/Session02/factorial.py @@ -0,0 +1,12 @@ +#!/usr/bin python3 + +""" +Simple factorial function -- to demostrate recursion +""" + + +def fact(n): + if n == 0: + return 1 + else: + return n * fact(n-1) diff --git a/Examples/Session03/mailroom_start.py b/Examples/Session03/mailroom_start.py new file mode 100644 index 00000000..9605afe7 --- /dev/null +++ b/Examples/Session03/mailroom_start.py @@ -0,0 +1,42 @@ +#!/usr/bin/env python + + +def print_report(): + print("This will print a report") + + +def send_thanks(): + print("This will write a thank you note") + +# here is where triple quoted strings can be helpful +msg = """ +What would you like to do? + +To send a thank you: type "s" +To print a report: type "p" +To exit: type "x" +""" + + +def main(): + """ + run the main interactive loop + """ + + response = '' + # keep asking until the users responds with an 'x' + while True: # make sure there is a break if you have infinite loop! + print(msg) + response = input("==> ").strip() # strip() in case there are any spaces + + if response == 'p': + print_report() + elif response == 's': + send_thanks() + elif response == 'x': + break + else: + print('please type "s", "p", or "x"') + +if __name__ == "__main__": + main() diff --git a/Examples/Session03/slicing_lab.py b/Examples/Session03/slicing_lab.py new file mode 100644 index 00000000..a13c5623 --- /dev/null +++ b/Examples/Session03/slicing_lab.py @@ -0,0 +1,31 @@ +# slicing lab + + +def swap(seq): + return seq[-1:]+seq[1:-1]+seq[:1] + + +assert swap('something') == 'gomethins' +assert swap(tuple(range(10))) == (9,1,2,3,4,5,6,7,8,0) + +def rem(seq): + return seq[::2] + +assert rem('a word') == 'awr' + +def rem4(seq): + return seq[4:-4:2] + +print(rem4( (1,2,3,4,5,6,7,8,9,10,11), ) ) + +def reverse(seq): + return seq[::-1] + +print(reverse('a string')) + +def thirds(seq): + i = len(seq)//3 + #return seq[i*2:i*3+1] + seq[:i] + seq[i:i*2] + return seq[i:-i] + seq[-i:] + seq[:i] + +print (thirds(tuple(range(12)))) diff --git a/Examples/Session04/__main__example.py b/Examples/Session04/__main__example.py new file mode 100755 index 00000000..603f2e57 --- /dev/null +++ b/Examples/Session04/__main__example.py @@ -0,0 +1,13 @@ +#!/usr/bin/env python + +print("every module has a __name__") + +print("What it is depends on how it is used") + +print("right now, this module's __name__ is: {}".format(__name__)) + +# so if you want coce to run only when a module is a top level script, +# you use this clause: +#if __name__ == "__main__": + +print("I must be running as a top-level script") diff --git a/Examples/Session05/arg_test.py b/Examples/Session05/arg_test.py index c84b5bdf..83c76e80 100644 --- a/Examples/Session05/arg_test.py +++ b/Examples/Session05/arg_test.py @@ -2,5 +2,4 @@ import sys -print sys.argv - +print(sys.argv) diff --git a/Examples/Session05/codingbat.py b/Examples/Session05/codingbat.py index 1dcf82eb..3971c4eb 100644 --- a/Examples/Session05/codingbat.py +++ b/Examples/Session05/codingbat.py @@ -10,6 +10,4 @@ def sleep_in(weekday, vacation): - return not (weekday == True and vacation == False) - - + return not (weekday and vacation) diff --git a/Examples/Session05/test_codingbat.py b/Examples/Session05/test_codingbat.py index 6e845b0e..6681bdc3 100755 --- a/Examples/Session05/test_codingbat.py +++ b/Examples/Session05/test_codingbat.py @@ -14,7 +14,7 @@ def test_false_false(): def test_true_false(): - assert not ( sleep_in(True, False) ) + assert not (sleep_in(True, False)) def test_false_true(): diff --git a/Examples/Session05/test_pytest_parameter.py b/Examples/Session05/test_pytest_parameter.py index 52449af3..4e82a3ab 100644 --- a/Examples/Session05/test_pytest_parameter.py +++ b/Examples/Session05/test_pytest_parameter.py @@ -8,6 +8,7 @@ """ import pytest + # a (really simple) function to test def add(a, b): """ @@ -17,14 +18,14 @@ def add(a, b): # now some test data: -test_data = [ ( ( 2, 3), 5), - ( (-3, 2), -1), - ( ( 2, 0.5), 2.5), - ( ( "this", "that"), "this that"), - ( ( [1,2,3], [6,7,8]), [1,2,3,6,7,8]), - ] +test_data = [((2, 3), 5), + ((-3, 2), -1), + ((2, 0.5), 2.5), + (("this", "that"), "this that"), + (([1, 2, 3], [6, 7, 8]), [1, 2, 3, 6, 7, 8]), + ] + @pytest.mark.parametrize(("input", "result"), test_data) def test_add(input, result): assert add(*input) == result - diff --git a/Examples/Session05/test_random_pytest.py b/Examples/Session05/test_random_pytest.py index e8b80f8c..c798efa9 100644 --- a/Examples/Session05/test_random_pytest.py +++ b/Examples/Session05/test_random_pytest.py @@ -8,20 +8,19 @@ import pytest -seq = range(10) +seq = list(range(10)) def test_shuffle(): # make sure the shuffled sequence does not lose any elements random.shuffle(seq) - seq.sort() - print "seq:", seq - ## expect this to fail -- so we can see the output. - assert seq == range(10) + # seq.sort() # this will amke it fail, so we can see output + print("seq:", seq) # only see output if it fails + assert seq == list(range(10)) def test_shuffle_immutable(): - pytest.raises(TypeError, random.shuffle, (1,2,3) ) + pytest.raises(TypeError, random.shuffle, (1, 2, 3)) def test_choice(): diff --git a/Examples/Session05/test_random_unitest.py b/Examples/Session05/test_random_unitest.py index 6458e6ce..f825be5b 100644 --- a/Examples/Session05/test_random_unitest.py +++ b/Examples/Session05/test_random_unitest.py @@ -1,19 +1,20 @@ import random import unittest + class TestSequenceFunctions(unittest.TestCase): def setUp(self): - self.seq = range(10) + self.seq = list(range(10)) def test_shuffle(self): # make sure the shuffled sequence does not lose any elements random.shuffle(self.seq) self.seq.sort() - self.assertEqual(self.seq, range(10)) + self.assertEqual(self.seq, list(range(10))) # should raise an exception for an immutable sequence - self.assertRaises(TypeError, random.shuffle, (1,2,3) ) + self.assertRaises(TypeError, random.shuffle, (1, 2, 3)) def test_choice(self): element = random.choice(self.seq) @@ -26,4 +27,4 @@ def test_sample(self): self.assertTrue(element in self.seq) if __name__ == '__main__': - unittest.main() \ No newline at end of file + unittest.main() diff --git a/Examples/Session06/cigar_party.py b/Examples/Session06/cigar_party.py index 18878463..992d99bd 100644 --- a/Examples/Session06/cigar_party.py +++ b/Examples/Session06/cigar_party.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python """ When squirrels get together for a party, they like to have cigars. @@ -11,18 +10,6 @@ """ -def cigar_party(cigars, is_weekend): - """ - basic solution - """ - if ( 40 <= cigars <= 60 ) or ( cigars >= 40 and is_weekend): - return True - else: - return False +def cigar_party(num, weekend): + return num >= 40 and (num <= 60 or weekend) - -def cigar_party3(cigars, is_weekend): - """ - conditional expression - """ - return (cigars >= 40) if is_weekend else (cigars >= 40 and cigars <= 60) diff --git a/Examples/Session06/closure.py b/Examples/Session06/closure.py new file mode 100644 index 00000000..a7e7d07d --- /dev/null +++ b/Examples/Session06/closure.py @@ -0,0 +1,26 @@ +#!/usr/bin/env python + +""" +Example code for closures / currying +""" + +from functools import partial + + +def counter(start_at=0): + count = [start_at] + + def incr(): + count[0] += 1 + return count[0] + return incr + + +def power(base, exponent): + """returns based raised to the given exponent""" + return base ** exponent + +# now some specialized versions: + +square = partial(power, exponent=2) +cube = partial(power, exponent=3) diff --git a/Examples/Session06/codingbat.py b/Examples/Session06/codingbat.py new file mode 100644 index 00000000..25865839 --- /dev/null +++ b/Examples/Session06/codingbat.py @@ -0,0 +1,31 @@ +#!/usr/bin/env python + +""" +Examples from: http://codingbat.com + +Put here so we can write unit tests for them ourselves +""" + +# Python > Warmup-1 > sleep_in + +# The parameter weekday is True if it is a weekday, and the parameter +# vacation is True if we are on vacation. +# +# We sleep in if it is not a weekday or we're on vacation. +# Return True if we sleep in. + + +def sleep_in(weekday, vacation): + return not weekday or vacation + + +# We have two monkeys, a and b, and the parameters a_smile and b_smile +# indicate if each is smiling. + +# We are in trouble if they are both smiling or if neither of them is +# smiling. + +# Return True if we are in trouble. + +def monkey_trouble(a_smile, b_smile): + return a_smile is b_smile diff --git a/Examples/Session06/safe_input.py b/Examples/Session06/safe_input.py new file mode 100644 index 00000000..81785375 --- /dev/null +++ b/Examples/Session06/safe_input.py @@ -0,0 +1,25 @@ +def safe_input(): + try: + the_input = input("\ntype something >>> ") + except (KeyboardInterrupt, EOFError) as error: + print("the error: ", error) + error.extra_info = "extra info for testing" + # raise + return None + return the_input + +def main(): + safe_input() + +def divide(x,y): + try: + return x/y + except ZeroDivisionError as err: + print("you put in a zero!!!") + print("the exeption:", err) + err.args = (("very bad palce for a zero",)) + err.extra_stuff = "all kinds of things" + raise + +# if __name__ == '__main__': +# main() \ No newline at end of file diff --git a/Examples/Session06/test_cigar_party.py b/Examples/Session06/test_cigar_party.py index a03ca3c5..80bc0920 100644 --- a/Examples/Session06/test_cigar_party.py +++ b/Examples/Session06/test_cigar_party.py @@ -1,10 +1,20 @@ #!/usr/bin/env python -import cigar_party +""" +When squirrels get together for a party, they like to have cigars. +A squirrel party is successful when the number of cigars is between +40 and 60, inclusive. Unless it is the weekend, in which case there +is no upper bound on the number of cigars. -#cigar_party = cigar_party.cigar_party -#cigar_party = cigar_party.cigar_party2 -cigar_party = cigar_party.cigar_party3 +Return True if the party with the given values is successful, +or False otherwise. +""" + + +# you can change this import to test different versions +from cigar_party import cigar_party +# from cigar_party import cigar_party2 as cigar_party +# from cigar_party import cigar_party3 as cigar_party def test_1(): diff --git a/Examples/Session06/test_codingbat.py b/Examples/Session06/test_codingbat.py new file mode 100755 index 00000000..354dcb34 --- /dev/null +++ b/Examples/Session06/test_codingbat.py @@ -0,0 +1,43 @@ +#!/usr/bin/env python + +""" +test file for codingbat module + +This version can be run with nose or py.test +""" + +from codingbat import sleep_in, monkey_trouble + + +# tests for sleep_in +def test_false_false(): + assert sleep_in(False, False) + + +def test_true_false(): + assert not (sleep_in(True, False)) + + +def test_false_true(): + assert sleep_in(False, True) + + +def test_true_true(): + assert sleep_in(True, True) + + +# put tests for monkey_trouble here +# monkey_trouble(True, True) → True +# monkey_trouble(False, False) → True +# monkey_trouble(True, False) → False + +def test_monkey_true_true(): + assert monkey_trouble(True, True) + +def test_monkey_false_false(): + assert monkey_trouble(False, False) + +def test_monkey_true_false(): + assert monkey_trouble(True, False) is False + +# more! diff --git a/Examples/Session06/test_pytest_parameter.py b/Examples/Session06/test_pytest_parameter.py new file mode 100644 index 00000000..4e82a3ab --- /dev/null +++ b/Examples/Session06/test_pytest_parameter.py @@ -0,0 +1,31 @@ +#!/usr/bin/env python + +""" +pytest example of a parameterized test + +NOTE: there is a failure in here! can you fix it? + +""" +import pytest + + +# a (really simple) function to test +def add(a, b): + """ + returns the sum of a and b + """ + return a + b + +# now some test data: + +test_data = [((2, 3), 5), + ((-3, 2), -1), + ((2, 0.5), 2.5), + (("this", "that"), "this that"), + (([1, 2, 3], [6, 7, 8]), [1, 2, 3, 6, 7, 8]), + ] + + +@pytest.mark.parametrize(("input", "result"), test_data) +def test_add(input, result): + assert add(*input) == result diff --git a/Examples/Session06/test_random_pytest.py b/Examples/Session06/test_random_pytest.py new file mode 100644 index 00000000..441f239a --- /dev/null +++ b/Examples/Session06/test_random_pytest.py @@ -0,0 +1,43 @@ +#!/usr/bin/env python + +""" +port of the random unit tests from the python docs to py.test +""" + +import random +import pytest + + +seq = list(range(10)) + + +def test_shuffle(): + # make sure the shuffled sequence does not lose any elements + random.shuffle(seq) + # seq.sort() # commenting this out will make it fail, so we can see output + print("seq:", seq) # only see output if it fails + assert seq == list(range(10)) + + +def test_shuffle_immutable(): + """should get a TypeError with an imutable type """ + with pytest.raises(TypeError): + random.shuffle((1, 2, 3)) + + +def test_choice(): + """make sure a random item selected is in the original sequence""" + element = random.choice(seq) + assert (element in seq) + + +def test_sample(): + """make sure all items returned by sample are there""" + for element in random.sample(seq, 5): + assert element in seq + + +def test_sample_too_large(): + """should get a ValueError if you try to sample too many""" + with pytest.raises(ValueError): + random.sample(seq, 20) diff --git a/Examples/Session06/test_random_unitest.py b/Examples/Session06/test_random_unitest.py new file mode 100644 index 00000000..f825be5b --- /dev/null +++ b/Examples/Session06/test_random_unitest.py @@ -0,0 +1,30 @@ +import random +import unittest + + +class TestSequenceFunctions(unittest.TestCase): + + def setUp(self): + self.seq = list(range(10)) + + def test_shuffle(self): + # make sure the shuffled sequence does not lose any elements + random.shuffle(self.seq) + self.seq.sort() + self.assertEqual(self.seq, list(range(10))) + + # should raise an exception for an immutable sequence + self.assertRaises(TypeError, random.shuffle, (1, 2, 3)) + + def test_choice(self): + element = random.choice(self.seq) + self.assertTrue(element in self.seq) + + def test_sample(self): + with self.assertRaises(ValueError): + random.sample(self.seq, 20) + for element in random.sample(self.seq, 5): + self.assertTrue(element in self.seq) + +if __name__ == '__main__': + unittest.main() diff --git a/Examples/Session07/circle.py b/Examples/Session07/circle.py deleted file mode 100644 index a6545632..00000000 --- a/Examples/Session07/circle.py +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env python -"""circle class -- - -fill this in so it will pass all the tests. -""" -import math - - -class Circle(object): - pass diff --git a/Examples/Session06/class.py b/Examples/Session07/class.py similarity index 82% rename from Examples/Session06/class.py rename to Examples/Session07/class.py index 1c131142..ac9a99b4 100644 --- a/Examples/Session06/class.py +++ b/Examples/Session07/class.py @@ -1,8 +1,8 @@ -class C(object): +class C: x = 5 + def __init__(self, y): self.y = y + def meth(self, z): return self.x + self.y + z - - \ No newline at end of file diff --git a/Examples/Session06/class_demo.py b/Examples/Session07/class_demo.py similarity index 88% rename from Examples/Session06/class_demo.py rename to Examples/Session07/class_demo.py index 33841a88..e66590d1 100644 --- a/Examples/Session06/class_demo.py +++ b/Examples/Session07/class_demo.py @@ -1,5 +1,5 @@ -class C(object): +class C: x = 5 def __init__(self, y): diff --git a/Examples/Session06/html_render/.DS_Store b/Examples/Session07/html_render/.DS_Store similarity index 100% rename from Examples/Session06/html_render/.DS_Store rename to Examples/Session07/html_render/.DS_Store diff --git a/Examples/Session06/html_render/html_render.py b/Examples/Session07/html_render/html_render.py similarity index 100% rename from Examples/Session06/html_render/html_render.py rename to Examples/Session07/html_render/html_render.py diff --git a/Examples/Session06/html_render/run_html_render.py b/Examples/Session07/html_render/run_html_render.py similarity index 77% rename from Examples/Session06/html_render/run_html_render.py rename to Examples/Session07/html_render/run_html_render.py index 74e5c378..d282fdc9 100644 --- a/Examples/Session06/html_render/run_html_render.py +++ b/Examples/Session07/html_render/run_html_render.py @@ -7,46 +7,51 @@ """ -from cStringIO import StringIO - +from io import StringIO # importing the html_rendering code with a short name for easy typing. import html_render as hr -reload(hr) # reloading in case you are running this in iPython - # -- we want to make sure the latest version is used +# reloading in case you are running this in iPython +# -- we want to make sure the latest version is used +import importlib +importlib.reload(hr) -## writing the file out: +# writing the file out: def render_page(page, filename): """ render the tree of elements - This uses cSstringIO to render to memory, then dump to console and + This uses StringIO to render to memory, then dump to console and write to file -- very handy! """ f = StringIO() page.render(f, " ") - f.reset() + f.seek(0) - print f.read() + print(f.read()) - f.reset() - open(filename, 'w').write( f.read() ) + f.seek(0) + open(filename, 'w').write(f.read()) -## Step 1 -########## +# Step 1 +######### page = hr.Element() -page.append("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text") +page.append("Here is a paragraph of text -- there could be more of them, " + "but this is enough to show that we can do some text") page.append("And here is another piece of text -- you should be able to add any number") render_page(page, "test_html_output1.html") +# The rest of the steps have been commented out. +# Uncomment them a you move along with the assignment. + # ## Step 2 # ########## @@ -54,7 +59,8 @@ def render_page(page, filename): # body = hr.Body() -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text")) +# body.append(hr.P("Here is a paragraph of text -- there could be more of them, " +# "but this is enough to show that we can do some text")) # body.append(hr.P("And here is another piece of text -- you should be able to add any number")) @@ -74,7 +80,8 @@ def render_page(page, filename): # body = hr.Body() -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text")) +# body.append(hr.P("Here is a paragraph of text -- there could be more of them, " +# "but this is enough to show that we can do some text")) # body.append(hr.P("And here is another piece of text -- you should be able to add any number")) # page.append(body) @@ -93,7 +100,8 @@ def render_page(page, filename): # body = hr.Body() -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text", +# body.append(hr.P("Here is a paragraph of text -- there could be more of them, " +# "but this is enough to show that we can do some text", # style="text-align: center; font-style: oblique;")) # page.append(body) @@ -112,7 +120,8 @@ def render_page(page, filename): # body = hr.Body() -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text", +# body.append(hr.P("Here is a paragraph of text -- there could be more of them, " +# "but this is enough to show that we can do some text", # style="text-align: center; font-style: oblique;")) # body.append(hr.Hr()) @@ -133,7 +142,8 @@ def render_page(page, filename): # body = hr.Body() -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text", +# body.append(hr.P("Here is a paragraph of text -- there could be more of them, " +# "but this is enough to show that we can do some text", # style="text-align: center; font-style: oblique;")) # body.append(hr.Hr()) @@ -160,7 +170,8 @@ def render_page(page, filename): # body.append( hr.H(2, "PythonClass - Class 6 example") ) -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text", +# body.append(hr.P("Here is a paragraph of text -- there could be more of them, " +# "but this is enough to show that we can do some text", # style="text-align: center; font-style: oblique;")) # body.append(hr.Hr()) @@ -199,7 +210,8 @@ def render_page(page, filename): # body.append( hr.H(2, "PythonClass - Class 6 example") ) -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text", +# body.append(hr.P("Here is a paragraph of text -- there could be more of them, " +# "but this is enough to show that we can do some text", # style="text-align: center; font-style: oblique;")) # body.append(hr.Hr()) @@ -221,7 +233,3 @@ def render_page(page, filename): # page.append(body) # render_page(page, "test_html_output8.html") - - - - diff --git a/Examples/Session06/html_render/sample_html.html b/Examples/Session07/html_render/sample_html.html similarity index 100% rename from Examples/Session06/html_render/sample_html.html rename to Examples/Session07/html_render/sample_html.html diff --git a/Students/A.Kramer/session06/html_render/test_html_output1.html b/Examples/Session07/html_render/test_html_output1.html similarity index 89% rename from Students/A.Kramer/session06/html_render/test_html_output1.html rename to Examples/Session07/html_render/test_html_output1.html index d4507c13..65c2d86c 100644 --- a/Students/A.Kramer/session06/html_render/test_html_output1.html +++ b/Examples/Session07/html_render/test_html_output1.html @@ -1,4 +1,5 @@ - + + Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text And here is another piece of text -- you should be able to add any number - \ No newline at end of file + \ No newline at end of file diff --git a/Examples/Session07/html_render/test_html_output2.html b/Examples/Session07/html_render/test_html_output2.html new file mode 100644 index 00000000..d96afdc0 --- /dev/null +++ b/Examples/Session07/html_render/test_html_output2.html @@ -0,0 +1,11 @@ + + + +

+ Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text +

+

+ And here is another piece of text -- you should be able to add any number +

+ + \ No newline at end of file diff --git a/Examples/Session07/html_render/test_html_output3.html b/Examples/Session07/html_render/test_html_output3.html new file mode 100644 index 00000000..fcc9f120 --- /dev/null +++ b/Examples/Session07/html_render/test_html_output3.html @@ -0,0 +1,14 @@ + + + + PythonClass = Revision 1087: + + +

+ Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text +

+

+ And here is another piece of text -- you should be able to add any number +

+ + \ No newline at end of file diff --git a/Examples/Session07/html_render/test_html_output4.html b/Examples/Session07/html_render/test_html_output4.html new file mode 100644 index 00000000..dd891d92 --- /dev/null +++ b/Examples/Session07/html_render/test_html_output4.html @@ -0,0 +1,11 @@ + + + + PythonClass = Revision 1087: + + +

+ Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text +

+ + \ No newline at end of file diff --git a/Examples/Session07/html_render/test_html_output5.html b/Examples/Session07/html_render/test_html_output5.html new file mode 100644 index 00000000..5f160646 --- /dev/null +++ b/Examples/Session07/html_render/test_html_output5.html @@ -0,0 +1,12 @@ + + + + PythonClass = Revision 1087: + + +

+ Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text +

+
+ + \ No newline at end of file diff --git a/Examples/Session07/html_render/test_html_output6.html b/Examples/Session07/html_render/test_html_output6.html new file mode 100644 index 00000000..a99822d7 --- /dev/null +++ b/Examples/Session07/html_render/test_html_output6.html @@ -0,0 +1,15 @@ + + + + PythonClass = Revision 1087: + + +

+ Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text +

+
+ And this is a + link + to google + + \ No newline at end of file diff --git a/Examples/Session07/html_render/test_html_output7.html b/Examples/Session07/html_render/test_html_output7.html new file mode 100644 index 00000000..4f2c23bb --- /dev/null +++ b/Examples/Session07/html_render/test_html_output7.html @@ -0,0 +1,26 @@ + + + + PythonClass = Revision 1087: + + +

PythonClass - Class 6 example

+

+ Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text +

+
+ + + \ No newline at end of file diff --git a/Examples/Session07/html_render/test_html_output8.html b/Examples/Session07/html_render/test_html_output8.html new file mode 100644 index 00000000..3e2f249b --- /dev/null +++ b/Examples/Session07/html_render/test_html_output8.html @@ -0,0 +1,27 @@ + + + + + PythonClass = Revision 1087: + + +

PythonClass - Class 6 example

+

+ Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text +

+
+ + + \ No newline at end of file diff --git a/Examples/Session06/simple_classes.py b/Examples/Session07/simple_classes.py similarity index 70% rename from Examples/Session06/simple_classes.py rename to Examples/Session07/simple_classes.py index b170209d..4f996061 100644 --- a/Examples/Session06/simple_classes.py +++ b/Examples/Session07/simple_classes.py @@ -8,50 +8,66 @@ import math -## create a point class -class Point(object): +# create a point class +class Point: def __init__(self, x, y): self.x = x self.y = y -## create an instance of that class -p = Point(3,4) +# create an instance of that class +p = Point(3, 4) -## access the attributes -print "p.x is:", p.x -print "p.y is:", p.y +# access the attributes +print("p.x is:", p.x) +print("p.y is:", p.y) -class Point2(object): +class Point2: size = 4 - color= "red" + color = "red" + def __init__(self, x, y): self.x = x self.y = y -p2 = Point2(4,5) -print p2.size -print p2.color +p2 = Point2(4, 5) +print(p2.size) +print(p2.color) -class Point3(object): +class Point3: size = 4 - color= "red" + color = "red" + def __init__(self, x, y): self.x = x self.y = y + def get_color(self): return self.color + def get_size(self): + return self.size -p3 = Point3(4,5) -print p3.size -print p3.get_color() +class Rect: + def __init__(self, w, h): + self.w = w + self.h = h -class Circle(object): + def get_size(self): + return self.w * self.h + + +p3 = Point3(4, 5) +print(p3.size) +print(p3.get_color()) + + +class Circle: color = "red" styles = ['dashed'] + def __init__(self, diameter): self.diameter = diameter @@ -78,7 +94,7 @@ def grow(self, factor=2): self.diameter = self.diameter * math.sqrt(2) nc = NewCircle -print nc.color +print(nc.color) class CircleR(Circle): diff --git a/Examples/Session07/vector.py b/Examples/Session07/vector.py deleted file mode 100644 index 56ee2404..00000000 --- a/Examples/Session07/vector.py +++ /dev/null @@ -1,47 +0,0 @@ -""" -Vector type with +, * redefined as vector addition and dot product -From Jon Jacky's Intro to Python course: - http://staff.washington.edu/jon/python-course/ -""" - - -class vector(list): - def __repr__(self): - """ - String representation, uses list (superclass) representation - """ - return 'vector(%s)' % super(vector, self).__repr__() - - def __add__(self, v): - """ - redefine + as element-wise vector sum - """ - assert len(self) == len(v) - return vector([x1 + x2 for x1, x2 in zip(self, v)]) - - def __mul__(self, v): - """ - redefine * as vector dot product - """ - assert len(self) == len(v) - return sum([x1 * x2 for x1, x2 in zip(self, v)]) - -l1 = [1, 2, 3] -l2 = [4, 5, 6] -v1 = vector(l1) -v2 = vector(l2) - -if __name__ == '__main__': - print 'l1' - print l1 - print 'l1 + l2' - print l1 + l2 - # print l1 * l2 # TypeError - print 'zip(l1, l2)' - print zip(l1, l2) - print 'v1' - print v1 - print 'v1 + v2' - print v1 + v2 - print 'v1 * v2' - print v1 * v2 diff --git a/Examples/Session08/circle.py b/Examples/Session08/circle.py new file mode 100644 index 00000000..6d2d6018 --- /dev/null +++ b/Examples/Session08/circle.py @@ -0,0 +1,24 @@ +#!/usr/bin/env python3 + +""" +circle class -- + +fill this in so it will pass all the tests. +""" +import math + + +class Circle: + @staticmethod + def a_method(x): + return x**2 + + def regular_method(self): + print(self) + + @classmethod + def class_method(cls): + print(cls) + + + diff --git a/Examples/Session07/class_method.py b/Examples/Session08/class_method.py similarity index 69% rename from Examples/Session07/class_method.py rename to Examples/Session08/class_method.py index 1d893b94..93fba91f 100644 --- a/Examples/Session07/class_method.py +++ b/Examples/Session08/class_method.py @@ -5,14 +5,14 @@ """ -class C(object): +class C: def __init__(self, x, y): self.x = x self.y = y @classmethod def a_class_method(cls, y): - print "in a_class_method", cls + print("in a_class_method", cls) return cls(y, y**2) @@ -23,10 +23,10 @@ class C2(C): if __name__ == "__main__": c = C(3, 4) - print type(c), c.x, c.y + print(type(c), c.x, c.y) c2 = C.a_class_method(3) - print type(c2), c2.x, c2.y + print(type(c2), c2.x, c2.y) c3 = c2.a_class_method(2) - print type(c3), c3.x, c3.y + print(type(c3), c3.x, c3.y) diff --git a/Examples/Session08/iterator_1.py b/Examples/Session08/iterator_1.py deleted file mode 100644 index f2402385..00000000 --- a/Examples/Session08/iterator_1.py +++ /dev/null @@ -1,32 +0,0 @@ -#!/usr/bin/env python - -""" -Simple iterator examples -""" - - -class IterateMe_1(object): - """ - About as simple an iterator as you can get: - - returns the sequence of numbers from zero to 4 - ( like xrange(4) ) - """ - def __init__(self, stop=5): - self.current = -1 - self.stop = stop - def __iter__(self): - return self - def next(self): - self.current += 1 - if self.current < self.stop: - return self.current - else: - raise StopIteration - -if __name__ == "__main__": - - print "Testing the iterator" - for i in IterateMe_1(): - print i - diff --git a/Examples/Session08/my_for.py b/Examples/Session08/my_for.py deleted file mode 100644 index fd43ac6d..00000000 --- a/Examples/Session08/my_for.py +++ /dev/null @@ -1,50 +0,0 @@ -#!/usr/bin/env python - -""" -hand writing 'for' - -demonstrates how for interacts with an iterable -""" - - -l = [1,2,3,4,5,] - - -def my_for(an_iterable, func): - """ - Emulation of a for loop. - - func() will be called with each item in an_iterable - - :param an_iterable: anything that satisfies the interation protocol - - :param func: a callable -- it will be called, passing in each item - in an_iterable. - - """ - # equiv of "for i in l:" - iterator = iter(an_iterable) - while True: - try: - i = iterator.next() - except StopIteration: - break - func(i) - - -if __name__ == "__main__": - - def print_func(x): - print x - - l = [1,2,3,4,5,] - my_for(l, print_func) - - t = ('a','b','c','d') - - my_for(t, print_func) - - - - - diff --git a/Examples/Session07/properties_example.py b/Examples/Session08/properties_example.py similarity index 82% rename from Examples/Session07/properties_example.py rename to Examples/Session08/properties_example.py index fa9c732e..f70760e9 100644 --- a/Examples/Session07/properties_example.py +++ b/Examples/Session08/properties_example.py @@ -8,14 +8,16 @@ """ -class C(object): +class C: def __init__(self): self._x = None @property def x(self): + print("in getter") return self._x @x.setter def x(self, value): + print("in setter", value) self._x = value @x.deleter def x(self): @@ -24,5 +26,5 @@ def x(self): if __name__ == "__main__": c = C() c.x = 5 - print c.x + print(c.x) diff --git a/Examples/Session07/static_method.py b/Examples/Session08/static_method.py similarity index 84% rename from Examples/Session07/static_method.py rename to Examples/Session08/static_method.py index 6865408c..ce476ab0 100644 --- a/Examples/Session07/static_method.py +++ b/Examples/Session08/static_method.py @@ -5,7 +5,7 @@ """ -class C(object): +class C: @staticmethod def a_static_method(a, b): @@ -13,7 +13,7 @@ def a_static_method(a, b): return a+b def test(self): - return self.a_static_method(2,3) + return self.a_static_method(2, 3) # if __name__ == "__main__": @@ -24,5 +24,3 @@ def test(self): # print c.a_static_method(4,5) # print c.test() - - diff --git a/Examples/Session08/test_generator.py b/Examples/Session08/test_generator.py deleted file mode 100644 index cf02fae5..00000000 --- a/Examples/Session08/test_generator.py +++ /dev/null @@ -1,78 +0,0 @@ -""" -test_generator.py - -tests the solution to the generator lab - -can be run with py.test or nosetests -""" - -import generator_solution as gen - - -def test_intsum(): - - g = gen.intsum() - - assert g.next() == 0 - assert g.next() == 1 - assert g.next() == 3 - assert g.next() == 6 - assert g.next() == 10 - assert g.next() == 15 - - -def test_intsum2(): - - g = gen.intsum2() - - assert g.next() == 0 - assert g.next() == 1 - assert g.next() == 3 - assert g.next() == 6 - assert g.next() == 10 - assert g.next() == 15 - - -def test_doubler(): - - g = gen.doubler() - - assert g.next() == 1 - assert g.next() == 2 - assert g.next() == 4 - assert g.next() == 8 - assert g.next() == 16 - assert g.next() == 32 - - for i in range(10): - j = g.next() - - assert j == 2**15 - - -def test_fib(): - g = gen.fib() - - assert g.next() == 1 - assert g.next() == 1 - assert g.next() == 2 - assert g.next() == 3 - assert g.next() == 5 - assert g.next() == 8 - assert g.next() == 13 - assert g.next() == 21 - - -def test_prime(): - g = gen.prime() - - assert g.next() == 2 - assert g.next() == 3 - assert g.next() == 5 - assert g.next() == 7 - assert g.next() == 11 - assert g.next() == 13 - assert g.next() == 17 - assert g.next() == 19 - assert g.next() == 23 - diff --git a/Examples/Session08/vector.py b/Examples/Session08/vector.py new file mode 100644 index 00000000..8d9e2eac --- /dev/null +++ b/Examples/Session08/vector.py @@ -0,0 +1,47 @@ +""" +Vector type with +, * redefined as Vector addition and dot product +From Jon Jacky's Intro to Python course: + http://staff.washington.edu/jon/python-course/ +""" + + +class Vector(list): + def __repr__(self): + """ + String representation, uses list (superclass) representation + """ + return 'Vector(%s)' % super(Vector, self).__repr__() + + def __add__(self, v): + """ + redefine + as element-wise Vector sum + """ + assert len(self) == len(v) + return Vector([x1 + x2 for x1, x2 in zip(self, v)]) + + def __mul__(self, v): + """ + redefine * as Vector dot product + """ + assert len(self) == len(v) + return sum([x1 * x2 for x1, x2 in zip(self, v)]) + +l1 = [1, 2, 3] +l2 = [4, 5, 6] +v1 = Vector(l1) +v2 = Vector(l2) + +if __name__ == '__main__': + print('l1') + print(l1) + print('l1 + l2') + print(l1 + l2) + # print(l1 * l2) # TypeError + print('zip(l1, l2)') + print(zip(l1, l2)) + print('v1') + print(v1) + print('v1 + v2') + print(v1 + v2) + print('v1 * v2') + print(v1 * v2) diff --git a/Examples/Session09/capitalize/capitalize/__init__.py b/Examples/Session09/capitalize/capitalize/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/Examples/Session09/capitalize/capitalize/capital_mod.py b/Examples/Session09/capitalize/capitalize/capital_mod.py deleted file mode 100644 index 352f0874..00000000 --- a/Examples/Session09/capitalize/capitalize/capital_mod.py +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/env python - -""" -A really simple module, just to demonstrate disutils -""" - -def capitalize(infilename, outfilename): - """ - reads the contents of infilename, and writes it to outfilename, but with - every word capitalized - - note: very primitive -- it will mess some files up! - - this is called by the capitalize script - """ - infile = open(infilename, 'U') - outfile = open(outfilename, 'w') - - for line in infile: - outfile.write( " ".join( [word.capitalize() for word in line.split() ] ) ) - outfile.write("\n") - - return None \ No newline at end of file diff --git a/Examples/Session09/capitalize/capitalize/test/__init__.py b/Examples/Session09/capitalize/capitalize/test/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/Examples/Session09/capitalize/capitalize/test/test_text_file.txt b/Examples/Session09/capitalize/capitalize/test/test_text_file.txt deleted file mode 100644 index a64b50f7..00000000 --- a/Examples/Session09/capitalize/capitalize/test/test_text_file.txt +++ /dev/null @@ -1,7 +0,0 @@ -This is a really simple Text file. -It is here so that I can test the capitalize script. - -And that's only there to try out distutils. - -So there. - \ No newline at end of file diff --git a/Examples/Session09/capitalize/scripts/cap_script.py b/Examples/Session09/capitalize/scripts/cap_script.py deleted file mode 100755 index 08f999e3..00000000 --- a/Examples/Session09/capitalize/scripts/cap_script.py +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/env python - -""" -A really simple script just to demonstrate disutils -""" - -import sys, os -from capitalize import capital_mod - - -if __name__ == "__main__": - try: - infilename = sys.argv[1] - except IndexError: - print "you need to pass in a file to process" - - root, ext = os.path.splitext(infilename) - outfilename = root + "_cap" + ext - - # do the real work: - print "Capitalizing: %s and storing it in %s"%(infilename, outfilename) - capital_mod.capitalize(infilename, outfilename) - - print "I'm done" - \ No newline at end of file diff --git a/Examples/Session09/capitalize/setup.py b/Examples/Session09/capitalize/setup.py deleted file mode 100755 index d7acd8eb..00000000 --- a/Examples/Session09/capitalize/setup.py +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/env python - -""" -This is about as simple a setup.py as you can have - -It installs the capitalize module and script - -""" - -# classic distutils -#from distutils.core import setup - -## uncomment to support "develop" mode -from setuptools import setup - -setup( - name='Capitalize', - version='0.1.0', - author='Chris Barker', - py_modules=['capitalize/capital_mod',], - scripts=['scripts/cap_script.py',], - description='Not very useful capitalizing module and script', -) - diff --git a/Examples/Session09/closure.py b/Examples/Session09/closure.py new file mode 100644 index 00000000..a7e7d07d --- /dev/null +++ b/Examples/Session09/closure.py @@ -0,0 +1,26 @@ +#!/usr/bin/env python + +""" +Example code for closures / currying +""" + +from functools import partial + + +def counter(start_at=0): + count = [start_at] + + def incr(): + count[0] += 1 + return count[0] + return incr + + +def power(base, exponent): + """returns based raised to the given exponent""" + return base ** exponent + +# now some specialized versions: + +square = partial(power, exponent=2) +cube = partial(power, exponent=3) diff --git a/Examples/Session09/ipythonlog.txt b/Examples/Session09/ipythonlog.txt deleted file mode 100644 index 52e36c40..00000000 --- a/Examples/Session09/ipythonlog.txt +++ /dev/null @@ -1,180 +0,0 @@ -# IPython log file - - -get_ipython().magic(u'run decorators.py') -add -add(2,3) -get_ipython().magic(u'run decorators.py') -add(2,3) -new_add = substitute(add) -new_add(2,3) -@substitute -def fun(1,2,3) -@substitute -def fun(1,2,3): - print "in fun" - -@substitute -def fun(a,b): - print "in fun" - -fun() -@logged_func -def fun(a,b): - print "in fun" - -fun(2,3) -fun(2,3,fred=4) -get_ipython().magic(u'run decorators.py') -get_ipython().magic(u'timeit sum2x(10)') -get_ipython().magic(u'run decorators.py') -get_ipython().magic(u'timeit sum2x(10)') -sum2x(100000000) -sum2x(100000000) -sum2x(10000000) -sum2x(10000000) -type(sum2x) -sum2x.function -sum2x.function(10) -sum2x.memoized -@Memoize -def other_fun(): -def other_fun(x): - -@Memoize -def fun2(x): - return x**100 - -fun2(4) -fun2(4) -fun2.memoized -@Memoize -def fun2asdf(x): - return x**100 - -get_ipython().magic(u'run decorators.py') -sum2x(1e6) -sum2x(1000000) -get_ipython().magic(u'run decorators.py') -sum2x(1000000) -sum2x(1000000) -sum2x(10000000) -sum2x(10000000) -get_ipython().magic(u'paste') -@Memoize -@timed_func -def sum2x(n): - return sum(2 * i for i in xrange(n)) -sum2x(1000000) -sum2x(1000000) -get_ipython().magic(u'run context_managers.py') -with Context(False): - print something - -with Context(False): - print "something" - -get_ipython().magic(u'paste') -with Context(True) as foo: - print 'This is in the context' - raise RuntimeError('this is the error message') -with Context(False): - raise RuntimeError('this is the error message') - -with context(False): - raise RuntimeError('this is the error message') - -with context(True): - raise RuntimeError('this is the error message') - -get_ipython().magic(u'run timer_context.py') -with Timer as t: - [x^2 for x in range(100000000)] - -get_ipython().magic(u'run timer_context.py') -with Timer as t: - [x^2 for x in range(100000000)] - -with Timer as t: - [x^2 for x in range(100000000)] - -get_ipython().magic(u'run timer_context.py') -with Timer as t: - [x^2 for x in range(100000000)] - -with Timer() as t: - [x^2 for x in range(100000000)] - -with Timer() as t: - [x^2 for x in range(1000000)] - -get_ipython().magic(u'run timer_context.py') -with Timer() as t: - [x^2 for x in range(1000000)] - -get_ipython().magic(u'run timer_context.py') -with Timer() as t: - [x^2 for x in range(1000000)] - -get_ipython().magic(u'run timer_context.py') -with Timer() as t: - [x^2 for x in range(1000000)] - -with Timer() as t: - [x^2 for x in range(10000000)] - -t -t.elapsed -with Timer() as t: - [x^2 for x in range(10000000)] - raise RuntimeError("this is an error") - -with Timer() as t: - [x^2 for x in range(10000000)] - raise RuntimeError("this is an error") - -with Timer() as t: - [x^2 for x in range(10000000)] - raise RuntimeError("this is an error") - -get_ipython().magic(u'run timer_context.py') -with Timer() as t: - [x^2 for x in range(10000000)] - raise RuntimeError("this is an error") - -get_ipython().magic(u'run timer_context.py') -with Timer() as t: - [x^2 for x in range(10000000)] - raise RuntimeError("this is an error") - -get_ipython().magic(u'run timer_context.py') -with Timer() as t: - [x^2 for x in range(10000000)] - raise RuntimeError("this is an error") - -get_ipython().magic(u'pinfo isinstance') -get_ipython().magic(u'run timer_context.py') -with Timer() as t: - [x^2 for x in range(10000000)] - raise RuntimeError("this is an error") - -get_ipython().magic(u'run timer_context.py') -with Timer() as t: - [x^2 for x in range(10000000)] - raise RuntimeError("this is an error") - -with Timer() as t: - [x^2 for x in range(10000000)] - raise RuntimeError("this is an error") -print "after Exception" - -with Timer() as t: - [x^2 for x in range(10000000)] - raise RuntimeError("this is an error") - print "after Exception" - -with Timer() as t: - [x^2 for x in range(10000000)] - raise ValueError("this is an error") - print "after Exception" - diff --git a/Students/Dave Fugelso/Session 8/iterator_1.py b/Examples/Session09/iterator_1.py similarity index 84% rename from Students/Dave Fugelso/Session 8/iterator_1.py rename to Examples/Session09/iterator_1.py index f2402385..6cc9231c 100644 --- a/Students/Dave Fugelso/Session 8/iterator_1.py +++ b/Examples/Session09/iterator_1.py @@ -10,14 +10,14 @@ class IterateMe_1(object): About as simple an iterator as you can get: returns the sequence of numbers from zero to 4 - ( like xrange(4) ) + ( like range(4) ) """ def __init__(self, stop=5): self.current = -1 self.stop = stop def __iter__(self): return self - def next(self): + def __next__(self): self.current += 1 if self.current < self.stop: return self.current @@ -26,7 +26,7 @@ def next(self): if __name__ == "__main__": - print "Testing the iterator" + print("Testing the iterator") for i in IterateMe_1(): - print i + print(i) diff --git a/Students/ebuer/session_08/my_for.py b/Examples/Session09/my_for.py similarity index 93% rename from Students/ebuer/session_08/my_for.py rename to Examples/Session09/my_for.py index fd43ac6d..6023ad9f 100644 --- a/Students/ebuer/session_08/my_for.py +++ b/Examples/Session09/my_for.py @@ -26,7 +26,7 @@ def my_for(an_iterable, func): iterator = iter(an_iterable) while True: try: - i = iterator.next() + i = next(iterator) except StopIteration: break func(i) @@ -35,7 +35,7 @@ def my_for(an_iterable, func): if __name__ == "__main__": def print_func(x): - print x + print(x) l = [1,2,3,4,5,] my_for(l, print_func) diff --git a/Examples/Session09/test_generator.py b/Examples/Session09/test_generator.py new file mode 100644 index 00000000..d88255f7 --- /dev/null +++ b/Examples/Session09/test_generator.py @@ -0,0 +1,78 @@ +""" +test_generator.py + +tests the solution to the generator lab + +can be run with py.test or nosetests +""" + +import generator_solution as gen + + +def test_intsum(): + + g = gen.intsum() + + assert next(g) == 0 + assert next(g) == 1 + assert next(g) == 3 + assert next(g) == 6 + assert next(g) == 10 + assert next(g) == 15 + + +def test_intsum2(): + + g = gen.intsum2() + + assert next(g) == 0 + assert next(g) == 1 + assert next(g) == 3 + assert next(g) == 6 + assert next(g) == 10 + assert next(g) == 15 + + +def test_doubler(): + + g = gen.doubler() + + assert next(g) == 1 + assert next(g) == 2 + assert next(g) == 4 + assert next(g) == 8 + assert next(g) == 16 + assert next(g) == 32 + + for i in range(10): + j = next(g) + + assert j == 2**15 + + +def test_fib(): + g = gen.fib() + + assert next(g) == 1 + assert next(g) == 1 + assert next(g) == 2 + assert next(g) == 3 + assert next(g) == 5 + assert next(g) == 8 + assert next(g) == 13 + assert next(g) == 21 + + +def test_prime(): + g = gen.prime() + + assert next(g) == 2 + assert next(g) == 3 + assert next(g) == 5 + assert next(g) == 7 + assert next(g) == 11 + assert next(g) == 13 + assert next(g) == 17 + assert next(g) == 19 + assert next(g) == 23 + diff --git a/Examples/Session09/test_p_wrapper.py b/Examples/Session09/test_p_wrapper.py deleted file mode 100644 index c73b6ef6..00000000 --- a/Examples/Session09/test_p_wrapper.py +++ /dev/null @@ -1,31 +0,0 @@ -#!/usr/bin/env python - -""" -test code for the p_wrapper assignment -""" - -from p_wrapper import p_wrapper, tag_wrapper - - -def test_p_wrapper(): - @p_wrapper - def return_a_string(string): - return string - - assert return_a_string('this is a string') == '

this is a string

' - -#Extra credit: - -def test_tag_wrapper(): - @tag_wrapper('html') - def return_a_string(string): - return string - - assert return_a_string("this is a string") == " this is a string " - -def test_tag_wrapper2(): - @tag_wrapper('div') - def return_a_string(string): - return string - - assert return_a_string("this is a string") == "
this is a string
" diff --git a/Examples/Session08/yield_example.py b/Examples/Session09/yield_example.py similarity index 83% rename from Examples/Session08/yield_example.py rename to Examples/Session09/yield_example.py index bbccb79f..81c9590d 100644 --- a/Examples/Session08/yield_example.py +++ b/Examples/Session09/yield_example.py @@ -1,9 +1,9 @@ def counter(): - print 'counter: starting counter' + print('counter: starting counter') i = -3 while i < 3: i = i + 1 - print 'counter: yield', i + print('counter: yield', i) yield i return None diff --git a/Examples/Session09/context_managers.py b/Examples/Session10/context_managers.py similarity index 60% rename from Examples/Session09/context_managers.py rename to Examples/Session10/context_managers.py index 326b66d3..ecf3ee54 100644 --- a/Examples/Session09/context_managers.py +++ b/Examples/Session10/context_managers.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- import sys -from StringIO import StringIO +from io import StringIO from contextlib import contextmanager @@ -9,30 +9,34 @@ class Context(object): http://pymotw.com/2/contextlib/#module-contextlib """ def __init__(self, handle_error): - print '__init__(%s)' % handle_error + print('__init__({})'.format(handle_error)) self.handle_error = handle_error def __enter__(self): - print '__enter__()' + print('__enter__()') return self def __exit__(self, exc_type, exc_val, exc_tb): - print '__exit__(%s, %s, %s)' % (exc_type, exc_val, exc_tb) - return self.handle_error + print('__exit__({}, {}, {})'.format(exc_type, exc_val, exc_tb)) + if exc_type == ZeroDivisionError: + return True + else: + return False +# return self.handle_error @contextmanager def context(boolean): - print "__init__ code here" + print("__init__ code here") try: - print "__enter__ code goes here" + print("__enter__ code goes here") yield object() except Exception as e: - print "errors handled here" + print("errors handled here") if not boolean: - raise + raise e finally: - print "__exit__ cleanup goes here" + print("__exit__ cleanup goes here") @contextmanager @@ -46,4 +50,4 @@ def print_encoded(encoding): buff.seek(0) raw = buff.read() encoded = raw.encode(encoding) - print encoded + print(encoded) diff --git a/Examples/Session09/decorators.py b/Examples/Session10/decorators.py similarity index 69% rename from Examples/Session09/decorators.py rename to Examples/Session10/decorators.py index fc6bd80b..2b4539f4 100644 --- a/Examples/Session09/decorators.py +++ b/Examples/Session10/decorators.py @@ -9,21 +9,21 @@ def new_function(*args, **kwargs): def add(a, b): -# print "Function 'add' called with args: %r" % locals() + print("Function 'add' called with args: {}, {}".format(a, b) ) result = a + b -# print "\tResult --> %r" % result + print("\tResult --> {}".format(result)) return result def logged_func(func): def logged(*args, **kwargs): - print "Function %r called" % func.__name__ + print("Function {} called".format(func.__name__)) if args: - print "\twith args: %r" % (args, ) + print("\twith args: {}".format(args)) if kwargs: - print "\twith kwargs: %r" % kwargs + print("\twith kwargs: {}".format(kwargs)) result = func(*args, **kwargs) - print "\t Result --> %r" % result + print("\t Result --> {}".format(result)) return result return logged @@ -49,29 +49,28 @@ def __call__(self, *args): # runs when memoize instance is called return self.memoized[args] -#@Memoize +@Memoize def sum2x(n): - return sum(2 * i for i in xrange(n)) -sum2x = Memoize(sum2x) - - + return sum(2 * i for i in range(n)) +# sum2x = Memoize(sum2x) +@Memoize +def prod2(a,b): + return sum( a * b**2 for a,b in zip(range(a), range(b))) import time - def timed_func(func): def timed(*args, **kwargs): start = time.time() result = func(*args, **kwargs) elapsed = time.time() - start - print "time expired: %s" % elapsed + print("time expired: {}".format(elapsed)) return result return timed + @timed_func @Memoize def sum2x(n): - return sum(2 * i for i in xrange(n)) - - + return sum(2 * i for i in range(n)) diff --git a/Examples/Session09/memoize.py b/Examples/Session10/memoize.py similarity index 85% rename from Examples/Session09/memoize.py rename to Examples/Session10/memoize.py index 7c9650f1..25b0ee60 100644 --- a/Examples/Session09/memoize.py +++ b/Examples/Session10/memoize.py @@ -17,7 +17,7 @@ def __call__(self, *args): # runs when memoize instance is called @Memoize def sum2x(n): - return sum(2 * i for i in xrange(n)) + return sum(2 * i for i in range(n)) import time @@ -27,11 +27,12 @@ def timed(*args, **kwargs): start = time.time() result = func(*args, **kwargs) elapsed = time.time() - start - print "time expired: %s" % elapsed + print("time expired: {}".format(elapsed)) return result return timed + @timed_func @Memoize def sum2x(n): - return sum(2 * i for i in xrange(n)) + return sum(2 * i for i in range(n)) diff --git a/Examples/Session10/p_wrapper.py b/Examples/Session10/p_wrapper.py new file mode 100644 index 00000000..f80c4d15 --- /dev/null +++ b/Examples/Session10/p_wrapper.py @@ -0,0 +1,24 @@ +#!/usr/bin/env python +""" +p_wrapper decorator +""" + + +def p_wrapper(function): + def func(*args, **kwargs): + string = function(*args, **kwargs) + string = "

{}

".format(string) + return string + return func + + +class tag_wrapper: + def __init__(self, tag): + self.tag = tag + + def __call__(self, orig_func): + def func(*args, **kwargs): + string = orig_func(*args, **kwargs) + string = "<{tag}> {s} ".format(tag=self.tag, s=string) + return string + return func diff --git a/Examples/Session09/property_ugly.py b/Examples/Session10/property_ugly.py similarity index 100% rename from Examples/Session09/property_ugly.py rename to Examples/Session10/property_ugly.py diff --git a/Students/Dave Fugelso/Session 9/test_p_wrapper.py b/Examples/Session10/test_p_wrapper.py similarity index 74% rename from Students/Dave Fugelso/Session 9/test_p_wrapper.py rename to Examples/Session10/test_p_wrapper.py index efd4cbc6..12603692 100644 --- a/Students/Dave Fugelso/Session 9/test_p_wrapper.py +++ b/Examples/Session10/test_p_wrapper.py @@ -11,10 +11,18 @@ def test_p_wrapper(): @p_wrapper def return_a_string(string): return string - print return_a_string('this is a string') + assert return_a_string('this is a string') == '

this is a string

' -#Extra credit: +def test_with_args(): + @p_wrapper + def f_string(a, b, this=45 ): + return "the numbers are: {}, {}, {}".format(a,b,this) + + assert f_string(2, 3, this=54) == "

the numbers are: 2, 3, 54

" + + +# #Extra credit: def test_tag_wrapper(): @tag_wrapper('html') @@ -29,4 +37,3 @@ def return_a_string(string): return string assert return_a_string("this is a string") == "
this is a string
" - diff --git a/Examples/Session10/timer.py b/Examples/Session10/timer.py new file mode 100644 index 00000000..3a07bd75 --- /dev/null +++ b/Examples/Session10/timer.py @@ -0,0 +1,18 @@ +#!/usr/bin/env python + +""" +timing context manager +""" + +import sys +import time + +class Timer: + def __init__(self, outfile=sys.stdout): + self.outfile = outfile + + def __enter__(self): + self.start = time.time() + + def __exit__(self, exc_type, exc_val, exc_tb): + self.outfile.write("elapsed time:{} seconds".format(time.time() - self.start)) \ No newline at end of file diff --git a/Examples/Session10/timer_context.py b/Examples/Session10/timer_context.py new file mode 100644 index 00000000..ee327dcd --- /dev/null +++ b/Examples/Session10/timer_context.py @@ -0,0 +1,20 @@ +#!/usr/bin/env python3 + +""" +Timer context manager +""" +import time + + +class Timer: + def __init__(self, file_like): + self.file_like = file_like + + def __enter__(self): + self.start = time.clock() + + def __exit__(self, *args): + elapsed = time.clock() - self.start + msg = "Elapsed time: {} seconds".format(elapsed) + self.file_like.write(msg) + return False diff --git a/Examples/Session10/ICanEatGlass.utf16.txt b/Examples/Suppliments/ICanEatGlass.utf16.txt similarity index 100% rename from Examples/Session10/ICanEatGlass.utf16.txt rename to Examples/Suppliments/ICanEatGlass.utf16.txt diff --git a/Examples/Session10/ICanEatGlass.utf8.txt b/Examples/Suppliments/ICanEatGlass.utf8.txt similarity index 100% rename from Examples/Session10/ICanEatGlass.utf8.txt rename to Examples/Suppliments/ICanEatGlass.utf8.txt diff --git a/Examples/Session10/add_book_data.py b/Examples/Suppliments/add_book_data.py similarity index 100% rename from Examples/Session10/add_book_data.py rename to Examples/Suppliments/add_book_data.py diff --git a/Examples/Session10/add_book_data_flat.py b/Examples/Suppliments/add_book_data_flat.py similarity index 100% rename from Examples/Session10/add_book_data_flat.py rename to Examples/Suppliments/add_book_data_flat.py diff --git a/Examples/Session10/example.cfg b/Examples/Suppliments/example.cfg similarity index 100% rename from Examples/Session10/example.cfg rename to Examples/Suppliments/example.cfg diff --git a/Examples/Session10/hello_unicode.py b/Examples/Suppliments/hello_unicode.py similarity index 100% rename from Examples/Session10/hello_unicode.py rename to Examples/Suppliments/hello_unicode.py diff --git a/Examples/Session10/latin1_test.py b/Examples/Suppliments/latin1_test.py similarity index 100% rename from Examples/Session10/latin1_test.py rename to Examples/Suppliments/latin1_test.py diff --git a/Examples/Session10/text.utf16 b/Examples/Suppliments/text.utf16 similarity index 100% rename from Examples/Session10/text.utf16 rename to Examples/Suppliments/text.utf16 diff --git a/Examples/Session10/text.utf32 b/Examples/Suppliments/text.utf32 similarity index 100% rename from Examples/Session10/text.utf32 rename to Examples/Suppliments/text.utf32 diff --git a/Examples/Session10/text.utf8 b/Examples/Suppliments/text.utf8 similarity index 100% rename from Examples/Session10/text.utf8 rename to Examples/Suppliments/text.utf8 diff --git a/Examples/Session10/unicode_exception_test.py b/Examples/Suppliments/unicode_exception_test.py similarity index 100% rename from Examples/Session10/unicode_exception_test.py rename to Examples/Suppliments/unicode_exception_test.py diff --git a/Examples/Session10/unicodify.py b/Examples/Suppliments/unicodify.py similarity index 100% rename from Examples/Session10/unicodify.py rename to Examples/Suppliments/unicodify.py diff --git a/README.rst b/README.rst index 835744c3..9274ab3e 100644 --- a/README.rst +++ b/README.rst @@ -3,7 +3,7 @@ IntroToPython Introduction to Python: First in the Python Certification series. -This repository contains the source materials for the first class in the the University of Washington Professional and Continuing Education Program Python Certification Program: +This repository contains the source materials for the first class in the University of Washington Professional and Continuing Education Program Python Certification Program: .. _Certificate in Python Programming : http://www.pce.uw.edu/certificates/python-programming.html diff --git a/Solutions/README.rst b/Solutions/README.rst deleted file mode 100644 index 77cf496c..00000000 --- a/Solutions/README.rst +++ /dev/null @@ -1,4 +0,0 @@ -This is place for example solutions to the assignments for the CodeFellows Foundations II Python class: sept 2014 - -Solutions will be added to this directory as the course progresses. - diff --git a/Solutions/Session01/codingbat/Logic-1/cigar_party.py b/Solutions/Session01/codingbat/Logic-1/cigar_party.py deleted file mode 100755 index 7c16089f..00000000 --- a/Solutions/Session01/codingbat/Logic-1/cigar_party.py +++ /dev/null @@ -1,46 +0,0 @@ -#!/usr/bin/env python - - -def cigar_party(cigars, is_weekend): - """ - basic solution - """ - if is_weekend and cigars >= 40: - return True - elif 40 <= cigars <= 60: - return True - return False - - -def cigar_party2(cigars, is_weekend): - """ - some direct return of bool result - """ - if is_weekend: - return (cigars >= 40) - else: - return (cigars >= 40 and cigars <= 60) - - -def cigar_party3(cigars, is_weekend): - """ - conditional expression - """ - return (cigars >= 40) if is_weekend else (cigars >= 40 and cigars <= 60) - -if __name__ == "__main__": - # some tests - - assert cigar_party(30, False) is False - assert cigar_party(50, False) is True - assert cigar_party(70, True) is True - assert cigar_party(30, True) is False - assert cigar_party(50, True) is True - assert cigar_party(60, False) is True - assert cigar_party(61, False) is False - assert cigar_party(40, False) is True - assert cigar_party(39, False) is False - assert cigar_party(40, True) is True - assert cigar_party(39, True) is False - - print "All tests passed" diff --git a/Solutions/Session01/codingbat/README.rst b/Solutions/Session01/codingbat/README.rst deleted file mode 100644 index b42e4bdc..00000000 --- a/Solutions/Session01/codingbat/README.rst +++ /dev/null @@ -1,7 +0,0 @@ -CodingBat Solutions -==================== - -A few selected solutions form teh codingbat site: - -http://codingbat.com/python - diff --git a/Solutions/Session01/codingbat/Warmup-1/diff21.py b/Solutions/Session01/codingbat/Warmup-1/diff21.py deleted file mode 100755 index 915002c6..00000000 --- a/Solutions/Session01/codingbat/Warmup-1/diff21.py +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/env python - - -def diff21(n): - """ - basic solution - """ - if n > 21: - return 2 * (n - 21) - else: - return 21 - n - - -def diff21b(n): - """ - direct return of conditional expression - """ - return 2 * (n - 21) if n > 21 else 21-n - diff --git a/Solutions/Session01/codingbat/Warmup-1/monkey_trouble.py b/Solutions/Session01/codingbat/Warmup-1/monkey_trouble.py deleted file mode 100755 index 693ab669..00000000 --- a/Solutions/Session01/codingbat/Warmup-1/monkey_trouble.py +++ /dev/null @@ -1,56 +0,0 @@ -#!/usr/bin/env python - -############################## -## Warmup-1 > monkey_trouble - - -def monkey_trouble(a_smile, b_smile): - """ - really simple solution - """ - if a_smile and b_smile: - return True - elif not a_smile and not b_smile: - return True - else: - return False - - -def monkey_trouble2(a_smile, b_smile): - """ - slightly more sophisticated - """ - if a_smile and b_smile or not (a_smile or b_smile): - return True - else: - return False - - -def monkey_trouble3(a_smile, b_smile): - """ - conditional expression -- kind of ugly in this case - """ - result = True if (a_smile and b_smile or not (a_smile or b_smile)) else False - return result - - -def monkey_trouble4(a_smile, b_smile): - """ - direct return of boolean result - """ - return a_smile and b_smile or not (a_smile or b_smile) - -if __name__ == "__main__": - # a few tests - - ## neat trick to test all versions: - for test_fun in (monkey_trouble, - monkey_trouble2, - monkey_trouble3, - monkey_trouble4): - assert test_fun(True, True) is True - assert test_fun(False, False) is True - assert test_fun(True, False) is False - assert test_fun(False, True) is False - - print "All tests passed" diff --git a/Solutions/Session01/codingbat/Warmup-1/not_string.py b/Solutions/Session01/codingbat/Warmup-1/not_string.py deleted file mode 100644 index 49094dbd..00000000 --- a/Solutions/Session01/codingbat/Warmup-1/not_string.py +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env python - - -def not_string(st): - if st.startswith('not'): - return st - else: - return 'not ' + st - diff --git a/Solutions/Session01/codingbat/Warmup-1/pos_neg.py b/Solutions/Session01/codingbat/Warmup-1/pos_neg.py deleted file mode 100755 index b0b4a9bc..00000000 --- a/Solutions/Session01/codingbat/Warmup-1/pos_neg.py +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/env python - - -def pos_neg(a, b, negative): - if negative: - return a < 0 and b < 0 - else: - return (a < 0 and b > 0) or (a > 0 and b < 0) - -if __name__ == "__main__": - # run some tests if run as script - # (from the codingbat site -- not all, I got bored) - assert pos_neg(1, -1, False) is True - assert pos_neg(-1, 1, False) is True - assert pos_neg(-4, -5, True) is True - assert pos_neg(-4, -5, False) is False - assert pos_neg(-4, -5, True) is True - - assert pos_neg(-6, -6, False) is False - assert pos_neg(-2, -1, False) is False - assert pos_neg(1, 2, False) is False - assert pos_neg(-5, 6, True) is False - assert pos_neg(-5, -5, True) is True - - - - print "all tests passed" diff --git a/Solutions/Session01/codingbat/Warmup-1/sleep_in.py b/Solutions/Session01/codingbat/Warmup-1/sleep_in.py deleted file mode 100755 index f08704cb..00000000 --- a/Solutions/Session01/codingbat/Warmup-1/sleep_in.py +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/env python - - -def sleep_in(weekday, vacation): - """ - basic solution - """ - if (not weekday) or vacation: - return True - else: - return False - - -def sleep_in2(weekday, vacation): - """ - direct return of boolean result - """ - return (not weekday) or vacation diff --git a/Solutions/Session01/print_grid.py b/Solutions/Session01/print_grid.py deleted file mode 100755 index b341f32b..00000000 --- a/Solutions/Session01/print_grid.py +++ /dev/null @@ -1,69 +0,0 @@ -#!/usr/bin/env python - -""" -Chris' solution to the week 1 homework problem. - -Note that we only did the basics of loops, and you can -do all this without any loops at all, so that's what I did. - -Note also that there is more than one way to skin a cat -- - or code a function -""" - - -def print_grid(size): - """ - print a 2x2 grid with a total size of size - - :param size: total size of grid -- it will be rounded if not one more than - a multiple of 2 - """ - number = 2 - box_size = int((size-1) // 2) # size of one grid box - print "box_size:", box_size - # top row - top = ('+ ' + '- ' * box_size) * number + '+' + '\n' - middle = ('| ' + ' ' * 2 * box_size) * number + '|' + '\n' - - row = top + middle*box_size - - grid = row*number + top - - print grid - - -def print_grid2(number, size): - """ - print a number x number grid with each box of size width and height - - :param number: number of grid boxes (row and column) - - :param size: size of each grid box - """ - # top row - top = ('+ ' + '- '*size)*number + '+' + '\n' - middle = ('| ' + ' '*2*size)*number + '|' + '\n' - - row = top + middle*size - - grid = row*number + top - - print grid - - -def print_grid3(size): - """ - same as print_grid, but calling print_grid2 to do the work - """ - number = 2 - box_size = (size-1) / 2 # size of one grid box - print_grid2(number, box_size) - - -print_grid(11) -print_grid(7) - -print_grid2(3, 3) -print_grid2(3, 5) - -print_grid3(11) diff --git a/Solutions/Session02/ack.py b/Solutions/Session02/ack.py deleted file mode 100755 index 44e1345c..00000000 --- a/Solutions/Session02/ack.py +++ /dev/null @@ -1,51 +0,0 @@ -#!/usr/bin/env python -""" -Solution to the Ackerman function problem. - -The Ackerman function is recusively defines as: - -A(m, n) = - n+1 if m = 0 - A(m-1, 1) if m > 0 and n = 0 - A(m-1, A(m, n-1)) if m > 0 and n > 0 -See http://en.wikipedia.org/wiki/Ackermann_function. -""" - - -def ack(m, n): - """Compute the Ackerman function""" - if m < 0 or n < 0: - return None - if m == 0: - return n+1 - elif n == 0: - return ack(m-1, 1) - else: - return ack(m-1, ack(m, n-1)) - -if __name__ == "__main__": - - # tests from the table in wikipedia - # you don't really need to test them all - # they will get called as part of the recusive calls anyway... - - assert ack(0,0) == 1 - assert ack(0,4) == 5 - - assert ack(1,2) == 4 - assert ack(1,4) == 6 - - assert ack(2,2) == 7 - assert ack(2,4) == 11 - - assert ack(3,2) == 29 - assert ack(3,4) == 125 - - ## ack(4,*) exceeds the recursion limit. - - # check for neagative inputs -- should return None. - assert ack(-1, 0) is None - assert ack(2, -1) is None - - - print "tests passed" diff --git a/Solutions/Session02/fizz_buzz.py b/Solutions/Session02/fizz_buzz.py deleted file mode 100755 index a9589608..00000000 --- a/Solutions/Session02/fizz_buzz.py +++ /dev/null @@ -1,77 +0,0 @@ -#!/usr/bin/env python - -""" -Fizz Buzz examples -- from most straightforward, to most compact. -""" - - -# basic approach: -def fizzbuzz1(n): - for i in range(1, n+1): - if i%3 == 0 and i%5 == 0: - print "FizzBuzz" - elif i%3 == 0: - print "Fizz" - elif i%5 == 0: - print "Buzz" - else: - print i - - -def fizzbuzz2(n): - """ - Why evaluate i%3 and i%5 twice? - """ - for i in range(1, n+1): - msg = '' - if i%3 == 0: - msg += "Fizz" - if i%5 == 0: - msg += "Buzz" - if msg: - print msg - else: - print i - - -def fizzbuzz3(n): - """ - use conditional expressions: - """ - for i in range(1, n+1): - msg = "Fizz" if i%3 == 0 else '' - msg += "Buzz" if i%5 == 0 else '' - print msg or i - - -def fizzbuzz4(n): - """ - the one liner - """ - for i in range(1,n+1): print ( "Fizz" * (not (i%3)) + "Buzz" * (not (i%5)) ) or i - - -def fizzbuzz_ruby(n): - """ - This is a one-liner version inspired by the Ruby one-liner - found here: - - http://www.commandercoriander.net/blog/2013/02/03/fizzbuzz-in-one-line - - This uses list comprehensions, and slicing, and is, well, pretty darn ugly! - - """ - for word in [ ("".join(["Fizz",][0:1-i%3]+["Buzz",][0:1-i%5]) or `i`) for i in range(1, n+1)]: print word - -if __name__ == "__main__": - fizzbuzz1(16) - print - fizzbuzz2(16) - print - fizzbuzz3(16) - print - fizzbuzz4(16) - print - fizzbuzz_ruby(16) - - diff --git a/Solutions/Session02/series.py b/Solutions/Session02/series.py deleted file mode 100755 index 8ba6ede7..00000000 --- a/Solutions/Session02/series.py +++ /dev/null @@ -1,96 +0,0 @@ -#!/usr/bin/env python - -""" -series.py - -solutions to the Fibonacci Series and Lucas numbers -""" - - -def fibonacci(n): - """ compute the nth Fibonacci number """ - - if n < 0: - return None - elif n == 0: - return 0 - if n == 1: - return 1 - else: - return fibonacci(n - 1) + fibonacci(n - 2) - - -def lucas(n): - """ compute the nth Lucas number """ - - if n < 0: - return None - if n == 0: - return 2 - elif n == 1: - return 1 - else: - return lucas(n - 1) + lucas(n - 2) - - -def sum_series(n, n0=0, n1=1): - """ - compute the nth value of a summation series. - - :param n0=0: value of zeroth element in the series - :param n1=1: value of first element in the series - - if n0 == 0 and n1 == 1, the result is the Fibbonacci series - - if n0 == 2 and n1 == 1, the result is the Lucas series - """ - if n < 0: - return None - if n == 0: - return n0 - elif n == 1: - return n1 - else: - return sum_series(n - 1, n0, n1) + sum_series(n - 2, n0, n1) - - -if __name__ == "__main__": - # run some tests - - assert fibonacci(-1) is None - assert fibonacci(-23) is None - - assert fibonacci(0) == 0 - assert fibonacci(1) == 1 - assert fibonacci(2) == 1 - assert fibonacci(3) == 2 - assert fibonacci(4) == 3 - assert fibonacci(5) == 5 - assert fibonacci(6) == 8 - assert fibonacci(7) == 13 - - assert lucas(-1) is None - assert lucas(-23) is None - - # do these with a loop: - tests = [(0, 2), - (1, 1), - (2, 3), - (3, 4), - (4, 7), - (5,11), - (6,18), - (7, 29), - ] - for input, output in tests: - assert lucas(input) == output - - # test if sum_series matched Fibonacci - for n in range(0, 10): - assert sum_series(n) == fibonacci(n) - - # test if sum_series matched lucas - for n in range(0, 10): - assert sum_series(n, 2, 1) == lucas(n) - - print "tests passed" diff --git a/Solutions/Session03/list_lab.py b/Solutions/Session03/list_lab.py deleted file mode 100644 index 5601e493..00000000 --- a/Solutions/Session03/list_lab.py +++ /dev/null @@ -1,109 +0,0 @@ -#!/usr/bin/env python - -""" -Chris' solutions to the list lab - -A couple take-home concepts: - -If you need to delete stuff from the list when looping through it, -make a copy ([:]) first. - -You almost never want to loop through a sequence by doing: - -for i in range(len(seq)): - ... -if you don't need the index, simply do: - -for item in seq: - ... -If you need both the item and the index, use enumerate(): - -for i, item in enumerate(seq): - ... - -If you need to loop through more than one list at once, use zip(): - -for item1, item2 in zip(list1, list2): - ... - -""" - -# Task 1 -fruits = ["Apples", "Pears", "Oranges", "Peaches"] - -print fruits - -new = raw_input("type a fruit to add> ") - -fruits.append(new) - -print fruits - -ind = int(raw_input("give me an index> ")) - -print "you selected fruit number: %i, which is %s"%(ind, fruits[ind-1]) - -print fruits - -fruits.insert(0, 'Kiwi') - -print fruits - -print "All the P fruits" -for fruit in fruits: - if fruit[0].lower() == 'p': - print fruit - -# make a new list with duplicated entries - to test removal -d_fruits = fruits * 2 - -print " All the fruits are:", fruits -ans = raw_input("Which fruit would you like to delete? ") -while ans in d_fruits: - d_fruits.remove(ans) - -print d_fruits - -## another way to do that: -## This one only requires looping through list once -d_fruits = [] -for fruit in fruits * 2: - if fruit != ans: - d_fruits.append(fruit) - -print d_fruits - -# keep a copy around for next step -orig_fruits = fruits[:] - -for fruit in fruits: - ans = raw_input("Do you like: %s? "%fruit) - if ans[0].lower() == 'n': # so they could answer y or Y or yes or Yes... - while fruit in fruits: # just in case there are duplicates - fruits.remove(fruit) - elif ans[0].lower() == 'y': - pass - else: - print "please answer yes or no next time!" - # Note: I could be smarter about re-asking here, - # but that's not the point of this excercise... - -print "here they are with only the ones you like" -print fruits - -fruits = orig_fruits[:] # makes a copy - -# option 1: build up a copy one by one: -r_fruits = [] -for fruit in fruits: - r_fruits.append(fruit[::-1]) - -print "here they are reversed" -print r_fruits - -# option 2: make a copy, then modify in place: -r_fruits = fruits[:] -for i, fruit in enumerate(r_fruits): - r_fruits[i] = fruit[::-1] - -print r_fruits diff --git a/Solutions/Session03/mailroom.py b/Solutions/Session03/mailroom.py deleted file mode 100755 index 871a1dd4..00000000 --- a/Solutions/Session03/mailroom.py +++ /dev/null @@ -1,145 +0,0 @@ -#!/usr/bin/env python - -from textwrap import dedent -import math - -# In memory representation of the donor database -# using a tuple for each donor -# -- kind of like a record in a database table -donor_db = [] -donor_db.append( ("William Gates, III", [653772.32, 12.17]) ) -donor_db.append( ("Jeff Bezos", [877.33]) ) -donor_db.append( ("Paul Allen", [663.23, 43.87, 1.32]) ) -donor_db.append( ("Mark Zuckerberg", [1663.23, 4300.87, 10432.0]) ) - - -def print_donors(): - print "Donor list:\n" - for donor in donor_db: - print donor[0] - - -def find_donor(name): - """ - find a donor in the donor db - - :param: the name of the donor - - :returns: The donor data structure -- None if not in the donor_db - """ - for donor in donor_db: - # do an non-capitalized compare - if name.strip().lower() == donor[0].lower(): - return donor - return None - - -def main_menu_selection(): - """ - Print out the main application menu and then read the user input. - """ - input = raw_input(dedent(''' - Choose an action: - - 1 - Send a Thank You - 2 - Create a Report - 3 - Quit - - > ''')) - return input.strip() - - -def gen_letter(donor): - """ - Generate a thank you letter for the donor - - :param: donor tuple - - :returns: string with letter - """ - return dedent(''' - Dear %s - - Thank you for your very kind donation of %.2f. - It will be put to very good use. - - Sincerely, - -The Team - ''' % (donor[0], donor[1][-1]) ) - - -def send_thank_you(): - """ - Execute the logic to record a donation and generate a thank you message. - """ - # Read a valid donor to send a thank you from, handling special commands to - # let the user navigate as defined. - while True: - name = raw_input("Enter a donor's name (or list to see all donors or 'menu' to exit)> ").strip() - if name == "list": - print_donors() - elif name == "menu": - return - else: - break - - # Now prompt the user for a donation amount to apply. Since this is also an exit - # point to the main menu, we want to make sure this is done before mutating the db - # list object. - while True: - amount_str = raw_input("Enter a donation amount (or 'menu' to exit)> ").strip() - if amount_str == "menu": - return - # Make sure amount is a valid amount before leaving the input loop - amount = float(amount_str) - if math.isnan(amount) or math.isinf(amount) or round(amount, 2) == 0.00: - print "error: donation amount is invalid\n" - else: - break - - # If this is a new user, ensure that the database has the necessary data structure. - donor = find_donor(name) - if donor is None: - donor = (name, []) - donor_db.append( donor ) - - # Record the donation - donor[1].append(amount) - print gen_letter(donor) - - -def sort_key(item): - return item[1] - - -def print_donor_report(): - """ - Generate the report of the donors and amounts donated. - """ - # First, reduce the raw data into a summary list view - report_rows = [] - for (name, gifts) in donor_db: - total_gifts = sum(gifts) - num_gifts = len(gifts) - avg_gift = total_gifts / num_gifts - report_rows.append( (name, total_gifts, num_gifts, avg_gift) ) - - #sort the report data - report_rows.sort(key=sort_key) - print "%25s | %11s | %9s | %12s"%("Donor Name","Total Given","Num Gifts","Average Gift") - print "-"*66 - for row in report_rows: - print "%25s %11.2f %9i %12.2f"%row - -if __name__ == "__main__": - running = True - while running: - selection = main_menu_selection() - if selection is "1": - send_thank_you() - elif selection is "2": - print_donor_report() - elif selection is "3": - running = False - else: - print "error: menu selection is invalid!" diff --git a/Solutions/Session03/rot13.py b/Solutions/Session03/rot13.py deleted file mode 100644 index 68ddf3cc..00000000 --- a/Solutions/Session03/rot13.py +++ /dev/null @@ -1,156 +0,0 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- -## the above line is so I can use Unicode in the source -## only there for the µ charactor in the timings report... - -""" -A simple function to compute rot13 encoding - -ROT13 encryption - -Applying ROT13 to a piece of text merely requires examining its alphabetic -characters and replacing each one by the letter 13 places further along in -the alphabet, wrapping back to the beginning if necessary -""" - -## note: the string translate() method would be the high-performance solution - -import string - -# a few handy constanst: -a = ord('a') -z = ord('z') -A = ord('A') -Z = ord('Z') - - -def rot13a(text): - """ - My first solution - """ - # loop through the letters - new_text = [] - for c in text: - # do upper and lower case separately - if c in string.ascii_lowercase: - o = ord(c) + 13 - if o > z: - o = a-1 + o-z - elif c in string.ascii_uppercase: - o = ord(c) + 13 - if o > Z: - o = A-1 + o-Z - else: - o = ord(c) - new_text.append( chr(o) ) - return "".join(new_text) - - -def rot13b(text): - """ - A little smarter to use % to take care of the wrap-around - - And do a check on the ord value, rather than looking in - string.ascii_lowercase - """ - # loop through the letters - new_text = [] - for c in text: - o = ord(c) - # do upper and lower case separately - if a <= o <= z: - o = a + ( (o - a + 13)%26 ) - elif A <= o <= Z: - o = A + ( (o - A + 13)%26 ) - new_text.append( chr(o) ) - return "".join(new_text) - -# Translation table for 1 byte string objects: -## Faster if you build a translation table and use that -## a translation table needs to be 256 characters long -## -- all ord vales from 0 to 255 - -# build a translation table: -str_table = [] -# loop through all possible ascii values -for c in range(256): - # do upper and lower case separately - if a <= c <= z: - c = a + (c - a + 13)%26 - elif A <= c <= Z: - c = A + (c - A + 13)%26 - str_table.append( chr(c) ) -str_table = "".join(str_table) - -## Translation table for unicode objects. -## Unicode has a LOT of code points, so you only specifiy the ones -## that need changing in a Unicode translation table -- in a dict -## NOTE: I'm not expecting anyone to do Unicode at this pint, but for -## completelness sake, it's here. - -uni_table = {} -# the lower-case letters -for c in range(a, z+1): - uni_table[c] = a + (c - a + 13)%26 -# the lower-case letters -for c in range(A, Z+1): - uni_table[c] = A + (c - A + 13)%26 - - -def rot13c(text): - """ - This one uses str.translate() or unicode.translate() - """ - if type(text) == str: - return text.translate(str_table) - elif type(text) == unicode: - return text.translate(uni_table) - - -def rot13d(text): - """ - This one "cheats" by using the built-in 'rot13' encoding - """ - return text.encode('rot13') - - -if __name__ == "__main__": - print rot13a("Zntargvp sebz bhgfvqr arne pbeare") - print rot13b("Zntargvp sebz bhgfvqr arne pbeare") - print rot13c("Zntargvp sebz bhgfvqr arne pbeare") - print rot13d("Zntargvp sebz bhgfvqr arne pbeare") - - ## rot13 should be reversible: - - assert ( rot13a("Zntargvp sebz bhgfvqr arne pbeare") == - "Magnetic from outside near corner" ) - - text = "Some random text to try!" - assert rot13a( rot13a(text) ) == text - - assert rot13a(text) == rot13b(text) == rot13c(text) - - ## And a Unicode test: - - text = u"Some random text to try!" - print rot13a(text) - - assert rot13a( rot13a(text) ) == text - - assert rot13a(text) == rot13b(text) == rot13c(text) == rot13d(text) - - print "All assertions pass" - - -# In [34]: timeit rot13a('This is a pretty short string, but maybe long enough to test') -# 10000 loops, best of 3: 29.4 µs per loop - -# In [35]: timeit rot13b('This is a pretty short string, but maybe long enough to test') -# 10000 loops, best of 3: 29 µs per loop - -# In [36]: timeit rot13c('This is a pretty short string, but maybe long enough to test') -# 1000000 loops, best of 3: 419 ns per loop - -# In [37]: timeit rot13d('This is a pretty short string, but maybe long enough to test') -# 100000 loops, best of 3: 2.78 µs per loop - diff --git a/Solutions/Session03/string_formatting.py b/Solutions/Session03/string_formatting.py deleted file mode 100644 index 1b35e50b..00000000 --- a/Solutions/Session03/string_formatting.py +++ /dev/null @@ -1,50 +0,0 @@ -#!/usr/bin/env python - -""" -String formatting lab: - -This version using "old style" formatting - -""" -# Rewrite: "the first 3 numbers are: %i, %i, %i"%(1,2,3) -# for an arbitrary number of numbers... - -# solution 1 -# the goal was to demonstrate dynamic building of format strings: - -# create the numbers -numbers = [32, 56, 34, 12, 48, 18] - -# build the format string for the numbers: -formatter = " %i," * len(numbers) - -formatter = formatter[:-1] # take the extra comma off the end - -# put it together with the rest of the string -formatter = "the first %i numbers are: %s"%(len(numbers), formatter) - -# use it: -# the format operator needs a tuple -# tuple(seq) will make a tuple out of any sequence -print formatter%tuple(numbers) - -# solution 2 -# in class, a couple people realized that str() would make a nice string from -# a list or tuple - -numbers_str = str(numbers)[1:-1] # make a string, remove the brackets -# put it together with the rest of the string -print "the first %i numbers are: %s"%(len(numbers), numbers_str) - -##### -# Write a format string that will take: -# ( 2, 123.4567, 10000) -# and produce: -# 'file_002 : 123.46, 1e+04' -##### - -t = (2, 123.4567, 10000) -print "file_%03i : %10.2f, %.3g"%t - -# could use '%e' for the last one, too -- I like '%g' -- it does significant figures... - diff --git a/Solutions/Session03/string_formatting_new.py b/Solutions/Session03/string_formatting_new.py deleted file mode 100644 index 2d1cdade..00000000 --- a/Solutions/Session03/string_formatting_new.py +++ /dev/null @@ -1,46 +0,0 @@ -#!/usr/bin/env python - -""" -String formatting lab: - -This version using "new style" formatting - -""" -# Rewrite: "the first 3 numbers are: %i, %i, %i"%(1,2,3) -# for an arbitrary number of numbers... - -# solution 1 -# the goal was to demonstrate dynamic building of format strings: - -# create the numbers -numbers = [32, 56, 34, 12, 48, 18] - -# build the format string for the numbers: -formatter = ", ".join(["{:d}"] * len(numbers)) - -# put it together with the rest of the string -formatter = "the first {0:d} numbers are: {1}".format(len(numbers), formatter) - -# use it: -# * unpacks a sequence inot the arguments of a function -- we'll get to that! -print formatter.format(*numbers) - -# solution 2 -# in class, a couple people realized that str() would make a nice string from -# a list or tuple - -numbers_str = str(numbers)[1:-1] # make a string, remove the brackets -# put it together with the rest of the string -print "the first {:d} numbers are: {}".format(len(numbers), numbers_str) - -##### -# Write a format string that will take: -# ( 2, 123.4567, 10000) -# and produce: -# 'file_002 : 123.46, 1e+04' -##### - -print "file_{:03d} : {:10.2f}, {:.3g}".format(2, 123.4567, 10000) - -# could use '{:.3e}' for the last one, too -- I like '%g' -- it does significant figures... - diff --git a/Solutions/Session04/copy_file.py b/Solutions/Session04/copy_file.py deleted file mode 100644 index 7655c4ed..00000000 --- a/Solutions/Session04/copy_file.py +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/env python - -""" -Very simple script to copy a file -""" - -import sys - -source, dest = sys.argv[1:3] - -infile = open(source, 'rb') # read binary mode -outfile = open(dest, 'wb') # write binary mode - -outfile.write(infile.read()) -infile.close() -outfile.close() - -## or as a one-liner: -# open(dest, 'wb').write(open(source, 'rb').read()) - - diff --git a/Solutions/Session04/dict_set_solution.py b/Solutions/Session04/dict_set_solution.py deleted file mode 100755 index f0b6d32f..00000000 --- a/Solutions/Session04/dict_set_solution.py +++ /dev/null @@ -1,152 +0,0 @@ -#!/usr/bin/env python - -""" -dict/set lab solutions: Chris' version. -""" - -# Create a dictionary containing "name", "city", and "cake" for -# "Chris" from "Seattle" who likes "Chocolate". - - -d = {"name": "Chris", - "city": "Seattle", - "cake": "Chocolate"} - -# Display the dictionary. -print d - -#or something fancier, like: -print "{name} is from {city}, and likes {cake} cake.".format(name=d['name'], - city=d['city'], - cake=d['cake']) - -# But if that seems like unnecceasry typing -- it is: -# we'll learn the **d form is session05: -print "{name} is from {city}, and likes {cake} cake.".format(**d) - - -# Delete the entry for "cake". -# Display the dictionary. - -del d["cake"] - -print d - -# Add an entry for "fruit" with "Mango" and display the dictionary. - -d['fruit'] = 'Mango' - -print d - -# Display the dictionary keys. - -print d.keys() - -# Display the dictionary values. - -print d.values() - -# Display whether or not "cake" is a key in the dictionary (i.e. False) (now). - -print 'cake' in d - -# Display whether or not "Mango" is a value in the dictionary. - -print 'Mango' in d.values() - -# Using the dict constructor and zip, build a dictionary of numbers -# from zero to fifteen and the hexadecimal equivalent (string is fine). -# did you find the hex() function?" -nums = range(16) -hexes = [] -for num in nums: - hexes.append(hex(num)) - -hex_dict = dict(zip(nums, hexes)) - -print hex_dict - - -# Using the dictionary from item 1: Make a dictionary using the same keys -# but with the number of 't's in each value. - -a_dict = {} -for key, val in d.items(): - a_dict[key] = val.count('t') -print a_dict - - -# replacing the values in the original dict: -<<<<<<< HEAD - -for key, val in d.items(): - d[key] = val.count('t') -print d - -======= -d.update(a_dict) -print d - -# could also do it this way. -#for key, val in d.items(): -# d[key] = val.count('t') -#print d - ->>>>>>> 46ce6ea660d7458ad07d0a092349a82db8fecb7c -# Create sets s2, s3 and s4 that contain numbers from zero through -# twenty, divisible 2, 3 and 4. - -# Display the sets. - -s2 = set() -s3 = set() -s4 = set() -for i in range(21): - if not i%2: - s2.add(i) - if not i%3: - s3.add(i) - if not i%4: - s4.add(i) - -print s2 -print s3 -print s4 - - -# Display if s3 is a subset of s2 (False) - -print s3.issubset(s2) - -# and if s4 is a subset of s2 (True). - -print s4.issubset(s2) - -# Create a set with the letters in 'Python' and add 'i' to the set. - -s = set('Python') -s.add('i') - -print s - -# maybe: -s = set('Python'.lower()) # that wasn't specified... -s.add('i') - -# Create a frozenset with the letters in 'marathon' - -fs = frozenset('marathon') - -# display the union and intersection of the two sets. - -print "union:", s.union(fs) -print "intersection:", s.intersection(fs) - -## not that order doesn't matter for these: - -print "union:", fs.union(s) -print "intersection:", fs.intersection(s) - - - - diff --git a/Solutions/Session04/file_lister.py b/Solutions/Session04/file_lister.py deleted file mode 100644 index 766a6e2f..00000000 --- a/Solutions/Session04/file_lister.py +++ /dev/null @@ -1,29 +0,0 @@ -#!/usr/bin/env python - -""" -file_lister - -Write a program which prints the full path to all files in the current -directory, one per line. -""" - -import os - -## Two ways to do this: - -## One: get file names, and convert to absolute path: - -print "listing using method one" -for name in os.listdir(os.curdir): - print os.path.abspath(name) - -# Note: os.curdir is "." on all sytems I knwo of... -# so you could just do os.curdir(".") -# Back in the days of the old MacOS -- it was different there. - -## Two: get the current dir path, then join that with each of the filenames -curdir = os.getcwd() -print "listing using method two" -for name in os.listdir(curdir): - print os.path.join(curdir, name) - diff --git a/Solutions/Session04/get_langs.py b/Solutions/Session04/get_langs.py deleted file mode 100644 index cefb9b20..00000000 --- a/Solutions/Session04/get_langs.py +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/env python - -""" -script to determine what programming languages students came to this clas iwth -""" - -file_path = '../../Examples/Session01/students.txt' - -all_langs = set() # use a set to ensure unique values - -f = open(file_path) # default read text mode - -f.readline() # read and toss the header - -for line in f: - langs = line.split(':')[1] - langs = langs.split(',') - for lang in langs: - lang = lang.strip().lower() - if lang: # don't want empty strings - all_langs.add(lang) -for lang in all_langs: - print lang diff --git a/Solutions/Session04/mailroom.py b/Solutions/Session04/mailroom.py deleted file mode 100755 index 9d3a4a0f..00000000 --- a/Solutions/Session04/mailroom.py +++ /dev/null @@ -1,210 +0,0 @@ -#!/usr/bin/env python - -""" -mailroom assignment - -This version uses a dict for the main db, and exception handling to -check input -""" - -import sys -import math - -# handy utility to make pretty printing easier -from textwrap import dedent - - -# In memory representation of the donor database -# using a tuple for each donor -# -- kind of like a record in a database table -# using a dict with a lower case version of the donor's name as the key -donor_db = {} -donor_db['william gates, iii'] = ("William Gates, III", [653772.32, 12.17]) -donor_db['jeff bezos'] = ("Jeff Bezos", [877.33]) -donor_db['paul allen'] = ("Paul Allen", [663.23, 43.87, 1.32]) -donor_db['mark zuckerberg'] = ("Mark Zuckerberg", [1663.23, 4300.87, 10432.0]) - - -def list_donors(): - """ - creates alist of the donors as a string, so tehy can be printed - - not calling print from here makes it more flexible and easier to - test - """ - listing = ["Donor list:"] - for donor in donor_db.values(): - listing.append( donor[0] ) - return "\n".join(listing) - - -def find_donor(name): - """ - find a donor in the donor db - - :param: the name of the donor - - :returns: The donor data structure -- None if not in the donor_db - """ - key = name.strip().lower() - return donor_db.get(key) - - -def add_donor(name): - """ - add a new donor to the donr db - - :param: the name of the donor - - :returns: the new Donor data structure - """ - name = name.strip() - donor = (name, []) - donor_db[name.lower()] = donor - return donor - - -def main_menu_selection(): - """ - Print out the main application menu and then read the user input. - """ - input = raw_input(dedent(''' - Choose an action: - - 1 - Send a Thank You - 2 - Create a Report - 3 - Send letters to everyone - 4 - Quit - - > ''')) - return input.strip() - - -def gen_letter(donor): - """ - Generate a thank you letter for the donor - - :param: donor tuple - - :returns: string with letter - """ - return dedent('''Dear {0:s} - - Thank you for your very kind donation of ${1:.2f}. - It will be put to very good use. - - Sincerely, - -The Team - '''.format(donor[0], donor[1][-1]) ) - - -def send_thank_you(): - """ - Execute the logic to record a donation and generate a thank you message. - """ - # Read a valid donor to send a thank you from, handling special commands to - # let the user navigate as defined. - while True: - name = raw_input("Enter a donor's name (or list to see all donors or 'menu' to exit)> ").strip() - if name == "list": - print list_donors() - elif name == "menu": - return - else: - break - - # Now prompt the user for a donation amount to apply. Since this is - # also an exit point to the main menu, we want to make sure this is - # done before mutating the db . - while True: - amount_str = raw_input("Enter a donation amount (or 'menu' to exit)> ").strip() - if amount_str == "menu": - return - # Make sure amount is a valid amount before leaving the input loop - try: - amount = float(amount_str) - # extra check here -- unlikely that someone will type "NaN", but - # it IS possible, and it is a valid floating point number: - # http://en.wikipedia.org/wiki/NaN - if math.isnan(amount) or math.isinf(amount) or round(amount, 2) == 0.00: - raise ValueError - # in this case, the ValueError could be raised by the float() call, or by the NaN-check - except ValueError: - print "error: donation amount is invalid\n" - else: - break - - # If this is a new user, ensure that the database has the necessary - # data structure. - donor = find_donor(name) - if donor is None: - donor = add_donor(name) - - # Record the donation - donor[1].append(amount) - print gen_letter(donor) - - -def sort_key(item): - ## used to sort on name in donor_db - return item[1] - - -def generate_donor_report(): - """ - Generate the report of the donors and amounts donated. - - :returns: the donor report as a string. - """ - # First, reduce the raw data into a summary list view - report_rows = [] - for (name, gifts) in donor_db.values(): - total_gifts = sum(gifts) - num_gifts = len(gifts) - avg_gift = total_gifts / num_gifts - report_rows.append( (name, total_gifts, num_gifts, avg_gift) ) - - #sort the report data - report_rows.sort(key=sort_key) - report = [] - report.append("%25s | %11s | %9s | %12s"%("Donor Name","Total Given","Num Gifts","Average Gift") ) - report.append("-"*66) - for row in report_rows: - report.append("%25s %11.2f %9i %12.2f"%row) - return "\n".join(report) - - -def save_letters_to_disk(): - """ - make a letter for each donor, and save it to disk. - """ - for donor in donor_db.values(): - letter = gen_letter(donor) - filename = donor[0].replace(" ","_") + ".txt" # I don't like spaces in filenames... - open(filename, 'w').write(letter) - - -def print_donor_report(): - print generate_donor_report() - - -def quit(): - sys.exit(0) - -if __name__ == "__main__": - running = True - - selection_dict = {"1": send_thank_you, - "2": print_donor_report, - "3": save_letters_to_disk, - "4": quit} - - while True: - selection = main_menu_selection() - try: - selection_dict[selection]() - except KeyError: - print "error: menu selection is invalid!" - - - diff --git a/Solutions/Session04/print_paths.py b/Solutions/Session04/print_paths.py deleted file mode 100644 index 507fb987..00000000 --- a/Solutions/Session04/print_paths.py +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/env python - -""" -very simple script to print the full paths in the current dir -""" - -import os - -files = os.listdir('.') -for name in files: - print os.path.abspath(name) - diff --git a/Solutions/Session04/safe_input.py b/Solutions/Session04/safe_input.py deleted file mode 100644 index 2536e1df..00000000 --- a/Solutions/Session04/safe_input.py +++ /dev/null @@ -1,41 +0,0 @@ -#!/usr/bin/env python - -""" -Exceptions Lab solution: - -The raw_input() function can generate two exceptions: -EOFError or KeyboardInterrupt on end-of-file(EOF) or canceled input. - -Create a wrapper function, perhaps safe_input() that returns None rather -rather than raising these exceptions, when the user enters ^C for Keyboard -Interrupt, or ^D (^Z on Windows) for End Of File. - -NOTE: if the user types a few charactors, and the hits ctrl+C, the -KeyboardInterrupt gets caught somewhere deeper in the process, and -this function doesn't work. - -Don't worry about that -- I do'nt really understnd what's going on in -the REPL (Read, Evaluate, Print Loop) either -- and the point of this -assigment is simple Exception handling. -""" - - -def safe_input(prompt_string=""): - """ - print user for input -- returning a raw string. - - This is just like the built-in raw_input(), but it will return None - if the user hits ctrl+c, ratehr than raise an Exception. - """ - try: - response = raw_input(prompt_string) - return response - except (EOFError, KeyboardInterrupt): - return None - -if __name__ == "__main__": - response = safe_input("Say Something: ") - print "You said:", response - - - diff --git a/Solutions/Session04/test_mailroom.py b/Solutions/Session04/test_mailroom.py deleted file mode 100644 index 95cecf74..00000000 --- a/Solutions/Session04/test_mailroom.py +++ /dev/null @@ -1,77 +0,0 @@ -#!/usr/bin/env python - -""" -unit tests for the mailroom program -""" -import os - -import mailroom - - -#DB = mailroom.donor_db - -def test_list_donors(): - listing = mailroom.list_donors() - - # hard to test this throughly -- better not to hard code the entire - # thing. But check for a few aspects -- this will catchthe likley - # errors - assert listing.startswith("Donor list:\n") - assert "Jeff Bezos" in listing - assert "William Gates, III" in listing - assert len(listing.split('\n')) == 5 - - -def test_find_donor(): - """ checks a donor that isthere, but with odd case and spaces""" - donor = mailroom.find_donor("jefF beZos ") - - assert donor[0] == "Jeff Bezos" - - -def test_find_donor_not(): - "test one that's not there" - donor = mailroom.find_donor("Jeff Bzos") - - assert donor is None - - -def test_gen_letter(): - """ test the donor letter """ - - # create a sample donor - donor = ( "Fred Flintstone", [432.45, 65.45, 230.0] ) - letter = mailroom.gen_letter(donor) - # what to test? tricky! - assert letter.startswith("Dear Fred Flintstone") - assert letter.endswith("-The Team\n") - assert "donation of $230.00" in letter - - -def test_add_donor(): - name = "Fred Flintstone " - - donor = mailroom.add_donor(name) - donor[1].append(300) - assert donor[0] == "Fred Flintstone" - assert donor[1] == [300] - assert mailroom.find_donor(name) == donor - - -def test_generate_donor_report(): - - report = mailroom.generate_donor_report() - - print report - assert report.startswith(" Donor Name | Total Given | Num Gifts | Average Gift") - assert " Jeff Bezos 877.33 1 877.33" in report - - -def test_save_letters_to_disk(): - """This only tests that the files get created, but that's a start""" - - mailroom.save_letters_to_disk() - - assert os.path.isfile('Jeff_Bezos.txt') - assert os.path.isfile('William_Gates,_III.txt') - diff --git a/Solutions/Session04/trigram_solution.py b/Solutions/Session04/trigram_solution.py deleted file mode 100644 index 06830749..00000000 --- a/Solutions/Session04/trigram_solution.py +++ /dev/null @@ -1,158 +0,0 @@ -#!/usr/bin/env python - -""" -Trigram.py - -A solution to the trigram coding Kata: - -http://codekata.com/kata/kata14-tom-swift-under-the-milkwood/ - -Chris Barker's Solution - -This one is pretty straight forward -- really a quickie script - -There is lots of room to make it fancier of you want -""" - -# infilename = "sherlock_small.txt" -infilename = "sherlock.txt" - -import sys -import string -import random - - -def make_words(text): - - """ - make a list of words from a large bunch of text - - strips all the punctuation and other stuff from a string - """ - - # build a translation table for string.translate: - # there are other ways to do this: - # a_word.strip() works well, too. - - punctuation = string.punctuation - punctuation = punctuation.replace("'", "") # keep apostropies - punctuation = punctuation.replace("-", "") # keep hyphenated words - ## this will replace punctiation with spaces - ## -- then split() will remove the extra spaces - table = string.maketrans(punctuation, " "*len(punctuation)) - - # lower-case everything to remove that complication: - text = text.lower() - - # remove punctuation - text = text.translate(table) - - # remove "--" -- can't do multiple characters with translate - text = text.replace("--", " ") - - # split into words - words = text.split() - - # remove the bare single quotes - # " ' " is both a quote and an apostrophe - words2 = [] - for word in words: - if word != "'": # remove quote by itself - # "i" by itself should be capitalized - words2.append("I" if word == 'i' else word) - ## could be done with list comp too -- next week! - # words2 = [("I" if word == 'i' else word) for word in words if word != "'"] - - return words2 - - -def read_in_data(infilename): - - infile = open(infilename, 'r') # text mode is default - # strip out the header, table of contents, etc. - for i in range(61): - infile.readline() - - full_text = [] - # read the rest of the file line by line - for line in infile: - if line.startswith("End of the Project Gutenberg EBook"): - break - full_text.append(line) - - # put all the lines together into one big string: - return " ".join(full_text) - - -def build_trigram(words): - """build a trigram dict from the passed-in list of words""" - - # Dictionary for trigram results: - # The keys will be all the word pairs - # The values will be a list of the words that follow each pair - word_pairs = {} - - - # loop through the words - # (rare case where using the index to loop is easiest) - for i in range(len(words) - 2): # minus 2, 'cause you need a pair' - pair = tuple( words[i:i+2] ) # a tuple so it can be a key in the dict - follower = words[i+2] - word_pairs.setdefault(pair,[]).append(follower) - - # setdefault() returns the value if pair is already in the dict - # if it's not, it adds it, setting the value to a an empty list - # then it returns the list, which we then append the following - # word to -- cleaner than: - # if pair in word_pairs: - # word_pairs[pair].append(follower) - # else: - # word_pairs[pair] = [follower] - return word_pairs - - -def build_text(word_pairs): - - """ - Build some new text from the word_pair dict supplied - - A bit of fancy stuff to make them look like sentences.. - """ - - new_text = [] - for i in range(30): # do thirty sentences - # pick a word pair to start the sentence - sentence = list(random.choice( word_pairs.keys() ) ) - - # now add a random number of additional words to the sentence - for j in range(random.randint(2,10)): - pair = tuple(sentence[-2:]) - sentence.append( random.choice(word_pairs[pair]) ) - - #capitalize the first word: - sentence[0] = sentence[0].capitalize() - - #Add the period - sentence[-1] += "." - new_text.extend(sentence) - - new_text = " ".join(new_text) - - return new_text - - -if __name__ == "__main__": - - # get the filename from the command line - try: - filename = sys.argv[1] - except IndexError: - print "You must pass in a filename" - sys.exit(1) - - in_data = read_in_data(filename) - words = make_words(in_data) - word_pairs = build_trigram(words) - new_text = build_text(word_pairs) - - print new_text diff --git a/Solutions/Session05/count_evens.py b/Solutions/Session05/count_evens.py deleted file mode 100644 index f5c2a26e..00000000 --- a/Solutions/Session05/count_evens.py +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/env python - -""" -This is from CodingBat "count_evens" (http://codingbat.com/prob/p189616) - -Using a list comprehension, return the number of even ints in the given array. -""" - - -def count_evens(arr): - return len( [i for i in arr if not i%2] ) - diff --git a/Solutions/Session05/dict_set_solution.py b/Solutions/Session05/dict_set_solution.py deleted file mode 100644 index 320cd37e..00000000 --- a/Solutions/Session05/dict_set_solution.py +++ /dev/null @@ -1,70 +0,0 @@ -#!/usr/bin/env python - -""" -dict/set lab solutions: Chris' version. -""" - -food_prefs = {"name": "Chris", - "city": "Seattle", - "cake": "chocolate", - "fruit": "mango", - "salad": "greek", - "pasta": "lasagna"} - - -# 1. Print the dict by passing it to a string format method, so that you -# get something like: - -print ( "{name} is from Seattle, and he likes {cake} cake, {fruit} fruit," - "{salad} salad, and {pasta} pasta".format(**food_prefs) ) - -# 2. Using a list comprehension, build a dictionary of numbers from zero -# to fifteen and the hexadecimal equivalent (string is fine). - -print dict( [ (i, hex(i)) for i in range(16) ] ) - -# 3. Do the previous entirely with a dict comprehension -- should be a one-liner - -print { i: hex(i) for i in range(16) } - -# 4. Using the dictionary from item 1: Make a dictionary using the same -# keys but with the number of 'a's in each value. You can do this either -# by editing the dict in place, or making a new one. If you edit in place, -# make a copy first! - -print { key:val.count('a') for key, val in food_prefs.items()} - - -# 5. Create sets s2, s3 and s4 that contain numbers from zero through twenty, -# divisible 2, 3 and 4. - -# a. Do this with one set comprehension for each set. -s2 = { i for i in range(21) if not i%2} -s3 = { i for i in range(21) if not i%3} -s4 = { i for i in range(21) if not i%4} - -print s2 -print s3 -print s4 - -# b. What if you had a lot more than 3? -- Don't Repeat Yourself (DRY) -# - create a sequence that holds all three sets -# - loop through that sequence to build the sets up -- so no repeated code. - -n = 5 -divisors = range(2, n+1) -sets = [ set() for i in divisors ] - -for i, st in zip( divisors, sets): - [ st.add(j) for j in range(21) if not j%i ] - -print sets - - -# c. Extra credit: do it all as a one-liner by nesting a set comprehension -# inside a list comprehension. (OK, that may be getting carried away!) - -sets = [ { i for i in range(21) if not i%j } for j in range(2,n+1) ] - -print sets - diff --git a/Solutions/Session05/get_langs.py b/Solutions/Session05/get_langs.py deleted file mode 100644 index 9f58a634..00000000 --- a/Solutions/Session05/get_langs.py +++ /dev/null @@ -1,31 +0,0 @@ -#!/usr/bin/env python - -""" -script to determine what programming languages students came to this -class with - -This version updated to use collections.Counter, to count and maintain -a set at the same time. - -""" - -import collections # lots of neat stuff in there - -file_path = '../../Examples/Session01/students.txt' - -# use a counter to ensure unique values and keep track of count -all_langs = collections.Counter() - -f = open(file_path) # default read text mode - -f.readline() # read and toss the header - -for line in f: - langs = line.split(':')[1] - langs = langs.split(',') - for lang in langs: - lang = lang.strip().lower() - if lang: # don't want empty strings - all_langs[lang] += 1 -for lang, count in all_langs.items(): - print "%10s: %i students"%(lang, count) diff --git a/Solutions/Session05/test_count_evens.py b/Solutions/Session05/test_count_evens.py deleted file mode 100644 index 4fb393eb..00000000 --- a/Solutions/Session05/test_count_evens.py +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/env python - -""" -test code for count_evens.py - -can be run with py.test or nose -""" - -from count_evens import count_evens - - -def test_1(): - assert count_evens([2, 1, 2, 3, 4]) == 3 - - -def test_2(): - assert count_evens([2, 2, 0]) == 3 - - -def test_3(): - count_evens([1, 3, 5, -9, -3]) == 0 - -def test_4(): - count_evens([1, 3, 5, -9, -3, -4, -2]) == 2 diff --git a/Solutions/Session06/html_render.py b/Solutions/Session06/html_render.py deleted file mode 100644 index 3d2b6fb2..00000000 --- a/Solutions/Session06/html_render.py +++ /dev/null @@ -1,106 +0,0 @@ -#!/usr/bin/env python - -""" -html render code -""" - - -class Element(object): - - tag = 'html' - indent = ' ' - - def __init__(self, content=None, **attributes): - - self.content = [] - self.attributes = attributes - - if content is not None: - self.content.append(content) - - def append(self, content): - self.content.append(content) - - def render_tag(self, current_ind): - attrs = "".join([' {}="{}"'.format(key,val) for key, val in self.attributes.items()]) - tag_str = "{}<{}{}>".format(current_ind, self.tag, attrs) - return tag_str - - def render(self, file_out, current_ind=""): - file_out.write(self.render_tag(current_ind)) - file_out.write('\n') - #print "in render:" - #print self.content - for con in self.content: - #print "trying to render:", con - try: - file_out.write( current_ind + self.indent + con+"\n") - except TypeError: - con.render(file_out, current_ind+self.indent) - file_out.write("{}\n".format(current_ind,self.tag)) - - -class OneLineTag(Element): - def render(self, file_out, current_ind=""): - file_out.write(self.render_tag(current_ind)) - for con in self.content: - file_out.write(con) - file_out.write("\n".format(self.tag)) - - -class Title(OneLineTag): - tag = 'title' - - -class SelfClosingTag(Element): - def render(self, file_out, current_ind=""): - file_out.write(self.render_tag(current_ind)[:-1]) - file_out.write(" />\n") - - -class Hr(SelfClosingTag): - tag = 'hr' - - -class A(OneLineTag): - tag = 'a' - def __init__(self, link, content=None, **attributes): - OneLineTag.__init__(self, content, **attributes) - self.attributes["href"] = link - - -class H(OneLineTag): - def __init__(self, level, content=None, **attributes): - OneLineTag.__init__(self, content, **attributes) - self.tag = "h%i"%(level) - -# H(2, "The text of the header") - - -class Ul(Element): - tag = 'ul' - - -class Li(Element): - tag = 'li' - - -class Html(Element): - tag = 'html' - def render(self, file_out, current_ind=""): - file_out.write("\n") - Element.render(self, file_out, current_ind=current_ind) - - -class Body(Element): - tag = 'body' - - -class P(Element): - tag = 'p' - - -class Head(Element): - tag = 'head' - - diff --git a/Solutions/Session06/run_html_render.py b/Solutions/Session06/run_html_render.py deleted file mode 100755 index 132acbf3..00000000 --- a/Solutions/Session06/run_html_render.py +++ /dev/null @@ -1,227 +0,0 @@ -#!/usr/bin/env python - -""" -a simple script can run and test your html rendering classes. - -Uncomment the steps as you add to your rendering. - -""" - -from cStringIO import StringIO - - -# importing the html_rendering code with a short name for easy typing. -import html_render_eb as hr -reload(hr) # reloading in case you are running this in iPython - # -- we want to make sure the latest version is used - - -## writing the file out: -def render_page(page, filename): - """ - render the tree of elements - - This uses cSstringIO to render to memory, then dump to console and - write to file -- very handy! - """ - - f = StringIO() - page.render(f, " ") - - f.reset() - - print f.read() - - f.reset() - open(filename, 'w').write( f.read() ) - - -## Step 1 -########## - -# page = hr.Element() - -# page.append("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text") - -# page.append("And here is another piece of text -- you should be able to add any number") - -# render_page(page, "test_html_output1.html") - -# ## Step 2 -# ########## - -# page = hr.Html() - -# body = hr.Body() - -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text")) - -# body.append(hr.P("And here is another piece of text -- you should be able to add any number")) - -# page.append(body) - -# render_page(page, "test_html_output2.html") - -# # Step 3 -# ########## - -# page = hr.Html() - -# head = hr.Head() -# head.append(hr.Title("PythonClass = Revision 1087:")) - -# page.append(head) - -# body = hr.Body() - -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text")) -# body.append(hr.P("And here is another piece of text -- you should be able to add any number")) - -# page.append(body) - -# render_page(page, "test_html_output3.html") - -# # Step 4 -# ########## - -# page = hr.Html() - -# head = hr.Head() -# head.append(hr.Title("PythonClass = Revision 1087:")) - -# page.append(head) - -# body = hr.Body() - -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text", -# style="text-align: center; font-style: oblique;")) - -# page.append(body) - -# render_page(page, "test_html_output4.html") - -# # Step 5 -# ######### - -# page = hr.Html() - -# head = hr.Head() -# head.append(hr.Title("PythonClass = Revision 1087:")) - -# page.append(head) - -# body = hr.Body() - -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text", -# style="text-align: center; font-style: oblique;")) - -# body.append(hr.Hr()) - -# page.append(body) - -# render_page(page, "test_html_output5.html") - -# # Step 6 -# ######### - -# page = hr.Html() - -# head = hr.Head() -# head.append(hr.Title("PythonClass = Revision 1087:")) - -# page.append(head) - -# body = hr.Body() - -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text", -# style="text-align: center; font-style: oblique;")) - -# body.append(hr.Hr()) - -# body.append("And this is a ") -# body.append( hr.A("http://google.com/", "link") ) -# body.append("to google") - -# page.append(body) - -# render_page(page, "test_html_output6.html") - -# # Step 7 -# ######### - -# page = hr.Html() - -# head = hr.Head() -# head.append(hr.Title("PythonClass = Revision 1087:")) - -# page.append(head) - -# body = hr.Body() - -# body.append( hr.H(2, "PythonClass - Class 6 example") ) - -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text", -# style="text-align: center; font-style: oblique;")) - -# body.append(hr.Hr()) - -# list = hr.Ul(id="TheList", style="line-height:200%") - -# list.append( hr.Li("The first item in a list") ) -# list.append( hr.Li("This is the second item", style="color: red") ) - -# item = hr.Li() -# item.append("And this is a ") -# item.append( hr.A("http://google.com/", "link") ) -# item.append("to google") - -# list.append(item) - -# body.append(list) - -# page.append(body) - -# render_page(page, "test_html_output7.html") - -# # Step 8 -# ######## - -page = hr.Html() - - -head = hr.Head() -head.append( hr.Meta(charset="UTF-8") ) -head.append(hr.Title("PythonClass = Revision 1087:")) - -page.append(head) - -body = hr.Body() - -body.append( hr.H(2, "PythonClass - Class 6 example") ) - -body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text", - style="text-align: center; font-style: oblique;")) - -body.append(hr.Hr()) - -list = hr.Ul(id="TheList", style="line-height:200%") - -list.append( hr.Li("The first item in a list") ) -list.append( hr.Li("This is the second item", style="color: red") ) - -item = hr.Li() -item.append("And this is a ") -item.append( hr.A("http://google.com/", "link") ) -item.append("to google") - -list.append(item) - -body.append(list) - -page.append(body) - -render_page(page, "test_html_output8.html") - - - - diff --git a/Solutions/Session06/test_html_render.py b/Solutions/Session06/test_html_render.py deleted file mode 100644 index 25c3c0f4..00000000 --- a/Solutions/Session06/test_html_render.py +++ /dev/null @@ -1,234 +0,0 @@ -#!/usr/bin/env python - -""" -unit tests for html rendering code -""" - -from cStringIO import StringIO - -import html_render as hr - - -## utility function for tests: -def render_element(element, ind=""): - """ - call the render method of an element and return the results as a string - """ - f = StringIO() - element.render(f, ind) - f.reset() - output = f.read() - return output # we don't care about leading/trailing whitespace - -## these should all pass with my framework code. - - -def test_init(): - " can I even initialize an Element" - hr.Element() - assert True - - -def test_init_content(): - " can I even initialize an Element with content" - - hr.Element("this is some text") - - assert True - - -def test_element_content(): - """ should be able to initilize with a string""" - hr.Element("some content") - - -## these should pass after part 1 - - -def test_render_content1(): - """ does the render method work """ - e = hr.Element("this is some content") - - output = render_element(e) - - assert output.startswith('') - assert output.endswith('\n') - assert "this is some content" in output - - -def test_render_content2(): - """ does the render method work after appending a string """ - e = hr.Element("this is some content") - e.append("and this is some more") - - output = render_element(e) - - assert output.startswith('') - assert output.endswith('\n') - assert "this is some content" in output - assert "and this is some more" in output - print output - - -def test_render_content_indent(): - """ does the render method work after appending a string """ - e = hr.Element("this is some content") - e.append("and this is some more") - - output = render_element(e) - lines = output.split('\n') - print lines - assert lines[1].startswith(" ") - - -## this one no longer currect with step 8 added -# def test_render_html(): -# """ the html element """ - -# e = hr.Html("this is some content") -# e.append("and this is some more") - -# output = render_element(e) - -# print output -# assert output.startswith('') -# assert output.endswith('\n') -# assert "this is some content" in output -# assert "and this is some more" in output - - -def test_render_body(): - """ the html element """ - - e = hr.Body("this is some content") - e.append("and this is some more") - - output = render_element(e) - - print output - assert output.startswith('') - assert output.endswith('\n') - assert "this is some content" in output - assert "and this is some more" in output - - -def test_render_p_indent(): - p = hr.P("a simple paragraph") - output = render_element(p, " ") - - print output - lines = output.split('\n') - - assert lines[0].startswith(" ") - assert lines[1].startswith(" ") - assert lines[2].startswith(" ") - - -def test_render_sub_elements(): - e = hr.Html("some simple text") - p = hr.P("a simple paragraph") - p.append(hr.P("a nested paragraph")) - - e.append(p) - - output = render_element(e) - - print output - lines = output.split('\n') - lines[0].startswith('') - lines[1].startswith(' ') - lines[3].startswith(' ') - lines[5].startswith(' ') - lines[-1].startswith('') - - -def test_one_line_tag(): - e = hr.OneLineTag('something') - output = render_element(e, ind=" ") - - print output - - assert output == " something\n" - - -def test_attributes(): - e = hr.P("some text", id="TheList", style="line-height:200%") - - output = render_element(e, ind=" ") - - print output - - lines = output.split('\n') - assert 'id="TheList"' in lines[0] - assert 'style="line-height:200%"' in lines[0] - - -def test_attributes_one_line(): - e = hr.Title("some text", id="TheList", style="line-height:200%") - - output = render_element(e, ind=" ") - - print output - - lines = output.split('\n') - assert 'id="TheList"' in lines[0] - assert 'style="line-height:200%"' in lines[0] - - -def test_self_closing(): - e = hr.Hr() - output = render_element(e, ind=" ") - - print output - assert output == "
\n" - - -def test_self_closing_attr(): - e = hr.Hr(id='fred', style='box') - output = render_element(e, ind=" ") - - print output - assert output == '
\n' - - -def test_anchor(): - e = hr.A("http://google.com/", "link to google") - - output = render_element(e, ind=" ") - - print output - assert output == ' link to google\n' - - -def test_header(): - e = hr.H(2, "The text of the header") - - output = render_element(e, ind=" ") - - print output - assert output == '

The text of the header

\n' - - -def test_header3(): - e = hr.H(3, "The text of the header") - - output = render_element(e, ind=" ") - - print output - assert output == '

The text of the header

\n' - - -def test_doctype(): - """ - html element should render teh doctype header, too - """ - - e = hr.Html("Just a tiny bit of content") - - output = render_element( e ) - - print output - assert output.startswith("") - assert "" in output - assert output.endswith("\n") - diff --git a/Solutions/Session07/circle.py b/Solutions/Session07/circle.py deleted file mode 100644 index 2ed8d59b..00000000 --- a/Solutions/Session07/circle.py +++ /dev/null @@ -1,92 +0,0 @@ -#!/usr/bin/env python - -""" -nifty Circle class -""" - -from math import pi -import functools - - -@functools.total_ordering -class Circle(object): - - def __init__(self, radius): - self.radius = float(radius) - - @classmethod - def from_diameter(cls, diameter): - return cls(diameter/2.0) - - @property - def diameter(self): - return self.radius * 2.0 - @diameter.setter - def diameter(self, value): - self.radius = value / 2.0 - - @property - def area(self): - return self.radius**2 * pi - - def __repr__(self): - return "Circle(%s)"%self.radius - - def __str__(self): - return "Circle with radius: %.4f"%self.radius - - def __add__(self, other): - return Circle(self.radius + other.radius) - - def __iadd__(self, other): - """ - for "augmented assignment" -- can be used for in-place addition - - generally used that way for mutable types. This approach returns - self, so that the object is changed in place. - """ - self.radius += other.radius - return self - - def __mul__(self, factor): - return Circle(self.radius * factor) - - def __imul__(self, factor): - self.radius *= factor - return self - - def __rmul__(self, factor): - return Circle(self.radius * factor) - - # def __cmp__(self, other): - # """ - # This is the easy way to support comparing all in one shot - # """ - # return cmp(self.radius, other.radius) - - ## Or you can define them all - ## So can support odd situations - # def __eq__(self, other): - # return self.radius == other.radius - # def __ne__(self, other): - # return self.radius != other.radius - # def __gt__(self, other): - # return self.radius > other.radius - # def __ge__(self, other): - # return self.radius >= other.radius - # def __lt__(self, other): - # return self.radius < other.radius - # def __le__(self, other): - # return self.radius <= other.radius - - ## or you can put the @total_ordering decorator on the class definiton and do this: - def __eq__(self, other): - return self.radius == other.radius - def __gt__(self, other): - return self.radius > other.radius - - - -class SubCircle(Circle): - pass - diff --git a/Solutions/Session07/test_circle.py b/Solutions/Session07/test_circle.py deleted file mode 100644 index 3df42b76..00000000 --- a/Solutions/Session07/test_circle.py +++ /dev/null @@ -1,178 +0,0 @@ -#!/usr/bin/env python - -from circle import Circle - -import pytest - -from math import pi - - -def test_init(): - Circle(3) - - -def test_radius(): - c = Circle(3) - - assert c.radius == 3 - - -def test_no_radius(): - with pytest.raises(TypeError): - c = Circle() - - -def test_set_radius(): - c = Circle(3) - c.radius = 5 - assert c.radius == 5 - - -def test_diam(): - c = Circle(3) - - assert c.diameter == 6 - - -def test_radius_change(): - - c = Circle(3) - c.radius = 4 - assert c.diameter == 8 - - -def test_set_diameter(): - c = Circle(4) - c.diameter = 10 - - assert c.radius == 5 - assert c.diameter == 10 - - -def test_set_diameter_float(): - c = Circle(4) - c.diameter = 11 - - assert c.radius == 5.5 - assert c.diameter == 11 - - -def test_area(): - c = Circle(2) - - assert c.area == pi*4 - - -def test_set_area(): - c = Circle(2) - with pytest.raises(AttributeError): - c.area = 30 - - -def test_from_diameter(): - c = Circle.from_diameter(4) - - assert isinstance(c, Circle) - assert c.radius == 2 - assert c.diameter == 4 - - -def test_repr(): - c = Circle(6.0) - - assert repr(c) == 'Circle(6.0)' - - -def test_str(): - c = Circle(3) - - assert str(c) == 'Circle with radius: 3.0000' - - -def test_addition(): - c1 = Circle(2) - c2 = Circle(3) - c3 = c1 + c2 - - assert c3.radius == 5 - - -def test_multiplication(): - c1 = Circle(2) - c3 = c1 * 4 - - assert c3.radius == 8 - - -def test_equal(): - c1 = Circle(3) - c2 = Circle(3.0) - - assert c1 == c2 - assert c1 <= c2 - assert c1 >= c2 - - -def test_not_equal(): - c1 = Circle(2.9) - c2 = Circle(3.0) - - assert c1 != c2 - - -def test_greater(): - c1 = Circle(2) - c2 = Circle(3) - - assert c2 > c1 - assert c2 >= c1 - - -def test_less(): - c1 = Circle(2) - c2 = Circle(3) - - assert c1 < c2 - assert c1 <= c2 - - -def test_reverse_multiply(): - c = Circle(3) - - c2 = 3 * c - - assert c2.radius == 9.0 - - -def test_plus_equal(): - c = Circle(3) - c2 = c - - c += Circle(2) - - assert c.radius == 5 - assert c is c2 - assert c2.radius == 5 - - -def test_times_equal(): - c = Circle(3) - c2 = c - - c *= 2 - - assert c.radius == 6 - assert c is c2 - assert c2.radius == 6 - - -def test_sort(): - a_list = [Circle(20), Circle(10), Circle(15), Circle(5)] - - a_list.sort() - - assert a_list[0] == Circle(5) - assert a_list[3] == Circle(20) - assert a_list[0] < a_list[1] < a_list[2] < a_list[3] - - diff --git a/Solutions/Session08/slice_sparse.py b/Solutions/Session08/slice_sparse.py deleted file mode 100644 index b322ebc9..00000000 --- a/Solutions/Session08/slice_sparse.py +++ /dev/null @@ -1,150 +0,0 @@ - -""" -example of emulating a sequence using slices -""" - -class SparseArray(object): - - def __init__(self, my_array=()): - self.length = len(my_array) - self.sparse_array = self.convert_to_sparse(my_array) - - def convert_to_sparse(self, my_array): - sparse_array = {} - for index, number in enumerate(my_array): - if number: - sparse_array[index] = number - return sparse_array - - def __len__(self): - return self.length - - def __getitem__(self, index): - #print('index', index) - #print('length', self.length) - # create a list of the slice they want returned - mini_array = [] - if isinstance(index, int): - return self.get_single_value(index) - elif isinstance(index, slice): - start, stop, step = index.indices(len(self)) - if step is None: - step = 1 - key = start - mini_array = [] - while key < stop: - #print('key', key) - mini_array.append(self[key]) - key += step - else: - raise TypeError("index must be int or slice") - return mini_array[:] - - def get_single_value(self, key): - if key >= self.length: - raise IndexError('array index out of range') - else: - return self.sparse_array.get(key, 0) - - def __setitem__(self, index, value): - if isinstance(index, int): - self.set_single_value(index, value) - elif isinstance(index, slice): - start, stop, step = index.indices(len(self)) - if step is None: - step = 1 - key = start - new_values = [] - new_keys = [] - for each in value: - #print('key', key) - #print('each', each) - if key < stop: - self[key] = each - else: - # now instead of replacing values, we need to add (a) value(s) in the center, - # and move stuff over, probably want to collect all of the changes, - # and then make a new dictionary - new_values.append(each) - new_keys.append(key) - key += step - if new_keys: - self.add_in_slice(new_keys, new_values) - - else: - raise TypeError("index must be int or slice") - - def set_single_value(self, key, value): - if key > self.length: - raise IndexError('array assignment index out of range') - if value != 0: - self.sparse_array[key] = value - else: - # if the value is being set to zero, we probably need to - # remove a key from our dictionary. - self.sparse_array.pop(key, None) - - def add_in_slice(self, new_keys, new_values): - # sometimes we need to add in extra values - # add in the extra values, any existing values - # greater than the last key of the new data - # will be increased by how many - #print('old dict', self.sparse_array) - #print new_keys - #print new_values - new_dict = {} - slice_length = len(new_keys) - for k, v in self.sparse_array.iteritems(): - if k >= new_keys[-1]: - #print('change keys') - # if greater than slice, change key - new_dict[k + slice_length] = v - elif k in new_keys: - #print('change values') - # if this is a key we are changing, change it, - # unless we are changing to a zero... - new_value = values[new_keys.index(k)] - if new_value != 0: - new_dict[k] = new_value - else: - #print('remains the same') - new_dict[k] = v - #print new_dict - # what if our new key was not previously in the dictionary? - # stick it in now - for k in new_keys: - if k not in new_dict.keys(): - #print 'put in dict' - #print('key', k) - #print('value', new_values[new_keys.index(k)]) - new_dict[k] = new_values[new_keys.index(k)] - #print new_dict - # note we don't want to do update, since we need to make sure we are - # getting rid of the old keys, when we moved the value to a new key - self.sparse_array = new_dict - # now we need to increase the length by the amount we increased our array by - self.length += slice_length - - def __delitem__(self, key): - # we probably need to move the keys if we are not deleting the last - # number, use pop in case it was a zero - if key == self.length - 1: - self.sparse_array.pop(key, None) - else: - # since we need to adjust all of the keys after the one we are - # deleting, probably most efficient to create a new dictionary - new_dict = {} - for k, v in self.sparse_array.iteritems(): - if k >= key: - new_dict[k - 1] = v - else: - new_dict[k] = v - # note we don't want to do update, since we need to make sure we are - # getting rid of the old keys, when we moved the value to a new key - self.sparse_array = new_dict - # length is now one shorter - self.length -= 1 - - - - diff --git a/Solutions/Session08/sparse_array.py b/Solutions/Session08/sparse_array.py deleted file mode 100644 index 8ba1ce9f..00000000 --- a/Solutions/Session08/sparse_array.py +++ /dev/null @@ -1,62 +0,0 @@ - -""" -example of emulating a sequence -""" - -class SparseArray(object): - - def __init__(self, my_array=()): - self.length = len(my_array) - self.sparse_array = self.convert_to_sparse(my_array) - - def convert_to_sparse(self, my_array): - sparse_array = {} - for index, number in enumerate(my_array): - if number: - sparse_array[index] = number - return sparse_array - - def __len__(self): - return self.length - - def __getitem__(self, key): - try: - return self.sparse_array[key] - except KeyError: - if key >= self.length: - raise IndexError('array index out of range') - return 0 - - def __setitem__(self, key, value): - if key > self.length: - raise IndexError('array assignment index out of range') - if value != 0: - self.sparse_array[key] = value - else: - # if the value is being set to zero, we probably need to - # remove a key from our dictionary. - self.sparse_array.pop(key, None) - - def __delitem__(self, key): - # we probably need to move the keys if we are not deleting the last - # number, use pop in case it was a zero - if key == self.length - 1: - self.sparse_array.pop(key, None) - else: - # since we need to adjust all of the keys after the one we are - # deleting, probably most efficient to create a new dictionary - new_dict = {} - for k, v in self.sparse_array.iteritems(): - if k >= key: - new_dict[k - 1] = v - else: - new_dict[k] = v - # note we don't want to do update, since we need to make sure we are - # getting rid of the old keys, when we moved the value to a new key - self.sparse_array = new_dict - # length is now one shorter - self.length -= 1 - - - - diff --git a/Solutions/Session08/test_quadratic.py b/Solutions/Session08/test_quadratic.py deleted file mode 100644 index 0418291f..00000000 --- a/Solutions/Session08/test_quadratic.py +++ /dev/null @@ -1,35 +0,0 @@ -#!/usr/bin/env python - -""" -test code for the quadratic function evaluator -""" - -import pytest - -from quadratic import Quadratic - - -def test_init(): - q = Quadratic(1,2,3) - - -def test_evaluate(): - q = Quadratic(1,2,3) - - assert q(3) == 9 + 6 + 3 - assert q(0) == 3 - - -def test_evaluate2(): - q = Quadratic(2,1,-3) - - assert q(0) == -3 - assert q(1) == 2 + 1 - 3 - assert q(-2) == 8 - 2 - 3 - - -def test_bad_input(): - - with pytest.raises(TypeError): - q = Quadratic(2,3) - diff --git a/Solutions/Session08/test_slice_sparse.py b/Solutions/Session08/test_slice_sparse.py deleted file mode 100644 index 1f80bb41..00000000 --- a/Solutions/Session08/test_slice_sparse.py +++ /dev/null @@ -1,104 +0,0 @@ -import pytest -from slice_sparse import SparseArray - - -def set_up(): - my_array = [2, 0, 0, 0, 3, 0, 0, 0, 4, 5, 6, 0, 2, 9] - my_sparse = SparseArray(my_array) - return (my_array, my_sparse) - -def test_object_exists(): - my_array, my_sparse = set_up() - assert isinstance(my_sparse, SparseArray) - -def test_get_non_zero_number(): - my_array, my_sparse = set_up() - assert my_sparse[4] == 3 - -def test_get_zero(): - my_array, my_sparse = set_up() - assert my_sparse[1] == 0 - -def test_get_element_not_in_array(): - my_array, my_sparse = set_up() - with pytest.raises(IndexError): - my_sparse[14] - -def test_get_slice(): - my_array, my_sparse = set_up() - assert my_sparse[2:4] == [0, 0] - -def test_set_slice(): - my_array, my_sparse = set_up() - my_sparse[2:4] = [2, 3, 4] - #print my_sparse[:] - assert my_sparse[:] == [2, 0, 2, 3, 4, 3, 0, 0, 0, 4, 5, 6, 0, 2, 9] - -def test_get_length(): - my_array, my_sparse = set_up() - assert len(my_sparse) == 14 - -def test_change_number_in_array(): - my_array, my_sparse = set_up() - my_sparse[0] = 3 - assert my_sparse[0] == 3 - # make sure others aren't changed - assert my_sparse[1] == 0 - # make sure still same length - assert len(my_sparse) == 14 - -def test_change_number_in_array_to_zero(): - my_array, my_sparse = set_up() - my_sparse[4] = 0 - assert my_sparse[4] == 0 - # make sure still same length - assert len(my_sparse) == 14 - -def test_change_number_in_array_from_zero(): - my_array, my_sparse = set_up() - my_sparse[1] = 4 - assert my_sparse[1] == 4 - # make sure still same length - assert len(my_sparse) == 14 - -def test_change_slice(): - my_array, my_sparse = set_up() - my_sparse[1:3] = [2, 3] - assert my_sparse[1:3] == [2, 3] - -def test_delete_number(): - my_array, my_sparse = set_up() - del(my_sparse[4]) - # if we delete the 4 position, should now be zero - assert my_sparse[4] == 0 - # should have smaller length - assert len(my_sparse) == 13 - -def test_delete_zero(): - my_array, my_sparse = set_up() - del(my_sparse[5]) - # should still be zero, but should have shorter length - assert my_sparse[5] == 0 - assert len(my_sparse) == 13 - -def test_delete_last_number(): - my_array, my_sparse = set_up() - del(my_sparse[13]) - # should get an error - with pytest.raises(IndexError): - my_sparse[13] - assert len(my_sparse) == 13 - -def test_indices_change(): - my_array, my_sparse = set_up() - del(my_sparse[3]) - # next index should have changed - # my_sparse[4] was 3 now - # my_sparse[3] should be 3 - assert (my_sparse[3] == 3) - - - - - - diff --git a/Solutions/Session08/test_sparse_array.py b/Solutions/Session08/test_sparse_array.py deleted file mode 100644 index c8cd902f..00000000 --- a/Solutions/Session08/test_sparse_array.py +++ /dev/null @@ -1,85 +0,0 @@ -import pytest -from sparse_array import SparseArray - - -def set_up(): - my_array = [2, 0, 0, 0, 3, 0, 0, 0, 4, 5, 6, 0, 2, 9] - my_sparse = SparseArray(my_array) - return (my_array, my_sparse) - -def test_object_exists(): - my_array, my_sparse = set_up() - assert isinstance(my_sparse, SparseArray) - -def test_get_non_zero_number(): - my_array, my_sparse = set_up() - assert my_sparse[4] == 3 - -def test_get_zero(): - my_array, my_sparse = set_up() - assert my_sparse[1] == 0 - -def test_get_element_not_in_array(): - my_array, my_sparse = set_up() - with pytest.raises(IndexError): - my_sparse[14] - -def test_get_lenght(): - my_array, my_sparse = set_up() - assert len(my_sparse) == 14 - -def test_change_number_in_array(): - my_array, my_sparse = set_up() - my_sparse[0] = 3 - assert my_sparse[0] == 3 - # make sure others aren't changed - assert my_sparse[1] == 0 - # make sure still same length - assert len(my_sparse) == 14 - -def test_change_number_in_array_to_zero(): - my_array, my_sparse = set_up() - my_sparse[4] = 0 - assert my_sparse[4] == 0 - # make sure still same length - assert len(my_sparse) == 14 - -def test_change_number_in_array_from_zero(): - my_array, my_sparse = set_up() - my_sparse[1] = 4 - assert my_sparse[1] == 4 - # make sure still same length - assert len(my_sparse) == 14 - -def test_delete_number(): - my_array, my_sparse = set_up() - del(my_sparse[4]) - # if we delete the 4 position, should now be zero - assert my_sparse[4] == 0 - # should have smaller length - assert len(my_sparse) == 13 - -def test_delete_zero(): - my_array, my_sparse = set_up() - del(my_sparse[5]) - # should still be zero, but should have shorter length - assert my_sparse[5] == 0 - assert len(my_sparse) == 13 - -def test_delete_last_number(): - my_array, my_sparse = set_up() - del(my_sparse[13]) - # should get an error? - with pytest.raises(IndexError): - my_sparse[13] - assert len(my_sparse) == 13 - -def test_indices_change(): - my_array, my_sparse = set_up() - del(my_sparse[3]) - # next index should have changed - # my_sparse[4] was 3 now - # my_sparse[3] should be 3 - assert (my_sparse[3] == 3) - - diff --git a/Students/A.Kramer/Final_Project/Chart.py b/Students/A.Kramer/Final_Project/Chart.py deleted file mode 100644 index a1d4aa80..00000000 --- a/Students/A.Kramer/Final_Project/Chart.py +++ /dev/null @@ -1,176 +0,0 @@ -''' -Created on Dec 3, 2014 - -@author: Aleksey Kramer -''' -import numpy as np -import matplotlib -import matplotlib.pyplot as plt -import matplotlib.ticker as mticker -import matplotlib.dates as mdates -from matplotlib.finance import candlestick -import pylab - -# adjusted font size for the plots -matplotlib.rcParams.update({"font.size": 10}) - - -# define RSI function -def rsiFunc(prices, n=14): - deltas = np.diff(prices) - seed = deltas[:n+1] - up = seed[seed >= 0].sum() / n - down = -seed[seed < 0].sum() / n - rs = up/down - rsi = np.zeros_like(prices) - rsi[:n] = 100. - 100./(1. + rs) - for i in range(n, len(prices)): - delta = deltas[i-1] - if delta > 0: - upval = delta - downval = 0. - else: - upval = 0. - downval = -delta - up = (up * (n-1) + upval) / n - down = (down*(n-1) + downval) / n - rs = up/down - rsi[i] = 100. - 100. / (1. + rs) - return rsi - -# define moving average function -def movingaverage(values, window): - weights = np.repeat(1.0, window) / window - smas = np.convolve(values, weights, 'valid') - return smas # numpy array - -def graphData(stock, MA1=12, MA2=26): - try: - # define the data file - stockFile = "./data/" + stock + ".txt" - - # Load data into numpy arrays - date, closep, highp, lowp, openp, volume = np.loadtxt(stockFile, delimiter=",", - unpack=True, converters = {0: mdates.strpdate2num("%Y%m%d")}) - - #----------------------------------------------------------------------------------------------- - # building data for drawing plotting candlestick chart. Basically, a an array of comma separated - # values. The order of elements is very specific, so check the documentation for candlestick - x = 0 - y = len(date) - candleArray = [] - while x < y: - # order of elements matters!!! - used for candlestick charting - appendLine = date[x], openp[x], closep[x], highp[x], lowp[x], volume[x] - candleArray.append(appendLine) - x += 1 - - # moving averages for 12 and 26 days - Av1 = movingaverage(closep, MA1) - Av2 = movingaverage(closep, MA2) - # Starting point for graphs - SP = len(date[MA2-1:]) - # Creating Moving Average labels - label1 = str(MA1) + " SMA" - label2 = str(MA2) + " SMA" - - - # changing the face color of the graphics - fig = plt.figure(facecolor="#07000D") - - # create room and plot candlestick chart - ax1 = plt.subplot2grid((5,4), (1,0), rowspan=4, colspan=4, axisbg="#07000D") - candlestick(ax1, candleArray[-SP:], width=0.75, colorup="#9EFF15", colordown="#FF1717") - # plot moving averages - ax1.plot(date[-SP:], Av1[-SP:], "#5998FF", label=label1, linewidth=1.5) - ax1.plot(date[-SP:], Av2[-SP:], "#E1EDF9", label=label2, linewidth=1.5) - # Set grid color to white - ax1.grid(True, color="white") - # Set number of tickers on x-axis - ax1.xaxis.set_major_locator(mticker.MaxNLocator(10)) - # Format date for presentation - ax1.xaxis.set_major_formatter(mdates.DateFormatter("%Y-%m-%d")) - # Change label and border colors - ax1.yaxis.label.set_color("white") - ax1.spines["bottom"].set_color("#5998FF") - ax1.spines["top"].set_color("#5998FF") - ax1.spines["left"].set_color("#5998FF") - ax1.spines["right"].set_color("#5998FF") - # Change tick color to white - ax1.tick_params(axis="y", colors="white") - ax1.tick_params(axis="x", colors="white") - plt.ylabel("Stock Price and Volume") - # display legend and set size of font to 7 - maLeg = plt.legend(loc=9, ncol=2, prop={"size":7}, fancybox=True) - # update label transparency - maLeg.get_frame().set_alpha(0.4) - textEd = pylab.gca().get_legend().get_texts() - # set label color - pylab.setp(textEd[0:5], color = "white") - # Tilt the labels to 45 degrees - for label in ax1.xaxis.get_ticklabels(): - label.set_rotation(45) - - - # set up RSI area - ax0 = plt.subplot2grid((5,4), (0,0), sharex=ax1, rowspan=1, colspan=4, axisbg="#07000d") - #plot RSI - rsi = rsiFunc(closep) - rsiCol = "#00FFE8" - ax0.plot(date[-SP:],rsi[-SP:], rsiCol, linewidth=1.5) - ax0.axhline(70, color = rsiCol) - ax0.axhline(30, color = rsiCol) - # color the spaces between the horizontal lines and the RSI line - ax0.fill_between(date[-SP:],rsi[-SP:], 70, where=(rsi[-SP:] >= 70), facecolor=rsiCol, edgecolor=rsiCol) - ax0.fill_between(date[-SP:],rsi[-SP:], 30, where=(rsi[-SP:] <= 30), facecolor=rsiCol, edgecolor=rsiCol) - # Change label and border colors - ax0.spines["bottom"].set_color("#5998FF") - ax0.spines["top"].set_color("#5998FF") - ax0.spines["left"].set_color("#5998FF") - ax0.spines["right"].set_color("#5998FF") - # Change tick color to white - ax0.tick_params(axis="x", colors="white") - ax0.tick_params(axis="y", colors="white") - ax0.set_yticks([30,70]) - ax0.yaxis.label.set_color("white") - plt.ylabel("RSI") - - - # Plot volume on the same range as ax1 - volumeMin = 0 - ax1v = ax1.twinx() - # subtract moving average calculations - ax1v.fill_between(date[-SP:], volumeMin, volume[-SP:], facecolor="#00FFE8", alpha=.5) - ax1v.axes.yaxis.set_ticklabels([]) - # hide grid - ax1v.grid(False) - # Change label and border colors - ax1v.spines["bottom"].set_color("#5998FF") - ax1v.spines["top"].set_color("#5998FF") - ax1v.spines["left"].set_color("#5998FF") - ax1v.spines["right"].set_color("#5998FF") - # update the height of the volume part - ax1v.set_ylim(0,3*volume.max()) - # Change axis color - ax1v.tick_params(axis="x", colors="white") - ax1v.tick_params(axis="y", colors="white") - - - # Setting up the overall appearance of the plot - plt.subplots_adjust(left=.08, bottom=.14, right=.95, top=.95, wspace=.20, hspace=0) - plt.suptitle(stock, color="white") - plt.setp(ax0.get_xticklabels(), visible=False) - plt.show() - fig.savefig("./data/" + stock + ".png", facecolor=fig.get_facecolor()) - - except Exception, e: - print "main loop", str(e) - -if __name__ == "__main__": - # testing the calls - # a list of stocks to process (for testing) - stocksToPull = 'AAPL', 'GOOG', 'AMZN', 'EBAY', 'CMG', 'MSFT', 'C', 'BA', 'TSLA' - - graphData(stocksToPull[3]) - - diff --git a/Students/A.Kramer/Final_Project/DataFactory.py b/Students/A.Kramer/Final_Project/DataFactory.py deleted file mode 100644 index bef1b565..00000000 --- a/Students/A.Kramer/Final_Project/DataFactory.py +++ /dev/null @@ -1,69 +0,0 @@ -''' -Created on Nov 28, 2014 - -@author: Aleksey Kramer -''' -import os -import time -import urllib2 -import datetime - -def pullStockData(stock): - # check if data directory exists, if not, create - if not os.path.exists("./data"): - os.makedirs("./data") - - # print out the pull time - print "Pulling stock", stock, "\t", - print str(datetime.datetime.fromtimestamp(time.time()).strftime("%Y-%m-%d %H:%M:%S")) - - # define url and file - urlToVisit = "http://chartapi.finance.yahoo.com/instrument/1.0/" + stock + "/chartdata;type=quote;range=1y/csv" - saveFileLine = stock + ".txt" - - # Determine the time of the last entry in the file, if file exists - # set the last Unix time to 0, if file dies not exist - try: - existingData = open("./data/" + saveFileLine, "r") - allLines = existingData.read() - splitExisting = allLines.split("\n") - lastLine = splitExisting[-2] - lastUnix = int(lastLine.split(",")[0]) - existingData.close() - except Exception, e: - print "Pulling data: Determining last date", e - lastUnix = 0 - - # Obtain data for the ticket from Yahoo finance and split the file by new line - sourceCode = urllib2.urlopen(urlToVisit).read() - splitSource = sourceCode.split("\n") - - # Open file for writing and filter out the data to ensure that - # each line contains 6 entries separated by comma - # no 'visited' in the line - # and the timing in the entries for each record is greater than the last one already - # stored in existing file - saveFile = open("./data/" + saveFileLine, "a") - for eachLine in splitSource: - if "values" not in eachLine: - splitLine = eachLine.split(",") - if len(splitLine) == 6: - # assure we are only getting new data in the file - if int(splitLine[0]) > lastUnix: - lineToWrite = eachLine + "\n" - saveFile.write(lineToWrite) - saveFile.close() - - # Print out logging info and make program sleep for 1 second - print "Pulled Stock", stock - print "Sleeping....." - print str(datetime.datetime.fromtimestamp(time.time()).strftime("%Y-%m-%d %H:%M:%S")) - time.sleep(3) - - -# Pull the data for selected stocks -if __name__ == "__main__": - # Testing data pull - stocksToPull = 'AAPL', 'GOOG', 'AMZN', 'EBAY', 'CMG', 'MSFT', 'C', 'BA', 'TSLA' - pullStockData(stocksToPull[3]) - diff --git a/Students/A.Kramer/Final_Project/README.txt b/Students/A.Kramer/Final_Project/README.txt deleted file mode 100644 index f06dee89..00000000 --- a/Students/A.Kramer/Final_Project/README.txt +++ /dev/null @@ -1,26 +0,0 @@ -1. Libraries used in the code: - os - time - datetime - urllib2 - matplotlib - numpy - pylab - -2. To run the code, run RunFinal.py from command line. - Once prompted for an input, input the valid stock on the - prompt and hit ENTER key. Wait for several seconds. The - code is getting data from Yahoo Finance web services, - creates a 'data' directory in the directory from which - the script is run, saves the data file with the name of the - stock in the 'data' directory. - - After the data is saved, the code is plotting the data - to the screen. - - After the code is done with plotting, it saves the image - of the plot in the data directory with the name of the - stock in .png format. - - The logs and warnings displayed are just for logging and - verification of the output. diff --git a/Students/A.Kramer/Final_Project/RunFinal.py b/Students/A.Kramer/Final_Project/RunFinal.py deleted file mode 100644 index 1f1228ee..00000000 --- a/Students/A.Kramer/Final_Project/RunFinal.py +++ /dev/null @@ -1,28 +0,0 @@ -''' -Created on Dec 3, 2014 - - The code pulls one year worth of data for the stock of your choice - and graphs the data using matplotlib, displaying candlestick chart, - simple moving averages for 12 and 26 days (default), and a Relative - Strength Index (RSI) for selected stock. - - I found an excellent video tutorial on financial graphing with python - that shows how to use matplotlib, change parameters of the plots - and to do math calculation to derive moving averages and RSI indexes. - The tutorial can be found on this web site: http://sentdex.com/ - This is excellent source to learn charting with matplotlib - -@author: Aleksey Kramer -''' -from Chart import graphData -from DataFactory import pullStockData - -def runCode(): - ''' Execute code for final project ''' - answer = raw_input("Enter The stock to graph: ") - pullStockData(answer.upper().strip()) - graphData(answer.upper().strip()) - -# run main program -if __name__ == "__main__": - runCode() diff --git a/Students/A.Kramer/session02/ack.py b/Students/A.Kramer/session02/ack.py deleted file mode 100644 index f421e163..00000000 --- a/Students/A.Kramer/session02/ack.py +++ /dev/null @@ -1,19 +0,0 @@ - -def ack(m,n): - """Return Ackerman number""" - if m == 0: - return n + 1 - if n == 0: - return ack(m - 1, 1) - return ack(m - 1, ack(m, n - 1)) - -if __name__ == '__main__': - assert ack(0,4) == 5 - assert ack(1,4) == 6 - assert ack(0,0) == 1 - assert ack(2,2) == 7 - assert ack(3,4) == 125 - assert ack(4,0) == 13 - assert ack(3,2) == 29 - - print "All Tests Pass" \ No newline at end of file diff --git a/Students/A.Kramer/session02/series.py b/Students/A.Kramer/session02/series.py deleted file mode 100644 index 95a4f0b2..00000000 --- a/Students/A.Kramer/session02/series.py +++ /dev/null @@ -1,42 +0,0 @@ - -def fibonacci(n): - """Return Fibonacci number""" - if n <= 1: - return n - else: - return fibonacci(n-1) + fibonacci(n-2) - -def lucas(n): - """Return Lucas number""" - if n == 0: - return 2 - if n == 1: - return 1 - return lucas(n-1) + lucas(n-2) - -def sum_series(n, x=0, y=1): - """Return either fibonacci or lucas numbers""" - if x == 0 and y == 1: - return fibonacci(n) - elif x == 2 and y == 1: - return lucas(n) - else: - return "Other Series" - -if __name__ == '__main__': - """Test internal assertions about function calls""" - assert fibonacci(6) == 8 - assert fibonacci(3) == 2 - assert fibonacci(30) == 832040 - - assert lucas(3) == 4 - assert lucas(5) == 11 - assert lucas(8) == 47 - assert lucas(12) == 322 - - assert sum_series(3) == 2 - assert sum_series(6) == 8 - - assert sum_series(3, 2, 1) == 4 - assert sum_series(5, 2, 1) == 11 - assert sum_series(8, 2, 1) == 47 \ No newline at end of file diff --git a/Students/A.Kramer/session03/ROT13.py b/Students/A.Kramer/session03/ROT13.py deleted file mode 100644 index 233b0a63..00000000 --- a/Students/A.Kramer/session03/ROT13.py +++ /dev/null @@ -1,30 +0,0 @@ -''' -Created on Oct 1, 2014 - -@author: db345c -''' - -def rot13(s): - alpha1 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz .!<>;:'" - alpha2 = "NOPQRSTUVWXYZabcdefgjijklmnopqrstuvwxyzABCDEFGHIJKLM .!<>;:'" - - # string to return - ret = "" - - for i in range(0, len(s)): - try: - if s[i].islower(): - ret += alpha2[alpha1.index(s[i])].lower() - else: - ret += alpha2[alpha1.index(s[i])].upper() - except ValueError: - pass - else: - pass - return ret - -# run the program with the assigned parameter -if __name__ == '__main__': - print rot13("Zntargvp sebz bhgfvqr arne pbeare") - - diff --git a/Students/A.Kramer/session03/ROT13_2.py b/Students/A.Kramer/session03/ROT13_2.py deleted file mode 100644 index bea0b8c5..00000000 --- a/Students/A.Kramer/session03/ROT13_2.py +++ /dev/null @@ -1,29 +0,0 @@ -''' -Created on Oct 17, 2014 - -@author: db345c -''' - -def rot13(s): - - ret = "" - - for c in s: - var = ord(c) - if var >= ord("a") and var <= ord("z"): - if var > ord("m"): - var -= 13 - else: - var += 13 - if var >= ord("A") and var <= ord("Z"): - if var > ord("M"): - var -= 13 - else: - var += 13 - - ret += chr(var) - - return ret - -if __name__ == "__main__": - print rot13(rot13("Aleksey Kramer")) \ No newline at end of file diff --git a/Students/A.Kramer/session03/ROT13_3.py b/Students/A.Kramer/session03/ROT13_3.py deleted file mode 100644 index 99ca2f6d..00000000 --- a/Students/A.Kramer/session03/ROT13_3.py +++ /dev/null @@ -1,21 +0,0 @@ -''' -Created on Oct 17, 2014 - -@author: db345c -''' -import string - -def rot13(s): - dt = string.maketrans( - "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz .!<>;:'", - "NOPQRSTUVWXYZabcdefgjijklmnopqrstuvwxyzABCDEFGHIJKLM .!<>;:'") - - return string.translate("Hello World!", dt) - -if __name__ == '__main__': - one = rot13("Zntargvp sebz bhgfvqr arne pbeare") - two = rot13(one) - print one - print two - -### Does not work propery \ No newline at end of file diff --git a/Students/A.Kramer/session03/list_lab.py b/Students/A.Kramer/session03/list_lab.py deleted file mode 100644 index 546c1e14..00000000 --- a/Students/A.Kramer/session03/list_lab.py +++ /dev/null @@ -1,52 +0,0 @@ - -def list_lab(): - - # Part 1 - print "Part 1\n" - lst = ["Apples", "Pears", "Oranges", "Peaches"] - print lst - fruit = raw_input("Enter another fruit: ") - lst.append(fruit) - print lst - num = raw_input("Enter the nubmer: ") - print num, lst[int(num) -1] - print lst - lst.insert(0, "Grape") - print lst - for i in lst: - if i[0] == 'P': - print i, - - # Part 2 - print "\n\nPart 2\n" - print lst - lst.remove("Grape") - print lst - frt = raw_input("Enter the fruit to delete: ") - print lst.remove(frt) - print lst - - # Part 3 - print "\nPart 3\n" - for x in lst: - prmpt = "Do you like " + x + "? : " - a = raw_input(prmpt) - if a == "yes": - print x.lower() - elif a == "no": - lst.remove(x) - - print lst - - # Part 4 - print "\nPart 4\n" - print "Original List", lst - lst2 = lst[::] - for idx, val in enumerate(lst2): - lst2[idx] = val[::-1] - - print "Modified list", lst2 - - -if __name__ == "__main__": - list_lab() \ No newline at end of file diff --git a/Students/A.Kramer/session03/mailroom.py b/Students/A.Kramer/session03/mailroom.py deleted file mode 100644 index c60e6807..00000000 --- a/Students/A.Kramer/session03/mailroom.py +++ /dev/null @@ -1,73 +0,0 @@ - -def execute(): - """Run the main program """ - donors = [["Jon Doe", 50, 2], ["Jane Doe", 35, 7], ["Anonymous", 30, 10]] - prompt = "Please, select the following options\n1 - Send a Thank you Letter\n2 - Create Report\n3 - Quit\n" - while True: - print prompt - answer = raw_input("What is your choice: ") - if answer == '2': - print_report(donors) - elif answer == '1': - generate_letters(donors) - elif answer == '3': - print "Have a good day" - break - else: - print "Unrecognized option" - print "" - -def print_report(d): - """Print users' report""" - for donor in d: - avg_amnt = 0 - if donor[2] == 0: - avg_amnt = 0 - else: - avg_amnt = donor[1]/donor[2] - print "Name: %s\tTotal Donated: $%2.2f\tNumber of Donations: %i\tAverage Donation: $%2.2f" % (donor[0], donor[1], donor[2], avg_amnt) - print "" - -def generate_letters(d): - """Generate Thank you letter""" - name = select_donor(d) - donation = get_donation(name) - email_text = "Dear " + name + ",\n\nThank you very much for your generous donation of $" + str(donation) + ".\nThis donation will go a long way." - email_text = email_text + "\n\nThank you again,\n\nSupport Staff" - print "\n=======================================================================" - print email_text - print "=======================================================================\n" - for k in d: - if k[0] == name: - k[1] = k[1] + float(donation) - k[2] = k[2] + 1 - -def get_donation(n): - """Obtain donation ammount""" - while True: - amount = raw_input("\nProvide donation amount: ") - try: - if float(amount): - return float(amount) - except ValueError: - print "Invalid Number provided for donation" - -def select_donor(d): - """Obtain Donor name to use""" - while True: - n = raw_input("\nType the name of the donor or type the work 'list': ") - if n == "list": - print n == "list" - for x in d: - print x[0] - else: - for g in d: - if g[0] == n: - return n - d.append([n, 0, 0]) - return n - -if __name__ == "__main__": - """Execute the main program""" - execute() - diff --git a/Students/A.Kramer/session04/CurrentPath.py b/Students/A.Kramer/session04/CurrentPath.py deleted file mode 100644 index 8ca1c632..00000000 --- a/Students/A.Kramer/session04/CurrentPath.py +++ /dev/null @@ -1,18 +0,0 @@ -''' -Created on Oct 23, 2014 - -@author: db345c -''' -import os - -def printCurrentDirectory(dir1=os.getcwd()): - """ Print the content of the directory """ - lst = os.listdir(dir1) - print dir1 - for f in lst: - print os.path.join(dir1, f) - -if __name__ == "__main__": - """ Print the content of the directory """ - printCurrentDirectory() - \ No newline at end of file diff --git a/Students/A.Kramer/session04/FileCopy.py b/Students/A.Kramer/session04/FileCopy.py deleted file mode 100644 index c14bc70c..00000000 --- a/Students/A.Kramer/session04/FileCopy.py +++ /dev/null @@ -1,31 +0,0 @@ -''' -Created on Oct 23, 2014 - -@author: db345c -''' - - -def fileCopy(src, dest): - """ copy of a content of a text file into another text file """ - try: - frm = open(src, "r") - to = open(dest, "w") - except IOError: - print "Error opening either source or dest. files" - else: - # The actual copy - for line in frm: - to.write(line) - print "Copy successful" - try: - frm.close() - to.close() - except IOError: - print "Error closing either source or dest. files" - - -if __name__ == "__main__": - """ Copy single file """ - from1 = r"C:\Users\db345c\Desktop\Personal Folders\Eclipse_Wrokspaces\IntroToPythonUW\Week 4 Homework\sherlock.txt" - to1 = r"C:\Users\db345c\Desktop\Personal Folders\Eclipse_Wrokspaces\IntroToPythonUW\Week 4 Homework\sherlock2.txt" - fileCopy(from1, to1) \ No newline at end of file diff --git a/Students/A.Kramer/session04/files_lab.py b/Students/A.Kramer/session04/files_lab.py deleted file mode 100644 index e4894010..00000000 --- a/Students/A.Kramer/session04/files_lab.py +++ /dev/null @@ -1,51 +0,0 @@ -''' -Created on Oct 22, 2014 - -@author: db345c -''' -import string - -def uniqueLanguages(filename): - # Creating set variable - s = set() - - # Opening the file - try: - f = open(filename, "r") - except IOError: - print "Unable to open the file " + filename - try: - f.close() - except Exception: - return - - # Populating the set - for student in f: - (name, lang) = student.split(":") - lst = lang.split() - for i, j in enumerate(lst): - lst[i] = j.strip(string.punctuation) - s.add(lst[i].lower()) - - # Trying to close the file - try: - f.close() - except IOError: - try: - f.close() - except: - return - - # cheap way of removing fixed header - try: - s.remove("languages") - except KeyError: - print "languages is not in the set" - - # print unique languages - for i in s: - print i.capitalize() - - -if __name__ == "__main__": - uniqueLanguages("students.txt") \ No newline at end of file diff --git a/Students/A.Kramer/session04/kakta14.py b/Students/A.Kramer/session04/kakta14.py deleted file mode 100644 index b2beabee..00000000 --- a/Students/A.Kramer/session04/kakta14.py +++ /dev/null @@ -1,65 +0,0 @@ -''' -Created on Oct 17, 2014 - -@author: db345c -''' - -import string - -def kata14(filename, start): - """ Set up variables, split lines in the groups of three, populate - dictionary, and call function to print kata14 """ - # create dictionary - words = {} - # open file - f = open(filename, "r") - count = 0 - for line in f: - # Split the line into separate tokens - lst = line.split() - - # discard all the lines containing less than three words - if len(lst) > 2: - - # Remove punctuation with string.punctuation (import string) - for j, k in enumerate(lst): - lst[j] = k.strip(string.punctuation) - - # split the line in the groups of three words - lst_length = len(lst) - for idx, i in enumerate(lst): - # assure the last element of the list is reached, if so, break - if idx == lst_length - 2: - break - else: - # got the three strings to use and add those to the dictionary - l = [ (lst[idx] + " " + lst[idx + 1]).strip(), lst[idx + 2].strip()] - buildDictionary(l, words) - count += 1 - # close file - f.close() - - # print kata14 - printKata14(words, start) - -def buildDictionary(l, words): - """ Populate the dictionary """ - if l[0] in words: - words[l[0]].append(l[1]) - else: - words[l[0]] = [l[1]] - return words - -def printKata14(word, start): - """ Recursively print Kata14 """ - if start in word: - if len(word[start]) > 0: - temp = word[start].pop() - print start, temp, - printKata14(word, str(start.split()[1]) + " " + temp) - else: - return - -if __name__ == "__main__": - """ Execute Kata14 algorythm """ - kata14("sherlock.txt", "little use") \ No newline at end of file diff --git a/Students/A.Kramer/session04/lecture_notes.py b/Students/A.Kramer/session04/lecture_notes.py deleted file mode 100644 index 5faf365f..00000000 --- a/Students/A.Kramer/session04/lecture_notes.py +++ /dev/null @@ -1,97 +0,0 @@ -''' -Created on Oct 21, 2014 - -@author: Aleksey -''' - -def inClass(): - - l = range(10) - - for i in range(len(l)): - print i - print - - # iterate over the tuples in the list - l = [(1,2), (3,4), (5,6)] - - for i, j in l: - print i, j - print - - # zip function - l1 = [1,2,3] - l2 = [4,5,6] - print zip(l1, l2) - for i, j in zip(l1, l2): - print i, j - print - - # returns tuple - k = ["Aleksey", "is", "my", "name"] - for i in enumerate(k): - print i - - # sorting example - fruits = ["Apple", "Pears", "Oranges", "Peaches"] - numbers = range(4) - combined = zip(fruits, numbers) - combined.sort() - print combined - - # sorting by a key - # need to create a function to pass to sort via key argument - # the example is below - def MySort(item): - return item[1] - - fruits = ["Apple", "Pears", "Oranges", "Peaches"] - numbers = range(4) - combined = zip(fruits, numbers) - combined.sort(key=MySort) - print combined - - def print_me(nums): - s = str(nums).strip("()") - print "Print the first %d numbers: %s"%(len(nums),s) - print_me((2,3,4,5)) - - d = {} - d["Aleksey"] = "Kramer" - d["Jon"] = "Doe" - d["Jane"] = "Doe" - - print d - print d.__contains__("Aleksey") - print d.keys() - print d.values() - - d["My"] = "Name" - - print "%s, %s"%(d.keys(), d.values()) - - print "Aleksey" in d - print "Nona" in d - print d.items() - - for i, j in d.items(): - print i, j - - d = {} - d["name"] = "Chris" - d["city"] = "Seattle" - d["cake"] = "Chocolate" - - print d - d.__delitem__("name") - d.pop("city") - print d - d["fruit"] = "Mango" - print d - print "cake" in d - print "fruit" in d - - - -if __name__ == "__main__": - inClass() \ No newline at end of file diff --git a/Students/A.Kramer/session04/safe_input.py b/Students/A.Kramer/session04/safe_input.py deleted file mode 100644 index 78a54245..00000000 --- a/Students/A.Kramer/session04/safe_input.py +++ /dev/null @@ -1,15 +0,0 @@ -''' -Created on Oct 22, 2014 - -@author: db345c -''' - -def safe_input(): - try: - s = raw_input("Enter something: ") - except EOFError, KeyboardInterupt: - return None - return s - -if __name__ == "__main__": - print safe_input() \ No newline at end of file diff --git a/Students/A.Kramer/session04/sherlock.txt b/Students/A.Kramer/session04/sherlock.txt deleted file mode 100644 index 99d5cda5..00000000 --- a/Students/A.Kramer/session04/sherlock.txt +++ /dev/null @@ -1,13052 +0,0 @@ -Project Gutenberg's The Adventures of Sherlock Holmes, by Arthur Conan Doyle - -This eBook is for the use of anyone anywhere at no cost and with -almost no restrictions whatsoever. You may copy it, give it away or -re-use it under the terms of the Project Gutenberg License included -with this eBook or online at www.gutenberg.net - - -Title: The Adventures of Sherlock Holmes - -Author: Arthur Conan Doyle - -Posting Date: April 18, 2011 [EBook #1661] -First Posted: November 29, 2002 - -Language: English - - -*** START OF THIS PROJECT GUTENBERG EBOOK THE ADVENTURES OF SHERLOCK HOLMES *** - - - - -Produced by an anonymous Project Gutenberg volunteer and Jose Menendez - - - - - - - - - -THE ADVENTURES OF SHERLOCK HOLMES - -by - -SIR ARTHUR CONAN DOYLE - - - - I. A Scandal in Bohemia - II. The Red-headed League - III. A Case of Identity - IV. The Boscombe Valley Mystery - V. The Five Orange Pips - VI. The Man with the Twisted Lip - VII. The Adventure of the Blue Carbuncle -VIII. The Adventure of the Speckled Band - IX. The Adventure of the Engineer's Thumb - X. The Adventure of the Noble Bachelor - XI. The Adventure of the Beryl Coronet - XII. The Adventure of the Copper Beeches - - - - -ADVENTURE I. A SCANDAL IN BOHEMIA - -I. - -To Sherlock Holmes she is always THE woman. I have seldom heard -him mention her under any other name. In his eyes she eclipses -and predominates the whole of her sex. It was not that he felt -any emotion akin to love for Irene Adler. All emotions, and that -one particularly, were abhorrent to his cold, precise but -admirably balanced mind. He was, I take it, the most perfect -reasoning and observing machine that the world has seen, but as a -lover he would have placed himself in a false position. He never -spoke of the softer passions, save with a gibe and a sneer. They -were admirable things for the observer--excellent for drawing the -veil from men's motives and actions. But for the trained reasoner -to admit such intrusions into his own delicate and finely -adjusted temperament was to introduce a distracting factor which -might throw a doubt upon all his mental results. Grit in a -sensitive instrument, or a crack in one of his own high-power -lenses, would not be more disturbing than a strong emotion in a -nature such as his. And yet there was but one woman to him, and -that woman was the late Irene Adler, of dubious and questionable -memory. - -I had seen little of Holmes lately. My marriage had drifted us -away from each other. My own complete happiness, and the -home-centred interests which rise up around the man who first -finds himself master of his own establishment, were sufficient to -absorb all my attention, while Holmes, who loathed every form of -society with his whole Bohemian soul, remained in our lodgings in -Baker Street, buried among his old books, and alternating from -week to week between cocaine and ambition, the drowsiness of the -drug, and the fierce energy of his own keen nature. He was still, -as ever, deeply attracted by the study of crime, and occupied his -immense faculties and extraordinary powers of observation in -following out those clues, and clearing up those mysteries which -had been abandoned as hopeless by the official police. From time -to time I heard some vague account of his doings: of his summons -to Odessa in the case of the Trepoff murder, of his clearing up -of the singular tragedy of the Atkinson brothers at Trincomalee, -and finally of the mission which he had accomplished so -delicately and successfully for the reigning family of Holland. -Beyond these signs of his activity, however, which I merely -shared with all the readers of the daily press, I knew little of -my former friend and companion. - -One night--it was on the twentieth of March, 1888--I was -returning from a journey to a patient (for I had now returned to -civil practice), when my way led me through Baker Street. As I -passed the well-remembered door, which must always be associated -in my mind with my wooing, and with the dark incidents of the -Study in Scarlet, I was seized with a keen desire to see Holmes -again, and to know how he was employing his extraordinary powers. -His rooms were brilliantly lit, and, even as I looked up, I saw -his tall, spare figure pass twice in a dark silhouette against -the blind. He was pacing the room swiftly, eagerly, with his head -sunk upon his chest and his hands clasped behind him. To me, who -knew his every mood and habit, his attitude and manner told their -own story. He was at work again. He had risen out of his -drug-created dreams and was hot upon the scent of some new -problem. I rang the bell and was shown up to the chamber which -had formerly been in part my own. - -His manner was not effusive. It seldom was; but he was glad, I -think, to see me. With hardly a word spoken, but with a kindly -eye, he waved me to an armchair, threw across his case of cigars, -and indicated a spirit case and a gasogene in the corner. Then he -stood before the fire and looked me over in his singular -introspective fashion. - -"Wedlock suits you," he remarked. "I think, Watson, that you have -put on seven and a half pounds since I saw you." - -"Seven!" I answered. - -"Indeed, I should have thought a little more. Just a trifle more, -I fancy, Watson. And in practice again, I observe. You did not -tell me that you intended to go into harness." - -"Then, how do you know?" - -"I see it, I deduce it. How do I know that you have been getting -yourself very wet lately, and that you have a most clumsy and -careless servant girl?" - -"My dear Holmes," said I, "this is too much. You would certainly -have been burned, had you lived a few centuries ago. It is true -that I had a country walk on Thursday and came home in a dreadful -mess, but as I have changed my clothes I can't imagine how you -deduce it. As to Mary Jane, she is incorrigible, and my wife has -given her notice, but there, again, I fail to see how you work it -out." - -He chuckled to himself and rubbed his long, nervous hands -together. - -"It is simplicity itself," said he; "my eyes tell me that on the -inside of your left shoe, just where the firelight strikes it, -the leather is scored by six almost parallel cuts. Obviously they -have been caused by someone who has very carelessly scraped round -the edges of the sole in order to remove crusted mud from it. -Hence, you see, my double deduction that you had been out in vile -weather, and that you had a particularly malignant boot-slitting -specimen of the London slavey. As to your practice, if a -gentleman walks into my rooms smelling of iodoform, with a black -mark of nitrate of silver upon his right forefinger, and a bulge -on the right side of his top-hat to show where he has secreted -his stethoscope, I must be dull, indeed, if I do not pronounce -him to be an active member of the medical profession." - -I could not help laughing at the ease with which he explained his -process of deduction. "When I hear you give your reasons," I -remarked, "the thing always appears to me to be so ridiculously -simple that I could easily do it myself, though at each -successive instance of your reasoning I am baffled until you -explain your process. And yet I believe that my eyes are as good -as yours." - -"Quite so," he answered, lighting a cigarette, and throwing -himself down into an armchair. "You see, but you do not observe. -The distinction is clear. For example, you have frequently seen -the steps which lead up from the hall to this room." - -"Frequently." - -"How often?" - -"Well, some hundreds of times." - -"Then how many are there?" - -"How many? I don't know." - -"Quite so! You have not observed. And yet you have seen. That is -just my point. Now, I know that there are seventeen steps, -because I have both seen and observed. By-the-way, since you are -interested in these little problems, and since you are good -enough to chronicle one or two of my trifling experiences, you -may be interested in this." He threw over a sheet of thick, -pink-tinted note-paper which had been lying open upon the table. -"It came by the last post," said he. "Read it aloud." - -The note was undated, and without either signature or address. - -"There will call upon you to-night, at a quarter to eight -o'clock," it said, "a gentleman who desires to consult you upon a -matter of the very deepest moment. Your recent services to one of -the royal houses of Europe have shown that you are one who may -safely be trusted with matters which are of an importance which -can hardly be exaggerated. This account of you we have from all -quarters received. Be in your chamber then at that hour, and do -not take it amiss if your visitor wear a mask." - -"This is indeed a mystery," I remarked. "What do you imagine that -it means?" - -"I have no data yet. It is a capital mistake to theorize before -one has data. Insensibly one begins to twist facts to suit -theories, instead of theories to suit facts. But the note itself. -What do you deduce from it?" - -I carefully examined the writing, and the paper upon which it was -written. - -"The man who wrote it was presumably well to do," I remarked, -endeavouring to imitate my companion's processes. "Such paper -could not be bought under half a crown a packet. It is peculiarly -strong and stiff." - -"Peculiar--that is the very word," said Holmes. "It is not an -English paper at all. Hold it up to the light." - -I did so, and saw a large "E" with a small "g," a "P," and a -large "G" with a small "t" woven into the texture of the paper. - -"What do you make of that?" asked Holmes. - -"The name of the maker, no doubt; or his monogram, rather." - -"Not at all. The 'G' with the small 't' stands for -'Gesellschaft,' which is the German for 'Company.' It is a -customary contraction like our 'Co.' 'P,' of course, stands for -'Papier.' Now for the 'Eg.' Let us glance at our Continental -Gazetteer." He took down a heavy brown volume from his shelves. -"Eglow, Eglonitz--here we are, Egria. It is in a German-speaking -country--in Bohemia, not far from Carlsbad. 'Remarkable as being -the scene of the death of Wallenstein, and for its numerous -glass-factories and paper-mills.' Ha, ha, my boy, what do you -make of that?" His eyes sparkled, and he sent up a great blue -triumphant cloud from his cigarette. - -"The paper was made in Bohemia," I said. - -"Precisely. And the man who wrote the note is a German. Do you -note the peculiar construction of the sentence--'This account of -you we have from all quarters received.' A Frenchman or Russian -could not have written that. It is the German who is so -uncourteous to his verbs. It only remains, therefore, to discover -what is wanted by this German who writes upon Bohemian paper and -prefers wearing a mask to showing his face. And here he comes, if -I am not mistaken, to resolve all our doubts." - -As he spoke there was the sharp sound of horses' hoofs and -grating wheels against the curb, followed by a sharp pull at the -bell. Holmes whistled. - -"A pair, by the sound," said he. "Yes," he continued, glancing -out of the window. "A nice little brougham and a pair of -beauties. A hundred and fifty guineas apiece. There's money in -this case, Watson, if there is nothing else." - -"I think that I had better go, Holmes." - -"Not a bit, Doctor. Stay where you are. I am lost without my -Boswell. And this promises to be interesting. It would be a pity -to miss it." - -"But your client--" - -"Never mind him. I may want your help, and so may he. Here he -comes. Sit down in that armchair, Doctor, and give us your best -attention." - -A slow and heavy step, which had been heard upon the stairs and -in the passage, paused immediately outside the door. Then there -was a loud and authoritative tap. - -"Come in!" said Holmes. - -A man entered who could hardly have been less than six feet six -inches in height, with the chest and limbs of a Hercules. His -dress was rich with a richness which would, in England, be looked -upon as akin to bad taste. Heavy bands of astrakhan were slashed -across the sleeves and fronts of his double-breasted coat, while -the deep blue cloak which was thrown over his shoulders was lined -with flame-coloured silk and secured at the neck with a brooch -which consisted of a single flaming beryl. Boots which extended -halfway up his calves, and which were trimmed at the tops with -rich brown fur, completed the impression of barbaric opulence -which was suggested by his whole appearance. He carried a -broad-brimmed hat in his hand, while he wore across the upper -part of his face, extending down past the cheekbones, a black -vizard mask, which he had apparently adjusted that very moment, -for his hand was still raised to it as he entered. From the lower -part of the face he appeared to be a man of strong character, -with a thick, hanging lip, and a long, straight chin suggestive -of resolution pushed to the length of obstinacy. - -"You had my note?" he asked with a deep harsh voice and a -strongly marked German accent. "I told you that I would call." He -looked from one to the other of us, as if uncertain which to -address. - -"Pray take a seat," said Holmes. "This is my friend and -colleague, Dr. Watson, who is occasionally good enough to help me -in my cases. Whom have I the honour to address?" - -"You may address me as the Count Von Kramm, a Bohemian nobleman. -I understand that this gentleman, your friend, is a man of honour -and discretion, whom I may trust with a matter of the most -extreme importance. If not, I should much prefer to communicate -with you alone." - -I rose to go, but Holmes caught me by the wrist and pushed me -back into my chair. "It is both, or none," said he. "You may say -before this gentleman anything which you may say to me." - -The Count shrugged his broad shoulders. "Then I must begin," said -he, "by binding you both to absolute secrecy for two years; at -the end of that time the matter will be of no importance. At -present it is not too much to say that it is of such weight it -may have an influence upon European history." - -"I promise," said Holmes. - -"And I." - -"You will excuse this mask," continued our strange visitor. "The -august person who employs me wishes his agent to be unknown to -you, and I may confess at once that the title by which I have -just called myself is not exactly my own." - -"I was aware of it," said Holmes dryly. - -"The circumstances are of great delicacy, and every precaution -has to be taken to quench what might grow to be an immense -scandal and seriously compromise one of the reigning families of -Europe. To speak plainly, the matter implicates the great House -of Ormstein, hereditary kings of Bohemia." - -"I was also aware of that," murmured Holmes, settling himself -down in his armchair and closing his eyes. - -Our visitor glanced with some apparent surprise at the languid, -lounging figure of the man who had been no doubt depicted to him -as the most incisive reasoner and most energetic agent in Europe. -Holmes slowly reopened his eyes and looked impatiently at his -gigantic client. - -"If your Majesty would condescend to state your case," he -remarked, "I should be better able to advise you." - -The man sprang from his chair and paced up and down the room in -uncontrollable agitation. Then, with a gesture of desperation, he -tore the mask from his face and hurled it upon the ground. "You -are right," he cried; "I am the King. Why should I attempt to -conceal it?" - -"Why, indeed?" murmured Holmes. "Your Majesty had not spoken -before I was aware that I was addressing Wilhelm Gottsreich -Sigismond von Ormstein, Grand Duke of Cassel-Felstein, and -hereditary King of Bohemia." - -"But you can understand," said our strange visitor, sitting down -once more and passing his hand over his high white forehead, "you -can understand that I am not accustomed to doing such business in -my own person. Yet the matter was so delicate that I could not -confide it to an agent without putting myself in his power. I -have come incognito from Prague for the purpose of consulting -you." - -"Then, pray consult," said Holmes, shutting his eyes once more. - -"The facts are briefly these: Some five years ago, during a -lengthy visit to Warsaw, I made the acquaintance of the well-known -adventuress, Irene Adler. The name is no doubt familiar to you." - -"Kindly look her up in my index, Doctor," murmured Holmes without -opening his eyes. For many years he had adopted a system of -docketing all paragraphs concerning men and things, so that it -was difficult to name a subject or a person on which he could not -at once furnish information. In this case I found her biography -sandwiched in between that of a Hebrew rabbi and that of a -staff-commander who had written a monograph upon the deep-sea -fishes. - -"Let me see!" said Holmes. "Hum! Born in New Jersey in the year -1858. Contralto--hum! La Scala, hum! Prima donna Imperial Opera -of Warsaw--yes! Retired from operatic stage--ha! Living in -London--quite so! Your Majesty, as I understand, became entangled -with this young person, wrote her some compromising letters, and -is now desirous of getting those letters back." - -"Precisely so. But how--" - -"Was there a secret marriage?" - -"None." - -"No legal papers or certificates?" - -"None." - -"Then I fail to follow your Majesty. If this young person should -produce her letters for blackmailing or other purposes, how is -she to prove their authenticity?" - -"There is the writing." - -"Pooh, pooh! Forgery." - -"My private note-paper." - -"Stolen." - -"My own seal." - -"Imitated." - -"My photograph." - -"Bought." - -"We were both in the photograph." - -"Oh, dear! That is very bad! Your Majesty has indeed committed an -indiscretion." - -"I was mad--insane." - -"You have compromised yourself seriously." - -"I was only Crown Prince then. I was young. I am but thirty now." - -"It must be recovered." - -"We have tried and failed." - -"Your Majesty must pay. It must be bought." - -"She will not sell." - -"Stolen, then." - -"Five attempts have been made. Twice burglars in my pay ransacked -her house. Once we diverted her luggage when she travelled. Twice -she has been waylaid. There has been no result." - -"No sign of it?" - -"Absolutely none." - -Holmes laughed. "It is quite a pretty little problem," said he. - -"But a very serious one to me," returned the King reproachfully. - -"Very, indeed. And what does she propose to do with the -photograph?" - -"To ruin me." - -"But how?" - -"I am about to be married." - -"So I have heard." - -"To Clotilde Lothman von Saxe-Meningen, second daughter of the -King of Scandinavia. You may know the strict principles of her -family. She is herself the very soul of delicacy. A shadow of a -doubt as to my conduct would bring the matter to an end." - -"And Irene Adler?" - -"Threatens to send them the photograph. And she will do it. I -know that she will do it. You do not know her, but she has a soul -of steel. She has the face of the most beautiful of women, and -the mind of the most resolute of men. Rather than I should marry -another woman, there are no lengths to which she would not -go--none." - -"You are sure that she has not sent it yet?" - -"I am sure." - -"And why?" - -"Because she has said that she would send it on the day when the -betrothal was publicly proclaimed. That will be next Monday." - -"Oh, then we have three days yet," said Holmes with a yawn. "That -is very fortunate, as I have one or two matters of importance to -look into just at present. Your Majesty will, of course, stay in -London for the present?" - -"Certainly. You will find me at the Langham under the name of the -Count Von Kramm." - -"Then I shall drop you a line to let you know how we progress." - -"Pray do so. I shall be all anxiety." - -"Then, as to money?" - -"You have carte blanche." - -"Absolutely?" - -"I tell you that I would give one of the provinces of my kingdom -to have that photograph." - -"And for present expenses?" - -The King took a heavy chamois leather bag from under his cloak -and laid it on the table. - -"There are three hundred pounds in gold and seven hundred in -notes," he said. - -Holmes scribbled a receipt upon a sheet of his note-book and -handed it to him. - -"And Mademoiselle's address?" he asked. - -"Is Briony Lodge, Serpentine Avenue, St. John's Wood." - -Holmes took a note of it. "One other question," said he. "Was the -photograph a cabinet?" - -"It was." - -"Then, good-night, your Majesty, and I trust that we shall soon -have some good news for you. And good-night, Watson," he added, -as the wheels of the royal brougham rolled down the street. "If -you will be good enough to call to-morrow afternoon at three -o'clock I should like to chat this little matter over with you." - - -II. - -At three o'clock precisely I was at Baker Street, but Holmes had -not yet returned. The landlady informed me that he had left the -house shortly after eight o'clock in the morning. I sat down -beside the fire, however, with the intention of awaiting him, -however long he might be. I was already deeply interested in his -inquiry, for, though it was surrounded by none of the grim and -strange features which were associated with the two crimes which -I have already recorded, still, the nature of the case and the -exalted station of his client gave it a character of its own. -Indeed, apart from the nature of the investigation which my -friend had on hand, there was something in his masterly grasp of -a situation, and his keen, incisive reasoning, which made it a -pleasure to me to study his system of work, and to follow the -quick, subtle methods by which he disentangled the most -inextricable mysteries. So accustomed was I to his invariable -success that the very possibility of his failing had ceased to -enter into my head. - -It was close upon four before the door opened, and a -drunken-looking groom, ill-kempt and side-whiskered, with an -inflamed face and disreputable clothes, walked into the room. -Accustomed as I was to my friend's amazing powers in the use of -disguises, I had to look three times before I was certain that it -was indeed he. With a nod he vanished into the bedroom, whence he -emerged in five minutes tweed-suited and respectable, as of old. -Putting his hands into his pockets, he stretched out his legs in -front of the fire and laughed heartily for some minutes. - -"Well, really!" he cried, and then he choked and laughed again -until he was obliged to lie back, limp and helpless, in the -chair. - -"What is it?" - -"It's quite too funny. I am sure you could never guess how I -employed my morning, or what I ended by doing." - -"I can't imagine. I suppose that you have been watching the -habits, and perhaps the house, of Miss Irene Adler." - -"Quite so; but the sequel was rather unusual. I will tell you, -however. I left the house a little after eight o'clock this -morning in the character of a groom out of work. There is a -wonderful sympathy and freemasonry among horsey men. Be one of -them, and you will know all that there is to know. I soon found -Briony Lodge. It is a bijou villa, with a garden at the back, but -built out in front right up to the road, two stories. Chubb lock -to the door. Large sitting-room on the right side, well -furnished, with long windows almost to the floor, and those -preposterous English window fasteners which a child could open. -Behind there was nothing remarkable, save that the passage window -could be reached from the top of the coach-house. I walked round -it and examined it closely from every point of view, but without -noting anything else of interest. - -"I then lounged down the street and found, as I expected, that -there was a mews in a lane which runs down by one wall of the -garden. I lent the ostlers a hand in rubbing down their horses, -and received in exchange twopence, a glass of half and half, two -fills of shag tobacco, and as much information as I could desire -about Miss Adler, to say nothing of half a dozen other people in -the neighbourhood in whom I was not in the least interested, but -whose biographies I was compelled to listen to." - -"And what of Irene Adler?" I asked. - -"Oh, she has turned all the men's heads down in that part. She is -the daintiest thing under a bonnet on this planet. So say the -Serpentine-mews, to a man. She lives quietly, sings at concerts, -drives out at five every day, and returns at seven sharp for -dinner. Seldom goes out at other times, except when she sings. -Has only one male visitor, but a good deal of him. He is dark, -handsome, and dashing, never calls less than once a day, and -often twice. He is a Mr. Godfrey Norton, of the Inner Temple. See -the advantages of a cabman as a confidant. They had driven him -home a dozen times from Serpentine-mews, and knew all about him. -When I had listened to all they had to tell, I began to walk up -and down near Briony Lodge once more, and to think over my plan -of campaign. - -"This Godfrey Norton was evidently an important factor in the -matter. He was a lawyer. That sounded ominous. What was the -relation between them, and what the object of his repeated -visits? Was she his client, his friend, or his mistress? If the -former, she had probably transferred the photograph to his -keeping. If the latter, it was less likely. On the issue of this -question depended whether I should continue my work at Briony -Lodge, or turn my attention to the gentleman's chambers in the -Temple. It was a delicate point, and it widened the field of my -inquiry. I fear that I bore you with these details, but I have to -let you see my little difficulties, if you are to understand the -situation." - -"I am following you closely," I answered. - -"I was still balancing the matter in my mind when a hansom cab -drove up to Briony Lodge, and a gentleman sprang out. He was a -remarkably handsome man, dark, aquiline, and moustached--evidently -the man of whom I had heard. He appeared to be in a -great hurry, shouted to the cabman to wait, and brushed past the -maid who opened the door with the air of a man who was thoroughly -at home. - -"He was in the house about half an hour, and I could catch -glimpses of him in the windows of the sitting-room, pacing up and -down, talking excitedly, and waving his arms. Of her I could see -nothing. Presently he emerged, looking even more flurried than -before. As he stepped up to the cab, he pulled a gold watch from -his pocket and looked at it earnestly, 'Drive like the devil,' he -shouted, 'first to Gross & Hankey's in Regent Street, and then to -the Church of St. Monica in the Edgeware Road. Half a guinea if -you do it in twenty minutes!' - -"Away they went, and I was just wondering whether I should not do -well to follow them when up the lane came a neat little landau, -the coachman with his coat only half-buttoned, and his tie under -his ear, while all the tags of his harness were sticking out of -the buckles. It hadn't pulled up before she shot out of the hall -door and into it. I only caught a glimpse of her at the moment, -but she was a lovely woman, with a face that a man might die for. - -"'The Church of St. Monica, John,' she cried, 'and half a -sovereign if you reach it in twenty minutes.' - -"This was quite too good to lose, Watson. I was just balancing -whether I should run for it, or whether I should perch behind her -landau when a cab came through the street. The driver looked -twice at such a shabby fare, but I jumped in before he could -object. 'The Church of St. Monica,' said I, 'and half a sovereign -if you reach it in twenty minutes.' It was twenty-five minutes to -twelve, and of course it was clear enough what was in the wind. - -"My cabby drove fast. I don't think I ever drove faster, but the -others were there before us. The cab and the landau with their -steaming horses were in front of the door when I arrived. I paid -the man and hurried into the church. There was not a soul there -save the two whom I had followed and a surpliced clergyman, who -seemed to be expostulating with them. They were all three -standing in a knot in front of the altar. I lounged up the side -aisle like any other idler who has dropped into a church. -Suddenly, to my surprise, the three at the altar faced round to -me, and Godfrey Norton came running as hard as he could towards -me. - -"'Thank God,' he cried. 'You'll do. Come! Come!' - -"'What then?' I asked. - -"'Come, man, come, only three minutes, or it won't be legal.' - -"I was half-dragged up to the altar, and before I knew where I was -I found myself mumbling responses which were whispered in my ear, -and vouching for things of which I knew nothing, and generally -assisting in the secure tying up of Irene Adler, spinster, to -Godfrey Norton, bachelor. It was all done in an instant, and -there was the gentleman thanking me on the one side and the lady -on the other, while the clergyman beamed on me in front. It was -the most preposterous position in which I ever found myself in my -life, and it was the thought of it that started me laughing just -now. It seems that there had been some informality about their -license, that the clergyman absolutely refused to marry them -without a witness of some sort, and that my lucky appearance -saved the bridegroom from having to sally out into the streets in -search of a best man. The bride gave me a sovereign, and I mean -to wear it on my watch-chain in memory of the occasion." - -"This is a very unexpected turn of affairs," said I; "and what -then?" - -"Well, I found my plans very seriously menaced. It looked as if -the pair might take an immediate departure, and so necessitate -very prompt and energetic measures on my part. At the church -door, however, they separated, he driving back to the Temple, and -she to her own house. 'I shall drive out in the park at five as -usual,' she said as she left him. I heard no more. They drove -away in different directions, and I went off to make my own -arrangements." - -"Which are?" - -"Some cold beef and a glass of beer," he answered, ringing the -bell. "I have been too busy to think of food, and I am likely to -be busier still this evening. By the way, Doctor, I shall want -your co-operation." - -"I shall be delighted." - -"You don't mind breaking the law?" - -"Not in the least." - -"Nor running a chance of arrest?" - -"Not in a good cause." - -"Oh, the cause is excellent!" - -"Then I am your man." - -"I was sure that I might rely on you." - -"But what is it you wish?" - -"When Mrs. Turner has brought in the tray I will make it clear to -you. Now," he said as he turned hungrily on the simple fare that -our landlady had provided, "I must discuss it while I eat, for I -have not much time. It is nearly five now. In two hours we must -be on the scene of action. Miss Irene, or Madame, rather, returns -from her drive at seven. We must be at Briony Lodge to meet her." - -"And what then?" - -"You must leave that to me. I have already arranged what is to -occur. There is only one point on which I must insist. You must -not interfere, come what may. You understand?" - -"I am to be neutral?" - -"To do nothing whatever. There will probably be some small -unpleasantness. Do not join in it. It will end in my being -conveyed into the house. Four or five minutes afterwards the -sitting-room window will open. You are to station yourself close -to that open window." - -"Yes." - -"You are to watch me, for I will be visible to you." - -"Yes." - -"And when I raise my hand--so--you will throw into the room what -I give you to throw, and will, at the same time, raise the cry of -fire. You quite follow me?" - -"Entirely." - -"It is nothing very formidable," he said, taking a long cigar-shaped -roll from his pocket. "It is an ordinary plumber's smoke-rocket, -fitted with a cap at either end to make it self-lighting. -Your task is confined to that. When you raise your cry of fire, -it will be taken up by quite a number of people. You may then -walk to the end of the street, and I will rejoin you in ten -minutes. I hope that I have made myself clear?" - -"I am to remain neutral, to get near the window, to watch you, -and at the signal to throw in this object, then to raise the cry -of fire, and to wait you at the corner of the street." - -"Precisely." - -"Then you may entirely rely on me." - -"That is excellent. I think, perhaps, it is almost time that I -prepare for the new role I have to play." - -He disappeared into his bedroom and returned in a few minutes in -the character of an amiable and simple-minded Nonconformist -clergyman. His broad black hat, his baggy trousers, his white -tie, his sympathetic smile, and general look of peering and -benevolent curiosity were such as Mr. John Hare alone could have -equalled. It was not merely that Holmes changed his costume. His -expression, his manner, his very soul seemed to vary with every -fresh part that he assumed. The stage lost a fine actor, even as -science lost an acute reasoner, when he became a specialist in -crime. - -It was a quarter past six when we left Baker Street, and it still -wanted ten minutes to the hour when we found ourselves in -Serpentine Avenue. It was already dusk, and the lamps were just -being lighted as we paced up and down in front of Briony Lodge, -waiting for the coming of its occupant. The house was just such -as I had pictured it from Sherlock Holmes' succinct description, -but the locality appeared to be less private than I expected. On -the contrary, for a small street in a quiet neighbourhood, it was -remarkably animated. There was a group of shabbily dressed men -smoking and laughing in a corner, a scissors-grinder with his -wheel, two guardsmen who were flirting with a nurse-girl, and -several well-dressed young men who were lounging up and down with -cigars in their mouths. - -"You see," remarked Holmes, as we paced to and fro in front of -the house, "this marriage rather simplifies matters. The -photograph becomes a double-edged weapon now. The chances are -that she would be as averse to its being seen by Mr. Godfrey -Norton, as our client is to its coming to the eyes of his -princess. Now the question is, Where are we to find the -photograph?" - -"Where, indeed?" - -"It is most unlikely that she carries it about with her. It is -cabinet size. Too large for easy concealment about a woman's -dress. She knows that the King is capable of having her waylaid -and searched. Two attempts of the sort have already been made. We -may take it, then, that she does not carry it about with her." - -"Where, then?" - -"Her banker or her lawyer. There is that double possibility. But -I am inclined to think neither. Women are naturally secretive, -and they like to do their own secreting. Why should she hand it -over to anyone else? She could trust her own guardianship, but -she could not tell what indirect or political influence might be -brought to bear upon a business man. Besides, remember that she -had resolved to use it within a few days. It must be where she -can lay her hands upon it. It must be in her own house." - -"But it has twice been burgled." - -"Pshaw! They did not know how to look." - -"But how will you look?" - -"I will not look." - -"What then?" - -"I will get her to show me." - -"But she will refuse." - -"She will not be able to. But I hear the rumble of wheels. It is -her carriage. Now carry out my orders to the letter." - -As he spoke the gleam of the side-lights of a carriage came round -the curve of the avenue. It was a smart little landau which -rattled up to the door of Briony Lodge. As it pulled up, one of -the loafing men at the corner dashed forward to open the door in -the hope of earning a copper, but was elbowed away by another -loafer, who had rushed up with the same intention. A fierce -quarrel broke out, which was increased by the two guardsmen, who -took sides with one of the loungers, and by the scissors-grinder, -who was equally hot upon the other side. A blow was struck, and -in an instant the lady, who had stepped from her carriage, was -the centre of a little knot of flushed and struggling men, who -struck savagely at each other with their fists and sticks. Holmes -dashed into the crowd to protect the lady; but just as he reached -her he gave a cry and dropped to the ground, with the blood -running freely down his face. At his fall the guardsmen took to -their heels in one direction and the loungers in the other, while -a number of better-dressed people, who had watched the scuffle -without taking part in it, crowded in to help the lady and to -attend to the injured man. Irene Adler, as I will still call her, -had hurried up the steps; but she stood at the top with her -superb figure outlined against the lights of the hall, looking -back into the street. - -"Is the poor gentleman much hurt?" she asked. - -"He is dead," cried several voices. - -"No, no, there's life in him!" shouted another. "But he'll be -gone before you can get him to hospital." - -"He's a brave fellow," said a woman. "They would have had the -lady's purse and watch if it hadn't been for him. They were a -gang, and a rough one, too. Ah, he's breathing now." - -"He can't lie in the street. May we bring him in, marm?" - -"Surely. Bring him into the sitting-room. There is a comfortable -sofa. This way, please!" - -Slowly and solemnly he was borne into Briony Lodge and laid out -in the principal room, while I still observed the proceedings -from my post by the window. The lamps had been lit, but the -blinds had not been drawn, so that I could see Holmes as he lay -upon the couch. I do not know whether he was seized with -compunction at that moment for the part he was playing, but I -know that I never felt more heartily ashamed of myself in my life -than when I saw the beautiful creature against whom I was -conspiring, or the grace and kindliness with which she waited -upon the injured man. And yet it would be the blackest treachery -to Holmes to draw back now from the part which he had intrusted -to me. I hardened my heart, and took the smoke-rocket from under -my ulster. After all, I thought, we are not injuring her. We are -but preventing her from injuring another. - -Holmes had sat up upon the couch, and I saw him motion like a man -who is in need of air. A maid rushed across and threw open the -window. At the same instant I saw him raise his hand and at the -signal I tossed my rocket into the room with a cry of "Fire!" The -word was no sooner out of my mouth than the whole crowd of -spectators, well dressed and ill--gentlemen, ostlers, and -servant-maids--joined in a general shriek of "Fire!" Thick clouds -of smoke curled through the room and out at the open window. I -caught a glimpse of rushing figures, and a moment later the voice -of Holmes from within assuring them that it was a false alarm. -Slipping through the shouting crowd I made my way to the corner -of the street, and in ten minutes was rejoiced to find my -friend's arm in mine, and to get away from the scene of uproar. -He walked swiftly and in silence for some few minutes until we -had turned down one of the quiet streets which lead towards the -Edgeware Road. - -"You did it very nicely, Doctor," he remarked. "Nothing could -have been better. It is all right." - -"You have the photograph?" - -"I know where it is." - -"And how did you find out?" - -"She showed me, as I told you she would." - -"I am still in the dark." - -"I do not wish to make a mystery," said he, laughing. "The matter -was perfectly simple. You, of course, saw that everyone in the -street was an accomplice. They were all engaged for the evening." - -"I guessed as much." - -"Then, when the row broke out, I had a little moist red paint in -the palm of my hand. I rushed forward, fell down, clapped my hand -to my face, and became a piteous spectacle. It is an old trick." - -"That also I could fathom." - -"Then they carried me in. She was bound to have me in. What else -could she do? And into her sitting-room, which was the very room -which I suspected. It lay between that and her bedroom, and I was -determined to see which. They laid me on a couch, I motioned for -air, they were compelled to open the window, and you had your -chance." - -"How did that help you?" - -"It was all-important. When a woman thinks that her house is on -fire, her instinct is at once to rush to the thing which she -values most. It is a perfectly overpowering impulse, and I have -more than once taken advantage of it. In the case of the -Darlington substitution scandal it was of use to me, and also in -the Arnsworth Castle business. A married woman grabs at her baby; -an unmarried one reaches for her jewel-box. Now it was clear to -me that our lady of to-day had nothing in the house more precious -to her than what we are in quest of. She would rush to secure it. -The alarm of fire was admirably done. The smoke and shouting were -enough to shake nerves of steel. She responded beautifully. The -photograph is in a recess behind a sliding panel just above the -right bell-pull. She was there in an instant, and I caught a -glimpse of it as she half-drew it out. When I cried out that it -was a false alarm, she replaced it, glanced at the rocket, rushed -from the room, and I have not seen her since. I rose, and, making -my excuses, escaped from the house. I hesitated whether to -attempt to secure the photograph at once; but the coachman had -come in, and as he was watching me narrowly it seemed safer to -wait. A little over-precipitance may ruin all." - -"And now?" I asked. - -"Our quest is practically finished. I shall call with the King -to-morrow, and with you, if you care to come with us. We will be -shown into the sitting-room to wait for the lady, but it is -probable that when she comes she may find neither us nor the -photograph. It might be a satisfaction to his Majesty to regain -it with his own hands." - -"And when will you call?" - -"At eight in the morning. She will not be up, so that we shall -have a clear field. Besides, we must be prompt, for this marriage -may mean a complete change in her life and habits. I must wire to -the King without delay." - -We had reached Baker Street and had stopped at the door. He was -searching his pockets for the key when someone passing said: - -"Good-night, Mister Sherlock Holmes." - -There were several people on the pavement at the time, but the -greeting appeared to come from a slim youth in an ulster who had -hurried by. - -"I've heard that voice before," said Holmes, staring down the -dimly lit street. "Now, I wonder who the deuce that could have -been." - - -III. - -I slept at Baker Street that night, and we were engaged upon our -toast and coffee in the morning when the King of Bohemia rushed -into the room. - -"You have really got it!" he cried, grasping Sherlock Holmes by -either shoulder and looking eagerly into his face. - -"Not yet." - -"But you have hopes?" - -"I have hopes." - -"Then, come. I am all impatience to be gone." - -"We must have a cab." - -"No, my brougham is waiting." - -"Then that will simplify matters." We descended and started off -once more for Briony Lodge. - -"Irene Adler is married," remarked Holmes. - -"Married! When?" - -"Yesterday." - -"But to whom?" - -"To an English lawyer named Norton." - -"But she could not love him." - -"I am in hopes that she does." - -"And why in hopes?" - -"Because it would spare your Majesty all fear of future -annoyance. If the lady loves her husband, she does not love your -Majesty. If she does not love your Majesty, there is no reason -why she should interfere with your Majesty's plan." - -"It is true. And yet--Well! I wish she had been of my own -station! What a queen she would have made!" He relapsed into a -moody silence, which was not broken until we drew up in -Serpentine Avenue. - -The door of Briony Lodge was open, and an elderly woman stood -upon the steps. She watched us with a sardonic eye as we stepped -from the brougham. - -"Mr. Sherlock Holmes, I believe?" said she. - -"I am Mr. Holmes," answered my companion, looking at her with a -questioning and rather startled gaze. - -"Indeed! My mistress told me that you were likely to call. She -left this morning with her husband by the 5:15 train from Charing -Cross for the Continent." - -"What!" Sherlock Holmes staggered back, white with chagrin and -surprise. "Do you mean that she has left England?" - -"Never to return." - -"And the papers?" asked the King hoarsely. "All is lost." - -"We shall see." He pushed past the servant and rushed into the -drawing-room, followed by the King and myself. The furniture was -scattered about in every direction, with dismantled shelves and -open drawers, as if the lady had hurriedly ransacked them before -her flight. Holmes rushed at the bell-pull, tore back a small -sliding shutter, and, plunging in his hand, pulled out a -photograph and a letter. The photograph was of Irene Adler -herself in evening dress, the letter was superscribed to -"Sherlock Holmes, Esq. To be left till called for." My friend -tore it open and we all three read it together. It was dated at -midnight of the preceding night and ran in this way: - -"MY DEAR MR. SHERLOCK HOLMES,--You really did it very well. You -took me in completely. Until after the alarm of fire, I had not a -suspicion. But then, when I found how I had betrayed myself, I -began to think. I had been warned against you months ago. I had -been told that if the King employed an agent it would certainly -be you. And your address had been given me. Yet, with all this, -you made me reveal what you wanted to know. Even after I became -suspicious, I found it hard to think evil of such a dear, kind -old clergyman. But, you know, I have been trained as an actress -myself. Male costume is nothing new to me. I often take advantage -of the freedom which it gives. I sent John, the coachman, to -watch you, ran up stairs, got into my walking-clothes, as I call -them, and came down just as you departed. - -"Well, I followed you to your door, and so made sure that I was -really an object of interest to the celebrated Mr. Sherlock -Holmes. Then I, rather imprudently, wished you good-night, and -started for the Temple to see my husband. - -"We both thought the best resource was flight, when pursued by -so formidable an antagonist; so you will find the nest empty when -you call to-morrow. As to the photograph, your client may rest in -peace. I love and am loved by a better man than he. The King may -do what he will without hindrance from one whom he has cruelly -wronged. I keep it only to safeguard myself, and to preserve a -weapon which will always secure me from any steps which he might -take in the future. I leave a photograph which he might care to -possess; and I remain, dear Mr. Sherlock Holmes, - - "Very truly yours, - "IRENE NORTON, ne ADLER." - -"What a woman--oh, what a woman!" cried the King of Bohemia, when -we had all three read this epistle. "Did I not tell you how quick -and resolute she was? Would she not have made an admirable queen? -Is it not a pity that she was not on my level?" - -"From what I have seen of the lady she seems indeed to be on a -very different level to your Majesty," said Holmes coldly. "I am -sorry that I have not been able to bring your Majesty's business -to a more successful conclusion." - -"On the contrary, my dear sir," cried the King; "nothing could be -more successful. I know that her word is inviolate. The -photograph is now as safe as if it were in the fire." - -"I am glad to hear your Majesty say so." - -"I am immensely indebted to you. Pray tell me in what way I can -reward you. This ring--" He slipped an emerald snake ring from -his finger and held it out upon the palm of his hand. - -"Your Majesty has something which I should value even more -highly," said Holmes. - -"You have but to name it." - -"This photograph!" - -The King stared at him in amazement. - -"Irene's photograph!" he cried. "Certainly, if you wish it." - -"I thank your Majesty. Then there is no more to be done in the -matter. I have the honour to wish you a very good-morning." He -bowed, and, turning away without observing the hand which the -King had stretched out to him, he set off in my company for his -chambers. - -And that was how a great scandal threatened to affect the kingdom -of Bohemia, and how the best plans of Mr. Sherlock Holmes were -beaten by a woman's wit. He used to make merry over the -cleverness of women, but I have not heard him do it of late. And -when he speaks of Irene Adler, or when he refers to her -photograph, it is always under the honourable title of the woman. - - - -ADVENTURE II. THE RED-HEADED LEAGUE - -I had called upon my friend, Mr. Sherlock Holmes, one day in the -autumn of last year and found him in deep conversation with a -very stout, florid-faced, elderly gentleman with fiery red hair. -With an apology for my intrusion, I was about to withdraw when -Holmes pulled me abruptly into the room and closed the door -behind me. - -"You could not possibly have come at a better time, my dear -Watson," he said cordially. - -"I was afraid that you were engaged." - -"So I am. Very much so." - -"Then I can wait in the next room." - -"Not at all. This gentleman, Mr. Wilson, has been my partner and -helper in many of my most successful cases, and I have no -doubt that he will be of the utmost use to me in yours also." - -The stout gentleman half rose from his chair and gave a bob of -greeting, with a quick little questioning glance from his small -fat-encircled eyes. - -"Try the settee," said Holmes, relapsing into his armchair and -putting his fingertips together, as was his custom when in -judicial moods. "I know, my dear Watson, that you share my love -of all that is bizarre and outside the conventions and humdrum -routine of everyday life. You have shown your relish for it by -the enthusiasm which has prompted you to chronicle, and, if you -will excuse my saying so, somewhat to embellish so many of my own -little adventures." - -"Your cases have indeed been of the greatest interest to me," I -observed. - -"You will remember that I remarked the other day, just before we -went into the very simple problem presented by Miss Mary -Sutherland, that for strange effects and extraordinary -combinations we must go to life itself, which is always far more -daring than any effort of the imagination." - -"A proposition which I took the liberty of doubting." - -"You did, Doctor, but none the less you must come round to my -view, for otherwise I shall keep on piling fact upon fact on you -until your reason breaks down under them and acknowledges me to -be right. Now, Mr. Jabez Wilson here has been good enough to call -upon me this morning, and to begin a narrative which promises to -be one of the most singular which I have listened to for some -time. You have heard me remark that the strangest and most unique -things are very often connected not with the larger but with the -smaller crimes, and occasionally, indeed, where there is room for -doubt whether any positive crime has been committed. As far as I -have heard it is impossible for me to say whether the present -case is an instance of crime or not, but the course of events is -certainly among the most singular that I have ever listened to. -Perhaps, Mr. Wilson, you would have the great kindness to -recommence your narrative. I ask you not merely because my friend -Dr. Watson has not heard the opening part but also because the -peculiar nature of the story makes me anxious to have every -possible detail from your lips. As a rule, when I have heard some -slight indication of the course of events, I am able to guide -myself by the thousands of other similar cases which occur to my -memory. In the present instance I am forced to admit that the -facts are, to the best of my belief, unique." - -The portly client puffed out his chest with an appearance of some -little pride and pulled a dirty and wrinkled newspaper from the -inside pocket of his greatcoat. As he glanced down the -advertisement column, with his head thrust forward and the paper -flattened out upon his knee, I took a good look at the man and -endeavoured, after the fashion of my companion, to read the -indications which might be presented by his dress or appearance. - -I did not gain very much, however, by my inspection. Our visitor -bore every mark of being an average commonplace British -tradesman, obese, pompous, and slow. He wore rather baggy grey -shepherd's check trousers, a not over-clean black frock-coat, -unbuttoned in the front, and a drab waistcoat with a heavy brassy -Albert chain, and a square pierced bit of metal dangling down as -an ornament. A frayed top-hat and a faded brown overcoat with a -wrinkled velvet collar lay upon a chair beside him. Altogether, -look as I would, there was nothing remarkable about the man save -his blazing red head, and the expression of extreme chagrin and -discontent upon his features. - -Sherlock Holmes' quick eye took in my occupation, and he shook -his head with a smile as he noticed my questioning glances. -"Beyond the obvious facts that he has at some time done manual -labour, that he takes snuff, that he is a Freemason, that he has -been in China, and that he has done a considerable amount of -writing lately, I can deduce nothing else." - -Mr. Jabez Wilson started up in his chair, with his forefinger -upon the paper, but his eyes upon my companion. - -"How, in the name of good-fortune, did you know all that, Mr. -Holmes?" he asked. "How did you know, for example, that I did -manual labour. It's as true as gospel, for I began as a ship's -carpenter." - -"Your hands, my dear sir. Your right hand is quite a size larger -than your left. You have worked with it, and the muscles are more -developed." - -"Well, the snuff, then, and the Freemasonry?" - -"I won't insult your intelligence by telling you how I read that, -especially as, rather against the strict rules of your order, you -use an arc-and-compass breastpin." - -"Ah, of course, I forgot that. But the writing?" - -"What else can be indicated by that right cuff so very shiny for -five inches, and the left one with the smooth patch near the -elbow where you rest it upon the desk?" - -"Well, but China?" - -"The fish that you have tattooed immediately above your right -wrist could only have been done in China. I have made a small -study of tattoo marks and have even contributed to the literature -of the subject. That trick of staining the fishes' scales of a -delicate pink is quite peculiar to China. When, in addition, I -see a Chinese coin hanging from your watch-chain, the matter -becomes even more simple." - -Mr. Jabez Wilson laughed heavily. "Well, I never!" said he. "I -thought at first that you had done something clever, but I see -that there was nothing in it, after all." - -"I begin to think, Watson," said Holmes, "that I make a mistake -in explaining. 'Omne ignotum pro magnifico,' you know, and my -poor little reputation, such as it is, will suffer shipwreck if I -am so candid. Can you not find the advertisement, Mr. Wilson?" - -"Yes, I have got it now," he answered with his thick red finger -planted halfway down the column. "Here it is. This is what began -it all. You just read it for yourself, sir." - -I took the paper from him and read as follows: - -"TO THE RED-HEADED LEAGUE: On account of the bequest of the late -Ezekiah Hopkins, of Lebanon, Pennsylvania, U. S. A., there is now -another vacancy open which entitles a member of the League to a -salary of 4 pounds a week for purely nominal services. All -red-headed men who are sound in body and mind and above the age -of twenty-one years, are eligible. Apply in person on Monday, at -eleven o'clock, to Duncan Ross, at the offices of the League, 7 -Pope's Court, Fleet Street." - -"What on earth does this mean?" I ejaculated after I had twice -read over the extraordinary announcement. - -Holmes chuckled and wriggled in his chair, as was his habit when -in high spirits. "It is a little off the beaten track, isn't it?" -said he. "And now, Mr. Wilson, off you go at scratch and tell us -all about yourself, your household, and the effect which this -advertisement had upon your fortunes. You will first make a note, -Doctor, of the paper and the date." - -"It is The Morning Chronicle of April 27, 1890. Just two months -ago." - -"Very good. Now, Mr. Wilson?" - -"Well, it is just as I have been telling you, Mr. Sherlock -Holmes," said Jabez Wilson, mopping his forehead; "I have a small -pawnbroker's business at Coburg Square, near the City. It's not a -very large affair, and of late years it has not done more than -just give me a living. I used to be able to keep two assistants, -but now I only keep one; and I would have a job to pay him but -that he is willing to come for half wages so as to learn the -business." - -"What is the name of this obliging youth?" asked Sherlock Holmes. - -"His name is Vincent Spaulding, and he's not such a youth, -either. It's hard to say his age. I should not wish a smarter -assistant, Mr. Holmes; and I know very well that he could better -himself and earn twice what I am able to give him. But, after -all, if he is satisfied, why should I put ideas in his head?" - -"Why, indeed? You seem most fortunate in having an employ who -comes under the full market price. It is not a common experience -among employers in this age. I don't know that your assistant is -not as remarkable as your advertisement." - -"Oh, he has his faults, too," said Mr. Wilson. "Never was such a -fellow for photography. Snapping away with a camera when he ought -to be improving his mind, and then diving down into the cellar -like a rabbit into its hole to develop his pictures. That is his -main fault, but on the whole he's a good worker. There's no vice -in him." - -"He is still with you, I presume?" - -"Yes, sir. He and a girl of fourteen, who does a bit of simple -cooking and keeps the place clean--that's all I have in the -house, for I am a widower and never had any family. We live very -quietly, sir, the three of us; and we keep a roof over our heads -and pay our debts, if we do nothing more. - -"The first thing that put us out was that advertisement. -Spaulding, he came down into the office just this day eight -weeks, with this very paper in his hand, and he says: - -"'I wish to the Lord, Mr. Wilson, that I was a red-headed man.' - -"'Why that?' I asks. - -"'Why,' says he, 'here's another vacancy on the League of the -Red-headed Men. It's worth quite a little fortune to any man who -gets it, and I understand that there are more vacancies than -there are men, so that the trustees are at their wits' end what -to do with the money. If my hair would only change colour, here's -a nice little crib all ready for me to step into.' - -"'Why, what is it, then?' I asked. You see, Mr. Holmes, I am a -very stay-at-home man, and as my business came to me instead of -my having to go to it, I was often weeks on end without putting -my foot over the door-mat. In that way I didn't know much of what -was going on outside, and I was always glad of a bit of news. - -"'Have you never heard of the League of the Red-headed Men?' he -asked with his eyes open. - -"'Never.' - -"'Why, I wonder at that, for you are eligible yourself for one -of the vacancies.' - -"'And what are they worth?' I asked. - -"'Oh, merely a couple of hundred a year, but the work is slight, -and it need not interfere very much with one's other -occupations.' - -"Well, you can easily think that that made me prick up my ears, -for the business has not been over-good for some years, and an -extra couple of hundred would have been very handy. - -"'Tell me all about it,' said I. - -"'Well,' said he, showing me the advertisement, 'you can see for -yourself that the League has a vacancy, and there is the address -where you should apply for particulars. As far as I can make out, -the League was founded by an American millionaire, Ezekiah -Hopkins, who was very peculiar in his ways. He was himself -red-headed, and he had a great sympathy for all red-headed men; -so when he died it was found that he had left his enormous -fortune in the hands of trustees, with instructions to apply the -interest to the providing of easy berths to men whose hair is of -that colour. From all I hear it is splendid pay and very little to -do.' - -"'But,' said I, 'there would be millions of red-headed men who -would apply.' - -"'Not so many as you might think,' he answered. 'You see it is -really confined to Londoners, and to grown men. This American had -started from London when he was young, and he wanted to do the -old town a good turn. Then, again, I have heard it is no use your -applying if your hair is light red, or dark red, or anything but -real bright, blazing, fiery red. Now, if you cared to apply, Mr. -Wilson, you would just walk in; but perhaps it would hardly be -worth your while to put yourself out of the way for the sake of a -few hundred pounds.' - -"Now, it is a fact, gentlemen, as you may see for yourselves, -that my hair is of a very full and rich tint, so that it seemed -to me that if there was to be any competition in the matter I -stood as good a chance as any man that I had ever met. Vincent -Spaulding seemed to know so much about it that I thought he might -prove useful, so I just ordered him to put up the shutters for -the day and to come right away with me. He was very willing to -have a holiday, so we shut the business up and started off for -the address that was given us in the advertisement. - -"I never hope to see such a sight as that again, Mr. Holmes. From -north, south, east, and west every man who had a shade of red in -his hair had tramped into the city to answer the advertisement. -Fleet Street was choked with red-headed folk, and Pope's Court -looked like a coster's orange barrow. I should not have thought -there were so many in the whole country as were brought together -by that single advertisement. Every shade of colour they -were--straw, lemon, orange, brick, Irish-setter, liver, clay; -but, as Spaulding said, there were not many who had the real -vivid flame-coloured tint. When I saw how many were waiting, I -would have given it up in despair; but Spaulding would not hear -of it. How he did it I could not imagine, but he pushed and -pulled and butted until he got me through the crowd, and right up -to the steps which led to the office. There was a double stream -upon the stair, some going up in hope, and some coming back -dejected; but we wedged in as well as we could and soon found -ourselves in the office." - -"Your experience has been a most entertaining one," remarked -Holmes as his client paused and refreshed his memory with a huge -pinch of snuff. "Pray continue your very interesting statement." - -"There was nothing in the office but a couple of wooden chairs -and a deal table, behind which sat a small man with a head that -was even redder than mine. He said a few words to each candidate -as he came up, and then he always managed to find some fault in -them which would disqualify them. Getting a vacancy did not seem -to be such a very easy matter, after all. However, when our turn -came the little man was much more favourable to me than to any of -the others, and he closed the door as we entered, so that he -might have a private word with us. - -"'This is Mr. Jabez Wilson,' said my assistant, 'and he is -willing to fill a vacancy in the League.' - -"'And he is admirably suited for it,' the other answered. 'He has -every requirement. I cannot recall when I have seen anything so -fine.' He took a step backward, cocked his head on one side, and -gazed at my hair until I felt quite bashful. Then suddenly he -plunged forward, wrung my hand, and congratulated me warmly on my -success. - -"'It would be injustice to hesitate,' said he. 'You will, -however, I am sure, excuse me for taking an obvious precaution.' -With that he seized my hair in both his hands, and tugged until I -yelled with the pain. 'There is water in your eyes,' said he as -he released me. 'I perceive that all is as it should be. But we -have to be careful, for we have twice been deceived by wigs and -once by paint. I could tell you tales of cobbler's wax which -would disgust you with human nature.' He stepped over to the -window and shouted through it at the top of his voice that the -vacancy was filled. A groan of disappointment came up from below, -and the folk all trooped away in different directions until there -was not a red-head to be seen except my own and that of the -manager. - -"'My name,' said he, 'is Mr. Duncan Ross, and I am myself one of -the pensioners upon the fund left by our noble benefactor. Are -you a married man, Mr. Wilson? Have you a family?' - -"I answered that I had not. - -"His face fell immediately. - -"'Dear me!' he said gravely, 'that is very serious indeed! I am -sorry to hear you say that. The fund was, of course, for the -propagation and spread of the red-heads as well as for their -maintenance. It is exceedingly unfortunate that you should be a -bachelor.' - -"My face lengthened at this, Mr. Holmes, for I thought that I was -not to have the vacancy after all; but after thinking it over for -a few minutes he said that it would be all right. - -"'In the case of another,' said he, 'the objection might be -fatal, but we must stretch a point in favour of a man with such a -head of hair as yours. When shall you be able to enter upon your -new duties?' - -"'Well, it is a little awkward, for I have a business already,' -said I. - -"'Oh, never mind about that, Mr. Wilson!' said Vincent Spaulding. -'I should be able to look after that for you.' - -"'What would be the hours?' I asked. - -"'Ten to two.' - -"Now a pawnbroker's business is mostly done of an evening, Mr. -Holmes, especially Thursday and Friday evening, which is just -before pay-day; so it would suit me very well to earn a little in -the mornings. Besides, I knew that my assistant was a good man, -and that he would see to anything that turned up. - -"'That would suit me very well,' said I. 'And the pay?' - -"'Is 4 pounds a week.' - -"'And the work?' - -"'Is purely nominal.' - -"'What do you call purely nominal?' - -"'Well, you have to be in the office, or at least in the -building, the whole time. If you leave, you forfeit your whole -position forever. The will is very clear upon that point. You -don't comply with the conditions if you budge from the office -during that time.' - -"'It's only four hours a day, and I should not think of leaving,' -said I. - -"'No excuse will avail,' said Mr. Duncan Ross; 'neither sickness -nor business nor anything else. There you must stay, or you lose -your billet.' - -"'And the work?' - -"'Is to copy out the "Encyclopaedia Britannica." There is the first -volume of it in that press. You must find your own ink, pens, and -blotting-paper, but we provide this table and chair. Will you be -ready to-morrow?' - -"'Certainly,' I answered. - -"'Then, good-bye, Mr. Jabez Wilson, and let me congratulate you -once more on the important position which you have been fortunate -enough to gain.' He bowed me out of the room and I went home with -my assistant, hardly knowing what to say or do, I was so pleased -at my own good fortune. - -"Well, I thought over the matter all day, and by evening I was in -low spirits again; for I had quite persuaded myself that the -whole affair must be some great hoax or fraud, though what its -object might be I could not imagine. It seemed altogether past -belief that anyone could make such a will, or that they would pay -such a sum for doing anything so simple as copying out the -'Encyclopaedia Britannica.' Vincent Spaulding did what he could to -cheer me up, but by bedtime I had reasoned myself out of the -whole thing. However, in the morning I determined to have a look -at it anyhow, so I bought a penny bottle of ink, and with a -quill-pen, and seven sheets of foolscap paper, I started off for -Pope's Court. - -"Well, to my surprise and delight, everything was as right as -possible. The table was set out ready for me, and Mr. Duncan Ross -was there to see that I got fairly to work. He started me off -upon the letter A, and then he left me; but he would drop in from -time to time to see that all was right with me. At two o'clock he -bade me good-day, complimented me upon the amount that I had -written, and locked the door of the office after me. - -"This went on day after day, Mr. Holmes, and on Saturday the -manager came in and planked down four golden sovereigns for my -week's work. It was the same next week, and the same the week -after. Every morning I was there at ten, and every afternoon I -left at two. By degrees Mr. Duncan Ross took to coming in only -once of a morning, and then, after a time, he did not come in at -all. Still, of course, I never dared to leave the room for an -instant, for I was not sure when he might come, and the billet -was such a good one, and suited me so well, that I would not risk -the loss of it. - -"Eight weeks passed away like this, and I had written about -Abbots and Archery and Armour and Architecture and Attica, and -hoped with diligence that I might get on to the B's before very -long. It cost me something in foolscap, and I had pretty nearly -filled a shelf with my writings. And then suddenly the whole -business came to an end." - -"To an end?" - -"Yes, sir. And no later than this morning. I went to my work as -usual at ten o'clock, but the door was shut and locked, with a -little square of cardboard hammered on to the middle of the -panel with a tack. Here it is, and you can read for yourself." - -He held up a piece of white cardboard about the size of a sheet -of note-paper. It read in this fashion: - - THE RED-HEADED LEAGUE - - IS - - DISSOLVED. - - October 9, 1890. - -Sherlock Holmes and I surveyed this curt announcement and the -rueful face behind it, until the comical side of the affair so -completely overtopped every other consideration that we both -burst out into a roar of laughter. - -"I cannot see that there is anything very funny," cried our -client, flushing up to the roots of his flaming head. "If you can -do nothing better than laugh at me, I can go elsewhere." - -"No, no," cried Holmes, shoving him back into the chair from -which he had half risen. "I really wouldn't miss your case for -the world. It is most refreshingly unusual. But there is, if you -will excuse my saying so, something just a little funny about it. -Pray what steps did you take when you found the card upon the -door?" - -"I was staggered, sir. I did not know what to do. Then I called -at the offices round, but none of them seemed to know anything -about it. Finally, I went to the landlord, who is an accountant -living on the ground-floor, and I asked him if he could tell me -what had become of the Red-headed League. He said that he had -never heard of any such body. Then I asked him who Mr. Duncan -Ross was. He answered that the name was new to him. - -"'Well,' said I, 'the gentleman at No. 4.' - -"'What, the red-headed man?' - -"'Yes.' - -"'Oh,' said he, 'his name was William Morris. He was a solicitor -and was using my room as a temporary convenience until his new -premises were ready. He moved out yesterday.' - -"'Where could I find him?' - -"'Oh, at his new offices. He did tell me the address. Yes, 17 -King Edward Street, near St. Paul's.' - -"I started off, Mr. Holmes, but when I got to that address it was -a manufactory of artificial knee-caps, and no one in it had ever -heard of either Mr. William Morris or Mr. Duncan Ross." - -"And what did you do then?" asked Holmes. - -"I went home to Saxe-Coburg Square, and I took the advice of my -assistant. But he could not help me in any way. He could only say -that if I waited I should hear by post. But that was not quite -good enough, Mr. Holmes. I did not wish to lose such a place -without a struggle, so, as I had heard that you were good enough -to give advice to poor folk who were in need of it, I came right -away to you." - -"And you did very wisely," said Holmes. "Your case is an -exceedingly remarkable one, and I shall be happy to look into it. -From what you have told me I think that it is possible that -graver issues hang from it than might at first sight appear." - -"Grave enough!" said Mr. Jabez Wilson. "Why, I have lost four -pound a week." - -"As far as you are personally concerned," remarked Holmes, "I do -not see that you have any grievance against this extraordinary -league. On the contrary, you are, as I understand, richer by some -30 pounds, to say nothing of the minute knowledge which you have -gained on every subject which comes under the letter A. You have -lost nothing by them." - -"No, sir. But I want to find out about them, and who they are, -and what their object was in playing this prank--if it was a -prank--upon me. It was a pretty expensive joke for them, for it -cost them two and thirty pounds." - -"We shall endeavour to clear up these points for you. And, first, -one or two questions, Mr. Wilson. This assistant of yours who -first called your attention to the advertisement--how long had he -been with you?" - -"About a month then." - -"How did he come?" - -"In answer to an advertisement." - -"Was he the only applicant?" - -"No, I had a dozen." - -"Why did you pick him?" - -"Because he was handy and would come cheap." - -"At half-wages, in fact." - -"Yes." - -"What is he like, this Vincent Spaulding?" - -"Small, stout-built, very quick in his ways, no hair on his face, -though he's not short of thirty. Has a white splash of acid upon -his forehead." - -Holmes sat up in his chair in considerable excitement. "I thought -as much," said he. "Have you ever observed that his ears are -pierced for earrings?" - -"Yes, sir. He told me that a gipsy had done it for him when he -was a lad." - -"Hum!" said Holmes, sinking back in deep thought. "He is still -with you?" - -"Oh, yes, sir; I have only just left him." - -"And has your business been attended to in your absence?" - -"Nothing to complain of, sir. There's never very much to do of a -morning." - -"That will do, Mr. Wilson. I shall be happy to give you an -opinion upon the subject in the course of a day or two. To-day is -Saturday, and I hope that by Monday we may come to a conclusion." - -"Well, Watson," said Holmes when our visitor had left us, "what -do you make of it all?" - -"I make nothing of it," I answered frankly. "It is a most -mysterious business." - -"As a rule," said Holmes, "the more bizarre a thing is the less -mysterious it proves to be. It is your commonplace, featureless -crimes which are really puzzling, just as a commonplace face is -the most difficult to identify. But I must be prompt over this -matter." - -"What are you going to do, then?" I asked. - -"To smoke," he answered. "It is quite a three pipe problem, and I -beg that you won't speak to me for fifty minutes." He curled -himself up in his chair, with his thin knees drawn up to his -hawk-like nose, and there he sat with his eyes closed and his -black clay pipe thrusting out like the bill of some strange bird. -I had come to the conclusion that he had dropped asleep, and -indeed was nodding myself, when he suddenly sprang out of his -chair with the gesture of a man who has made up his mind and put -his pipe down upon the mantelpiece. - -"Sarasate plays at the St. James's Hall this afternoon," he -remarked. "What do you think, Watson? Could your patients spare -you for a few hours?" - -"I have nothing to do to-day. My practice is never very -absorbing." - -"Then put on your hat and come. I am going through the City -first, and we can have some lunch on the way. I observe that -there is a good deal of German music on the programme, which is -rather more to my taste than Italian or French. It is -introspective, and I want to introspect. Come along!" - -We travelled by the Underground as far as Aldersgate; and a short -walk took us to Saxe-Coburg Square, the scene of the singular -story which we had listened to in the morning. It was a poky, -little, shabby-genteel place, where four lines of dingy -two-storied brick houses looked out into a small railed-in -enclosure, where a lawn of weedy grass and a few clumps of faded -laurel-bushes made a hard fight against a smoke-laden and -uncongenial atmosphere. Three gilt balls and a brown board with -"JABEZ WILSON" in white letters, upon a corner house, announced -the place where our red-headed client carried on his business. -Sherlock Holmes stopped in front of it with his head on one side -and looked it all over, with his eyes shining brightly between -puckered lids. Then he walked slowly up the street, and then down -again to the corner, still looking keenly at the houses. Finally -he returned to the pawnbroker's, and, having thumped vigorously -upon the pavement with his stick two or three times, he went up -to the door and knocked. It was instantly opened by a -bright-looking, clean-shaven young fellow, who asked him to step -in. - -"Thank you," said Holmes, "I only wished to ask you how you would -go from here to the Strand." - -"Third right, fourth left," answered the assistant promptly, -closing the door. - -"Smart fellow, that," observed Holmes as we walked away. "He is, -in my judgment, the fourth smartest man in London, and for daring -I am not sure that he has not a claim to be third. I have known -something of him before." - -"Evidently," said I, "Mr. Wilson's assistant counts for a good -deal in this mystery of the Red-headed League. I am sure that you -inquired your way merely in order that you might see him." - -"Not him." - -"What then?" - -"The knees of his trousers." - -"And what did you see?" - -"What I expected to see." - -"Why did you beat the pavement?" - -"My dear doctor, this is a time for observation, not for talk. We -are spies in an enemy's country. We know something of Saxe-Coburg -Square. Let us now explore the parts which lie behind it." - -The road in which we found ourselves as we turned round the -corner from the retired Saxe-Coburg Square presented as great a -contrast to it as the front of a picture does to the back. It was -one of the main arteries which conveyed the traffic of the City -to the north and west. The roadway was blocked with the immense -stream of commerce flowing in a double tide inward and outward, -while the footpaths were black with the hurrying swarm of -pedestrians. It was difficult to realise as we looked at the line -of fine shops and stately business premises that they really -abutted on the other side upon the faded and stagnant square -which we had just quitted. - -"Let me see," said Holmes, standing at the corner and glancing -along the line, "I should like just to remember the order of the -houses here. It is a hobby of mine to have an exact knowledge of -London. There is Mortimer's, the tobacconist, the little -newspaper shop, the Coburg branch of the City and Suburban Bank, -the Vegetarian Restaurant, and McFarlane's carriage-building -depot. That carries us right on to the other block. And now, -Doctor, we've done our work, so it's time we had some play. A -sandwich and a cup of coffee, and then off to violin-land, where -all is sweetness and delicacy and harmony, and there are no -red-headed clients to vex us with their conundrums." - -My friend was an enthusiastic musician, being himself not only a -very capable performer but a composer of no ordinary merit. All -the afternoon he sat in the stalls wrapped in the most perfect -happiness, gently waving his long, thin fingers in time to the -music, while his gently smiling face and his languid, dreamy eyes -were as unlike those of Holmes the sleuth-hound, Holmes the -relentless, keen-witted, ready-handed criminal agent, as it was -possible to conceive. In his singular character the dual nature -alternately asserted itself, and his extreme exactness and -astuteness represented, as I have often thought, the reaction -against the poetic and contemplative mood which occasionally -predominated in him. The swing of his nature took him from -extreme languor to devouring energy; and, as I knew well, he was -never so truly formidable as when, for days on end, he had been -lounging in his armchair amid his improvisations and his -black-letter editions. Then it was that the lust of the chase -would suddenly come upon him, and that his brilliant reasoning -power would rise to the level of intuition, until those who were -unacquainted with his methods would look askance at him as on a -man whose knowledge was not that of other mortals. When I saw him -that afternoon so enwrapped in the music at St. James's Hall I -felt that an evil time might be coming upon those whom he had set -himself to hunt down. - -"You want to go home, no doubt, Doctor," he remarked as we -emerged. - -"Yes, it would be as well." - -"And I have some business to do which will take some hours. This -business at Coburg Square is serious." - -"Why serious?" - -"A considerable crime is in contemplation. I have every reason to -believe that we shall be in time to stop it. But to-day being -Saturday rather complicates matters. I shall want your help -to-night." - -"At what time?" - -"Ten will be early enough." - -"I shall be at Baker Street at ten." - -"Very well. And, I say, Doctor, there may be some little danger, -so kindly put your army revolver in your pocket." He waved his -hand, turned on his heel, and disappeared in an instant among the -crowd. - -I trust that I am not more dense than my neighbours, but I was -always oppressed with a sense of my own stupidity in my dealings -with Sherlock Holmes. Here I had heard what he had heard, I had -seen what he had seen, and yet from his words it was evident that -he saw clearly not only what had happened but what was about to -happen, while to me the whole business was still confused and -grotesque. As I drove home to my house in Kensington I thought -over it all, from the extraordinary story of the red-headed -copier of the "Encyclopaedia" down to the visit to Saxe-Coburg -Square, and the ominous words with which he had parted from me. -What was this nocturnal expedition, and why should I go armed? -Where were we going, and what were we to do? I had the hint from -Holmes that this smooth-faced pawnbroker's assistant was a -formidable man--a man who might play a deep game. I tried to -puzzle it out, but gave it up in despair and set the matter aside -until night should bring an explanation. - -It was a quarter-past nine when I started from home and made my -way across the Park, and so through Oxford Street to Baker -Street. Two hansoms were standing at the door, and as I entered -the passage I heard the sound of voices from above. On entering -his room I found Holmes in animated conversation with two men, -one of whom I recognised as Peter Jones, the official police -agent, while the other was a long, thin, sad-faced man, with a -very shiny hat and oppressively respectable frock-coat. - -"Ha! Our party is complete," said Holmes, buttoning up his -pea-jacket and taking his heavy hunting crop from the rack. -"Watson, I think you know Mr. Jones, of Scotland Yard? Let me -introduce you to Mr. Merryweather, who is to be our companion in -to-night's adventure." - -"We're hunting in couples again, Doctor, you see," said Jones in -his consequential way. "Our friend here is a wonderful man for -starting a chase. All he wants is an old dog to help him to do -the running down." - -"I hope a wild goose may not prove to be the end of our chase," -observed Mr. Merryweather gloomily. - -"You may place considerable confidence in Mr. Holmes, sir," said -the police agent loftily. "He has his own little methods, which -are, if he won't mind my saying so, just a little too theoretical -and fantastic, but he has the makings of a detective in him. It -is not too much to say that once or twice, as in that business of -the Sholto murder and the Agra treasure, he has been more nearly -correct than the official force." - -"Oh, if you say so, Mr. Jones, it is all right," said the -stranger with deference. "Still, I confess that I miss my rubber. -It is the first Saturday night for seven-and-twenty years that I -have not had my rubber." - -"I think you will find," said Sherlock Holmes, "that you will -play for a higher stake to-night than you have ever done yet, and -that the play will be more exciting. For you, Mr. Merryweather, -the stake will be some 30,000 pounds; and for you, Jones, it will -be the man upon whom you wish to lay your hands." - -"John Clay, the murderer, thief, smasher, and forger. He's a -young man, Mr. Merryweather, but he is at the head of his -profession, and I would rather have my bracelets on him than on -any criminal in London. He's a remarkable man, is young John -Clay. His grandfather was a royal duke, and he himself has been -to Eton and Oxford. His brain is as cunning as his fingers, and -though we meet signs of him at every turn, we never know where to -find the man himself. He'll crack a crib in Scotland one week, -and be raising money to build an orphanage in Cornwall the next. -I've been on his track for years and have never set eyes on him -yet." - -"I hope that I may have the pleasure of introducing you to-night. -I've had one or two little turns also with Mr. John Clay, and I -agree with you that he is at the head of his profession. It is -past ten, however, and quite time that we started. If you two -will take the first hansom, Watson and I will follow in the -second." - -Sherlock Holmes was not very communicative during the long drive -and lay back in the cab humming the tunes which he had heard in -the afternoon. We rattled through an endless labyrinth of gas-lit -streets until we emerged into Farrington Street. - -"We are close there now," my friend remarked. "This fellow -Merryweather is a bank director, and personally interested in the -matter. I thought it as well to have Jones with us also. He is -not a bad fellow, though an absolute imbecile in his profession. -He has one positive virtue. He is as brave as a bulldog and as -tenacious as a lobster if he gets his claws upon anyone. Here we -are, and they are waiting for us." - -We had reached the same crowded thoroughfare in which we had -found ourselves in the morning. Our cabs were dismissed, and, -following the guidance of Mr. Merryweather, we passed down a -narrow passage and through a side door, which he opened for us. -Within there was a small corridor, which ended in a very massive -iron gate. This also was opened, and led down a flight of winding -stone steps, which terminated at another formidable gate. Mr. -Merryweather stopped to light a lantern, and then conducted us -down a dark, earth-smelling passage, and so, after opening a -third door, into a huge vault or cellar, which was piled all -round with crates and massive boxes. - -"You are not very vulnerable from above," Holmes remarked as he -held up the lantern and gazed about him. - -"Nor from below," said Mr. Merryweather, striking his stick upon -the flags which lined the floor. "Why, dear me, it sounds quite -hollow!" he remarked, looking up in surprise. - -"I must really ask you to be a little more quiet!" said Holmes -severely. "You have already imperilled the whole success of our -expedition. Might I beg that you would have the goodness to sit -down upon one of those boxes, and not to interfere?" - -The solemn Mr. Merryweather perched himself upon a crate, with a -very injured expression upon his face, while Holmes fell upon his -knees upon the floor and, with the lantern and a magnifying lens, -began to examine minutely the cracks between the stones. A few -seconds sufficed to satisfy him, for he sprang to his feet again -and put his glass in his pocket. - -"We have at least an hour before us," he remarked, "for they can -hardly take any steps until the good pawnbroker is safely in bed. -Then they will not lose a minute, for the sooner they do their -work the longer time they will have for their escape. We are at -present, Doctor--as no doubt you have divined--in the cellar of -the City branch of one of the principal London banks. Mr. -Merryweather is the chairman of directors, and he will explain to -you that there are reasons why the more daring criminals of -London should take a considerable interest in this cellar at -present." - -"It is our French gold," whispered the director. "We have had -several warnings that an attempt might be made upon it." - -"Your French gold?" - -"Yes. We had occasion some months ago to strengthen our resources -and borrowed for that purpose 30,000 napoleons from the Bank of -France. It has become known that we have never had occasion to -unpack the money, and that it is still lying in our cellar. The -crate upon which I sit contains 2,000 napoleons packed between -layers of lead foil. Our reserve of bullion is much larger at -present than is usually kept in a single branch office, and the -directors have had misgivings upon the subject." - -"Which were very well justified," observed Holmes. "And now it is -time that we arranged our little plans. I expect that within an -hour matters will come to a head. In the meantime Mr. -Merryweather, we must put the screen over that dark lantern." - -"And sit in the dark?" - -"I am afraid so. I had brought a pack of cards in my pocket, and -I thought that, as we were a partie carre, you might have your -rubber after all. But I see that the enemy's preparations have -gone so far that we cannot risk the presence of a light. And, -first of all, we must choose our positions. These are daring men, -and though we shall take them at a disadvantage, they may do us -some harm unless we are careful. I shall stand behind this crate, -and do you conceal yourselves behind those. Then, when I flash a -light upon them, close in swiftly. If they fire, Watson, have no -compunction about shooting them down." - -I placed my revolver, cocked, upon the top of the wooden case -behind which I crouched. Holmes shot the slide across the front -of his lantern and left us in pitch darkness--such an absolute -darkness as I have never before experienced. The smell of hot -metal remained to assure us that the light was still there, ready -to flash out at a moment's notice. To me, with my nerves worked -up to a pitch of expectancy, there was something depressing and -subduing in the sudden gloom, and in the cold dank air of the -vault. - -"They have but one retreat," whispered Holmes. "That is back -through the house into Saxe-Coburg Square. I hope that you have -done what I asked you, Jones?" - -"I have an inspector and two officers waiting at the front door." - -"Then we have stopped all the holes. And now we must be silent -and wait." - -What a time it seemed! From comparing notes afterwards it was but -an hour and a quarter, yet it appeared to me that the night must -have almost gone and the dawn be breaking above us. My limbs -were weary and stiff, for I feared to change my position; yet my -nerves were worked up to the highest pitch of tension, and my -hearing was so acute that I could not only hear the gentle -breathing of my companions, but I could distinguish the deeper, -heavier in-breath of the bulky Jones from the thin, sighing note -of the bank director. From my position I could look over the case -in the direction of the floor. Suddenly my eyes caught the glint -of a light. - -At first it was but a lurid spark upon the stone pavement. Then -it lengthened out until it became a yellow line, and then, -without any warning or sound, a gash seemed to open and a hand -appeared, a white, almost womanly hand, which felt about in the -centre of the little area of light. For a minute or more the -hand, with its writhing fingers, protruded out of the floor. Then -it was withdrawn as suddenly as it appeared, and all was dark -again save the single lurid spark which marked a chink between -the stones. - -Its disappearance, however, was but momentary. With a rending, -tearing sound, one of the broad, white stones turned over upon -its side and left a square, gaping hole, through which streamed -the light of a lantern. Over the edge there peeped a clean-cut, -boyish face, which looked keenly about it, and then, with a hand -on either side of the aperture, drew itself shoulder-high and -waist-high, until one knee rested upon the edge. In another -instant he stood at the side of the hole and was hauling after -him a companion, lithe and small like himself, with a pale face -and a shock of very red hair. - -"It's all clear," he whispered. "Have you the chisel and the -bags? Great Scott! Jump, Archie, jump, and I'll swing for it!" - -Sherlock Holmes had sprung out and seized the intruder by the -collar. The other dived down the hole, and I heard the sound of -rending cloth as Jones clutched at his skirts. The light flashed -upon the barrel of a revolver, but Holmes' hunting crop came -down on the man's wrist, and the pistol clinked upon the stone -floor. - -"It's no use, John Clay," said Holmes blandly. "You have no -chance at all." - -"So I see," the other answered with the utmost coolness. "I fancy -that my pal is all right, though I see you have got his -coat-tails." - -"There are three men waiting for him at the door," said Holmes. - -"Oh, indeed! You seem to have done the thing very completely. I -must compliment you." - -"And I you," Holmes answered. "Your red-headed idea was very new -and effective." - -"You'll see your pal again presently," said Jones. "He's quicker -at climbing down holes than I am. Just hold out while I fix the -derbies." - -"I beg that you will not touch me with your filthy hands," -remarked our prisoner as the handcuffs clattered upon his wrists. -"You may not be aware that I have royal blood in my veins. Have -the goodness, also, when you address me always to say 'sir' and -'please.'" - -"All right," said Jones with a stare and a snigger. "Well, would -you please, sir, march upstairs, where we can get a cab to carry -your Highness to the police-station?" - -"That is better," said John Clay serenely. He made a sweeping bow -to the three of us and walked quietly off in the custody of the -detective. - -"Really, Mr. Holmes," said Mr. Merryweather as we followed them -from the cellar, "I do not know how the bank can thank you or -repay you. There is no doubt that you have detected and defeated -in the most complete manner one of the most determined attempts -at bank robbery that have ever come within my experience." - -"I have had one or two little scores of my own to settle with Mr. -John Clay," said Holmes. "I have been at some small expense over -this matter, which I shall expect the bank to refund, but beyond -that I am amply repaid by having had an experience which is in -many ways unique, and by hearing the very remarkable narrative of -the Red-headed League." - - -"You see, Watson," he explained in the early hours of the morning -as we sat over a glass of whisky and soda in Baker Street, "it -was perfectly obvious from the first that the only possible -object of this rather fantastic business of the advertisement of -the League, and the copying of the 'Encyclopaedia,' must be to get -this not over-bright pawnbroker out of the way for a number of -hours every day. It was a curious way of managing it, but, -really, it would be difficult to suggest a better. The method was -no doubt suggested to Clay's ingenious mind by the colour of his -accomplice's hair. The 4 pounds a week was a lure which must draw -him, and what was it to them, who were playing for thousands? -They put in the advertisement, one rogue has the temporary -office, the other rogue incites the man to apply for it, and -together they manage to secure his absence every morning in the -week. From the time that I heard of the assistant having come for -half wages, it was obvious to me that he had some strong motive -for securing the situation." - -"But how could you guess what the motive was?" - -"Had there been women in the house, I should have suspected a -mere vulgar intrigue. That, however, was out of the question. The -man's business was a small one, and there was nothing in his -house which could account for such elaborate preparations, and -such an expenditure as they were at. It must, then, be something -out of the house. What could it be? I thought of the assistant's -fondness for photography, and his trick of vanishing into the -cellar. The cellar! There was the end of this tangled clue. Then -I made inquiries as to this mysterious assistant and found that I -had to deal with one of the coolest and most daring criminals in -London. He was doing something in the cellar--something which -took many hours a day for months on end. What could it be, once -more? I could think of nothing save that he was running a tunnel -to some other building. - -"So far I had got when we went to visit the scene of action. I -surprised you by beating upon the pavement with my stick. I was -ascertaining whether the cellar stretched out in front or behind. -It was not in front. Then I rang the bell, and, as I hoped, the -assistant answered it. We have had some skirmishes, but we had -never set eyes upon each other before. I hardly looked at his -face. His knees were what I wished to see. You must yourself have -remarked how worn, wrinkled, and stained they were. They spoke of -those hours of burrowing. The only remaining point was what they -were burrowing for. I walked round the corner, saw the City and -Suburban Bank abutted on our friend's premises, and felt that I -had solved my problem. When you drove home after the concert I -called upon Scotland Yard and upon the chairman of the bank -directors, with the result that you have seen." - -"And how could you tell that they would make their attempt -to-night?" I asked. - -"Well, when they closed their League offices that was a sign that -they cared no longer about Mr. Jabez Wilson's presence--in other -words, that they had completed their tunnel. But it was essential -that they should use it soon, as it might be discovered, or the -bullion might be removed. Saturday would suit them better than -any other day, as it would give them two days for their escape. -For all these reasons I expected them to come to-night." - -"You reasoned it out beautifully," I exclaimed in unfeigned -admiration. "It is so long a chain, and yet every link rings -true." - -"It saved me from ennui," he answered, yawning. "Alas! I already -feel it closing in upon me. My life is spent in one long effort -to escape from the commonplaces of existence. These little -problems help me to do so." - -"And you are a benefactor of the race," said I. - -He shrugged his shoulders. "Well, perhaps, after all, it is of -some little use," he remarked. "'L'homme c'est rien--l'oeuvre -c'est tout,' as Gustave Flaubert wrote to George Sand." - - - -ADVENTURE III. A CASE OF IDENTITY - -"My dear fellow," said Sherlock Holmes as we sat on either side -of the fire in his lodgings at Baker Street, "life is infinitely -stranger than anything which the mind of man could invent. We -would not dare to conceive the things which are really mere -commonplaces of existence. If we could fly out of that window -hand in hand, hover over this great city, gently remove the -roofs, and peep in at the queer things which are going on, the -strange coincidences, the plannings, the cross-purposes, the -wonderful chains of events, working through generations, and -leading to the most outr results, it would make all fiction with -its conventionalities and foreseen conclusions most stale and -unprofitable." - -"And yet I am not convinced of it," I answered. "The cases which -come to light in the papers are, as a rule, bald enough, and -vulgar enough. We have in our police reports realism pushed to -its extreme limits, and yet the result is, it must be confessed, -neither fascinating nor artistic." - -"A certain selection and discretion must be used in producing a -realistic effect," remarked Holmes. "This is wanting in the -police report, where more stress is laid, perhaps, upon the -platitudes of the magistrate than upon the details, which to an -observer contain the vital essence of the whole matter. Depend -upon it, there is nothing so unnatural as the commonplace." - -I smiled and shook my head. "I can quite understand your thinking -so," I said. "Of course, in your position of unofficial adviser -and helper to everybody who is absolutely puzzled, throughout -three continents, you are brought in contact with all that is -strange and bizarre. But here"--I picked up the morning paper -from the ground--"let us put it to a practical test. Here is the -first heading upon which I come. 'A husband's cruelty to his -wife.' There is half a column of print, but I know without -reading it that it is all perfectly familiar to me. There is, of -course, the other woman, the drink, the push, the blow, the -bruise, the sympathetic sister or landlady. The crudest of -writers could invent nothing more crude." - -"Indeed, your example is an unfortunate one for your argument," -said Holmes, taking the paper and glancing his eye down it. "This -is the Dundas separation case, and, as it happens, I was engaged -in clearing up some small points in connection with it. The -husband was a teetotaler, there was no other woman, and the -conduct complained of was that he had drifted into the habit of -winding up every meal by taking out his false teeth and hurling -them at his wife, which, you will allow, is not an action likely -to occur to the imagination of the average story-teller. Take a -pinch of snuff, Doctor, and acknowledge that I have scored over -you in your example." - -He held out his snuffbox of old gold, with a great amethyst in -the centre of the lid. Its splendour was in such contrast to his -homely ways and simple life that I could not help commenting upon -it. - -"Ah," said he, "I forgot that I had not seen you for some weeks. -It is a little souvenir from the King of Bohemia in return for my -assistance in the case of the Irene Adler papers." - -"And the ring?" I asked, glancing at a remarkable brilliant which -sparkled upon his finger. - -"It was from the reigning family of Holland, though the matter in -which I served them was of such delicacy that I cannot confide it -even to you, who have been good enough to chronicle one or two of -my little problems." - -"And have you any on hand just now?" I asked with interest. - -"Some ten or twelve, but none which present any feature of -interest. They are important, you understand, without being -interesting. Indeed, I have found that it is usually in -unimportant matters that there is a field for the observation, -and for the quick analysis of cause and effect which gives the -charm to an investigation. The larger crimes are apt to be the -simpler, for the bigger the crime the more obvious, as a rule, is -the motive. In these cases, save for one rather intricate matter -which has been referred to me from Marseilles, there is nothing -which presents any features of interest. It is possible, however, -that I may have something better before very many minutes are -over, for this is one of my clients, or I am much mistaken." - -He had risen from his chair and was standing between the parted -blinds gazing down into the dull neutral-tinted London street. -Looking over his shoulder, I saw that on the pavement opposite -there stood a large woman with a heavy fur boa round her neck, -and a large curling red feather in a broad-brimmed hat which was -tilted in a coquettish Duchess of Devonshire fashion over her -ear. From under this great panoply she peeped up in a nervous, -hesitating fashion at our windows, while her body oscillated -backward and forward, and her fingers fidgeted with her glove -buttons. Suddenly, with a plunge, as of the swimmer who leaves -the bank, she hurried across the road, and we heard the sharp -clang of the bell. - -"I have seen those symptoms before," said Holmes, throwing his -cigarette into the fire. "Oscillation upon the pavement always -means an affaire de coeur. She would like advice, but is not sure -that the matter is not too delicate for communication. And yet -even here we may discriminate. When a woman has been seriously -wronged by a man she no longer oscillates, and the usual symptom -is a broken bell wire. Here we may take it that there is a love -matter, but that the maiden is not so much angry as perplexed, or -grieved. But here she comes in person to resolve our doubts." - -As he spoke there was a tap at the door, and the boy in buttons -entered to announce Miss Mary Sutherland, while the lady herself -loomed behind his small black figure like a full-sailed -merchant-man behind a tiny pilot boat. Sherlock Holmes welcomed -her with the easy courtesy for which he was remarkable, and, -having closed the door and bowed her into an armchair, he looked -her over in the minute and yet abstracted fashion which was -peculiar to him. - -"Do you not find," he said, "that with your short sight it is a -little trying to do so much typewriting?" - -"I did at first," she answered, "but now I know where the letters -are without looking." Then, suddenly realising the full purport -of his words, she gave a violent start and looked up, with fear -and astonishment upon her broad, good-humoured face. "You've -heard about me, Mr. Holmes," she cried, "else how could you know -all that?" - -"Never mind," said Holmes, laughing; "it is my business to know -things. Perhaps I have trained myself to see what others -overlook. If not, why should you come to consult me?" - -"I came to you, sir, because I heard of you from Mrs. Etherege, -whose husband you found so easy when the police and everyone had -given him up for dead. Oh, Mr. Holmes, I wish you would do as -much for me. I'm not rich, but still I have a hundred a year in -my own right, besides the little that I make by the machine, and -I would give it all to know what has become of Mr. Hosmer Angel." - -"Why did you come away to consult me in such a hurry?" asked -Sherlock Holmes, with his finger-tips together and his eyes to -the ceiling. - -Again a startled look came over the somewhat vacuous face of Miss -Mary Sutherland. "Yes, I did bang out of the house," she said, -"for it made me angry to see the easy way in which Mr. -Windibank--that is, my father--took it all. He would not go to -the police, and he would not go to you, and so at last, as he -would do nothing and kept on saying that there was no harm done, -it made me mad, and I just on with my things and came right away -to you." - -"Your father," said Holmes, "your stepfather, surely, since the -name is different." - -"Yes, my stepfather. I call him father, though it sounds funny, -too, for he is only five years and two months older than myself." - -"And your mother is alive?" - -"Oh, yes, mother is alive and well. I wasn't best pleased, Mr. -Holmes, when she married again so soon after father's death, and -a man who was nearly fifteen years younger than herself. Father -was a plumber in the Tottenham Court Road, and he left a tidy -business behind him, which mother carried on with Mr. Hardy, the -foreman; but when Mr. Windibank came he made her sell the -business, for he was very superior, being a traveller in wines. -They got 4700 pounds for the goodwill and interest, which wasn't -near as much as father could have got if he had been alive." - -I had expected to see Sherlock Holmes impatient under this -rambling and inconsequential narrative, but, on the contrary, he -had listened with the greatest concentration of attention. - -"Your own little income," he asked, "does it come out of the -business?" - -"Oh, no, sir. It is quite separate and was left me by my uncle -Ned in Auckland. It is in New Zealand stock, paying 4 1/2 per -cent. Two thousand five hundred pounds was the amount, but I can -only touch the interest." - -"You interest me extremely," said Holmes. "And since you draw so -large a sum as a hundred a year, with what you earn into the -bargain, you no doubt travel a little and indulge yourself in -every way. I believe that a single lady can get on very nicely -upon an income of about 60 pounds." - -"I could do with much less than that, Mr. Holmes, but you -understand that as long as I live at home I don't wish to be a -burden to them, and so they have the use of the money just while -I am staying with them. Of course, that is only just for the -time. Mr. Windibank draws my interest every quarter and pays it -over to mother, and I find that I can do pretty well with what I -earn at typewriting. It brings me twopence a sheet, and I can -often do from fifteen to twenty sheets in a day." - -"You have made your position very clear to me," said Holmes. -"This is my friend, Dr. Watson, before whom you can speak as -freely as before myself. Kindly tell us now all about your -connection with Mr. Hosmer Angel." - -A flush stole over Miss Sutherland's face, and she picked -nervously at the fringe of her jacket. "I met him first at the -gasfitters' ball," she said. "They used to send father tickets -when he was alive, and then afterwards they remembered us, and -sent them to mother. Mr. Windibank did not wish us to go. He -never did wish us to go anywhere. He would get quite mad if I -wanted so much as to join a Sunday-school treat. But this time I -was set on going, and I would go; for what right had he to -prevent? He said the folk were not fit for us to know, when all -father's friends were to be there. And he said that I had nothing -fit to wear, when I had my purple plush that I had never so much -as taken out of the drawer. At last, when nothing else would do, -he went off to France upon the business of the firm, but we went, -mother and I, with Mr. Hardy, who used to be our foreman, and it -was there I met Mr. Hosmer Angel." - -"I suppose," said Holmes, "that when Mr. Windibank came back from -France he was very annoyed at your having gone to the ball." - -"Oh, well, he was very good about it. He laughed, I remember, and -shrugged his shoulders, and said there was no use denying -anything to a woman, for she would have her way." - -"I see. Then at the gasfitters' ball you met, as I understand, a -gentleman called Mr. Hosmer Angel." - -"Yes, sir. I met him that night, and he called next day to ask if -we had got home all safe, and after that we met him--that is to -say, Mr. Holmes, I met him twice for walks, but after that father -came back again, and Mr. Hosmer Angel could not come to the house -any more." - -"No?" - -"Well, you know father didn't like anything of the sort. He -wouldn't have any visitors if he could help it, and he used to -say that a woman should be happy in her own family circle. But -then, as I used to say to mother, a woman wants her own circle to -begin with, and I had not got mine yet." - -"But how about Mr. Hosmer Angel? Did he make no attempt to see -you?" - -"Well, father was going off to France again in a week, and Hosmer -wrote and said that it would be safer and better not to see each -other until he had gone. We could write in the meantime, and he -used to write every day. I took the letters in in the morning, so -there was no need for father to know." - -"Were you engaged to the gentleman at this time?" - -"Oh, yes, Mr. Holmes. We were engaged after the first walk that -we took. Hosmer--Mr. Angel--was a cashier in an office in -Leadenhall Street--and--" - -"What office?" - -"That's the worst of it, Mr. Holmes, I don't know." - -"Where did he live, then?" - -"He slept on the premises." - -"And you don't know his address?" - -"No--except that it was Leadenhall Street." - -"Where did you address your letters, then?" - -"To the Leadenhall Street Post Office, to be left till called -for. He said that if they were sent to the office he would be -chaffed by all the other clerks about having letters from a lady, -so I offered to typewrite them, like he did his, but he wouldn't -have that, for he said that when I wrote them they seemed to come -from me, but when they were typewritten he always felt that the -machine had come between us. That will just show you how fond he -was of me, Mr. Holmes, and the little things that he would think -of." - -"It was most suggestive," said Holmes. "It has long been an axiom -of mine that the little things are infinitely the most important. -Can you remember any other little things about Mr. Hosmer Angel?" - -"He was a very shy man, Mr. Holmes. He would rather walk with me -in the evening than in the daylight, for he said that he hated to -be conspicuous. Very retiring and gentlemanly he was. Even his -voice was gentle. He'd had the quinsy and swollen glands when he -was young, he told me, and it had left him with a weak throat, -and a hesitating, whispering fashion of speech. He was always -well dressed, very neat and plain, but his eyes were weak, just -as mine are, and he wore tinted glasses against the glare." - -"Well, and what happened when Mr. Windibank, your stepfather, -returned to France?" - -"Mr. Hosmer Angel came to the house again and proposed that we -should marry before father came back. He was in dreadful earnest -and made me swear, with my hands on the Testament, that whatever -happened I would always be true to him. Mother said he was quite -right to make me swear, and that it was a sign of his passion. -Mother was all in his favour from the first and was even fonder -of him than I was. Then, when they talked of marrying within the -week, I began to ask about father; but they both said never to -mind about father, but just to tell him afterwards, and mother -said she would make it all right with him. I didn't quite like -that, Mr. Holmes. It seemed funny that I should ask his leave, as -he was only a few years older than me; but I didn't want to do -anything on the sly, so I wrote to father at Bordeaux, where the -company has its French offices, but the letter came back to me on -the very morning of the wedding." - -"It missed him, then?" - -"Yes, sir; for he had started to England just before it arrived." - -"Ha! that was unfortunate. Your wedding was arranged, then, for -the Friday. Was it to be in church?" - -"Yes, sir, but very quietly. It was to be at St. Saviour's, near -King's Cross, and we were to have breakfast afterwards at the St. -Pancras Hotel. Hosmer came for us in a hansom, but as there were -two of us he put us both into it and stepped himself into a -four-wheeler, which happened to be the only other cab in the -street. We got to the church first, and when the four-wheeler -drove up we waited for him to step out, but he never did, and -when the cabman got down from the box and looked there was no one -there! The cabman said that he could not imagine what had become -of him, for he had seen him get in with his own eyes. That was -last Friday, Mr. Holmes, and I have never seen or heard anything -since then to throw any light upon what became of him." - -"It seems to me that you have been very shamefully treated," said -Holmes. - -"Oh, no, sir! He was too good and kind to leave me so. Why, all -the morning he was saying to me that, whatever happened, I was to -be true; and that even if something quite unforeseen occurred to -separate us, I was always to remember that I was pledged to him, -and that he would claim his pledge sooner or later. It seemed -strange talk for a wedding-morning, but what has happened since -gives a meaning to it." - -"Most certainly it does. Your own opinion is, then, that some -unforeseen catastrophe has occurred to him?" - -"Yes, sir. I believe that he foresaw some danger, or else he -would not have talked so. And then I think that what he foresaw -happened." - -"But you have no notion as to what it could have been?" - -"None." - -"One more question. How did your mother take the matter?" - -"She was angry, and said that I was never to speak of the matter -again." - -"And your father? Did you tell him?" - -"Yes; and he seemed to think, with me, that something had -happened, and that I should hear of Hosmer again. As he said, -what interest could anyone have in bringing me to the doors of -the church, and then leaving me? Now, if he had borrowed my -money, or if he had married me and got my money settled on him, -there might be some reason, but Hosmer was very independent about -money and never would look at a shilling of mine. And yet, what -could have happened? And why could he not write? Oh, it drives me -half-mad to think of it, and I can't sleep a wink at night." She -pulled a little handkerchief out of her muff and began to sob -heavily into it. - -"I shall glance into the case for you," said Holmes, rising, "and -I have no doubt that we shall reach some definite result. Let the -weight of the matter rest upon me now, and do not let your mind -dwell upon it further. Above all, try to let Mr. Hosmer Angel -vanish from your memory, as he has done from your life." - -"Then you don't think I'll see him again?" - -"I fear not." - -"Then what has happened to him?" - -"You will leave that question in my hands. I should like an -accurate description of him and any letters of his which you can -spare." - -"I advertised for him in last Saturday's Chronicle," said she. -"Here is the slip and here are four letters from him." - -"Thank you. And your address?" - -"No. 31 Lyon Place, Camberwell." - -"Mr. Angel's address you never had, I understand. Where is your -father's place of business?" - -"He travels for Westhouse & Marbank, the great claret importers -of Fenchurch Street." - -"Thank you. You have made your statement very clearly. You will -leave the papers here, and remember the advice which I have given -you. Let the whole incident be a sealed book, and do not allow it -to affect your life." - -"You are very kind, Mr. Holmes, but I cannot do that. I shall be -true to Hosmer. He shall find me ready when he comes back." - -For all the preposterous hat and the vacuous face, there was -something noble in the simple faith of our visitor which -compelled our respect. She laid her little bundle of papers upon -the table and went her way, with a promise to come again whenever -she might be summoned. - -Sherlock Holmes sat silent for a few minutes with his fingertips -still pressed together, his legs stretched out in front of him, -and his gaze directed upward to the ceiling. Then he took down -from the rack the old and oily clay pipe, which was to him as a -counsellor, and, having lit it, he leaned back in his chair, with -the thick blue cloud-wreaths spinning up from him, and a look of -infinite languor in his face. - -"Quite an interesting study, that maiden," he observed. "I found -her more interesting than her little problem, which, by the way, -is rather a trite one. You will find parallel cases, if you -consult my index, in Andover in '77, and there was something of -the sort at The Hague last year. Old as is the idea, however, -there were one or two details which were new to me. But the -maiden herself was most instructive." - -"You appeared to read a good deal upon her which was quite -invisible to me," I remarked. - -"Not invisible but unnoticed, Watson. You did not know where to -look, and so you missed all that was important. I can never bring -you to realise the importance of sleeves, the suggestiveness of -thumb-nails, or the great issues that may hang from a boot-lace. -Now, what did you gather from that woman's appearance? Describe -it." - -"Well, she had a slate-coloured, broad-brimmed straw hat, with a -feather of a brickish red. Her jacket was black, with black beads -sewn upon it, and a fringe of little black jet ornaments. Her -dress was brown, rather darker than coffee colour, with a little -purple plush at the neck and sleeves. Her gloves were greyish and -were worn through at the right forefinger. Her boots I didn't -observe. She had small round, hanging gold earrings, and a -general air of being fairly well-to-do in a vulgar, comfortable, -easy-going way." - -Sherlock Holmes clapped his hands softly together and chuckled. - -"'Pon my word, Watson, you are coming along wonderfully. You have -really done very well indeed. It is true that you have missed -everything of importance, but you have hit upon the method, and -you have a quick eye for colour. Never trust to general -impressions, my boy, but concentrate yourself upon details. My -first glance is always at a woman's sleeve. In a man it is -perhaps better first to take the knee of the trouser. As you -observe, this woman had plush upon her sleeves, which is a most -useful material for showing traces. The double line a little -above the wrist, where the typewritist presses against the table, -was beautifully defined. The sewing-machine, of the hand type, -leaves a similar mark, but only on the left arm, and on the side -of it farthest from the thumb, instead of being right across the -broadest part, as this was. I then glanced at her face, and, -observing the dint of a pince-nez at either side of her nose, I -ventured a remark upon short sight and typewriting, which seemed -to surprise her." - -"It surprised me." - -"But, surely, it was obvious. I was then much surprised and -interested on glancing down to observe that, though the boots -which she was wearing were not unlike each other, they were -really odd ones; the one having a slightly decorated toe-cap, and -the other a plain one. One was buttoned only in the two lower -buttons out of five, and the other at the first, third, and -fifth. Now, when you see that a young lady, otherwise neatly -dressed, has come away from home with odd boots, half-buttoned, -it is no great deduction to say that she came away in a hurry." - -"And what else?" I asked, keenly interested, as I always was, by -my friend's incisive reasoning. - -"I noted, in passing, that she had written a note before leaving -home but after being fully dressed. You observed that her right -glove was torn at the forefinger, but you did not apparently see -that both glove and finger were stained with violet ink. She had -written in a hurry and dipped her pen too deep. It must have been -this morning, or the mark would not remain clear upon the finger. -All this is amusing, though rather elementary, but I must go back -to business, Watson. Would you mind reading me the advertised -description of Mr. Hosmer Angel?" - -I held the little printed slip to the light. - -"Missing," it said, "on the morning of the fourteenth, a gentleman -named Hosmer Angel. About five ft. seven in. in height; -strongly built, sallow complexion, black hair, a little bald in -the centre, bushy, black side-whiskers and moustache; tinted -glasses, slight infirmity of speech. Was dressed, when last seen, -in black frock-coat faced with silk, black waistcoat, gold Albert -chain, and grey Harris tweed trousers, with brown gaiters over -elastic-sided boots. Known to have been employed in an office in -Leadenhall Street. Anybody bringing--" - -"That will do," said Holmes. "As to the letters," he continued, -glancing over them, "they are very commonplace. Absolutely no -clue in them to Mr. Angel, save that he quotes Balzac once. There -is one remarkable point, however, which will no doubt strike -you." - -"They are typewritten," I remarked. - -"Not only that, but the signature is typewritten. Look at the -neat little 'Hosmer Angel' at the bottom. There is a date, you -see, but no superscription except Leadenhall Street, which is -rather vague. The point about the signature is very suggestive--in -fact, we may call it conclusive." - -"Of what?" - -"My dear fellow, is it possible you do not see how strongly it -bears upon the case?" - -"I cannot say that I do unless it were that he wished to be able -to deny his signature if an action for breach of promise were -instituted." - -"No, that was not the point. However, I shall write two letters, -which should settle the matter. One is to a firm in the City, the -other is to the young lady's stepfather, Mr. Windibank, asking -him whether he could meet us here at six o'clock tomorrow -evening. It is just as well that we should do business with the -male relatives. And now, Doctor, we can do nothing until the -answers to those letters come, so we may put our little problem -upon the shelf for the interim." - -I had had so many reasons to believe in my friend's subtle powers -of reasoning and extraordinary energy in action that I felt that -he must have some solid grounds for the assured and easy -demeanour with which he treated the singular mystery which he had -been called upon to fathom. Once only had I known him to fail, in -the case of the King of Bohemia and of the Irene Adler -photograph; but when I looked back to the weird business of the -Sign of Four, and the extraordinary circumstances connected with -the Study in Scarlet, I felt that it would be a strange tangle -indeed which he could not unravel. - -I left him then, still puffing at his black clay pipe, with the -conviction that when I came again on the next evening I would -find that he held in his hands all the clues which would lead up -to the identity of the disappearing bridegroom of Miss Mary -Sutherland. - -A professional case of great gravity was engaging my own -attention at the time, and the whole of next day I was busy at -the bedside of the sufferer. It was not until close upon six -o'clock that I found myself free and was able to spring into a -hansom and drive to Baker Street, half afraid that I might be too -late to assist at the dnouement of the little mystery. I found -Sherlock Holmes alone, however, half asleep, with his long, thin -form curled up in the recesses of his armchair. A formidable -array of bottles and test-tubes, with the pungent cleanly smell -of hydrochloric acid, told me that he had spent his day in the -chemical work which was so dear to him. - -"Well, have you solved it?" I asked as I entered. - -"Yes. It was the bisulphate of baryta." - -"No, no, the mystery!" I cried. - -"Oh, that! I thought of the salt that I have been working upon. -There was never any mystery in the matter, though, as I said -yesterday, some of the details are of interest. The only drawback -is that there is no law, I fear, that can touch the scoundrel." - -"Who was he, then, and what was his object in deserting Miss -Sutherland?" - -The question was hardly out of my mouth, and Holmes had not yet -opened his lips to reply, when we heard a heavy footfall in the -passage and a tap at the door. - -"This is the girl's stepfather, Mr. James Windibank," said -Holmes. "He has written to me to say that he would be here at -six. Come in!" - -The man who entered was a sturdy, middle-sized fellow, some -thirty years of age, clean-shaven, and sallow-skinned, with a -bland, insinuating manner, and a pair of wonderfully sharp and -penetrating grey eyes. He shot a questioning glance at each of -us, placed his shiny top-hat upon the sideboard, and with a -slight bow sidled down into the nearest chair. - -"Good-evening, Mr. James Windibank," said Holmes. "I think that -this typewritten letter is from you, in which you made an -appointment with me for six o'clock?" - -"Yes, sir. I am afraid that I am a little late, but I am not -quite my own master, you know. I am sorry that Miss Sutherland -has troubled you about this little matter, for I think it is far -better not to wash linen of the sort in public. It was quite -against my wishes that she came, but she is a very excitable, -impulsive girl, as you may have noticed, and she is not easily -controlled when she has made up her mind on a point. Of course, I -did not mind you so much, as you are not connected with the -official police, but it is not pleasant to have a family -misfortune like this noised abroad. Besides, it is a useless -expense, for how could you possibly find this Hosmer Angel?" - -"On the contrary," said Holmes quietly; "I have every reason to -believe that I will succeed in discovering Mr. Hosmer Angel." - -Mr. Windibank gave a violent start and dropped his gloves. "I am -delighted to hear it," he said. - -"It is a curious thing," remarked Holmes, "that a typewriter has -really quite as much individuality as a man's handwriting. Unless -they are quite new, no two of them write exactly alike. Some -letters get more worn than others, and some wear only on one -side. Now, you remark in this note of yours, Mr. Windibank, that -in every case there is some little slurring over of the 'e,' and -a slight defect in the tail of the 'r.' There are fourteen other -characteristics, but those are the more obvious." - -"We do all our correspondence with this machine at the office, -and no doubt it is a little worn," our visitor answered, glancing -keenly at Holmes with his bright little eyes. - -"And now I will show you what is really a very interesting study, -Mr. Windibank," Holmes continued. "I think of writing another -little monograph some of these days on the typewriter and its -relation to crime. It is a subject to which I have devoted some -little attention. I have here four letters which purport to come -from the missing man. They are all typewritten. In each case, not -only are the 'e's' slurred and the 'r's' tailless, but you will -observe, if you care to use my magnifying lens, that the fourteen -other characteristics to which I have alluded are there as well." - -Mr. Windibank sprang out of his chair and picked up his hat. "I -cannot waste time over this sort of fantastic talk, Mr. Holmes," -he said. "If you can catch the man, catch him, and let me know -when you have done it." - -"Certainly," said Holmes, stepping over and turning the key in -the door. "I let you know, then, that I have caught him!" - -"What! where?" shouted Mr. Windibank, turning white to his lips -and glancing about him like a rat in a trap. - -"Oh, it won't do--really it won't," said Holmes suavely. "There -is no possible getting out of it, Mr. Windibank. It is quite too -transparent, and it was a very bad compliment when you said that -it was impossible for me to solve so simple a question. That's -right! Sit down and let us talk it over." - -Our visitor collapsed into a chair, with a ghastly face and a -glitter of moisture on his brow. "It--it's not actionable," he -stammered. - -"I am very much afraid that it is not. But between ourselves, -Windibank, it was as cruel and selfish and heartless a trick in a -petty way as ever came before me. Now, let me just run over the -course of events, and you will contradict me if I go wrong." - -The man sat huddled up in his chair, with his head sunk upon his -breast, like one who is utterly crushed. Holmes stuck his feet up -on the corner of the mantelpiece and, leaning back with his hands -in his pockets, began talking, rather to himself, as it seemed, -than to us. - -"The man married a woman very much older than himself for her -money," said he, "and he enjoyed the use of the money of the -daughter as long as she lived with them. It was a considerable -sum, for people in their position, and the loss of it would have -made a serious difference. It was worth an effort to preserve it. -The daughter was of a good, amiable disposition, but affectionate -and warm-hearted in her ways, so that it was evident that with -her fair personal advantages, and her little income, she would -not be allowed to remain single long. Now her marriage would -mean, of course, the loss of a hundred a year, so what does her -stepfather do to prevent it? He takes the obvious course of -keeping her at home and forbidding her to seek the company of -people of her own age. But soon he found that that would not -answer forever. She became restive, insisted upon her rights, and -finally announced her positive intention of going to a certain -ball. What does her clever stepfather do then? He conceives an -idea more creditable to his head than to his heart. With the -connivance and assistance of his wife he disguised himself, -covered those keen eyes with tinted glasses, masked the face with -a moustache and a pair of bushy whiskers, sunk that clear voice -into an insinuating whisper, and doubly secure on account of the -girl's short sight, he appears as Mr. Hosmer Angel, and keeps off -other lovers by making love himself." - -"It was only a joke at first," groaned our visitor. "We never -thought that she would have been so carried away." - -"Very likely not. However that may be, the young lady was very -decidedly carried away, and, having quite made up her mind that -her stepfather was in France, the suspicion of treachery never -for an instant entered her mind. She was flattered by the -gentleman's attentions, and the effect was increased by the -loudly expressed admiration of her mother. Then Mr. Angel began -to call, for it was obvious that the matter should be pushed as -far as it would go if a real effect were to be produced. There -were meetings, and an engagement, which would finally secure the -girl's affections from turning towards anyone else. But the -deception could not be kept up forever. These pretended journeys -to France were rather cumbrous. The thing to do was clearly to -bring the business to an end in such a dramatic manner that it -would leave a permanent impression upon the young lady's mind and -prevent her from looking upon any other suitor for some time to -come. Hence those vows of fidelity exacted upon a Testament, and -hence also the allusions to a possibility of something happening -on the very morning of the wedding. James Windibank wished Miss -Sutherland to be so bound to Hosmer Angel, and so uncertain as to -his fate, that for ten years to come, at any rate, she would not -listen to another man. As far as the church door he brought her, -and then, as he could go no farther, he conveniently vanished -away by the old trick of stepping in at one door of a -four-wheeler and out at the other. I think that was the chain of -events, Mr. Windibank!" - -Our visitor had recovered something of his assurance while Holmes -had been talking, and he rose from his chair now with a cold -sneer upon his pale face. - -"It may be so, or it may not, Mr. Holmes," said he, "but if you -are so very sharp you ought to be sharp enough to know that it is -you who are breaking the law now, and not me. I have done nothing -actionable from the first, but as long as you keep that door -locked you lay yourself open to an action for assault and illegal -constraint." - -"The law cannot, as you say, touch you," said Holmes, unlocking -and throwing open the door, "yet there never was a man who -deserved punishment more. If the young lady has a brother or a -friend, he ought to lay a whip across your shoulders. By Jove!" -he continued, flushing up at the sight of the bitter sneer upon -the man's face, "it is not part of my duties to my client, but -here's a hunting crop handy, and I think I shall just treat -myself to--" He took two swift steps to the whip, but before he -could grasp it there was a wild clatter of steps upon the stairs, -the heavy hall door banged, and from the window we could see Mr. -James Windibank running at the top of his speed down the road. - -"There's a cold-blooded scoundrel!" said Holmes, laughing, as he -threw himself down into his chair once more. "That fellow will -rise from crime to crime until he does something very bad, and -ends on a gallows. The case has, in some respects, been not -entirely devoid of interest." - -"I cannot now entirely see all the steps of your reasoning," I -remarked. - -"Well, of course it was obvious from the first that this Mr. -Hosmer Angel must have some strong object for his curious -conduct, and it was equally clear that the only man who really -profited by the incident, as far as we could see, was the -stepfather. Then the fact that the two men were never together, -but that the one always appeared when the other was away, was -suggestive. So were the tinted spectacles and the curious voice, -which both hinted at a disguise, as did the bushy whiskers. My -suspicions were all confirmed by his peculiar action in -typewriting his signature, which, of course, inferred that his -handwriting was so familiar to her that she would recognise even -the smallest sample of it. You see all these isolated facts, -together with many minor ones, all pointed in the same -direction." - -"And how did you verify them?" - -"Having once spotted my man, it was easy to get corroboration. I -knew the firm for which this man worked. Having taken the printed -description. I eliminated everything from it which could be the -result of a disguise--the whiskers, the glasses, the voice, and I -sent it to the firm, with a request that they would inform me -whether it answered to the description of any of their -travellers. I had already noticed the peculiarities of the -typewriter, and I wrote to the man himself at his business -address asking him if he would come here. As I expected, his -reply was typewritten and revealed the same trivial but -characteristic defects. The same post brought me a letter from -Westhouse & Marbank, of Fenchurch Street, to say that the -description tallied in every respect with that of their employ, -James Windibank. Voil tout!" - -"And Miss Sutherland?" - -"If I tell her she will not believe me. You may remember the old -Persian saying, 'There is danger for him who taketh the tiger -cub, and danger also for whoso snatches a delusion from a woman.' -There is as much sense in Hafiz as in Horace, and as much -knowledge of the world." - - - -ADVENTURE IV. THE BOSCOMBE VALLEY MYSTERY - -We were seated at breakfast one morning, my wife and I, when the -maid brought in a telegram. It was from Sherlock Holmes and ran -in this way: - -"Have you a couple of days to spare? Have just been wired for from -the west of England in connection with Boscombe Valley tragedy. -Shall be glad if you will come with me. Air and scenery perfect. -Leave Paddington by the 11:15." - -"What do you say, dear?" said my wife, looking across at me. -"Will you go?" - -"I really don't know what to say. I have a fairly long list at -present." - -"Oh, Anstruther would do your work for you. You have been looking -a little pale lately. I think that the change would do you good, -and you are always so interested in Mr. Sherlock Holmes' cases." - -"I should be ungrateful if I were not, seeing what I gained -through one of them," I answered. "But if I am to go, I must pack -at once, for I have only half an hour." - -My experience of camp life in Afghanistan had at least had the -effect of making me a prompt and ready traveller. My wants were -few and simple, so that in less than the time stated I was in a -cab with my valise, rattling away to Paddington Station. Sherlock -Holmes was pacing up and down the platform, his tall, gaunt -figure made even gaunter and taller by his long grey -travelling-cloak and close-fitting cloth cap. - -"It is really very good of you to come, Watson," said he. "It -makes a considerable difference to me, having someone with me on -whom I can thoroughly rely. Local aid is always either worthless -or else biassed. If you will keep the two corner seats I shall -get the tickets." - -We had the carriage to ourselves save for an immense litter of -papers which Holmes had brought with him. Among these he rummaged -and read, with intervals of note-taking and of meditation, until -we were past Reading. Then he suddenly rolled them all into a -gigantic ball and tossed them up onto the rack. - -"Have you heard anything of the case?" he asked. - -"Not a word. I have not seen a paper for some days." - -"The London press has not had very full accounts. I have just -been looking through all the recent papers in order to master the -particulars. It seems, from what I gather, to be one of those -simple cases which are so extremely difficult." - -"That sounds a little paradoxical." - -"But it is profoundly true. Singularity is almost invariably a -clue. The more featureless and commonplace a crime is, the more -difficult it is to bring it home. In this case, however, they -have established a very serious case against the son of the -murdered man." - -"It is a murder, then?" - -"Well, it is conjectured to be so. I shall take nothing for -granted until I have the opportunity of looking personally into -it. I will explain the state of things to you, as far as I have -been able to understand it, in a very few words. - -"Boscombe Valley is a country district not very far from Ross, in -Herefordshire. The largest landed proprietor in that part is a -Mr. John Turner, who made his money in Australia and returned -some years ago to the old country. One of the farms which he -held, that of Hatherley, was let to Mr. Charles McCarthy, who was -also an ex-Australian. The men had known each other in the -colonies, so that it was not unnatural that when they came to -settle down they should do so as near each other as possible. -Turner was apparently the richer man, so McCarthy became his -tenant but still remained, it seems, upon terms of perfect -equality, as they were frequently together. McCarthy had one son, -a lad of eighteen, and Turner had an only daughter of the same -age, but neither of them had wives living. They appear to have -avoided the society of the neighbouring English families and to -have led retired lives, though both the McCarthys were fond of -sport and were frequently seen at the race-meetings of the -neighbourhood. McCarthy kept two servants--a man and a girl. -Turner had a considerable household, some half-dozen at the -least. That is as much as I have been able to gather about the -families. Now for the facts. - -"On June 3rd, that is, on Monday last, McCarthy left his house at -Hatherley about three in the afternoon and walked down to the -Boscombe Pool, which is a small lake formed by the spreading out -of the stream which runs down the Boscombe Valley. He had been -out with his serving-man in the morning at Ross, and he had told -the man that he must hurry, as he had an appointment of -importance to keep at three. From that appointment he never came -back alive. - -"From Hatherley Farm-house to the Boscombe Pool is a quarter of a -mile, and two people saw him as he passed over this ground. One -was an old woman, whose name is not mentioned, and the other was -William Crowder, a game-keeper in the employ of Mr. Turner. Both -these witnesses depose that Mr. McCarthy was walking alone. The -game-keeper adds that within a few minutes of his seeing Mr. -McCarthy pass he had seen his son, Mr. James McCarthy, going the -same way with a gun under his arm. To the best of his belief, the -father was actually in sight at the time, and the son was -following him. He thought no more of the matter until he heard in -the evening of the tragedy that had occurred. - -"The two McCarthys were seen after the time when William Crowder, -the game-keeper, lost sight of them. The Boscombe Pool is thickly -wooded round, with just a fringe of grass and of reeds round the -edge. A girl of fourteen, Patience Moran, who is the daughter of -the lodge-keeper of the Boscombe Valley estate, was in one of the -woods picking flowers. She states that while she was there she -saw, at the border of the wood and close by the lake, Mr. -McCarthy and his son, and that they appeared to be having a -violent quarrel. She heard Mr. McCarthy the elder using very -strong language to his son, and she saw the latter raise up his -hand as if to strike his father. She was so frightened by their -violence that she ran away and told her mother when she reached -home that she had left the two McCarthys quarrelling near -Boscombe Pool, and that she was afraid that they were going to -fight. She had hardly said the words when young Mr. McCarthy came -running up to the lodge to say that he had found his father dead -in the wood, and to ask for the help of the lodge-keeper. He was -much excited, without either his gun or his hat, and his right -hand and sleeve were observed to be stained with fresh blood. On -following him they found the dead body stretched out upon the -grass beside the pool. The head had been beaten in by repeated -blows of some heavy and blunt weapon. The injuries were such as -might very well have been inflicted by the butt-end of his son's -gun, which was found lying on the grass within a few paces of the -body. Under these circumstances the young man was instantly -arrested, and a verdict of 'wilful murder' having been returned -at the inquest on Tuesday, he was on Wednesday brought before the -magistrates at Ross, who have referred the case to the next -Assizes. Those are the main facts of the case as they came out -before the coroner and the police-court." - -"I could hardly imagine a more damning case," I remarked. "If -ever circumstantial evidence pointed to a criminal it does so -here." - -"Circumstantial evidence is a very tricky thing," answered Holmes -thoughtfully. "It may seem to point very straight to one thing, -but if you shift your own point of view a little, you may find it -pointing in an equally uncompromising manner to something -entirely different. It must be confessed, however, that the case -looks exceedingly grave against the young man, and it is very -possible that he is indeed the culprit. There are several people -in the neighbourhood, however, and among them Miss Turner, the -daughter of the neighbouring landowner, who believe in his -innocence, and who have retained Lestrade, whom you may recollect -in connection with the Study in Scarlet, to work out the case in -his interest. Lestrade, being rather puzzled, has referred the -case to me, and hence it is that two middle-aged gentlemen are -flying westward at fifty miles an hour instead of quietly -digesting their breakfasts at home." - -"I am afraid," said I, "that the facts are so obvious that you -will find little credit to be gained out of this case." - -"There is nothing more deceptive than an obvious fact," he -answered, laughing. "Besides, we may chance to hit upon some -other obvious facts which may have been by no means obvious to -Mr. Lestrade. You know me too well to think that I am boasting -when I say that I shall either confirm or destroy his theory by -means which he is quite incapable of employing, or even of -understanding. To take the first example to hand, I very clearly -perceive that in your bedroom the window is upon the right-hand -side, and yet I question whether Mr. Lestrade would have noted -even so self-evident a thing as that." - -"How on earth--" - -"My dear fellow, I know you well. I know the military neatness -which characterises you. You shave every morning, and in this -season you shave by the sunlight; but since your shaving is less -and less complete as we get farther back on the left side, until -it becomes positively slovenly as we get round the angle of the -jaw, it is surely very clear that that side is less illuminated -than the other. I could not imagine a man of your habits looking -at himself in an equal light and being satisfied with such a -result. I only quote this as a trivial example of observation and -inference. Therein lies my mtier, and it is just possible that -it may be of some service in the investigation which lies before -us. There are one or two minor points which were brought out in -the inquest, and which are worth considering." - -"What are they?" - -"It appears that his arrest did not take place at once, but after -the return to Hatherley Farm. On the inspector of constabulary -informing him that he was a prisoner, he remarked that he was not -surprised to hear it, and that it was no more than his deserts. -This observation of his had the natural effect of removing any -traces of doubt which might have remained in the minds of the -coroner's jury." - -"It was a confession," I ejaculated. - -"No, for it was followed by a protestation of innocence." - -"Coming on the top of such a damning series of events, it was at -least a most suspicious remark." - -"On the contrary," said Holmes, "it is the brightest rift which I -can at present see in the clouds. However innocent he might be, -he could not be such an absolute imbecile as not to see that the -circumstances were very black against him. Had he appeared -surprised at his own arrest, or feigned indignation at it, I -should have looked upon it as highly suspicious, because such -surprise or anger would not be natural under the circumstances, -and yet might appear to be the best policy to a scheming man. His -frank acceptance of the situation marks him as either an innocent -man, or else as a man of considerable self-restraint and -firmness. As to his remark about his deserts, it was also not -unnatural if you consider that he stood beside the dead body of -his father, and that there is no doubt that he had that very day -so far forgotten his filial duty as to bandy words with him, and -even, according to the little girl whose evidence is so -important, to raise his hand as if to strike him. The -self-reproach and contrition which are displayed in his remark -appear to me to be the signs of a healthy mind rather than of a -guilty one." - -I shook my head. "Many men have been hanged on far slighter -evidence," I remarked. - -"So they have. And many men have been wrongfully hanged." - -"What is the young man's own account of the matter?" - -"It is, I am afraid, not very encouraging to his supporters, -though there are one or two points in it which are suggestive. -You will find it here, and may read it for yourself." - -He picked out from his bundle a copy of the local Herefordshire -paper, and having turned down the sheet he pointed out the -paragraph in which the unfortunate young man had given his own -statement of what had occurred. I settled myself down in the -corner of the carriage and read it very carefully. It ran in this -way: - -"Mr. James McCarthy, the only son of the deceased, was then called -and gave evidence as follows: 'I had been away from home for -three days at Bristol, and had only just returned upon the -morning of last Monday, the 3rd. My father was absent from home at -the time of my arrival, and I was informed by the maid that he -had driven over to Ross with John Cobb, the groom. Shortly after -my return I heard the wheels of his trap in the yard, and, -looking out of my window, I saw him get out and walk rapidly out -of the yard, though I was not aware in which direction he was -going. I then took my gun and strolled out in the direction of -the Boscombe Pool, with the intention of visiting the rabbit -warren which is upon the other side. On my way I saw William -Crowder, the game-keeper, as he had stated in his evidence; but -he is mistaken in thinking that I was following my father. I had -no idea that he was in front of me. When about a hundred yards -from the pool I heard a cry of "Cooee!" which was a usual signal -between my father and myself. I then hurried forward, and found -him standing by the pool. He appeared to be much surprised at -seeing me and asked me rather roughly what I was doing there. A -conversation ensued which led to high words and almost to blows, -for my father was a man of a very violent temper. Seeing that his -passion was becoming ungovernable, I left him and returned -towards Hatherley Farm. I had not gone more than 150 yards, -however, when I heard a hideous outcry behind me, which caused me -to run back again. I found my father expiring upon the ground, -with his head terribly injured. I dropped my gun and held him in -my arms, but he almost instantly expired. I knelt beside him for -some minutes, and then made my way to Mr. Turner's lodge-keeper, -his house being the nearest, to ask for assistance. I saw no one -near my father when I returned, and I have no idea how he came by -his injuries. He was not a popular man, being somewhat cold and -forbidding in his manners, but he had, as far as I know, no -active enemies. I know nothing further of the matter.' - -"The Coroner: Did your father make any statement to you before -he died? - -"Witness: He mumbled a few words, but I could only catch some -allusion to a rat. - -"The Coroner: What did you understand by that? - -"Witness: It conveyed no meaning to me. I thought that he was -delirious. - -"The Coroner: What was the point upon which you and your father -had this final quarrel? - -"Witness: I should prefer not to answer. - -"The Coroner: I am afraid that I must press it. - -"Witness: It is really impossible for me to tell you. I can -assure you that it has nothing to do with the sad tragedy which -followed. - -"The Coroner: That is for the court to decide. I need not point -out to you that your refusal to answer will prejudice your case -considerably in any future proceedings which may arise. - -"Witness: I must still refuse. - -"The Coroner: I understand that the cry of 'Cooee' was a common -signal between you and your father? - -"Witness: It was. - -"The Coroner: How was it, then, that he uttered it before he saw -you, and before he even knew that you had returned from Bristol? - -"Witness (with considerable confusion): I do not know. - -"A Juryman: Did you see nothing which aroused your suspicions -when you returned on hearing the cry and found your father -fatally injured? - -"Witness: Nothing definite. - -"The Coroner: What do you mean? - -"Witness: I was so disturbed and excited as I rushed out into -the open, that I could think of nothing except of my father. Yet -I have a vague impression that as I ran forward something lay -upon the ground to the left of me. It seemed to me to be -something grey in colour, a coat of some sort, or a plaid perhaps. -When I rose from my father I looked round for it, but it was -gone. - -"'Do you mean that it disappeared before you went for help?' - -"'Yes, it was gone.' - -"'You cannot say what it was?' - -"'No, I had a feeling something was there.' - -"'How far from the body?' - -"'A dozen yards or so.' - -"'And how far from the edge of the wood?' - -"'About the same.' - -"'Then if it was removed it was while you were within a dozen -yards of it?' - -"'Yes, but with my back towards it.' - -"This concluded the examination of the witness." - -"I see," said I as I glanced down the column, "that the coroner -in his concluding remarks was rather severe upon young McCarthy. -He calls attention, and with reason, to the discrepancy about his -father having signalled to him before seeing him, also to his -refusal to give details of his conversation with his father, and -his singular account of his father's dying words. They are all, -as he remarks, very much against the son." - -Holmes laughed softly to himself and stretched himself out upon -the cushioned seat. "Both you and the coroner have been at some -pains," said he, "to single out the very strongest points in the -young man's favour. Don't you see that you alternately give him -credit for having too much imagination and too little? Too -little, if he could not invent a cause of quarrel which would -give him the sympathy of the jury; too much, if he evolved from -his own inner consciousness anything so outr as a dying -reference to a rat, and the incident of the vanishing cloth. No, -sir, I shall approach this case from the point of view that what -this young man says is true, and we shall see whither that -hypothesis will lead us. And now here is my pocket Petrarch, and -not another word shall I say of this case until we are on the -scene of action. We lunch at Swindon, and I see that we shall be -there in twenty minutes." - -It was nearly four o'clock when we at last, after passing through -the beautiful Stroud Valley, and over the broad gleaming Severn, -found ourselves at the pretty little country-town of Ross. A -lean, ferret-like man, furtive and sly-looking, was waiting for -us upon the platform. In spite of the light brown dustcoat and -leather-leggings which he wore in deference to his rustic -surroundings, I had no difficulty in recognising Lestrade, of -Scotland Yard. With him we drove to the Hereford Arms where a -room had already been engaged for us. - -"I have ordered a carriage," said Lestrade as we sat over a cup -of tea. "I knew your energetic nature, and that you would not be -happy until you had been on the scene of the crime." - -"It was very nice and complimentary of you," Holmes answered. "It -is entirely a question of barometric pressure." - -Lestrade looked startled. "I do not quite follow," he said. - -"How is the glass? Twenty-nine, I see. No wind, and not a cloud -in the sky. I have a caseful of cigarettes here which need -smoking, and the sofa is very much superior to the usual country -hotel abomination. I do not think that it is probable that I -shall use the carriage to-night." - -Lestrade laughed indulgently. "You have, no doubt, already formed -your conclusions from the newspapers," he said. "The case is as -plain as a pikestaff, and the more one goes into it the plainer -it becomes. Still, of course, one can't refuse a lady, and such a -very positive one, too. She has heard of you, and would have your -opinion, though I repeatedly told her that there was nothing -which you could do which I had not already done. Why, bless my -soul! here is her carriage at the door." - -He had hardly spoken before there rushed into the room one of the -most lovely young women that I have ever seen in my life. Her -violet eyes shining, her lips parted, a pink flush upon her -cheeks, all thought of her natural reserve lost in her -overpowering excitement and concern. - -"Oh, Mr. Sherlock Holmes!" she cried, glancing from one to the -other of us, and finally, with a woman's quick intuition, -fastening upon my companion, "I am so glad that you have come. I -have driven down to tell you so. I know that James didn't do it. -I know it, and I want you to start upon your work knowing it, -too. Never let yourself doubt upon that point. We have known each -other since we were little children, and I know his faults as no -one else does; but he is too tender-hearted to hurt a fly. Such a -charge is absurd to anyone who really knows him." - -"I hope we may clear him, Miss Turner," said Sherlock Holmes. -"You may rely upon my doing all that I can." - -"But you have read the evidence. You have formed some conclusion? -Do you not see some loophole, some flaw? Do you not yourself -think that he is innocent?" - -"I think that it is very probable." - -"There, now!" she cried, throwing back her head and looking -defiantly at Lestrade. "You hear! He gives me hopes." - -Lestrade shrugged his shoulders. "I am afraid that my colleague -has been a little quick in forming his conclusions," he said. - -"But he is right. Oh! I know that he is right. James never did -it. And about his quarrel with his father, I am sure that the -reason why he would not speak about it to the coroner was because -I was concerned in it." - -"In what way?" asked Holmes. - -"It is no time for me to hide anything. James and his father had -many disagreements about me. Mr. McCarthy was very anxious that -there should be a marriage between us. James and I have always -loved each other as brother and sister; but of course he is young -and has seen very little of life yet, and--and--well, he -naturally did not wish to do anything like that yet. So there -were quarrels, and this, I am sure, was one of them." - -"And your father?" asked Holmes. "Was he in favour of such a -union?" - -"No, he was averse to it also. No one but Mr. McCarthy was in -favour of it." A quick blush passed over her fresh young face as -Holmes shot one of his keen, questioning glances at her. - -"Thank you for this information," said he. "May I see your father -if I call to-morrow?" - -"I am afraid the doctor won't allow it." - -"The doctor?" - -"Yes, have you not heard? Poor father has never been strong for -years back, but this has broken him down completely. He has taken -to his bed, and Dr. Willows says that he is a wreck and that his -nervous system is shattered. Mr. McCarthy was the only man alive -who had known dad in the old days in Victoria." - -"Ha! In Victoria! That is important." - -"Yes, at the mines." - -"Quite so; at the gold-mines, where, as I understand, Mr. Turner -made his money." - -"Yes, certainly." - -"Thank you, Miss Turner. You have been of material assistance to -me." - -"You will tell me if you have any news to-morrow. No doubt you -will go to the prison to see James. Oh, if you do, Mr. Holmes, do -tell him that I know him to be innocent." - -"I will, Miss Turner." - -"I must go home now, for dad is very ill, and he misses me so if -I leave him. Good-bye, and God help you in your undertaking." She -hurried from the room as impulsively as she had entered, and we -heard the wheels of her carriage rattle off down the street. - -"I am ashamed of you, Holmes," said Lestrade with dignity after a -few minutes' silence. "Why should you raise up hopes which you -are bound to disappoint? I am not over-tender of heart, but I -call it cruel." - -"I think that I see my way to clearing James McCarthy," said -Holmes. "Have you an order to see him in prison?" - -"Yes, but only for you and me." - -"Then I shall reconsider my resolution about going out. We have -still time to take a train to Hereford and see him to-night?" - -"Ample." - -"Then let us do so. Watson, I fear that you will find it very -slow, but I shall only be away a couple of hours." - -I walked down to the station with them, and then wandered through -the streets of the little town, finally returning to the hotel, -where I lay upon the sofa and tried to interest myself in a -yellow-backed novel. The puny plot of the story was so thin, -however, when compared to the deep mystery through which we were -groping, and I found my attention wander so continually from the -action to the fact, that I at last flung it across the room and -gave myself up entirely to a consideration of the events of the -day. Supposing that this unhappy young man's story were -absolutely true, then what hellish thing, what absolutely -unforeseen and extraordinary calamity could have occurred between -the time when he parted from his father, and the moment when, -drawn back by his screams, he rushed into the glade? It was -something terrible and deadly. What could it be? Might not the -nature of the injuries reveal something to my medical instincts? -I rang the bell and called for the weekly county paper, which -contained a verbatim account of the inquest. In the surgeon's -deposition it was stated that the posterior third of the left -parietal bone and the left half of the occipital bone had been -shattered by a heavy blow from a blunt weapon. I marked the spot -upon my own head. Clearly such a blow must have been struck from -behind. That was to some extent in favour of the accused, as when -seen quarrelling he was face to face with his father. Still, it -did not go for very much, for the older man might have turned his -back before the blow fell. Still, it might be worth while to call -Holmes' attention to it. Then there was the peculiar dying -reference to a rat. What could that mean? It could not be -delirium. A man dying from a sudden blow does not commonly become -delirious. No, it was more likely to be an attempt to explain how -he met his fate. But what could it indicate? I cudgelled my -brains to find some possible explanation. And then the incident -of the grey cloth seen by young McCarthy. If that were true the -murderer must have dropped some part of his dress, presumably his -overcoat, in his flight, and must have had the hardihood to -return and to carry it away at the instant when the son was -kneeling with his back turned not a dozen paces off. What a -tissue of mysteries and improbabilities the whole thing was! I -did not wonder at Lestrade's opinion, and yet I had so much faith -in Sherlock Holmes' insight that I could not lose hope as long -as every fresh fact seemed to strengthen his conviction of young -McCarthy's innocence. - -It was late before Sherlock Holmes returned. He came back alone, -for Lestrade was staying in lodgings in the town. - -"The glass still keeps very high," he remarked as he sat down. -"It is of importance that it should not rain before we are able -to go over the ground. On the other hand, a man should be at his -very best and keenest for such nice work as that, and I did not -wish to do it when fagged by a long journey. I have seen young -McCarthy." - -"And what did you learn from him?" - -"Nothing." - -"Could he throw no light?" - -"None at all. I was inclined to think at one time that he knew -who had done it and was screening him or her, but I am convinced -now that he is as puzzled as everyone else. He is not a very -quick-witted youth, though comely to look at and, I should think, -sound at heart." - -"I cannot admire his taste," I remarked, "if it is indeed a fact -that he was averse to a marriage with so charming a young lady as -this Miss Turner." - -"Ah, thereby hangs a rather painful tale. This fellow is madly, -insanely, in love with her, but some two years ago, when he was -only a lad, and before he really knew her, for she had been away -five years at a boarding-school, what does the idiot do but get -into the clutches of a barmaid in Bristol and marry her at a -registry office? No one knows a word of the matter, but you can -imagine how maddening it must be to him to be upbraided for not -doing what he would give his very eyes to do, but what he knows -to be absolutely impossible. It was sheer frenzy of this sort -which made him throw his hands up into the air when his father, -at their last interview, was goading him on to propose to Miss -Turner. On the other hand, he had no means of supporting himself, -and his father, who was by all accounts a very hard man, would -have thrown him over utterly had he known the truth. It was with -his barmaid wife that he had spent the last three days in -Bristol, and his father did not know where he was. Mark that -point. It is of importance. Good has come out of evil, however, -for the barmaid, finding from the papers that he is in serious -trouble and likely to be hanged, has thrown him over utterly and -has written to him to say that she has a husband already in the -Bermuda Dockyard, so that there is really no tie between them. I -think that that bit of news has consoled young McCarthy for all -that he has suffered." - -"But if he is innocent, who has done it?" - -"Ah! who? I would call your attention very particularly to two -points. One is that the murdered man had an appointment with -someone at the pool, and that the someone could not have been his -son, for his son was away, and he did not know when he would -return. The second is that the murdered man was heard to cry -'Cooee!' before he knew that his son had returned. Those are the -crucial points upon which the case depends. And now let us talk -about George Meredith, if you please, and we shall leave all -minor matters until to-morrow." - -There was no rain, as Holmes had foretold, and the morning broke -bright and cloudless. At nine o'clock Lestrade called for us with -the carriage, and we set off for Hatherley Farm and the Boscombe -Pool. - -"There is serious news this morning," Lestrade observed. "It is -said that Mr. Turner, of the Hall, is so ill that his life is -despaired of." - -"An elderly man, I presume?" said Holmes. - -"About sixty; but his constitution has been shattered by his life -abroad, and he has been in failing health for some time. This -business has had a very bad effect upon him. He was an old friend -of McCarthy's, and, I may add, a great benefactor to him, for I -have learned that he gave him Hatherley Farm rent free." - -"Indeed! That is interesting," said Holmes. - -"Oh, yes! In a hundred other ways he has helped him. Everybody -about here speaks of his kindness to him." - -"Really! Does it not strike you as a little singular that this -McCarthy, who appears to have had little of his own, and to have -been under such obligations to Turner, should still talk of -marrying his son to Turner's daughter, who is, presumably, -heiress to the estate, and that in such a very cocksure manner, -as if it were merely a case of a proposal and all else would -follow? It is the more strange, since we know that Turner himself -was averse to the idea. The daughter told us as much. Do you not -deduce something from that?" - -"We have got to the deductions and the inferences," said -Lestrade, winking at me. "I find it hard enough to tackle facts, -Holmes, without flying away after theories and fancies." - -"You are right," said Holmes demurely; "you do find it very hard -to tackle the facts." - -"Anyhow, I have grasped one fact which you seem to find it -difficult to get hold of," replied Lestrade with some warmth. - -"And that is--" - -"That McCarthy senior met his death from McCarthy junior and that -all theories to the contrary are the merest moonshine." - -"Well, moonshine is a brighter thing than fog," said Holmes, -laughing. "But I am very much mistaken if this is not Hatherley -Farm upon the left." - -"Yes, that is it." It was a widespread, comfortable-looking -building, two-storied, slate-roofed, with great yellow blotches -of lichen upon the grey walls. The drawn blinds and the smokeless -chimneys, however, gave it a stricken look, as though the weight -of this horror still lay heavy upon it. We called at the door, -when the maid, at Holmes' request, showed us the boots which her -master wore at the time of his death, and also a pair of the -son's, though not the pair which he had then had. Having measured -these very carefully from seven or eight different points, Holmes -desired to be led to the court-yard, from which we all followed -the winding track which led to Boscombe Pool. - -Sherlock Holmes was transformed when he was hot upon such a scent -as this. Men who had only known the quiet thinker and logician of -Baker Street would have failed to recognise him. His face flushed -and darkened. His brows were drawn into two hard black lines, -while his eyes shone out from beneath them with a steely glitter. -His face was bent downward, his shoulders bowed, his lips -compressed, and the veins stood out like whipcord in his long, -sinewy neck. His nostrils seemed to dilate with a purely animal -lust for the chase, and his mind was so absolutely concentrated -upon the matter before him that a question or remark fell -unheeded upon his ears, or, at the most, only provoked a quick, -impatient snarl in reply. Swiftly and silently he made his way -along the track which ran through the meadows, and so by way of -the woods to the Boscombe Pool. It was damp, marshy ground, as is -all that district, and there were marks of many feet, both upon -the path and amid the short grass which bounded it on either -side. Sometimes Holmes would hurry on, sometimes stop dead, and -once he made quite a little detour into the meadow. Lestrade and -I walked behind him, the detective indifferent and contemptuous, -while I watched my friend with the interest which sprang from the -conviction that every one of his actions was directed towards a -definite end. - -The Boscombe Pool, which is a little reed-girt sheet of water -some fifty yards across, is situated at the boundary between the -Hatherley Farm and the private park of the wealthy Mr. Turner. -Above the woods which lined it upon the farther side we could see -the red, jutting pinnacles which marked the site of the rich -landowner's dwelling. On the Hatherley side of the pool the woods -grew very thick, and there was a narrow belt of sodden grass -twenty paces across between the edge of the trees and the reeds -which lined the lake. Lestrade showed us the exact spot at which -the body had been found, and, indeed, so moist was the ground, -that I could plainly see the traces which had been left by the -fall of the stricken man. To Holmes, as I could see by his eager -face and peering eyes, very many other things were to be read -upon the trampled grass. He ran round, like a dog who is picking -up a scent, and then turned upon my companion. - -"What did you go into the pool for?" he asked. - -"I fished about with a rake. I thought there might be some weapon -or other trace. But how on earth--" - -"Oh, tut, tut! I have no time! That left foot of yours with its -inward twist is all over the place. A mole could trace it, and -there it vanishes among the reeds. Oh, how simple it would all -have been had I been here before they came like a herd of buffalo -and wallowed all over it. Here is where the party with the -lodge-keeper came, and they have covered all tracks for six or -eight feet round the body. But here are three separate tracks of -the same feet." He drew out a lens and lay down upon his -waterproof to have a better view, talking all the time rather to -himself than to us. "These are young McCarthy's feet. Twice he -was walking, and once he ran swiftly, so that the soles are -deeply marked and the heels hardly visible. That bears out his -story. He ran when he saw his father on the ground. Then here are -the father's feet as he paced up and down. What is this, then? It -is the butt-end of the gun as the son stood listening. And this? -Ha, ha! What have we here? Tiptoes! tiptoes! Square, too, quite -unusual boots! They come, they go, they come again--of course -that was for the cloak. Now where did they come from?" He ran up -and down, sometimes losing, sometimes finding the track until we -were well within the edge of the wood and under the shadow of a -great beech, the largest tree in the neighbourhood. Holmes traced -his way to the farther side of this and lay down once more upon -his face with a little cry of satisfaction. For a long time he -remained there, turning over the leaves and dried sticks, -gathering up what seemed to me to be dust into an envelope and -examining with his lens not only the ground but even the bark of -the tree as far as he could reach. A jagged stone was lying among -the moss, and this also he carefully examined and retained. Then -he followed a pathway through the wood until he came to the -highroad, where all traces were lost. - -"It has been a case of considerable interest," he remarked, -returning to his natural manner. "I fancy that this grey house on -the right must be the lodge. I think that I will go in and have a -word with Moran, and perhaps write a little note. Having done -that, we may drive back to our luncheon. You may walk to the cab, -and I shall be with you presently." - -It was about ten minutes before we regained our cab and drove -back into Ross, Holmes still carrying with him the stone which he -had picked up in the wood. - -"This may interest you, Lestrade," he remarked, holding it out. -"The murder was done with it." - -"I see no marks." - -"There are none." - -"How do you know, then?" - -"The grass was growing under it. It had only lain there a few -days. There was no sign of a place whence it had been taken. It -corresponds with the injuries. There is no sign of any other -weapon." - -"And the murderer?" - -"Is a tall man, left-handed, limps with the right leg, wears -thick-soled shooting-boots and a grey cloak, smokes Indian -cigars, uses a cigar-holder, and carries a blunt pen-knife in his -pocket. There are several other indications, but these may be -enough to aid us in our search." - -Lestrade laughed. "I am afraid that I am still a sceptic," he -said. "Theories are all very well, but we have to deal with a -hard-headed British jury." - -"Nous verrons," answered Holmes calmly. "You work your own -method, and I shall work mine. I shall be busy this afternoon, -and shall probably return to London by the evening train." - -"And leave your case unfinished?" - -"No, finished." - -"But the mystery?" - -"It is solved." - -"Who was the criminal, then?" - -"The gentleman I describe." - -"But who is he?" - -"Surely it would not be difficult to find out. This is not such a -populous neighbourhood." - -Lestrade shrugged his shoulders. "I am a practical man," he said, -"and I really cannot undertake to go about the country looking -for a left-handed gentleman with a game leg. I should become the -laughing-stock of Scotland Yard." - -"All right," said Holmes quietly. "I have given you the chance. -Here are your lodgings. Good-bye. I shall drop you a line before -I leave." - -Having left Lestrade at his rooms, we drove to our hotel, where -we found lunch upon the table. Holmes was silent and buried in -thought with a pained expression upon his face, as one who finds -himself in a perplexing position. - -"Look here, Watson," he said when the cloth was cleared "just sit -down in this chair and let me preach to you for a little. I don't -know quite what to do, and I should value your advice. Light a -cigar and let me expound." - - "Pray do so." - -"Well, now, in considering this case there are two points about -young McCarthy's narrative which struck us both instantly, -although they impressed me in his favour and you against him. One -was the fact that his father should, according to his account, -cry 'Cooee!' before seeing him. The other was his singular dying -reference to a rat. He mumbled several words, you understand, but -that was all that caught the son's ear. Now from this double -point our research must commence, and we will begin it by -presuming that what the lad says is absolutely true." - -"What of this 'Cooee!' then?" - -"Well, obviously it could not have been meant for the son. The -son, as far as he knew, was in Bristol. It was mere chance that -he was within earshot. The 'Cooee!' was meant to attract the -attention of whoever it was that he had the appointment with. But -'Cooee' is a distinctly Australian cry, and one which is used -between Australians. There is a strong presumption that the -person whom McCarthy expected to meet him at Boscombe Pool was -someone who had been in Australia." - -"What of the rat, then?" - -Sherlock Holmes took a folded paper from his pocket and flattened -it out on the table. "This is a map of the Colony of Victoria," -he said. "I wired to Bristol for it last night." He put his hand -over part of the map. "What do you read?" - -"ARAT," I read. - -"And now?" He raised his hand. - -"BALLARAT." - -"Quite so. That was the word the man uttered, and of which his -son only caught the last two syllables. He was trying to utter -the name of his murderer. So and so, of Ballarat." - -"It is wonderful!" I exclaimed. - -"It is obvious. And now, you see, I had narrowed the field down -considerably. The possession of a grey garment was a third point -which, granting the son's statement to be correct, was a -certainty. We have come now out of mere vagueness to the definite -conception of an Australian from Ballarat with a grey cloak." - -"Certainly." - -"And one who was at home in the district, for the pool can only -be approached by the farm or by the estate, where strangers could -hardly wander." - -"Quite so." - -"Then comes our expedition of to-day. By an examination of the -ground I gained the trifling details which I gave to that -imbecile Lestrade, as to the personality of the criminal." - -"But how did you gain them?" - -"You know my method. It is founded upon the observation of -trifles." - -"His height I know that you might roughly judge from the length -of his stride. His boots, too, might be told from their traces." - -"Yes, they were peculiar boots." - -"But his lameness?" - -"The impression of his right foot was always less distinct than -his left. He put less weight upon it. Why? Because he limped--he -was lame." - -"But his left-handedness." - -"You were yourself struck by the nature of the injury as recorded -by the surgeon at the inquest. The blow was struck from -immediately behind, and yet was upon the left side. Now, how can -that be unless it were by a left-handed man? He had stood behind -that tree during the interview between the father and son. He had -even smoked there. I found the ash of a cigar, which my special -knowledge of tobacco ashes enables me to pronounce as an Indian -cigar. I have, as you know, devoted some attention to this, and -written a little monograph on the ashes of 140 different -varieties of pipe, cigar, and cigarette tobacco. Having found the -ash, I then looked round and discovered the stump among the moss -where he had tossed it. It was an Indian cigar, of the variety -which are rolled in Rotterdam." - -"And the cigar-holder?" - -"I could see that the end had not been in his mouth. Therefore he -used a holder. The tip had been cut off, not bitten off, but the -cut was not a clean one, so I deduced a blunt pen-knife." - -"Holmes," I said, "you have drawn a net round this man from which -he cannot escape, and you have saved an innocent human life as -truly as if you had cut the cord which was hanging him. I see the -direction in which all this points. The culprit is--" - -"Mr. John Turner," cried the hotel waiter, opening the door of -our sitting-room, and ushering in a visitor. - -The man who entered was a strange and impressive figure. His -slow, limping step and bowed shoulders gave the appearance of -decrepitude, and yet his hard, deep-lined, craggy features, and -his enormous limbs showed that he was possessed of unusual -strength of body and of character. His tangled beard, grizzled -hair, and outstanding, drooping eyebrows combined to give an air -of dignity and power to his appearance, but his face was of an -ashen white, while his lips and the corners of his nostrils were -tinged with a shade of blue. It was clear to me at a glance that -he was in the grip of some deadly and chronic disease. - -"Pray sit down on the sofa," said Holmes gently. "You had my -note?" - -"Yes, the lodge-keeper brought it up. You said that you wished to -see me here to avoid scandal." - -"I thought people would talk if I went to the Hall." - -"And why did you wish to see me?" He looked across at my -companion with despair in his weary eyes, as though his question -was already answered. - -"Yes," said Holmes, answering the look rather than the words. "It -is so. I know all about McCarthy." - -The old man sank his face in his hands. "God help me!" he cried. -"But I would not have let the young man come to harm. I give you -my word that I would have spoken out if it went against him at -the Assizes." - -"I am glad to hear you say so," said Holmes gravely. - -"I would have spoken now had it not been for my dear girl. It -would break her heart--it will break her heart when she hears -that I am arrested." - -"It may not come to that," said Holmes. - -"What?" - -"I am no official agent. I understand that it was your daughter -who required my presence here, and I am acting in her interests. -Young McCarthy must be got off, however." - -"I am a dying man," said old Turner. "I have had diabetes for -years. My doctor says it is a question whether I shall live a -month. Yet I would rather die under my own roof than in a gaol." - -Holmes rose and sat down at the table with his pen in his hand -and a bundle of paper before him. "Just tell us the truth," he -said. "I shall jot down the facts. You will sign it, and Watson -here can witness it. Then I could produce your confession at the -last extremity to save young McCarthy. I promise you that I shall -not use it unless it is absolutely needed." - -"It's as well," said the old man; "it's a question whether I -shall live to the Assizes, so it matters little to me, but I -should wish to spare Alice the shock. And now I will make the -thing clear to you; it has been a long time in the acting, but -will not take me long to tell. - -"You didn't know this dead man, McCarthy. He was a devil -incarnate. I tell you that. God keep you out of the clutches of -such a man as he. His grip has been upon me these twenty years, -and he has blasted my life. I'll tell you first how I came to be -in his power. - -"It was in the early '60's at the diggings. I was a young chap -then, hot-blooded and reckless, ready to turn my hand at -anything; I got among bad companions, took to drink, had no luck -with my claim, took to the bush, and in a word became what you -would call over here a highway robber. There were six of us, and -we had a wild, free life of it, sticking up a station from time -to time, or stopping the wagons on the road to the diggings. -Black Jack of Ballarat was the name I went under, and our party -is still remembered in the colony as the Ballarat Gang. - -"One day a gold convoy came down from Ballarat to Melbourne, and -we lay in wait for it and attacked it. There were six troopers -and six of us, so it was a close thing, but we emptied four of -their saddles at the first volley. Three of our boys were killed, -however, before we got the swag. I put my pistol to the head of -the wagon-driver, who was this very man McCarthy. I wish to the -Lord that I had shot him then, but I spared him, though I saw his -wicked little eyes fixed on my face, as though to remember every -feature. We got away with the gold, became wealthy men, and made -our way over to England without being suspected. There I parted -from my old pals and determined to settle down to a quiet and -respectable life. I bought this estate, which chanced to be in -the market, and I set myself to do a little good with my money, -to make up for the way in which I had earned it. I married, too, -and though my wife died young she left me my dear little Alice. -Even when she was just a baby her wee hand seemed to lead me down -the right path as nothing else had ever done. In a word, I turned -over a new leaf and did my best to make up for the past. All was -going well when McCarthy laid his grip upon me. - -"I had gone up to town about an investment, and I met him in -Regent Street with hardly a coat to his back or a boot to his -foot. - -"'Here we are, Jack,' says he, touching me on the arm; 'we'll be -as good as a family to you. There's two of us, me and my son, and -you can have the keeping of us. If you don't--it's a fine, -law-abiding country is England, and there's always a policeman -within hail.' - -"Well, down they came to the west country, there was no shaking -them off, and there they have lived rent free on my best land -ever since. There was no rest for me, no peace, no forgetfulness; -turn where I would, there was his cunning, grinning face at my -elbow. It grew worse as Alice grew up, for he soon saw I was more -afraid of her knowing my past than of the police. Whatever he -wanted he must have, and whatever it was I gave him without -question, land, money, houses, until at last he asked a thing -which I could not give. He asked for Alice. - -"His son, you see, had grown up, and so had my girl, and as I was -known to be in weak health, it seemed a fine stroke to him that -his lad should step into the whole property. But there I was -firm. I would not have his cursed stock mixed with mine; not that -I had any dislike to the lad, but his blood was in him, and that -was enough. I stood firm. McCarthy threatened. I braved him to do -his worst. We were to meet at the pool midway between our houses -to talk it over. - -"When I went down there I found him talking with his son, so I -smoked a cigar and waited behind a tree until he should be alone. -But as I listened to his talk all that was black and bitter in -me seemed to come uppermost. He was urging his son to marry my -daughter with as little regard for what she might think as if she -were a slut from off the streets. It drove me mad to think that I -and all that I held most dear should be in the power of such a -man as this. Could I not snap the bond? I was already a dying and -a desperate man. Though clear of mind and fairly strong of limb, -I knew that my own fate was sealed. But my memory and my girl! -Both could be saved if I could but silence that foul tongue. I -did it, Mr. Holmes. I would do it again. Deeply as I have sinned, -I have led a life of martyrdom to atone for it. But that my girl -should be entangled in the same meshes which held me was more -than I could suffer. I struck him down with no more compunction -than if he had been some foul and venomous beast. His cry brought -back his son; but I had gained the cover of the wood, though I -was forced to go back to fetch the cloak which I had dropped in -my flight. That is the true story, gentlemen, of all that -occurred." - -"Well, it is not for me to judge you," said Holmes as the old man -signed the statement which had been drawn out. "I pray that we -may never be exposed to such a temptation." - -"I pray not, sir. And what do you intend to do?" - -"In view of your health, nothing. You are yourself aware that you -will soon have to answer for your deed at a higher court than the -Assizes. I will keep your confession, and if McCarthy is -condemned I shall be forced to use it. If not, it shall never be -seen by mortal eye; and your secret, whether you be alive or -dead, shall be safe with us." - -"Farewell, then," said the old man solemnly. "Your own deathbeds, -when they come, will be the easier for the thought of the peace -which you have given to mine." Tottering and shaking in all his -giant frame, he stumbled slowly from the room. - -"God help us!" said Holmes after a long silence. "Why does fate -play such tricks with poor, helpless worms? I never hear of such -a case as this that I do not think of Baxter's words, and say, -'There, but for the grace of God, goes Sherlock Holmes.'" - -James McCarthy was acquitted at the Assizes on the strength of a -number of objections which had been drawn out by Holmes and -submitted to the defending counsel. Old Turner lived for seven -months after our interview, but he is now dead; and there is -every prospect that the son and daughter may come to live happily -together in ignorance of the black cloud which rests upon their -past. - - - -ADVENTURE V. THE FIVE ORANGE PIPS - -When I glance over my notes and records of the Sherlock Holmes -cases between the years '82 and '90, I am faced by so many which -present strange and interesting features that it is no easy -matter to know which to choose and which to leave. Some, however, -have already gained publicity through the papers, and others have -not offered a field for those peculiar qualities which my friend -possessed in so high a degree, and which it is the object of -these papers to illustrate. Some, too, have baffled his -analytical skill, and would be, as narratives, beginnings without -an ending, while others have been but partially cleared up, and -have their explanations founded rather upon conjecture and -surmise than on that absolute logical proof which was so dear to -him. There is, however, one of these last which was so remarkable -in its details and so startling in its results that I am tempted -to give some account of it in spite of the fact that there are -points in connection with it which never have been, and probably -never will be, entirely cleared up. - -The year '87 furnished us with a long series of cases of greater -or less interest, of which I retain the records. Among my -headings under this one twelve months I find an account of the -adventure of the Paradol Chamber, of the Amateur Mendicant -Society, who held a luxurious club in the lower vault of a -furniture warehouse, of the facts connected with the loss of the -British barque "Sophy Anderson", of the singular adventures of the -Grice Patersons in the island of Uffa, and finally of the -Camberwell poisoning case. In the latter, as may be remembered, -Sherlock Holmes was able, by winding up the dead man's watch, to -prove that it had been wound up two hours before, and that -therefore the deceased had gone to bed within that time--a -deduction which was of the greatest importance in clearing up the -case. All these I may sketch out at some future date, but none of -them present such singular features as the strange train of -circumstances which I have now taken up my pen to describe. - -It was in the latter days of September, and the equinoctial gales -had set in with exceptional violence. All day the wind had -screamed and the rain had beaten against the windows, so that -even here in the heart of great, hand-made London we were forced -to raise our minds for the instant from the routine of life and -to recognise the presence of those great elemental forces which -shriek at mankind through the bars of his civilisation, like -untamed beasts in a cage. As evening drew in, the storm grew -higher and louder, and the wind cried and sobbed like a child in -the chimney. Sherlock Holmes sat moodily at one side of the -fireplace cross-indexing his records of crime, while I at the -other was deep in one of Clark Russell's fine sea-stories until -the howl of the gale from without seemed to blend with the text, -and the splash of the rain to lengthen out into the long swash of -the sea waves. My wife was on a visit to her mother's, and for a -few days I was a dweller once more in my old quarters at Baker -Street. - -"Why," said I, glancing up at my companion, "that was surely the -bell. Who could come to-night? Some friend of yours, perhaps?" - -"Except yourself I have none," he answered. "I do not encourage -visitors." - -"A client, then?" - -"If so, it is a serious case. Nothing less would bring a man out -on such a day and at such an hour. But I take it that it is more -likely to be some crony of the landlady's." - -Sherlock Holmes was wrong in his conjecture, however, for there -came a step in the passage and a tapping at the door. He -stretched out his long arm to turn the lamp away from himself and -towards the vacant chair upon which a newcomer must sit. - -"Come in!" said he. - -The man who entered was young, some two-and-twenty at the -outside, well-groomed and trimly clad, with something of -refinement and delicacy in his bearing. The streaming umbrella -which he held in his hand, and his long shining waterproof told -of the fierce weather through which he had come. He looked about -him anxiously in the glare of the lamp, and I could see that his -face was pale and his eyes heavy, like those of a man who is -weighed down with some great anxiety. - -"I owe you an apology," he said, raising his golden pince-nez to -his eyes. "I trust that I am not intruding. I fear that I have -brought some traces of the storm and rain into your snug -chamber." - -"Give me your coat and umbrella," said Holmes. "They may rest -here on the hook and will be dry presently. You have come up from -the south-west, I see." - -"Yes, from Horsham." - -"That clay and chalk mixture which I see upon your toe caps is -quite distinctive." - -"I have come for advice." - -"That is easily got." - -"And help." - -"That is not always so easy." - -"I have heard of you, Mr. Holmes. I heard from Major Prendergast -how you saved him in the Tankerville Club scandal." - -"Ah, of course. He was wrongfully accused of cheating at cards." - -"He said that you could solve anything." - -"He said too much." - -"That you are never beaten." - -"I have been beaten four times--three times by men, and once by a -woman." - -"But what is that compared with the number of your successes?" - -"It is true that I have been generally successful." - -"Then you may be so with me." - -"I beg that you will draw your chair up to the fire and favour me -with some details as to your case." - -"It is no ordinary one." - -"None of those which come to me are. I am the last court of -appeal." - -"And yet I question, sir, whether, in all your experience, you -have ever listened to a more mysterious and inexplicable chain of -events than those which have happened in my own family." - -"You fill me with interest," said Holmes. "Pray give us the -essential facts from the commencement, and I can afterwards -question you as to those details which seem to me to be most -important." - -The young man pulled his chair up and pushed his wet feet out -towards the blaze. - -"My name," said he, "is John Openshaw, but my own affairs have, -as far as I can understand, little to do with this awful -business. It is a hereditary matter; so in order to give you an -idea of the facts, I must go back to the commencement of the -affair. - -"You must know that my grandfather had two sons--my uncle Elias -and my father Joseph. My father had a small factory at Coventry, -which he enlarged at the time of the invention of bicycling. He -was a patentee of the Openshaw unbreakable tire, and his business -met with such success that he was able to sell it and to retire -upon a handsome competence. - -"My uncle Elias emigrated to America when he was a young man and -became a planter in Florida, where he was reported to have done -very well. At the time of the war he fought in Jackson's army, -and afterwards under Hood, where he rose to be a colonel. When -Lee laid down his arms my uncle returned to his plantation, where -he remained for three or four years. About 1869 or 1870 he came -back to Europe and took a small estate in Sussex, near Horsham. -He had made a very considerable fortune in the States, and his -reason for leaving them was his aversion to the negroes, and his -dislike of the Republican policy in extending the franchise to -them. He was a singular man, fierce and quick-tempered, very -foul-mouthed when he was angry, and of a most retiring -disposition. During all the years that he lived at Horsham, I -doubt if ever he set foot in the town. He had a garden and two or -three fields round his house, and there he would take his -exercise, though very often for weeks on end he would never leave -his room. He drank a great deal of brandy and smoked very -heavily, but he would see no society and did not want any -friends, not even his own brother. - -"He didn't mind me; in fact, he took a fancy to me, for at the -time when he saw me first I was a youngster of twelve or so. This -would be in the year 1878, after he had been eight or nine years -in England. He begged my father to let me live with him and he -was very kind to me in his way. When he was sober he used to be -fond of playing backgammon and draughts with me, and he would -make me his representative both with the servants and with the -tradespeople, so that by the time that I was sixteen I was quite -master of the house. I kept all the keys and could go where I -liked and do what I liked, so long as I did not disturb him in -his privacy. There was one singular exception, however, for he -had a single room, a lumber-room up among the attics, which was -invariably locked, and which he would never permit either me or -anyone else to enter. With a boy's curiosity I have peeped -through the keyhole, but I was never able to see more than such a -collection of old trunks and bundles as would be expected in such -a room. - -"One day--it was in March, 1883--a letter with a foreign stamp -lay upon the table in front of the colonel's plate. It was not a -common thing for him to receive letters, for his bills were all -paid in ready money, and he had no friends of any sort. 'From -India!' said he as he took it up, 'Pondicherry postmark! What can -this be?' Opening it hurriedly, out there jumped five little -dried orange pips, which pattered down upon his plate. I began to -laugh at this, but the laugh was struck from my lips at the sight -of his face. His lip had fallen, his eyes were protruding, his -skin the colour of putty, and he glared at the envelope which he -still held in his trembling hand, 'K. K. K.!' he shrieked, and -then, 'My God, my God, my sins have overtaken me!' - -"'What is it, uncle?' I cried. - -"'Death,' said he, and rising from the table he retired to his -room, leaving me palpitating with horror. I took up the envelope -and saw scrawled in red ink upon the inner flap, just above the -gum, the letter K three times repeated. There was nothing else -save the five dried pips. What could be the reason of his -overpowering terror? I left the breakfast-table, and as I -ascended the stair I met him coming down with an old rusty key, -which must have belonged to the attic, in one hand, and a small -brass box, like a cashbox, in the other. - -"'They may do what they like, but I'll checkmate them still,' -said he with an oath. 'Tell Mary that I shall want a fire in my -room to-day, and send down to Fordham, the Horsham lawyer.' - -"I did as he ordered, and when the lawyer arrived I was asked to -step up to the room. The fire was burning brightly, and in the -grate there was a mass of black, fluffy ashes, as of burned -paper, while the brass box stood open and empty beside it. As I -glanced at the box I noticed, with a start, that upon the lid was -printed the treble K which I had read in the morning upon the -envelope. - -"'I wish you, John,' said my uncle, 'to witness my will. I leave -my estate, with all its advantages and all its disadvantages, to -my brother, your father, whence it will, no doubt, descend to -you. If you can enjoy it in peace, well and good! If you find you -cannot, take my advice, my boy, and leave it to your deadliest -enemy. I am sorry to give you such a two-edged thing, but I can't -say what turn things are going to take. Kindly sign the paper -where Mr. Fordham shows you.' - -"I signed the paper as directed, and the lawyer took it away with -him. The singular incident made, as you may think, the deepest -impression upon me, and I pondered over it and turned it every -way in my mind without being able to make anything of it. Yet I -could not shake off the vague feeling of dread which it left -behind, though the sensation grew less keen as the weeks passed -and nothing happened to disturb the usual routine of our lives. I -could see a change in my uncle, however. He drank more than ever, -and he was less inclined for any sort of society. Most of his -time he would spend in his room, with the door locked upon the -inside, but sometimes he would emerge in a sort of drunken frenzy -and would burst out of the house and tear about the garden with a -revolver in his hand, screaming out that he was afraid of no man, -and that he was not to be cooped up, like a sheep in a pen, by -man or devil. When these hot fits were over, however, he would -rush tumultuously in at the door and lock and bar it behind him, -like a man who can brazen it out no longer against the terror -which lies at the roots of his soul. At such times I have seen -his face, even on a cold day, glisten with moisture, as though it -were new raised from a basin. - -"Well, to come to an end of the matter, Mr. Holmes, and not to -abuse your patience, there came a night when he made one of those -drunken sallies from which he never came back. We found him, when -we went to search for him, face downward in a little -green-scummed pool, which lay at the foot of the garden. There -was no sign of any violence, and the water was but two feet deep, -so that the jury, having regard to his known eccentricity, -brought in a verdict of 'suicide.' But I, who knew how he winced -from the very thought of death, had much ado to persuade myself -that he had gone out of his way to meet it. The matter passed, -however, and my father entered into possession of the estate, and -of some 14,000 pounds, which lay to his credit at the bank." - -"One moment," Holmes interposed, "your statement is, I foresee, -one of the most remarkable to which I have ever listened. Let me -have the date of the reception by your uncle of the letter, and -the date of his supposed suicide." - -"The letter arrived on March 10, 1883. His death was seven weeks -later, upon the night of May 2nd." - -"Thank you. Pray proceed." - -"When my father took over the Horsham property, he, at my -request, made a careful examination of the attic, which had been -always locked up. We found the brass box there, although its -contents had been destroyed. On the inside of the cover was a -paper label, with the initials of K. K. K. repeated upon it, and -'Letters, memoranda, receipts, and a register' written beneath. -These, we presume, indicated the nature of the papers which had -been destroyed by Colonel Openshaw. For the rest, there was -nothing of much importance in the attic save a great many -scattered papers and note-books bearing upon my uncle's life in -America. Some of them were of the war time and showed that he had -done his duty well and had borne the repute of a brave soldier. -Others were of a date during the reconstruction of the Southern -states, and were mostly concerned with politics, for he had -evidently taken a strong part in opposing the carpet-bag -politicians who had been sent down from the North. - -"Well, it was the beginning of '84 when my father came to live at -Horsham, and all went as well as possible with us until the -January of '85. On the fourth day after the new year I heard my -father give a sharp cry of surprise as we sat together at the -breakfast-table. There he was, sitting with a newly opened -envelope in one hand and five dried orange pips in the -outstretched palm of the other one. He had always laughed at what -he called my cock-and-bull story about the colonel, but he looked -very scared and puzzled now that the same thing had come upon -himself. - -"'Why, what on earth does this mean, John?' he stammered. - -"My heart had turned to lead. 'It is K. K. K.,' said I. - -"He looked inside the envelope. 'So it is,' he cried. 'Here are -the very letters. But what is this written above them?' - -"'Put the papers on the sundial,' I read, peeping over his -shoulder. - -"'What papers? What sundial?' he asked. - -"'The sundial in the garden. There is no other,' said I; 'but the -papers must be those that are destroyed.' - -"'Pooh!' said he, gripping hard at his courage. 'We are in a -civilised land here, and we can't have tomfoolery of this kind. -Where does the thing come from?' - -"'From Dundee,' I answered, glancing at the postmark. - -"'Some preposterous practical joke,' said he. 'What have I to do -with sundials and papers? I shall take no notice of such -nonsense.' - -"'I should certainly speak to the police,' I said. - -"'And be laughed at for my pains. Nothing of the sort.' - -"'Then let me do so?' - -"'No, I forbid you. I won't have a fuss made about such -nonsense.' - -"It was in vain to argue with him, for he was a very obstinate -man. I went about, however, with a heart which was full of -forebodings. - -"On the third day after the coming of the letter my father went -from home to visit an old friend of his, Major Freebody, who is -in command of one of the forts upon Portsdown Hill. I was glad -that he should go, for it seemed to me that he was farther from -danger when he was away from home. In that, however, I was in -error. Upon the second day of his absence I received a telegram -from the major, imploring me to come at once. My father had -fallen over one of the deep chalk-pits which abound in the -neighbourhood, and was lying senseless, with a shattered skull. I -hurried to him, but he passed away without having ever recovered -his consciousness. He had, as it appears, been returning from -Fareham in the twilight, and as the country was unknown to him, -and the chalk-pit unfenced, the jury had no hesitation in -bringing in a verdict of 'death from accidental causes.' -Carefully as I examined every fact connected with his death, I -was unable to find anything which could suggest the idea of -murder. There were no signs of violence, no footmarks, no -robbery, no record of strangers having been seen upon the roads. -And yet I need not tell you that my mind was far from at ease, -and that I was well-nigh certain that some foul plot had been -woven round him. - -"In this sinister way I came into my inheritance. You will ask me -why I did not dispose of it? I answer, because I was well -convinced that our troubles were in some way dependent upon an -incident in my uncle's life, and that the danger would be as -pressing in one house as in another. - -"It was in January, '85, that my poor father met his end, and two -years and eight months have elapsed since then. During that time -I have lived happily at Horsham, and I had begun to hope that -this curse had passed away from the family, and that it had ended -with the last generation. I had begun to take comfort too soon, -however; yesterday morning the blow fell in the very shape in -which it had come upon my father." - -The young man took from his waistcoat a crumpled envelope, and -turning to the table he shook out upon it five little dried -orange pips. - -"This is the envelope," he continued. "The postmark is -London--eastern division. Within are the very words which were -upon my father's last message: 'K. K. K.'; and then 'Put the -papers on the sundial.'" - -"What have you done?" asked Holmes. - -"Nothing." - -"Nothing?" - -"To tell the truth"--he sank his face into his thin, white -hands--"I have felt helpless. I have felt like one of those poor -rabbits when the snake is writhing towards it. I seem to be in -the grasp of some resistless, inexorable evil, which no foresight -and no precautions can guard against." - -"Tut! tut!" cried Sherlock Holmes. "You must act, man, or you are -lost. Nothing but energy can save you. This is no time for -despair." - -"I have seen the police." - -"Ah!" - -"But they listened to my story with a smile. I am convinced that -the inspector has formed the opinion that the letters are all -practical jokes, and that the deaths of my relations were really -accidents, as the jury stated, and were not to be connected with -the warnings." - -Holmes shook his clenched hands in the air. "Incredible -imbecility!" he cried. - -"They have, however, allowed me a policeman, who may remain in -the house with me." - -"Has he come with you to-night?" - -"No. His orders were to stay in the house." - -Again Holmes raved in the air. - -"Why did you come to me," he cried, "and, above all, why did you -not come at once?" - -"I did not know. It was only to-day that I spoke to Major -Prendergast about my troubles and was advised by him to come to -you." - -"It is really two days since you had the letter. We should have -acted before this. You have no further evidence, I suppose, than -that which you have placed before us--no suggestive detail which -might help us?" - -"There is one thing," said John Openshaw. He rummaged in his coat -pocket, and, drawing out a piece of discoloured, blue-tinted -paper, he laid it out upon the table. "I have some remembrance," -said he, "that on the day when my uncle burned the papers I -observed that the small, unburned margins which lay amid the -ashes were of this particular colour. I found this single sheet -upon the floor of his room, and I am inclined to think that it -may be one of the papers which has, perhaps, fluttered out from -among the others, and in that way has escaped destruction. Beyond -the mention of pips, I do not see that it helps us much. I think -myself that it is a page from some private diary. The writing is -undoubtedly my uncle's." - -Holmes moved the lamp, and we both bent over the sheet of paper, -which showed by its ragged edge that it had indeed been torn from -a book. It was headed, "March, 1869," and beneath were the -following enigmatical notices: - -"4th. Hudson came. Same old platform. - -"7th. Set the pips on McCauley, Paramore, and - John Swain, of St. Augustine. - -"9th. McCauley cleared. - -"10th. John Swain cleared. - -"12th. Visited Paramore. All well." - -"Thank you!" said Holmes, folding up the paper and returning it -to our visitor. "And now you must on no account lose another -instant. We cannot spare time even to discuss what you have told -me. You must get home instantly and act." - -"What shall I do?" - -"There is but one thing to do. It must be done at once. You must -put this piece of paper which you have shown us into the brass -box which you have described. You must also put in a note to say -that all the other papers were burned by your uncle, and that -this is the only one which remains. You must assert that in such -words as will carry conviction with them. Having done this, you -must at once put the box out upon the sundial, as directed. Do -you understand?" - -"Entirely." - -"Do not think of revenge, or anything of the sort, at present. I -think that we may gain that by means of the law; but we have our -web to weave, while theirs is already woven. The first -consideration is to remove the pressing danger which threatens -you. The second is to clear up the mystery and to punish the -guilty parties." - -"I thank you," said the young man, rising and pulling on his -overcoat. "You have given me fresh life and hope. I shall -certainly do as you advise." - -"Do not lose an instant. And, above all, take care of yourself in -the meanwhile, for I do not think that there can be a doubt that -you are threatened by a very real and imminent danger. How do you -go back?" - -"By train from Waterloo." - -"It is not yet nine. The streets will be crowded, so I trust that -you may be in safety. And yet you cannot guard yourself too -closely." - -"I am armed." - -"That is well. To-morrow I shall set to work upon your case." - -"I shall see you at Horsham, then?" - -"No, your secret lies in London. It is there that I shall seek -it." - -"Then I shall call upon you in a day, or in two days, with news -as to the box and the papers. I shall take your advice in every -particular." He shook hands with us and took his leave. Outside -the wind still screamed and the rain splashed and pattered -against the windows. This strange, wild story seemed to have come -to us from amid the mad elements--blown in upon us like a sheet -of sea-weed in a gale--and now to have been reabsorbed by them -once more. - -Sherlock Holmes sat for some time in silence, with his head sunk -forward and his eyes bent upon the red glow of the fire. Then he -lit his pipe, and leaning back in his chair he watched the blue -smoke-rings as they chased each other up to the ceiling. - -"I think, Watson," he remarked at last, "that of all our cases we -have had none more fantastic than this." - -"Save, perhaps, the Sign of Four." - -"Well, yes. Save, perhaps, that. And yet this John Openshaw seems -to me to be walking amid even greater perils than did the -Sholtos." - -"But have you," I asked, "formed any definite conception as to -what these perils are?" - -"There can be no question as to their nature," he answered. - -"Then what are they? Who is this K. K. K., and why does he pursue -this unhappy family?" - -Sherlock Holmes closed his eyes and placed his elbows upon the -arms of his chair, with his finger-tips together. "The ideal -reasoner," he remarked, "would, when he had once been shown a -single fact in all its bearings, deduce from it not only all the -chain of events which led up to it but also all the results which -would follow from it. As Cuvier could correctly describe a whole -animal by the contemplation of a single bone, so the observer who -has thoroughly understood one link in a series of incidents -should be able to accurately state all the other ones, both -before and after. We have not yet grasped the results which the -reason alone can attain to. Problems may be solved in the study -which have baffled all those who have sought a solution by the -aid of their senses. To carry the art, however, to its highest -pitch, it is necessary that the reasoner should be able to -utilise all the facts which have come to his knowledge; and this -in itself implies, as you will readily see, a possession of all -knowledge, which, even in these days of free education and -encyclopaedias, is a somewhat rare accomplishment. It is not so -impossible, however, that a man should possess all knowledge -which is likely to be useful to him in his work, and this I have -endeavoured in my case to do. If I remember rightly, you on one -occasion, in the early days of our friendship, defined my limits -in a very precise fashion." - -"Yes," I answered, laughing. "It was a singular document. -Philosophy, astronomy, and politics were marked at zero, I -remember. Botany variable, geology profound as regards the -mud-stains from any region within fifty miles of town, chemistry -eccentric, anatomy unsystematic, sensational literature and crime -records unique, violin-player, boxer, swordsman, lawyer, and -self-poisoner by cocaine and tobacco. Those, I think, were the -main points of my analysis." - -Holmes grinned at the last item. "Well," he said, "I say now, as -I said then, that a man should keep his little brain-attic -stocked with all the furniture that he is likely to use, and the -rest he can put away in the lumber-room of his library, where he -can get it if he wants it. Now, for such a case as the one which -has been submitted to us to-night, we need certainly to muster -all our resources. Kindly hand me down the letter K of the -'American Encyclopaedia' which stands upon the shelf beside you. -Thank you. Now let us consider the situation and see what may be -deduced from it. In the first place, we may start with a strong -presumption that Colonel Openshaw had some very strong reason for -leaving America. Men at his time of life do not change all their -habits and exchange willingly the charming climate of Florida for -the lonely life of an English provincial town. His extreme love -of solitude in England suggests the idea that he was in fear of -someone or something, so we may assume as a working hypothesis -that it was fear of someone or something which drove him from -America. As to what it was he feared, we can only deduce that by -considering the formidable letters which were received by himself -and his successors. Did you remark the postmarks of those -letters?" - -"The first was from Pondicherry, the second from Dundee, and the -third from London." - -"From East London. What do you deduce from that?" - -"They are all seaports. That the writer was on board of a ship." - -"Excellent. We have already a clue. There can be no doubt that -the probability--the strong probability--is that the writer was -on board of a ship. And now let us consider another point. In the -case of Pondicherry, seven weeks elapsed between the threat and -its fulfilment, in Dundee it was only some three or four days. -Does that suggest anything?" - -"A greater distance to travel." - -"But the letter had also a greater distance to come." - -"Then I do not see the point." - -"There is at least a presumption that the vessel in which the man -or men are is a sailing-ship. It looks as if they always send -their singular warning or token before them when starting upon -their mission. You see how quickly the deed followed the sign -when it came from Dundee. If they had come from Pondicherry in a -steamer they would have arrived almost as soon as their letter. -But, as a matter of fact, seven weeks elapsed. I think that those -seven weeks represented the difference between the mail-boat which -brought the letter and the sailing vessel which brought the -writer." - -"It is possible." - -"More than that. It is probable. And now you see the deadly -urgency of this new case, and why I urged young Openshaw to -caution. The blow has always fallen at the end of the time which -it would take the senders to travel the distance. But this one -comes from London, and therefore we cannot count upon delay." - -"Good God!" I cried. "What can it mean, this relentless -persecution?" - -"The papers which Openshaw carried are obviously of vital -importance to the person or persons in the sailing-ship. I think -that it is quite clear that there must be more than one of them. -A single man could not have carried out two deaths in such a way -as to deceive a coroner's jury. There must have been several in -it, and they must have been men of resource and determination. -Their papers they mean to have, be the holder of them who it may. -In this way you see K. K. K. ceases to be the initials of an -individual and becomes the badge of a society." - -"But of what society?" - -"Have you never--" said Sherlock Holmes, bending forward and -sinking his voice--"have you never heard of the Ku Klux Klan?" - -"I never have." - -Holmes turned over the leaves of the book upon his knee. "Here it -is," said he presently: - -"'Ku Klux Klan. A name derived from the fanciful resemblance to -the sound produced by cocking a rifle. This terrible secret -society was formed by some ex-Confederate soldiers in the -Southern states after the Civil War, and it rapidly formed local -branches in different parts of the country, notably in Tennessee, -Louisiana, the Carolinas, Georgia, and Florida. Its power was -used for political purposes, principally for the terrorising of -the negro voters and the murdering and driving from the country -of those who were opposed to its views. Its outrages were usually -preceded by a warning sent to the marked man in some fantastic -but generally recognised shape--a sprig of oak-leaves in some -parts, melon seeds or orange pips in others. On receiving this -the victim might either openly abjure his former ways, or might -fly from the country. If he braved the matter out, death would -unfailingly come upon him, and usually in some strange and -unforeseen manner. So perfect was the organisation of the -society, and so systematic its methods, that there is hardly a -case upon record where any man succeeded in braving it with -impunity, or in which any of its outrages were traced home to the -perpetrators. For some years the organisation flourished in spite -of the efforts of the United States government and of the better -classes of the community in the South. Eventually, in the year -1869, the movement rather suddenly collapsed, although there have -been sporadic outbreaks of the same sort since that date.' - -"You will observe," said Holmes, laying down the volume, "that -the sudden breaking up of the society was coincident with the -disappearance of Openshaw from America with their papers. It may -well have been cause and effect. It is no wonder that he and his -family have some of the more implacable spirits upon their track. -You can understand that this register and diary may implicate -some of the first men in the South, and that there may be many -who will not sleep easy at night until it is recovered." - -"Then the page we have seen--" - -"Is such as we might expect. It ran, if I remember right, 'sent -the pips to A, B, and C'--that is, sent the society's warning to -them. Then there are successive entries that A and B cleared, or -left the country, and finally that C was visited, with, I fear, a -sinister result for C. Well, I think, Doctor, that we may let -some light into this dark place, and I believe that the only -chance young Openshaw has in the meantime is to do what I have -told him. There is nothing more to be said or to be done -to-night, so hand me over my violin and let us try to forget for -half an hour the miserable weather and the still more miserable -ways of our fellow-men." - - -It had cleared in the morning, and the sun was shining with a -subdued brightness through the dim veil which hangs over the -great city. Sherlock Holmes was already at breakfast when I came -down. - -"You will excuse me for not waiting for you," said he; "I have, I -foresee, a very busy day before me in looking into this case of -young Openshaw's." - -"What steps will you take?" I asked. - -"It will very much depend upon the results of my first inquiries. -I may have to go down to Horsham, after all." - -"You will not go there first?" - -"No, I shall commence with the City. Just ring the bell and the -maid will bring up your coffee." - -As I waited, I lifted the unopened newspaper from the table and -glanced my eye over it. It rested upon a heading which sent a -chill to my heart. - -"Holmes," I cried, "you are too late." - -"Ah!" said he, laying down his cup, "I feared as much. How was it -done?" He spoke calmly, but I could see that he was deeply moved. - -"My eye caught the name of Openshaw, and the heading 'Tragedy -Near Waterloo Bridge.' Here is the account: - -"Between nine and ten last night Police-Constable Cook, of the H -Division, on duty near Waterloo Bridge, heard a cry for help and -a splash in the water. The night, however, was extremely dark and -stormy, so that, in spite of the help of several passers-by, it -was quite impossible to effect a rescue. The alarm, however, was -given, and, by the aid of the water-police, the body was -eventually recovered. It proved to be that of a young gentleman -whose name, as it appears from an envelope which was found in his -pocket, was John Openshaw, and whose residence is near Horsham. -It is conjectured that he may have been hurrying down to catch -the last train from Waterloo Station, and that in his haste and -the extreme darkness he missed his path and walked over the edge -of one of the small landing-places for river steamboats. The body -exhibited no traces of violence, and there can be no doubt that -the deceased had been the victim of an unfortunate accident, -which should have the effect of calling the attention of the -authorities to the condition of the riverside landing-stages." - -We sat in silence for some minutes, Holmes more depressed and -shaken than I had ever seen him. - -"That hurts my pride, Watson," he said at last. "It is a petty -feeling, no doubt, but it hurts my pride. It becomes a personal -matter with me now, and, if God sends me health, I shall set my -hand upon this gang. That he should come to me for help, and that -I should send him away to his death--!" He sprang from his chair -and paced about the room in uncontrollable agitation, with a -flush upon his sallow cheeks and a nervous clasping and -unclasping of his long thin hands. - -"They must be cunning devils," he exclaimed at last. "How could -they have decoyed him down there? The Embankment is not on the -direct line to the station. The bridge, no doubt, was too -crowded, even on such a night, for their purpose. Well, Watson, -we shall see who will win in the long run. I am going out now!" - -"To the police?" - -"No; I shall be my own police. When I have spun the web they may -take the flies, but not before." - -All day I was engaged in my professional work, and it was late in -the evening before I returned to Baker Street. Sherlock Holmes -had not come back yet. It was nearly ten o'clock before he -entered, looking pale and worn. He walked up to the sideboard, -and tearing a piece from the loaf he devoured it voraciously, -washing it down with a long draught of water. - -"You are hungry," I remarked. - -"Starving. It had escaped my memory. I have had nothing since -breakfast." - -"Nothing?" - -"Not a bite. I had no time to think of it." - -"And how have you succeeded?" - -"Well." - -"You have a clue?" - -"I have them in the hollow of my hand. Young Openshaw shall not -long remain unavenged. Why, Watson, let us put their own devilish -trade-mark upon them. It is well thought of!" - -"What do you mean?" - -He took an orange from the cupboard, and tearing it to pieces he -squeezed out the pips upon the table. Of these he took five and -thrust them into an envelope. On the inside of the flap he wrote -"S. H. for J. O." Then he sealed it and addressed it to "Captain -James Calhoun, Barque 'Lone Star,' Savannah, Georgia." - -"That will await him when he enters port," said he, chuckling. -"It may give him a sleepless night. He will find it as sure a -precursor of his fate as Openshaw did before him." - -"And who is this Captain Calhoun?" - -"The leader of the gang. I shall have the others, but he first." - -"How did you trace it, then?" - -He took a large sheet of paper from his pocket, all covered with -dates and names. - -"I have spent the whole day," said he, "over Lloyd's registers -and files of the old papers, following the future career of every -vessel which touched at Pondicherry in January and February in -'83. There were thirty-six ships of fair tonnage which were -reported there during those months. Of these, one, the 'Lone Star,' -instantly attracted my attention, since, although it was reported -as having cleared from London, the name is that which is given to -one of the states of the Union." - -"Texas, I think." - -"I was not and am not sure which; but I knew that the ship must -have an American origin." - -"What then?" - -"I searched the Dundee records, and when I found that the barque -'Lone Star' was there in January, '85, my suspicion became a -certainty. I then inquired as to the vessels which lay at present -in the port of London." - -"Yes?" - -"The 'Lone Star' had arrived here last week. I went down to the -Albert Dock and found that she had been taken down the river by -the early tide this morning, homeward bound to Savannah. I wired -to Gravesend and learned that she had passed some time ago, and -as the wind is easterly I have no doubt that she is now past the -Goodwins and not very far from the Isle of Wight." - -"What will you do, then?" - -"Oh, I have my hand upon him. He and the two mates, are as I -learn, the only native-born Americans in the ship. The others are -Finns and Germans. I know, also, that they were all three away -from the ship last night. I had it from the stevedore who has -been loading their cargo. By the time that their sailing-ship -reaches Savannah the mail-boat will have carried this letter, and -the cable will have informed the police of Savannah that these -three gentlemen are badly wanted here upon a charge of murder." - -There is ever a flaw, however, in the best laid of human plans, -and the murderers of John Openshaw were never to receive the -orange pips which would show them that another, as cunning and as -resolute as themselves, was upon their track. Very long and very -severe were the equinoctial gales that year. We waited long for -news of the "Lone Star" of Savannah, but none ever reached us. We -did at last hear that somewhere far out in the Atlantic a -shattered stern-post of a boat was seen swinging in the trough -of a wave, with the letters "L. S." carved upon it, and that is -all which we shall ever know of the fate of the "Lone Star." - - - -ADVENTURE VI. THE MAN WITH THE TWISTED LIP - -Isa Whitney, brother of the late Elias Whitney, D.D., Principal -of the Theological College of St. George's, was much addicted to -opium. The habit grew upon him, as I understand, from some -foolish freak when he was at college; for having read De -Quincey's description of his dreams and sensations, he had -drenched his tobacco with laudanum in an attempt to produce the -same effects. He found, as so many more have done, that the -practice is easier to attain than to get rid of, and for many -years he continued to be a slave to the drug, an object of -mingled horror and pity to his friends and relatives. I can see -him now, with yellow, pasty face, drooping lids, and pin-point -pupils, all huddled in a chair, the wreck and ruin of a noble -man. - -One night--it was in June, '89--there came a ring to my bell, -about the hour when a man gives his first yawn and glances at the -clock. I sat up in my chair, and my wife laid her needle-work -down in her lap and made a little face of disappointment. - -"A patient!" said she. "You'll have to go out." - -I groaned, for I was newly come back from a weary day. - -We heard the door open, a few hurried words, and then quick steps -upon the linoleum. Our own door flew open, and a lady, clad in -some dark-coloured stuff, with a black veil, entered the room. - -"You will excuse my calling so late," she began, and then, -suddenly losing her self-control, she ran forward, threw her arms -about my wife's neck, and sobbed upon her shoulder. "Oh, I'm in -such trouble!" she cried; "I do so want a little help." - -"Why," said my wife, pulling up her veil, "it is Kate Whitney. -How you startled me, Kate! I had not an idea who you were when -you came in." - -"I didn't know what to do, so I came straight to you." That was -always the way. Folk who were in grief came to my wife like birds -to a light-house. - -"It was very sweet of you to come. Now, you must have some wine -and water, and sit here comfortably and tell us all about it. Or -should you rather that I sent James off to bed?" - -"Oh, no, no! I want the doctor's advice and help, too. It's about -Isa. He has not been home for two days. I am so frightened about -him!" - -It was not the first time that she had spoken to us of her -husband's trouble, to me as a doctor, to my wife as an old friend -and school companion. We soothed and comforted her by such words -as we could find. Did she know where her husband was? Was it -possible that we could bring him back to her? - -It seems that it was. She had the surest information that of late -he had, when the fit was on him, made use of an opium den in the -farthest east of the City. Hitherto his orgies had always been -confined to one day, and he had come back, twitching and -shattered, in the evening. But now the spell had been upon him -eight-and-forty hours, and he lay there, doubtless among the -dregs of the docks, breathing in the poison or sleeping off the -effects. There he was to be found, she was sure of it, at the Bar -of Gold, in Upper Swandam Lane. But what was she to do? How could -she, a young and timid woman, make her way into such a place and -pluck her husband out from among the ruffians who surrounded him? - -There was the case, and of course there was but one way out of -it. Might I not escort her to this place? And then, as a second -thought, why should she come at all? I was Isa Whitney's medical -adviser, and as such I had influence over him. I could manage it -better if I were alone. I promised her on my word that I would -send him home in a cab within two hours if he were indeed at the -address which she had given me. And so in ten minutes I had left -my armchair and cheery sitting-room behind me, and was speeding -eastward in a hansom on a strange errand, as it seemed to me at -the time, though the future only could show how strange it was to -be. - -But there was no great difficulty in the first stage of my -adventure. Upper Swandam Lane is a vile alley lurking behind the -high wharves which line the north side of the river to the east -of London Bridge. Between a slop-shop and a gin-shop, approached -by a steep flight of steps leading down to a black gap like the -mouth of a cave, I found the den of which I was in search. -Ordering my cab to wait, I passed down the steps, worn hollow in -the centre by the ceaseless tread of drunken feet; and by the -light of a flickering oil-lamp above the door I found the latch -and made my way into a long, low room, thick and heavy with the -brown opium smoke, and terraced with wooden berths, like the -forecastle of an emigrant ship. - -Through the gloom one could dimly catch a glimpse of bodies lying -in strange fantastic poses, bowed shoulders, bent knees, heads -thrown back, and chins pointing upward, with here and there a -dark, lack-lustre eye turned upon the newcomer. Out of the black -shadows there glimmered little red circles of light, now bright, -now faint, as the burning poison waxed or waned in the bowls of -the metal pipes. The most lay silent, but some muttered to -themselves, and others talked together in a strange, low, -monotonous voice, their conversation coming in gushes, and then -suddenly tailing off into silence, each mumbling out his own -thoughts and paying little heed to the words of his neighbour. At -the farther end was a small brazier of burning charcoal, beside -which on a three-legged wooden stool there sat a tall, thin old -man, with his jaw resting upon his two fists, and his elbows upon -his knees, staring into the fire. - -As I entered, a sallow Malay attendant had hurried up with a pipe -for me and a supply of the drug, beckoning me to an empty berth. - -"Thank you. I have not come to stay," said I. "There is a friend -of mine here, Mr. Isa Whitney, and I wish to speak with him." - -There was a movement and an exclamation from my right, and -peering through the gloom, I saw Whitney, pale, haggard, and -unkempt, staring out at me. - -"My God! It's Watson," said he. He was in a pitiable state of -reaction, with every nerve in a twitter. "I say, Watson, what -o'clock is it?" - -"Nearly eleven." - -"Of what day?" - -"Of Friday, June 19th." - -"Good heavens! I thought it was Wednesday. It is Wednesday. What -d'you want to frighten a chap for?" He sank his face onto his -arms and began to sob in a high treble key. - -"I tell you that it is Friday, man. Your wife has been waiting -this two days for you. You should be ashamed of yourself!" - -"So I am. But you've got mixed, Watson, for I have only been here -a few hours, three pipes, four pipes--I forget how many. But I'll -go home with you. I wouldn't frighten Kate--poor little Kate. -Give me your hand! Have you a cab?" - -"Yes, I have one waiting." - -"Then I shall go in it. But I must owe something. Find what I -owe, Watson. I am all off colour. I can do nothing for myself." - -I walked down the narrow passage between the double row of -sleepers, holding my breath to keep out the vile, stupefying -fumes of the drug, and looking about for the manager. As I passed -the tall man who sat by the brazier I felt a sudden pluck at my -skirt, and a low voice whispered, "Walk past me, and then look -back at me." The words fell quite distinctly upon my ear. I -glanced down. They could only have come from the old man at my -side, and yet he sat now as absorbed as ever, very thin, very -wrinkled, bent with age, an opium pipe dangling down from between -his knees, as though it had dropped in sheer lassitude from his -fingers. I took two steps forward and looked back. It took all my -self-control to prevent me from breaking out into a cry of -astonishment. He had turned his back so that none could see him -but I. His form had filled out, his wrinkles were gone, the dull -eyes had regained their fire, and there, sitting by the fire and -grinning at my surprise, was none other than Sherlock Holmes. He -made a slight motion to me to approach him, and instantly, as he -turned his face half round to the company once more, subsided -into a doddering, loose-lipped senility. - -"Holmes!" I whispered, "what on earth are you doing in this den?" - -"As low as you can," he answered; "I have excellent ears. If you -would have the great kindness to get rid of that sottish friend -of yours I should be exceedingly glad to have a little talk with -you." - -"I have a cab outside." - -"Then pray send him home in it. You may safely trust him, for he -appears to be too limp to get into any mischief. I should -recommend you also to send a note by the cabman to your wife to -say that you have thrown in your lot with me. If you will wait -outside, I shall be with you in five minutes." - -It was difficult to refuse any of Sherlock Holmes' requests, for -they were always so exceedingly definite, and put forward with -such a quiet air of mastery. I felt, however, that when Whitney -was once confined in the cab my mission was practically -accomplished; and for the rest, I could not wish anything better -than to be associated with my friend in one of those singular -adventures which were the normal condition of his existence. In a -few minutes I had written my note, paid Whitney's bill, led him -out to the cab, and seen him driven through the darkness. In a -very short time a decrepit figure had emerged from the opium den, -and I was walking down the street with Sherlock Holmes. For two -streets he shuffled along with a bent back and an uncertain foot. -Then, glancing quickly round, he straightened himself out and -burst into a hearty fit of laughter. - -"I suppose, Watson," said he, "that you imagine that I have added -opium-smoking to cocaine injections, and all the other little -weaknesses on which you have favoured me with your medical -views." - -"I was certainly surprised to find you there." - -"But not more so than I to find you." - -"I came to find a friend." - -"And I to find an enemy." - -"An enemy?" - -"Yes; one of my natural enemies, or, shall I say, my natural -prey. Briefly, Watson, I am in the midst of a very remarkable -inquiry, and I have hoped to find a clue in the incoherent -ramblings of these sots, as I have done before now. Had I been -recognised in that den my life would not have been worth an -hour's purchase; for I have used it before now for my own -purposes, and the rascally Lascar who runs it has sworn to have -vengeance upon me. There is a trap-door at the back of that -building, near the corner of Paul's Wharf, which could tell some -strange tales of what has passed through it upon the moonless -nights." - -"What! You do not mean bodies?" - -"Ay, bodies, Watson. We should be rich men if we had 1000 pounds -for every poor devil who has been done to death in that den. It -is the vilest murder-trap on the whole riverside, and I fear that -Neville St. Clair has entered it never to leave it more. But our -trap should be here." He put his two forefingers between his -teeth and whistled shrilly--a signal which was answered by a -similar whistle from the distance, followed shortly by the rattle -of wheels and the clink of horses' hoofs. - -"Now, Watson," said Holmes, as a tall dog-cart dashed up through -the gloom, throwing out two golden tunnels of yellow light from -its side lanterns. "You'll come with me, won't you?" - -"If I can be of use." - -"Oh, a trusty comrade is always of use; and a chronicler still -more so. My room at The Cedars is a double-bedded one." - -"The Cedars?" - -"Yes; that is Mr. St. Clair's house. I am staying there while I -conduct the inquiry." - -"Where is it, then?" - -"Near Lee, in Kent. We have a seven-mile drive before us." - -"But I am all in the dark." - -"Of course you are. You'll know all about it presently. Jump up -here. All right, John; we shall not need you. Here's half a -crown. Look out for me to-morrow, about eleven. Give her her -head. So long, then!" - -He flicked the horse with his whip, and we dashed away through -the endless succession of sombre and deserted streets, which -widened gradually, until we were flying across a broad -balustraded bridge, with the murky river flowing sluggishly -beneath us. Beyond lay another dull wilderness of bricks and -mortar, its silence broken only by the heavy, regular footfall of -the policeman, or the songs and shouts of some belated party of -revellers. A dull wrack was drifting slowly across the sky, and a -star or two twinkled dimly here and there through the rifts of -the clouds. Holmes drove in silence, with his head sunk upon his -breast, and the air of a man who is lost in thought, while I sat -beside him, curious to learn what this new quest might be which -seemed to tax his powers so sorely, and yet afraid to break in -upon the current of his thoughts. We had driven several miles, -and were beginning to get to the fringe of the belt of suburban -villas, when he shook himself, shrugged his shoulders, and lit up -his pipe with the air of a man who has satisfied himself that he -is acting for the best. - -"You have a grand gift of silence, Watson," said he. "It makes -you quite invaluable as a companion. 'Pon my word, it is a great -thing for me to have someone to talk to, for my own thoughts are -not over-pleasant. I was wondering what I should say to this dear -little woman to-night when she meets me at the door." - -"You forget that I know nothing about it." - -"I shall just have time to tell you the facts of the case before -we get to Lee. It seems absurdly simple, and yet, somehow I can -get nothing to go upon. There's plenty of thread, no doubt, but I -can't get the end of it into my hand. Now, I'll state the case -clearly and concisely to you, Watson, and maybe you can see a -spark where all is dark to me." - -"Proceed, then." - -"Some years ago--to be definite, in May, 1884--there came to Lee -a gentleman, Neville St. Clair by name, who appeared to have -plenty of money. He took a large villa, laid out the grounds very -nicely, and lived generally in good style. By degrees he made -friends in the neighbourhood, and in 1887 he married the daughter -of a local brewer, by whom he now has two children. He had no -occupation, but was interested in several companies and went into -town as a rule in the morning, returning by the 5:14 from Cannon -Street every night. Mr. St. Clair is now thirty-seven years of -age, is a man of temperate habits, a good husband, a very -affectionate father, and a man who is popular with all who know -him. I may add that his whole debts at the present moment, as far -as we have been able to ascertain, amount to 88 pounds 10s., while -he has 220 pounds standing to his credit in the Capital and -Counties Bank. There is no reason, therefore, to think that money -troubles have been weighing upon his mind. - -"Last Monday Mr. Neville St. Clair went into town rather earlier -than usual, remarking before he started that he had two important -commissions to perform, and that he would bring his little boy -home a box of bricks. Now, by the merest chance, his wife -received a telegram upon this same Monday, very shortly after his -departure, to the effect that a small parcel of considerable -value which she had been expecting was waiting for her at the -offices of the Aberdeen Shipping Company. Now, if you are well up -in your London, you will know that the office of the company is -in Fresno Street, which branches out of Upper Swandam Lane, where -you found me to-night. Mrs. St. Clair had her lunch, started for -the City, did some shopping, proceeded to the company's office, -got her packet, and found herself at exactly 4:35 walking through -Swandam Lane on her way back to the station. Have you followed me -so far?" - -"It is very clear." - -"If you remember, Monday was an exceedingly hot day, and Mrs. St. -Clair walked slowly, glancing about in the hope of seeing a cab, -as she did not like the neighbourhood in which she found herself. -While she was walking in this way down Swandam Lane, she suddenly -heard an ejaculation or cry, and was struck cold to see her -husband looking down at her and, as it seemed to her, beckoning -to her from a second-floor window. The window was open, and she -distinctly saw his face, which she describes as being terribly -agitated. He waved his hands frantically to her, and then -vanished from the window so suddenly that it seemed to her that -he had been plucked back by some irresistible force from behind. -One singular point which struck her quick feminine eye was that -although he wore some dark coat, such as he had started to town -in, he had on neither collar nor necktie. - -"Convinced that something was amiss with him, she rushed down the -steps--for the house was none other than the opium den in which -you found me to-night--and running through the front room she -attempted to ascend the stairs which led to the first floor. At -the foot of the stairs, however, she met this Lascar scoundrel of -whom I have spoken, who thrust her back and, aided by a Dane, who -acts as assistant there, pushed her out into the street. Filled -with the most maddening doubts and fears, she rushed down the -lane and, by rare good-fortune, met in Fresno Street a number of -constables with an inspector, all on their way to their beat. The -inspector and two men accompanied her back, and in spite of the -continued resistance of the proprietor, they made their way to -the room in which Mr. St. Clair had last been seen. There was no -sign of him there. In fact, in the whole of that floor there was -no one to be found save a crippled wretch of hideous aspect, who, -it seems, made his home there. Both he and the Lascar stoutly -swore that no one else had been in the front room during the -afternoon. So determined was their denial that the inspector was -staggered, and had almost come to believe that Mrs. St. Clair had -been deluded when, with a cry, she sprang at a small deal box -which lay upon the table and tore the lid from it. Out there fell -a cascade of children's bricks. It was the toy which he had -promised to bring home. - -"This discovery, and the evident confusion which the cripple -showed, made the inspector realise that the matter was serious. -The rooms were carefully examined, and results all pointed to an -abominable crime. The front room was plainly furnished as a -sitting-room and led into a small bedroom, which looked out upon -the back of one of the wharves. Between the wharf and the bedroom -window is a narrow strip, which is dry at low tide but is covered -at high tide with at least four and a half feet of water. The -bedroom window was a broad one and opened from below. On -examination traces of blood were to be seen upon the windowsill, -and several scattered drops were visible upon the wooden floor of -the bedroom. Thrust away behind a curtain in the front room were -all the clothes of Mr. Neville St. Clair, with the exception of -his coat. His boots, his socks, his hat, and his watch--all were -there. There were no signs of violence upon any of these -garments, and there were no other traces of Mr. Neville St. -Clair. Out of the window he must apparently have gone for no -other exit could be discovered, and the ominous bloodstains upon -the sill gave little promise that he could save himself by -swimming, for the tide was at its very highest at the moment of -the tragedy. - -"And now as to the villains who seemed to be immediately -implicated in the matter. The Lascar was known to be a man of the -vilest antecedents, but as, by Mrs. St. Clair's story, he was -known to have been at the foot of the stair within a very few -seconds of her husband's appearance at the window, he could -hardly have been more than an accessory to the crime. His defence -was one of absolute ignorance, and he protested that he had no -knowledge as to the doings of Hugh Boone, his lodger, and that he -could not account in any way for the presence of the missing -gentleman's clothes. - -"So much for the Lascar manager. Now for the sinister cripple who -lives upon the second floor of the opium den, and who was -certainly the last human being whose eyes rested upon Neville St. -Clair. His name is Hugh Boone, and his hideous face is one which -is familiar to every man who goes much to the City. He is a -professional beggar, though in order to avoid the police -regulations he pretends to a small trade in wax vestas. Some -little distance down Threadneedle Street, upon the left-hand -side, there is, as you may have remarked, a small angle in the -wall. Here it is that this creature takes his daily seat, -cross-legged with his tiny stock of matches on his lap, and as he -is a piteous spectacle a small rain of charity descends into the -greasy leather cap which lies upon the pavement beside him. I -have watched the fellow more than once before ever I thought of -making his professional acquaintance, and I have been surprised -at the harvest which he has reaped in a short time. His -appearance, you see, is so remarkable that no one can pass him -without observing him. A shock of orange hair, a pale face -disfigured by a horrible scar, which, by its contraction, has -turned up the outer edge of his upper lip, a bulldog chin, and a -pair of very penetrating dark eyes, which present a singular -contrast to the colour of his hair, all mark him out from amid -the common crowd of mendicants and so, too, does his wit, for he -is ever ready with a reply to any piece of chaff which may be -thrown at him by the passers-by. This is the man whom we now -learn to have been the lodger at the opium den, and to have been -the last man to see the gentleman of whom we are in quest." - -"But a cripple!" said I. "What could he have done single-handed -against a man in the prime of life?" - -"He is a cripple in the sense that he walks with a limp; but in -other respects he appears to be a powerful and well-nurtured man. -Surely your medical experience would tell you, Watson, that -weakness in one limb is often compensated for by exceptional -strength in the others." - -"Pray continue your narrative." - -"Mrs. St. Clair had fainted at the sight of the blood upon the -window, and she was escorted home in a cab by the police, as her -presence could be of no help to them in their investigations. -Inspector Barton, who had charge of the case, made a very careful -examination of the premises, but without finding anything which -threw any light upon the matter. One mistake had been made in not -arresting Boone instantly, as he was allowed some few minutes -during which he might have communicated with his friend the -Lascar, but this fault was soon remedied, and he was seized and -searched, without anything being found which could incriminate -him. There were, it is true, some blood-stains upon his right -shirt-sleeve, but he pointed to his ring-finger, which had been -cut near the nail, and explained that the bleeding came from -there, adding that he had been to the window not long before, and -that the stains which had been observed there came doubtless from -the same source. He denied strenuously having ever seen Mr. -Neville St. Clair and swore that the presence of the clothes in -his room was as much a mystery to him as to the police. As to -Mrs. St. Clair's assertion that she had actually seen her husband -at the window, he declared that she must have been either mad or -dreaming. He was removed, loudly protesting, to the -police-station, while the inspector remained upon the premises in -the hope that the ebbing tide might afford some fresh clue. - -"And it did, though they hardly found upon the mud-bank what they -had feared to find. It was Neville St. Clair's coat, and not -Neville St. Clair, which lay uncovered as the tide receded. And -what do you think they found in the pockets?" - -"I cannot imagine." - -"No, I don't think you would guess. Every pocket stuffed with -pennies and half-pennies--421 pennies and 270 half-pennies. It -was no wonder that it had not been swept away by the tide. But a -human body is a different matter. There is a fierce eddy between -the wharf and the house. It seemed likely enough that the -weighted coat had remained when the stripped body had been sucked -away into the river." - -"But I understand that all the other clothes were found in the -room. Would the body be dressed in a coat alone?" - -"No, sir, but the facts might be met speciously enough. Suppose -that this man Boone had thrust Neville St. Clair through the -window, there is no human eye which could have seen the deed. -What would he do then? It would of course instantly strike him -that he must get rid of the tell-tale garments. He would seize -the coat, then, and be in the act of throwing it out, when it -would occur to him that it would swim and not sink. He has little -time, for he has heard the scuffle downstairs when the wife tried -to force her way up, and perhaps he has already heard from his -Lascar confederate that the police are hurrying up the street. -There is not an instant to be lost. He rushes to some secret -hoard, where he has accumulated the fruits of his beggary, and he -stuffs all the coins upon which he can lay his hands into the -pockets to make sure of the coat's sinking. He throws it out, and -would have done the same with the other garments had not he heard -the rush of steps below, and only just had time to close the -window when the police appeared." - -"It certainly sounds feasible." - -"Well, we will take it as a working hypothesis for want of a -better. Boone, as I have told you, was arrested and taken to the -station, but it could not be shown that there had ever before -been anything against him. He had for years been known as a -professional beggar, but his life appeared to have been a very -quiet and innocent one. There the matter stands at present, and -the questions which have to be solved--what Neville St. Clair was -doing in the opium den, what happened to him when there, where is -he now, and what Hugh Boone had to do with his disappearance--are -all as far from a solution as ever. I confess that I cannot -recall any case within my experience which looked at the first -glance so simple and yet which presented such difficulties." - -While Sherlock Holmes had been detailing this singular series of -events, we had been whirling through the outskirts of the great -town until the last straggling houses had been left behind, and -we rattled along with a country hedge upon either side of us. -Just as he finished, however, we drove through two scattered -villages, where a few lights still glimmered in the windows. - -"We are on the outskirts of Lee," said my companion. "We have -touched on three English counties in our short drive, starting in -Middlesex, passing over an angle of Surrey, and ending in Kent. -See that light among the trees? That is The Cedars, and beside -that lamp sits a woman whose anxious ears have already, I have -little doubt, caught the clink of our horse's feet." - -"But why are you not conducting the case from Baker Street?" I -asked. - -"Because there are many inquiries which must be made out here. -Mrs. St. Clair has most kindly put two rooms at my disposal, and -you may rest assured that she will have nothing but a welcome for -my friend and colleague. I hate to meet her, Watson, when I have -no news of her husband. Here we are. Whoa, there, whoa!" - -We had pulled up in front of a large villa which stood within its -own grounds. A stable-boy had run out to the horse's head, and -springing down, I followed Holmes up the small, winding -gravel-drive which led to the house. As we approached, the door -flew open, and a little blonde woman stood in the opening, clad -in some sort of light mousseline de soie, with a touch of fluffy -pink chiffon at her neck and wrists. She stood with her figure -outlined against the flood of light, one hand upon the door, one -half-raised in her eagerness, her body slightly bent, her head -and face protruded, with eager eyes and parted lips, a standing -question. - -"Well?" she cried, "well?" And then, seeing that there were two -of us, she gave a cry of hope which sank into a groan as she saw -that my companion shook his head and shrugged his shoulders. - -"No good news?" - -"None." - -"No bad?" - -"No." - -"Thank God for that. But come in. You must be weary, for you have -had a long day." - -"This is my friend, Dr. Watson. He has been of most vital use to -me in several of my cases, and a lucky chance has made it -possible for me to bring him out and associate him with this -investigation." - -"I am delighted to see you," said she, pressing my hand warmly. -"You will, I am sure, forgive anything that may be wanting in our -arrangements, when you consider the blow which has come so -suddenly upon us." - -"My dear madam," said I, "I am an old campaigner, and if I were -not I can very well see that no apology is needed. If I can be of -any assistance, either to you or to my friend here, I shall be -indeed happy." - -"Now, Mr. Sherlock Holmes," said the lady as we entered a -well-lit dining-room, upon the table of which a cold supper had -been laid out, "I should very much like to ask you one or two -plain questions, to which I beg that you will give a plain -answer." - -"Certainly, madam." - -"Do not trouble about my feelings. I am not hysterical, nor given -to fainting. I simply wish to hear your real, real opinion." - -"Upon what point?" - -"In your heart of hearts, do you think that Neville is alive?" - -Sherlock Holmes seemed to be embarrassed by the question. -"Frankly, now!" she repeated, standing upon the rug and looking -keenly down at him as he leaned back in a basket-chair. - -"Frankly, then, madam, I do not." - -"You think that he is dead?" - -"I do." - -"Murdered?" - -"I don't say that. Perhaps." - -"And on what day did he meet his death?" - -"On Monday." - -"Then perhaps, Mr. Holmes, you will be good enough to explain how -it is that I have received a letter from him to-day." - -Sherlock Holmes sprang out of his chair as if he had been -galvanised. - -"What!" he roared. - -"Yes, to-day." She stood smiling, holding up a little slip of -paper in the air. - -"May I see it?" - -"Certainly." - -He snatched it from her in his eagerness, and smoothing it out -upon the table he drew over the lamp and examined it intently. I -had left my chair and was gazing at it over his shoulder. The -envelope was a very coarse one and was stamped with the Gravesend -postmark and with the date of that very day, or rather of the day -before, for it was considerably after midnight. - -"Coarse writing," murmured Holmes. "Surely this is not your -husband's writing, madam." - -"No, but the enclosure is." - -"I perceive also that whoever addressed the envelope had to go -and inquire as to the address." - -"How can you tell that?" - -"The name, you see, is in perfectly black ink, which has dried -itself. The rest is of the greyish colour, which shows that -blotting-paper has been used. If it had been written straight -off, and then blotted, none would be of a deep black shade. This -man has written the name, and there has then been a pause before -he wrote the address, which can only mean that he was not -familiar with it. It is, of course, a trifle, but there is -nothing so important as trifles. Let us now see the letter. Ha! -there has been an enclosure here!" - -"Yes, there was a ring. His signet-ring." - -"And you are sure that this is your husband's hand?" - -"One of his hands." - -"One?" - -"His hand when he wrote hurriedly. It is very unlike his usual -writing, and yet I know it well." - -"'Dearest do not be frightened. All will come well. There is a -huge error which it may take some little time to rectify. -Wait in patience.--NEVILLE.' Written in pencil upon the fly-leaf -of a book, octavo size, no water-mark. Hum! Posted to-day in -Gravesend by a man with a dirty thumb. Ha! And the flap has been -gummed, if I am not very much in error, by a person who had been -chewing tobacco. And you have no doubt that it is your husband's -hand, madam?" - -"None. Neville wrote those words." - -"And they were posted to-day at Gravesend. Well, Mrs. St. Clair, -the clouds lighten, though I should not venture to say that the -danger is over." - -"But he must be alive, Mr. Holmes." - -"Unless this is a clever forgery to put us on the wrong scent. -The ring, after all, proves nothing. It may have been taken from -him." - -"No, no; it is, it is his very own writing!" - -"Very well. It may, however, have been written on Monday and only -posted to-day." - -"That is possible." - -"If so, much may have happened between." - -"Oh, you must not discourage me, Mr. Holmes. I know that all is -well with him. There is so keen a sympathy between us that I -should know if evil came upon him. On the very day that I saw him -last he cut himself in the bedroom, and yet I in the dining-room -rushed upstairs instantly with the utmost certainty that -something had happened. Do you think that I would respond to such -a trifle and yet be ignorant of his death?" - -"I have seen too much not to know that the impression of a woman -may be more valuable than the conclusion of an analytical -reasoner. And in this letter you certainly have a very strong -piece of evidence to corroborate your view. But if your husband -is alive and able to write letters, why should he remain away -from you?" - -"I cannot imagine. It is unthinkable." - -"And on Monday he made no remarks before leaving you?" - -"No." - -"And you were surprised to see him in Swandam Lane?" - -"Very much so." - -"Was the window open?" - -"Yes." - -"Then he might have called to you?" - -"He might." - -"He only, as I understand, gave an inarticulate cry?" - -"Yes." - -"A call for help, you thought?" - -"Yes. He waved his hands." - -"But it might have been a cry of surprise. Astonishment at the -unexpected sight of you might cause him to throw up his hands?" - -"It is possible." - -"And you thought he was pulled back?" - -"He disappeared so suddenly." - -"He might have leaped back. You did not see anyone else in the -room?" - -"No, but this horrible man confessed to having been there, and -the Lascar was at the foot of the stairs." - -"Quite so. Your husband, as far as you could see, had his -ordinary clothes on?" - -"But without his collar or tie. I distinctly saw his bare -throat." - -"Had he ever spoken of Swandam Lane?" - -"Never." - -"Had he ever showed any signs of having taken opium?" - -"Never." - -"Thank you, Mrs. St. Clair. Those are the principal points about -which I wished to be absolutely clear. We shall now have a little -supper and then retire, for we may have a very busy day -to-morrow." - -A large and comfortable double-bedded room had been placed at our -disposal, and I was quickly between the sheets, for I was weary -after my night of adventure. Sherlock Holmes was a man, however, -who, when he had an unsolved problem upon his mind, would go for -days, and even for a week, without rest, turning it over, -rearranging his facts, looking at it from every point of view -until he had either fathomed it or convinced himself that his -data were insufficient. It was soon evident to me that he was now -preparing for an all-night sitting. He took off his coat and -waistcoat, put on a large blue dressing-gown, and then wandered -about the room collecting pillows from his bed and cushions from -the sofa and armchairs. With these he constructed a sort of -Eastern divan, upon which he perched himself cross-legged, with -an ounce of shag tobacco and a box of matches laid out in front -of him. In the dim light of the lamp I saw him sitting there, an -old briar pipe between his lips, his eyes fixed vacantly upon the -corner of the ceiling, the blue smoke curling up from him, -silent, motionless, with the light shining upon his strong-set -aquiline features. So he sat as I dropped off to sleep, and so he -sat when a sudden ejaculation caused me to wake up, and I found -the summer sun shining into the apartment. The pipe was still -between his lips, the smoke still curled upward, and the room was -full of a dense tobacco haze, but nothing remained of the heap of -shag which I had seen upon the previous night. - -"Awake, Watson?" he asked. - -"Yes." - -"Game for a morning drive?" - -"Certainly." - -"Then dress. No one is stirring yet, but I know where the -stable-boy sleeps, and we shall soon have the trap out." He -chuckled to himself as he spoke, his eyes twinkled, and he seemed -a different man to the sombre thinker of the previous night. - -As I dressed I glanced at my watch. It was no wonder that no one -was stirring. It was twenty-five minutes past four. I had hardly -finished when Holmes returned with the news that the boy was -putting in the horse. - -"I want to test a little theory of mine," said he, pulling on his -boots. "I think, Watson, that you are now standing in the -presence of one of the most absolute fools in Europe. I deserve -to be kicked from here to Charing Cross. But I think I have the -key of the affair now." - -"And where is it?" I asked, smiling. - -"In the bathroom," he answered. "Oh, yes, I am not joking," he -continued, seeing my look of incredulity. "I have just been -there, and I have taken it out, and I have got it in this -Gladstone bag. Come on, my boy, and we shall see whether it will -not fit the lock." - -We made our way downstairs as quietly as possible, and out into -the bright morning sunshine. In the road stood our horse and -trap, with the half-clad stable-boy waiting at the head. We both -sprang in, and away we dashed down the London Road. A few country -carts were stirring, bearing in vegetables to the metropolis, but -the lines of villas on either side were as silent and lifeless as -some city in a dream. - -"It has been in some points a singular case," said Holmes, -flicking the horse on into a gallop. "I confess that I have been -as blind as a mole, but it is better to learn wisdom late than -never to learn it at all." - -In town the earliest risers were just beginning to look sleepily -from their windows as we drove through the streets of the Surrey -side. Passing down the Waterloo Bridge Road we crossed over the -river, and dashing up Wellington Street wheeled sharply to the -right and found ourselves in Bow Street. Sherlock Holmes was well -known to the force, and the two constables at the door saluted -him. One of them held the horse's head while the other led us in. - -"Who is on duty?" asked Holmes. - -"Inspector Bradstreet, sir." - -"Ah, Bradstreet, how are you?" A tall, stout official had come -down the stone-flagged passage, in a peaked cap and frogged -jacket. "I wish to have a quiet word with you, Bradstreet." -"Certainly, Mr. Holmes. Step into my room here." It was a small, -office-like room, with a huge ledger upon the table, and a -telephone projecting from the wall. The inspector sat down at his -desk. - -"What can I do for you, Mr. Holmes?" - -"I called about that beggarman, Boone--the one who was charged -with being concerned in the disappearance of Mr. Neville St. -Clair, of Lee." - -"Yes. He was brought up and remanded for further inquiries." - -"So I heard. You have him here?" - -"In the cells." - -"Is he quiet?" - -"Oh, he gives no trouble. But he is a dirty scoundrel." - -"Dirty?" - -"Yes, it is all we can do to make him wash his hands, and his -face is as black as a tinker's. Well, when once his case has been -settled, he will have a regular prison bath; and I think, if you -saw him, you would agree with me that he needed it." - -"I should like to see him very much." - -"Would you? That is easily done. Come this way. You can leave -your bag." - -"No, I think that I'll take it." - -"Very good. Come this way, if you please." He led us down a -passage, opened a barred door, passed down a winding stair, and -brought us to a whitewashed corridor with a line of doors on each -side. - -"The third on the right is his," said the inspector. "Here it -is!" He quietly shot back a panel in the upper part of the door -and glanced through. - -"He is asleep," said he. "You can see him very well." - -We both put our eyes to the grating. The prisoner lay with his -face towards us, in a very deep sleep, breathing slowly and -heavily. He was a middle-sized man, coarsely clad as became his -calling, with a coloured shirt protruding through the rent in his -tattered coat. He was, as the inspector had said, extremely -dirty, but the grime which covered his face could not conceal its -repulsive ugliness. A broad wheal from an old scar ran right -across it from eye to chin, and by its contraction had turned up -one side of the upper lip, so that three teeth were exposed in a -perpetual snarl. A shock of very bright red hair grew low over -his eyes and forehead. - -"He's a beauty, isn't he?" said the inspector. - -"He certainly needs a wash," remarked Holmes. "I had an idea that -he might, and I took the liberty of bringing the tools with me." -He opened the Gladstone bag as he spoke, and took out, to my -astonishment, a very large bath-sponge. - -"He! he! You are a funny one," chuckled the inspector. - -"Now, if you will have the great goodness to open that door very -quietly, we will soon make him cut a much more respectable -figure." - -"Well, I don't know why not," said the inspector. "He doesn't -look a credit to the Bow Street cells, does he?" He slipped his -key into the lock, and we all very quietly entered the cell. The -sleeper half turned, and then settled down once more into a deep -slumber. Holmes stooped to the water-jug, moistened his sponge, -and then rubbed it twice vigorously across and down the -prisoner's face. - -"Let me introduce you," he shouted, "to Mr. Neville St. Clair, of -Lee, in the county of Kent." - -Never in my life have I seen such a sight. The man's face peeled -off under the sponge like the bark from a tree. Gone was the -coarse brown tint! Gone, too, was the horrid scar which had -seamed it across, and the twisted lip which had given the -repulsive sneer to the face! A twitch brought away the tangled -red hair, and there, sitting up in his bed, was a pale, -sad-faced, refined-looking man, black-haired and smooth-skinned, -rubbing his eyes and staring about him with sleepy bewilderment. -Then suddenly realising the exposure, he broke into a scream and -threw himself down with his face to the pillow. - -"Great heavens!" cried the inspector, "it is, indeed, the missing -man. I know him from the photograph." - -The prisoner turned with the reckless air of a man who abandons -himself to his destiny. "Be it so," said he. "And pray what am I -charged with?" - -"With making away with Mr. Neville St.-- Oh, come, you can't be -charged with that unless they make a case of attempted suicide of -it," said the inspector with a grin. "Well, I have been -twenty-seven years in the force, but this really takes the cake." - -"If I am Mr. Neville St. Clair, then it is obvious that no crime -has been committed, and that, therefore, I am illegally -detained." - -"No crime, but a very great error has been committed," said -Holmes. "You would have done better to have trusted your wife." - -"It was not the wife; it was the children," groaned the prisoner. -"God help me, I would not have them ashamed of their father. My -God! What an exposure! What can I do?" - -Sherlock Holmes sat down beside him on the couch and patted him -kindly on the shoulder. - -"If you leave it to a court of law to clear the matter up," said -he, "of course you can hardly avoid publicity. On the other hand, -if you convince the police authorities that there is no possible -case against you, I do not know that there is any reason that the -details should find their way into the papers. Inspector -Bradstreet would, I am sure, make notes upon anything which you -might tell us and submit it to the proper authorities. The case -would then never go into court at all." - -"God bless you!" cried the prisoner passionately. "I would have -endured imprisonment, ay, even execution, rather than have left -my miserable secret as a family blot to my children. - -"You are the first who have ever heard my story. My father was a -schoolmaster in Chesterfield, where I received an excellent -education. I travelled in my youth, took to the stage, and -finally became a reporter on an evening paper in London. One day -my editor wished to have a series of articles upon begging in the -metropolis, and I volunteered to supply them. There was the point -from which all my adventures started. It was only by trying -begging as an amateur that I could get the facts upon which to -base my articles. When an actor I had, of course, learned all the -secrets of making up, and had been famous in the green-room for -my skill. I took advantage now of my attainments. I painted my -face, and to make myself as pitiable as possible I made a good -scar and fixed one side of my lip in a twist by the aid of a -small slip of flesh-coloured plaster. Then with a red head of -hair, and an appropriate dress, I took my station in the business -part of the city, ostensibly as a match-seller but really as a -beggar. For seven hours I plied my trade, and when I returned -home in the evening I found to my surprise that I had received no -less than 26s. 4d. - -"I wrote my articles and thought little more of the matter until, -some time later, I backed a bill for a friend and had a writ -served upon me for 25 pounds. I was at my wit's end where to get -the money, but a sudden idea came to me. I begged a fortnight's -grace from the creditor, asked for a holiday from my employers, -and spent the time in begging in the City under my disguise. In -ten days I had the money and had paid the debt. - -"Well, you can imagine how hard it was to settle down to arduous -work at 2 pounds a week when I knew that I could earn as much in -a day by smearing my face with a little paint, laying my cap on -the ground, and sitting still. It was a long fight between my -pride and the money, but the dollars won at last, and I threw up -reporting and sat day after day in the corner which I had first -chosen, inspiring pity by my ghastly face and filling my pockets -with coppers. Only one man knew my secret. He was the keeper of a -low den in which I used to lodge in Swandam Lane, where I could -every morning emerge as a squalid beggar and in the evenings -transform myself into a well-dressed man about town. This fellow, -a Lascar, was well paid by me for his rooms, so that I knew that -my secret was safe in his possession. - -"Well, very soon I found that I was saving considerable sums of -money. I do not mean that any beggar in the streets of London -could earn 700 pounds a year--which is less than my average -takings--but I had exceptional advantages in my power of making -up, and also in a facility of repartee, which improved by -practice and made me quite a recognised character in the City. -All day a stream of pennies, varied by silver, poured in upon me, -and it was a very bad day in which I failed to take 2 pounds. - -"As I grew richer I grew more ambitious, took a house in the -country, and eventually married, without anyone having a -suspicion as to my real occupation. My dear wife knew that I had -business in the City. She little knew what. - -"Last Monday I had finished for the day and was dressing in my -room above the opium den when I looked out of my window and saw, -to my horror and astonishment, that my wife was standing in the -street, with her eyes fixed full upon me. I gave a cry of -surprise, threw up my arms to cover my face, and, rushing to my -confidant, the Lascar, entreated him to prevent anyone from -coming up to me. I heard her voice downstairs, but I knew that -she could not ascend. Swiftly I threw off my clothes, pulled on -those of a beggar, and put on my pigments and wig. Even a wife's -eyes could not pierce so complete a disguise. But then it -occurred to me that there might be a search in the room, and that -the clothes might betray me. I threw open the window, reopening -by my violence a small cut which I had inflicted upon myself in -the bedroom that morning. Then I seized my coat, which was -weighted by the coppers which I had just transferred to it from -the leather bag in which I carried my takings. I hurled it out of -the window, and it disappeared into the Thames. The other clothes -would have followed, but at that moment there was a rush of -constables up the stair, and a few minutes after I found, rather, -I confess, to my relief, that instead of being identified as Mr. -Neville St. Clair, I was arrested as his murderer. - -"I do not know that there is anything else for me to explain. I -was determined to preserve my disguise as long as possible, and -hence my preference for a dirty face. Knowing that my wife would -be terribly anxious, I slipped off my ring and confided it to the -Lascar at a moment when no constable was watching me, together -with a hurried scrawl, telling her that she had no cause to -fear." - -"That note only reached her yesterday," said Holmes. - -"Good God! What a week she must have spent!" - -"The police have watched this Lascar," said Inspector Bradstreet, -"and I can quite understand that he might find it difficult to -post a letter unobserved. Probably he handed it to some sailor -customer of his, who forgot all about it for some days." - -"That was it," said Holmes, nodding approvingly; "I have no doubt -of it. But have you never been prosecuted for begging?" - -"Many times; but what was a fine to me?" - -"It must stop here, however," said Bradstreet. "If the police are -to hush this thing up, there must be no more of Hugh Boone." - -"I have sworn it by the most solemn oaths which a man can take." - -"In that case I think that it is probable that no further steps -may be taken. But if you are found again, then all must come out. -I am sure, Mr. Holmes, that we are very much indebted to you for -having cleared the matter up. I wish I knew how you reach your -results." - -"I reached this one," said my friend, "by sitting upon five -pillows and consuming an ounce of shag. I think, Watson, that if -we drive to Baker Street we shall just be in time for breakfast." - - - -VII. THE ADVENTURE OF THE BLUE CARBUNCLE - -I had called upon my friend Sherlock Holmes upon the second -morning after Christmas, with the intention of wishing him the -compliments of the season. He was lounging upon the sofa in a -purple dressing-gown, a pipe-rack within his reach upon the -right, and a pile of crumpled morning papers, evidently newly -studied, near at hand. Beside the couch was a wooden chair, and -on the angle of the back hung a very seedy and disreputable -hard-felt hat, much the worse for wear, and cracked in several -places. A lens and a forceps lying upon the seat of the chair -suggested that the hat had been suspended in this manner for the -purpose of examination. - -"You are engaged," said I; "perhaps I interrupt you." - -"Not at all. I am glad to have a friend with whom I can discuss -my results. The matter is a perfectly trivial one"--he jerked his -thumb in the direction of the old hat--"but there are points in -connection with it which are not entirely devoid of interest and -even of instruction." - -I seated myself in his armchair and warmed my hands before his -crackling fire, for a sharp frost had set in, and the windows -were thick with the ice crystals. "I suppose," I remarked, "that, -homely as it looks, this thing has some deadly story linked on to -it--that it is the clue which will guide you in the solution of -some mystery and the punishment of some crime." - -"No, no. No crime," said Sherlock Holmes, laughing. "Only one of -those whimsical little incidents which will happen when you have -four million human beings all jostling each other within the -space of a few square miles. Amid the action and reaction of so -dense a swarm of humanity, every possible combination of events -may be expected to take place, and many a little problem will be -presented which may be striking and bizarre without being -criminal. We have already had experience of such." - -"So much so," I remarked, "that of the last six cases which I -have added to my notes, three have been entirely free of any -legal crime." - -"Precisely. You allude to my attempt to recover the Irene Adler -papers, to the singular case of Miss Mary Sutherland, and to the -adventure of the man with the twisted lip. Well, I have no doubt -that this small matter will fall into the same innocent category. -You know Peterson, the commissionaire?" - -"Yes." - -"It is to him that this trophy belongs." - -"It is his hat." - -"No, no, he found it. Its owner is unknown. I beg that you will -look upon it not as a battered billycock but as an intellectual -problem. And, first, as to how it came here. It arrived upon -Christmas morning, in company with a good fat goose, which is, I -have no doubt, roasting at this moment in front of Peterson's -fire. The facts are these: about four o'clock on Christmas -morning, Peterson, who, as you know, is a very honest fellow, was -returning from some small jollification and was making his way -homeward down Tottenham Court Road. In front of him he saw, in -the gaslight, a tallish man, walking with a slight stagger, and -carrying a white goose slung over his shoulder. As he reached the -corner of Goodge Street, a row broke out between this stranger -and a little knot of roughs. One of the latter knocked off the -man's hat, on which he raised his stick to defend himself and, -swinging it over his head, smashed the shop window behind him. -Peterson had rushed forward to protect the stranger from his -assailants; but the man, shocked at having broken the window, and -seeing an official-looking person in uniform rushing towards him, -dropped his goose, took to his heels, and vanished amid the -labyrinth of small streets which lie at the back of Tottenham -Court Road. The roughs had also fled at the appearance of -Peterson, so that he was left in possession of the field of -battle, and also of the spoils of victory in the shape of this -battered hat and a most unimpeachable Christmas goose." - -"Which surely he restored to their owner?" - -"My dear fellow, there lies the problem. It is true that 'For -Mrs. Henry Baker' was printed upon a small card which was tied to -the bird's left leg, and it is also true that the initials 'H. -B.' are legible upon the lining of this hat, but as there are -some thousands of Bakers, and some hundreds of Henry Bakers in -this city of ours, it is not easy to restore lost property to any -one of them." - -"What, then, did Peterson do?" - -"He brought round both hat and goose to me on Christmas morning, -knowing that even the smallest problems are of interest to me. -The goose we retained until this morning, when there were signs -that, in spite of the slight frost, it would be well that it -should be eaten without unnecessary delay. Its finder has carried -it off, therefore, to fulfil the ultimate destiny of a goose, -while I continue to retain the hat of the unknown gentleman who -lost his Christmas dinner." - -"Did he not advertise?" - -"No." - -"Then, what clue could you have as to his identity?" - -"Only as much as we can deduce." - -"From his hat?" - -"Precisely." - -"But you are joking. What can you gather from this old battered -felt?" - -"Here is my lens. You know my methods. What can you gather -yourself as to the individuality of the man who has worn this -article?" - -I took the tattered object in my hands and turned it over rather -ruefully. It was a very ordinary black hat of the usual round -shape, hard and much the worse for wear. The lining had been of -red silk, but was a good deal discoloured. There was no maker's -name; but, as Holmes had remarked, the initials "H. B." were -scrawled upon one side. It was pierced in the brim for a -hat-securer, but the elastic was missing. For the rest, it was -cracked, exceedingly dusty, and spotted in several places, -although there seemed to have been some attempt to hide the -discoloured patches by smearing them with ink. - -"I can see nothing," said I, handing it back to my friend. - -"On the contrary, Watson, you can see everything. You fail, -however, to reason from what you see. You are too timid in -drawing your inferences." - -"Then, pray tell me what it is that you can infer from this hat?" - -He picked it up and gazed at it in the peculiar introspective -fashion which was characteristic of him. "It is perhaps less -suggestive than it might have been," he remarked, "and yet there -are a few inferences which are very distinct, and a few others -which represent at least a strong balance of probability. That -the man was highly intellectual is of course obvious upon the -face of it, and also that he was fairly well-to-do within the -last three years, although he has now fallen upon evil days. He -had foresight, but has less now than formerly, pointing to a -moral retrogression, which, when taken with the decline of his -fortunes, seems to indicate some evil influence, probably drink, -at work upon him. This may account also for the obvious fact that -his wife has ceased to love him." - -"My dear Holmes!" - -"He has, however, retained some degree of self-respect," he -continued, disregarding my remonstrance. "He is a man who leads a -sedentary life, goes out little, is out of training entirely, is -middle-aged, has grizzled hair which he has had cut within the -last few days, and which he anoints with lime-cream. These are -the more patent facts which are to be deduced from his hat. Also, -by the way, that it is extremely improbable that he has gas laid -on in his house." - -"You are certainly joking, Holmes." - -"Not in the least. Is it possible that even now, when I give you -these results, you are unable to see how they are attained?" - -"I have no doubt that I am very stupid, but I must confess that I -am unable to follow you. For example, how did you deduce that -this man was intellectual?" - -For answer Holmes clapped the hat upon his head. It came right -over the forehead and settled upon the bridge of his nose. "It is -a question of cubic capacity," said he; "a man with so large a -brain must have something in it." - -"The decline of his fortunes, then?" - -"This hat is three years old. These flat brims curled at the edge -came in then. It is a hat of the very best quality. Look at the -band of ribbed silk and the excellent lining. If this man could -afford to buy so expensive a hat three years ago, and has had no -hat since, then he has assuredly gone down in the world." - -"Well, that is clear enough, certainly. But how about the -foresight and the moral retrogression?" - -Sherlock Holmes laughed. "Here is the foresight," said he putting -his finger upon the little disc and loop of the hat-securer. -"They are never sold upon hats. If this man ordered one, it is a -sign of a certain amount of foresight, since he went out of his -way to take this precaution against the wind. But since we see -that he has broken the elastic and has not troubled to replace -it, it is obvious that he has less foresight now than formerly, -which is a distinct proof of a weakening nature. On the other -hand, he has endeavoured to conceal some of these stains upon the -felt by daubing them with ink, which is a sign that he has not -entirely lost his self-respect." - -"Your reasoning is certainly plausible." - -"The further points, that he is middle-aged, that his hair is -grizzled, that it has been recently cut, and that he uses -lime-cream, are all to be gathered from a close examination of the -lower part of the lining. The lens discloses a large number of -hair-ends, clean cut by the scissors of the barber. They all -appear to be adhesive, and there is a distinct odour of -lime-cream. This dust, you will observe, is not the gritty, grey -dust of the street but the fluffy brown dust of the house, -showing that it has been hung up indoors most of the time, while -the marks of moisture upon the inside are proof positive that the -wearer perspired very freely, and could therefore, hardly be in -the best of training." - -"But his wife--you said that she had ceased to love him." - -"This hat has not been brushed for weeks. When I see you, my dear -Watson, with a week's accumulation of dust upon your hat, and -when your wife allows you to go out in such a state, I shall fear -that you also have been unfortunate enough to lose your wife's -affection." - -"But he might be a bachelor." - -"Nay, he was bringing home the goose as a peace-offering to his -wife. Remember the card upon the bird's leg." - -"You have an answer to everything. But how on earth do you deduce -that the gas is not laid on in his house?" - -"One tallow stain, or even two, might come by chance; but when I -see no less than five, I think that there can be little doubt -that the individual must be brought into frequent contact with -burning tallow--walks upstairs at night probably with his hat in -one hand and a guttering candle in the other. Anyhow, he never -got tallow-stains from a gas-jet. Are you satisfied?" - -"Well, it is very ingenious," said I, laughing; "but since, as -you said just now, there has been no crime committed, and no harm -done save the loss of a goose, all this seems to be rather a -waste of energy." - -Sherlock Holmes had opened his mouth to reply, when the door flew -open, and Peterson, the commissionaire, rushed into the apartment -with flushed cheeks and the face of a man who is dazed with -astonishment. - -"The goose, Mr. Holmes! The goose, sir!" he gasped. - -"Eh? What of it, then? Has it returned to life and flapped off -through the kitchen window?" Holmes twisted himself round upon -the sofa to get a fairer view of the man's excited face. - -"See here, sir! See what my wife found in its crop!" He held out -his hand and displayed upon the centre of the palm a brilliantly -scintillating blue stone, rather smaller than a bean in size, but -of such purity and radiance that it twinkled like an electric -point in the dark hollow of his hand. - -Sherlock Holmes sat up with a whistle. "By Jove, Peterson!" said -he, "this is treasure trove indeed. I suppose you know what you -have got?" - -"A diamond, sir? A precious stone. It cuts into glass as though -it were putty." - -"It's more than a precious stone. It is the precious stone." - -"Not the Countess of Morcar's blue carbuncle!" I ejaculated. - -"Precisely so. I ought to know its size and shape, seeing that I -have read the advertisement about it in The Times every day -lately. It is absolutely unique, and its value can only be -conjectured, but the reward offered of 1000 pounds is certainly -not within a twentieth part of the market price." - -"A thousand pounds! Great Lord of mercy!" The commissionaire -plumped down into a chair and stared from one to the other of us. - -"That is the reward, and I have reason to know that there are -sentimental considerations in the background which would induce -the Countess to part with half her fortune if she could but -recover the gem." - -"It was lost, if I remember aright, at the Hotel Cosmopolitan," I -remarked. - -"Precisely so, on December 22nd, just five days ago. John Horner, -a plumber, was accused of having abstracted it from the lady's -jewel-case. The evidence against him was so strong that the case -has been referred to the Assizes. I have some account of the -matter here, I believe." He rummaged amid his newspapers, -glancing over the dates, until at last he smoothed one out, -doubled it over, and read the following paragraph: - -"Hotel Cosmopolitan Jewel Robbery. John Horner, 26, plumber, was -brought up upon the charge of having upon the 22nd inst., -abstracted from the jewel-case of the Countess of Morcar the -valuable gem known as the blue carbuncle. James Ryder, -upper-attendant at the hotel, gave his evidence to the effect -that he had shown Horner up to the dressing-room of the Countess -of Morcar upon the day of the robbery in order that he might -solder the second bar of the grate, which was loose. He had -remained with Horner some little time, but had finally been -called away. On returning, he found that Horner had disappeared, -that the bureau had been forced open, and that the small morocco -casket in which, as it afterwards transpired, the Countess was -accustomed to keep her jewel, was lying empty upon the -dressing-table. Ryder instantly gave the alarm, and Horner was -arrested the same evening; but the stone could not be found -either upon his person or in his rooms. Catherine Cusack, maid to -the Countess, deposed to having heard Ryder's cry of dismay on -discovering the robbery, and to having rushed into the room, -where she found matters as described by the last witness. -Inspector Bradstreet, B division, gave evidence as to the arrest -of Horner, who struggled frantically, and protested his innocence -in the strongest terms. Evidence of a previous conviction for -robbery having been given against the prisoner, the magistrate -refused to deal summarily with the offence, but referred it to -the Assizes. Horner, who had shown signs of intense emotion -during the proceedings, fainted away at the conclusion and was -carried out of court." - -"Hum! So much for the police-court," said Holmes thoughtfully, -tossing aside the paper. "The question for us now to solve is the -sequence of events leading from a rifled jewel-case at one end to -the crop of a goose in Tottenham Court Road at the other. You -see, Watson, our little deductions have suddenly assumed a much -more important and less innocent aspect. Here is the stone; the -stone came from the goose, and the goose came from Mr. Henry -Baker, the gentleman with the bad hat and all the other -characteristics with which I have bored you. So now we must set -ourselves very seriously to finding this gentleman and -ascertaining what part he has played in this little mystery. To -do this, we must try the simplest means first, and these lie -undoubtedly in an advertisement in all the evening papers. If -this fail, I shall have recourse to other methods." - -"What will you say?" - -"Give me a pencil and that slip of paper. Now, then: 'Found at -the corner of Goodge Street, a goose and a black felt hat. Mr. -Henry Baker can have the same by applying at 6:30 this evening at -221B, Baker Street.' That is clear and concise." - -"Very. But will he see it?" - -"Well, he is sure to keep an eye on the papers, since, to a poor -man, the loss was a heavy one. He was clearly so scared by his -mischance in breaking the window and by the approach of Peterson -that he thought of nothing but flight, but since then he must -have bitterly regretted the impulse which caused him to drop his -bird. Then, again, the introduction of his name will cause him to -see it, for everyone who knows him will direct his attention to -it. Here you are, Peterson, run down to the advertising agency -and have this put in the evening papers." - -"In which, sir?" - -"Oh, in the Globe, Star, Pall Mall, St. James's, Evening News, -Standard, Echo, and any others that occur to you." - -"Very well, sir. And this stone?" - -"Ah, yes, I shall keep the stone. Thank you. And, I say, -Peterson, just buy a goose on your way back and leave it here -with me, for we must have one to give to this gentleman in place -of the one which your family is now devouring." - -When the commissionaire had gone, Holmes took up the stone and -held it against the light. "It's a bonny thing," said he. "Just -see how it glints and sparkles. Of course it is a nucleus and -focus of crime. Every good stone is. They are the devil's pet -baits. In the larger and older jewels every facet may stand for a -bloody deed. This stone is not yet twenty years old. It was found -in the banks of the Amoy River in southern China and is remarkable -in having every characteristic of the carbuncle, save that it is -blue in shade instead of ruby red. In spite of its youth, it has -already a sinister history. There have been two murders, a -vitriol-throwing, a suicide, and several robberies brought about -for the sake of this forty-grain weight of crystallised charcoal. -Who would think that so pretty a toy would be a purveyor to the -gallows and the prison? I'll lock it up in my strong box now and -drop a line to the Countess to say that we have it." - -"Do you think that this man Horner is innocent?" - -"I cannot tell." - -"Well, then, do you imagine that this other one, Henry Baker, had -anything to do with the matter?" - -"It is, I think, much more likely that Henry Baker is an -absolutely innocent man, who had no idea that the bird which he -was carrying was of considerably more value than if it were made -of solid gold. That, however, I shall determine by a very simple -test if we have an answer to our advertisement." - -"And you can do nothing until then?" - -"Nothing." - -"In that case I shall continue my professional round. But I shall -come back in the evening at the hour you have mentioned, for I -should like to see the solution of so tangled a business." - -"Very glad to see you. I dine at seven. There is a woodcock, I -believe. By the way, in view of recent occurrences, perhaps I -ought to ask Mrs. Hudson to examine its crop." - -I had been delayed at a case, and it was a little after half-past -six when I found myself in Baker Street once more. As I -approached the house I saw a tall man in a Scotch bonnet with a -coat which was buttoned up to his chin waiting outside in the -bright semicircle which was thrown from the fanlight. Just as I -arrived the door was opened, and we were shown up together to -Holmes' room. - -"Mr. Henry Baker, I believe," said he, rising from his armchair -and greeting his visitor with the easy air of geniality which he -could so readily assume. "Pray take this chair by the fire, Mr. -Baker. It is a cold night, and I observe that your circulation is -more adapted for summer than for winter. Ah, Watson, you have -just come at the right time. Is that your hat, Mr. Baker?" - -"Yes, sir, that is undoubtedly my hat." - -He was a large man with rounded shoulders, a massive head, and a -broad, intelligent face, sloping down to a pointed beard of -grizzled brown. A touch of red in nose and cheeks, with a slight -tremor of his extended hand, recalled Holmes' surmise as to his -habits. His rusty black frock-coat was buttoned right up in -front, with the collar turned up, and his lank wrists protruded -from his sleeves without a sign of cuff or shirt. He spoke in a -slow staccato fashion, choosing his words with care, and gave the -impression generally of a man of learning and letters who had had -ill-usage at the hands of fortune. - -"We have retained these things for some days," said Holmes, -"because we expected to see an advertisement from you giving your -address. I am at a loss to know now why you did not advertise." - -Our visitor gave a rather shamefaced laugh. "Shillings have not -been so plentiful with me as they once were," he remarked. "I had -no doubt that the gang of roughs who assaulted me had carried off -both my hat and the bird. I did not care to spend more money in a -hopeless attempt at recovering them." - -"Very naturally. By the way, about the bird, we were compelled to -eat it." - -"To eat it!" Our visitor half rose from his chair in his -excitement. - -"Yes, it would have been of no use to anyone had we not done so. -But I presume that this other goose upon the sideboard, which is -about the same weight and perfectly fresh, will answer your -purpose equally well?" - -"Oh, certainly, certainly," answered Mr. Baker with a sigh of -relief. - -"Of course, we still have the feathers, legs, crop, and so on of -your own bird, so if you wish--" - -The man burst into a hearty laugh. "They might be useful to me as -relics of my adventure," said he, "but beyond that I can hardly -see what use the disjecta membra of my late acquaintance are -going to be to me. No, sir, I think that, with your permission, I -will confine my attentions to the excellent bird which I perceive -upon the sideboard." - -Sherlock Holmes glanced sharply across at me with a slight shrug -of his shoulders. - -"There is your hat, then, and there your bird," said he. "By the -way, would it bore you to tell me where you got the other one -from? I am somewhat of a fowl fancier, and I have seldom seen a -better grown goose." - -"Certainly, sir," said Baker, who had risen and tucked his newly -gained property under his arm. "There are a few of us who -frequent the Alpha Inn, near the Museum--we are to be found in -the Museum itself during the day, you understand. This year our -good host, Windigate by name, instituted a goose club, by which, -on consideration of some few pence every week, we were each to -receive a bird at Christmas. My pence were duly paid, and the -rest is familiar to you. I am much indebted to you, sir, for a -Scotch bonnet is fitted neither to my years nor my gravity." With -a comical pomposity of manner he bowed solemnly to both of us and -strode off upon his way. - -"So much for Mr. Henry Baker," said Holmes when he had closed the -door behind him. "It is quite certain that he knows nothing -whatever about the matter. Are you hungry, Watson?" - -"Not particularly." - -"Then I suggest that we turn our dinner into a supper and follow -up this clue while it is still hot." - -"By all means." - -It was a bitter night, so we drew on our ulsters and wrapped -cravats about our throats. Outside, the stars were shining coldly -in a cloudless sky, and the breath of the passers-by blew out -into smoke like so many pistol shots. Our footfalls rang out -crisply and loudly as we swung through the doctors' quarter, -Wimpole Street, Harley Street, and so through Wigmore Street into -Oxford Street. In a quarter of an hour we were in Bloomsbury at -the Alpha Inn, which is a small public-house at the corner of one -of the streets which runs down into Holborn. Holmes pushed open -the door of the private bar and ordered two glasses of beer from -the ruddy-faced, white-aproned landlord. - -"Your beer should be excellent if it is as good as your geese," -said he. - -"My geese!" The man seemed surprised. - -"Yes. I was speaking only half an hour ago to Mr. Henry Baker, -who was a member of your goose club." - -"Ah! yes, I see. But you see, sir, them's not our geese." - -"Indeed! Whose, then?" - -"Well, I got the two dozen from a salesman in Covent Garden." - -"Indeed? I know some of them. Which was it?" - -"Breckinridge is his name." - -"Ah! I don't know him. Well, here's your good health landlord, -and prosperity to your house. Good-night." - -"Now for Mr. Breckinridge," he continued, buttoning up his coat -as we came out into the frosty air. "Remember, Watson that though -we have so homely a thing as a goose at one end of this chain, we -have at the other a man who will certainly get seven years' penal -servitude unless we can establish his innocence. It is possible -that our inquiry may but confirm his guilt; but, in any case, we -have a line of investigation which has been missed by the police, -and which a singular chance has placed in our hands. Let us -follow it out to the bitter end. Faces to the south, then, and -quick march!" - -We passed across Holborn, down Endell Street, and so through a -zigzag of slums to Covent Garden Market. One of the largest -stalls bore the name of Breckinridge upon it, and the proprietor -a horsey-looking man, with a sharp face and trim side-whiskers was -helping a boy to put up the shutters. - -"Good-evening. It's a cold night," said Holmes. - -The salesman nodded and shot a questioning glance at my -companion. - -"Sold out of geese, I see," continued Holmes, pointing at the -bare slabs of marble. - -"Let you have five hundred to-morrow morning." - -"That's no good." - -"Well, there are some on the stall with the gas-flare." - -"Ah, but I was recommended to you." - -"Who by?" - -"The landlord of the Alpha." - -"Oh, yes; I sent him a couple of dozen." - -"Fine birds they were, too. Now where did you get them from?" - -To my surprise the question provoked a burst of anger from the -salesman. - -"Now, then, mister," said he, with his head cocked and his arms -akimbo, "what are you driving at? Let's have it straight, now." - -"It is straight enough. I should like to know who sold you the -geese which you supplied to the Alpha." - -"Well then, I shan't tell you. So now!" - -"Oh, it is a matter of no importance; but I don't know why you -should be so warm over such a trifle." - -"Warm! You'd be as warm, maybe, if you were as pestered as I am. -When I pay good money for a good article there should be an end -of the business; but it's 'Where are the geese?' and 'Who did you -sell the geese to?' and 'What will you take for the geese?' One -would think they were the only geese in the world, to hear the -fuss that is made over them." - -"Well, I have no connection with any other people who have been -making inquiries," said Holmes carelessly. "If you won't tell us -the bet is off, that is all. But I'm always ready to back my -opinion on a matter of fowls, and I have a fiver on it that the -bird I ate is country bred." - -"Well, then, you've lost your fiver, for it's town bred," snapped -the salesman. - -"It's nothing of the kind." - -"I say it is." - -"I don't believe it." - -"D'you think you know more about fowls than I, who have handled -them ever since I was a nipper? I tell you, all those birds that -went to the Alpha were town bred." - -"You'll never persuade me to believe that." - -"Will you bet, then?" - -"It's merely taking your money, for I know that I am right. But -I'll have a sovereign on with you, just to teach you not to be -obstinate." - -The salesman chuckled grimly. "Bring me the books, Bill," said -he. - -The small boy brought round a small thin volume and a great -greasy-backed one, laying them out together beneath the hanging -lamp. - -"Now then, Mr. Cocksure," said the salesman, "I thought that I -was out of geese, but before I finish you'll find that there is -still one left in my shop. You see this little book?" - -"Well?" - -"That's the list of the folk from whom I buy. D'you see? Well, -then, here on this page are the country folk, and the numbers -after their names are where their accounts are in the big ledger. -Now, then! You see this other page in red ink? Well, that is a -list of my town suppliers. Now, look at that third name. Just -read it out to me." - -"Mrs. Oakshott, 117, Brixton Road--249," read Holmes. - -"Quite so. Now turn that up in the ledger." - -Holmes turned to the page indicated. "Here you are, 'Mrs. -Oakshott, 117, Brixton Road, egg and poultry supplier.'" - -"Now, then, what's the last entry?" - -"'December 22nd. Twenty-four geese at 7s. 6d.'" - -"Quite so. There you are. And underneath?" - -"'Sold to Mr. Windigate of the Alpha, at 12s.'" - -"What have you to say now?" - -Sherlock Holmes looked deeply chagrined. He drew a sovereign from -his pocket and threw it down upon the slab, turning away with the -air of a man whose disgust is too deep for words. A few yards off -he stopped under a lamp-post and laughed in the hearty, noiseless -fashion which was peculiar to him. - -"When you see a man with whiskers of that cut and the 'Pink 'un' -protruding out of his pocket, you can always draw him by a bet," -said he. "I daresay that if I had put 100 pounds down in front of -him, that man would not have given me such complete information -as was drawn from him by the idea that he was doing me on a -wager. Well, Watson, we are, I fancy, nearing the end of our -quest, and the only point which remains to be determined is -whether we should go on to this Mrs. Oakshott to-night, or -whether we should reserve it for to-morrow. It is clear from what -that surly fellow said that there are others besides ourselves -who are anxious about the matter, and I should--" - -His remarks were suddenly cut short by a loud hubbub which broke -out from the stall which we had just left. Turning round we saw a -little rat-faced fellow standing in the centre of the circle of -yellow light which was thrown by the swinging lamp, while -Breckinridge, the salesman, framed in the door of his stall, was -shaking his fists fiercely at the cringing figure. - -"I've had enough of you and your geese," he shouted. "I wish you -were all at the devil together. If you come pestering me any more -with your silly talk I'll set the dog at you. You bring Mrs. -Oakshott here and I'll answer her, but what have you to do with -it? Did I buy the geese off you?" - -"No; but one of them was mine all the same," whined the little -man. - -"Well, then, ask Mrs. Oakshott for it." - -"She told me to ask you." - -"Well, you can ask the King of Proosia, for all I care. I've had -enough of it. Get out of this!" He rushed fiercely forward, and -the inquirer flitted away into the darkness. - -"Ha! this may save us a visit to Brixton Road," whispered Holmes. -"Come with me, and we will see what is to be made of this -fellow." Striding through the scattered knots of people who -lounged round the flaring stalls, my companion speedily overtook -the little man and touched him upon the shoulder. He sprang -round, and I could see in the gas-light that every vestige of -colour had been driven from his face. - -"Who are you, then? What do you want?" he asked in a quavering -voice. - -"You will excuse me," said Holmes blandly, "but I could not help -overhearing the questions which you put to the salesman just now. -I think that I could be of assistance to you." - -"You? Who are you? How could you know anything of the matter?" - -"My name is Sherlock Holmes. It is my business to know what other -people don't know." - -"But you can know nothing of this?" - -"Excuse me, I know everything of it. You are endeavouring to -trace some geese which were sold by Mrs. Oakshott, of Brixton -Road, to a salesman named Breckinridge, by him in turn to Mr. -Windigate, of the Alpha, and by him to his club, of which Mr. -Henry Baker is a member." - -"Oh, sir, you are the very man whom I have longed to meet," cried -the little fellow with outstretched hands and quivering fingers. -"I can hardly explain to you how interested I am in this matter." - -Sherlock Holmes hailed a four-wheeler which was passing. "In that -case we had better discuss it in a cosy room rather than in this -wind-swept market-place," said he. "But pray tell me, before we -go farther, who it is that I have the pleasure of assisting." - -The man hesitated for an instant. "My name is John Robinson," he -answered with a sidelong glance. - -"No, no; the real name," said Holmes sweetly. "It is always -awkward doing business with an alias." - -A flush sprang to the white cheeks of the stranger. "Well then," -said he, "my real name is James Ryder." - -"Precisely so. Head attendant at the Hotel Cosmopolitan. Pray -step into the cab, and I shall soon be able to tell you -everything which you would wish to know." - -The little man stood glancing from one to the other of us with -half-frightened, half-hopeful eyes, as one who is not sure -whether he is on the verge of a windfall or of a catastrophe. -Then he stepped into the cab, and in half an hour we were back in -the sitting-room at Baker Street. Nothing had been said during -our drive, but the high, thin breathing of our new companion, and -the claspings and unclaspings of his hands, spoke of the nervous -tension within him. - -"Here we are!" said Holmes cheerily as we filed into the room. -"The fire looks very seasonable in this weather. You look cold, -Mr. Ryder. Pray take the basket-chair. I will just put on my -slippers before we settle this little matter of yours. Now, then! -You want to know what became of those geese?" - -"Yes, sir." - -"Or rather, I fancy, of that goose. It was one bird, I imagine in -which you were interested--white, with a black bar across the -tail." - -Ryder quivered with emotion. "Oh, sir," he cried, "can you tell -me where it went to?" - -"It came here." - -"Here?" - -"Yes, and a most remarkable bird it proved. I don't wonder that -you should take an interest in it. It laid an egg after it was -dead--the bonniest, brightest little blue egg that ever was seen. -I have it here in my museum." - -Our visitor staggered to his feet and clutched the mantelpiece -with his right hand. Holmes unlocked his strong-box and held up -the blue carbuncle, which shone out like a star, with a cold, -brilliant, many-pointed radiance. Ryder stood glaring with a -drawn face, uncertain whether to claim or to disown it. - -"The game's up, Ryder," said Holmes quietly. "Hold up, man, or -you'll be into the fire! Give him an arm back into his chair, -Watson. He's not got blood enough to go in for felony with -impunity. Give him a dash of brandy. So! Now he looks a little -more human. What a shrimp it is, to be sure!" - -For a moment he had staggered and nearly fallen, but the brandy -brought a tinge of colour into his cheeks, and he sat staring -with frightened eyes at his accuser. - -"I have almost every link in my hands, and all the proofs which I -could possibly need, so there is little which you need tell me. -Still, that little may as well be cleared up to make the case -complete. You had heard, Ryder, of this blue stone of the -Countess of Morcar's?" - -"It was Catherine Cusack who told me of it," said he in a -crackling voice. - -"I see--her ladyship's waiting-maid. Well, the temptation of -sudden wealth so easily acquired was too much for you, as it has -been for better men before you; but you were not very scrupulous -in the means you used. It seems to me, Ryder, that there is the -making of a very pretty villain in you. You knew that this man -Horner, the plumber, had been concerned in some such matter -before, and that suspicion would rest the more readily upon him. -What did you do, then? You made some small job in my lady's -room--you and your confederate Cusack--and you managed that he -should be the man sent for. Then, when he had left, you rifled -the jewel-case, raised the alarm, and had this unfortunate man -arrested. You then--" - -Ryder threw himself down suddenly upon the rug and clutched at my -companion's knees. "For God's sake, have mercy!" he shrieked. -"Think of my father! Of my mother! It would break their hearts. I -never went wrong before! I never will again. I swear it. I'll -swear it on a Bible. Oh, don't bring it into court! For Christ's -sake, don't!" - -"Get back into your chair!" said Holmes sternly. "It is very well -to cringe and crawl now, but you thought little enough of this -poor Horner in the dock for a crime of which he knew nothing." - -"I will fly, Mr. Holmes. I will leave the country, sir. Then the -charge against him will break down." - -"Hum! We will talk about that. And now let us hear a true account -of the next act. How came the stone into the goose, and how came -the goose into the open market? Tell us the truth, for there lies -your only hope of safety." - -Ryder passed his tongue over his parched lips. "I will tell you -it just as it happened, sir," said he. "When Horner had been -arrested, it seemed to me that it would be best for me to get -away with the stone at once, for I did not know at what moment -the police might not take it into their heads to search me and my -room. There was no place about the hotel where it would be safe. -I went out, as if on some commission, and I made for my sister's -house. She had married a man named Oakshott, and lived in Brixton -Road, where she fattened fowls for the market. All the way there -every man I met seemed to me to be a policeman or a detective; -and, for all that it was a cold night, the sweat was pouring down -my face before I came to the Brixton Road. My sister asked me -what was the matter, and why I was so pale; but I told her that I -had been upset by the jewel robbery at the hotel. Then I went -into the back yard and smoked a pipe and wondered what it would -be best to do. - -"I had a friend once called Maudsley, who went to the bad, and -has just been serving his time in Pentonville. One day he had met -me, and fell into talk about the ways of thieves, and how they -could get rid of what they stole. I knew that he would be true to -me, for I knew one or two things about him; so I made up my mind -to go right on to Kilburn, where he lived, and take him into my -confidence. He would show me how to turn the stone into money. -But how to get to him in safety? I thought of the agonies I had -gone through in coming from the hotel. I might at any moment be -seized and searched, and there would be the stone in my waistcoat -pocket. I was leaning against the wall at the time and looking at -the geese which were waddling about round my feet, and suddenly -an idea came into my head which showed me how I could beat the -best detective that ever lived. - -"My sister had told me some weeks before that I might have the -pick of her geese for a Christmas present, and I knew that she -was always as good as her word. I would take my goose now, and in -it I would carry my stone to Kilburn. There was a little shed in -the yard, and behind this I drove one of the birds--a fine big -one, white, with a barred tail. I caught it, and prying its bill -open, I thrust the stone down its throat as far as my finger -could reach. The bird gave a gulp, and I felt the stone pass -along its gullet and down into its crop. But the creature flapped -and struggled, and out came my sister to know what was the -matter. As I turned to speak to her the brute broke loose and -fluttered off among the others. - -"'Whatever were you doing with that bird, Jem?' says she. - -"'Well,' said I, 'you said you'd give me one for Christmas, and I -was feeling which was the fattest.' - -"'Oh,' says she, 'we've set yours aside for you--Jem's bird, we -call it. It's the big white one over yonder. There's twenty-six -of them, which makes one for you, and one for us, and two dozen -for the market.' - -"'Thank you, Maggie,' says I; 'but if it is all the same to you, -I'd rather have that one I was handling just now.' - -"'The other is a good three pound heavier,' said she, 'and we -fattened it expressly for you.' - -"'Never mind. I'll have the other, and I'll take it now,' said I. - -"'Oh, just as you like,' said she, a little huffed. 'Which is it -you want, then?' - -"'That white one with the barred tail, right in the middle of the -flock.' - -"'Oh, very well. Kill it and take it with you.' - -"Well, I did what she said, Mr. Holmes, and I carried the bird -all the way to Kilburn. I told my pal what I had done, for he was -a man that it was easy to tell a thing like that to. He laughed -until he choked, and we got a knife and opened the goose. My -heart turned to water, for there was no sign of the stone, and I -knew that some terrible mistake had occurred. I left the bird, -rushed back to my sister's, and hurried into the back yard. There -was not a bird to be seen there. - -"'Where are they all, Maggie?' I cried. - -"'Gone to the dealer's, Jem.' - -"'Which dealer's?' - -"'Breckinridge, of Covent Garden.' - -"'But was there another with a barred tail?' I asked, 'the same -as the one I chose?' - -"'Yes, Jem; there were two barred-tailed ones, and I could never -tell them apart.' - -"Well, then, of course I saw it all, and I ran off as hard as my -feet would carry me to this man Breckinridge; but he had sold the -lot at once, and not one word would he tell me as to where they -had gone. You heard him yourselves to-night. Well, he has always -answered me like that. My sister thinks that I am going mad. -Sometimes I think that I am myself. And now--and now I am myself -a branded thief, without ever having touched the wealth for which -I sold my character. God help me! God help me!" He burst into -convulsive sobbing, with his face buried in his hands. - -There was a long silence, broken only by his heavy breathing and -by the measured tapping of Sherlock Holmes' finger-tips upon the -edge of the table. Then my friend rose and threw open the door. - -"Get out!" said he. - -"What, sir! Oh, Heaven bless you!" - -"No more words. Get out!" - -And no more words were needed. There was a rush, a clatter upon -the stairs, the bang of a door, and the crisp rattle of running -footfalls from the street. - -"After all, Watson," said Holmes, reaching up his hand for his -clay pipe, "I am not retained by the police to supply their -deficiencies. If Horner were in danger it would be another thing; -but this fellow will not appear against him, and the case must -collapse. I suppose that I am commuting a felony, but it is just -possible that I am saving a soul. This fellow will not go wrong -again; he is too terribly frightened. Send him to gaol now, and -you make him a gaol-bird for life. Besides, it is the season of -forgiveness. Chance has put in our way a most singular and -whimsical problem, and its solution is its own reward. If you -will have the goodness to touch the bell, Doctor, we will begin -another investigation, in which, also a bird will be the chief -feature." - - - -VIII. THE ADVENTURE OF THE SPECKLED BAND - -On glancing over my notes of the seventy odd cases in which I -have during the last eight years studied the methods of my friend -Sherlock Holmes, I find many tragic, some comic, a large number -merely strange, but none commonplace; for, working as he did -rather for the love of his art than for the acquirement of -wealth, he refused to associate himself with any investigation -which did not tend towards the unusual, and even the fantastic. -Of all these varied cases, however, I cannot recall any which -presented more singular features than that which was associated -with the well-known Surrey family of the Roylotts of Stoke Moran. -The events in question occurred in the early days of my -association with Holmes, when we were sharing rooms as bachelors -in Baker Street. It is possible that I might have placed them -upon record before, but a promise of secrecy was made at the -time, from which I have only been freed during the last month by -the untimely death of the lady to whom the pledge was given. It -is perhaps as well that the facts should now come to light, for I -have reasons to know that there are widespread rumours as to the -death of Dr. Grimesby Roylott which tend to make the matter even -more terrible than the truth. - -It was early in April in the year '83 that I woke one morning to -find Sherlock Holmes standing, fully dressed, by the side of my -bed. He was a late riser, as a rule, and as the clock on the -mantelpiece showed me that it was only a quarter-past seven, I -blinked up at him in some surprise, and perhaps just a little -resentment, for I was myself regular in my habits. - -"Very sorry to knock you up, Watson," said he, "but it's the -common lot this morning. Mrs. Hudson has been knocked up, she -retorted upon me, and I on you." - -"What is it, then--a fire?" - -"No; a client. It seems that a young lady has arrived in a -considerable state of excitement, who insists upon seeing me. She -is waiting now in the sitting-room. Now, when young ladies wander -about the metropolis at this hour of the morning, and knock -sleepy people up out of their beds, I presume that it is -something very pressing which they have to communicate. Should it -prove to be an interesting case, you would, I am sure, wish to -follow it from the outset. I thought, at any rate, that I should -call you and give you the chance." - -"My dear fellow, I would not miss it for anything." - -I had no keener pleasure than in following Holmes in his -professional investigations, and in admiring the rapid -deductions, as swift as intuitions, and yet always founded on a -logical basis with which he unravelled the problems which were -submitted to him. I rapidly threw on my clothes and was ready in -a few minutes to accompany my friend down to the sitting-room. A -lady dressed in black and heavily veiled, who had been sitting in -the window, rose as we entered. - -"Good-morning, madam," said Holmes cheerily. "My name is Sherlock -Holmes. This is my intimate friend and associate, Dr. Watson, -before whom you can speak as freely as before myself. Ha! I am -glad to see that Mrs. Hudson has had the good sense to light the -fire. Pray draw up to it, and I shall order you a cup of hot -coffee, for I observe that you are shivering." - -"It is not cold which makes me shiver," said the woman in a low -voice, changing her seat as requested. - -"What, then?" - -"It is fear, Mr. Holmes. It is terror." She raised her veil as -she spoke, and we could see that she was indeed in a pitiable -state of agitation, her face all drawn and grey, with restless -frightened eyes, like those of some hunted animal. Her features -and figure were those of a woman of thirty, but her hair was shot -with premature grey, and her expression was weary and haggard. -Sherlock Holmes ran her over with one of his quick, -all-comprehensive glances. - -"You must not fear," said he soothingly, bending forward and -patting her forearm. "We shall soon set matters right, I have no -doubt. You have come in by train this morning, I see." - -"You know me, then?" - -"No, but I observe the second half of a return ticket in the palm -of your left glove. You must have started early, and yet you had -a good drive in a dog-cart, along heavy roads, before you reached -the station." - -The lady gave a violent start and stared in bewilderment at my -companion. - -"There is no mystery, my dear madam," said he, smiling. "The left -arm of your jacket is spattered with mud in no less than seven -places. The marks are perfectly fresh. There is no vehicle save a -dog-cart which throws up mud in that way, and then only when you -sit on the left-hand side of the driver." - -"Whatever your reasons may be, you are perfectly correct," said -she. "I started from home before six, reached Leatherhead at -twenty past, and came in by the first train to Waterloo. Sir, I -can stand this strain no longer; I shall go mad if it continues. -I have no one to turn to--none, save only one, who cares for me, -and he, poor fellow, can be of little aid. I have heard of you, -Mr. Holmes; I have heard of you from Mrs. Farintosh, whom you -helped in the hour of her sore need. It was from her that I had -your address. Oh, sir, do you not think that you could help me, -too, and at least throw a little light through the dense darkness -which surrounds me? At present it is out of my power to reward -you for your services, but in a month or six weeks I shall be -married, with the control of my own income, and then at least you -shall not find me ungrateful." - -Holmes turned to his desk and, unlocking it, drew out a small -case-book, which he consulted. - -"Farintosh," said he. "Ah yes, I recall the case; it was -concerned with an opal tiara. I think it was before your time, -Watson. I can only say, madam, that I shall be happy to devote -the same care to your case as I did to that of your friend. As to -reward, my profession is its own reward; but you are at liberty -to defray whatever expenses I may be put to, at the time which -suits you best. And now I beg that you will lay before us -everything that may help us in forming an opinion upon the -matter." - -"Alas!" replied our visitor, "the very horror of my situation -lies in the fact that my fears are so vague, and my suspicions -depend so entirely upon small points, which might seem trivial to -another, that even he to whom of all others I have a right to -look for help and advice looks upon all that I tell him about it -as the fancies of a nervous woman. He does not say so, but I can -read it from his soothing answers and averted eyes. But I have -heard, Mr. Holmes, that you can see deeply into the manifold -wickedness of the human heart. You may advise me how to walk amid -the dangers which encompass me." - -"I am all attention, madam." - -"My name is Helen Stoner, and I am living with my stepfather, who -is the last survivor of one of the oldest Saxon families in -England, the Roylotts of Stoke Moran, on the western border of -Surrey." - -Holmes nodded his head. "The name is familiar to me," said he. - -"The family was at one time among the richest in England, and the -estates extended over the borders into Berkshire in the north, -and Hampshire in the west. In the last century, however, four -successive heirs were of a dissolute and wasteful disposition, -and the family ruin was eventually completed by a gambler in the -days of the Regency. Nothing was left save a few acres of ground, -and the two-hundred-year-old house, which is itself crushed under -a heavy mortgage. The last squire dragged out his existence -there, living the horrible life of an aristocratic pauper; but -his only son, my stepfather, seeing that he must adapt himself to -the new conditions, obtained an advance from a relative, which -enabled him to take a medical degree and went out to Calcutta, -where, by his professional skill and his force of character, he -established a large practice. In a fit of anger, however, caused -by some robberies which had been perpetrated in the house, he -beat his native butler to death and narrowly escaped a capital -sentence. As it was, he suffered a long term of imprisonment and -afterwards returned to England a morose and disappointed man. - -"When Dr. Roylott was in India he married my mother, Mrs. Stoner, -the young widow of Major-General Stoner, of the Bengal Artillery. -My sister Julia and I were twins, and we were only two years old -at the time of my mother's re-marriage. She had a considerable -sum of money--not less than 1000 pounds a year--and this she -bequeathed to Dr. Roylott entirely while we resided with him, -with a provision that a certain annual sum should be allowed to -each of us in the event of our marriage. Shortly after our return -to England my mother died--she was killed eight years ago in a -railway accident near Crewe. Dr. Roylott then abandoned his -attempts to establish himself in practice in London and took us -to live with him in the old ancestral house at Stoke Moran. The -money which my mother had left was enough for all our wants, and -there seemed to be no obstacle to our happiness. - -"But a terrible change came over our stepfather about this time. -Instead of making friends and exchanging visits with our -neighbours, who had at first been overjoyed to see a Roylott of -Stoke Moran back in the old family seat, he shut himself up in -his house and seldom came out save to indulge in ferocious -quarrels with whoever might cross his path. Violence of temper -approaching to mania has been hereditary in the men of the -family, and in my stepfather's case it had, I believe, been -intensified by his long residence in the tropics. A series of -disgraceful brawls took place, two of which ended in the -police-court, until at last he became the terror of the village, -and the folks would fly at his approach, for he is a man of -immense strength, and absolutely uncontrollable in his anger. - -"Last week he hurled the local blacksmith over a parapet into a -stream, and it was only by paying over all the money which I -could gather together that I was able to avert another public -exposure. He had no friends at all save the wandering gipsies, -and he would give these vagabonds leave to encamp upon the few -acres of bramble-covered land which represent the family estate, -and would accept in return the hospitality of their tents, -wandering away with them sometimes for weeks on end. He has a -passion also for Indian animals, which are sent over to him by a -correspondent, and he has at this moment a cheetah and a baboon, -which wander freely over his grounds and are feared by the -villagers almost as much as their master. - -"You can imagine from what I say that my poor sister Julia and I -had no great pleasure in our lives. No servant would stay with -us, and for a long time we did all the work of the house. She was -but thirty at the time of her death, and yet her hair had already -begun to whiten, even as mine has." - -"Your sister is dead, then?" - -"She died just two years ago, and it is of her death that I wish -to speak to you. You can understand that, living the life which I -have described, we were little likely to see anyone of our own -age and position. We had, however, an aunt, my mother's maiden -sister, Miss Honoria Westphail, who lives near Harrow, and we -were occasionally allowed to pay short visits at this lady's -house. Julia went there at Christmas two years ago, and met there -a half-pay major of marines, to whom she became engaged. My -stepfather learned of the engagement when my sister returned and -offered no objection to the marriage; but within a fortnight of -the day which had been fixed for the wedding, the terrible event -occurred which has deprived me of my only companion." - -Sherlock Holmes had been leaning back in his chair with his eyes -closed and his head sunk in a cushion, but he half opened his -lids now and glanced across at his visitor. - -"Pray be precise as to details," said he. - -"It is easy for me to be so, for every event of that dreadful -time is seared into my memory. The manor-house is, as I have -already said, very old, and only one wing is now inhabited. The -bedrooms in this wing are on the ground floor, the sitting-rooms -being in the central block of the buildings. Of these bedrooms -the first is Dr. Roylott's, the second my sister's, and the third -my own. There is no communication between them, but they all open -out into the same corridor. Do I make myself plain?" - -"Perfectly so." - -"The windows of the three rooms open out upon the lawn. That -fatal night Dr. Roylott had gone to his room early, though we -knew that he had not retired to rest, for my sister was troubled -by the smell of the strong Indian cigars which it was his custom -to smoke. She left her room, therefore, and came into mine, where -she sat for some time, chatting about her approaching wedding. At -eleven o'clock she rose to leave me, but she paused at the door -and looked back. - -"'Tell me, Helen,' said she, 'have you ever heard anyone whistle -in the dead of the night?' - -"'Never,' said I. - -"'I suppose that you could not possibly whistle, yourself, in -your sleep?' - -"'Certainly not. But why?' - -"'Because during the last few nights I have always, about three -in the morning, heard a low, clear whistle. I am a light sleeper, -and it has awakened me. I cannot tell where it came from--perhaps -from the next room, perhaps from the lawn. I thought that I would -just ask you whether you had heard it.' - -"'No, I have not. It must be those wretched gipsies in the -plantation.' - -"'Very likely. And yet if it were on the lawn, I wonder that you -did not hear it also.' - -"'Ah, but I sleep more heavily than you.' - -"'Well, it is of no great consequence, at any rate.' She smiled -back at me, closed my door, and a few moments later I heard her -key turn in the lock." - -"Indeed," said Holmes. "Was it your custom always to lock -yourselves in at night?" - -"Always." - -"And why?" - -"I think that I mentioned to you that the doctor kept a cheetah -and a baboon. We had no feeling of security unless our doors were -locked." - -"Quite so. Pray proceed with your statement." - -"I could not sleep that night. A vague feeling of impending -misfortune impressed me. My sister and I, you will recollect, -were twins, and you know how subtle are the links which bind two -souls which are so closely allied. It was a wild night. The wind -was howling outside, and the rain was beating and splashing -against the windows. Suddenly, amid all the hubbub of the gale, -there burst forth the wild scream of a terrified woman. I knew -that it was my sister's voice. I sprang from my bed, wrapped a -shawl round me, and rushed into the corridor. As I opened my door -I seemed to hear a low whistle, such as my sister described, and -a few moments later a clanging sound, as if a mass of metal had -fallen. As I ran down the passage, my sister's door was unlocked, -and revolved slowly upon its hinges. I stared at it -horror-stricken, not knowing what was about to issue from it. By -the light of the corridor-lamp I saw my sister appear at the -opening, her face blanched with terror, her hands groping for -help, her whole figure swaying to and fro like that of a -drunkard. I ran to her and threw my arms round her, but at that -moment her knees seemed to give way and she fell to the ground. -She writhed as one who is in terrible pain, and her limbs were -dreadfully convulsed. At first I thought that she had not -recognised me, but as I bent over her she suddenly shrieked out -in a voice which I shall never forget, 'Oh, my God! Helen! It was -the band! The speckled band!' There was something else which she -would fain have said, and she stabbed with her finger into the -air in the direction of the doctor's room, but a fresh convulsion -seized her and choked her words. I rushed out, calling loudly for -my stepfather, and I met him hastening from his room in his -dressing-gown. When he reached my sister's side she was -unconscious, and though he poured brandy down her throat and sent -for medical aid from the village, all efforts were in vain, for -she slowly sank and died without having recovered her -consciousness. Such was the dreadful end of my beloved sister." - -"One moment," said Holmes, "are you sure about this whistle and -metallic sound? Could you swear to it?" - -"That was what the county coroner asked me at the inquiry. It is -my strong impression that I heard it, and yet, among the crash of -the gale and the creaking of an old house, I may possibly have -been deceived." - -"Was your sister dressed?" - -"No, she was in her night-dress. In her right hand was found the -charred stump of a match, and in her left a match-box." - -"Showing that she had struck a light and looked about her when -the alarm took place. That is important. And what conclusions did -the coroner come to?" - -"He investigated the case with great care, for Dr. Roylott's -conduct had long been notorious in the county, but he was unable -to find any satisfactory cause of death. My evidence showed that -the door had been fastened upon the inner side, and the windows -were blocked by old-fashioned shutters with broad iron bars, -which were secured every night. The walls were carefully sounded, -and were shown to be quite solid all round, and the flooring was -also thoroughly examined, with the same result. The chimney is -wide, but is barred up by four large staples. It is certain, -therefore, that my sister was quite alone when she met her end. -Besides, there were no marks of any violence upon her." - -"How about poison?" - -"The doctors examined her for it, but without success." - -"What do you think that this unfortunate lady died of, then?" - -"It is my belief that she died of pure fear and nervous shock, -though what it was that frightened her I cannot imagine." - -"Were there gipsies in the plantation at the time?" - -"Yes, there are nearly always some there." - -"Ah, and what did you gather from this allusion to a band--a -speckled band?" - -"Sometimes I have thought that it was merely the wild talk of -delirium, sometimes that it may have referred to some band of -people, perhaps to these very gipsies in the plantation. I do not -know whether the spotted handkerchiefs which so many of them wear -over their heads might have suggested the strange adjective which -she used." - -Holmes shook his head like a man who is far from being satisfied. - -"These are very deep waters," said he; "pray go on with your -narrative." - -"Two years have passed since then, and my life has been until -lately lonelier than ever. A month ago, however, a dear friend, -whom I have known for many years, has done me the honour to ask -my hand in marriage. His name is Armitage--Percy Armitage--the -second son of Mr. Armitage, of Crane Water, near Reading. My -stepfather has offered no opposition to the match, and we are to -be married in the course of the spring. Two days ago some repairs -were started in the west wing of the building, and my bedroom -wall has been pierced, so that I have had to move into the -chamber in which my sister died, and to sleep in the very bed in -which she slept. Imagine, then, my thrill of terror when last -night, as I lay awake, thinking over her terrible fate, I -suddenly heard in the silence of the night the low whistle which -had been the herald of her own death. I sprang up and lit the -lamp, but nothing was to be seen in the room. I was too shaken to -go to bed again, however, so I dressed, and as soon as it was -daylight I slipped down, got a dog-cart at the Crown Inn, which -is opposite, and drove to Leatherhead, from whence I have come on -this morning with the one object of seeing you and asking your -advice." - -"You have done wisely," said my friend. "But have you told me -all?" - -"Yes, all." - -"Miss Roylott, you have not. You are screening your stepfather." - -"Why, what do you mean?" - -For answer Holmes pushed back the frill of black lace which -fringed the hand that lay upon our visitor's knee. Five little -livid spots, the marks of four fingers and a thumb, were printed -upon the white wrist. - -"You have been cruelly used," said Holmes. - -The lady coloured deeply and covered over her injured wrist. "He -is a hard man," she said, "and perhaps he hardly knows his own -strength." - -There was a long silence, during which Holmes leaned his chin -upon his hands and stared into the crackling fire. - -"This is a very deep business," he said at last. "There are a -thousand details which I should desire to know before I decide -upon our course of action. Yet we have not a moment to lose. If -we were to come to Stoke Moran to-day, would it be possible for -us to see over these rooms without the knowledge of your -stepfather?" - -"As it happens, he spoke of coming into town to-day upon some -most important business. It is probable that he will be away all -day, and that there would be nothing to disturb you. We have a -housekeeper now, but she is old and foolish, and I could easily -get her out of the way." - -"Excellent. You are not averse to this trip, Watson?" - -"By no means." - -"Then we shall both come. What are you going to do yourself?" - -"I have one or two things which I would wish to do now that I am -in town. But I shall return by the twelve o'clock train, so as to -be there in time for your coming." - -"And you may expect us early in the afternoon. I have myself some -small business matters to attend to. Will you not wait and -breakfast?" - -"No, I must go. My heart is lightened already since I have -confided my trouble to you. I shall look forward to seeing you -again this afternoon." She dropped her thick black veil over her -face and glided from the room. - -"And what do you think of it all, Watson?" asked Sherlock Holmes, -leaning back in his chair. - -"It seems to me to be a most dark and sinister business." - -"Dark enough and sinister enough." - -"Yet if the lady is correct in saying that the flooring and walls -are sound, and that the door, window, and chimney are impassable, -then her sister must have been undoubtedly alone when she met her -mysterious end." - -"What becomes, then, of these nocturnal whistles, and what of the -very peculiar words of the dying woman?" - -"I cannot think." - -"When you combine the ideas of whistles at night, the presence of -a band of gipsies who are on intimate terms with this old doctor, -the fact that we have every reason to believe that the doctor has -an interest in preventing his stepdaughter's marriage, the dying -allusion to a band, and, finally, the fact that Miss Helen Stoner -heard a metallic clang, which might have been caused by one of -those metal bars that secured the shutters falling back into its -place, I think that there is good ground to think that the -mystery may be cleared along those lines." - -"But what, then, did the gipsies do?" - -"I cannot imagine." - -"I see many objections to any such theory." - -"And so do I. It is precisely for that reason that we are going -to Stoke Moran this day. I want to see whether the objections are -fatal, or if they may be explained away. But what in the name of -the devil!" - -The ejaculation had been drawn from my companion by the fact that -our door had been suddenly dashed open, and that a huge man had -framed himself in the aperture. His costume was a peculiar -mixture of the professional and of the agricultural, having a -black top-hat, a long frock-coat, and a pair of high gaiters, -with a hunting-crop swinging in his hand. So tall was he that his -hat actually brushed the cross bar of the doorway, and his -breadth seemed to span it across from side to side. A large face, -seared with a thousand wrinkles, burned yellow with the sun, and -marked with every evil passion, was turned from one to the other -of us, while his deep-set, bile-shot eyes, and his high, thin, -fleshless nose, gave him somewhat the resemblance to a fierce old -bird of prey. - -"Which of you is Holmes?" asked this apparition. - -"My name, sir; but you have the advantage of me," said my -companion quietly. - -"I am Dr. Grimesby Roylott, of Stoke Moran." - -"Indeed, Doctor," said Holmes blandly. "Pray take a seat." - -"I will do nothing of the kind. My stepdaughter has been here. I -have traced her. What has she been saying to you?" - -"It is a little cold for the time of the year," said Holmes. - -"What has she been saying to you?" screamed the old man -furiously. - -"But I have heard that the crocuses promise well," continued my -companion imperturbably. - -"Ha! You put me off, do you?" said our new visitor, taking a step -forward and shaking his hunting-crop. "I know you, you scoundrel! -I have heard of you before. You are Holmes, the meddler." - -My friend smiled. - -"Holmes, the busybody!" - -His smile broadened. - -"Holmes, the Scotland Yard Jack-in-office!" - -Holmes chuckled heartily. "Your conversation is most -entertaining," said he. "When you go out close the door, for -there is a decided draught." - -"I will go when I have said my say. Don't you dare to meddle with -my affairs. I know that Miss Stoner has been here. I traced her! -I am a dangerous man to fall foul of! See here." He stepped -swiftly forward, seized the poker, and bent it into a curve with -his huge brown hands. - -"See that you keep yourself out of my grip," he snarled, and -hurling the twisted poker into the fireplace he strode out of the -room. - -"He seems a very amiable person," said Holmes, laughing. "I am -not quite so bulky, but if he had remained I might have shown him -that my grip was not much more feeble than his own." As he spoke -he picked up the steel poker and, with a sudden effort, -straightened it out again. - -"Fancy his having the insolence to confound me with the official -detective force! This incident gives zest to our investigation, -however, and I only trust that our little friend will not suffer -from her imprudence in allowing this brute to trace her. And now, -Watson, we shall order breakfast, and afterwards I shall walk -down to Doctors' Commons, where I hope to get some data which may -help us in this matter." - - -It was nearly one o'clock when Sherlock Holmes returned from his -excursion. He held in his hand a sheet of blue paper, scrawled -over with notes and figures. - -"I have seen the will of the deceased wife," said he. "To -determine its exact meaning I have been obliged to work out the -present prices of the investments with which it is concerned. The -total income, which at the time of the wife's death was little -short of 1100 pounds, is now, through the fall in agricultural -prices, not more than 750 pounds. Each daughter can claim an -income of 250 pounds, in case of marriage. It is evident, -therefore, that if both girls had married, this beauty would have -had a mere pittance, while even one of them would cripple him to -a very serious extent. My morning's work has not been wasted, -since it has proved that he has the very strongest motives for -standing in the way of anything of the sort. And now, Watson, -this is too serious for dawdling, especially as the old man is -aware that we are interesting ourselves in his affairs; so if you -are ready, we shall call a cab and drive to Waterloo. I should be -very much obliged if you would slip your revolver into your -pocket. An Eley's No. 2 is an excellent argument with gentlemen -who can twist steel pokers into knots. That and a tooth-brush -are, I think, all that we need." - -At Waterloo we were fortunate in catching a train for -Leatherhead, where we hired a trap at the station inn and drove -for four or five miles through the lovely Surrey lanes. It was a -perfect day, with a bright sun and a few fleecy clouds in the -heavens. The trees and wayside hedges were just throwing out -their first green shoots, and the air was full of the pleasant -smell of the moist earth. To me at least there was a strange -contrast between the sweet promise of the spring and this -sinister quest upon which we were engaged. My companion sat in -the front of the trap, his arms folded, his hat pulled down over -his eyes, and his chin sunk upon his breast, buried in the -deepest thought. Suddenly, however, he started, tapped me on the -shoulder, and pointed over the meadows. - -"Look there!" said he. - -A heavily timbered park stretched up in a gentle slope, -thickening into a grove at the highest point. From amid the -branches there jutted out the grey gables and high roof-tree of a -very old mansion. - -"Stoke Moran?" said he. - -"Yes, sir, that be the house of Dr. Grimesby Roylott," remarked -the driver. - -"There is some building going on there," said Holmes; "that is -where we are going." - -"There's the village," said the driver, pointing to a cluster of -roofs some distance to the left; "but if you want to get to the -house, you'll find it shorter to get over this stile, and so by -the foot-path over the fields. There it is, where the lady is -walking." - -"And the lady, I fancy, is Miss Stoner," observed Holmes, shading -his eyes. "Yes, I think we had better do as you suggest." - -We got off, paid our fare, and the trap rattled back on its way -to Leatherhead. - -"I thought it as well," said Holmes as we climbed the stile, -"that this fellow should think we had come here as architects, or -on some definite business. It may stop his gossip. -Good-afternoon, Miss Stoner. You see that we have been as good as -our word." - -Our client of the morning had hurried forward to meet us with a -face which spoke her joy. "I have been waiting so eagerly for -you," she cried, shaking hands with us warmly. "All has turned -out splendidly. Dr. Roylott has gone to town, and it is unlikely -that he will be back before evening." - -"We have had the pleasure of making the doctor's acquaintance," -said Holmes, and in a few words he sketched out what had -occurred. Miss Stoner turned white to the lips as she listened. - -"Good heavens!" she cried, "he has followed me, then." - -"So it appears." - -"He is so cunning that I never know when I am safe from him. What -will he say when he returns?" - -"He must guard himself, for he may find that there is someone -more cunning than himself upon his track. You must lock yourself -up from him to-night. If he is violent, we shall take you away to -your aunt's at Harrow. Now, we must make the best use of our -time, so kindly take us at once to the rooms which we are to -examine." - -The building was of grey, lichen-blotched stone, with a high -central portion and two curving wings, like the claws of a crab, -thrown out on each side. In one of these wings the windows were -broken and blocked with wooden boards, while the roof was partly -caved in, a picture of ruin. The central portion was in little -better repair, but the right-hand block was comparatively modern, -and the blinds in the windows, with the blue smoke curling up -from the chimneys, showed that this was where the family resided. -Some scaffolding had been erected against the end wall, and the -stone-work had been broken into, but there were no signs of any -workmen at the moment of our visit. Holmes walked slowly up and -down the ill-trimmed lawn and examined with deep attention the -outsides of the windows. - -"This, I take it, belongs to the room in which you used to sleep, -the centre one to your sister's, and the one next to the main -building to Dr. Roylott's chamber?" - -"Exactly so. But I am now sleeping in the middle one." - -"Pending the alterations, as I understand. By the way, there does -not seem to be any very pressing need for repairs at that end -wall." - -"There were none. I believe that it was an excuse to move me from -my room." - -"Ah! that is suggestive. Now, on the other side of this narrow -wing runs the corridor from which these three rooms open. There -are windows in it, of course?" - -"Yes, but very small ones. Too narrow for anyone to pass -through." - -"As you both locked your doors at night, your rooms were -unapproachable from that side. Now, would you have the kindness -to go into your room and bar your shutters?" - -Miss Stoner did so, and Holmes, after a careful examination -through the open window, endeavoured in every way to force the -shutter open, but without success. There was no slit through -which a knife could be passed to raise the bar. Then with his -lens he tested the hinges, but they were of solid iron, built -firmly into the massive masonry. "Hum!" said he, scratching his -chin in some perplexity, "my theory certainly presents some -difficulties. No one could pass these shutters if they were -bolted. Well, we shall see if the inside throws any light upon -the matter." - -A small side door led into the whitewashed corridor from which -the three bedrooms opened. Holmes refused to examine the third -chamber, so we passed at once to the second, that in which Miss -Stoner was now sleeping, and in which her sister had met with her -fate. It was a homely little room, with a low ceiling and a -gaping fireplace, after the fashion of old country-houses. A -brown chest of drawers stood in one corner, a narrow -white-counterpaned bed in another, and a dressing-table on the -left-hand side of the window. These articles, with two small -wicker-work chairs, made up all the furniture in the room save -for a square of Wilton carpet in the centre. The boards round and -the panelling of the walls were of brown, worm-eaten oak, so old -and discoloured that it may have dated from the original building -of the house. Holmes drew one of the chairs into a corner and sat -silent, while his eyes travelled round and round and up and down, -taking in every detail of the apartment. - -"Where does that bell communicate with?" he asked at last -pointing to a thick bell-rope which hung down beside the bed, the -tassel actually lying upon the pillow. - -"It goes to the housekeeper's room." - -"It looks newer than the other things?" - -"Yes, it was only put there a couple of years ago." - -"Your sister asked for it, I suppose?" - -"No, I never heard of her using it. We used always to get what we -wanted for ourselves." - -"Indeed, it seemed unnecessary to put so nice a bell-pull there. -You will excuse me for a few minutes while I satisfy myself as to -this floor." He threw himself down upon his face with his lens in -his hand and crawled swiftly backward and forward, examining -minutely the cracks between the boards. Then he did the same with -the wood-work with which the chamber was panelled. Finally he -walked over to the bed and spent some time in staring at it and -in running his eye up and down the wall. Finally he took the -bell-rope in his hand and gave it a brisk tug. - -"Why, it's a dummy," said he. - -"Won't it ring?" - -"No, it is not even attached to a wire. This is very interesting. -You can see now that it is fastened to a hook just above where -the little opening for the ventilator is." - -"How very absurd! I never noticed that before." - -"Very strange!" muttered Holmes, pulling at the rope. "There are -one or two very singular points about this room. For example, -what a fool a builder must be to open a ventilator into another -room, when, with the same trouble, he might have communicated -with the outside air!" - -"That is also quite modern," said the lady. - -"Done about the same time as the bell-rope?" remarked Holmes. - -"Yes, there were several little changes carried out about that -time." - -"They seem to have been of a most interesting character--dummy -bell-ropes, and ventilators which do not ventilate. With your -permission, Miss Stoner, we shall now carry our researches into -the inner apartment." - -Dr. Grimesby Roylott's chamber was larger than that of his -step-daughter, but was as plainly furnished. A camp-bed, a small -wooden shelf full of books, mostly of a technical character, an -armchair beside the bed, a plain wooden chair against the wall, a -round table, and a large iron safe were the principal things -which met the eye. Holmes walked slowly round and examined each -and all of them with the keenest interest. - -"What's in here?" he asked, tapping the safe. - -"My stepfather's business papers." - -"Oh! you have seen inside, then?" - -"Only once, some years ago. I remember that it was full of -papers." - -"There isn't a cat in it, for example?" - -"No. What a strange idea!" - -"Well, look at this!" He took up a small saucer of milk which -stood on the top of it. - -"No; we don't keep a cat. But there is a cheetah and a baboon." - -"Ah, yes, of course! Well, a cheetah is just a big cat, and yet a -saucer of milk does not go very far in satisfying its wants, I -daresay. There is one point which I should wish to determine." He -squatted down in front of the wooden chair and examined the seat -of it with the greatest attention. - -"Thank you. That is quite settled," said he, rising and putting -his lens in his pocket. "Hullo! Here is something interesting!" - -The object which had caught his eye was a small dog lash hung on -one corner of the bed. The lash, however, was curled upon itself -and tied so as to make a loop of whipcord. - -"What do you make of that, Watson?" - -"It's a common enough lash. But I don't know why it should be -tied." - -"That is not quite so common, is it? Ah, me! it's a wicked world, -and when a clever man turns his brains to crime it is the worst -of all. I think that I have seen enough now, Miss Stoner, and -with your permission we shall walk out upon the lawn." - -I had never seen my friend's face so grim or his brow so dark as -it was when we turned from the scene of this investigation. We -had walked several times up and down the lawn, neither Miss -Stoner nor myself liking to break in upon his thoughts before he -roused himself from his reverie. - -"It is very essential, Miss Stoner," said he, "that you should -absolutely follow my advice in every respect." - -"I shall most certainly do so." - -"The matter is too serious for any hesitation. Your life may -depend upon your compliance." - -"I assure you that I am in your hands." - -"In the first place, both my friend and I must spend the night in -your room." - -Both Miss Stoner and I gazed at him in astonishment. - -"Yes, it must be so. Let me explain. I believe that that is the -village inn over there?" - -"Yes, that is the Crown." - -"Very good. Your windows would be visible from there?" - -"Certainly." - -"You must confine yourself to your room, on pretence of a -headache, when your stepfather comes back. Then when you hear him -retire for the night, you must open the shutters of your window, -undo the hasp, put your lamp there as a signal to us, and then -withdraw quietly with everything which you are likely to want -into the room which you used to occupy. I have no doubt that, in -spite of the repairs, you could manage there for one night." - -"Oh, yes, easily." - -"The rest you will leave in our hands." - -"But what will you do?" - -"We shall spend the night in your room, and we shall investigate -the cause of this noise which has disturbed you." - -"I believe, Mr. Holmes, that you have already made up your mind," -said Miss Stoner, laying her hand upon my companion's sleeve. - -"Perhaps I have." - -"Then, for pity's sake, tell me what was the cause of my sister's -death." - -"I should prefer to have clearer proofs before I speak." - -"You can at least tell me whether my own thought is correct, and -if she died from some sudden fright." - -"No, I do not think so. I think that there was probably some more -tangible cause. And now, Miss Stoner, we must leave you for if -Dr. Roylott returned and saw us our journey would be in vain. -Good-bye, and be brave, for if you will do what I have told you, -you may rest assured that we shall soon drive away the dangers -that threaten you." - -Sherlock Holmes and I had no difficulty in engaging a bedroom and -sitting-room at the Crown Inn. They were on the upper floor, and -from our window we could command a view of the avenue gate, and -of the inhabited wing of Stoke Moran Manor House. At dusk we saw -Dr. Grimesby Roylott drive past, his huge form looming up beside -the little figure of the lad who drove him. The boy had some -slight difficulty in undoing the heavy iron gates, and we heard -the hoarse roar of the doctor's voice and saw the fury with which -he shook his clinched fists at him. The trap drove on, and a few -minutes later we saw a sudden light spring up among the trees as -the lamp was lit in one of the sitting-rooms. - -"Do you know, Watson," said Holmes as we sat together in the -gathering darkness, "I have really some scruples as to taking you -to-night. There is a distinct element of danger." - -"Can I be of assistance?" - -"Your presence might be invaluable." - -"Then I shall certainly come." - -"It is very kind of you." - -"You speak of danger. You have evidently seen more in these rooms -than was visible to me." - -"No, but I fancy that I may have deduced a little more. I imagine -that you saw all that I did." - -"I saw nothing remarkable save the bell-rope, and what purpose -that could answer I confess is more than I can imagine." - -"You saw the ventilator, too?" - -"Yes, but I do not think that it is such a very unusual thing to -have a small opening between two rooms. It was so small that a -rat could hardly pass through." - -"I knew that we should find a ventilator before ever we came to -Stoke Moran." - -"My dear Holmes!" - -"Oh, yes, I did. You remember in her statement she said that her -sister could smell Dr. Roylott's cigar. Now, of course that -suggested at once that there must be a communication between the -two rooms. It could only be a small one, or it would have been -remarked upon at the coroner's inquiry. I deduced a ventilator." - -"But what harm can there be in that?" - -"Well, there is at least a curious coincidence of dates. A -ventilator is made, a cord is hung, and a lady who sleeps in the -bed dies. Does not that strike you?" - -"I cannot as yet see any connection." - -"Did you observe anything very peculiar about that bed?" - -"No." - -"It was clamped to the floor. Did you ever see a bed fastened -like that before?" - -"I cannot say that I have." - -"The lady could not move her bed. It must always be in the same -relative position to the ventilator and to the rope--or so we may -call it, since it was clearly never meant for a bell-pull." - -"Holmes," I cried, "I seem to see dimly what you are hinting at. -We are only just in time to prevent some subtle and horrible -crime." - -"Subtle enough and horrible enough. When a doctor does go wrong -he is the first of criminals. He has nerve and he has knowledge. -Palmer and Pritchard were among the heads of their profession. -This man strikes even deeper, but I think, Watson, that we shall -be able to strike deeper still. But we shall have horrors enough -before the night is over; for goodness' sake let us have a quiet -pipe and turn our minds for a few hours to something more -cheerful." - - -About nine o'clock the light among the trees was extinguished, -and all was dark in the direction of the Manor House. Two hours -passed slowly away, and then, suddenly, just at the stroke of -eleven, a single bright light shone out right in front of us. - -"That is our signal," said Holmes, springing to his feet; "it -comes from the middle window." - -As we passed out he exchanged a few words with the landlord, -explaining that we were going on a late visit to an acquaintance, -and that it was possible that we might spend the night there. A -moment later we were out on the dark road, a chill wind blowing -in our faces, and one yellow light twinkling in front of us -through the gloom to guide us on our sombre errand. - -There was little difficulty in entering the grounds, for -unrepaired breaches gaped in the old park wall. Making our way -among the trees, we reached the lawn, crossed it, and were about -to enter through the window when out from a clump of laurel -bushes there darted what seemed to be a hideous and distorted -child, who threw itself upon the grass with writhing limbs and -then ran swiftly across the lawn into the darkness. - -"My God!" I whispered; "did you see it?" - -Holmes was for the moment as startled as I. His hand closed like -a vice upon my wrist in his agitation. Then he broke into a low -laugh and put his lips to my ear. - -"It is a nice household," he murmured. "That is the baboon." - -I had forgotten the strange pets which the doctor affected. There -was a cheetah, too; perhaps we might find it upon our shoulders -at any moment. I confess that I felt easier in my mind when, -after following Holmes' example and slipping off my shoes, I -found myself inside the bedroom. My companion noiselessly closed -the shutters, moved the lamp onto the table, and cast his eyes -round the room. All was as we had seen it in the daytime. Then -creeping up to me and making a trumpet of his hand, he whispered -into my ear again so gently that it was all that I could do to -distinguish the words: - -"The least sound would be fatal to our plans." - -I nodded to show that I had heard. - -"We must sit without light. He would see it through the -ventilator." - -I nodded again. - -"Do not go asleep; your very life may depend upon it. Have your -pistol ready in case we should need it. I will sit on the side of -the bed, and you in that chair." - -I took out my revolver and laid it on the corner of the table. - -Holmes had brought up a long thin cane, and this he placed upon -the bed beside him. By it he laid the box of matches and the -stump of a candle. Then he turned down the lamp, and we were left -in darkness. - -How shall I ever forget that dreadful vigil? I could not hear a -sound, not even the drawing of a breath, and yet I knew that my -companion sat open-eyed, within a few feet of me, in the same -state of nervous tension in which I was myself. The shutters cut -off the least ray of light, and we waited in absolute darkness. - -From outside came the occasional cry of a night-bird, and once at -our very window a long drawn catlike whine, which told us that -the cheetah was indeed at liberty. Far away we could hear the -deep tones of the parish clock, which boomed out every quarter of -an hour. How long they seemed, those quarters! Twelve struck, and -one and two and three, and still we sat waiting silently for -whatever might befall. - -Suddenly there was the momentary gleam of a light up in the -direction of the ventilator, which vanished immediately, but was -succeeded by a strong smell of burning oil and heated metal. -Someone in the next room had lit a dark-lantern. I heard a gentle -sound of movement, and then all was silent once more, though the -smell grew stronger. For half an hour I sat with straining ears. -Then suddenly another sound became audible--a very gentle, -soothing sound, like that of a small jet of steam escaping -continually from a kettle. The instant that we heard it, Holmes -sprang from the bed, struck a match, and lashed furiously with -his cane at the bell-pull. - -"You see it, Watson?" he yelled. "You see it?" - -But I saw nothing. At the moment when Holmes struck the light I -heard a low, clear whistle, but the sudden glare flashing into my -weary eyes made it impossible for me to tell what it was at which -my friend lashed so savagely. I could, however, see that his face -was deadly pale and filled with horror and loathing. He had -ceased to strike and was gazing up at the ventilator when -suddenly there broke from the silence of the night the most -horrible cry to which I have ever listened. It swelled up louder -and louder, a hoarse yell of pain and fear and anger all mingled -in the one dreadful shriek. They say that away down in the -village, and even in the distant parsonage, that cry raised the -sleepers from their beds. It struck cold to our hearts, and I -stood gazing at Holmes, and he at me, until the last echoes of it -had died away into the silence from which it rose. - -"What can it mean?" I gasped. - -"It means that it is all over," Holmes answered. "And perhaps, -after all, it is for the best. Take your pistol, and we will -enter Dr. Roylott's room." - -With a grave face he lit the lamp and led the way down the -corridor. Twice he struck at the chamber door without any reply -from within. Then he turned the handle and entered, I at his -heels, with the cocked pistol in my hand. - -It was a singular sight which met our eyes. On the table stood a -dark-lantern with the shutter half open, throwing a brilliant -beam of light upon the iron safe, the door of which was ajar. -Beside this table, on the wooden chair, sat Dr. Grimesby Roylott -clad in a long grey dressing-gown, his bare ankles protruding -beneath, and his feet thrust into red heelless Turkish slippers. -Across his lap lay the short stock with the long lash which we -had noticed during the day. His chin was cocked upward and his -eyes were fixed in a dreadful, rigid stare at the corner of the -ceiling. Round his brow he had a peculiar yellow band, with -brownish speckles, which seemed to be bound tightly round his -head. As we entered he made neither sound nor motion. - -"The band! the speckled band!" whispered Holmes. - -I took a step forward. In an instant his strange headgear began -to move, and there reared itself from among his hair the squat -diamond-shaped head and puffed neck of a loathsome serpent. - -"It is a swamp adder!" cried Holmes; "the deadliest snake in -India. He has died within ten seconds of being bitten. Violence -does, in truth, recoil upon the violent, and the schemer falls -into the pit which he digs for another. Let us thrust this -creature back into its den, and we can then remove Miss Stoner to -some place of shelter and let the county police know what has -happened." - -As he spoke he drew the dog-whip swiftly from the dead man's lap, -and throwing the noose round the reptile's neck he drew it from -its horrid perch and, carrying it at arm's length, threw it into -the iron safe, which he closed upon it. - -Such are the true facts of the death of Dr. Grimesby Roylott, of -Stoke Moran. It is not necessary that I should prolong a -narrative which has already run to too great a length by telling -how we broke the sad news to the terrified girl, how we conveyed -her by the morning train to the care of her good aunt at Harrow, -of how the slow process of official inquiry came to the -conclusion that the doctor met his fate while indiscreetly -playing with a dangerous pet. The little which I had yet to learn -of the case was told me by Sherlock Holmes as we travelled back -next day. - -"I had," said he, "come to an entirely erroneous conclusion which -shows, my dear Watson, how dangerous it always is to reason from -insufficient data. The presence of the gipsies, and the use of -the word 'band,' which was used by the poor girl, no doubt, to -explain the appearance which she had caught a hurried glimpse of -by the light of her match, were sufficient to put me upon an -entirely wrong scent. I can only claim the merit that I instantly -reconsidered my position when, however, it became clear to me -that whatever danger threatened an occupant of the room could not -come either from the window or the door. My attention was -speedily drawn, as I have already remarked to you, to this -ventilator, and to the bell-rope which hung down to the bed. The -discovery that this was a dummy, and that the bed was clamped to -the floor, instantly gave rise to the suspicion that the rope was -there as a bridge for something passing through the hole and -coming to the bed. The idea of a snake instantly occurred to me, -and when I coupled it with my knowledge that the doctor was -furnished with a supply of creatures from India, I felt that I -was probably on the right track. The idea of using a form of -poison which could not possibly be discovered by any chemical -test was just such a one as would occur to a clever and ruthless -man who had had an Eastern training. The rapidity with which such -a poison would take effect would also, from his point of view, be -an advantage. It would be a sharp-eyed coroner, indeed, who could -distinguish the two little dark punctures which would show where -the poison fangs had done their work. Then I thought of the -whistle. Of course he must recall the snake before the morning -light revealed it to the victim. He had trained it, probably by -the use of the milk which we saw, to return to him when summoned. -He would put it through this ventilator at the hour that he -thought best, with the certainty that it would crawl down the -rope and land on the bed. It might or might not bite the -occupant, perhaps she might escape every night for a week, but -sooner or later she must fall a victim. - -"I had come to these conclusions before ever I had entered his -room. An inspection of his chair showed me that he had been in -the habit of standing on it, which of course would be necessary -in order that he should reach the ventilator. The sight of the -safe, the saucer of milk, and the loop of whipcord were enough to -finally dispel any doubts which may have remained. The metallic -clang heard by Miss Stoner was obviously caused by her stepfather -hastily closing the door of his safe upon its terrible occupant. -Having once made up my mind, you know the steps which I took in -order to put the matter to the proof. I heard the creature hiss -as I have no doubt that you did also, and I instantly lit the -light and attacked it." - -"With the result of driving it through the ventilator." - -"And also with the result of causing it to turn upon its master -at the other side. Some of the blows of my cane came home and -roused its snakish temper, so that it flew upon the first person -it saw. In this way I am no doubt indirectly responsible for Dr. -Grimesby Roylott's death, and I cannot say that it is likely to -weigh very heavily upon my conscience." - - - -IX. THE ADVENTURE OF THE ENGINEER'S THUMB - -Of all the problems which have been submitted to my friend, Mr. -Sherlock Holmes, for solution during the years of our intimacy, -there were only two which I was the means of introducing to his -notice--that of Mr. Hatherley's thumb, and that of Colonel -Warburton's madness. Of these the latter may have afforded a -finer field for an acute and original observer, but the other was -so strange in its inception and so dramatic in its details that -it may be the more worthy of being placed upon record, even if it -gave my friend fewer openings for those deductive methods of -reasoning by which he achieved such remarkable results. The story -has, I believe, been told more than once in the newspapers, but, -like all such narratives, its effect is much less striking when -set forth en bloc in a single half-column of print than when the -facts slowly evolve before your own eyes, and the mystery clears -gradually away as each new discovery furnishes a step which leads -on to the complete truth. At the time the circumstances made a -deep impression upon me, and the lapse of two years has hardly -served to weaken the effect. - -It was in the summer of '89, not long after my marriage, that the -events occurred which I am now about to summarise. I had returned -to civil practice and had finally abandoned Holmes in his Baker -Street rooms, although I continually visited him and occasionally -even persuaded him to forgo his Bohemian habits so far as to come -and visit us. My practice had steadily increased, and as I -happened to live at no very great distance from Paddington -Station, I got a few patients from among the officials. One of -these, whom I had cured of a painful and lingering disease, was -never weary of advertising my virtues and of endeavouring to send -me on every sufferer over whom he might have any influence. - -One morning, at a little before seven o'clock, I was awakened by -the maid tapping at the door to announce that two men had come -from Paddington and were waiting in the consulting-room. I -dressed hurriedly, for I knew by experience that railway cases -were seldom trivial, and hastened downstairs. As I descended, my -old ally, the guard, came out of the room and closed the door -tightly behind him. - -"I've got him here," he whispered, jerking his thumb over his -shoulder; "he's all right." - -"What is it, then?" I asked, for his manner suggested that it was -some strange creature which he had caged up in my room. - -"It's a new patient," he whispered. "I thought I'd bring him -round myself; then he couldn't slip away. There he is, all safe -and sound. I must go now, Doctor; I have my dooties, just the -same as you." And off he went, this trusty tout, without even -giving me time to thank him. - -I entered my consulting-room and found a gentleman seated by the -table. He was quietly dressed in a suit of heather tweed with a -soft cloth cap which he had laid down upon my books. Round one of -his hands he had a handkerchief wrapped, which was mottled all -over with bloodstains. He was young, not more than -five-and-twenty, I should say, with a strong, masculine face; but -he was exceedingly pale and gave me the impression of a man who -was suffering from some strong agitation, which it took all his -strength of mind to control. - -"I am sorry to knock you up so early, Doctor," said he, "but I -have had a very serious accident during the night. I came in by -train this morning, and on inquiring at Paddington as to where I -might find a doctor, a worthy fellow very kindly escorted me -here. I gave the maid a card, but I see that she has left it upon -the side-table." - -I took it up and glanced at it. "Mr. Victor Hatherley, hydraulic -engineer, 16A, Victoria Street (3rd floor)." That was the name, -style, and abode of my morning visitor. "I regret that I have -kept you waiting," said I, sitting down in my library-chair. "You -are fresh from a night journey, I understand, which is in itself -a monotonous occupation." - -"Oh, my night could not be called monotonous," said he, and -laughed. He laughed very heartily, with a high, ringing note, -leaning back in his chair and shaking his sides. All my medical -instincts rose up against that laugh. - -"Stop it!" I cried; "pull yourself together!" and I poured out -some water from a caraffe. - -It was useless, however. He was off in one of those hysterical -outbursts which come upon a strong nature when some great crisis -is over and gone. Presently he came to himself once more, very -weary and pale-looking. - -"I have been making a fool of myself," he gasped. - -"Not at all. Drink this." I dashed some brandy into the water, -and the colour began to come back to his bloodless cheeks. - -"That's better!" said he. "And now, Doctor, perhaps you would -kindly attend to my thumb, or rather to the place where my thumb -used to be." - -He unwound the handkerchief and held out his hand. It gave even -my hardened nerves a shudder to look at it. There were four -protruding fingers and a horrid red, spongy surface where the -thumb should have been. It had been hacked or torn right out from -the roots. - -"Good heavens!" I cried, "this is a terrible injury. It must have -bled considerably." - -"Yes, it did. I fainted when it was done, and I think that I must -have been senseless for a long time. When I came to I found that -it was still bleeding, so I tied one end of my handkerchief very -tightly round the wrist and braced it up with a twig." - -"Excellent! You should have been a surgeon." - -"It is a question of hydraulics, you see, and came within my own -province." - -"This has been done," said I, examining the wound, "by a very -heavy and sharp instrument." - -"A thing like a cleaver," said he. - -"An accident, I presume?" - -"By no means." - -"What! a murderous attack?" - -"Very murderous indeed." - -"You horrify me." - -I sponged the wound, cleaned it, dressed it, and finally covered -it over with cotton wadding and carbolised bandages. He lay back -without wincing, though he bit his lip from time to time. - -"How is that?" I asked when I had finished. - -"Capital! Between your brandy and your bandage, I feel a new man. -I was very weak, but I have had a good deal to go through." - -"Perhaps you had better not speak of the matter. It is evidently -trying to your nerves." - -"Oh, no, not now. I shall have to tell my tale to the police; -but, between ourselves, if it were not for the convincing -evidence of this wound of mine, I should be surprised if they -believed my statement, for it is a very extraordinary one, and I -have not much in the way of proof with which to back it up; and, -even if they believe me, the clues which I can give them are so -vague that it is a question whether justice will be done." - -"Ha!" cried I, "if it is anything in the nature of a problem -which you desire to see solved, I should strongly recommend you -to come to my friend, Mr. Sherlock Holmes, before you go to the -official police." - -"Oh, I have heard of that fellow," answered my visitor, "and I -should be very glad if he would take the matter up, though of -course I must use the official police as well. Would you give me -an introduction to him?" - -"I'll do better. I'll take you round to him myself." - -"I should be immensely obliged to you." - -"We'll call a cab and go together. We shall just be in time to -have a little breakfast with him. Do you feel equal to it?" - -"Yes; I shall not feel easy until I have told my story." - -"Then my servant will call a cab, and I shall be with you in an -instant." I rushed upstairs, explained the matter shortly to my -wife, and in five minutes was inside a hansom, driving with my -new acquaintance to Baker Street. - -Sherlock Holmes was, as I expected, lounging about his -sitting-room in his dressing-gown, reading the agony column of The -Times and smoking his before-breakfast pipe, which was composed -of all the plugs and dottles left from his smokes of the day -before, all carefully dried and collected on the corner of the -mantelpiece. He received us in his quietly genial fashion, -ordered fresh rashers and eggs, and joined us in a hearty meal. -When it was concluded he settled our new acquaintance upon the -sofa, placed a pillow beneath his head, and laid a glass of -brandy and water within his reach. - -"It is easy to see that your experience has been no common one, -Mr. Hatherley," said he. "Pray, lie down there and make yourself -absolutely at home. Tell us what you can, but stop when you are -tired and keep up your strength with a little stimulant." - -"Thank you," said my patient, "but I have felt another man since -the doctor bandaged me, and I think that your breakfast has -completed the cure. I shall take up as little of your valuable -time as possible, so I shall start at once upon my peculiar -experiences." - -Holmes sat in his big armchair with the weary, heavy-lidded -expression which veiled his keen and eager nature, while I sat -opposite to him, and we listened in silence to the strange story -which our visitor detailed to us. - -"You must know," said he, "that I am an orphan and a bachelor, -residing alone in lodgings in London. By profession I am a -hydraulic engineer, and I have had considerable experience of my -work during the seven years that I was apprenticed to Venner & -Matheson, the well-known firm, of Greenwich. Two years ago, -having served my time, and having also come into a fair sum of -money through my poor father's death, I determined to start in -business for myself and took professional chambers in Victoria -Street. - -"I suppose that everyone finds his first independent start in -business a dreary experience. To me it has been exceptionally so. -During two years I have had three consultations and one small -job, and that is absolutely all that my profession has brought -me. My gross takings amount to 27 pounds 10s. Every day, from -nine in the morning until four in the afternoon, I waited in my -little den, until at last my heart began to sink, and I came to -believe that I should never have any practice at all. - -"Yesterday, however, just as I was thinking of leaving the -office, my clerk entered to say there was a gentleman waiting who -wished to see me upon business. He brought up a card, too, with -the name of 'Colonel Lysander Stark' engraved upon it. Close at -his heels came the colonel himself, a man rather over the middle -size, but of an exceeding thinness. I do not think that I have -ever seen so thin a man. His whole face sharpened away into nose -and chin, and the skin of his cheeks was drawn quite tense over -his outstanding bones. Yet this emaciation seemed to be his -natural habit, and due to no disease, for his eye was bright, his -step brisk, and his bearing assured. He was plainly but neatly -dressed, and his age, I should judge, would be nearer forty than -thirty. - -"'Mr. Hatherley?' said he, with something of a German accent. -'You have been recommended to me, Mr. Hatherley, as being a man -who is not only proficient in his profession but is also discreet -and capable of preserving a secret.' - -"I bowed, feeling as flattered as any young man would at such an -address. 'May I ask who it was who gave me so good a character?' - -"'Well, perhaps it is better that I should not tell you that just -at this moment. I have it from the same source that you are both -an orphan and a bachelor and are residing alone in London.' - -"'That is quite correct,' I answered; 'but you will excuse me if -I say that I cannot see how all this bears upon my professional -qualifications. I understand that it was on a professional matter -that you wished to speak to me?' - -"'Undoubtedly so. But you will find that all I say is really to -the point. I have a professional commission for you, but absolute -secrecy is quite essential--absolute secrecy, you understand, and -of course we may expect that more from a man who is alone than -from one who lives in the bosom of his family.' - -"'If I promise to keep a secret,' said I, 'you may absolutely -depend upon my doing so.' - -"He looked very hard at me as I spoke, and it seemed to me that I -had never seen so suspicious and questioning an eye. - -"'Do you promise, then?' said he at last. - -"'Yes, I promise.' - -"'Absolute and complete silence before, during, and after? No -reference to the matter at all, either in word or writing?' - -"'I have already given you my word.' - -"'Very good.' He suddenly sprang up, and darting like lightning -across the room he flung open the door. The passage outside was -empty. - -"'That's all right,' said he, coming back. 'I know that clerks are -sometimes curious as to their master's affairs. Now we can talk -in safety.' He drew up his chair very close to mine and began to -stare at me again with the same questioning and thoughtful look. - -"A feeling of repulsion, and of something akin to fear had begun -to rise within me at the strange antics of this fleshless man. -Even my dread of losing a client could not restrain me from -showing my impatience. - -"'I beg that you will state your business, sir,' said I; 'my time -is of value.' Heaven forgive me for that last sentence, but the -words came to my lips. - -"'How would fifty guineas for a night's work suit you?' he asked. - -"'Most admirably.' - -"'I say a night's work, but an hour's would be nearer the mark. I -simply want your opinion about a hydraulic stamping machine which -has got out of gear. If you show us what is wrong we shall soon -set it right ourselves. What do you think of such a commission as -that?' - -"'The work appears to be light and the pay munificent.' - -"'Precisely so. We shall want you to come to-night by the last -train.' - -"'Where to?' - -"'To Eyford, in Berkshire. It is a little place near the borders -of Oxfordshire, and within seven miles of Reading. There is a -train from Paddington which would bring you there at about -11:15.' - -"'Very good.' - -"'I shall come down in a carriage to meet you.' - -"'There is a drive, then?' - -"'Yes, our little place is quite out in the country. It is a good -seven miles from Eyford Station.' - -"'Then we can hardly get there before midnight. I suppose there -would be no chance of a train back. I should be compelled to stop -the night.' - -"'Yes, we could easily give you a shake-down.' - -"'That is very awkward. Could I not come at some more convenient -hour?' - -"'We have judged it best that you should come late. It is to -recompense you for any inconvenience that we are paying to you, a -young and unknown man, a fee which would buy an opinion from the -very heads of your profession. Still, of course, if you would -like to draw out of the business, there is plenty of time to do -so.' - -"I thought of the fifty guineas, and of how very useful they -would be to me. 'Not at all,' said I, 'I shall be very happy to -accommodate myself to your wishes. I should like, however, to -understand a little more clearly what it is that you wish me to -do.' - -"'Quite so. It is very natural that the pledge of secrecy which -we have exacted from you should have aroused your curiosity. I -have no wish to commit you to anything without your having it all -laid before you. I suppose that we are absolutely safe from -eavesdroppers?' - -"'Entirely.' - -"'Then the matter stands thus. You are probably aware that -fuller's-earth is a valuable product, and that it is only found -in one or two places in England?' - -"'I have heard so.' - -"'Some little time ago I bought a small place--a very small -place--within ten miles of Reading. I was fortunate enough to -discover that there was a deposit of fuller's-earth in one of my -fields. On examining it, however, I found that this deposit was a -comparatively small one, and that it formed a link between two -very much larger ones upon the right and left--both of them, -however, in the grounds of my neighbours. These good people were -absolutely ignorant that their land contained that which was -quite as valuable as a gold-mine. Naturally, it was to my -interest to buy their land before they discovered its true value, -but unfortunately I had no capital by which I could do this. I -took a few of my friends into the secret, however, and they -suggested that we should quietly and secretly work our own little -deposit and that in this way we should earn the money which would -enable us to buy the neighbouring fields. This we have now been -doing for some time, and in order to help us in our operations we -erected a hydraulic press. This press, as I have already -explained, has got out of order, and we wish your advice upon the -subject. We guard our secret very jealously, however, and if it -once became known that we had hydraulic engineers coming to our -little house, it would soon rouse inquiry, and then, if the facts -came out, it would be good-bye to any chance of getting these -fields and carrying out our plans. That is why I have made you -promise me that you will not tell a human being that you are -going to Eyford to-night. I hope that I make it all plain?' - -"'I quite follow you,' said I. 'The only point which I could not -quite understand was what use you could make of a hydraulic press -in excavating fuller's-earth, which, as I understand, is dug out -like gravel from a pit.' - -"'Ah!' said he carelessly, 'we have our own process. We compress -the earth into bricks, so as to remove them without revealing -what they are. But that is a mere detail. I have taken you fully -into my confidence now, Mr. Hatherley, and I have shown you how I -trust you.' He rose as he spoke. 'I shall expect you, then, at -Eyford at 11:15.' - -"'I shall certainly be there.' - -"'And not a word to a soul.' He looked at me with a last long, -questioning gaze, and then, pressing my hand in a cold, dank -grasp, he hurried from the room. - -"Well, when I came to think it all over in cool blood I was very -much astonished, as you may both think, at this sudden commission -which had been intrusted to me. On the one hand, of course, I was -glad, for the fee was at least tenfold what I should have asked -had I set a price upon my own services, and it was possible that -this order might lead to other ones. On the other hand, the face -and manner of my patron had made an unpleasant impression upon -me, and I could not think that his explanation of the -fuller's-earth was sufficient to explain the necessity for my -coming at midnight, and his extreme anxiety lest I should tell -anyone of my errand. However, I threw all fears to the winds, ate -a hearty supper, drove to Paddington, and started off, having -obeyed to the letter the injunction as to holding my tongue. - -"At Reading I had to change not only my carriage but my station. -However, I was in time for the last train to Eyford, and I -reached the little dim-lit station after eleven o'clock. I was the -only passenger who got out there, and there was no one upon the -platform save a single sleepy porter with a lantern. As I passed -out through the wicket gate, however, I found my acquaintance of -the morning waiting in the shadow upon the other side. Without a -word he grasped my arm and hurried me into a carriage, the door -of which was standing open. He drew up the windows on either -side, tapped on the wood-work, and away we went as fast as the -horse could go." - -"One horse?" interjected Holmes. - -"Yes, only one." - -"Did you observe the colour?" - -"Yes, I saw it by the side-lights when I was stepping into the -carriage. It was a chestnut." - -"Tired-looking or fresh?" - -"Oh, fresh and glossy." - -"Thank you. I am sorry to have interrupted you. Pray continue -your most interesting statement." - -"Away we went then, and we drove for at least an hour. Colonel -Lysander Stark had said that it was only seven miles, but I -should think, from the rate that we seemed to go, and from the -time that we took, that it must have been nearer twelve. He sat -at my side in silence all the time, and I was aware, more than -once when I glanced in his direction, that he was looking at me -with great intensity. The country roads seem to be not very good -in that part of the world, for we lurched and jolted terribly. I -tried to look out of the windows to see something of where we -were, but they were made of frosted glass, and I could make out -nothing save the occasional bright blur of a passing light. Now -and then I hazarded some remark to break the monotony of the -journey, but the colonel answered only in monosyllables, and the -conversation soon flagged. At last, however, the bumping of the -road was exchanged for the crisp smoothness of a gravel-drive, -and the carriage came to a stand. Colonel Lysander Stark sprang -out, and, as I followed after him, pulled me swiftly into a porch -which gaped in front of us. We stepped, as it were, right out of -the carriage and into the hall, so that I failed to catch the -most fleeting glance of the front of the house. The instant that -I had crossed the threshold the door slammed heavily behind us, -and I heard faintly the rattle of the wheels as the carriage -drove away. - -"It was pitch dark inside the house, and the colonel fumbled -about looking for matches and muttering under his breath. -Suddenly a door opened at the other end of the passage, and a -long, golden bar of light shot out in our direction. It grew -broader, and a woman appeared with a lamp in her hand, which she -held above her head, pushing her face forward and peering at us. -I could see that she was pretty, and from the gloss with which -the light shone upon her dark dress I knew that it was a rich -material. She spoke a few words in a foreign tongue in a tone as -though asking a question, and when my companion answered in a -gruff monosyllable she gave such a start that the lamp nearly -fell from her hand. Colonel Stark went up to her, whispered -something in her ear, and then, pushing her back into the room -from whence she had come, he walked towards me again with the -lamp in his hand. - -"'Perhaps you will have the kindness to wait in this room for a -few minutes,' said he, throwing open another door. It was a -quiet, little, plainly furnished room, with a round table in the -centre, on which several German books were scattered. Colonel -Stark laid down the lamp on the top of a harmonium beside the -door. 'I shall not keep you waiting an instant,' said he, and -vanished into the darkness. - -"I glanced at the books upon the table, and in spite of my -ignorance of German I could see that two of them were treatises -on science, the others being volumes of poetry. Then I walked -across to the window, hoping that I might catch some glimpse of -the country-side, but an oak shutter, heavily barred, was folded -across it. It was a wonderfully silent house. There was an old -clock ticking loudly somewhere in the passage, but otherwise -everything was deadly still. A vague feeling of uneasiness began -to steal over me. Who were these German people, and what were -they doing living in this strange, out-of-the-way place? And -where was the place? I was ten miles or so from Eyford, that was -all I knew, but whether north, south, east, or west I had no -idea. For that matter, Reading, and possibly other large towns, -were within that radius, so the place might not be so secluded, -after all. Yet it was quite certain, from the absolute stillness, -that we were in the country. I paced up and down the room, -humming a tune under my breath to keep up my spirits and feeling -that I was thoroughly earning my fifty-guinea fee. - -"Suddenly, without any preliminary sound in the midst of the -utter stillness, the door of my room swung slowly open. The woman -was standing in the aperture, the darkness of the hall behind -her, the yellow light from my lamp beating upon her eager and -beautiful face. I could see at a glance that she was sick with -fear, and the sight sent a chill to my own heart. She held up one -shaking finger to warn me to be silent, and she shot a few -whispered words of broken English at me, her eyes glancing back, -like those of a frightened horse, into the gloom behind her. - -"'I would go,' said she, trying hard, as it seemed to me, to -speak calmly; 'I would go. I should not stay here. There is no -good for you to do.' - -"'But, madam,' said I, 'I have not yet done what I came for. I -cannot possibly leave until I have seen the machine.' - -"'It is not worth your while to wait,' she went on. 'You can pass -through the door; no one hinders.' And then, seeing that I smiled -and shook my head, she suddenly threw aside her constraint and -made a step forward, with her hands wrung together. 'For the love -of Heaven!' she whispered, 'get away from here before it is too -late!' - -"But I am somewhat headstrong by nature, and the more ready to -engage in an affair when there is some obstacle in the way. I -thought of my fifty-guinea fee, of my wearisome journey, and of -the unpleasant night which seemed to be before me. Was it all to -go for nothing? Why should I slink away without having carried -out my commission, and without the payment which was my due? This -woman might, for all I knew, be a monomaniac. With a stout -bearing, therefore, though her manner had shaken me more than I -cared to confess, I still shook my head and declared my intention -of remaining where I was. She was about to renew her entreaties -when a door slammed overhead, and the sound of several footsteps -was heard upon the stairs. She listened for an instant, threw up -her hands with a despairing gesture, and vanished as suddenly and -as noiselessly as she had come. - -"The newcomers were Colonel Lysander Stark and a short thick man -with a chinchilla beard growing out of the creases of his double -chin, who was introduced to me as Mr. Ferguson. - -"'This is my secretary and manager,' said the colonel. 'By the -way, I was under the impression that I left this door shut just -now. I fear that you have felt the draught.' - -"'On the contrary,' said I, 'I opened the door myself because I -felt the room to be a little close.' - -"He shot one of his suspicious looks at me. 'Perhaps we had -better proceed to business, then,' said he. 'Mr. Ferguson and I -will take you up to see the machine.' - -"'I had better put my hat on, I suppose.' - -"'Oh, no, it is in the house.' - -"'What, you dig fuller's-earth in the house?' - -"'No, no. This is only where we compress it. But never mind that. -All we wish you to do is to examine the machine and to let us -know what is wrong with it.' - -"We went upstairs together, the colonel first with the lamp, the -fat manager and I behind him. It was a labyrinth of an old house, -with corridors, passages, narrow winding staircases, and little -low doors, the thresholds of which were hollowed out by the -generations who had crossed them. There were no carpets and no -signs of any furniture above the ground floor, while the plaster -was peeling off the walls, and the damp was breaking through in -green, unhealthy blotches. I tried to put on as unconcerned an -air as possible, but I had not forgotten the warnings of the -lady, even though I disregarded them, and I kept a keen eye upon -my two companions. Ferguson appeared to be a morose and silent -man, but I could see from the little that he said that he was at -least a fellow-countryman. - -"Colonel Lysander Stark stopped at last before a low door, which -he unlocked. Within was a small, square room, in which the three -of us could hardly get at one time. Ferguson remained outside, -and the colonel ushered me in. - -"'We are now,' said he, 'actually within the hydraulic press, and -it would be a particularly unpleasant thing for us if anyone were -to turn it on. The ceiling of this small chamber is really the -end of the descending piston, and it comes down with the force of -many tons upon this metal floor. There are small lateral columns -of water outside which receive the force, and which transmit and -multiply it in the manner which is familiar to you. The machine -goes readily enough, but there is some stiffness in the working -of it, and it has lost a little of its force. Perhaps you will -have the goodness to look it over and to show us how we can set -it right.' - -"I took the lamp from him, and I examined the machine very -thoroughly. It was indeed a gigantic one, and capable of -exercising enormous pressure. When I passed outside, however, and -pressed down the levers which controlled it, I knew at once by -the whishing sound that there was a slight leakage, which allowed -a regurgitation of water through one of the side cylinders. An -examination showed that one of the india-rubber bands which was -round the head of a driving-rod had shrunk so as not quite to -fill the socket along which it worked. This was clearly the cause -of the loss of power, and I pointed it out to my companions, who -followed my remarks very carefully and asked several practical -questions as to how they should proceed to set it right. When I -had made it clear to them, I returned to the main chamber of the -machine and took a good look at it to satisfy my own curiosity. -It was obvious at a glance that the story of the fuller's-earth -was the merest fabrication, for it would be absurd to suppose -that so powerful an engine could be designed for so inadequate a -purpose. The walls were of wood, but the floor consisted of a -large iron trough, and when I came to examine it I could see a -crust of metallic deposit all over it. I had stooped and was -scraping at this to see exactly what it was when I heard a -muttered exclamation in German and saw the cadaverous face of the -colonel looking down at me. - -"'What are you doing there?' he asked. - -"I felt angry at having been tricked by so elaborate a story as -that which he had told me. 'I was admiring your fuller's-earth,' -said I; 'I think that I should be better able to advise you as to -your machine if I knew what the exact purpose was for which it -was used.' - -"The instant that I uttered the words I regretted the rashness of -my speech. His face set hard, and a baleful light sprang up in -his grey eyes. - -"'Very well,' said he, 'you shall know all about the machine.' He -took a step backward, slammed the little door, and turned the key -in the lock. I rushed towards it and pulled at the handle, but it -was quite secure, and did not give in the least to my kicks and -shoves. 'Hullo!' I yelled. 'Hullo! Colonel! Let me out!' - -"And then suddenly in the silence I heard a sound which sent my -heart into my mouth. It was the clank of the levers and the swish -of the leaking cylinder. He had set the engine at work. The lamp -still stood upon the floor where I had placed it when examining -the trough. By its light I saw that the black ceiling was coming -down upon me, slowly, jerkily, but, as none knew better than -myself, with a force which must within a minute grind me to a -shapeless pulp. I threw myself, screaming, against the door, and -dragged with my nails at the lock. I implored the colonel to let -me out, but the remorseless clanking of the levers drowned my -cries. The ceiling was only a foot or two above my head, and with -my hand upraised I could feel its hard, rough surface. Then it -flashed through my mind that the pain of my death would depend -very much upon the position in which I met it. If I lay on my -face the weight would come upon my spine, and I shuddered to -think of that dreadful snap. Easier the other way, perhaps; and -yet, had I the nerve to lie and look up at that deadly black -shadow wavering down upon me? Already I was unable to stand -erect, when my eye caught something which brought a gush of hope -back to my heart. - -"I have said that though the floor and ceiling were of iron, the -walls were of wood. As I gave a last hurried glance around, I saw -a thin line of yellow light between two of the boards, which -broadened and broadened as a small panel was pushed backward. For -an instant I could hardly believe that here was indeed a door -which led away from death. The next instant I threw myself -through, and lay half-fainting upon the other side. The panel had -closed again behind me, but the crash of the lamp, and a few -moments afterwards the clang of the two slabs of metal, told me -how narrow had been my escape. - -"I was recalled to myself by a frantic plucking at my wrist, and -I found myself lying upon the stone floor of a narrow corridor, -while a woman bent over me and tugged at me with her left hand, -while she held a candle in her right. It was the same good friend -whose warning I had so foolishly rejected. - -"'Come! come!' she cried breathlessly. 'They will be here in a -moment. They will see that you are not there. Oh, do not waste -the so-precious time, but come!' - -"This time, at least, I did not scorn her advice. I staggered to -my feet and ran with her along the corridor and down a winding -stair. The latter led to another broad passage, and just as we -reached it we heard the sound of running feet and the shouting of -two voices, one answering the other from the floor on which we -were and from the one beneath. My guide stopped and looked about -her like one who is at her wit's end. Then she threw open a door -which led into a bedroom, through the window of which the moon -was shining brightly. - -"'It is your only chance,' said she. 'It is high, but it may be -that you can jump it.' - -"As she spoke a light sprang into view at the further end of the -passage, and I saw the lean figure of Colonel Lysander Stark -rushing forward with a lantern in one hand and a weapon like a -butcher's cleaver in the other. I rushed across the bedroom, -flung open the window, and looked out. How quiet and sweet and -wholesome the garden looked in the moonlight, and it could not be -more than thirty feet down. I clambered out upon the sill, but I -hesitated to jump until I should have heard what passed between -my saviour and the ruffian who pursued me. If she were ill-used, -then at any risks I was determined to go back to her assistance. -The thought had hardly flashed through my mind before he was at -the door, pushing his way past her; but she threw her arms round -him and tried to hold him back. - -"'Fritz! Fritz!' she cried in English, 'remember your promise -after the last time. You said it should not be again. He will be -silent! Oh, he will be silent!' - -"'You are mad, Elise!' he shouted, struggling to break away from -her. 'You will be the ruin of us. He has seen too much. Let me -pass, I say!' He dashed her to one side, and, rushing to the -window, cut at me with his heavy weapon. I had let myself go, and -was hanging by the hands to the sill, when his blow fell. I was -conscious of a dull pain, my grip loosened, and I fell into the -garden below. - -"I was shaken but not hurt by the fall; so I picked myself up and -rushed off among the bushes as hard as I could run, for I -understood that I was far from being out of danger yet. Suddenly, -however, as I ran, a deadly dizziness and sickness came over me. -I glanced down at my hand, which was throbbing painfully, and -then, for the first time, saw that my thumb had been cut off and -that the blood was pouring from my wound. I endeavoured to tie my -handkerchief round it, but there came a sudden buzzing in my -ears, and next moment I fell in a dead faint among the -rose-bushes. - -"How long I remained unconscious I cannot tell. It must have been -a very long time, for the moon had sunk, and a bright morning was -breaking when I came to myself. My clothes were all sodden with -dew, and my coat-sleeve was drenched with blood from my wounded -thumb. The smarting of it recalled in an instant all the -particulars of my night's adventure, and I sprang to my feet with -the feeling that I might hardly yet be safe from my pursuers. But -to my astonishment, when I came to look round me, neither house -nor garden were to be seen. I had been lying in an angle of the -hedge close by the highroad, and just a little lower down was a -long building, which proved, upon my approaching it, to be the -very station at which I had arrived upon the previous night. Were -it not for the ugly wound upon my hand, all that had passed -during those dreadful hours might have been an evil dream. - -"Half dazed, I went into the station and asked about the morning -train. There would be one to Reading in less than an hour. The -same porter was on duty, I found, as had been there when I -arrived. I inquired of him whether he had ever heard of Colonel -Lysander Stark. The name was strange to him. Had he observed a -carriage the night before waiting for me? No, he had not. Was -there a police-station anywhere near? There was one about three -miles off. - -"It was too far for me to go, weak and ill as I was. I determined -to wait until I got back to town before telling my story to the -police. It was a little past six when I arrived, so I went first -to have my wound dressed, and then the doctor was kind enough to -bring me along here. I put the case into your hands and shall do -exactly what you advise." - -We both sat in silence for some little time after listening to -this extraordinary narrative. Then Sherlock Holmes pulled down -from the shelf one of the ponderous commonplace books in which he -placed his cuttings. - -"Here is an advertisement which will interest you," said he. "It -appeared in all the papers about a year ago. Listen to this: -'Lost, on the 9th inst., Mr. Jeremiah Hayling, aged -twenty-six, a hydraulic engineer. Left his lodgings at ten -o'clock at night, and has not been heard of since. Was -dressed in,' etc., etc. Ha! That represents the last time that -the colonel needed to have his machine overhauled, I fancy." - -"Good heavens!" cried my patient. "Then that explains what the -girl said." - -"Undoubtedly. It is quite clear that the colonel was a cool and -desperate man, who was absolutely determined that nothing should -stand in the way of his little game, like those out-and-out -pirates who will leave no survivor from a captured ship. Well, -every moment now is precious, so if you feel equal to it we shall -go down to Scotland Yard at once as a preliminary to starting for -Eyford." - -Some three hours or so afterwards we were all in the train -together, bound from Reading to the little Berkshire village. -There were Sherlock Holmes, the hydraulic engineer, Inspector -Bradstreet, of Scotland Yard, a plain-clothes man, and myself. -Bradstreet had spread an ordnance map of the county out upon the -seat and was busy with his compasses drawing a circle with Eyford -for its centre. - -"There you are," said he. "That circle is drawn at a radius of -ten miles from the village. The place we want must be somewhere -near that line. You said ten miles, I think, sir." - -"It was an hour's good drive." - -"And you think that they brought you back all that way when you -were unconscious?" - -"They must have done so. I have a confused memory, too, of having -been lifted and conveyed somewhere." - -"What I cannot understand," said I, "is why they should have -spared you when they found you lying fainting in the garden. -Perhaps the villain was softened by the woman's entreaties." - -"I hardly think that likely. I never saw a more inexorable face -in my life." - -"Oh, we shall soon clear up all that," said Bradstreet. "Well, I -have drawn my circle, and I only wish I knew at what point upon -it the folk that we are in search of are to be found." - -"I think I could lay my finger on it," said Holmes quietly. - -"Really, now!" cried the inspector, "you have formed your -opinion! Come, now, we shall see who agrees with you. I say it is -south, for the country is more deserted there." - -"And I say east," said my patient. - -"I am for west," remarked the plain-clothes man. "There are -several quiet little villages up there." - -"And I am for north," said I, "because there are no hills there, -and our friend says that he did not notice the carriage go up -any." - -"Come," cried the inspector, laughing; "it's a very pretty -diversity of opinion. We have boxed the compass among us. Who do -you give your casting vote to?" - -"You are all wrong." - -"But we can't all be." - -"Oh, yes, you can. This is my point." He placed his finger in the -centre of the circle. "This is where we shall find them." - -"But the twelve-mile drive?" gasped Hatherley. - -"Six out and six back. Nothing simpler. You say yourself that the -horse was fresh and glossy when you got in. How could it be that -if it had gone twelve miles over heavy roads?" - -"Indeed, it is a likely ruse enough," observed Bradstreet -thoughtfully. "Of course there can be no doubt as to the nature -of this gang." - -"None at all," said Holmes. "They are coiners on a large scale, -and have used the machine to form the amalgam which has taken the -place of silver." - -"We have known for some time that a clever gang was at work," -said the inspector. "They have been turning out half-crowns by -the thousand. We even traced them as far as Reading, but could -get no farther, for they had covered their traces in a way that -showed that they were very old hands. But now, thanks to this -lucky chance, I think that we have got them right enough." - -But the inspector was mistaken, for those criminals were not -destined to fall into the hands of justice. As we rolled into -Eyford Station we saw a gigantic column of smoke which streamed -up from behind a small clump of trees in the neighbourhood and -hung like an immense ostrich feather over the landscape. - -"A house on fire?" asked Bradstreet as the train steamed off -again on its way. - -"Yes, sir!" said the station-master. - -"When did it break out?" - -"I hear that it was during the night, sir, but it has got worse, -and the whole place is in a blaze." - -"Whose house is it?" - -"Dr. Becher's." - -"Tell me," broke in the engineer, "is Dr. Becher a German, very -thin, with a long, sharp nose?" - -The station-master laughed heartily. "No, sir, Dr. Becher is an -Englishman, and there isn't a man in the parish who has a -better-lined waistcoat. But he has a gentleman staying with him, -a patient, as I understand, who is a foreigner, and he looks as -if a little good Berkshire beef would do him no harm." - -The station-master had not finished his speech before we were all -hastening in the direction of the fire. The road topped a low -hill, and there was a great widespread whitewashed building in -front of us, spouting fire at every chink and window, while in -the garden in front three fire-engines were vainly striving to -keep the flames under. - -"That's it!" cried Hatherley, in intense excitement. "There is -the gravel-drive, and there are the rose-bushes where I lay. That -second window is the one that I jumped from." - -"Well, at least," said Holmes, "you have had your revenge upon -them. There can be no question that it was your oil-lamp which, -when it was crushed in the press, set fire to the wooden walls, -though no doubt they were too excited in the chase after you to -observe it at the time. Now keep your eyes open in this crowd for -your friends of last night, though I very much fear that they are -a good hundred miles off by now." - -And Holmes' fears came to be realised, for from that day to this -no word has ever been heard either of the beautiful woman, the -sinister German, or the morose Englishman. Early that morning a -peasant had met a cart containing several people and some very -bulky boxes driving rapidly in the direction of Reading, but -there all traces of the fugitives disappeared, and even Holmes' -ingenuity failed ever to discover the least clue as to their -whereabouts. - -The firemen had been much perturbed at the strange arrangements -which they had found within, and still more so by discovering a -newly severed human thumb upon a window-sill of the second floor. -About sunset, however, their efforts were at last successful, and -they subdued the flames, but not before the roof had fallen in, -and the whole place been reduced to such absolute ruin that, save -some twisted cylinders and iron piping, not a trace remained of -the machinery which had cost our unfortunate acquaintance so -dearly. Large masses of nickel and of tin were discovered stored -in an out-house, but no coins were to be found, which may have -explained the presence of those bulky boxes which have been -already referred to. - -How our hydraulic engineer had been conveyed from the garden to -the spot where he recovered his senses might have remained -forever a mystery were it not for the soft mould, which told us a -very plain tale. He had evidently been carried down by two -persons, one of whom had remarkably small feet and the other -unusually large ones. On the whole, it was most probable that the -silent Englishman, being less bold or less murderous than his -companion, had assisted the woman to bear the unconscious man out -of the way of danger. - -"Well," said our engineer ruefully as we took our seats to return -once more to London, "it has been a pretty business for me! I -have lost my thumb and I have lost a fifty-guinea fee, and what -have I gained?" - -"Experience," said Holmes, laughing. "Indirectly it may be of -value, you know; you have only to put it into words to gain the -reputation of being excellent company for the remainder of your -existence." - - - -X. THE ADVENTURE OF THE NOBLE BACHELOR - -The Lord St. Simon marriage, and its curious termination, have -long ceased to be a subject of interest in those exalted circles -in which the unfortunate bridegroom moves. Fresh scandals have -eclipsed it, and their more piquant details have drawn the -gossips away from this four-year-old drama. As I have reason to -believe, however, that the full facts have never been revealed to -the general public, and as my friend Sherlock Holmes had a -considerable share in clearing the matter up, I feel that no -memoir of him would be complete without some little sketch of -this remarkable episode. - -It was a few weeks before my own marriage, during the days when I -was still sharing rooms with Holmes in Baker Street, that he came -home from an afternoon stroll to find a letter on the table -waiting for him. I had remained indoors all day, for the weather -had taken a sudden turn to rain, with high autumnal winds, and -the Jezail bullet which I had brought back in one of my limbs as -a relic of my Afghan campaign throbbed with dull persistence. -With my body in one easy-chair and my legs upon another, I had -surrounded myself with a cloud of newspapers until at last, -saturated with the news of the day, I tossed them all aside and -lay listless, watching the huge crest and monogram upon the -envelope upon the table and wondering lazily who my friend's -noble correspondent could be. - -"Here is a very fashionable epistle," I remarked as he entered. -"Your morning letters, if I remember right, were from a -fish-monger and a tide-waiter." - -"Yes, my correspondence has certainly the charm of variety," he -answered, smiling, "and the humbler are usually the more -interesting. This looks like one of those unwelcome social -summonses which call upon a man either to be bored or to lie." - -He broke the seal and glanced over the contents. - -"Oh, come, it may prove to be something of interest, after all." - -"Not social, then?" - -"No, distinctly professional." - -"And from a noble client?" - -"One of the highest in England." - -"My dear fellow, I congratulate you." - -"I assure you, Watson, without affectation, that the status of my -client is a matter of less moment to me than the interest of his -case. It is just possible, however, that that also may not be -wanting in this new investigation. You have been reading the -papers diligently of late, have you not?" - -"It looks like it," said I ruefully, pointing to a huge bundle in -the corner. "I have had nothing else to do." - -"It is fortunate, for you will perhaps be able to post me up. I -read nothing except the criminal news and the agony column. The -latter is always instructive. But if you have followed recent -events so closely you must have read about Lord St. Simon and his -wedding?" - -"Oh, yes, with the deepest interest." - -"That is well. The letter which I hold in my hand is from Lord -St. Simon. I will read it to you, and in return you must turn -over these papers and let me have whatever bears upon the matter. -This is what he says: - -"'MY DEAR MR. SHERLOCK HOLMES:--Lord Backwater tells me that I -may place implicit reliance upon your judgment and discretion. I -have determined, therefore, to call upon you and to consult you -in reference to the very painful event which has occurred in -connection with my wedding. Mr. Lestrade, of Scotland Yard, is -acting already in the matter, but he assures me that he sees no -objection to your co-operation, and that he even thinks that -it might be of some assistance. I will call at four o'clock in -the afternoon, and, should you have any other engagement at that -time, I hope that you will postpone it, as this matter is of -paramount importance. Yours faithfully, ST. SIMON.' - -"It is dated from Grosvenor Mansions, written with a quill pen, -and the noble lord has had the misfortune to get a smear of ink -upon the outer side of his right little finger," remarked Holmes -as he folded up the epistle. - -"He says four o'clock. It is three now. He will be here in an -hour." - -"Then I have just time, with your assistance, to get clear upon -the subject. Turn over those papers and arrange the extracts in -their order of time, while I take a glance as to who our client -is." He picked a red-covered volume from a line of books of -reference beside the mantelpiece. "Here he is," said he, sitting -down and flattening it out upon his knee. "'Lord Robert Walsingham -de Vere St. Simon, second son of the Duke of Balmoral.' Hum! 'Arms: -Azure, three caltrops in chief over a fess sable. Born in 1846.' -He's forty-one years of age, which is mature for marriage. Was -Under-Secretary for the colonies in a late administration. The -Duke, his father, was at one time Secretary for Foreign Affairs. -They inherit Plantagenet blood by direct descent, and Tudor on -the distaff side. Ha! Well, there is nothing very instructive in -all this. I think that I must turn to you Watson, for something -more solid." - -"I have very little difficulty in finding what I want," said I, -"for the facts are quite recent, and the matter struck me as -remarkable. I feared to refer them to you, however, as I knew -that you had an inquiry on hand and that you disliked the -intrusion of other matters." - -"Oh, you mean the little problem of the Grosvenor Square -furniture van. That is quite cleared up now--though, indeed, it -was obvious from the first. Pray give me the results of your -newspaper selections." - -"Here is the first notice which I can find. It is in the personal -column of the Morning Post, and dates, as you see, some weeks -back: 'A marriage has been arranged,' it says, 'and will, if -rumour is correct, very shortly take place, between Lord Robert -St. Simon, second son of the Duke of Balmoral, and Miss Hatty -Doran, the only daughter of Aloysius Doran. Esq., of San -Francisco, Cal., U.S.A.' That is all." - -"Terse and to the point," remarked Holmes, stretching his long, -thin legs towards the fire. - -"There was a paragraph amplifying this in one of the society -papers of the same week. Ah, here it is: 'There will soon be a -call for protection in the marriage market, for the present -free-trade principle appears to tell heavily against our home -product. One by one the management of the noble houses of Great -Britain is passing into the hands of our fair cousins from across -the Atlantic. An important addition has been made during the last -week to the list of the prizes which have been borne away by -these charming invaders. Lord St. Simon, who has shown himself -for over twenty years proof against the little god's arrows, has -now definitely announced his approaching marriage with Miss Hatty -Doran, the fascinating daughter of a California millionaire. Miss -Doran, whose graceful figure and striking face attracted much -attention at the Westbury House festivities, is an only child, -and it is currently reported that her dowry will run to -considerably over the six figures, with expectancies for the -future. As it is an open secret that the Duke of Balmoral has -been compelled to sell his pictures within the last few years, -and as Lord St. Simon has no property of his own save the small -estate of Birchmoor, it is obvious that the Californian heiress -is not the only gainer by an alliance which will enable her to -make the easy and common transition from a Republican lady to a -British peeress.'" - -"Anything else?" asked Holmes, yawning. - -"Oh, yes; plenty. Then there is another note in the Morning Post -to say that the marriage would be an absolutely quiet one, that it -would be at St. George's, Hanover Square, that only half a dozen -intimate friends would be invited, and that the party would -return to the furnished house at Lancaster Gate which has been -taken by Mr. Aloysius Doran. Two days later--that is, on -Wednesday last--there is a curt announcement that the wedding had -taken place, and that the honeymoon would be passed at Lord -Backwater's place, near Petersfield. Those are all the notices -which appeared before the disappearance of the bride." - -"Before the what?" asked Holmes with a start. - -"The vanishing of the lady." - -"When did she vanish, then?" - -"At the wedding breakfast." - -"Indeed. This is more interesting than it promised to be; quite -dramatic, in fact." - -"Yes; it struck me as being a little out of the common." - -"They often vanish before the ceremony, and occasionally during -the honeymoon; but I cannot call to mind anything quite so prompt -as this. Pray let me have the details." - -"I warn you that they are very incomplete." - -"Perhaps we may make them less so." - -"Such as they are, they are set forth in a single article of a -morning paper of yesterday, which I will read to you. It is -headed, 'Singular Occurrence at a Fashionable Wedding': - -"'The family of Lord Robert St. Simon has been thrown into the -greatest consternation by the strange and painful episodes which -have taken place in connection with his wedding. The ceremony, as -shortly announced in the papers of yesterday, occurred on the -previous morning; but it is only now that it has been possible to -confirm the strange rumours which have been so persistently -floating about. In spite of the attempts of the friends to hush -the matter up, so much public attention has now been drawn to it -that no good purpose can be served by affecting to disregard what -is a common subject for conversation. - -"'The ceremony, which was performed at St. George's, Hanover -Square, was a very quiet one, no one being present save the -father of the bride, Mr. Aloysius Doran, the Duchess of Balmoral, -Lord Backwater, Lord Eustace and Lady Clara St. Simon (the -younger brother and sister of the bridegroom), and Lady Alicia -Whittington. The whole party proceeded afterwards to the house of -Mr. Aloysius Doran, at Lancaster Gate, where breakfast had been -prepared. It appears that some little trouble was caused by a -woman, whose name has not been ascertained, who endeavoured to -force her way into the house after the bridal party, alleging -that she had some claim upon Lord St. Simon. It was only after a -painful and prolonged scene that she was ejected by the butler -and the footman. The bride, who had fortunately entered the house -before this unpleasant interruption, had sat down to breakfast -with the rest, when she complained of a sudden indisposition and -retired to her room. Her prolonged absence having caused some -comment, her father followed her, but learned from her maid that -she had only come up to her chamber for an instant, caught up an -ulster and bonnet, and hurried down to the passage. One of the -footmen declared that he had seen a lady leave the house thus -apparelled, but had refused to credit that it was his mistress, -believing her to be with the company. On ascertaining that his -daughter had disappeared, Mr. Aloysius Doran, in conjunction with -the bridegroom, instantly put themselves in communication with -the police, and very energetic inquiries are being made, which -will probably result in a speedy clearing up of this very -singular business. Up to a late hour last night, however, nothing -had transpired as to the whereabouts of the missing lady. There -are rumours of foul play in the matter, and it is said that the -police have caused the arrest of the woman who had caused the -original disturbance, in the belief that, from jealousy or some -other motive, she may have been concerned in the strange -disappearance of the bride.'" - -"And is that all?" - -"Only one little item in another of the morning papers, but it is -a suggestive one." - -"And it is--" - -"That Miss Flora Millar, the lady who had caused the disturbance, -has actually been arrested. It appears that she was formerly a -danseuse at the Allegro, and that she has known the bridegroom -for some years. There are no further particulars, and the whole -case is in your hands now--so far as it has been set forth in the -public press." - -"And an exceedingly interesting case it appears to be. I would -not have missed it for worlds. But there is a ring at the bell, -Watson, and as the clock makes it a few minutes after four, I -have no doubt that this will prove to be our noble client. Do not -dream of going, Watson, for I very much prefer having a witness, -if only as a check to my own memory." - -"Lord Robert St. Simon," announced our page-boy, throwing open -the door. A gentleman entered, with a pleasant, cultured face, -high-nosed and pale, with something perhaps of petulance about -the mouth, and with the steady, well-opened eye of a man whose -pleasant lot it had ever been to command and to be obeyed. His -manner was brisk, and yet his general appearance gave an undue -impression of age, for he had a slight forward stoop and a little -bend of the knees as he walked. His hair, too, as he swept off -his very curly-brimmed hat, was grizzled round the edges and thin -upon the top. As to his dress, it was careful to the verge of -foppishness, with high collar, black frock-coat, white waistcoat, -yellow gloves, patent-leather shoes, and light-coloured gaiters. -He advanced slowly into the room, turning his head from left to -right, and swinging in his right hand the cord which held his -golden eyeglasses. - -"Good-day, Lord St. Simon," said Holmes, rising and bowing. "Pray -take the basket-chair. This is my friend and colleague, Dr. -Watson. Draw up a little to the fire, and we will talk this -matter over." - -"A most painful matter to me, as you can most readily imagine, -Mr. Holmes. I have been cut to the quick. I understand that you -have already managed several delicate cases of this sort, sir, -though I presume that they were hardly from the same class of -society." - -"No, I am descending." - -"I beg pardon." - -"My last client of the sort was a king." - -"Oh, really! I had no idea. And which king?" - -"The King of Scandinavia." - -"What! Had he lost his wife?" - -"You can understand," said Holmes suavely, "that I extend to the -affairs of my other clients the same secrecy which I promise to -you in yours." - -"Of course! Very right! very right! I'm sure I beg pardon. As to -my own case, I am ready to give you any information which may -assist you in forming an opinion." - -"Thank you. I have already learned all that is in the public -prints, nothing more. I presume that I may take it as correct--this -article, for example, as to the disappearance of the bride." - -Lord St. Simon glanced over it. "Yes, it is correct, as far as it -goes." - -"But it needs a great deal of supplementing before anyone could -offer an opinion. I think that I may arrive at my facts most -directly by questioning you." - -"Pray do so." - -"When did you first meet Miss Hatty Doran?" - -"In San Francisco, a year ago." - -"You were travelling in the States?" - -"Yes." - -"Did you become engaged then?" - -"No." - -"But you were on a friendly footing?" - -"I was amused by her society, and she could see that I was -amused." - -"Her father is very rich?" - -"He is said to be the richest man on the Pacific slope." - -"And how did he make his money?" - -"In mining. He had nothing a few years ago. Then he struck gold, -invested it, and came up by leaps and bounds." - -"Now, what is your own impression as to the young lady's--your -wife's character?" - -The nobleman swung his glasses a little faster and stared down -into the fire. "You see, Mr. Holmes," said he, "my wife was -twenty before her father became a rich man. During that time she -ran free in a mining camp and wandered through woods or -mountains, so that her education has come from Nature rather than -from the schoolmaster. She is what we call in England a tomboy, -with a strong nature, wild and free, unfettered by any sort of -traditions. She is impetuous--volcanic, I was about to say. She -is swift in making up her mind and fearless in carrying out her -resolutions. On the other hand, I would not have given her the -name which I have the honour to bear"--he gave a little stately -cough--"had not I thought her to be at bottom a noble woman. I -believe that she is capable of heroic self-sacrifice and that -anything dishonourable would be repugnant to her." - -"Have you her photograph?" - -"I brought this with me." He opened a locket and showed us the -full face of a very lovely woman. It was not a photograph but an -ivory miniature, and the artist had brought out the full effect -of the lustrous black hair, the large dark eyes, and the -exquisite mouth. Holmes gazed long and earnestly at it. Then he -closed the locket and handed it back to Lord St. Simon. - -"The young lady came to London, then, and you renewed your -acquaintance?" - -"Yes, her father brought her over for this last London season. I -met her several times, became engaged to her, and have now -married her." - -"She brought, I understand, a considerable dowry?" - -"A fair dowry. Not more than is usual in my family." - -"And this, of course, remains to you, since the marriage is a -fait accompli?" - -"I really have made no inquiries on the subject." - -"Very naturally not. Did you see Miss Doran on the day before the -wedding?" - -"Yes." - -"Was she in good spirits?" - -"Never better. She kept talking of what we should do in our -future lives." - -"Indeed! That is very interesting. And on the morning of the -wedding?" - -"She was as bright as possible--at least until after the -ceremony." - -"And did you observe any change in her then?" - -"Well, to tell the truth, I saw then the first signs that I had -ever seen that her temper was just a little sharp. The incident -however, was too trivial to relate and can have no possible -bearing upon the case." - -"Pray let us have it, for all that." - -"Oh, it is childish. She dropped her bouquet as we went towards -the vestry. She was passing the front pew at the time, and it -fell over into the pew. There was a moment's delay, but the -gentleman in the pew handed it up to her again, and it did not -appear to be the worse for the fall. Yet when I spoke to her of -the matter, she answered me abruptly; and in the carriage, on our -way home, she seemed absurdly agitated over this trifling cause." - -"Indeed! You say that there was a gentleman in the pew. Some of -the general public were present, then?" - -"Oh, yes. It is impossible to exclude them when the church is -open." - -"This gentleman was not one of your wife's friends?" - -"No, no; I call him a gentleman by courtesy, but he was quite a -common-looking person. I hardly noticed his appearance. But -really I think that we are wandering rather far from the point." - -"Lady St. Simon, then, returned from the wedding in a less -cheerful frame of mind than she had gone to it. What did she do -on re-entering her father's house?" - -"I saw her in conversation with her maid." - -"And who is her maid?" - -"Alice is her name. She is an American and came from California -with her." - -"A confidential servant?" - -"A little too much so. It seemed to me that her mistress allowed -her to take great liberties. Still, of course, in America they -look upon these things in a different way." - -"How long did she speak to this Alice?" - -"Oh, a few minutes. I had something else to think of." - -"You did not overhear what they said?" - -"Lady St. Simon said something about 'jumping a claim.' She was -accustomed to use slang of the kind. I have no idea what she -meant." - -"American slang is very expressive sometimes. And what did your -wife do when she finished speaking to her maid?" - -"She walked into the breakfast-room." - -"On your arm?" - -"No, alone. She was very independent in little matters like that. -Then, after we had sat down for ten minutes or so, she rose -hurriedly, muttered some words of apology, and left the room. She -never came back." - -"But this maid, Alice, as I understand, deposes that she went to -her room, covered her bride's dress with a long ulster, put on a -bonnet, and went out." - -"Quite so. And she was afterwards seen walking into Hyde Park in -company with Flora Millar, a woman who is now in custody, and who -had already made a disturbance at Mr. Doran's house that -morning." - -"Ah, yes. I should like a few particulars as to this young lady, -and your relations to her." - -Lord St. Simon shrugged his shoulders and raised his eyebrows. -"We have been on a friendly footing for some years--I may say on -a very friendly footing. She used to be at the Allegro. I have -not treated her ungenerously, and she had no just cause of -complaint against me, but you know what women are, Mr. Holmes. -Flora was a dear little thing, but exceedingly hot-headed and -devotedly attached to me. She wrote me dreadful letters when she -heard that I was about to be married, and, to tell the truth, the -reason why I had the marriage celebrated so quietly was that I -feared lest there might be a scandal in the church. She came to -Mr. Doran's door just after we returned, and she endeavoured to -push her way in, uttering very abusive expressions towards my -wife, and even threatening her, but I had foreseen the -possibility of something of the sort, and I had two police -fellows there in private clothes, who soon pushed her out again. -She was quiet when she saw that there was no good in making a -row." - -"Did your wife hear all this?" - -"No, thank goodness, she did not." - -"And she was seen walking with this very woman afterwards?" - -"Yes. That is what Mr. Lestrade, of Scotland Yard, looks upon as -so serious. It is thought that Flora decoyed my wife out and laid -some terrible trap for her." - -"Well, it is a possible supposition." - -"You think so, too?" - -"I did not say a probable one. But you do not yourself look upon -this as likely?" - -"I do not think Flora would hurt a fly." - -"Still, jealousy is a strange transformer of characters. Pray -what is your own theory as to what took place?" - -"Well, really, I came to seek a theory, not to propound one. I -have given you all the facts. Since you ask me, however, I may -say that it has occurred to me as possible that the excitement of -this affair, the consciousness that she had made so immense a -social stride, had the effect of causing some little nervous -disturbance in my wife." - -"In short, that she had become suddenly deranged?" - -"Well, really, when I consider that she has turned her back--I -will not say upon me, but upon so much that many have aspired to -without success--I can hardly explain it in any other fashion." - -"Well, certainly that is also a conceivable hypothesis," said -Holmes, smiling. "And now, Lord St. Simon, I think that I have -nearly all my data. May I ask whether you were seated at the -breakfast-table so that you could see out of the window?" - -"We could see the other side of the road and the Park." - -"Quite so. Then I do not think that I need to detain you longer. -I shall communicate with you." - -"Should you be fortunate enough to solve this problem," said our -client, rising. - -"I have solved it." - -"Eh? What was that?" - -"I say that I have solved it." - -"Where, then, is my wife?" - -"That is a detail which I shall speedily supply." - -Lord St. Simon shook his head. "I am afraid that it will take -wiser heads than yours or mine," he remarked, and bowing in a -stately, old-fashioned manner he departed. - -"It is very good of Lord St. Simon to honour my head by putting -it on a level with his own," said Sherlock Holmes, laughing. "I -think that I shall have a whisky and soda and a cigar after all -this cross-questioning. I had formed my conclusions as to the -case before our client came into the room." - -"My dear Holmes!" - -"I have notes of several similar cases, though none, as I -remarked before, which were quite as prompt. My whole examination -served to turn my conjecture into a certainty. Circumstantial -evidence is occasionally very convincing, as when you find a -trout in the milk, to quote Thoreau's example." - -"But I have heard all that you have heard." - -"Without, however, the knowledge of pre-existing cases which -serves me so well. There was a parallel instance in Aberdeen some -years back, and something on very much the same lines at Munich -the year after the Franco-Prussian War. It is one of these -cases--but, hullo, here is Lestrade! Good-afternoon, Lestrade! -You will find an extra tumbler upon the sideboard, and there are -cigars in the box." - -The official detective was attired in a pea-jacket and cravat, -which gave him a decidedly nautical appearance, and he carried a -black canvas bag in his hand. With a short greeting he seated -himself and lit the cigar which had been offered to him. - -"What's up, then?" asked Holmes with a twinkle in his eye. "You -look dissatisfied." - -"And I feel dissatisfied. It is this infernal St. Simon marriage -case. I can make neither head nor tail of the business." - -"Really! You surprise me." - -"Who ever heard of such a mixed affair? Every clue seems to slip -through my fingers. I have been at work upon it all day." - -"And very wet it seems to have made you," said Holmes laying his -hand upon the arm of the pea-jacket. - -"Yes, I have been dragging the Serpentine." - -"In heaven's name, what for?" - -"In search of the body of Lady St. Simon." - -Sherlock Holmes leaned back in his chair and laughed heartily. - -"Have you dragged the basin of Trafalgar Square fountain?" he -asked. - -"Why? What do you mean?" - -"Because you have just as good a chance of finding this lady in -the one as in the other." - -Lestrade shot an angry glance at my companion. "I suppose you -know all about it," he snarled. - -"Well, I have only just heard the facts, but my mind is made up." - -"Oh, indeed! Then you think that the Serpentine plays no part in -the matter?" - -"I think it very unlikely." - -"Then perhaps you will kindly explain how it is that we found -this in it?" He opened his bag as he spoke, and tumbled onto the -floor a wedding-dress of watered silk, a pair of white satin -shoes and a bride's wreath and veil, all discoloured and soaked -in water. "There," said he, putting a new wedding-ring upon the -top of the pile. "There is a little nut for you to crack, Master -Holmes." - -"Oh, indeed!" said my friend, blowing blue rings into the air. -"You dragged them from the Serpentine?" - -"No. They were found floating near the margin by a park-keeper. -They have been identified as her clothes, and it seemed to me -that if the clothes were there the body would not be far off." - -"By the same brilliant reasoning, every man's body is to be found -in the neighbourhood of his wardrobe. And pray what did you hope -to arrive at through this?" - -"At some evidence implicating Flora Millar in the disappearance." - -"I am afraid that you will find it difficult." - -"Are you, indeed, now?" cried Lestrade with some bitterness. "I -am afraid, Holmes, that you are not very practical with your -deductions and your inferences. You have made two blunders in as -many minutes. This dress does implicate Miss Flora Millar." - -"And how?" - -"In the dress is a pocket. In the pocket is a card-case. In the -card-case is a note. And here is the very note." He slapped it -down upon the table in front of him. "Listen to this: 'You will -see me when all is ready. Come at once. F.H.M.' Now my theory all -along has been that Lady St. Simon was decoyed away by Flora -Millar, and that she, with confederates, no doubt, was -responsible for her disappearance. Here, signed with her -initials, is the very note which was no doubt quietly slipped -into her hand at the door and which lured her within their -reach." - -"Very good, Lestrade," said Holmes, laughing. "You really are -very fine indeed. Let me see it." He took up the paper in a -listless way, but his attention instantly became riveted, and he -gave a little cry of satisfaction. "This is indeed important," -said he. - -"Ha! you find it so?" - -"Extremely so. I congratulate you warmly." - -Lestrade rose in his triumph and bent his head to look. "Why," he -shrieked, "you're looking at the wrong side!" - -"On the contrary, this is the right side." - -"The right side? You're mad! Here is the note written in pencil -over here." - -"And over here is what appears to be the fragment of a hotel -bill, which interests me deeply." - -"There's nothing in it. I looked at it before," said Lestrade. -"'Oct. 4th, rooms 8s., breakfast 2s. 6d., cocktail 1s., lunch 2s. -6d., glass sherry, 8d.' I see nothing in that." - -"Very likely not. It is most important, all the same. As to the -note, it is important also, or at least the initials are, so I -congratulate you again." - -"I've wasted time enough," said Lestrade, rising. "I believe in -hard work and not in sitting by the fire spinning fine theories. -Good-day, Mr. Holmes, and we shall see which gets to the bottom -of the matter first." He gathered up the garments, thrust them -into the bag, and made for the door. - -"Just one hint to you, Lestrade," drawled Holmes before his rival -vanished; "I will tell you the true solution of the matter. Lady -St. Simon is a myth. There is not, and there never has been, any -such person." - -Lestrade looked sadly at my companion. Then he turned to me, -tapped his forehead three times, shook his head solemnly, and -hurried away. - -He had hardly shut the door behind him when Holmes rose to put on -his overcoat. "There is something in what the fellow says about -outdoor work," he remarked, "so I think, Watson, that I must -leave you to your papers for a little." - -It was after five o'clock when Sherlock Holmes left me, but I had -no time to be lonely, for within an hour there arrived a -confectioner's man with a very large flat box. This he unpacked -with the help of a youth whom he had brought with him, and -presently, to my very great astonishment, a quite epicurean -little cold supper began to be laid out upon our humble -lodging-house mahogany. There were a couple of brace of cold -woodcock, a pheasant, a pt de foie gras pie with a group of -ancient and cobwebby bottles. Having laid out all these luxuries, -my two visitors vanished away, like the genii of the Arabian -Nights, with no explanation save that the things had been paid -for and were ordered to this address. - -Just before nine o'clock Sherlock Holmes stepped briskly into the -room. His features were gravely set, but there was a light in his -eye which made me think that he had not been disappointed in his -conclusions. - -"They have laid the supper, then," he said, rubbing his hands. - -"You seem to expect company. They have laid for five." - -"Yes, I fancy we may have some company dropping in," said he. "I -am surprised that Lord St. Simon has not already arrived. Ha! I -fancy that I hear his step now upon the stairs." - -It was indeed our visitor of the afternoon who came bustling in, -dangling his glasses more vigorously than ever, and with a very -perturbed expression upon his aristocratic features. - -"My messenger reached you, then?" asked Holmes. - -"Yes, and I confess that the contents startled me beyond measure. -Have you good authority for what you say?" - -"The best possible." - -Lord St. Simon sank into a chair and passed his hand over his -forehead. - -"What will the Duke say," he murmured, "when he hears that one of -the family has been subjected to such humiliation?" - -"It is the purest accident. I cannot allow that there is any -humiliation." - -"Ah, you look on these things from another standpoint." - -"I fail to see that anyone is to blame. I can hardly see how the -lady could have acted otherwise, though her abrupt method of -doing it was undoubtedly to be regretted. Having no mother, she -had no one to advise her at such a crisis." - -"It was a slight, sir, a public slight," said Lord St. Simon, -tapping his fingers upon the table. - -"You must make allowance for this poor girl, placed in so -unprecedented a position." - -"I will make no allowance. I am very angry indeed, and I have -been shamefully used." - -"I think that I heard a ring," said Holmes. "Yes, there are steps -on the landing. If I cannot persuade you to take a lenient view -of the matter, Lord St. Simon, I have brought an advocate here -who may be more successful." He opened the door and ushered in a -lady and gentleman. "Lord St. Simon," said he "allow me to -introduce you to Mr. and Mrs. Francis Hay Moulton. The lady, I -think, you have already met." - -At the sight of these newcomers our client had sprung from his -seat and stood very erect, with his eyes cast down and his hand -thrust into the breast of his frock-coat, a picture of offended -dignity. The lady had taken a quick step forward and had held out -her hand to him, but he still refused to raise his eyes. It was -as well for his resolution, perhaps, for her pleading face was -one which it was hard to resist. - -"You're angry, Robert," said she. "Well, I guess you have every -cause to be." - -"Pray make no apology to me," said Lord St. Simon bitterly. - -"Oh, yes, I know that I have treated you real bad and that I -should have spoken to you before I went; but I was kind of -rattled, and from the time when I saw Frank here again I just -didn't know what I was doing or saying. I only wonder I didn't -fall down and do a faint right there before the altar." - -"Perhaps, Mrs. Moulton, you would like my friend and me to leave -the room while you explain this matter?" - -"If I may give an opinion," remarked the strange gentleman, -"we've had just a little too much secrecy over this business -already. For my part, I should like all Europe and America to -hear the rights of it." He was a small, wiry, sunburnt man, -clean-shaven, with a sharp face and alert manner. - -"Then I'll tell our story right away," said the lady. "Frank here -and I met in '84, in McQuire's camp, near the Rockies, where pa -was working a claim. We were engaged to each other, Frank and I; -but then one day father struck a rich pocket and made a pile, -while poor Frank here had a claim that petered out and came to -nothing. The richer pa grew the poorer was Frank; so at last pa -wouldn't hear of our engagement lasting any longer, and he took -me away to 'Frisco. Frank wouldn't throw up his hand, though; so -he followed me there, and he saw me without pa knowing anything -about it. It would only have made him mad to know, so we just -fixed it all up for ourselves. Frank said that he would go and -make his pile, too, and never come back to claim me until he had -as much as pa. So then I promised to wait for him to the end of -time and pledged myself not to marry anyone else while he lived. -'Why shouldn't we be married right away, then,' said he, 'and -then I will feel sure of you; and I won't claim to be your -husband until I come back?' Well, we talked it over, and he had -fixed it all up so nicely, with a clergyman all ready in waiting, -that we just did it right there; and then Frank went off to seek -his fortune, and I went back to pa. - -"The next I heard of Frank was that he was in Montana, and then -he went prospecting in Arizona, and then I heard of him from New -Mexico. After that came a long newspaper story about how a -miners' camp had been attacked by Apache Indians, and there was -my Frank's name among the killed. I fainted dead away, and I was -very sick for months after. Pa thought I had a decline and took -me to half the doctors in 'Frisco. Not a word of news came for a -year and more, so that I never doubted that Frank was really -dead. Then Lord St. Simon came to 'Frisco, and we came to London, -and a marriage was arranged, and pa was very pleased, but I felt -all the time that no man on this earth would ever take the place -in my heart that had been given to my poor Frank. - -"Still, if I had married Lord St. Simon, of course I'd have done -my duty by him. We can't command our love, but we can our -actions. I went to the altar with him with the intention to make -him just as good a wife as it was in me to be. But you may -imagine what I felt when, just as I came to the altar rails, I -glanced back and saw Frank standing and looking at me out of the -first pew. I thought it was his ghost at first; but when I looked -again there he was still, with a kind of question in his eyes, as -if to ask me whether I were glad or sorry to see him. I wonder I -didn't drop. I know that everything was turning round, and the -words of the clergyman were just like the buzz of a bee in my -ear. I didn't know what to do. Should I stop the service and make -a scene in the church? I glanced at him again, and he seemed to -know what I was thinking, for he raised his finger to his lips to -tell me to be still. Then I saw him scribble on a piece of paper, -and I knew that he was writing me a note. As I passed his pew on -the way out I dropped my bouquet over to him, and he slipped the -note into my hand when he returned me the flowers. It was only a -line asking me to join him when he made the sign to me to do so. -Of course I never doubted for a moment that my first duty was now -to him, and I determined to do just whatever he might direct. - -"When I got back I told my maid, who had known him in California, -and had always been his friend. I ordered her to say nothing, but -to get a few things packed and my ulster ready. I know I ought to -have spoken to Lord St. Simon, but it was dreadful hard before -his mother and all those great people. I just made up my mind to -run away and explain afterwards. I hadn't been at the table ten -minutes before I saw Frank out of the window at the other side of -the road. He beckoned to me and then began walking into the Park. -I slipped out, put on my things, and followed him. Some woman -came talking something or other about Lord St. Simon to -me--seemed to me from the little I heard as if he had a little -secret of his own before marriage also--but I managed to get away -from her and soon overtook Frank. We got into a cab together, and -away we drove to some lodgings he had taken in Gordon Square, and -that was my true wedding after all those years of waiting. Frank -had been a prisoner among the Apaches, had escaped, came on to -'Frisco, found that I had given him up for dead and had gone to -England, followed me there, and had come upon me at last on the -very morning of my second wedding." - -"I saw it in a paper," explained the American. "It gave the name -and the church but not where the lady lived." - -"Then we had a talk as to what we should do, and Frank was all -for openness, but I was so ashamed of it all that I felt as if I -should like to vanish away and never see any of them again--just -sending a line to pa, perhaps, to show him that I was alive. It -was awful to me to think of all those lords and ladies sitting -round that breakfast-table and waiting for me to come back. So -Frank took my wedding-clothes and things and made a bundle of -them, so that I should not be traced, and dropped them away -somewhere where no one could find them. It is likely that we -should have gone on to Paris to-morrow, only that this good -gentleman, Mr. Holmes, came round to us this evening, though how -he found us is more than I can think, and he showed us very -clearly and kindly that I was wrong and that Frank was right, and -that we should be putting ourselves in the wrong if we were so -secret. Then he offered to give us a chance of talking to Lord -St. Simon alone, and so we came right away round to his rooms at -once. Now, Robert, you have heard it all, and I am very sorry if -I have given you pain, and I hope that you do not think very -meanly of me." - -Lord St. Simon had by no means relaxed his rigid attitude, but -had listened with a frowning brow and a compressed lip to this -long narrative. - -"Excuse me," he said, "but it is not my custom to discuss my most -intimate personal affairs in this public manner." - -"Then you won't forgive me? You won't shake hands before I go?" - -"Oh, certainly, if it would give you any pleasure." He put out -his hand and coldly grasped that which she extended to him. - -"I had hoped," suggested Holmes, "that you would have joined us -in a friendly supper." - -"I think that there you ask a little too much," responded his -Lordship. "I may be forced to acquiesce in these recent -developments, but I can hardly be expected to make merry over -them. I think that with your permission I will now wish you all a -very good-night." He included us all in a sweeping bow and -stalked out of the room. - -"Then I trust that you at least will honour me with your -company," said Sherlock Holmes. "It is always a joy to meet an -American, Mr. Moulton, for I am one of those who believe that the -folly of a monarch and the blundering of a minister in far-gone -years will not prevent our children from being some day citizens -of the same world-wide country under a flag which shall be a -quartering of the Union Jack with the Stars and Stripes." - -"The case has been an interesting one," remarked Holmes when our -visitors had left us, "because it serves to show very clearly how -simple the explanation may be of an affair which at first sight -seems to be almost inexplicable. Nothing could be more natural -than the sequence of events as narrated by this lady, and nothing -stranger than the result when viewed, for instance, by Mr. -Lestrade of Scotland Yard." - -"You were not yourself at fault at all, then?" - -"From the first, two facts were very obvious to me, the one that -the lady had been quite willing to undergo the wedding ceremony, -the other that she had repented of it within a few minutes of -returning home. Obviously something had occurred during the -morning, then, to cause her to change her mind. What could that -something be? She could not have spoken to anyone when she was -out, for she had been in the company of the bridegroom. Had she -seen someone, then? If she had, it must be someone from America -because she had spent so short a time in this country that she -could hardly have allowed anyone to acquire so deep an influence -over her that the mere sight of him would induce her to change -her plans so completely. You see we have already arrived, by a -process of exclusion, at the idea that she might have seen an -American. Then who could this American be, and why should he -possess so much influence over her? It might be a lover; it might -be a husband. Her young womanhood had, I knew, been spent in -rough scenes and under strange conditions. So far I had got -before I ever heard Lord St. Simon's narrative. When he told us -of a man in a pew, of the change in the bride's manner, of so -transparent a device for obtaining a note as the dropping of a -bouquet, of her resort to her confidential maid, and of her very -significant allusion to claim-jumping--which in miners' parlance -means taking possession of that which another person has a prior -claim to--the whole situation became absolutely clear. She had -gone off with a man, and the man was either a lover or was a -previous husband--the chances being in favour of the latter." - -"And how in the world did you find them?" - -"It might have been difficult, but friend Lestrade held -information in his hands the value of which he did not himself -know. The initials were, of course, of the highest importance, -but more valuable still was it to know that within a week he had -settled his bill at one of the most select London hotels." - -"How did you deduce the select?" - -"By the select prices. Eight shillings for a bed and eightpence -for a glass of sherry pointed to one of the most expensive -hotels. There are not many in London which charge at that rate. -In the second one which I visited in Northumberland Avenue, I -learned by an inspection of the book that Francis H. Moulton, an -American gentleman, had left only the day before, and on looking -over the entries against him, I came upon the very items which I -had seen in the duplicate bill. His letters were to be forwarded -to 226 Gordon Square; so thither I travelled, and being fortunate -enough to find the loving couple at home, I ventured to give them -some paternal advice and to point out to them that it would be -better in every way that they should make their position a little -clearer both to the general public and to Lord St. Simon in -particular. I invited them to meet him here, and, as you see, I -made him keep the appointment." - -"But with no very good result," I remarked. "His conduct was -certainly not very gracious." - -"Ah, Watson," said Holmes, smiling, "perhaps you would not be -very gracious either, if, after all the trouble of wooing and -wedding, you found yourself deprived in an instant of wife and of -fortune. I think that we may judge Lord St. Simon very mercifully -and thank our stars that we are never likely to find ourselves in -the same position. Draw your chair up and hand me my violin, for -the only problem we have still to solve is how to while away -these bleak autumnal evenings." - - - -XI. THE ADVENTURE OF THE BERYL CORONET - -"Holmes," said I as I stood one morning in our bow-window looking -down the street, "here is a madman coming along. It seems rather -sad that his relatives should allow him to come out alone." - -My friend rose lazily from his armchair and stood with his hands -in the pockets of his dressing-gown, looking over my shoulder. It -was a bright, crisp February morning, and the snow of the day -before still lay deep upon the ground, shimmering brightly in the -wintry sun. Down the centre of Baker Street it had been ploughed -into a brown crumbly band by the traffic, but at either side and -on the heaped-up edges of the foot-paths it still lay as white as -when it fell. The grey pavement had been cleaned and scraped, but -was still dangerously slippery, so that there were fewer -passengers than usual. Indeed, from the direction of the -Metropolitan Station no one was coming save the single gentleman -whose eccentric conduct had drawn my attention. - -He was a man of about fifty, tall, portly, and imposing, with a -massive, strongly marked face and a commanding figure. He was -dressed in a sombre yet rich style, in black frock-coat, shining -hat, neat brown gaiters, and well-cut pearl-grey trousers. Yet -his actions were in absurd contrast to the dignity of his dress -and features, for he was running hard, with occasional little -springs, such as a weary man gives who is little accustomed to -set any tax upon his legs. As he ran he jerked his hands up and -down, waggled his head, and writhed his face into the most -extraordinary contortions. - -"What on earth can be the matter with him?" I asked. "He is -looking up at the numbers of the houses." - -"I believe that he is coming here," said Holmes, rubbing his -hands. - -"Here?" - -"Yes; I rather think he is coming to consult me professionally. I -think that I recognise the symptoms. Ha! did I not tell you?" As -he spoke, the man, puffing and blowing, rushed at our door and -pulled at our bell until the whole house resounded with the -clanging. - -A few moments later he was in our room, still puffing, still -gesticulating, but with so fixed a look of grief and despair in -his eyes that our smiles were turned in an instant to horror and -pity. For a while he could not get his words out, but swayed his -body and plucked at his hair like one who has been driven to the -extreme limits of his reason. Then, suddenly springing to his -feet, he beat his head against the wall with such force that we -both rushed upon him and tore him away to the centre of the room. -Sherlock Holmes pushed him down into the easy-chair and, sitting -beside him, patted his hand and chatted with him in the easy, -soothing tones which he knew so well how to employ. - -"You have come to me to tell your story, have you not?" said he. -"You are fatigued with your haste. Pray wait until you have -recovered yourself, and then I shall be most happy to look into -any little problem which you may submit to me." - -The man sat for a minute or more with a heaving chest, fighting -against his emotion. Then he passed his handkerchief over his -brow, set his lips tight, and turned his face towards us. - -"No doubt you think me mad?" said he. - -"I see that you have had some great trouble," responded Holmes. - -"God knows I have!--a trouble which is enough to unseat my -reason, so sudden and so terrible is it. Public disgrace I might -have faced, although I am a man whose character has never yet -borne a stain. Private affliction also is the lot of every man; -but the two coming together, and in so frightful a form, have -been enough to shake my very soul. Besides, it is not I alone. -The very noblest in the land may suffer unless some way be found -out of this horrible affair." - -"Pray compose yourself, sir," said Holmes, "and let me have a -clear account of who you are and what it is that has befallen -you." - -"My name," answered our visitor, "is probably familiar to your -ears. I am Alexander Holder, of the banking firm of Holder & -Stevenson, of Threadneedle Street." - -The name was indeed well known to us as belonging to the senior -partner in the second largest private banking concern in the City -of London. What could have happened, then, to bring one of the -foremost citizens of London to this most pitiable pass? We -waited, all curiosity, until with another effort he braced -himself to tell his story. - -"I feel that time is of value," said he; "that is why I hastened -here when the police inspector suggested that I should secure -your co-operation. I came to Baker Street by the Underground and -hurried from there on foot, for the cabs go slowly through this -snow. That is why I was so out of breath, for I am a man who -takes very little exercise. I feel better now, and I will put the -facts before you as shortly and yet as clearly as I can. - -"It is, of course, well known to you that in a successful banking -business as much depends upon our being able to find remunerative -investments for our funds as upon our increasing our connection -and the number of our depositors. One of our most lucrative means -of laying out money is in the shape of loans, where the security -is unimpeachable. We have done a good deal in this direction -during the last few years, and there are many noble families to -whom we have advanced large sums upon the security of their -pictures, libraries, or plate. - -"Yesterday morning I was seated in my office at the bank when a -card was brought in to me by one of the clerks. I started when I -saw the name, for it was that of none other than--well, perhaps -even to you I had better say no more than that it was a name -which is a household word all over the earth--one of the highest, -noblest, most exalted names in England. I was overwhelmed by the -honour and attempted, when he entered, to say so, but he plunged -at once into business with the air of a man who wishes to hurry -quickly through a disagreeable task. - -"'Mr. Holder,' said he, 'I have been informed that you are in the -habit of advancing money.' - -"'The firm does so when the security is good.' I answered. - -"'It is absolutely essential to me,' said he, 'that I should have -50,000 pounds at once. I could, of course, borrow so trifling a -sum ten times over from my friends, but I much prefer to make it -a matter of business and to carry out that business myself. In my -position you can readily understand that it is unwise to place -one's self under obligations.' - -"'For how long, may I ask, do you want this sum?' I asked. - -"'Next Monday I have a large sum due to me, and I shall then most -certainly repay what you advance, with whatever interest you -think it right to charge. But it is very essential to me that the -money should be paid at once.' - -"'I should be happy to advance it without further parley from my -own private purse,' said I, 'were it not that the strain would be -rather more than it could bear. If, on the other hand, I am to do -it in the name of the firm, then in justice to my partner I must -insist that, even in your case, every businesslike precaution -should be taken.' - -"'I should much prefer to have it so,' said he, raising up a -square, black morocco case which he had laid beside his chair. -'You have doubtless heard of the Beryl Coronet?' - -"'One of the most precious public possessions of the empire,' -said I. - -"'Precisely.' He opened the case, and there, imbedded in soft, -flesh-coloured velvet, lay the magnificent piece of jewellery -which he had named. 'There are thirty-nine enormous beryls,' said -he, 'and the price of the gold chasing is incalculable. The -lowest estimate would put the worth of the coronet at double the -sum which I have asked. I am prepared to leave it with you as my -security.' - -"I took the precious case into my hands and looked in some -perplexity from it to my illustrious client. - -"'You doubt its value?' he asked. - -"'Not at all. I only doubt--' - -"'The propriety of my leaving it. You may set your mind at rest -about that. I should not dream of doing so were it not absolutely -certain that I should be able in four days to reclaim it. It is a -pure matter of form. Is the security sufficient?' - -"'Ample.' - -"'You understand, Mr. Holder, that I am giving you a strong proof -of the confidence which I have in you, founded upon all that I -have heard of you. I rely upon you not only to be discreet and to -refrain from all gossip upon the matter but, above all, to -preserve this coronet with every possible precaution because I -need not say that a great public scandal would be caused if any -harm were to befall it. Any injury to it would be almost as -serious as its complete loss, for there are no beryls in the -world to match these, and it would be impossible to replace them. -I leave it with you, however, with every confidence, and I shall -call for it in person on Monday morning.' - -"Seeing that my client was anxious to leave, I said no more but, -calling for my cashier, I ordered him to pay over fifty 1000 -pound notes. When I was alone once more, however, with the -precious case lying upon the table in front of me, I could not -but think with some misgivings of the immense responsibility -which it entailed upon me. There could be no doubt that, as it -was a national possession, a horrible scandal would ensue if any -misfortune should occur to it. I already regretted having ever -consented to take charge of it. However, it was too late to alter -the matter now, so I locked it up in my private safe and turned -once more to my work. - -"When evening came I felt that it would be an imprudence to leave -so precious a thing in the office behind me. Bankers' safes had -been forced before now, and why should not mine be? If so, how -terrible would be the position in which I should find myself! I -determined, therefore, that for the next few days I would always -carry the case backward and forward with me, so that it might -never be really out of my reach. With this intention, I called a -cab and drove out to my house at Streatham, carrying the jewel -with me. I did not breathe freely until I had taken it upstairs -and locked it in the bureau of my dressing-room. - -"And now a word as to my household, Mr. Holmes, for I wish you to -thoroughly understand the situation. My groom and my page sleep -out of the house, and may be set aside altogether. I have three -maid-servants who have been with me a number of years and whose -absolute reliability is quite above suspicion. Another, Lucy -Parr, the second waiting-maid, has only been in my service a few -months. She came with an excellent character, however, and has -always given me satisfaction. She is a very pretty girl and has -attracted admirers who have occasionally hung about the place. -That is the only drawback which we have found to her, but we -believe her to be a thoroughly good girl in every way. - -"So much for the servants. My family itself is so small that it -will not take me long to describe it. I am a widower and have an -only son, Arthur. He has been a disappointment to me, Mr. -Holmes--a grievous disappointment. I have no doubt that I am -myself to blame. People tell me that I have spoiled him. Very -likely I have. When my dear wife died I felt that he was all I -had to love. I could not bear to see the smile fade even for a -moment from his face. I have never denied him a wish. Perhaps it -would have been better for both of us had I been sterner, but I -meant it for the best. - -"It was naturally my intention that he should succeed me in my -business, but he was not of a business turn. He was wild, -wayward, and, to speak the truth, I could not trust him in the -handling of large sums of money. When he was young he became a -member of an aristocratic club, and there, having charming -manners, he was soon the intimate of a number of men with long -purses and expensive habits. He learned to play heavily at cards -and to squander money on the turf, until he had again and again -to come to me and implore me to give him an advance upon his -allowance, that he might settle his debts of honour. He tried -more than once to break away from the dangerous company which he -was keeping, but each time the influence of his friend, Sir -George Burnwell, was enough to draw him back again. - -"And, indeed, I could not wonder that such a man as Sir George -Burnwell should gain an influence over him, for he has frequently -brought him to my house, and I have found myself that I could -hardly resist the fascination of his manner. He is older than -Arthur, a man of the world to his finger-tips, one who had been -everywhere, seen everything, a brilliant talker, and a man of -great personal beauty. Yet when I think of him in cold blood, far -away from the glamour of his presence, I am convinced from his -cynical speech and the look which I have caught in his eyes that -he is one who should be deeply distrusted. So I think, and so, -too, thinks my little Mary, who has a woman's quick insight into -character. - -"And now there is only she to be described. She is my niece; but -when my brother died five years ago and left her alone in the -world I adopted her, and have looked upon her ever since as my -daughter. She is a sunbeam in my house--sweet, loving, beautiful, -a wonderful manager and housekeeper, yet as tender and quiet and -gentle as a woman could be. She is my right hand. I do not know -what I could do without her. In only one matter has she ever gone -against my wishes. Twice my boy has asked her to marry him, for -he loves her devotedly, but each time she has refused him. I -think that if anyone could have drawn him into the right path it -would have been she, and that his marriage might have changed his -whole life; but now, alas! it is too late--forever too late! - -"Now, Mr. Holmes, you know the people who live under my roof, and -I shall continue with my miserable story. - -"When we were taking coffee in the drawing-room that night after -dinner, I told Arthur and Mary my experience, and of the precious -treasure which we had under our roof, suppressing only the name -of my client. Lucy Parr, who had brought in the coffee, had, I am -sure, left the room; but I cannot swear that the door was closed. -Mary and Arthur were much interested and wished to see the famous -coronet, but I thought it better not to disturb it. - -"'Where have you put it?' asked Arthur. - -"'In my own bureau.' - -"'Well, I hope to goodness the house won't be burgled during the -night.' said he. - -"'It is locked up,' I answered. - -"'Oh, any old key will fit that bureau. When I was a youngster I -have opened it myself with the key of the box-room cupboard.' - -"He often had a wild way of talking, so that I thought little of -what he said. He followed me to my room, however, that night with -a very grave face. - -"'Look here, dad,' said he with his eyes cast down, 'can you let -me have 200 pounds?' - -"'No, I cannot!' I answered sharply. 'I have been far too -generous with you in money matters.' - -"'You have been very kind,' said he, 'but I must have this money, -or else I can never show my face inside the club again.' - -"'And a very good thing, too!' I cried. - -"'Yes, but you would not have me leave it a dishonoured man,' -said he. 'I could not bear the disgrace. I must raise the money -in some way, and if you will not let me have it, then I must try -other means.' - -"I was very angry, for this was the third demand during the -month. 'You shall not have a farthing from me,' I cried, on which -he bowed and left the room without another word. - -"When he was gone I unlocked my bureau, made sure that my -treasure was safe, and locked it again. Then I started to go -round the house to see that all was secure--a duty which I -usually leave to Mary but which I thought it well to perform -myself that night. As I came down the stairs I saw Mary herself -at the side window of the hall, which she closed and fastened as -I approached. - -"'Tell me, dad,' said she, looking, I thought, a little -disturbed, 'did you give Lucy, the maid, leave to go out -to-night?' - -"'Certainly not.' - -"'She came in just now by the back door. I have no doubt that she -has only been to the side gate to see someone, but I think that -it is hardly safe and should be stopped.' - -"'You must speak to her in the morning, or I will if you prefer -it. Are you sure that everything is fastened?' - -"'Quite sure, dad.' - -"'Then, good-night.' I kissed her and went up to my bedroom -again, where I was soon asleep. - -"I am endeavouring to tell you everything, Mr. Holmes, which may -have any bearing upon the case, but I beg that you will question -me upon any point which I do not make clear." - -"On the contrary, your statement is singularly lucid." - -"I come to a part of my story now in which I should wish to be -particularly so. I am not a very heavy sleeper, and the anxiety -in my mind tended, no doubt, to make me even less so than usual. -About two in the morning, then, I was awakened by some sound in -the house. It had ceased ere I was wide awake, but it had left an -impression behind it as though a window had gently closed -somewhere. I lay listening with all my ears. Suddenly, to my -horror, there was a distinct sound of footsteps moving softly in -the next room. I slipped out of bed, all palpitating with fear, -and peeped round the corner of my dressing-room door. - -"'Arthur!' I screamed, 'you villain! you thief! How dare you -touch that coronet?' - -"The gas was half up, as I had left it, and my unhappy boy, -dressed only in his shirt and trousers, was standing beside the -light, holding the coronet in his hands. He appeared to be -wrenching at it, or bending it with all his strength. At my cry -he dropped it from his grasp and turned as pale as death. I -snatched it up and examined it. One of the gold corners, with -three of the beryls in it, was missing. - -"'You blackguard!' I shouted, beside myself with rage. 'You have -destroyed it! You have dishonoured me forever! Where are the -jewels which you have stolen?' - -"'Stolen!' he cried. - -"'Yes, thief!' I roared, shaking him by the shoulder. - -"'There are none missing. There cannot be any missing,' said he. - -"'There are three missing. And you know where they are. Must I -call you a liar as well as a thief? Did I not see you trying to -tear off another piece?' - -"'You have called me names enough,' said he, 'I will not stand it -any longer. I shall not say another word about this business, -since you have chosen to insult me. I will leave your house in -the morning and make my own way in the world.' - -"'You shall leave it in the hands of the police!' I cried -half-mad with grief and rage. 'I shall have this matter probed to -the bottom.' - -"'You shall learn nothing from me,' said he with a passion such -as I should not have thought was in his nature. 'If you choose to -call the police, let the police find what they can.' - -"By this time the whole house was astir, for I had raised my -voice in my anger. Mary was the first to rush into my room, and, -at the sight of the coronet and of Arthur's face, she read the -whole story and, with a scream, fell down senseless on the -ground. I sent the house-maid for the police and put the -investigation into their hands at once. When the inspector and a -constable entered the house, Arthur, who had stood sullenly with -his arms folded, asked me whether it was my intention to charge -him with theft. I answered that it had ceased to be a private -matter, but had become a public one, since the ruined coronet was -national property. I was determined that the law should have its -way in everything. - -"'At least,' said he, 'you will not have me arrested at once. It -would be to your advantage as well as mine if I might leave the -house for five minutes.' - -"'That you may get away, or perhaps that you may conceal what you -have stolen,' said I. And then, realising the dreadful position -in which I was placed, I implored him to remember that not only -my honour but that of one who was far greater than I was at -stake; and that he threatened to raise a scandal which would -convulse the nation. He might avert it all if he would but tell -me what he had done with the three missing stones. - -"'You may as well face the matter,' said I; 'you have been caught -in the act, and no confession could make your guilt more heinous. -If you but make such reparation as is in your power, by telling -us where the beryls are, all shall be forgiven and forgotten.' - -"'Keep your forgiveness for those who ask for it,' he answered, -turning away from me with a sneer. I saw that he was too hardened -for any words of mine to influence him. There was but one way for -it. I called in the inspector and gave him into custody. A search -was made at once not only of his person but of his room and of -every portion of the house where he could possibly have concealed -the gems; but no trace of them could be found, nor would the -wretched boy open his mouth for all our persuasions and our -threats. This morning he was removed to a cell, and I, after -going through all the police formalities, have hurried round to -you to implore you to use your skill in unravelling the matter. -The police have openly confessed that they can at present make -nothing of it. You may go to any expense which you think -necessary. I have already offered a reward of 1000 pounds. My -God, what shall I do! I have lost my honour, my gems, and my son -in one night. Oh, what shall I do!" - -He put a hand on either side of his head and rocked himself to -and fro, droning to himself like a child whose grief has got -beyond words. - -Sherlock Holmes sat silent for some few minutes, with his brows -knitted and his eyes fixed upon the fire. - -"Do you receive much company?" he asked. - -"None save my partner with his family and an occasional friend of -Arthur's. Sir George Burnwell has been several times lately. No -one else, I think." - -"Do you go out much in society?" - -"Arthur does. Mary and I stay at home. We neither of us care for -it." - -"That is unusual in a young girl." - -"She is of a quiet nature. Besides, she is not so very young. She -is four-and-twenty." - -"This matter, from what you say, seems to have been a shock to -her also." - -"Terrible! She is even more affected than I." - -"You have neither of you any doubt as to your son's guilt?" - -"How can we have when I saw him with my own eyes with the coronet -in his hands." - -"I hardly consider that a conclusive proof. Was the remainder of -the coronet at all injured?" - -"Yes, it was twisted." - -"Do you not think, then, that he might have been trying to -straighten it?" - -"God bless you! You are doing what you can for him and for me. -But it is too heavy a task. What was he doing there at all? If -his purpose were innocent, why did he not say so?" - -"Precisely. And if it were guilty, why did he not invent a lie? -His silence appears to me to cut both ways. There are several -singular points about the case. What did the police think of the -noise which awoke you from your sleep?" - -"They considered that it might be caused by Arthur's closing his -bedroom door." - -"A likely story! As if a man bent on felony would slam his door -so as to wake a household. What did they say, then, of the -disappearance of these gems?" - -"They are still sounding the planking and probing the furniture -in the hope of finding them." - -"Have they thought of looking outside the house?" - -"Yes, they have shown extraordinary energy. The whole garden has -already been minutely examined." - -"Now, my dear sir," said Holmes, "is it not obvious to you now -that this matter really strikes very much deeper than either you -or the police were at first inclined to think? It appeared to you -to be a simple case; to me it seems exceedingly complex. Consider -what is involved by your theory. You suppose that your son came -down from his bed, went, at great risk, to your dressing-room, -opened your bureau, took out your coronet, broke off by main -force a small portion of it, went off to some other place, -concealed three gems out of the thirty-nine, with such skill that -nobody can find them, and then returned with the other thirty-six -into the room in which he exposed himself to the greatest danger -of being discovered. I ask you now, is such a theory tenable?" - -"But what other is there?" cried the banker with a gesture of -despair. "If his motives were innocent, why does he not explain -them?" - -"It is our task to find that out," replied Holmes; "so now, if -you please, Mr. Holder, we will set off for Streatham together, -and devote an hour to glancing a little more closely into -details." - -My friend insisted upon my accompanying them in their expedition, -which I was eager enough to do, for my curiosity and sympathy -were deeply stirred by the story to which we had listened. I -confess that the guilt of the banker's son appeared to me to be -as obvious as it did to his unhappy father, but still I had such -faith in Holmes' judgment that I felt that there must be some -grounds for hope as long as he was dissatisfied with the accepted -explanation. He hardly spoke a word the whole way out to the -southern suburb, but sat with his chin upon his breast and his -hat drawn over his eyes, sunk in the deepest thought. Our client -appeared to have taken fresh heart at the little glimpse of hope -which had been presented to him, and he even broke into a -desultory chat with me over his business affairs. A short railway -journey and a shorter walk brought us to Fairbank, the modest -residence of the great financier. - -Fairbank was a good-sized square house of white stone, standing -back a little from the road. A double carriage-sweep, with a -snow-clad lawn, stretched down in front to two large iron gates -which closed the entrance. On the right side was a small wooden -thicket, which led into a narrow path between two neat hedges -stretching from the road to the kitchen door, and forming the -tradesmen's entrance. On the left ran a lane which led to the -stables, and was not itself within the grounds at all, being a -public, though little used, thoroughfare. Holmes left us standing -at the door and walked slowly all round the house, across the -front, down the tradesmen's path, and so round by the garden -behind into the stable lane. So long was he that Mr. Holder and I -went into the dining-room and waited by the fire until he should -return. We were sitting there in silence when the door opened and -a young lady came in. She was rather above the middle height, -slim, with dark hair and eyes, which seemed the darker against -the absolute pallor of her skin. I do not think that I have ever -seen such deadly paleness in a woman's face. Her lips, too, were -bloodless, but her eyes were flushed with crying. As she swept -silently into the room she impressed me with a greater sense of -grief than the banker had done in the morning, and it was the -more striking in her as she was evidently a woman of strong -character, with immense capacity for self-restraint. Disregarding -my presence, she went straight to her uncle and passed her hand -over his head with a sweet womanly caress. - -"You have given orders that Arthur should be liberated, have you -not, dad?" she asked. - -"No, no, my girl, the matter must be probed to the bottom." - -"But I am so sure that he is innocent. You know what woman's -instincts are. I know that he has done no harm and that you will -be sorry for having acted so harshly." - -"Why is he silent, then, if he is innocent?" - -"Who knows? Perhaps because he was so angry that you should -suspect him." - -"How could I help suspecting him, when I actually saw him with -the coronet in his hand?" - -"Oh, but he had only picked it up to look at it. Oh, do, do take -my word for it that he is innocent. Let the matter drop and say -no more. It is so dreadful to think of our dear Arthur in -prison!" - -"I shall never let it drop until the gems are found--never, Mary! -Your affection for Arthur blinds you as to the awful consequences -to me. Far from hushing the thing up, I have brought a gentleman -down from London to inquire more deeply into it." - -"This gentleman?" she asked, facing round to me. - -"No, his friend. He wished us to leave him alone. He is round in -the stable lane now." - -"The stable lane?" She raised her dark eyebrows. "What can he -hope to find there? Ah! this, I suppose, is he. I trust, sir, -that you will succeed in proving, what I feel sure is the truth, -that my cousin Arthur is innocent of this crime." - -"I fully share your opinion, and I trust, with you, that we may -prove it," returned Holmes, going back to the mat to knock the -snow from his shoes. "I believe I have the honour of addressing -Miss Mary Holder. Might I ask you a question or two?" - -"Pray do, sir, if it may help to clear this horrible affair up." - -"You heard nothing yourself last night?" - -"Nothing, until my uncle here began to speak loudly. I heard -that, and I came down." - -"You shut up the windows and doors the night before. Did you -fasten all the windows?" - -"Yes." - -"Were they all fastened this morning?" - -"Yes." - -"You have a maid who has a sweetheart? I think that you remarked -to your uncle last night that she had been out to see him?" - -"Yes, and she was the girl who waited in the drawing-room, and -who may have heard uncle's remarks about the coronet." - -"I see. You infer that she may have gone out to tell her -sweetheart, and that the two may have planned the robbery." - -"But what is the good of all these vague theories," cried the -banker impatiently, "when I have told you that I saw Arthur with -the coronet in his hands?" - -"Wait a little, Mr. Holder. We must come back to that. About this -girl, Miss Holder. You saw her return by the kitchen door, I -presume?" - -"Yes; when I went to see if the door was fastened for the night I -met her slipping in. I saw the man, too, in the gloom." - -"Do you know him?" - -"Oh, yes! he is the green-grocer who brings our vegetables round. -His name is Francis Prosper." - -"He stood," said Holmes, "to the left of the door--that is to -say, farther up the path than is necessary to reach the door?" - -"Yes, he did." - -"And he is a man with a wooden leg?" - -Something like fear sprang up in the young lady's expressive -black eyes. "Why, you are like a magician," said she. "How do you -know that?" She smiled, but there was no answering smile in -Holmes' thin, eager face. - -"I should be very glad now to go upstairs," said he. "I shall -probably wish to go over the outside of the house again. Perhaps -I had better take a look at the lower windows before I go up." - -He walked swiftly round from one to the other, pausing only at -the large one which looked from the hall onto the stable lane. -This he opened and made a very careful examination of the sill -with his powerful magnifying lens. "Now we shall go upstairs," -said he at last. - -The banker's dressing-room was a plainly furnished little -chamber, with a grey carpet, a large bureau, and a long mirror. -Holmes went to the bureau first and looked hard at the lock. - -"Which key was used to open it?" he asked. - -"That which my son himself indicated--that of the cupboard of the -lumber-room." - -"Have you it here?" - -"That is it on the dressing-table." - -Sherlock Holmes took it up and opened the bureau. - -"It is a noiseless lock," said he. "It is no wonder that it did -not wake you. This case, I presume, contains the coronet. We must -have a look at it." He opened the case, and taking out the diadem -he laid it upon the table. It was a magnificent specimen of the -jeweller's art, and the thirty-six stones were the finest that I -have ever seen. At one side of the coronet was a cracked edge, -where a corner holding three gems had been torn away. - -"Now, Mr. Holder," said Holmes, "here is the corner which -corresponds to that which has been so unfortunately lost. Might I -beg that you will break it off." - -The banker recoiled in horror. "I should not dream of trying," -said he. - -"Then I will." Holmes suddenly bent his strength upon it, but -without result. "I feel it give a little," said he; "but, though -I am exceptionally strong in the fingers, it would take me all my -time to break it. An ordinary man could not do it. Now, what do -you think would happen if I did break it, Mr. Holder? There would -be a noise like a pistol shot. Do you tell me that all this -happened within a few yards of your bed and that you heard -nothing of it?" - -"I do not know what to think. It is all dark to me." - -"But perhaps it may grow lighter as we go. What do you think, -Miss Holder?" - -"I confess that I still share my uncle's perplexity." - -"Your son had no shoes or slippers on when you saw him?" - -"He had nothing on save only his trousers and shirt." - -"Thank you. We have certainly been favoured with extraordinary -luck during this inquiry, and it will be entirely our own fault -if we do not succeed in clearing the matter up. With your -permission, Mr. Holder, I shall now continue my investigations -outside." - -He went alone, at his own request, for he explained that any -unnecessary footmarks might make his task more difficult. For an -hour or more he was at work, returning at last with his feet -heavy with snow and his features as inscrutable as ever. - -"I think that I have seen now all that there is to see, Mr. -Holder," said he; "I can serve you best by returning to my -rooms." - -"But the gems, Mr. Holmes. Where are they?" - -"I cannot tell." - -The banker wrung his hands. "I shall never see them again!" he -cried. "And my son? You give me hopes?" - -"My opinion is in no way altered." - -"Then, for God's sake, what was this dark business which was -acted in my house last night?" - -"If you can call upon me at my Baker Street rooms to-morrow -morning between nine and ten I shall be happy to do what I can to -make it clearer. I understand that you give me carte blanche to -act for you, provided only that I get back the gems, and that you -place no limit on the sum I may draw." - -"I would give my fortune to have them back." - -"Very good. I shall look into the matter between this and then. -Good-bye; it is just possible that I may have to come over here -again before evening." - -It was obvious to me that my companion's mind was now made up -about the case, although what his conclusions were was more than -I could even dimly imagine. Several times during our homeward -journey I endeavoured to sound him upon the point, but he always -glided away to some other topic, until at last I gave it over in -despair. It was not yet three when we found ourselves in our -rooms once more. He hurried to his chamber and was down again in -a few minutes dressed as a common loafer. With his collar turned -up, his shiny, seedy coat, his red cravat, and his worn boots, he -was a perfect sample of the class. - -"I think that this should do," said he, glancing into the glass -above the fireplace. "I only wish that you could come with me, -Watson, but I fear that it won't do. I may be on the trail in -this matter, or I may be following a will-o'-the-wisp, but I -shall soon know which it is. I hope that I may be back in a few -hours." He cut a slice of beef from the joint upon the sideboard, -sandwiched it between two rounds of bread, and thrusting this -rude meal into his pocket he started off upon his expedition. - -I had just finished my tea when he returned, evidently in -excellent spirits, swinging an old elastic-sided boot in his -hand. He chucked it down into a corner and helped himself to a -cup of tea. - -"I only looked in as I passed," said he. "I am going right on." - -"Where to?" - -"Oh, to the other side of the West End. It may be some time -before I get back. Don't wait up for me in case I should be -late." - -"How are you getting on?" - -"Oh, so so. Nothing to complain of. I have been out to Streatham -since I saw you last, but I did not call at the house. It is a -very sweet little problem, and I would not have missed it for a -good deal. However, I must not sit gossiping here, but must get -these disreputable clothes off and return to my highly -respectable self." - -I could see by his manner that he had stronger reasons for -satisfaction than his words alone would imply. His eyes twinkled, -and there was even a touch of colour upon his sallow cheeks. He -hastened upstairs, and a few minutes later I heard the slam of -the hall door, which told me that he was off once more upon his -congenial hunt. - -I waited until midnight, but there was no sign of his return, so -I retired to my room. It was no uncommon thing for him to be away -for days and nights on end when he was hot upon a scent, so that -his lateness caused me no surprise. I do not know at what hour he -came in, but when I came down to breakfast in the morning there -he was with a cup of coffee in one hand and the paper in the -other, as fresh and trim as possible. - -"You will excuse my beginning without you, Watson," said he, "but -you remember that our client has rather an early appointment this -morning." - -"Why, it is after nine now," I answered. "I should not be -surprised if that were he. I thought I heard a ring." - -It was, indeed, our friend the financier. I was shocked by the -change which had come over him, for his face which was naturally -of a broad and massive mould, was now pinched and fallen in, -while his hair seemed to me at least a shade whiter. He entered -with a weariness and lethargy which was even more painful than -his violence of the morning before, and he dropped heavily into -the armchair which I pushed forward for him. - -"I do not know what I have done to be so severely tried," said -he. "Only two days ago I was a happy and prosperous man, without -a care in the world. Now I am left to a lonely and dishonoured -age. One sorrow comes close upon the heels of another. My niece, -Mary, has deserted me." - -"Deserted you?" - -"Yes. Her bed this morning had not been slept in, her room was -empty, and a note for me lay upon the hall table. I had said to -her last night, in sorrow and not in anger, that if she had -married my boy all might have been well with him. Perhaps it was -thoughtless of me to say so. It is to that remark that she refers -in this note: - -"'MY DEAREST UNCLE:--I feel that I have brought trouble upon you, -and that if I had acted differently this terrible misfortune -might never have occurred. I cannot, with this thought in my -mind, ever again be happy under your roof, and I feel that I must -leave you forever. Do not worry about my future, for that is -provided for; and, above all, do not search for me, for it will -be fruitless labour and an ill-service to me. In life or in -death, I am ever your loving,--MARY.' - -"What could she mean by that note, Mr. Holmes? Do you think it -points to suicide?" - -"No, no, nothing of the kind. It is perhaps the best possible -solution. I trust, Mr. Holder, that you are nearing the end of -your troubles." - -"Ha! You say so! You have heard something, Mr. Holmes; you have -learned something! Where are the gems?" - -"You would not think 1000 pounds apiece an excessive sum for -them?" - -"I would pay ten." - -"That would be unnecessary. Three thousand will cover the matter. -And there is a little reward, I fancy. Have you your check-book? -Here is a pen. Better make it out for 4000 pounds." - -With a dazed face the banker made out the required check. Holmes -walked over to his desk, took out a little triangular piece of -gold with three gems in it, and threw it down upon the table. - -With a shriek of joy our client clutched it up. - -"You have it!" he gasped. "I am saved! I am saved!" - -The reaction of joy was as passionate as his grief had been, and -he hugged his recovered gems to his bosom. - -"There is one other thing you owe, Mr. Holder," said Sherlock -Holmes rather sternly. - -"Owe!" He caught up a pen. "Name the sum, and I will pay it." - -"No, the debt is not to me. You owe a very humble apology to that -noble lad, your son, who has carried himself in this matter as I -should be proud to see my own son do, should I ever chance to -have one." - -"Then it was not Arthur who took them?" - -"I told you yesterday, and I repeat to-day, that it was not." - -"You are sure of it! Then let us hurry to him at once to let him -know that the truth is known." - -"He knows it already. When I had cleared it all up I had an -interview with him, and finding that he would not tell me the -story, I told it to him, on which he had to confess that I was -right and to add the very few details which were not yet quite -clear to me. Your news of this morning, however, may open his -lips." - -"For heaven's sake, tell me, then, what is this extraordinary -mystery!" - -"I will do so, and I will show you the steps by which I reached -it. And let me say to you, first, that which it is hardest for me -to say and for you to hear: there has been an understanding -between Sir George Burnwell and your niece Mary. They have now -fled together." - -"My Mary? Impossible!" - -"It is unfortunately more than possible; it is certain. Neither -you nor your son knew the true character of this man when you -admitted him into your family circle. He is one of the most -dangerous men in England--a ruined gambler, an absolutely -desperate villain, a man without heart or conscience. Your niece -knew nothing of such men. When he breathed his vows to her, as he -had done to a hundred before her, she flattered herself that she -alone had touched his heart. The devil knows best what he said, -but at least she became his tool and was in the habit of seeing -him nearly every evening." - -"I cannot, and I will not, believe it!" cried the banker with an -ashen face. - -"I will tell you, then, what occurred in your house last night. -Your niece, when you had, as she thought, gone to your room, -slipped down and talked to her lover through the window which -leads into the stable lane. His footmarks had pressed right -through the snow, so long had he stood there. She told him of the -coronet. His wicked lust for gold kindled at the news, and he -bent her to his will. I have no doubt that she loved you, but -there are women in whom the love of a lover extinguishes all -other loves, and I think that she must have been one. She had -hardly listened to his instructions when she saw you coming -downstairs, on which she closed the window rapidly and told you -about one of the servants' escapade with her wooden-legged lover, -which was all perfectly true. - -"Your boy, Arthur, went to bed after his interview with you but -he slept badly on account of his uneasiness about his club debts. -In the middle of the night he heard a soft tread pass his door, -so he rose and, looking out, was surprised to see his cousin -walking very stealthily along the passage until she disappeared -into your dressing-room. Petrified with astonishment, the lad -slipped on some clothes and waited there in the dark to see what -would come of this strange affair. Presently she emerged from the -room again, and in the light of the passage-lamp your son saw -that she carried the precious coronet in her hands. She passed -down the stairs, and he, thrilling with horror, ran along and -slipped behind the curtain near your door, whence he could see -what passed in the hall beneath. He saw her stealthily open the -window, hand out the coronet to someone in the gloom, and then -closing it once more hurry back to her room, passing quite close -to where he stood hid behind the curtain. - -"As long as she was on the scene he could not take any action -without a horrible exposure of the woman whom he loved. But the -instant that she was gone he realised how crushing a misfortune -this would be for you, and how all-important it was to set it -right. He rushed down, just as he was, in his bare feet, opened -the window, sprang out into the snow, and ran down the lane, -where he could see a dark figure in the moonlight. Sir George -Burnwell tried to get away, but Arthur caught him, and there was -a struggle between them, your lad tugging at one side of the -coronet, and his opponent at the other. In the scuffle, your son -struck Sir George and cut him over the eye. Then something -suddenly snapped, and your son, finding that he had the coronet -in his hands, rushed back, closed the window, ascended to your -room, and had just observed that the coronet had been twisted in -the struggle and was endeavouring to straighten it when you -appeared upon the scene." - -"Is it possible?" gasped the banker. - -"You then roused his anger by calling him names at a moment when -he felt that he had deserved your warmest thanks. He could not -explain the true state of affairs without betraying one who -certainly deserved little enough consideration at his hands. He -took the more chivalrous view, however, and preserved her -secret." - -"And that was why she shrieked and fainted when she saw the -coronet," cried Mr. Holder. "Oh, my God! what a blind fool I have -been! And his asking to be allowed to go out for five minutes! -The dear fellow wanted to see if the missing piece were at the -scene of the struggle. How cruelly I have misjudged him!" - -"When I arrived at the house," continued Holmes, "I at once went -very carefully round it to observe if there were any traces in -the snow which might help me. I knew that none had fallen since -the evening before, and also that there had been a strong frost -to preserve impressions. I passed along the tradesmen's path, but -found it all trampled down and indistinguishable. Just beyond it, -however, at the far side of the kitchen door, a woman had stood -and talked with a man, whose round impressions on one side showed -that he had a wooden leg. I could even tell that they had been -disturbed, for the woman had run back swiftly to the door, as was -shown by the deep toe and light heel marks, while Wooden-leg had -waited a little, and then had gone away. I thought at the time -that this might be the maid and her sweetheart, of whom you had -already spoken to me, and inquiry showed it was so. I passed -round the garden without seeing anything more than random tracks, -which I took to be the police; but when I got into the stable -lane a very long and complex story was written in the snow in -front of me. - -"There was a double line of tracks of a booted man, and a second -double line which I saw with delight belonged to a man with naked -feet. I was at once convinced from what you had told me that the -latter was your son. The first had walked both ways, but the -other had run swiftly, and as his tread was marked in places over -the depression of the boot, it was obvious that he had passed -after the other. I followed them up and found they led to the -hall window, where Boots had worn all the snow away while -waiting. Then I walked to the other end, which was a hundred -yards or more down the lane. I saw where Boots had faced round, -where the snow was cut up as though there had been a struggle, -and, finally, where a few drops of blood had fallen, to show me -that I was not mistaken. Boots had then run down the lane, and -another little smudge of blood showed that it was he who had been -hurt. When he came to the highroad at the other end, I found that -the pavement had been cleared, so there was an end to that clue. - -"On entering the house, however, I examined, as you remember, the -sill and framework of the hall window with my lens, and I could -at once see that someone had passed out. I could distinguish the -outline of an instep where the wet foot had been placed in coming -in. I was then beginning to be able to form an opinion as to what -had occurred. A man had waited outside the window; someone had -brought the gems; the deed had been overseen by your son; he had -pursued the thief; had struggled with him; they had each tugged -at the coronet, their united strength causing injuries which -neither alone could have effected. He had returned with the -prize, but had left a fragment in the grasp of his opponent. So -far I was clear. The question now was, who was the man and who -was it brought him the coronet? - -"It is an old maxim of mine that when you have excluded the -impossible, whatever remains, however improbable, must be the -truth. Now, I knew that it was not you who had brought it down, -so there only remained your niece and the maids. But if it were -the maids, why should your son allow himself to be accused in -their place? There could be no possible reason. As he loved his -cousin, however, there was an excellent explanation why he should -retain her secret--the more so as the secret was a disgraceful -one. When I remembered that you had seen her at that window, and -how she had fainted on seeing the coronet again, my conjecture -became a certainty. - -"And who could it be who was her confederate? A lover evidently, -for who else could outweigh the love and gratitude which she must -feel to you? I knew that you went out little, and that your -circle of friends was a very limited one. But among them was Sir -George Burnwell. I had heard of him before as being a man of evil -reputation among women. It must have been he who wore those boots -and retained the missing gems. Even though he knew that Arthur -had discovered him, he might still flatter himself that he was -safe, for the lad could not say a word without compromising his -own family. - -"Well, your own good sense will suggest what measures I took -next. I went in the shape of a loafer to Sir George's house, -managed to pick up an acquaintance with his valet, learned that -his master had cut his head the night before, and, finally, at -the expense of six shillings, made all sure by buying a pair of -his cast-off shoes. With these I journeyed down to Streatham and -saw that they exactly fitted the tracks." - -"I saw an ill-dressed vagabond in the lane yesterday evening," -said Mr. Holder. - -"Precisely. It was I. I found that I had my man, so I came home -and changed my clothes. It was a delicate part which I had to -play then, for I saw that a prosecution must be avoided to avert -scandal, and I knew that so astute a villain would see that our -hands were tied in the matter. I went and saw him. At first, of -course, he denied everything. But when I gave him every -particular that had occurred, he tried to bluster and took down a -life-preserver from the wall. I knew my man, however, and I -clapped a pistol to his head before he could strike. Then he -became a little more reasonable. I told him that we would give -him a price for the stones he held--1000 pounds apiece. That -brought out the first signs of grief that he had shown. 'Why, -dash it all!' said he, 'I've let them go at six hundred for the -three!' I soon managed to get the address of the receiver who had -them, on promising him that there would be no prosecution. Off I -set to him, and after much chaffering I got our stones at 1000 -pounds apiece. Then I looked in upon your son, told him that all -was right, and eventually got to my bed about two o'clock, after -what I may call a really hard day's work." - -"A day which has saved England from a great public scandal," said -the banker, rising. "Sir, I cannot find words to thank you, but -you shall not find me ungrateful for what you have done. Your -skill has indeed exceeded all that I have heard of it. And now I -must fly to my dear boy to apologise to him for the wrong which I -have done him. As to what you tell me of poor Mary, it goes to my -very heart. Not even your skill can inform me where she is now." - -"I think that we may safely say," returned Holmes, "that she is -wherever Sir George Burnwell is. It is equally certain, too, that -whatever her sins are, they will soon receive a more than -sufficient punishment." - - - -XII. THE ADVENTURE OF THE COPPER BEECHES - -"To the man who loves art for its own sake," remarked Sherlock -Holmes, tossing aside the advertisement sheet of the Daily -Telegraph, "it is frequently in its least important and lowliest -manifestations that the keenest pleasure is to be derived. It is -pleasant to me to observe, Watson, that you have so far grasped -this truth that in these little records of our cases which you -have been good enough to draw up, and, I am bound to say, -occasionally to embellish, you have given prominence not so much -to the many causes clbres and sensational trials in which I -have figured but rather to those incidents which may have been -trivial in themselves, but which have given room for those -faculties of deduction and of logical synthesis which I have made -my special province." - -"And yet," said I, smiling, "I cannot quite hold myself absolved -from the charge of sensationalism which has been urged against my -records." - -"You have erred, perhaps," he observed, taking up a glowing -cinder with the tongs and lighting with it the long cherry-wood -pipe which was wont to replace his clay when he was in a -disputatious rather than a meditative mood--"you have erred -perhaps in attempting to put colour and life into each of your -statements instead of confining yourself to the task of placing -upon record that severe reasoning from cause to effect which is -really the only notable feature about the thing." - -"It seems to me that I have done you full justice in the matter," -I remarked with some coldness, for I was repelled by the egotism -which I had more than once observed to be a strong factor in my -friend's singular character. - -"No, it is not selfishness or conceit," said he, answering, as -was his wont, my thoughts rather than my words. "If I claim full -justice for my art, it is because it is an impersonal thing--a -thing beyond myself. Crime is common. Logic is rare. Therefore it -is upon the logic rather than upon the crime that you should -dwell. You have degraded what should have been a course of -lectures into a series of tales." - -It was a cold morning of the early spring, and we sat after -breakfast on either side of a cheery fire in the old room at -Baker Street. A thick fog rolled down between the lines of -dun-coloured houses, and the opposing windows loomed like dark, -shapeless blurs through the heavy yellow wreaths. Our gas was lit -and shone on the white cloth and glimmer of china and metal, for -the table had not been cleared yet. Sherlock Holmes had been -silent all the morning, dipping continuously into the -advertisement columns of a succession of papers until at last, -having apparently given up his search, he had emerged in no very -sweet temper to lecture me upon my literary shortcomings. - -"At the same time," he remarked after a pause, during which he -had sat puffing at his long pipe and gazing down into the fire, -"you can hardly be open to a charge of sensationalism, for out of -these cases which you have been so kind as to interest yourself -in, a fair proportion do not treat of crime, in its legal sense, -at all. The small matter in which I endeavoured to help the King -of Bohemia, the singular experience of Miss Mary Sutherland, the -problem connected with the man with the twisted lip, and the -incident of the noble bachelor, were all matters which are -outside the pale of the law. But in avoiding the sensational, I -fear that you may have bordered on the trivial." - -"The end may have been so," I answered, "but the methods I hold -to have been novel and of interest." - -"Pshaw, my dear fellow, what do the public, the great unobservant -public, who could hardly tell a weaver by his tooth or a -compositor by his left thumb, care about the finer shades of -analysis and deduction! But, indeed, if you are trivial, I cannot -blame you, for the days of the great cases are past. Man, or at -least criminal man, has lost all enterprise and originality. As -to my own little practice, it seems to be degenerating into an -agency for recovering lost lead pencils and giving advice to -young ladies from boarding-schools. I think that I have touched -bottom at last, however. This note I had this morning marks my -zero-point, I fancy. Read it!" He tossed a crumpled letter across -to me. - -It was dated from Montague Place upon the preceding evening, and -ran thus: - -"DEAR MR. HOLMES:--I am very anxious to consult you as to whether -I should or should not accept a situation which has been offered -to me as governess. I shall call at half-past ten to-morrow if I -do not inconvenience you. Yours faithfully, - "VIOLET HUNTER." - -"Do you know the young lady?" I asked. - -"Not I." - -"It is half-past ten now." - -"Yes, and I have no doubt that is her ring." - -"It may turn out to be of more interest than you think. You -remember that the affair of the blue carbuncle, which appeared to -be a mere whim at first, developed into a serious investigation. -It may be so in this case, also." - -"Well, let us hope so. But our doubts will very soon be solved, -for here, unless I am much mistaken, is the person in question." - -As he spoke the door opened and a young lady entered the room. -She was plainly but neatly dressed, with a bright, quick face, -freckled like a plover's egg, and with the brisk manner of a -woman who has had her own way to make in the world. - -"You will excuse my troubling you, I am sure," said she, as my -companion rose to greet her, "but I have had a very strange -experience, and as I have no parents or relations of any sort -from whom I could ask advice, I thought that perhaps you would be -kind enough to tell me what I should do." - -"Pray take a seat, Miss Hunter. I shall be happy to do anything -that I can to serve you." - -I could see that Holmes was favourably impressed by the manner -and speech of his new client. He looked her over in his searching -fashion, and then composed himself, with his lids drooping and -his finger-tips together, to listen to her story. - -"I have been a governess for five years," said she, "in the -family of Colonel Spence Munro, but two months ago the colonel -received an appointment at Halifax, in Nova Scotia, and took his -children over to America with him, so that I found myself without -a situation. I advertised, and I answered advertisements, but -without success. At last the little money which I had saved began -to run short, and I was at my wit's end as to what I should do. - -"There is a well-known agency for governesses in the West End -called Westaway's, and there I used to call about once a week in -order to see whether anything had turned up which might suit me. -Westaway was the name of the founder of the business, but it is -really managed by Miss Stoper. She sits in her own little office, -and the ladies who are seeking employment wait in an anteroom, -and are then shown in one by one, when she consults her ledgers -and sees whether she has anything which would suit them. - -"Well, when I called last week I was shown into the little office -as usual, but I found that Miss Stoper was not alone. A -prodigiously stout man with a very smiling face and a great heavy -chin which rolled down in fold upon fold over his throat sat at -her elbow with a pair of glasses on his nose, looking very -earnestly at the ladies who entered. As I came in he gave quite a -jump in his chair and turned quickly to Miss Stoper. - -"'That will do,' said he; 'I could not ask for anything better. -Capital! capital!' He seemed quite enthusiastic and rubbed his -hands together in the most genial fashion. He was such a -comfortable-looking man that it was quite a pleasure to look at -him. - -"'You are looking for a situation, miss?' he asked. - -"'Yes, sir.' - -"'As governess?' - -"'Yes, sir.' - -"'And what salary do you ask?' - -"'I had 4 pounds a month in my last place with Colonel Spence -Munro.' - -"'Oh, tut, tut! sweating--rank sweating!' he cried, throwing his -fat hands out into the air like a man who is in a boiling -passion. 'How could anyone offer so pitiful a sum to a lady with -such attractions and accomplishments?' - -"'My accomplishments, sir, may be less than you imagine,' said I. -'A little French, a little German, music, and drawing--' - -"'Tut, tut!' he cried. 'This is all quite beside the question. -The point is, have you or have you not the bearing and deportment -of a lady? There it is in a nutshell. If you have not, you are -not fitted for the rearing of a child who may some day play a -considerable part in the history of the country. But if you have -why, then, how could any gentleman ask you to condescend to -accept anything under the three figures? Your salary with me, -madam, would commence at 100 pounds a year.' - -"You may imagine, Mr. Holmes, that to me, destitute as I was, -such an offer seemed almost too good to be true. The gentleman, -however, seeing perhaps the look of incredulity upon my face, -opened a pocket-book and took out a note. - -"'It is also my custom,' said he, smiling in the most pleasant -fashion until his eyes were just two little shining slits amid -the white creases of his face, 'to advance to my young ladies -half their salary beforehand, so that they may meet any little -expenses of their journey and their wardrobe.' - -"It seemed to me that I had never met so fascinating and so -thoughtful a man. As I was already in debt to my tradesmen, the -advance was a great convenience, and yet there was something -unnatural about the whole transaction which made me wish to know -a little more before I quite committed myself. - -"'May I ask where you live, sir?' said I. - -"'Hampshire. Charming rural place. The Copper Beeches, five miles -on the far side of Winchester. It is the most lovely country, my -dear young lady, and the dearest old country-house.' - -"'And my duties, sir? I should be glad to know what they would -be.' - -"'One child--one dear little romper just six years old. Oh, if -you could see him killing cockroaches with a slipper! Smack! -smack! smack! Three gone before you could wink!' He leaned back -in his chair and laughed his eyes into his head again. - -"I was a little startled at the nature of the child's amusement, -but the father's laughter made me think that perhaps he was -joking. - -"'My sole duties, then,' I asked, 'are to take charge of a single -child?' - -"'No, no, not the sole, not the sole, my dear young lady,' he -cried. 'Your duty would be, as I am sure your good sense would -suggest, to obey any little commands my wife might give, provided -always that they were such commands as a lady might with -propriety obey. You see no difficulty, heh?' - -"'I should be happy to make myself useful.' - -"'Quite so. In dress now, for example. We are faddy people, you -know--faddy but kind-hearted. If you were asked to wear any dress -which we might give you, you would not object to our little whim. -Heh?' - -"'No,' said I, considerably astonished at his words. - -"'Or to sit here, or sit there, that would not be offensive to -you?' - -"'Oh, no.' - -"'Or to cut your hair quite short before you come to us?' - -"I could hardly believe my ears. As you may observe, Mr. Holmes, -my hair is somewhat luxuriant, and of a rather peculiar tint of -chestnut. It has been considered artistic. I could not dream of -sacrificing it in this offhand fashion. - -"'I am afraid that that is quite impossible,' said I. He had been -watching me eagerly out of his small eyes, and I could see a -shadow pass over his face as I spoke. - -"'I am afraid that it is quite essential,' said he. 'It is a -little fancy of my wife's, and ladies' fancies, you know, madam, -ladies' fancies must be consulted. And so you won't cut your -hair?' - -"'No, sir, I really could not,' I answered firmly. - -"'Ah, very well; then that quite settles the matter. It is a -pity, because in other respects you would really have done very -nicely. In that case, Miss Stoper, I had best inspect a few more -of your young ladies.' - -"The manageress had sat all this while busy with her papers -without a word to either of us, but she glanced at me now with so -much annoyance upon her face that I could not help suspecting -that she had lost a handsome commission through my refusal. - -"'Do you desire your name to be kept upon the books?' she asked. - -"'If you please, Miss Stoper.' - -"'Well, really, it seems rather useless, since you refuse the -most excellent offers in this fashion,' said she sharply. 'You -can hardly expect us to exert ourselves to find another such -opening for you. Good-day to you, Miss Hunter.' She struck a gong -upon the table, and I was shown out by the page. - -"Well, Mr. Holmes, when I got back to my lodgings and found -little enough in the cupboard, and two or three bills upon the -table, I began to ask myself whether I had not done a very -foolish thing. After all, if these people had strange fads and -expected obedience on the most extraordinary matters, they were -at least ready to pay for their eccentricity. Very few -governesses in England are getting 100 pounds a year. Besides, -what use was my hair to me? Many people are improved by wearing -it short and perhaps I should be among the number. Next day I was -inclined to think that I had made a mistake, and by the day after -I was sure of it. I had almost overcome my pride so far as to go -back to the agency and inquire whether the place was still open -when I received this letter from the gentleman himself. I have it -here and I will read it to you: - - "'The Copper Beeches, near Winchester. -"'DEAR MISS HUNTER:--Miss Stoper has very kindly given me your -address, and I write from here to ask you whether you have -reconsidered your decision. My wife is very anxious that you -should come, for she has been much attracted by my description of -you. We are willing to give 30 pounds a quarter, or 120 pounds a -year, so as to recompense you for any little inconvenience which -our fads may cause you. They are not very exacting, after all. My -wife is fond of a particular shade of electric blue and would -like you to wear such a dress indoors in the morning. You need -not, however, go to the expense of purchasing one, as we have one -belonging to my dear daughter Alice (now in Philadelphia), which -would, I should think, fit you very well. Then, as to sitting -here or there, or amusing yourself in any manner indicated, that -need cause you no inconvenience. As regards your hair, it is no -doubt a pity, especially as I could not help remarking its beauty -during our short interview, but I am afraid that I must remain -firm upon this point, and I only hope that the increased salary -may recompense you for the loss. Your duties, as far as the child -is concerned, are very light. Now do try to come, and I shall -meet you with the dog-cart at Winchester. Let me know your train. -Yours faithfully, JEPHRO RUCASTLE.' - -"That is the letter which I have just received, Mr. Holmes, and -my mind is made up that I will accept it. I thought, however, -that before taking the final step I should like to submit the -whole matter to your consideration." - -"Well, Miss Hunter, if your mind is made up, that settles the -question," said Holmes, smiling. - -"But you would not advise me to refuse?" - -"I confess that it is not the situation which I should like to -see a sister of mine apply for." - -"What is the meaning of it all, Mr. Holmes?" - -"Ah, I have no data. I cannot tell. Perhaps you have yourself -formed some opinion?" - -"Well, there seems to me to be only one possible solution. Mr. -Rucastle seemed to be a very kind, good-natured man. Is it not -possible that his wife is a lunatic, that he desires to keep the -matter quiet for fear she should be taken to an asylum, and that -he humours her fancies in every way in order to prevent an -outbreak?" - -"That is a possible solution--in fact, as matters stand, it is -the most probable one. But in any case it does not seem to be a -nice household for a young lady." - -"But the money, Mr. Holmes, the money!" - -"Well, yes, of course the pay is good--too good. That is what -makes me uneasy. Why should they give you 120 pounds a year, when -they could have their pick for 40 pounds? There must be some -strong reason behind." - -"I thought that if I told you the circumstances you would -understand afterwards if I wanted your help. I should feel so -much stronger if I felt that you were at the back of me." - -"Oh, you may carry that feeling away with you. I assure you that -your little problem promises to be the most interesting which has -come my way for some months. There is something distinctly novel -about some of the features. If you should find yourself in doubt -or in danger--" - -"Danger! What danger do you foresee?" - -Holmes shook his head gravely. "It would cease to be a danger if -we could define it," said he. "But at any time, day or night, a -telegram would bring me down to your help." - -"That is enough." She rose briskly from her chair with the -anxiety all swept from her face. "I shall go down to Hampshire -quite easy in my mind now. I shall write to Mr. Rucastle at once, -sacrifice my poor hair to-night, and start for Winchester -to-morrow." With a few grateful words to Holmes she bade us both -good-night and bustled off upon her way. - -"At least," said I as we heard her quick, firm steps descending -the stairs, "she seems to be a young lady who is very well able -to take care of herself." - -"And she would need to be," said Holmes gravely. "I am much -mistaken if we do not hear from her before many days are past." - -It was not very long before my friend's prediction was fulfilled. -A fortnight went by, during which I frequently found my thoughts -turning in her direction and wondering what strange side-alley of -human experience this lonely woman had strayed into. The unusual -salary, the curious conditions, the light duties, all pointed to -something abnormal, though whether a fad or a plot, or whether -the man were a philanthropist or a villain, it was quite beyond -my powers to determine. As to Holmes, I observed that he sat -frequently for half an hour on end, with knitted brows and an -abstracted air, but he swept the matter away with a wave of his -hand when I mentioned it. "Data! data! data!" he cried -impatiently. "I can't make bricks without clay." And yet he would -always wind up by muttering that no sister of his should ever -have accepted such a situation. - -The telegram which we eventually received came late one night -just as I was thinking of turning in and Holmes was settling down -to one of those all-night chemical researches which he frequently -indulged in, when I would leave him stooping over a retort and a -test-tube at night and find him in the same position when I came -down to breakfast in the morning. He opened the yellow envelope, -and then, glancing at the message, threw it across to me. - -"Just look up the trains in Bradshaw," said he, and turned back -to his chemical studies. - -The summons was a brief and urgent one. - -"Please be at the Black Swan Hotel at Winchester at midday -to-morrow," it said. "Do come! I am at my wit's end. HUNTER." - -"Will you come with me?" asked Holmes, glancing up. - -"I should wish to." - -"Just look it up, then." - -"There is a train at half-past nine," said I, glancing over my -Bradshaw. "It is due at Winchester at 11:30." - -"That will do very nicely. Then perhaps I had better postpone my -analysis of the acetones, as we may need to be at our best in the -morning." - -By eleven o'clock the next day we were well upon our way to the -old English capital. Holmes had been buried in the morning papers -all the way down, but after we had passed the Hampshire border he -threw them down and began to admire the scenery. It was an ideal -spring day, a light blue sky, flecked with little fleecy white -clouds drifting across from west to east. The sun was shining -very brightly, and yet there was an exhilarating nip in the air, -which set an edge to a man's energy. All over the countryside, -away to the rolling hills around Aldershot, the little red and -grey roofs of the farm-steadings peeped out from amid the light -green of the new foliage. - -"Are they not fresh and beautiful?" I cried with all the -enthusiasm of a man fresh from the fogs of Baker Street. - -But Holmes shook his head gravely. - -"Do you know, Watson," said he, "that it is one of the curses of -a mind with a turn like mine that I must look at everything with -reference to my own special subject. You look at these scattered -houses, and you are impressed by their beauty. I look at them, -and the only thought which comes to me is a feeling of their -isolation and of the impunity with which crime may be committed -there." - -"Good heavens!" I cried. "Who would associate crime with these -dear old homesteads?" - -"They always fill me with a certain horror. It is my belief, -Watson, founded upon my experience, that the lowest and vilest -alleys in London do not present a more dreadful record of sin -than does the smiling and beautiful countryside." - -"You horrify me!" - -"But the reason is very obvious. The pressure of public opinion -can do in the town what the law cannot accomplish. There is no -lane so vile that the scream of a tortured child, or the thud of -a drunkard's blow, does not beget sympathy and indignation among -the neighbours, and then the whole machinery of justice is ever -so close that a word of complaint can set it going, and there is -but a step between the crime and the dock. But look at these -lonely houses, each in its own fields, filled for the most part -with poor ignorant folk who know little of the law. Think of the -deeds of hellish cruelty, the hidden wickedness which may go on, -year in, year out, in such places, and none the wiser. Had this -lady who appeals to us for help gone to live in Winchester, I -should never have had a fear for her. It is the five miles of -country which makes the danger. Still, it is clear that she is -not personally threatened." - -"No. If she can come to Winchester to meet us she can get away." - -"Quite so. She has her freedom." - -"What CAN be the matter, then? Can you suggest no explanation?" - -"I have devised seven separate explanations, each of which would -cover the facts as far as we know them. But which of these is -correct can only be determined by the fresh information which we -shall no doubt find waiting for us. Well, there is the tower of -the cathedral, and we shall soon learn all that Miss Hunter has -to tell." - -The Black Swan is an inn of repute in the High Street, at no -distance from the station, and there we found the young lady -waiting for us. She had engaged a sitting-room, and our lunch -awaited us upon the table. - -"I am so delighted that you have come," she said earnestly. "It -is so very kind of you both; but indeed I do not know what I -should do. Your advice will be altogether invaluable to me." - -"Pray tell us what has happened to you." - -"I will do so, and I must be quick, for I have promised Mr. -Rucastle to be back before three. I got his leave to come into -town this morning, though he little knew for what purpose." - -"Let us have everything in its due order." Holmes thrust his long -thin legs out towards the fire and composed himself to listen. - -"In the first place, I may say that I have met, on the whole, -with no actual ill-treatment from Mr. and Mrs. Rucastle. It is -only fair to them to say that. But I cannot understand them, and -I am not easy in my mind about them." - -"What can you not understand?" - -"Their reasons for their conduct. But you shall have it all just -as it occurred. When I came down, Mr. Rucastle met me here and -drove me in his dog-cart to the Copper Beeches. It is, as he -said, beautifully situated, but it is not beautiful in itself, -for it is a large square block of a house, whitewashed, but all -stained and streaked with damp and bad weather. There are grounds -round it, woods on three sides, and on the fourth a field which -slopes down to the Southampton highroad, which curves past about -a hundred yards from the front door. This ground in front belongs -to the house, but the woods all round are part of Lord -Southerton's preserves. A clump of copper beeches immediately in -front of the hall door has given its name to the place. - -"I was driven over by my employer, who was as amiable as ever, -and was introduced by him that evening to his wife and the child. -There was no truth, Mr. Holmes, in the conjecture which seemed to -us to be probable in your rooms at Baker Street. Mrs. Rucastle is -not mad. I found her to be a silent, pale-faced woman, much -younger than her husband, not more than thirty, I should think, -while he can hardly be less than forty-five. From their -conversation I have gathered that they have been married about -seven years, that he was a widower, and that his only child by -the first wife was the daughter who has gone to Philadelphia. Mr. -Rucastle told me in private that the reason why she had left them -was that she had an unreasoning aversion to her stepmother. As -the daughter could not have been less than twenty, I can quite -imagine that her position must have been uncomfortable with her -father's young wife. - -"Mrs. Rucastle seemed to me to be colourless in mind as well as -in feature. She impressed me neither favourably nor the reverse. -She was a nonentity. It was easy to see that she was passionately -devoted both to her husband and to her little son. Her light grey -eyes wandered continually from one to the other, noting every -little want and forestalling it if possible. He was kind to her -also in his bluff, boisterous fashion, and on the whole they -seemed to be a happy couple. And yet she had some secret sorrow, -this woman. She would often be lost in deep thought, with the -saddest look upon her face. More than once I have surprised her -in tears. I have thought sometimes that it was the disposition of -her child which weighed upon her mind, for I have never met so -utterly spoiled and so ill-natured a little creature. He is small -for his age, with a head which is quite disproportionately large. -His whole life appears to be spent in an alternation between -savage fits of passion and gloomy intervals of sulking. Giving -pain to any creature weaker than himself seems to be his one idea -of amusement, and he shows quite remarkable talent in planning -the capture of mice, little birds, and insects. But I would -rather not talk about the creature, Mr. Holmes, and, indeed, he -has little to do with my story." - -"I am glad of all details," remarked my friend, "whether they -seem to you to be relevant or not." - -"I shall try not to miss anything of importance. The one -unpleasant thing about the house, which struck me at once, was -the appearance and conduct of the servants. There are only two, a -man and his wife. Toller, for that is his name, is a rough, -uncouth man, with grizzled hair and whiskers, and a perpetual -smell of drink. Twice since I have been with them he has been -quite drunk, and yet Mr. Rucastle seemed to take no notice of it. -His wife is a very tall and strong woman with a sour face, as -silent as Mrs. Rucastle and much less amiable. They are a most -unpleasant couple, but fortunately I spend most of my time in the -nursery and my own room, which are next to each other in one -corner of the building. - -"For two days after my arrival at the Copper Beeches my life was -very quiet; on the third, Mrs. Rucastle came down just after -breakfast and whispered something to her husband. - -"'Oh, yes,' said he, turning to me, 'we are very much obliged to -you, Miss Hunter, for falling in with our whims so far as to cut -your hair. I assure you that it has not detracted in the tiniest -iota from your appearance. We shall now see how the electric-blue -dress will become you. You will find it laid out upon the bed in -your room, and if you would be so good as to put it on we should -both be extremely obliged.' - -"The dress which I found waiting for me was of a peculiar shade -of blue. It was of excellent material, a sort of beige, but it -bore unmistakable signs of having been worn before. It could not -have been a better fit if I had been measured for it. Both Mr. -and Mrs. Rucastle expressed a delight at the look of it, which -seemed quite exaggerated in its vehemence. They were waiting for -me in the drawing-room, which is a very large room, stretching -along the entire front of the house, with three long windows -reaching down to the floor. A chair had been placed close to the -central window, with its back turned towards it. In this I was -asked to sit, and then Mr. Rucastle, walking up and down on the -other side of the room, began to tell me a series of the funniest -stories that I have ever listened to. You cannot imagine how -comical he was, and I laughed until I was quite weary. Mrs. -Rucastle, however, who has evidently no sense of humour, never so -much as smiled, but sat with her hands in her lap, and a sad, -anxious look upon her face. After an hour or so, Mr. Rucastle -suddenly remarked that it was time to commence the duties of the -day, and that I might change my dress and go to little Edward in -the nursery. - -"Two days later this same performance was gone through under -exactly similar circumstances. Again I changed my dress, again I -sat in the window, and again I laughed very heartily at the funny -stories of which my employer had an immense rpertoire, and which -he told inimitably. Then he handed me a yellow-backed novel, and -moving my chair a little sideways, that my own shadow might not -fall upon the page, he begged me to read aloud to him. I read for -about ten minutes, beginning in the heart of a chapter, and then -suddenly, in the middle of a sentence, he ordered me to cease and -to change my dress. - -"You can easily imagine, Mr. Holmes, how curious I became as to -what the meaning of this extraordinary performance could possibly -be. They were always very careful, I observed, to turn my face -away from the window, so that I became consumed with the desire -to see what was going on behind my back. At first it seemed to be -impossible, but I soon devised a means. My hand-mirror had been -broken, so a happy thought seized me, and I concealed a piece of -the glass in my handkerchief. On the next occasion, in the midst -of my laughter, I put my handkerchief up to my eyes, and was able -with a little management to see all that there was behind me. I -confess that I was disappointed. There was nothing. At least that -was my first impression. At the second glance, however, I -perceived that there was a man standing in the Southampton Road, -a small bearded man in a grey suit, who seemed to be looking in -my direction. The road is an important highway, and there are -usually people there. This man, however, was leaning against the -railings which bordered our field and was looking earnestly up. I -lowered my handkerchief and glanced at Mrs. Rucastle to find her -eyes fixed upon me with a most searching gaze. She said nothing, -but I am convinced that she had divined that I had a mirror in my -hand and had seen what was behind me. She rose at once. - -"'Jephro,' said she, 'there is an impertinent fellow upon the -road there who stares up at Miss Hunter.' - -"'No friend of yours, Miss Hunter?' he asked. - -"'No, I know no one in these parts.' - -"'Dear me! How very impertinent! Kindly turn round and motion to -him to go away.' - -"'Surely it would be better to take no notice.' - -"'No, no, we should have him loitering here always. Kindly turn -round and wave him away like that.' - -"I did as I was told, and at the same instant Mrs. Rucastle drew -down the blind. That was a week ago, and from that time I have -not sat again in the window, nor have I worn the blue dress, nor -seen the man in the road." - -"Pray continue," said Holmes. "Your narrative promises to be a -most interesting one." - -"You will find it rather disconnected, I fear, and there may -prove to be little relation between the different incidents of -which I speak. On the very first day that I was at the Copper -Beeches, Mr. Rucastle took me to a small outhouse which stands -near the kitchen door. As we approached it I heard the sharp -rattling of a chain, and the sound as of a large animal moving -about. - -"'Look in here!' said Mr. Rucastle, showing me a slit between two -planks. 'Is he not a beauty?' - -"I looked through and was conscious of two glowing eyes, and of a -vague figure huddled up in the darkness. - -"'Don't be frightened,' said my employer, laughing at the start -which I had given. 'It's only Carlo, my mastiff. I call him mine, -but really old Toller, my groom, is the only man who can do -anything with him. We feed him once a day, and not too much then, -so that he is always as keen as mustard. Toller lets him loose -every night, and God help the trespasser whom he lays his fangs -upon. For goodness' sake don't you ever on any pretext set your -foot over the threshold at night, for it's as much as your life -is worth.' - -"The warning was no idle one, for two nights later I happened to -look out of my bedroom window about two o'clock in the morning. -It was a beautiful moonlight night, and the lawn in front of the -house was silvered over and almost as bright as day. I was -standing, rapt in the peaceful beauty of the scene, when I was -aware that something was moving under the shadow of the copper -beeches. As it emerged into the moonshine I saw what it was. It -was a giant dog, as large as a calf, tawny tinted, with hanging -jowl, black muzzle, and huge projecting bones. It walked slowly -across the lawn and vanished into the shadow upon the other side. -That dreadful sentinel sent a chill to my heart which I do not -think that any burglar could have done. - -"And now I have a very strange experience to tell you. I had, as -you know, cut off my hair in London, and I had placed it in a -great coil at the bottom of my trunk. One evening, after the -child was in bed, I began to amuse myself by examining the -furniture of my room and by rearranging my own little things. -There was an old chest of drawers in the room, the two upper ones -empty and open, the lower one locked. I had filled the first two -with my linen, and as I had still much to pack away I was -naturally annoyed at not having the use of the third drawer. It -struck me that it might have been fastened by a mere oversight, -so I took out my bunch of keys and tried to open it. The very -first key fitted to perfection, and I drew the drawer open. There -was only one thing in it, but I am sure that you would never -guess what it was. It was my coil of hair. - -"I took it up and examined it. It was of the same peculiar tint, -and the same thickness. But then the impossibility of the thing -obtruded itself upon me. How could my hair have been locked in -the drawer? With trembling hands I undid my trunk, turned out the -contents, and drew from the bottom my own hair. I laid the two -tresses together, and I assure you that they were identical. Was -it not extraordinary? Puzzle as I would, I could make nothing at -all of what it meant. I returned the strange hair to the drawer, -and I said nothing of the matter to the Rucastles as I felt that -I had put myself in the wrong by opening a drawer which they had -locked. - -"I am naturally observant, as you may have remarked, Mr. Holmes, -and I soon had a pretty good plan of the whole house in my head. -There was one wing, however, which appeared not to be inhabited -at all. A door which faced that which led into the quarters of -the Tollers opened into this suite, but it was invariably locked. -One day, however, as I ascended the stair, I met Mr. Rucastle -coming out through this door, his keys in his hand, and a look on -his face which made him a very different person to the round, -jovial man to whom I was accustomed. His cheeks were red, his -brow was all crinkled with anger, and the veins stood out at his -temples with passion. He locked the door and hurried past me -without a word or a look. - -"This aroused my curiosity, so when I went out for a walk in the -grounds with my charge, I strolled round to the side from which I -could see the windows of this part of the house. There were four -of them in a row, three of which were simply dirty, while the -fourth was shuttered up. They were evidently all deserted. As I -strolled up and down, glancing at them occasionally, Mr. Rucastle -came out to me, looking as merry and jovial as ever. - -"'Ah!' said he, 'you must not think me rude if I passed you -without a word, my dear young lady. I was preoccupied with -business matters.' - -"I assured him that I was not offended. 'By the way,' said I, -'you seem to have quite a suite of spare rooms up there, and one -of them has the shutters up.' - -"He looked surprised and, as it seemed to me, a little startled -at my remark. - -"'Photography is one of my hobbies,' said he. 'I have made my -dark room up there. But, dear me! what an observant young lady we -have come upon. Who would have believed it? Who would have ever -believed it?' He spoke in a jesting tone, but there was no jest -in his eyes as he looked at me. I read suspicion there and -annoyance, but no jest. - -"Well, Mr. Holmes, from the moment that I understood that there -was something about that suite of rooms which I was not to know, -I was all on fire to go over them. It was not mere curiosity, -though I have my share of that. It was more a feeling of duty--a -feeling that some good might come from my penetrating to this -place. They talk of woman's instinct; perhaps it was woman's -instinct which gave me that feeling. At any rate, it was there, -and I was keenly on the lookout for any chance to pass the -forbidden door. - -"It was only yesterday that the chance came. I may tell you that, -besides Mr. Rucastle, both Toller and his wife find something to -do in these deserted rooms, and I once saw him carrying a large -black linen bag with him through the door. Recently he has been -drinking hard, and yesterday evening he was very drunk; and when -I came upstairs there was the key in the door. I have no doubt at -all that he had left it there. Mr. and Mrs. Rucastle were both -downstairs, and the child was with them, so that I had an -admirable opportunity. I turned the key gently in the lock, -opened the door, and slipped through. - -"There was a little passage in front of me, unpapered and -uncarpeted, which turned at a right angle at the farther end. -Round this corner were three doors in a line, the first and third -of which were open. They each led into an empty room, dusty and -cheerless, with two windows in the one and one in the other, so -thick with dirt that the evening light glimmered dimly through -them. The centre door was closed, and across the outside of it -had been fastened one of the broad bars of an iron bed, padlocked -at one end to a ring in the wall, and fastened at the other with -stout cord. The door itself was locked as well, and the key was -not there. This barricaded door corresponded clearly with the -shuttered window outside, and yet I could see by the glimmer from -beneath it that the room was not in darkness. Evidently there was -a skylight which let in light from above. As I stood in the -passage gazing at the sinister door and wondering what secret it -might veil, I suddenly heard the sound of steps within the room -and saw a shadow pass backward and forward against the little -slit of dim light which shone out from under the door. A mad, -unreasoning terror rose up in me at the sight, Mr. Holmes. My -overstrung nerves failed me suddenly, and I turned and ran--ran -as though some dreadful hand were behind me clutching at the -skirt of my dress. I rushed down the passage, through the door, -and straight into the arms of Mr. Rucastle, who was waiting -outside. - -"'So,' said he, smiling, 'it was you, then. I thought that it -must be when I saw the door open.' - -"'Oh, I am so frightened!' I panted. - -"'My dear young lady! my dear young lady!'--you cannot think how -caressing and soothing his manner was--'and what has frightened -you, my dear young lady?' - -"But his voice was just a little too coaxing. He overdid it. I -was keenly on my guard against him. - -"'I was foolish enough to go into the empty wing,' I answered. -'But it is so lonely and eerie in this dim light that I was -frightened and ran out again. Oh, it is so dreadfully still in -there!' - -"'Only that?' said he, looking at me keenly. - -"'Why, what did you think?' I asked. - -"'Why do you think that I lock this door?' - -"'I am sure that I do not know.' - -"'It is to keep people out who have no business there. Do you -see?' He was still smiling in the most amiable manner. - -"'I am sure if I had known--' - -"'Well, then, you know now. And if you ever put your foot over -that threshold again'--here in an instant the smile hardened into -a grin of rage, and he glared down at me with the face of a -demon--'I'll throw you to the mastiff.' - -"I was so terrified that I do not know what I did. I suppose that -I must have rushed past him into my room. I remember nothing -until I found myself lying on my bed trembling all over. Then I -thought of you, Mr. Holmes. I could not live there longer without -some advice. I was frightened of the house, of the man, of the -woman, of the servants, even of the child. They were all horrible -to me. If I could only bring you down all would be well. Of -course I might have fled from the house, but my curiosity was -almost as strong as my fears. My mind was soon made up. I would -send you a wire. I put on my hat and cloak, went down to the -office, which is about half a mile from the house, and then -returned, feeling very much easier. A horrible doubt came into my -mind as I approached the door lest the dog might be loose, but I -remembered that Toller had drunk himself into a state of -insensibility that evening, and I knew that he was the only one -in the household who had any influence with the savage creature, -or who would venture to set him free. I slipped in in safety and -lay awake half the night in my joy at the thought of seeing you. -I had no difficulty in getting leave to come into Winchester this -morning, but I must be back before three o'clock, for Mr. and -Mrs. Rucastle are going on a visit, and will be away all the -evening, so that I must look after the child. Now I have told you -all my adventures, Mr. Holmes, and I should be very glad if you -could tell me what it all means, and, above all, what I should -do." - -Holmes and I had listened spellbound to this extraordinary story. -My friend rose now and paced up and down the room, his hands in -his pockets, and an expression of the most profound gravity upon -his face. - -"Is Toller still drunk?" he asked. - -"Yes. I heard his wife tell Mrs. Rucastle that she could do -nothing with him." - -"That is well. And the Rucastles go out to-night?" - -"Yes." - -"Is there a cellar with a good strong lock?" - -"Yes, the wine-cellar." - -"You seem to me to have acted all through this matter like a very -brave and sensible girl, Miss Hunter. Do you think that you could -perform one more feat? I should not ask it of you if I did not -think you a quite exceptional woman." - -"I will try. What is it?" - -"We shall be at the Copper Beeches by seven o'clock, my friend -and I. The Rucastles will be gone by that time, and Toller will, -we hope, be incapable. There only remains Mrs. Toller, who might -give the alarm. If you could send her into the cellar on some -errand, and then turn the key upon her, you would facilitate -matters immensely." - -"I will do it." - -"Excellent! We shall then look thoroughly into the affair. Of -course there is only one feasible explanation. You have been -brought there to personate someone, and the real person is -imprisoned in this chamber. That is obvious. As to who this -prisoner is, I have no doubt that it is the daughter, Miss Alice -Rucastle, if I remember right, who was said to have gone to -America. You were chosen, doubtless, as resembling her in height, -figure, and the colour of your hair. Hers had been cut off, very -possibly in some illness through which she has passed, and so, of -course, yours had to be sacrificed also. By a curious chance you -came upon her tresses. The man in the road was undoubtedly some -friend of hers--possibly her fianc--and no doubt, as you wore -the girl's dress and were so like her, he was convinced from your -laughter, whenever he saw you, and afterwards from your gesture, -that Miss Rucastle was perfectly happy, and that she no longer -desired his attentions. The dog is let loose at night to prevent -him from endeavouring to communicate with her. So much is fairly -clear. The most serious point in the case is the disposition of -the child." - -"What on earth has that to do with it?" I ejaculated. - -"My dear Watson, you as a medical man are continually gaining -light as to the tendencies of a child by the study of the -parents. Don't you see that the converse is equally valid. I have -frequently gained my first real insight into the character of -parents by studying their children. This child's disposition is -abnormally cruel, merely for cruelty's sake, and whether he -derives this from his smiling father, as I should suspect, or -from his mother, it bodes evil for the poor girl who is in their -power." - -"I am sure that you are right, Mr. Holmes," cried our client. "A -thousand things come back to me which make me certain that you -have hit it. Oh, let us lose not an instant in bringing help to -this poor creature." - -"We must be circumspect, for we are dealing with a very cunning -man. We can do nothing until seven o'clock. At that hour we shall -be with you, and it will not be long before we solve the -mystery." - -We were as good as our word, for it was just seven when we -reached the Copper Beeches, having put up our trap at a wayside -public-house. The group of trees, with their dark leaves shining -like burnished metal in the light of the setting sun, were -sufficient to mark the house even had Miss Hunter not been -standing smiling on the door-step. - -"Have you managed it?" asked Holmes. - -A loud thudding noise came from somewhere downstairs. "That is -Mrs. Toller in the cellar," said she. "Her husband lies snoring -on the kitchen rug. Here are his keys, which are the duplicates -of Mr. Rucastle's." - -"You have done well indeed!" cried Holmes with enthusiasm. "Now -lead the way, and we shall soon see the end of this black -business." - -We passed up the stair, unlocked the door, followed on down a -passage, and found ourselves in front of the barricade which Miss -Hunter had described. Holmes cut the cord and removed the -transverse bar. Then he tried the various keys in the lock, but -without success. No sound came from within, and at the silence -Holmes' face clouded over. - -"I trust that we are not too late," said he. "I think, Miss -Hunter, that we had better go in without you. Now, Watson, put -your shoulder to it, and we shall see whether we cannot make our -way in." - -It was an old rickety door and gave at once before our united -strength. Together we rushed into the room. It was empty. There -was no furniture save a little pallet bed, a small table, and a -basketful of linen. The skylight above was open, and the prisoner -gone. - -"There has been some villainy here," said Holmes; "this beauty -has guessed Miss Hunter's intentions and has carried his victim -off." - -"But how?" - -"Through the skylight. We shall soon see how he managed it." He -swung himself up onto the roof. "Ah, yes," he cried, "here's the -end of a long light ladder against the eaves. That is how he did -it." - -"But it is impossible," said Miss Hunter; "the ladder was not -there when the Rucastles went away." - -"He has come back and done it. I tell you that he is a clever and -dangerous man. I should not be very much surprised if this were -he whose step I hear now upon the stair. I think, Watson, that it -would be as well for you to have your pistol ready." - -The words were hardly out of his mouth before a man appeared at -the door of the room, a very fat and burly man, with a heavy -stick in his hand. Miss Hunter screamed and shrunk against the -wall at the sight of him, but Sherlock Holmes sprang forward and -confronted him. - -"You villain!" said he, "where's your daughter?" - -The fat man cast his eyes round, and then up at the open -skylight. - -"It is for me to ask you that," he shrieked, "you thieves! Spies -and thieves! I have caught you, have I? You are in my power. I'll -serve you!" He turned and clattered down the stairs as hard as he -could go. - -"He's gone for the dog!" cried Miss Hunter. - -"I have my revolver," said I. - -"Better close the front door," cried Holmes, and we all rushed -down the stairs together. We had hardly reached the hall when we -heard the baying of a hound, and then a scream of agony, with a -horrible worrying sound which it was dreadful to listen to. An -elderly man with a red face and shaking limbs came staggering out -at a side door. - -"My God!" he cried. "Someone has loosed the dog. It's not been -fed for two days. Quick, quick, or it'll be too late!" - -Holmes and I rushed out and round the angle of the house, with -Toller hurrying behind us. There was the huge famished brute, its -black muzzle buried in Rucastle's throat, while he writhed and -screamed upon the ground. Running up, I blew its brains out, and -it fell over with its keen white teeth still meeting in the great -creases of his neck. With much labour we separated them and -carried him, living but horribly mangled, into the house. We laid -him upon the drawing-room sofa, and having dispatched the sobered -Toller to bear the news to his wife, I did what I could to -relieve his pain. We were all assembled round him when the door -opened, and a tall, gaunt woman entered the room. - -"Mrs. Toller!" cried Miss Hunter. - -"Yes, miss. Mr. Rucastle let me out when he came back before he -went up to you. Ah, miss, it is a pity you didn't let me know -what you were planning, for I would have told you that your pains -were wasted." - -"Ha!" said Holmes, looking keenly at her. "It is clear that Mrs. -Toller knows more about this matter than anyone else." - -"Yes, sir, I do, and I am ready enough to tell what I know." - -"Then, pray, sit down, and let us hear it for there are several -points on which I must confess that I am still in the dark." - -"I will soon make it clear to you," said she; "and I'd have done -so before now if I could ha' got out from the cellar. If there's -police-court business over this, you'll remember that I was the -one that stood your friend, and that I was Miss Alice's friend -too. - -"She was never happy at home, Miss Alice wasn't, from the time -that her father married again. She was slighted like and had no -say in anything, but it never really became bad for her until -after she met Mr. Fowler at a friend's house. As well as I could -learn, Miss Alice had rights of her own by will, but she was so -quiet and patient, she was, that she never said a word about them -but just left everything in Mr. Rucastle's hands. He knew he was -safe with her; but when there was a chance of a husband coming -forward, who would ask for all that the law would give him, then -her father thought it time to put a stop on it. He wanted her to -sign a paper, so that whether she married or not, he could use -her money. When she wouldn't do it, he kept on worrying her until -she got brain-fever, and for six weeks was at death's door. Then -she got better at last, all worn to a shadow, and with her -beautiful hair cut off; but that didn't make no change in her -young man, and he stuck to her as true as man could be." - -"Ah," said Holmes, "I think that what you have been good enough -to tell us makes the matter fairly clear, and that I can deduce -all that remains. Mr. Rucastle then, I presume, took to this -system of imprisonment?" - -"Yes, sir." - -"And brought Miss Hunter down from London in order to get rid of -the disagreeable persistence of Mr. Fowler." - -"That was it, sir." - -"But Mr. Fowler being a persevering man, as a good seaman should -be, blockaded the house, and having met you succeeded by certain -arguments, metallic or otherwise, in convincing you that your -interests were the same as his." - -"Mr. Fowler was a very kind-spoken, free-handed gentleman," said -Mrs. Toller serenely. - -"And in this way he managed that your good man should have no -want of drink, and that a ladder should be ready at the moment -when your master had gone out." - -"You have it, sir, just as it happened." - -"I am sure we owe you an apology, Mrs. Toller," said Holmes, "for -you have certainly cleared up everything which puzzled us. And -here comes the country surgeon and Mrs. Rucastle, so I think, -Watson, that we had best escort Miss Hunter back to Winchester, -as it seems to me that our locus standi now is rather a -questionable one." - -And thus was solved the mystery of the sinister house with the -copper beeches in front of the door. Mr. Rucastle survived, but -was always a broken man, kept alive solely through the care of -his devoted wife. They still live with their old servants, who -probably know so much of Rucastle's past life that he finds it -difficult to part from them. Mr. Fowler and Miss Rucastle were -married, by special license, in Southampton the day after their -flight, and he is now the holder of a government appointment in -the island of Mauritius. As to Miss Violet Hunter, my friend -Holmes, rather to my disappointment, manifested no further -interest in her when once she had ceased to be the centre of one -of his problems, and she is now the head of a private school at -Walsall, where I believe that she has met with considerable success. - - - - - - - - - -End of the Project Gutenberg EBook of The Adventures of Sherlock Holmes, by -Arthur Conan Doyle - -*** END OF THIS PROJECT GUTENBERG EBOOK THE ADVENTURES OF SHERLOCK HOLMES *** - -***** This file should be named 1661-8.txt or 1661-8.zip ***** -This and all associated files of various formats will be found in: - http://www.gutenberg.org/1/6/6/1661/ - -Produced by an anonymous Project Gutenberg volunteer and Jose Menendez - -Updated editions will replace the previous one--the old editions -will be renamed. - -Creating the works from public domain print editions means that no -one owns a United States copyright in these works, so the Foundation -(and you!) can copy and distribute it in the United States without -permission and without paying copyright royalties. Special rules, -set forth in the General Terms of Use part of this license, apply to -copying and distributing Project Gutenberg-tm electronic works to -protect the PROJECT GUTENBERG-tm concept and trademark. Project -Gutenberg is a registered trademark, and may not be used if you -charge for the eBooks, unless you receive specific permission. If you -do not charge anything for copies of this eBook, complying with the -rules is very easy. You may use this eBook for nearly any purpose -such as creation of derivative works, reports, performances and -research. They may be modified and printed and given away--you may do -practically ANYTHING with public domain eBooks. Redistribution is -subject to the trademark license, especially commercial -redistribution. - - - -*** START: FULL LICENSE *** - -THE FULL PROJECT GUTENBERG LICENSE -PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK - -To protect the Project Gutenberg-tm mission of promoting the free -distribution of electronic works, by using or distributing this work -(or any other work associated in any way with the phrase "Project -Gutenberg"), you agree to comply with all the terms of the Full Project -Gutenberg-tm License (available with this file or online at -http://gutenberg.net/license). - - -Section 1. General Terms of Use and Redistributing Project Gutenberg-tm -electronic works - -1.A. By reading or using any part of this Project Gutenberg-tm -electronic work, you indicate that you have read, understand, agree to -and accept all the terms of this license and intellectual property -(trademark/copyright) agreement. If you do not agree to abide by all -the terms of this agreement, you must cease using and return or destroy -all copies of Project Gutenberg-tm electronic works in your possession. -If you paid a fee for obtaining a copy of or access to a Project -Gutenberg-tm electronic work and you do not agree to be bound by the -terms of this agreement, you may obtain a refund from the person or -entity to whom you paid the fee as set forth in paragraph 1.E.8. - -1.B. "Project Gutenberg" is a registered trademark. It may only be -used on or associated in any way with an electronic work by people who -agree to be bound by the terms of this agreement. There are a few -things that you can do with most Project Gutenberg-tm electronic works -even without complying with the full terms of this agreement. See -paragraph 1.C below. There are a lot of things you can do with Project -Gutenberg-tm electronic works if you follow the terms of this agreement -and help preserve free future access to Project Gutenberg-tm electronic -works. See paragraph 1.E below. - -1.C. The Project Gutenberg Literary Archive Foundation ("the Foundation" -or PGLAF), owns a compilation copyright in the collection of Project -Gutenberg-tm electronic works. Nearly all the individual works in the -collection are in the public domain in the United States. If an -individual work is in the public domain in the United States and you are -located in the United States, we do not claim a right to prevent you from -copying, distributing, performing, displaying or creating derivative -works based on the work as long as all references to Project Gutenberg -are removed. Of course, we hope that you will support the Project -Gutenberg-tm mission of promoting free access to electronic works by -freely sharing Project Gutenberg-tm works in compliance with the terms of -this agreement for keeping the Project Gutenberg-tm name associated with -the work. You can easily comply with the terms of this agreement by -keeping this work in the same format with its attached full Project -Gutenberg-tm License when you share it without charge with others. - -1.D. The copyright laws of the place where you are located also govern -what you can do with this work. Copyright laws in most countries are in -a constant state of change. If you are outside the United States, check -the laws of your country in addition to the terms of this agreement -before downloading, copying, displaying, performing, distributing or -creating derivative works based on this work or any other Project -Gutenberg-tm work. The Foundation makes no representations concerning -the copyright status of any work in any country outside the United -States. - -1.E. Unless you have removed all references to Project Gutenberg: - -1.E.1. The following sentence, with active links to, or other immediate -access to, the full Project Gutenberg-tm License must appear prominently -whenever any copy of a Project Gutenberg-tm work (any work on which the -phrase "Project Gutenberg" appears, or with which the phrase "Project -Gutenberg" is associated) is accessed, displayed, performed, viewed, -copied or distributed: - -This eBook is for the use of anyone anywhere at no cost and with -almost no restrictions whatsoever. You may copy it, give it away or -re-use it under the terms of the Project Gutenberg License included -with this eBook or online at www.gutenberg.net - -1.E.2. If an individual Project Gutenberg-tm electronic work is derived -from the public domain (does not contain a notice indicating that it is -posted with permission of the copyright holder), the work can be copied -and distributed to anyone in the United States without paying any fees -or charges. If you are redistributing or providing access to a work -with the phrase "Project Gutenberg" associated with or appearing on the -work, you must comply either with the requirements of paragraphs 1.E.1 -through 1.E.7 or obtain permission for the use of the work and the -Project Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or -1.E.9. - -1.E.3. If an individual Project Gutenberg-tm electronic work is posted -with the permission of the copyright holder, your use and distribution -must comply with both paragraphs 1.E.1 through 1.E.7 and any additional -terms imposed by the copyright holder. Additional terms will be linked -to the Project Gutenberg-tm License for all works posted with the -permission of the copyright holder found at the beginning of this work. - -1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm -License terms from this work, or any files containing a part of this -work or any other work associated with Project Gutenberg-tm. - -1.E.5. Do not copy, display, perform, distribute or redistribute this -electronic work, or any part of this electronic work, without -prominently displaying the sentence set forth in paragraph 1.E.1 with -active links or immediate access to the full terms of the Project -Gutenberg-tm License. - -1.E.6. You may convert to and distribute this work in any binary, -compressed, marked up, nonproprietary or proprietary form, including any -word processing or hypertext form. However, if you provide access to or -distribute copies of a Project Gutenberg-tm work in a format other than -"Plain Vanilla ASCII" or other format used in the official version -posted on the official Project Gutenberg-tm web site (www.gutenberg.net), -you must, at no additional cost, fee or expense to the user, provide a -copy, a means of exporting a copy, or a means of obtaining a copy upon -request, of the work in its original "Plain Vanilla ASCII" or other -form. Any alternate format must include the full Project Gutenberg-tm -License as specified in paragraph 1.E.1. - -1.E.7. Do not charge a fee for access to, viewing, displaying, -performing, copying or distributing any Project Gutenberg-tm works -unless you comply with paragraph 1.E.8 or 1.E.9. - -1.E.8. You may charge a reasonable fee for copies of or providing -access to or distributing Project Gutenberg-tm electronic works provided -that - -- You pay a royalty fee of 20% of the gross profits you derive from - the use of Project Gutenberg-tm works calculated using the method - you already use to calculate your applicable taxes. The fee is - owed to the owner of the Project Gutenberg-tm trademark, but he - has agreed to donate royalties under this paragraph to the - Project Gutenberg Literary Archive Foundation. Royalty payments - must be paid within 60 days following each date on which you - prepare (or are legally required to prepare) your periodic tax - returns. Royalty payments should be clearly marked as such and - sent to the Project Gutenberg Literary Archive Foundation at the - address specified in Section 4, "Information about donations to - the Project Gutenberg Literary Archive Foundation." - -- You provide a full refund of any money paid by a user who notifies - you in writing (or by e-mail) within 30 days of receipt that s/he - does not agree to the terms of the full Project Gutenberg-tm - License. You must require such a user to return or - destroy all copies of the works possessed in a physical medium - and discontinue all use of and all access to other copies of - Project Gutenberg-tm works. - -- You provide, in accordance with paragraph 1.F.3, a full refund of any - money paid for a work or a replacement copy, if a defect in the - electronic work is discovered and reported to you within 90 days - of receipt of the work. - -- You comply with all other terms of this agreement for free - distribution of Project Gutenberg-tm works. - -1.E.9. If you wish to charge a fee or distribute a Project Gutenberg-tm -electronic work or group of works on different terms than are set -forth in this agreement, you must obtain permission in writing from -both the Project Gutenberg Literary Archive Foundation and Michael -Hart, the owner of the Project Gutenberg-tm trademark. Contact the -Foundation as set forth in Section 3 below. - -1.F. - -1.F.1. Project Gutenberg volunteers and employees expend considerable -effort to identify, do copyright research on, transcribe and proofread -public domain works in creating the Project Gutenberg-tm -collection. Despite these efforts, Project Gutenberg-tm electronic -works, and the medium on which they may be stored, may contain -"Defects," such as, but not limited to, incomplete, inaccurate or -corrupt data, transcription errors, a copyright or other intellectual -property infringement, a defective or damaged disk or other medium, a -computer virus, or computer codes that damage or cannot be read by -your equipment. - -1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the "Right -of Replacement or Refund" described in paragraph 1.F.3, the Project -Gutenberg Literary Archive Foundation, the owner of the Project -Gutenberg-tm trademark, and any other party distributing a Project -Gutenberg-tm electronic work under this agreement, disclaim all -liability to you for damages, costs and expenses, including legal -fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT -LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE -PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE -TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE -LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR -INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH -DAMAGE. - -1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a -defect in this electronic work within 90 days of receiving it, you can -receive a refund of the money (if any) you paid for it by sending a -written explanation to the person you received the work from. If you -received the work on a physical medium, you must return the medium with -your written explanation. The person or entity that provided you with -the defective work may elect to provide a replacement copy in lieu of a -refund. If you received the work electronically, the person or entity -providing it to you may choose to give you a second opportunity to -receive the work electronically in lieu of a refund. If the second copy -is also defective, you may demand a refund in writing without further -opportunities to fix the problem. - -1.F.4. Except for the limited right of replacement or refund set forth -in paragraph 1.F.3, this work is provided to you 'AS-IS' WITH NO OTHER -WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO -WARRANTIES OF MERCHANTIBILITY OR FITNESS FOR ANY PURPOSE. - -1.F.5. Some states do not allow disclaimers of certain implied -warranties or the exclusion or limitation of certain types of damages. -If any disclaimer or limitation set forth in this agreement violates the -law of the state applicable to this agreement, the agreement shall be -interpreted to make the maximum disclaimer or limitation permitted by -the applicable state law. The invalidity or unenforceability of any -provision of this agreement shall not void the remaining provisions. - -1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the -trademark owner, any agent or employee of the Foundation, anyone -providing copies of Project Gutenberg-tm electronic works in accordance -with this agreement, and any volunteers associated with the production, -promotion and distribution of Project Gutenberg-tm electronic works, -harmless from all liability, costs and expenses, including legal fees, -that arise directly or indirectly from any of the following which you do -or cause to occur: (a) distribution of this or any Project Gutenberg-tm -work, (b) alteration, modification, or additions or deletions to any -Project Gutenberg-tm work, and (c) any Defect you cause. - - -Section 2. Information about the Mission of Project Gutenberg-tm - -Project Gutenberg-tm is synonymous with the free distribution of -electronic works in formats readable by the widest variety of computers -including obsolete, old, middle-aged and new computers. It exists -because of the efforts of hundreds of volunteers and donations from -people in all walks of life. - -Volunteers and financial support to provide volunteers with the -assistance they need are critical to reaching Project Gutenberg-tm's -goals and ensuring that the Project Gutenberg-tm collection will -remain freely available for generations to come. In 2001, the Project -Gutenberg Literary Archive Foundation was created to provide a secure -and permanent future for Project Gutenberg-tm and future generations. -To learn more about the Project Gutenberg Literary Archive Foundation -and how your efforts and donations can help, see Sections 3 and 4 -and the Foundation web page at http://www.pglaf.org. - - -Section 3. Information about the Project Gutenberg Literary Archive -Foundation - -The Project Gutenberg Literary Archive Foundation is a non profit -501(c)(3) educational corporation organized under the laws of the -state of Mississippi and granted tax exempt status by the Internal -Revenue Service. The Foundation's EIN or federal tax identification -number is 64-6221541. Its 501(c)(3) letter is posted at -http://pglaf.org/fundraising. Contributions to the Project Gutenberg -Literary Archive Foundation are tax deductible to the full extent -permitted by U.S. federal laws and your state's laws. - -The Foundation's principal office is located at 4557 Melan Dr. S. -Fairbanks, AK, 99712., but its volunteers and employees are scattered -throughout numerous locations. Its business office is located at -809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887, email -business@pglaf.org. Email contact links and up to date contact -information can be found at the Foundation's web site and official -page at http://pglaf.org - -For additional contact information: - Dr. Gregory B. Newby - Chief Executive and Director - gbnewby@pglaf.org - - -Section 4. Information about Donations to the Project Gutenberg -Literary Archive Foundation - -Project Gutenberg-tm depends upon and cannot survive without wide -spread public support and donations to carry out its mission of -increasing the number of public domain and licensed works that can be -freely distributed in machine readable form accessible by the widest -array of equipment including outdated equipment. Many small donations -($1 to $5,000) are particularly important to maintaining tax exempt -status with the IRS. - -The Foundation is committed to complying with the laws regulating -charities and charitable donations in all 50 states of the United -States. Compliance requirements are not uniform and it takes a -considerable effort, much paperwork and many fees to meet and keep up -with these requirements. We do not solicit donations in locations -where we have not received written confirmation of compliance. To -SEND DONATIONS or determine the status of compliance for any -particular state visit http://pglaf.org - -While we cannot and do not solicit contributions from states where we -have not met the solicitation requirements, we know of no prohibition -against accepting unsolicited donations from donors in such states who -approach us with offers to donate. - -International donations are gratefully accepted, but we cannot make -any statements concerning tax treatment of donations received from -outside the United States. U.S. laws alone swamp our small staff. - -Please check the Project Gutenberg Web pages for current donation -methods and addresses. Donations are accepted in a number of other -ways including including checks, online payments and credit card -donations. To donate, please visit: http://pglaf.org/donate - - -Section 5. General Information About Project Gutenberg-tm electronic -works. - -Professor Michael S. Hart is the originator of the Project Gutenberg-tm -concept of a library of electronic works that could be freely shared -with anyone. For thirty years, he produced and distributed Project -Gutenberg-tm eBooks with only a loose network of volunteer support. - - -Project Gutenberg-tm eBooks are often created from several printed -editions, all of which are confirmed as Public Domain in the U.S. -unless a copyright notice is included. Thus, we do not necessarily -keep eBooks in compliance with any particular paper edition. - - -Most people start at our Web site which has the main PG search facility: - - http://www.gutenberg.net - -This Web site includes information about Project Gutenberg-tm, -including how to make donations to the Project Gutenberg Literary -Archive Foundation, how to help produce our new eBooks, and how to -subscribe to our email newsletter to hear about new eBooks. diff --git a/Students/A.Kramer/session04/students.txt b/Students/A.Kramer/session04/students.txt deleted file mode 100644 index 4e87cd33..00000000 --- a/Students/A.Kramer/session04/students.txt +++ /dev/null @@ -1,36 +0,0 @@ -name: languages -Albright, Ryan J : VBA, -Ascoli, Louis John : Basic, assm, shell -Balcarce, Darcy : matlab, autocad, python -Brand, Ralph P : C, C++, SQL, -Buer, Eric : matlab, VBA, SQL, -Claessens, Michel : VBA, basic SQL, pascal, matlab -Conde, Ousmane : -Davis, Bryan L : -Davis, Ian M : C++ -Evans, Carolyn J : SQL, -Fischer, Henry B : C, VB, SQL, SAS, -Fries, Lauren : python -Fugelso, David : C, C++, C#, Java -Fukuhara, Wayne R : VB, -Galvin, Alexander R : shell, C++, python -Gupta, Vinay : C, C++, shell -Hamed, Salim Hassan : Java, R, SAS, VBA -Hart, Kyle R : QBasic, HTML, -Hashemloo, Alireza :Javascript, PHP, C++ -Huynh, Chantal : Basic, SQL, Stata -Kazakova, Alexandra N : R, python, -Klock, Andrew P : C++, R, perl -Kramer, Aleksey :Java, R, shell -Lottsfeldt, Erik Ivan : basic, fortran, -Marcos, Danielle G : python -Mier, Benjamin C : C++, C#, -Nunn, James Brent : shell, SQL, perl, pl1 -Perkins, Robert W : fortran, pascal, stata, javascript, sql -Reece, Lesley D : html, SQL, PLSQL, perl, shell -Schwafel, Schuyler Alan : bash, python, perl, php -Simmons, Arielle R : Scheme, Java, VBA, python -Sylvan, Gideon I : -Westman, Eric W : C#, PHP, SQL, javascript -Zhang, Hui : FoxBase -Zhu, Changqing : C, \ No newline at end of file diff --git a/Students/A.Kramer/session05/dict_and_set_comprehensions.py b/Students/A.Kramer/session05/dict_and_set_comprehensions.py deleted file mode 100644 index 99b32cd9..00000000 --- a/Students/A.Kramer/session05/dict_and_set_comprehensions.py +++ /dev/null @@ -1,67 +0,0 @@ -''' -Created on Oct 30, 2014 - -@author: db345c -''' - -import copy - -def formatter(): - """ Use string fromatting with dictionary """ - food_prefs = {"name": u"Chris", - "city": u"Seattle", - "cake": u"chocolate", - "fruit": u"mango", - "salad": u"greek", - "pasta": u"lasagna"} - - print "{name} is from {city}, and he likes {cake}, {fruit} fruit, {salad} salad, and {pasta} pasta".format(**food_prefs) - -def createHex1(): - """ Populate set with integer and hex equivalent using loop """ - s = {} - for i in range(16): - s[i] = hex(i) - print ", ".join(str(j) + "-" + str(s[j]) for j in s) - -def createHex2(): - """ Populate set using dictionary comprehension """ - s = {i: hex(i) for i in range(16)} - print ", ".join(str(j) + "-" + str(s[j]) for j in s) - -def numberOfA(): - """ Count the number of 'a' in the dictionary values """ - food_prefs = {"name": u"Chris", - "city": u"Seattle", - "cake": u"chocolate", - "fruit": u"mango", - "salad": u"greek", - "pasta": u"lasagna"} - my_prefs = copy.deepcopy(food_prefs) - my_prefs = {i: my_prefs[i].count('a') for i in my_prefs } - print my_prefs - -def sets(): - """ Create three sets with numbers divisible by 2, 3, and 4 """ - s2 = (i for i in range(1, 21) if i % 2 == 0) - print "\tMod (%) 2 -> " + ", ".join(str(j) for j in s2) - s3 = (i for i in range(1, 21) if i % 3 == 0) - print "\tMod (%) 3 -> " + ", ".join(str(j) for j in s3) - s4 = (i for i in range(1, 21) if i % 4 == 0) - print "\tMod (%) 3 -> " + ", ".join(str(j) for j in s4) - -if __name__ == "__main__": - print "Formatting String:", - formatter() - print - print "With Loop:", - createHex1() - print - print "List comprehension:", - createHex2() - print - print "Number of A's:", - numberOfA() - print - print "Printing sets:" - sets() \ No newline at end of file diff --git a/Students/A.Kramer/session05/lecture_notes.py b/Students/A.Kramer/session05/lecture_notes.py deleted file mode 100644 index 7a969905..00000000 --- a/Students/A.Kramer/session05/lecture_notes.py +++ /dev/null @@ -1,139 +0,0 @@ -''' -Created on Oct 28, 2014 - -@author: Aleksey -''' - -# Review -d = {} -d[1] = "that" -d[2] = "this" -print d - -for key in sorted(d.keys()): - print key, d[key] -print - -# Advanced arguments passing -def f(x, y, w=0, h=0): - print "position: %s, %s --shape: %s, %s" %(x, y, w, h) - -f (3, 4, h=7) - -shape = {'w':40, 'h':60} - -# positional arguments followed by the dictionary -f(3, 4, **shape) - -def f1(*args, **kwargs): - print "the positional arguments are:", args - print "the keyword arguments are:", kwargs - -# Returns empty tulpe for *args and empty dictionary for *kwargs -f1() - -formatter = "My name is {first} {last}" - -person = {'first':'Chris', 'last':'Baker'} -print formatter.format(2, 1, **person) - -print - -g = {} -g["fore_color"]="white" -g["back_color"]="green" -g["link_color"]="blue" -g["visited_color"]="maroon" - -def colors1(**kwargs): - print "the colors are %s, %s, %s, %s" %(tuple(kwargs.values())) - -colors1(**g) - -print - -# Print unknowun number of arguments -def print_everything(*args): - for count, thing in enumerate(args): - print '{0}. {1}'.format(count, thing) -print_everything('apple', 'banana', 'cabbage') - -print - -# print unknown number of items -def table_things(**kwargs): - for name, value in kwargs.items(): - print '{0} = {1}'.format(name, value) -table_things(apple='fruit', cabbage='vegetable') - -# Print whole dictionary -table_things(**g) - -print - -def my_d(**kwargs): - for name, value in kwargs.items(): - print "The {0} is {1}".format(name, value) -my_d(**g) - -print - -def print_three_things(a, b, c): - print 'a = {0}, b = {1}, c = {2}'.format(a,b,c) -mylist = ['aardvark', 'baboon', 'cat'] -print_three_things(*mylist) - -lst = [i for i in range(5)] -print lst - -lst1 = [i * 4 for i in range(5)] -print lst1 - -lst2 = ['first', 'that', 'the', 'other'] -lst3 = [s.upper() for s in lst2] -print lst3 - -lst4 = [ (i, j) for i in range(3) for j in range(4,6)] -print lst4 - -lst5 = [s.upper() for s in lst2 if s.startswith('t')] -print lst5 - -lst6 = [name for name in dir(__builtins__) if "Error" in name] -for l in lst6: - print l - -print - -# List Comprehension -feast = ['lambs', "sloths", "orangutans", "breakfast cereals", "fruit bats"] -comprehansion = [delicacy.capitalize() for delicacy in feast] -print comprehansion[0] -print comprehansion[2] -print -comprehension = [delicacy for delicacy in feast if len(delicacy) > 6] -print comprehension -print len(feast) -print len(comprehension) -print -list_of_tuples = [(1, 'lumberjack'), (2, 'inquisition'), (4, 'spam')] -comprehension = [ skit * number for number, skit in list_of_tuples ] -print comprehension[0] -print comprehension[2] -print -list_of_eggs = ['poached egg', 'fried egg'] -list_of_meats = ['lite spam', 'ham spam', 'fried spam'] -comprehension = [ '{0} and {1}'.format(egg, meat) for egg in list_of_eggs for meat in list_of_meats] -print len(comprehension) -for i in comprehension: - print i -print -comprehension = { x for x in 'aabbbcccc'} -print comprehension -print -dict_of_weapons = {'first': 'fear', 'second': 'surprise', 'third':'ruthless efficiency', 'forth':'fanatical devotion', 'fifth': None} -dict_comprehension = { k.upper(): weapon for k, weapon in dict_of_weapons.iteritems() if weapon} -print 'first' in dict_comprehension -print 'FIRST' in dict_comprehension -print len(dict_of_weapons) -print len(dict_comprehension) diff --git a/Students/A.Kramer/session05/list_comprehensions.py b/Students/A.Kramer/session05/list_comprehensions.py deleted file mode 100644 index 2400ba41..00000000 --- a/Students/A.Kramer/session05/list_comprehensions.py +++ /dev/null @@ -1,74 +0,0 @@ -''' -Created on Oct 30, 2014 - -@author: db345c -''' - -# 1. -feast = ['lambs', 'sloths', 'orangutans', 'breakfast cereals', 'fruit bats'] -comprehension = [delicacy.capitalize() for delicacy in feast] -# Guessed: Lambs and Oranges -print comprehension[0] -print comprehension[2] - -# 2. -feast = ['spam', 'sloths', 'orangutans', 'breakfast cereals', 'fruit bats'] -comprehension = [delicacy for delicacy in feast if len(delicacy) > 6] -# Guessed: 5 and 3 -print len(feast) -print len(comprehension) - -# 3. -list_of_tuples = [(1, 'lumberjack'), (2, 'inquisition'), (4, 'spam')] -comprehension = [ skit * number for number, skit in list_of_tuples ] -# Guessed: lumberjeck and spamspamspamspam -> 16 -print comprehension[0] -print comprehension[2] -print len(comprehension[2]) - -# 4. -list_of_eggs = ['poached egg', 'fried egg'] -list_of_meats = ['lite spam', 'ham spam', 'fried spam'] -# Guessed: 6, poached eggs and little spam -comprehension = [ '{0} and {1}'.format(egg, meat) for egg in list_of_eggs for meat in list_of_meats] -print len(comprehension) -print comprehension[0] - -#5. -comprehension = { x for x in 'aabbbcccc'} -# Guessed: wrong!!! -print comprehension - -# 6. -dict_of_weapons = {'first': 'fear', 'second': 'surprise', 'third':'ruthless efficiency', - 'forth':'fanatical devotion', 'fifth': None} -dict_comprehension = { k.upper(): weapon for k, weapon in dict_of_weapons.iteritems() if weapon} -# Guessed: FIRST, 5 and 4 -print 'first' in dict_comprehension -print 'FIRST' in dict_comprehension -print len(dict_of_weapons) -print len(dict_comprehension) - -# 7. -# Returning the number of even ints -arr = [2, 1, 2, 3, 4] -arr = (x for x in arr if x % 2 == 0) -print "The number of even ints in the [2, 1, 2, 3, 4] list is:", len(list(arr)) - -arr = [2, 2, 0] -arr = (x for x in arr if x % 2 == 0) -print "The number of even ints in the [2, 2, 0] list is:", len(list(arr)) - -arr = [1, 3, 5] -arr = (x for x in arr if x % 2 == 0) -print "The number of even ints in the [1, 3, 5] list is:", len(list(arr)) - -# The same as above but with function -def count_events(nums): - print "The number of even ints in the", nums, "is:", - arr = (x for x in nums if x % 2 == 0) - print len(list(arr)) - -if __name__ == "__main__": - count_events([2, 1, 2, 3, 4]) - diff --git a/Students/A.Kramer/session06/functional_files.py b/Students/A.Kramer/session06/functional_files.py deleted file mode 100644 index eb46fad2..00000000 --- a/Students/A.Kramer/session06/functional_files.py +++ /dev/null @@ -1,57 +0,0 @@ -import os -import sys - -def clense(path_to_a_file): - """Strip all the white space from around the lines of text""" - - # Intercept if command line argument is passed in - if len(sys.argv) > 1: - path_to_a_file = sys.argv[1] - else: - print "Using default file 'text.txt' located in the same directory with '%s' script" % os.path.basename(sys.argv[0]) - - # Prompt for a file name (if any) - new_file_name = "" - answer = raw_input("Would you like to create a new file [Y/N]: ") - if answer.lower() == "y": - new_file_name = raw_input("Enter new file name (no spaces): ") - if len(new_file_name.split()) > 1: - print "You have entered a filename containing space. Buy. Try better next time. \nBye." - # force to restart if space is detected in the filename - return - - # Create temporary file - temp_file = os.path.join(os.getcwd(), "temp.temp.txt") - - # Open files for reading/writing - try: - with open(path_to_a_file, "rb") as f: - lst = f.read().splitlines() - - # strip white space - g = map(lambda x: x.strip(), lst) # g = [x.strip() for x in lst] # comprehension - - # write stripped lines into the temp.temp.txt file - with open(temp_file, "wb") as nf: - for item in g: - if item: - nf.write(item) - - # handle IOErrors - except IOError as e: - print "IOError, debugging required", e - return - - # if new name is given, rename temp file to the new name - # if no new name, override the existing file - if new_file_name: - os.rename(temp_file, new_file_name) - else: - basename = os.path.basename(path_to_a_file) - os.unlink(path_to_a_file) - os.rename(temp_file, basename) - - print "Done!!!" - -if __name__ == "__main__": - clense("test.txt") \ No newline at end of file diff --git a/Students/A.Kramer/session06/html_render/html_render.py b/Students/A.Kramer/session06/html_render/html_render.py deleted file mode 100644 index a5504b09..00000000 --- a/Students/A.Kramer/session06/html_render/html_render.py +++ /dev/null @@ -1,184 +0,0 @@ -''' -Created on Nov 5, 2014 - -@author: Aleksey Kramer -''' - -# The start of it all: -# Fill it all in here. -class Element(object): - def __init__(self, content=None, id=None, style=None): - self.ind = " " - self.tag = "" - self.starttag = self.tag + "\n" - self.endtag = self.tag[:1] + "/" + self.tag[1:] + "\n" - self.lst = [] - if content is not None: - self.lst.append(content) - - def append(self, new_content): - self.lst.append(new_content) - - def render(self, file_out, ind=""): - file_out.write(self.starttag) - for line in self.lst: - try: - line.render(file_out) - except AttributeError as e: - file_out.write(self.ind + ind + line + "\n") - file_out.write(self.endtag) - -class Html(Element): - def __init__(self, content=None, id=None, style=None): - Element.__init__(self, content) - self.tag = "" - self.starttag = self.tag + "\n" - self.endtag = self.tag[:1] + "/" + self.tag[1:] + "\n" - -class Body(Element): - def __init__(self, content=None, id=None, style=None): - Element.__init__(self, content) - self.tag = "" - self.starttag = self.tag + "\n" - self.endtag = self.tag[:1] + "/" + self.tag[1:] + "\n" - -class P(Element): - def __init__(self, content=None, id=None, style=None): - Element.__init__(self, content, id, style) - self.tag = "

" - self.id = "" - self.style = "" - if id is not None: - self.id = " id=\"" + id + "\"" - if style is not None: - self.style = " style=\"" + style + "\"" - self.starttag = "\n" - self.endtag = "

\n" - -class Head(Element): - def __init__(self, content=None, id=None, style=None): - Element.__init__(self, content) - self.tag = "" - self.starttag = self.tag + "\n" - self.endtag = self.tag[:1] + "/" + self.tag[1:] + "\n" - -class OneLineTag(Element): - def __init__(self, content=None, id=None, style=None): - Element.__init__(self, content) - self.content = content - - def render(self, file_out, ind=""): - file_out.write(self.starttag) - file_out.write(self.ind + ind + self.content + "\n") - file_out.write(self.endtag) - - def append(self, new_content): - raise NotImplementedError - -class Title(OneLineTag): - def __init__(self, content=None, id=None, style=None): - OneLineTag.__init__(self, content) - self.tag = "" - self.starttag = self.tag + "\n" - self.endtag = self.tag[:1] + "/" + self.tag[1:] + "\n" - -class SelfClosingTag(Element): - def __init__(self, content=None, id=None, style=None): - Element.__init__(self, content) - self.content = content - - def render(self, file_out, ind=""): - file_out.write(self.tag) - - def append(self, new_content): - raise NotImplementedError - -class Hr(SelfClosingTag): - def __init__(self, content=None, id=None, style=None): - SelfClosingTag.__init__(self, content) - self.tag = "<hr />\n" - -class Br(SelfClosingTag): - def __init__(self, content=None, id=None, style=None): - SelfClosingTag.__init__(self, content) - self.tag = "<br />\n" - -class A(Element): - def __init__(self, link=None, content=None, id=None, style=None): - Element.__init__(self, content) - self.starttag = "<a>" - self.content = "" - if (link is not None) and (content is not None): - self.starttag = "<a href=\"" + link + "\">" - self.content = content - self.endtag = "</a>" - - def render(self, file_out, ind=""): - file_out.write(self.starttag) - file_out.write(self.content) - file_out.write(self.endtag) - - def append(self, new_content): - raise NotImplementedError - -class Ul(Element): - def __init__(self, content=None, id=None, style=None): - self.starttag = "" - self.id = "" - self.style = "" - self.lst = [] - if (id is not None) and (style is not None): - self.starttag = "<ul id=\"" + id + "\" style=\"" + style + "\">\n" - self.endtag = "</ul>\n" - - def append(self, new_content): - self.lst.append(new_content) - - def render(self, file_out, ind=""): - file_out.write(self.starttag) - for line in self.lst: - try: - line.render(file_out) - except AttributeError as e: - file_out.write(self.ind + ind + line + "\n") - file_out.write(self.endtag) - -class H(Element): - def __init__(self, hlevel=None, content=None): - self.level = str(hlevel) - self.content = content - self.starttag = "<h" + self.level + ">" - self.endtag = "</h" + self.level + ">\n" - - def render(self, file_out, ind=""): - file_out.write(self.starttag) - file_out.write(self.content) - file_out.write(self.endtag) - - def append(self, new_content): - raise NotImplementedError - -class Li(Element): - def __init__(self, content=None, style=None): - self.lst = [] - self.style = style - self.content = "" - self.starttag = "<li>" - if style is not None: - self.starttag = "<li style=\"" + self.style + "\">" - if content is not None: - self.content = content - self.endtag = "</li>\n" - - def append(self, new_content): - self.lst.append(new_content) - - def render(self, file_out, ind=""): - file_out.write(self.starttag) - file_out.write(self.content) - file_out.write(self.endtag) - -if __name__ == "__main__": - l = Element() - - \ No newline at end of file diff --git a/Students/A.Kramer/session06/html_render/html_render.pyc b/Students/A.Kramer/session06/html_render/html_render.pyc deleted file mode 100644 index 92a2b619..00000000 Binary files a/Students/A.Kramer/session06/html_render/html_render.pyc and /dev/null differ diff --git a/Students/A.Kramer/session06/html_render/run_html_render.py b/Students/A.Kramer/session06/html_render/run_html_render.py deleted file mode 100644 index 4ed50e4e..00000000 --- a/Students/A.Kramer/session06/html_render/run_html_render.py +++ /dev/null @@ -1,226 +0,0 @@ -#!/usr/bin/env python - -""" -a simple script can run and test your html rendering classes. - -Uncomment the steps as you add to your rendering. - -""" -from cStringIO import StringIO - - -# importing the html_rendering code with a short name for easy typing. -import html_render as hr -reload(hr) #reloding in case you are ruuing this in iPython - # -- want to make sure the latest version is used - - -## writing the file out: -def render(page, filename): - """ - render the tree of elements - - This uses cSstringIO to render to memory, then dump to console and - write to file -- very handy! - """ - - f = StringIO() - page.render(f, " ") - - f.seek(0) - - print f.read() - - f.seek(0) - open(filename, 'w').write( f.read() ) - - -## Step 1 -########## - -#page = hr.Element() - -#page.append("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text") - -#page.append("And here is another piece of text -- you should be able to add any number") - -#render(page, "test_html_output1.html") - -## Step 2 -# ########## - -# page = hr.Html() - -# body = hr.Body() - -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text")) - -# body.append(hr.P("And here is another piece of text -- you should be able to add any number")) - -# page.append(body) - -# render(page, "test_html_output2.html") - -# # Step 3 -# ########## - -# page = hr.Html() - -# head = hr.Head() -# head.append(hr.Title("PythonClass = Revision 1087:")) - -# page.append(head) - -# body = hr.Body() - -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text")) -# body.append(hr.P("And here is another piece of text -- you should be able to add any number")) - -# page.append(body) - -# render(page, "test_html_output3.html") - -# # Step 4 -# ########## - -# page = hr.Html() - -# head = hr.Head() -# head.append(hr.Title("PythonClass = Revision 1087:")) - -# page.append(head) - -# body = hr.Body() - -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text", -# style="text-align: center; font-style: oblique;")) - -# page.append(body) - -# render(page, "test_html_output4.html") - -# # Step 5 -# ######### - -# page = hr.Html() - -# head = hr.Head() -# head.append(hr.Title("PythonClass = Revision 1087:")) - -# page.append(head) - -# body = hr.Body() - -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text", -# style="text-align: center; font-style: oblique;")) - -# body.append(hr.Hr()) - -# page.append(body) - -# render(page, "test_html_output5.html") - -# # Step 6 -# ######### - -# page = hr.Html() - -# head = hr.Head() -# head.append(hr.Title("PythonClass = Revision 1087:")) - -# page.append(head) - -# body = hr.Body() - -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text", -# style="text-align: center; font-style: oblique;")) - -# body.append(hr.Hr()) - -# body.append("And this is a ") -# body.append( hr.A("http://google.com/", "link") ) -# body.append("to google") - -# page.append(body) - -# render(page, "test_html_output6.html") - -# # Step 7 -# ######### - -# page = hr.Html() - -# head = hr.Head() -# head.append(hr.Title("PythonClass = Revision 1087:")) - -# page.append(head) - -# body = hr.Body() - -# body.append( hr.H(2, "PythonClass - Class 6 example") ) - -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text", -# style="text-align: center; font-style: oblique;")) - -# body.append(hr.Hr()) - -# list = hr.Ul(id="TheList", style="line-height:200%") - -# list.append( hr.Li("The first item in a list") ) -# list.append( hr.Li("This is the second item", style="color: red") ) - -# item = hr.Li() -# item.append("And this is a ") -# item.append( hr.A("http://google.com/", "link") ) -# item.append("to google") - -# list.append(item) - -# body.append(list) - -# page.append(body) - -# render(page, "test_html_output7.html") - -# # Step 8 -# ######## - -# page = hr.Html() - - -# head = hr.Head() -# head.append( hr.Meta(charset="UTF-8") ) -# head.append(hr.Title("PythonClass = Revision 1087:")) - -# page.append(head) - -# body = hr.Body() - -# body.append( hr.H(2, "PythonClass - Class 6 example") ) - -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text", -# style="text-align: center; font-style: oblique;")) - -# body.append(hr.Hr()) - -# list = hr.Ul(id="TheList", style="line-height:200%") - -# list.append( hr.Li("The first item in a list") ) -# list.append( hr.Li("This is the second item", style="color: red") ) - -# item = hr.Li() -# item.append("And this is a ") -# item.append( hr.A("http://google.com/", "link") ) -# item.append("to google") - -# list.append(item) - -# body.append(list) - -# page.append(body) - -# render(page, "test_html_output8.html") - - - - diff --git a/Students/A.Kramer/session06/html_render/test_html_output2.html b/Students/A.Kramer/session06/html_render/test_html_output2.html deleted file mode 100644 index cfa59ff5..00000000 --- a/Students/A.Kramer/session06/html_render/test_html_output2.html +++ /dev/null @@ -1,11 +0,0 @@ -<html> -<body> -<P> - Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text -</P> -</body> -<P> - And here is another piece of text -- you should be able to add any number -</P> -</body> -</html> diff --git a/Students/A.Kramer/session06/html_render/test_html_output3.html b/Students/A.Kramer/session06/html_render/test_html_output3.html deleted file mode 100644 index f49baf7a..00000000 --- a/Students/A.Kramer/session06/html_render/test_html_output3.html +++ /dev/null @@ -1,15 +0,0 @@ -<html> -<Head> -<Title> - PythonClass = Revision 1087: - - - -

- Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text -

-

- And here is another piece of text -- you should be able to add any number -

- - diff --git a/Students/A.Kramer/session06/html_render/test_html_output4.html b/Students/A.Kramer/session06/html_render/test_html_output4.html deleted file mode 100644 index 7ae5448c..00000000 --- a/Students/A.Kramer/session06/html_render/test_html_output4.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - PythonClass = Revision 1087: - - - -

- Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text -

- - diff --git a/Students/A.Kramer/session06/html_render/test_html_output5.html b/Students/A.Kramer/session06/html_render/test_html_output5.html deleted file mode 100644 index 61da9a21..00000000 --- a/Students/A.Kramer/session06/html_render/test_html_output5.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - PythonClass = Revision 1087: - - - -

- Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text -

-
- - diff --git a/Students/A.Kramer/session06/html_render/test_html_output6.html b/Students/A.Kramer/session06/html_render/test_html_output6.html deleted file mode 100644 index 5cfef10f..00000000 --- a/Students/A.Kramer/session06/html_render/test_html_output6.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - PythonClass = Revision 1087: - - - -

- Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text -

-
- And this is a -link to google - - diff --git a/Students/A.Kramer/session06/html_render/test_html_output7.html b/Students/A.Kramer/session06/html_render/test_html_output7.html deleted file mode 100644 index d296c3f2..00000000 --- a/Students/A.Kramer/session06/html_render/test_html_output7.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - PythonClass = Revision 1087: - - - -

PythonClass - Class 6 example

-

- Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text -

-
- - - diff --git a/Students/A.Kramer/session06/lambda_lab.py b/Students/A.Kramer/session06/lambda_lab.py deleted file mode 100644 index aabc79b4..00000000 --- a/Students/A.Kramer/session06/lambda_lab.py +++ /dev/null @@ -1,16 +0,0 @@ -''' -Created on Nov 5, 2014 - -@author: Aleksey Kramer -''' - -def function_bulider(n): - l = [] - for i in range(n): - l.append(lambda x, e=i: x + e) - return l - -if __name__ == "__main__": - the_list = function_bulider(4) - for f in the_list: - print f(5) \ No newline at end of file diff --git a/Students/A.Kramer/session06/lecture_notes.py b/Students/A.Kramer/session06/lecture_notes.py deleted file mode 100644 index 01ba7ba8..00000000 --- a/Students/A.Kramer/session06/lecture_notes.py +++ /dev/null @@ -1,68 +0,0 @@ -''' -Created on Nov 5, 2014 - -@author: Aleksey Kramer -''' -# lambda usage -f = lambda x, y: x + y - -print f(2,3) - -# Each element in the list is a function -l = [lambda x, y: x + y] -print type(l[0]) -print l[0](3,3) - -# the same as above but using def: declaration -def fun(x, y): - return x + y - -l = [fun] -print type(l[0]) -print l[0](3,3) - -# Functional Programming - -# map function -l = [2,5,7,12,6,4] -def fun1(x): - return x*2 + 10 -print map(fun1, l) - -# or the same as above, but with lambda -print map(lambda x: x*2 + 10, l) - -# filter function -l = [2, 5, 7, 12, 6, 4] -print filter(lambda x: not x%2, l) - -l = [1, 0, 2.3, 0.0, 'text', '', [1,2], [], False, True, None ] -print filter(None, l) - -# reduce function -# to sum all the items with reduce -l = [2, 5, 7, 12, 6, 4] -print reduce(lambda x,y: x+y, l) - -# to multiply all the items with reduce -print reduce(lambda x,y: x*y, l) -# or -import operator -print reduce(operator.mul, l) - -# more about lambda - loading lambda functions in the list -# and using the list later on -l = [] -for i in range(3): - l.append(lambda x, e=i: x**e) -for f in l: - print f(3) - - -# - - - - -if __name__ == "__main__": - pass \ No newline at end of file diff --git a/Students/A.Kramer/session06/test.txt b/Students/A.Kramer/session06/test.txt deleted file mode 100644 index b4537562..00000000 --- a/Students/A.Kramer/session06/test.txt +++ /dev/null @@ -1,811 +0,0 @@ - -Introduction To Python - - Session One: Introductions - Session Two: Functions, Booleans and Modules - Session Three: Sequences, Iteration and String Formatting - Session Four: Dictionaries, Sets, Exceptions, and Files - Session Five: Advanced Argument passing, List and Dict Comprehensions - Session Six: Functional and Object Oriented Programming - NOTE: - Lightning Talks Today: - Review/Questions - Homework review - Test Driven development demo - Anonymous functions - Functional Programming - LAB - Object Oriented Programming - Python Classes - Subclassing/Inheritance - More on Subclassing - Homework - Session Seven: Testing, More OO - Session Eight: Generators, Iterators, Decorators, and Context Managers - Session Nine: Decorators, Context Managers, Packages and packaging - Session Ten: Unicode, Persistence / Serialization - - Homework Materials - Supplemental Materials - - - - Docs � - Session Six: Functional and Object Oriented Programming - View page source - -Session Six: Functional and Object Oriented Programming - -Lambda and Functional programming. - -Object oriented programming: - -classes, instances, attributes, and subclassing -NOTE: - -Veteran�s Day: - -No class next week -Lightning Talks Today: - -Aleksey Kramer - -Alexander R Galvin - -Gideon I Sylvan - -Hui Zhang -Review/Questions -Review of Previous Class - - Argument Passing: *args, **kwargs - comprehensions - testing (a bit more on that soon) - -Homework review - -Homework Questions? -Notes from Homework: - -Comparing to �singletons�: - -Use: - -if something is None - -Not: - -if something == None - -(also True and False) - -rich comparisons: numpy - -(demo) - -Binary mode for files: - -infile = open(infilename, 'rb') -outfile = open(outfilename, 'wb') - - - -You don�t actually need to use the result of a list comp: - -for i, st in zip( divisors, sets): - [ st.add(j) for j in range(21) if not j%i ] - -The collections module - -The collections module has a numbe rof handy special purpose collections: - - defautltdict - namedtuple - deque - Counter - -https://docs.python.org/2/library/collections.html -defaultdict - -An alternative to dict.setdefault() - -Makes sense when you are buildng a dict where every value will be the same thing - -Carolyn found this in the collections package. Useful for the trigrams assignment: - -from collections import defaultdict - -trigrams = defaultdict(list) -... - trigrams[pair].append(follower) - -Counter - -Counter: - -Hui Zhang found this for counting how many students used which previous languages. - -See my example in /Solutions/Session05 -Test Driven development demo - -In Examples/Session06/ -Anonymous functions -lambda - -In [171]: f = lambda x, y: x+y -In [172]: f(2,3) -Out[172]: 5 - -Content can only be an expression � not a statement - -Anyone remember what the difference is? - -Called �Anonymous�: it doesn�t need a name. - -It�s a python object, it can be stored in a list or other container - -In [7]: l = [lambda x, y: x+y] -In [8]: type(l[0]) -Out[8]: function - -And you can call it: - -In [9]: l[0](3,4) -Out[9]: 7 - -Functions as first class objects - -You can do that with �regular� functions too: - -In [12]: def fun(x,y): - ....: return x+y - ....: -In [13]: l = [fun] -In [14]: type(l[0]) -Out[14]: function -In [15]: l[0](3,4) -Out[15]: 7 - -Functional Programming -map - -map �maps� a function onto a sequence of objects � It applies the function to each item in the list, returning another list - -In [23]: l = [2, 5, 7, 12, 6, 4] -In [24]: def fun(x): - return x*2 + 10 -In [25]: map(fun, l) -Out[25]: [14, 20, 24, 34, 22, 18] - -But if it�s a small function, and you only need it once: - -In [26]: map(lambda x: x*2 + 10, l) -Out[26]: [14, 20, 24, 34, 22, 18] - -filter - -filter �filters� a sequence of objects with a boolean function � It keeps only those for which the function is True - -To get only the even numbers: - -In [27]: l = [2, 5, 7, 12, 6, 4] -In [28]: filter(lambda x: not x%2, l) -Out[28]: [2, 12, 6, 4] - -If you pass None to filter(), you get only items that evaluate to true: - -In [1]: l = [1, 0, 2.3, 0.0, 'text', '', [1,2], [], False, True, None ] - -In [2]: filter(None, l) -Out[2]: [1, 2.3, 'text', [1, 2], True] - -reduce - -reduce �reduces� a sequence of objects to a single object with a function that combines two arguments - -To get the sum: - -In [30]: l = [2, 5, 7, 12, 6, 4] -In [31]: reduce(lambda x,y: x+y, l) -Out[31]: 36 - -To get the product: - -In [32]: reduce(lambda x,y: x*y, l) -Out[32]: 20160 - -or - -In [13]: import operator - -In [14]: reduce(operator.mul, l) -Out[14]: 20160 - -Comprehensions - -Couldn�t you do all this with comprehensions? - -Yes: - -In [33]: [x+2 + 10 for x in l] -Out[33]: [14, 17, 19, 24, 18, 16] - -In [34]: [x for x in l if not x%2] -Out[34]: [2, 12, 6, 4] - -In [6]: l -Out[6]: [1, 0, 2.3, 0.0, 'text', '', [1, 2], [], False, True, None] -In [7]: [i for i in l if i] -Out[7]: [1, 2.3, 'text', [1, 2], True] - -(Except Reduce) - -But Guido thinks almost all uses of reduce are really sum() -Functional Programming - -Comprehensions and map, filter, reduce are all �functional programming� approaches} - -map, filter and reduce pre-date comprehensions in Python�s history - -Some people like that syntax better - -And �map-reduce� is a big concept these days for parallel processing of �Big Data� in NoSQL databases. - -(Hadoop, MongoDB, etc.) -A bit more about lambda - -Can also use keyword arguments - -In [186]: l = [] -In [187]: for i in range(3): - l.append(lambda x, e=i: x**e) - .....: -In [189]: for f in l: - print f(3) -1 -3 -9 - -Note when the keyword argument is evaluated: this turns out to be very handy! -LAB -lambda and keyword argument magic - -Write a function that returns a list of n functions, such that each one, when called, will return the input value, incremented by an increasing number. - -Use a for loop, lambda, and a keyword argument - -( Extra credit ): - -Do it with a list comprehension, instead of a for loop - -Not clear? here�s what you should get - -In [96]: the_list = function_builder(4) -### so the_list should contain n functions (callables) -In [97]: the_list[0](2) -Out[97]: 2 -## the zeroth element of the list is a function that add 0 -## to the input, hence called with 2, returns 2 -In [98]: the_list[1](2) -Out[98]: 3 -## the 1st element of the list is a function that adds 1 -## to the input value, thus called with 2, returns 3 -In [100]: for f in the_list: - print f(5) - .....: -5 -6 -7 -8 -### If you loop through them all, and call them, each one adds one more -to the input, 5... i.e. the nth function in the list adds n to the input. - -Lightning Talks - -Aleksey Kramer - -Alexander R Galvin - -Object Oriented Programming -Object Oriented Programming - -More about Python implementation than OO design/strengths/weaknesses - -One reason for this: - -Folks can�t even agree on what OO �really� means - -See: The Quarks of Object-Oriented Development - - Deborah J. Armstrong - -http://agp.hx0.ru/oop/quarks.pdf - -Is Python a �True� Object-Oriented Language? - -(Doesn�t support full encapsulation, doesn�t require classes, etc...) - -I don�t Care! - -Good software design is about code re-use, clean separation of concerns, refactorability, testability, etc... - -OO can help with all that, but: - - It doesn�t guarantee it - It can get in the way - -Python is a Dynamic Language - -That clashes with �pure� OO - -Think in terms of what makes sense for your project - � not any one paradigm of software design. - -So what is �object oriented programming�? -�Objects can be thought of as wrapping their data within a set of functions designed to ensure that the data are used appropriately, and to assist in that use� - -http://en.wikipedia.org/wiki/Object-oriented_programming - -Even simpler: - -�Objects are data and the functions that act on them in one place.� - -This is the core of �encapsulation� - -In Python: just another namespace. - -The OO buzzwords: - - data abstraction - encapsulation - modularity - polymorphism - inheritance - -Python does all of this, though it doesn�t enforce it. - -You can do OO in C - -(see the GTK+ project) - -�OO languages� give you some handy tools to make it easier (and safer): - - polymorphism (duck typing gives you this anyway) - inheritance - -OO is the dominant model for the past couple decades - -You will need to use it: - - It�s a good idea for a lot of problems - You�ll need to work with OO packages - -(Even a fair bit of the standard library is Object Oriented) - -class - A category of objects: particular data and behavior: A �circle� (same as a type in python) -instance - A particular object of a class: a specific circle -object - The general case of a instance � really any value (in Python anyway) -attribute - Something that belongs to an object (or class): generally thought of as a variable, or single object, as opposed to a ... -method - A function that belongs to a class - -Note that in python, functions are first class objects, so a method is an attribute -Python Classes - -The class statement - -class creates a new type object: - -In [4]: class C(object): - pass - ...: -In [5]: type(C) -Out[5]: type - -A class is a type � interesting! - -It is created when the statement is run � much like def - -You don�t have to subclass from object, but you should - -(note on �new style� classes) -Python Classes - -About the simplest class you can write - ->>> class Point(object): -... x = 1 -... y = 2 ->>> Point - ->>> Point.x -1 ->>> p = Point() ->>> p -<__main__.Point instance at 0x2de918> ->>> p.x -1 - -Basic Structure of a real class: - -class Point(object): -# everything defined in here is in the class namespace - - def __init__(self, x, y): - self.x = x - self.y = y - -## create an instance of the class -p = Point(3,4) - -## access the attributes -print "p.x is:", p.x -print "p.y is:", p.y - -see: Examples/Session06/simple_classes.py - -The Initializer - -The __init__ special method is called when a new instance of a class is created. - -You can use it to do any set-up you need - -class Point(object): - def __init__(self, x, y): - self.x = x - self.y = y - -It gets the arguments passed when you call the class object: - -Point(x, y) - -What is this self thing? - -The instance of the class is passed as the first parameter for every method. - -�self� is only a convention � but you DO want to use it. - -class Point(object): - def a_function(self, x, y): -... - -Does this look familiar from C-style procedural programming? - -Anything assigned to a self. attribute is kept in the instance name space � self is the instance. - -That�s where all the instance-specific data is. - -class Point(object): - size = 4 - color= "red" - def __init__(self, x, y): - self.x = x - self.y = y - -Anything assigned in the class scope is a class attribute � every instance of the class shares the same one. - -Note: the methods defined by def are class attributes as well. - -The class is one namespace, the instance is another. - -class Point(object): - size = 4 - color= "red" -... - def get_color(): - return self.color ->>> p3.get_color() - 'red' - -class attributes are accessed with self also. - -Typical methods: - -class Circle(object): - color = "red" - - def __init__(self, diameter): - self.diameter = diameter - - def grow(self, factor=2): - self.diameter = self.diameter * factor - -Methods take some parameters, manipulate the attributes in self. - -They may or may not return something useful. - -Gotcha! - -... - def grow(self, factor=2): - self.diameter = self.diameter * factor -... -In [205]: C = Circle(5) -In [206]: C.grow(2,3) - -TypeError: grow() takes at most 2 arguments (3 given) - -Huh???? I only gave 2 - -self is implicitly passed in for you by python. - -(demo of bound vs. unbound methods) -LAB - -Let�s say you need to render some html... - -The goal is to build a set of classes that render an html page like this: - -Examples/Session06/sample_html.html - -We�ll start with a single class, then add some sub-classes to specialize the behavior - -Details in: - -HTML Renderer Homework Assignment - -Let�s see if you can do step 1. in class... -Lightning Talks - -Gideon Sylvan - -Hui Zhang - -Subclassing/Inheritance -Inheritance - -In object-oriented programming (OOP), inheritance is a way to reuse code of existing objects, or to establish a subtype from an existing object. - -Objects are defined by classes, classes can inherit attributes and behavior from pre-existing classes called base classes or super classes. - -The resulting classes are known as derived classes or subclasses. - -(http://en.wikipedia.org/wiki/Inheritance_%28object-oriented_programming%29) -Subclassing - -A subclass �inherits� all the attributes (methods, etc) of the parent class. - -You can then change (�override�) some or all of the attributes to change the behavior. - -You can also add new attributes to extend the behavior. - -The simplest subclass in Python: - -class A_subclass(The_superclass): - pass - -A_subclass now has exactly the same behavior as The_superclass - -NOTE: when we put object in there, it means we are deriving from object � getting core functionality of all objects. -Overriding attributes - -Overriding is as simple as creating a new attribute with the same name: - -class Circle(object): - color = "red" - -... - -class NewCircle(Circle): - color = "blue" ->>> nc = NewCircle ->>> print nc.color -blue - -all the self instances will have the new attribute. -Overriding methods - -Same thing, but with methods (remember, a method is an attribute in python) - -class Circle(object): -... - def grow(self, factor=2): - """grows the circle's diameter by factor""" - self.diameter = self.diameter * factor -... - -class NewCircle(Circle): -... - def grow(self, factor=2): - """grows the area by factor...""" - self.diameter = self.diameter * math.sqrt(2) - -all the instances will have the new method - -Here�s a program design suggestion: - -��� - -Whenever you override a method, the interface of the new method should be the same as the old. It should take the same parameters, return the same type, and obey the same preconditions and postconditions. - -If you obey this rule, you will find that any function designed to work with an instance of a superclass, like a Deck, will also work with instances of subclasses like a Hand or PokerHand. If you violate this rule, your code will collapse like (sorry) a house of cards. - -��� - -[ThinkPython 18.10] - -( Demo of class vs. instance attributes ) -More on Subclassing -Overriding __init__ - -__init__ common method to override} - -You often need to call the super class __init__ as well - -class Circle(object): - color = "red" - def __init__(self, diameter): - self.diameter = diameter -... -class CircleR(Circle): - def __init__(self, radius): - diameter = radius*2 - Circle.__init__(self, diameter) - -exception to: �don�t change the method signature� rule. -More subclassing - -You can also call the superclass� other methods: - -class Circle(object): -... - def get_area(self, diameter): - return math.pi * (diameter/2.0)**2 - - -class CircleR2(Circle): -... - def get_area(self): - return Circle.get_area(self, self.radius*2) - -There is nothing special about __init__ except that it gets called automatically when you instantiate an instance. -When to Subclass - -�Is a� relationship: Subclass/inheritance - -�Has a� relationship: Composition - -�Is a� vs �Has a� - -You may have a class that needs to accumulate an arbitrary number of objects. - -A list can do that � so should you subclass list? - -Ask yourself: - -� Is your class a list (with some extra functionality)? - -or - -� Does you class have a list? - -You only want to subclass list if your class could be used anywhere a list can be used. -Attribute resolution order - -When you access an attribute: - -an_instance.something - -Python looks for it in this order: - - Is it an instance attribute ? - Is it a class attribute ? - Is it a superclass attribute ? - Is it a super-superclass attribute ? - ... - -It can get more complicated... - -http://www.python.org/getit/releases/2.3/mro/ - -http://python-history.blogspot.com/2010/06/method-resolution-order.html -What are Python classes, really? - -Putting aside the OO theory... - -Python classes are: - - Namespaces - One for the class object - One for each instance - Attribute resolution order - Auto tacking-on of self when methods are called - -That�s about it � really! -Type-Based dispatch - -You�ll see code that looks like this: - -if isinstance(other, A_Class): - Do_something_with_other -else: - Do_something_else - -Usually better to use �duck typing� (polymorphism) - -But when it�s called for: - - isinstance() - issubclass() - -GvR: �Five Minute Multi- methods in Python�: - -http://www.artima.com/weblogs/viewpost.jsp?thread=101605 - -http://www.python.org/getit/releases/2.3/mro/ - -http://python-history.blogspot.com/2010/06/method-resolution-order.html -Wrap Up - -Thinking OO in Python: - -Think about what makes sense for your code: - - Code re-use - Clean APIs - ... - -Don�t be a slave to what OO is supposed to look like. - -Let OO work for you, not create work for you - -OO in Python: - -The Art of Subclassing: Raymond Hettinger - -http://pyvideo.org/video/879/the-art-of-subclassing - -�classes are for code re-use � not creating taxonomies� - -Stop Writing Classes: Jack Diederich - -http://pyvideo.org/video/880/stop-writing-classes - -�If your class has only two methods � and one of them is __init__ � you don�t need a class� -Homework - - finish the lambda:keyword magic lab - functional files - html renderer - -Functional files - -Write a program that takes a filename and �cleans� the file be removing all the leading and trailing whitespace from each line. - -Read in the original file and write out a new one, either creating a new file or overwriting the existing one. - -Give your user the option of which to perform. - -Use map() to do the work. - -Write a second version using a comprehension. - -sys.argv hold the command line arguments the user typed in. If the user types: - -$ python the_script a_file_name - -Then: - -import sys -filename = sys.argv[1] - -will get filename == "a_file_name" -Html rendering system: - -HTML Renderer Homework Assignment - -You will build an html generator, using: - - A Base Class with a couple methods - Subclasses overriding class attributes - Subclasses overriding a method - Subclasses overriding the __init__ - -These are the core OO approaches - -� Copyright 2014, Christopher Barker, Cris Ewing, . -Sphinx theme provided by Read the Docs diff --git a/Students/A.Kramer/session06/test1.txt b/Students/A.Kramer/session06/test1.txt deleted file mode 100644 index b4537562..00000000 --- a/Students/A.Kramer/session06/test1.txt +++ /dev/null @@ -1,811 +0,0 @@ - -Introduction To Python - - Session One: Introductions - Session Two: Functions, Booleans and Modules - Session Three: Sequences, Iteration and String Formatting - Session Four: Dictionaries, Sets, Exceptions, and Files - Session Five: Advanced Argument passing, List and Dict Comprehensions - Session Six: Functional and Object Oriented Programming - NOTE: - Lightning Talks Today: - Review/Questions - Homework review - Test Driven development demo - Anonymous functions - Functional Programming - LAB - Object Oriented Programming - Python Classes - Subclassing/Inheritance - More on Subclassing - Homework - Session Seven: Testing, More OO - Session Eight: Generators, Iterators, Decorators, and Context Managers - Session Nine: Decorators, Context Managers, Packages and packaging - Session Ten: Unicode, Persistence / Serialization - - Homework Materials - Supplemental Materials - - - - Docs � - Session Six: Functional and Object Oriented Programming - View page source - -Session Six: Functional and Object Oriented Programming - -Lambda and Functional programming. - -Object oriented programming: - -classes, instances, attributes, and subclassing -NOTE: - -Veteran�s Day: - -No class next week -Lightning Talks Today: - -Aleksey Kramer - -Alexander R Galvin - -Gideon I Sylvan - -Hui Zhang -Review/Questions -Review of Previous Class - - Argument Passing: *args, **kwargs - comprehensions - testing (a bit more on that soon) - -Homework review - -Homework Questions? -Notes from Homework: - -Comparing to �singletons�: - -Use: - -if something is None - -Not: - -if something == None - -(also True and False) - -rich comparisons: numpy - -(demo) - -Binary mode for files: - -infile = open(infilename, 'rb') -outfile = open(outfilename, 'wb') - - - -You don�t actually need to use the result of a list comp: - -for i, st in zip( divisors, sets): - [ st.add(j) for j in range(21) if not j%i ] - -The collections module - -The collections module has a numbe rof handy special purpose collections: - - defautltdict - namedtuple - deque - Counter - -https://docs.python.org/2/library/collections.html -defaultdict - -An alternative to dict.setdefault() - -Makes sense when you are buildng a dict where every value will be the same thing - -Carolyn found this in the collections package. Useful for the trigrams assignment: - -from collections import defaultdict - -trigrams = defaultdict(list) -... - trigrams[pair].append(follower) - -Counter - -Counter: - -Hui Zhang found this for counting how many students used which previous languages. - -See my example in /Solutions/Session05 -Test Driven development demo - -In Examples/Session06/ -Anonymous functions -lambda - -In [171]: f = lambda x, y: x+y -In [172]: f(2,3) -Out[172]: 5 - -Content can only be an expression � not a statement - -Anyone remember what the difference is? - -Called �Anonymous�: it doesn�t need a name. - -It�s a python object, it can be stored in a list or other container - -In [7]: l = [lambda x, y: x+y] -In [8]: type(l[0]) -Out[8]: function - -And you can call it: - -In [9]: l[0](3,4) -Out[9]: 7 - -Functions as first class objects - -You can do that with �regular� functions too: - -In [12]: def fun(x,y): - ....: return x+y - ....: -In [13]: l = [fun] -In [14]: type(l[0]) -Out[14]: function -In [15]: l[0](3,4) -Out[15]: 7 - -Functional Programming -map - -map �maps� a function onto a sequence of objects � It applies the function to each item in the list, returning another list - -In [23]: l = [2, 5, 7, 12, 6, 4] -In [24]: def fun(x): - return x*2 + 10 -In [25]: map(fun, l) -Out[25]: [14, 20, 24, 34, 22, 18] - -But if it�s a small function, and you only need it once: - -In [26]: map(lambda x: x*2 + 10, l) -Out[26]: [14, 20, 24, 34, 22, 18] - -filter - -filter �filters� a sequence of objects with a boolean function � It keeps only those for which the function is True - -To get only the even numbers: - -In [27]: l = [2, 5, 7, 12, 6, 4] -In [28]: filter(lambda x: not x%2, l) -Out[28]: [2, 12, 6, 4] - -If you pass None to filter(), you get only items that evaluate to true: - -In [1]: l = [1, 0, 2.3, 0.0, 'text', '', [1,2], [], False, True, None ] - -In [2]: filter(None, l) -Out[2]: [1, 2.3, 'text', [1, 2], True] - -reduce - -reduce �reduces� a sequence of objects to a single object with a function that combines two arguments - -To get the sum: - -In [30]: l = [2, 5, 7, 12, 6, 4] -In [31]: reduce(lambda x,y: x+y, l) -Out[31]: 36 - -To get the product: - -In [32]: reduce(lambda x,y: x*y, l) -Out[32]: 20160 - -or - -In [13]: import operator - -In [14]: reduce(operator.mul, l) -Out[14]: 20160 - -Comprehensions - -Couldn�t you do all this with comprehensions? - -Yes: - -In [33]: [x+2 + 10 for x in l] -Out[33]: [14, 17, 19, 24, 18, 16] - -In [34]: [x for x in l if not x%2] -Out[34]: [2, 12, 6, 4] - -In [6]: l -Out[6]: [1, 0, 2.3, 0.0, 'text', '', [1, 2], [], False, True, None] -In [7]: [i for i in l if i] -Out[7]: [1, 2.3, 'text', [1, 2], True] - -(Except Reduce) - -But Guido thinks almost all uses of reduce are really sum() -Functional Programming - -Comprehensions and map, filter, reduce are all �functional programming� approaches} - -map, filter and reduce pre-date comprehensions in Python�s history - -Some people like that syntax better - -And �map-reduce� is a big concept these days for parallel processing of �Big Data� in NoSQL databases. - -(Hadoop, MongoDB, etc.) -A bit more about lambda - -Can also use keyword arguments - -In [186]: l = [] -In [187]: for i in range(3): - l.append(lambda x, e=i: x**e) - .....: -In [189]: for f in l: - print f(3) -1 -3 -9 - -Note when the keyword argument is evaluated: this turns out to be very handy! -LAB -lambda and keyword argument magic - -Write a function that returns a list of n functions, such that each one, when called, will return the input value, incremented by an increasing number. - -Use a for loop, lambda, and a keyword argument - -( Extra credit ): - -Do it with a list comprehension, instead of a for loop - -Not clear? here�s what you should get - -In [96]: the_list = function_builder(4) -### so the_list should contain n functions (callables) -In [97]: the_list[0](2) -Out[97]: 2 -## the zeroth element of the list is a function that add 0 -## to the input, hence called with 2, returns 2 -In [98]: the_list[1](2) -Out[98]: 3 -## the 1st element of the list is a function that adds 1 -## to the input value, thus called with 2, returns 3 -In [100]: for f in the_list: - print f(5) - .....: -5 -6 -7 -8 -### If you loop through them all, and call them, each one adds one more -to the input, 5... i.e. the nth function in the list adds n to the input. - -Lightning Talks - -Aleksey Kramer - -Alexander R Galvin - -Object Oriented Programming -Object Oriented Programming - -More about Python implementation than OO design/strengths/weaknesses - -One reason for this: - -Folks can�t even agree on what OO �really� means - -See: The Quarks of Object-Oriented Development - - Deborah J. Armstrong - -http://agp.hx0.ru/oop/quarks.pdf - -Is Python a �True� Object-Oriented Language? - -(Doesn�t support full encapsulation, doesn�t require classes, etc...) - -I don�t Care! - -Good software design is about code re-use, clean separation of concerns, refactorability, testability, etc... - -OO can help with all that, but: - - It doesn�t guarantee it - It can get in the way - -Python is a Dynamic Language - -That clashes with �pure� OO - -Think in terms of what makes sense for your project - � not any one paradigm of software design. - -So what is �object oriented programming�? -�Objects can be thought of as wrapping their data within a set of functions designed to ensure that the data are used appropriately, and to assist in that use� - -http://en.wikipedia.org/wiki/Object-oriented_programming - -Even simpler: - -�Objects are data and the functions that act on them in one place.� - -This is the core of �encapsulation� - -In Python: just another namespace. - -The OO buzzwords: - - data abstraction - encapsulation - modularity - polymorphism - inheritance - -Python does all of this, though it doesn�t enforce it. - -You can do OO in C - -(see the GTK+ project) - -�OO languages� give you some handy tools to make it easier (and safer): - - polymorphism (duck typing gives you this anyway) - inheritance - -OO is the dominant model for the past couple decades - -You will need to use it: - - It�s a good idea for a lot of problems - You�ll need to work with OO packages - -(Even a fair bit of the standard library is Object Oriented) - -class - A category of objects: particular data and behavior: A �circle� (same as a type in python) -instance - A particular object of a class: a specific circle -object - The general case of a instance � really any value (in Python anyway) -attribute - Something that belongs to an object (or class): generally thought of as a variable, or single object, as opposed to a ... -method - A function that belongs to a class - -Note that in python, functions are first class objects, so a method is an attribute -Python Classes - -The class statement - -class creates a new type object: - -In [4]: class C(object): - pass - ...: -In [5]: type(C) -Out[5]: type - -A class is a type � interesting! - -It is created when the statement is run � much like def - -You don�t have to subclass from object, but you should - -(note on �new style� classes) -Python Classes - -About the simplest class you can write - ->>> class Point(object): -... x = 1 -... y = 2 ->>> Point - ->>> Point.x -1 ->>> p = Point() ->>> p -<__main__.Point instance at 0x2de918> ->>> p.x -1 - -Basic Structure of a real class: - -class Point(object): -# everything defined in here is in the class namespace - - def __init__(self, x, y): - self.x = x - self.y = y - -## create an instance of the class -p = Point(3,4) - -## access the attributes -print "p.x is:", p.x -print "p.y is:", p.y - -see: Examples/Session06/simple_classes.py - -The Initializer - -The __init__ special method is called when a new instance of a class is created. - -You can use it to do any set-up you need - -class Point(object): - def __init__(self, x, y): - self.x = x - self.y = y - -It gets the arguments passed when you call the class object: - -Point(x, y) - -What is this self thing? - -The instance of the class is passed as the first parameter for every method. - -�self� is only a convention � but you DO want to use it. - -class Point(object): - def a_function(self, x, y): -... - -Does this look familiar from C-style procedural programming? - -Anything assigned to a self. attribute is kept in the instance name space � self is the instance. - -That�s where all the instance-specific data is. - -class Point(object): - size = 4 - color= "red" - def __init__(self, x, y): - self.x = x - self.y = y - -Anything assigned in the class scope is a class attribute � every instance of the class shares the same one. - -Note: the methods defined by def are class attributes as well. - -The class is one namespace, the instance is another. - -class Point(object): - size = 4 - color= "red" -... - def get_color(): - return self.color ->>> p3.get_color() - 'red' - -class attributes are accessed with self also. - -Typical methods: - -class Circle(object): - color = "red" - - def __init__(self, diameter): - self.diameter = diameter - - def grow(self, factor=2): - self.diameter = self.diameter * factor - -Methods take some parameters, manipulate the attributes in self. - -They may or may not return something useful. - -Gotcha! - -... - def grow(self, factor=2): - self.diameter = self.diameter * factor -... -In [205]: C = Circle(5) -In [206]: C.grow(2,3) - -TypeError: grow() takes at most 2 arguments (3 given) - -Huh???? I only gave 2 - -self is implicitly passed in for you by python. - -(demo of bound vs. unbound methods) -LAB - -Let�s say you need to render some html... - -The goal is to build a set of classes that render an html page like this: - -Examples/Session06/sample_html.html - -We�ll start with a single class, then add some sub-classes to specialize the behavior - -Details in: - -HTML Renderer Homework Assignment - -Let�s see if you can do step 1. in class... -Lightning Talks - -Gideon Sylvan - -Hui Zhang - -Subclassing/Inheritance -Inheritance - -In object-oriented programming (OOP), inheritance is a way to reuse code of existing objects, or to establish a subtype from an existing object. - -Objects are defined by classes, classes can inherit attributes and behavior from pre-existing classes called base classes or super classes. - -The resulting classes are known as derived classes or subclasses. - -(http://en.wikipedia.org/wiki/Inheritance_%28object-oriented_programming%29) -Subclassing - -A subclass �inherits� all the attributes (methods, etc) of the parent class. - -You can then change (�override�) some or all of the attributes to change the behavior. - -You can also add new attributes to extend the behavior. - -The simplest subclass in Python: - -class A_subclass(The_superclass): - pass - -A_subclass now has exactly the same behavior as The_superclass - -NOTE: when we put object in there, it means we are deriving from object � getting core functionality of all objects. -Overriding attributes - -Overriding is as simple as creating a new attribute with the same name: - -class Circle(object): - color = "red" - -... - -class NewCircle(Circle): - color = "blue" ->>> nc = NewCircle ->>> print nc.color -blue - -all the self instances will have the new attribute. -Overriding methods - -Same thing, but with methods (remember, a method is an attribute in python) - -class Circle(object): -... - def grow(self, factor=2): - """grows the circle's diameter by factor""" - self.diameter = self.diameter * factor -... - -class NewCircle(Circle): -... - def grow(self, factor=2): - """grows the area by factor...""" - self.diameter = self.diameter * math.sqrt(2) - -all the instances will have the new method - -Here�s a program design suggestion: - -��� - -Whenever you override a method, the interface of the new method should be the same as the old. It should take the same parameters, return the same type, and obey the same preconditions and postconditions. - -If you obey this rule, you will find that any function designed to work with an instance of a superclass, like a Deck, will also work with instances of subclasses like a Hand or PokerHand. If you violate this rule, your code will collapse like (sorry) a house of cards. - -��� - -[ThinkPython 18.10] - -( Demo of class vs. instance attributes ) -More on Subclassing -Overriding __init__ - -__init__ common method to override} - -You often need to call the super class __init__ as well - -class Circle(object): - color = "red" - def __init__(self, diameter): - self.diameter = diameter -... -class CircleR(Circle): - def __init__(self, radius): - diameter = radius*2 - Circle.__init__(self, diameter) - -exception to: �don�t change the method signature� rule. -More subclassing - -You can also call the superclass� other methods: - -class Circle(object): -... - def get_area(self, diameter): - return math.pi * (diameter/2.0)**2 - - -class CircleR2(Circle): -... - def get_area(self): - return Circle.get_area(self, self.radius*2) - -There is nothing special about __init__ except that it gets called automatically when you instantiate an instance. -When to Subclass - -�Is a� relationship: Subclass/inheritance - -�Has a� relationship: Composition - -�Is a� vs �Has a� - -You may have a class that needs to accumulate an arbitrary number of objects. - -A list can do that � so should you subclass list? - -Ask yourself: - -� Is your class a list (with some extra functionality)? - -or - -� Does you class have a list? - -You only want to subclass list if your class could be used anywhere a list can be used. -Attribute resolution order - -When you access an attribute: - -an_instance.something - -Python looks for it in this order: - - Is it an instance attribute ? - Is it a class attribute ? - Is it a superclass attribute ? - Is it a super-superclass attribute ? - ... - -It can get more complicated... - -http://www.python.org/getit/releases/2.3/mro/ - -http://python-history.blogspot.com/2010/06/method-resolution-order.html -What are Python classes, really? - -Putting aside the OO theory... - -Python classes are: - - Namespaces - One for the class object - One for each instance - Attribute resolution order - Auto tacking-on of self when methods are called - -That�s about it � really! -Type-Based dispatch - -You�ll see code that looks like this: - -if isinstance(other, A_Class): - Do_something_with_other -else: - Do_something_else - -Usually better to use �duck typing� (polymorphism) - -But when it�s called for: - - isinstance() - issubclass() - -GvR: �Five Minute Multi- methods in Python�: - -http://www.artima.com/weblogs/viewpost.jsp?thread=101605 - -http://www.python.org/getit/releases/2.3/mro/ - -http://python-history.blogspot.com/2010/06/method-resolution-order.html -Wrap Up - -Thinking OO in Python: - -Think about what makes sense for your code: - - Code re-use - Clean APIs - ... - -Don�t be a slave to what OO is supposed to look like. - -Let OO work for you, not create work for you - -OO in Python: - -The Art of Subclassing: Raymond Hettinger - -http://pyvideo.org/video/879/the-art-of-subclassing - -�classes are for code re-use � not creating taxonomies� - -Stop Writing Classes: Jack Diederich - -http://pyvideo.org/video/880/stop-writing-classes - -�If your class has only two methods � and one of them is __init__ � you don�t need a class� -Homework - - finish the lambda:keyword magic lab - functional files - html renderer - -Functional files - -Write a program that takes a filename and �cleans� the file be removing all the leading and trailing whitespace from each line. - -Read in the original file and write out a new one, either creating a new file or overwriting the existing one. - -Give your user the option of which to perform. - -Use map() to do the work. - -Write a second version using a comprehension. - -sys.argv hold the command line arguments the user typed in. If the user types: - -$ python the_script a_file_name - -Then: - -import sys -filename = sys.argv[1] - -will get filename == "a_file_name" -Html rendering system: - -HTML Renderer Homework Assignment - -You will build an html generator, using: - - A Base Class with a couple methods - Subclasses overriding class attributes - Subclasses overriding a method - Subclasses overriding the __init__ - -These are the core OO approaches - -� Copyright 2014, Christopher Barker, Cris Ewing, . -Sphinx theme provided by Read the Docs diff --git a/Students/A.Kramer/session07/circle.py b/Students/A.Kramer/session07/circle.py deleted file mode 100644 index 3774e010..00000000 --- a/Students/A.Kramer/session07/circle.py +++ /dev/null @@ -1,116 +0,0 @@ -''' -Created on Nov 18, 2014 - -@author: Aleksey -''' - -from math import pi -from numbers import Number - -class Circle(object): - def __init__(self, the_radius): - self._radius = float(the_radius) - - @property - def radius(self): - return self._radius - - @radius.setter - def radius(self, value): - self._radius = value - - @property - def diameter(self): - return self._radius * 2.0 - - @diameter.setter - def diameter(self, value): - self._radius = value / 2.0 - - @property - def area(self): - return pi * self._radius**2.0 - - @classmethod - def from_diameter(cls, diam): - return cls(diam / 2.0) - - def __str__(self): - return "Circle with radius: %s" % self.radius - - def __repr__(self): - return "Circle(%s)" % self.radius - - def __add__(self, cls): - if isinstance(cls, Circle): - self.radius = self.radius + cls.radius - return self.radius - - def __mul__(self, num): - self.radius = self.radius * num - return self.radius - - def __eq__(self, other): - if isinstance(other, Circle): - return self.radius == other.radius - - def __lt__(self,other): - if isinstance(other, Circle): - return(self.radius < other.radius) - - def __gt__(self,other): - if isinstance(other, Circle): - return(self.radius > other.radius) - - def __radd__(self, other): - if isinstance(other, Number): - self.radius = self.radius + other - - def __rmul__(self, other): - if isinstance(other, Number): - self.radius = self.radius * other - - def __iadd__(self, other): - if isinstance(other, Number): - self.radius += other - - def __imul__(self, other): - if isinstance(other, Number): - self.radius *= other - -if __name__ == "__main__": - c = Circle(4) - print c.radius - print c.diameter - print c.area - print - - c = Circle.from_diameter(13) - print c.radius - print c.diameter - print c.area - print - - c1 = Circle(4) - c2 = Circle(8) - print c1 + c2 - print - - print c2 * 3 - print - - c = Circle(4) - print c - print - - print repr(c) - d = eval(repr(c)) - print d - print - - circles = [Circle(6), Circle(7), Circle(8), Circle(4), Circle(0), Circle(2), Circle(3), Circle(5), Circle(9), Circle(1)] - circles.sort() - print circles - - a_circle = Circle(2) - print a_circle * 3 == 3 * a_circle \ No newline at end of file diff --git a/Students/A.Kramer/session07/lecture_notes.py b/Students/A.Kramer/session07/lecture_notes.py deleted file mode 100644 index db1884ac..00000000 --- a/Students/A.Kramer/session07/lecture_notes.py +++ /dev/null @@ -1,11 +0,0 @@ -''' -Created on Nov 18, 2014 - -@author: Aleksey -''' - - - - -if __name__ == "__main__": - pass \ No newline at end of file diff --git a/Students/A.Kramer/session07/test_Circle.py b/Students/A.Kramer/session07/test_Circle.py deleted file mode 100644 index 31460202..00000000 --- a/Students/A.Kramer/session07/test_Circle.py +++ /dev/null @@ -1,93 +0,0 @@ -''' -Created on Nov 18, 2014 - -@author: Aleksey -''' - -from circle import Circle -from math import pi -import pytest - -def test_init(): - c = Circle(3) - c.radius = 4 - -def test_radius(): - c = Circle(3) - assert c.radius == 3 - -def test_no_radius(): - with pytest.raises(TypeError): - c = Circle() - c.radius = 4 - -def test_set_radius(): - c = Circle(3) - c.radius = 5 - assert c.radius == 5 - -def test_diam(): - c = Circle(3) - assert c.diameter == 6 - -def test_change_diameter(): - c = Circle(3) - c.radius = 4 - assert c.diameter == 8 - -def test_change_diameter_float(): - c = Circle(4) - c.diameter = 11 - assert c.diameter == 11 - assert c.radius == 5.5 - -def test_area(): - c = Circle(2) - assert c.area == pi * c.radius**2.0 - -def test_set_area(): - c = Circle(4) - with pytest.raises(AttributeError): - c.area = 3 - -def test_from_diameter(): - c = Circle.from_diameter(4) - assert isinstance(c, Circle) - assert c.diameter == 4 - assert c.radius == 2 - -def test_repr(): - c = Circle(6) - assert repr(c) == 'Circle(6.0)' - -def test_equal(): - c = Circle(4) - c1 = Circle(4) - assert c == c1 - -def test_not_equal(): - c = Circle(4) - c1 = Circle(8) - assert c != c1 - -def test_less_than(): - c = Circle(4) - c1 = Circle(8) - return c < c1 - -def test_greater_than(): - c = Circle(4) - c1 = Circle(8) - return c1 > c - -def test_radd(): - c = Circle(4) - assert c.radius + 4 == 4 + c.radius - -def test_rmul(): - c = Circle(4) - assert c.radius * 4 == 4 * c.radius - - - - \ No newline at end of file diff --git a/Students/A.Kramer/session08/generator_solution.py b/Students/A.Kramer/session08/generator_solution.py deleted file mode 100644 index 0886b1de..00000000 --- a/Students/A.Kramer/session08/generator_solution.py +++ /dev/null @@ -1,104 +0,0 @@ -''' -Created on Nov 26, 2014 - -@author: Alekesey Kramer -''' - -# Generator to add numbers to predecessors -def intsum(): - num = 0 - count = 0 - while num >= 0: - yield num - count += 1 - num += count - - -def doubler(): - num = 1 - while num >= 0: - yield num - num = num*2 - -def prime(): - # My code :-) - count = 2 - while True: - if __is_prime(count): - yield count - count += 1 - else: - count += 1 - -# Found this code on the web at -# https://www.daniweb.com/software-development/python/threads/70650/an-isprimen-function -# with combination from here: http://stackoverflow.com/questions/15285534/isprime-function-for-python-language -# and modified a bit to reject all the numbers lees than 2 (just in case I will use it later) -# quite useful and fast function, but limited by the have the size of int... -def __is_prime(n): - if n < 2: - return False - # checking only odd numbers - for x in range(2, int(n**0.5)+1, 2): - if n % x == 0: - return False - return True - -# fibonacci -def fib(): - first = 1 - second = 1 - while True: - yield(first) - n = first + second - first = second - second = n - - -if __name__ == "__main__": - print "Sum of integers" - sum_of_ints = intsum() - print sum_of_ints.next() - print sum_of_ints.next() - print sum_of_ints.next() - print sum_of_ints.next() - print sum_of_ints.next() - print sum_of_ints.next() - print - print "Doubler" - doub = doubler() - print doub.next() - print doub.next() - print doub.next() - print doub.next() - print doub.next() - print doub.next() - print - print "Getting Primes" - g = prime() - print g.next() - print g.next() - print g.next() - print g.next() - print g.next() - print g.next() - print g.next() - print g.next() - print g.next() - print - print "Fibonacci" - f = fib() - print f.next() - print f.next() - print f.next() - print f.next() - print f.next() - print f.next() - print f.next() - print f.next() - print f.next() - - - - - diff --git a/Students/A.Kramer/session08/quadratic.py b/Students/A.Kramer/session08/quadratic.py deleted file mode 100644 index 299c80cc..00000000 --- a/Students/A.Kramer/session08/quadratic.py +++ /dev/null @@ -1,21 +0,0 @@ -''' -Created on Nov 25, 2014 - -@author: Aleksey -''' - -# Quadratic equation -class Quadratic(object): - def __init__(self, a, b, c): - self._a = a - self._b = b - self._c = c - - def __call__(self, x): - self._x = x - return self._a * self._x**2 + self._b * self._x + self._c - - -if __name__ == "__main__": - q = Quadratic(1,2,3) - print q(3) \ No newline at end of file diff --git a/Students/A.Kramer/session08/sparse_array.py b/Students/A.Kramer/session08/sparse_array.py deleted file mode 100644 index 6918f15c..00000000 --- a/Students/A.Kramer/session08/sparse_array.py +++ /dev/null @@ -1,33 +0,0 @@ -class SparseArray(object): - def __init__(self, iterable): - self.values = {} - self.length = len(iterable) - for i, val in enumerate(iterable): - if val: - self.values[i] = val - - def __getitem__(self, index): - if index >= self.length: - raise IndexError("Sparse array index out of range") - else: - return self.values.get(index, 0) - - def __setitem__(self, index, value): - if index >= self.length: - raise IndexError("Sparse array index out of range") - else: - if value == 0: - self.values.pop(index, None) - else: - self.values[index] = value - - def __delitem__(self, index): - if index >= self.length: - raise IndexError("Sparse array index out of range") - else: - self.values.pop(index, None) - self.length -= 1 - - def __len__(self): - return self.length - diff --git a/Students/A.Kramer/session08/test_generator.py b/Students/A.Kramer/session08/test_generator.py deleted file mode 100644 index bf8f1dc0..00000000 --- a/Students/A.Kramer/session08/test_generator.py +++ /dev/null @@ -1,65 +0,0 @@ -""" -test_generator.py - -tests the solution to the generator lab - -can be run with py.test or nosetests -""" - -import generator_solution as gen - - -def test_intsum(): - - g = gen.intsum() - - assert g.next() == 0 - assert g.next() == 1 - assert g.next() == 3 - assert g.next() == 6 - assert g.next() == 10 - assert g.next() == 15 - - -def test_doubler(): - - g = gen.doubler() - - assert g.next() == 1 - assert g.next() == 2 - assert g.next() == 4 - assert g.next() == 8 - assert g.next() == 16 - assert g.next() == 32 - - for i in range(10): - j = g.next() - - assert j == 2**15 - - -def test_fib(): - g = gen.fib() - - assert g.next() == 1 - assert g.next() == 1 - assert g.next() == 2 - assert g.next() == 3 - assert g.next() == 5 - assert g.next() == 8 - assert g.next() == 13 - assert g.next() == 21 - - -def test_prime(): - g = gen.prime() - - assert g.next() == 2 - assert g.next() == 3 - assert g.next() == 5 - assert g.next() == 7 - assert g.next() == 11 - assert g.next() == 13 - assert g.next() == 17 - assert g.next() == 19 - assert g.next() == 23 diff --git a/Students/A.Kramer/session08/test_quadratic.py b/Students/A.Kramer/session08/test_quadratic.py deleted file mode 100644 index 3e847acc..00000000 --- a/Students/A.Kramer/session08/test_quadratic.py +++ /dev/null @@ -1,35 +0,0 @@ -#!/usr/bin/env python - -""" -test code for the quadratic function evaluator -""" - -import pytest - -from quadratic import Quadratic - - -def test_init(): - q = Quadratic(1,2,3) - - -def test_evaluate(): - q = Quadratic(1,2,3) - - assert q(3) == 9 + 6 + 3 - assert q(0) == 3 - - -def test_evaluate2(): - q = Quadratic(2,1,-3) - - assert q(0) == -3 - assert q(1) == 2 + 1 - 3 - assert q(-2) == 8 - 2 - 3 - - -def test_bad_input(): - - with pytest.raises(TypeError): - q = Quadratic(2,3) - diff --git a/Students/A.Kramer/session08/test_sparse_array.py b/Students/A.Kramer/session08/test_sparse_array.py deleted file mode 100644 index 680c97b6..00000000 --- a/Students/A.Kramer/session08/test_sparse_array.py +++ /dev/null @@ -1,82 +0,0 @@ -import pytest -from sparse_array import SparseArray - - -def set_up(): - my_array = [2, 0, 0, 0, 3, 0, 0, 0, 4, 5, 6, 0, 2, 9] - my_sparse = SparseArray(my_array) - return (my_array, my_sparse) - - -def test_object_exists(): - my_array, my_sparse = set_up() - assert isinstance(my_sparse, SparseArray) - -def test_get_non_zero_number(): - my_array, my_sparse = set_up() - assert my_sparse[4] == 3 - -def test_get_zero(): - my_array, my_sparse = set_up() - assert my_sparse[1] == 0 - -def test_get_element_not_in_array(): - my_array, my_sparse = set_up() - with pytest.raises(IndexError): - my_sparse[14] - -def test_get_lenght(): - my_array, my_sparse = set_up() - assert len(my_sparse) == 14 - -def test_change_number_in_array(): - my_array, my_sparse = set_up() - my_sparse[0] = 3 - assert my_sparse[0] == 3 - # make sure others aren't changed - assert my_sparse[1] == 0 - # make sure still same length - assert len(my_sparse) == 14 - -def test_change_number_in_array_to_zero(): - my_array, my_sparse = set_up() - my_sparse[4] = 0 - assert my_sparse[4] == 0 - # make sure still same length - assert len(my_sparse) == 14 - -def test_change_number_in_array_from_zero(): - my_array, my_sparse = set_up() - my_sparse[1] = 4 - assert my_sparse[1] == 4 - # make sure still same length - assert len(my_sparse) == 14 - -def test_delete_number(): - my_array, my_sparse = set_up() - del(my_sparse[4]) - # if we delete the 4 position, should now be zero - assert my_sparse[4] == 0 - # should have smaller length - assert len(my_sparse) == 13 - - -def test_delete_zero(): - my_array, my_sparse = set_up() - del(my_sparse[5]) - # should still be zero, but should have shorter length - assert my_sparse[5] == 0 - assert len(my_sparse) == 13 - -def test_delete_last_number(): - my_array, my_sparse = set_up() - del(my_sparse[13]) - # should get an error? - print 'print some stuff damnit' - with pytest.raises(IndexError): - my_sparse[13] - assert len(my_sparse) == 13 - - - - diff --git a/Students/A.Kramer/session09/The Absolute Minimum Every About Unicode and Character Sets.pdf b/Students/A.Kramer/session09/The Absolute Minimum Every About Unicode and Character Sets.pdf deleted file mode 100644 index 8e24354b..00000000 Binary files a/Students/A.Kramer/session09/The Absolute Minimum Every About Unicode and Character Sets.pdf and /dev/null differ diff --git a/Students/ASimmons/Session02/Session2_notes.txt b/Students/ASimmons/Session02/Session2_notes.txt deleted file mode 100644 index 18d943d1..00000000 --- a/Students/ASimmons/Session02/Session2_notes.txt +++ /dev/null @@ -1,52 +0,0 @@ -Git Primer - -What is a graph? - ->>A 'graph' - in the world of computer science, ->>a state/place connected by paths. - -What is an example of recurssive function? - ->> - -- ex using factorials - -def factorial(x): - if x == 1: - return 1 - else: - return x * factorial(x-1) - ->>factorial(5) ->>120 - -In math, the factorial of an integer is the -result of multiplying that integer by every -integer smaller than it down to 1. - -5! == 5 * 4 * 3 * 2 * 1 - - -What is a module? - ->> basically anything that ends in ->> .py counts as a module - - -What is a package? - ->>IN ORDER For it to be a python package....needs ->>an __init__.py - -What is the HMK? - ->> 1. Create a module called ack.py. ->> put it in a session02 folder in your student ->> folder. Write a function for the Ackerman ->> function - ->> 2. Fibronaci & Lucas functions ->> and one that can do either - - - diff --git a/Students/ASimmons/Session02/ack.py b/Students/ASimmons/Session02/ack.py deleted file mode 100644 index f52caa20..00000000 --- a/Students/ASimmons/Session02/ack.py +++ /dev/null @@ -1,36 +0,0 @@ -__author__ = 'Ari' - - -class ackerman: - def ack(m,n): - """Return a non-negative integer based on the Ackerman function - - Definition of Ackerman: http://en.wikipedia.org/wiki/Ackermann_function - - m, n: non-negative integers""" - - # validate that m is NOT a negative number - if m < 0: - return None - - # validate that n is NOT a negative number - if n < 0: - return None - - if m == 0: - return n+1 - - if m > 0 and n == 0: - return ack(m-1,1) - - return ack(m-1, ack(m, n-1)) - -def main(): - - input_m = int(sys.argv[1]) - input_n = int(sys.argv[2]) - - ackerman.ack(input_m, input_n) - -if __name__ == "__main__": - main() \ No newline at end of file diff --git a/Students/ASimmons/Session02/series.py b/Students/ASimmons/Session02/series.py deleted file mode 100644 index 87427693..00000000 --- a/Students/ASimmons/Session02/series.py +++ /dev/null @@ -1,38 +0,0 @@ -__author__ = 'Ari' - -def fibonacci(n): - """Return the nth value based on the Fibonacci sequence. - For the purpose of this assignment I decided to start the - sequence at 0""" - current_num = 0 - prev_num = 1 - # first two values have already been set, thus n-2 - for i in range(0, n-2): - temp = current_num - current_num = prev_num - prev_num= temp + prev_num - return prev_num - -def lucas(n): - """Return the nth value based on the Lucas sequence""" - current_num = 2 - prev_num = 1 - # first two values have already been set, thus n-2 - for i in range(0, n-2): - temp = current_num - current_num = prev_num - prev_num = temp + prev_num - return prev_num - -def sum_series(n, current_num=0, prev_num=1): - """Return the nth value of either the Fibonacci sequence (default) or the Lucas sequence.""" - # CURRENTLY this function doesn't work...returns nothing - # I am not sure why, but my initial if statement - # also is throwing syntax errors (when I inspect it - # with the IDE - if current_num=0 and prev_num=1: - fibonacci(n) - else: - lucas(n) - - diff --git a/Students/ASimmons/Session02/test_ack.py b/Students/ASimmons/Session02/test_ack.py deleted file mode 100644 index 8894d32c..00000000 --- a/Students/ASimmons/Session02/test_ack.py +++ /dev/null @@ -1,55 +0,0 @@ -__author__ = 'Ari' - -from ack import ackerman -import unittest - -# Note to Chris: So, I was experimenting with classes -# and I've had this problem in the past where I try to run -# test_somefunction and I get "You have 3 arguments, only need 2" -# I'd really like to understand why this is (I can surmise it -# is about the 'self'). Also what is 'unittest.TestCase'?? - -class test_ackerman(unittest.TestCase): - - def test_ack(self): - # coordinates 0,0 - test_func = ackerman() - m = 0 - n = 0 - result = test_func.ack(m,n) - assert_equal(result,1) - - def test_ack(self): - # coordinates 0,1 - test_func = ackerman() - result = test_func.ack(0,1) - assert_equal(result, 2) - - def test_ack(self): - # coordinates 1,2 - test_func = ackerman() - result = test_func.ack(1,2) - assert_equal(result, 4) - - def test_ack(self): - # coordinates 2,2 - test_func = ackerman() - result = test_func.ack(2,2) - assert_equal(result,7) - - def test_ack(self): - # coordinates 2,3 - test_func = ackerman() - result = test_func.ack(2,3) - assert_equal(result,9) - - def test_ack(self): - # coordinates 1,4 - test_func = ackerman() - result = test_func.ack(1,4) - assert_equal(result, 6) - - - - - diff --git a/Students/ASimmons/Session03/Session3_notes.txt b/Students/ASimmons/Session03/Session3_notes.txt deleted file mode 100644 index cf9cb96f..00000000 --- a/Students/ASimmons/Session03/Session3_notes.txt +++ /dev/null @@ -1,39 +0,0 @@ -What are the conventions of collections? - ->> Lists are Collections (homogeneous) - -How to know what to use: - ->> Same operation to each element? -> Use a list - ->> Small collection of values which make a single logical input? -> tuple - -raw_input: - ->> With raw_input() you always get a string back ->> if you want the input to come back as an integer use: ->> inp = raw_input("something") ->> int(inp) - -Loops Control: - ->> Break (just stop!) ->> and Continue - -for i in range(101): - print i - if i > 50: - - break - - if i > 89 - - # continure keyword will skip later statements in the loop block - # but allow iteration to continue - - continue - ->>Note: For loops can also take an optional else block ->> Executed only when the loop exits normally (not via break) \ No newline at end of file diff --git a/Students/ASimmons/Session03/list_lab.py b/Students/ASimmons/Session03/list_lab.py deleted file mode 100644 index a36cd2c3..00000000 --- a/Students/ASimmons/Session03/list_lab.py +++ /dev/null @@ -1,61 +0,0 @@ -__author__ = 'Ari' - -import re - -fruit = ['Apples', 'Pears', 'Oranges', 'Peaches'] - -print fruit - -while True: - new_fruit = raw_input("Enter a fruit: ") - - fruit.append(str(new_fruit)) - - print fruit - - new_fruit = len(fruit) - - for (i,item) in enumerate(fruit, start=1): - print(str(i) + ": " + str(item)) - - gimme_a_number = int(raw_input("Gimme a number (as an integer) that is < or = to " + str(new_fruit) + " : ")) - - if gimme_a_number > new_fruit: - print "Your number is greater then the length of the list" - else: - print (str(gimme_a_number) + " : " + str(fruit[gimme_a_number - 1])) - - front_of_line_fruit = raw_input("Enter another fruit to add to front of the line: ") - - fruit.insert(0,front_of_line_fruit) - - print fruit - - another_front_of_line_fruit = raw_input("Enter YET ANOTHER fruit to add to front of the line: ") - - fruit.insert(0,another_front_of_line_fruit) - - print fruit - -##Problems finding p: - - pattern = re.compile("p\w+", re.IGNORECASE) - - - - sub_list = filter(pattern.match, fruit) - - - print "These items start with a P : " + str(sub_list) - - - - ## Tests against the list created by the above steps - - -## Delete an item from beginning of list - - del fruit[0] - - print fruit - diff --git a/Students/ASimmons/Session03/mailroom.py b/Students/ASimmons/Session03/mailroom.py deleted file mode 100644 index 8a612b6f..00000000 --- a/Students/ASimmons/Session03/mailroom.py +++ /dev/null @@ -1,127 +0,0 @@ -__author__ = 'Ari' - -#!/usr/bin/env python -from textwrap import dedent -import math - -# In memory representation of the donor database -# using a tuple for each donor -# -- kind of like a record in a database table -donor_db = [] -donor_db.append( ("William Gates, III", [653772.32, 12.17]) ) -donor_db.append( ("Jeff Bezos", [877.33]) ) -donor_db.append( ("Paul Allen", [663.23, 43.87, 1.32]) ) -donor_db.append( ("Mark Zuckerberg", [1663.23, 4300.87, 10432.0]) ) - -def print_donors(): - print "Donor list:\n" - for donor in donor_db: - print donor[0] - -def find_donor(name): - """ - find a donor in the donor db - :param: the name of the donor - :returns: The donor data structure -- None if not in the donor_db - """ - for donor in donor_db: - # do an non-capitalized compare - if name.strip().lower() == donor[0].lower(): - return donor - return None - -def main_menu_selection(): - """ - Print out the main application menu and then read the user input. - """ - input = raw_input(dedent(''' - Choose an action: - 1 - Send a Thank You - 2 - Create a Report - 3 - Quit - > ''')) - return input.strip() - -def gen_letter(donor): - """ - Generate a thank you letter for the donor - :param: donor tuple - :returns: string with letter - """ - return dedent(''' - Dear %s - Thank you for your very kind donation of %.2f. - It will be put to very good use. - Sincerely, - -The Team - ''' % (donor[0], donor[1][-1]) ) - -def send_thank_you(): - """ - Execute the logic to record a donation and generate a thank you message. - """ - # Read a valid donor to send a thank you from, handling special commands to - # let the user navigate as defined. - while True: - name = raw_input("Enter a donor's name (or list to see all donors or 'menu' to exit)> ").strip() - if name == "list": - print_donors() - elif name == "menu": - return - else: - break - # Now prompt the user for a donation amount to apply. Since this is also an exit - # point to the main menu, we want to make sure this is done before mutating the db - # list object. - while True: - amount_str = raw_input("Enter a donation amount (or 'menu' to exit)> ").strip() - if amount_str == "menu": - return - # Make sure amount is a valid amount before leaving the input loop - amount = float(amount_str) - if math.isnan(amount) or math.isinf(amount) or round(amount, 2) == 0.00: - print "error: donation amount is invalid\n" - else: - break - # If this is a new user, ensure that the database has the necessary data structure. - donor = find_donor(name) - if donor is None: - donor = (name, []) - donor_db.append( donor ) - # Record the donation - donor[1].append(amount) - print gen_letter(donor) - -def sort_key(item): - return item[1] - -def print_donor_report(): - """ - Generate the report of the donors and amounts donated. - """ - # First, reduce the raw data into a summary list view - report_rows = [] - for (name, gifts) in donor_db: - total_gifts = sum(gifts) - num_gifts = len(gifts) - avg_gift = total_gifts / num_gifts - report_rows.append( (name, total_gifts, num_gifts, avg_gift) ) - #sort the report data - report_rows.sort(key=sort_key) - print "%25s | %11s | %9s | %12s"%("Donor Name","Total Given","Num Gifts","Average Gift") - print "-"*66 - for row in report_rows: - print "%25s %11.2f %9i %12.2f"%row - -if __name__ == "__main__": - running = True - while running: - selection = main_menu_selection() - if selection is "1": - send_thank_you() - elif selection is "2": - print_donor_report() - elif selection is "3": - running = False - else: - print "error: menu selection is invalid!" \ No newline at end of file diff --git a/Students/ASimmons/Session03/rot13.py b/Students/ASimmons/Session03/rot13.py deleted file mode 100644 index 896228cb..00000000 --- a/Students/ASimmons/Session03/rot13.py +++ /dev/null @@ -1,29 +0,0 @@ -__author__ = 'Ari' - -import codecs -import sys -import unittest - -def rot13(s): - """Return a letter with a letter 13 letters after it in the alphabet. - EX: A = N - Uses the codecs module: https://docs.python.org/2/library/codecs.html#codec-base-classes""" - return s.encode('rot_13') - -def main(input_data): - print rot13(input_data) - - -if __name__ == "__main__": - if len(sys.argv) == 2: - main(sys.argv[1]) - - m = "Zntargvp sebz bhgfvqr arne pbeare" - n = "Magnetic from outside near corner" - assert rot13(m)==n - - else: - print 'To use: rot13.py [some string]' - sys.exit(1) - - diff --git a/Students/ASimmons/Session03/string_format.py b/Students/ASimmons/Session03/string_format.py deleted file mode 100644 index 452562e5..00000000 --- a/Students/ASimmons/Session03/string_format.py +++ /dev/null @@ -1,20 +0,0 @@ -__author__ = 'Ari' - -# "Rewrite the first 3 numbers are: %i, %i, &i"%(1,2,3) -# Want to be able to pass in a sequence of any length -# and display - -# to test: - - -# # idea: use a list, pass it as a tuple (item,) - -def print_my_tuple(nums): - print "the first %d numbers are: %s " % (len(nums), nums,) - - -## OR use a string - -def print_my_string(nums): - s = str(nums).strip("()") - print "the first %d numbers are: %s " % (len(nums), s) \ No newline at end of file diff --git a/Students/ASimmons/Session05/chris_likes_cake.py b/Students/ASimmons/Session05/chris_likes_cake.py deleted file mode 100644 index f05c0d64..00000000 --- a/Students/ASimmons/Session05/chris_likes_cake.py +++ /dev/null @@ -1,71 +0,0 @@ -__author__ = 'asimmons' - -# dictionary items -food_prefs = {"name": u"Chris", - u"city": u"Seattle", - u"cake": u"chocolate", - u"fruit": u"mango", - u"salad": u"greek", - u"pasta": u"lasagna"} - -# 1. Print the dict by passing it to a string format method - -print("%(name)s is from %(city)s, and he likes %(cake)s cake, %(fruit)s fruit, %(salad)s salad, and %(pasta)s pasta!" % food_prefs) - -## 2. Using a list comprehension, build a dictionary of numbers -## from zero to fifteen and the hexadecimal equivalent (string is fine). - -# Displays the given dictionary -def iterateDict(a_dict): - for key, value in a_dict.iteritems(): - print("{key} : {value}").format(key=key, value=value) - -hexinums = [hex(x) for x in range(16)] # use 16 because it starts from 0 -numsdic = dict(zip(range(16), hexinums)) -print iterateDict(numsdic) - -# 3. Do the same thing using dict comprehension - -newdict = {i: hex(i) for i in range(16)} -iterateDict(newdict) - -# 4. Using the dictionary from item 1: Make a dictionary using the same keys -# but with the number of a's in each value. -# Do this either by editing the dict in place, or making a new one. -# If you edit in place, make a copy first! - -counta = {key: value.count('a') for key, value in food_prefs.iteritems()} - -iterateDict(counta) - -# 5a. Create sets s2, s3 and s4 that contain numbers from zero through twenty, divisible 2, 3 and 4. - -s2 = set() - -for i in range(21): - if i % 2 == 0: - s2.add(i) -print s2 - -s3 = set() - -for i in range(21): - if i % 3 == 0: - s3.add(i) -print s3 - -s4 = set() - -for i in range(21): - if i % 4 == 0: - s4.add(i) -print s4 - -#5b. make a sequence that holds all three sets, loop through the sequence - -listofsets = [{sets for sets in range(21) if sets % (x+2) == 0} for x in range(3)] - -print listofsets - - - diff --git a/Students/ASimmons/Session05/count_evn.py b/Students/ASimmons/Session05/count_evn.py deleted file mode 100644 index 2f33b333..00000000 --- a/Students/ASimmons/Session05/count_evn.py +++ /dev/null @@ -1,8 +0,0 @@ -__author__ = 'asimmons' - -#Using a list comprehension, return the number of even ints in the given array. - -def count_evens(nums): - #one_line_comprehension_here - even = len([n for n in nums if n % 2 == 0]) - return even \ No newline at end of file diff --git a/Students/ASimmons/Session05/list_comprehension.py b/Students/ASimmons/Session05/list_comprehension.py deleted file mode 100644 index 530a3a61..00000000 --- a/Students/ASimmons/Session05/list_comprehension.py +++ /dev/null @@ -1,55 +0,0 @@ -__author__ = 'asimmons' - -feast = ['lambs', 'sloths', 'orangutans', 'breakfast cereals', 'fruit bats'] -comprehension = [delicacy.capitalize() for delicacy in feast] - -# >>> comprehension[0] -#'Lambs' -#>>> comprehension[2] -#'Orangutans' - - -feast2 = ['spam', 'sloths', 'orangutans', 'breakfast cereals', 'fruit bats'] -comprehension2 = [delicacy for delicacy in feast if len(delicacy) > 6] - -# >>> print comprehension2 -# >>> ['orangutans', 'breakfast cereals', 'fruit bats'] - -#>>> len(feast2) -#5 -#>>> len(comprehension2) -#3 - -list_of_tuples = [(1, 'lumberjack'), (2, 'inquisition'), (4, 'spam')] -comprehension3 = [ skit * number for number, skit in list_of_tuples ] - -#>>> comprehension3[0] -#'lumberjack' -#>>> len(comprehension[2]) -#10 - -list_of_eggs = ['poached egg', 'fried egg'] -list_of_meats = ['lite spam', 'ham spam', 'fried spam'] -comprehension4 = [ '{0} and {1}'.format(egg, meat) for egg in list_of_eggs for meat in list_of_meats] - -#>>> len(comprehension4) -#6 -#>>> comprehension4[0] -#'poached egg and lite spam' - -comprehension5 = { x for x in 'aabbbcccc'} -#>>> set(['a', 'c', 'b']) - -dict_of_weapons = {'first': 'fear', 'second': 'surprise', 'third':'ruthless efficiency', 'forth':'fanatical devotion', 'fifth': None} -dict_comprehension = \ -{ k.upper(): weapon for k, weapon in dict_of_weapons.iteritems() if weapon} - -#>>> 'first' in dict_comprehension -#False -#>>> 'FIRST' in dict_comprehension -#True - -#>>> len(dict_of_weapons) -#5 -#>>> len(dict_comprehension) -#4 \ No newline at end of file diff --git a/Students/ASimmons/Session06/html_render.py b/Students/ASimmons/Session06/html_render.py deleted file mode 100644 index 8834466b..00000000 --- a/Students/ASimmons/Session06/html_render.py +++ /dev/null @@ -1,128 +0,0 @@ -__author__ = 'Ari' - -# STEP 1: -# - - -# Step 3: -# - create a head element - - -# Step 4: -# - create a class to accept a set of attributes -# remember "**kwargs" -- - -# Step 5: -# - create a SelfClosingTag - - - -class Element(object): - # 4 spaces = indent, - # these are called class attributes - indent = ' ' - - ## chris used **attributes instead of **kwargs - def __init__(self, content=None, **kwargs): - # we have a dictionary of keys - self.attributes = kwargs - self.content = [] - if content is not None: - self.content.append(content) - - def append(self, content): - self.content.append(content) - - def render_tag(self, current_ind): - # because there is some code duplication in OneLineTag and def render - # we wrote this to deal with the tag formatting - attrs = "".join([' {}="{}"'.format(k, v) for k, v in self.attributes.items()]) - tag_str = "{}<{}{}>".format(current_ind, self.tag,attrs) - return tag_str - - - def render(self, file_out, current_ind=""): - """ - render, just renders itself - """ - # from kwargs...need to format a dictionary of items, replaced with render_tag - #attrs = "".join([' {}="{}"'.format(k, v) for k, v in self.kwargs.items()]) - - # file_out -- File name in which to output render - - # a file_out has a write method - # carriage return is necessary - # so you could have file_out.write("\n")... - # but once you start using the class Html.. - # this isn't going to work so well (so '.format' to the rescue) - - file_out.write(self.render_tag(current_ind)) - # adding the carriage return since we took it out of render_tag - file_out.write('\n') - # append content in a list as entered - # print self.content - for con in self.content: - #print "trying to render",con - try: - file_out.write(current_ind+ self.indent + con+"\n") - except TypeError: - # in order to have indent = ""...we are modifying the - # embedded element to add an indent - # by - con.render(file_out, current_ind+self.indent) - file_out.write("{}\n".format(current_ind,self.tag)) - - - -class OneLineTag(Element): - def render(self, file_out, current_ind=""): - file_out.write(self.render_tag(current_ind)) - for con in self.content: - file_out.write(con) - file_out.write("\n".format(self.tag)) - -class Title(OneLineTag): - tag = 'hr' - -class SelfClosingTag(Element): - def render(self, file_out, current_ind=""): - # a little array slicing notation - file_out.write(self.render_tag(current_ind)[:-1]) - file_out.write(" />\n") - -class Hr(SelfClosingTag): - tag = 'hr' - - -class A(OneLineTag): - tag ='a' - # it is content, and not self.content because you - # haven't assigned it - def __init__(self, link, content, **kwargs): - OneLineTag.__init__(self, content=None, **kwargs) - self.attributes["href"] = link - -class H(OneLineTag): - def __init__(self, level, content=None, **kwargs): - OneLineTag.__init__(self, content, **kwargs) - self.tag = "h%i"%(level) - -class U1(Element): - tag = "u1" - -class Li(Element): - tag='li' - -class Html(Element): - tag = 'html' - def render(self, file_out, current_ind=""): - file_out.write("\n") - Element.render(self, file_out, current_ind=current_ind) - -class Body(Element): - tag = 'body' - -class P(Element): - tag = 'p' - -class Head(Element): - tag = 'head' diff --git a/Students/ASimmons/Session06/run_html_render.py b/Students/ASimmons/Session06/run_html_render.py deleted file mode 100644 index 4af95b78..00000000 --- a/Students/ASimmons/Session06/run_html_render.py +++ /dev/null @@ -1,62 +0,0 @@ -__author__ = 'Ari' - -from cStringIO import StringIO - -import html_render as hr - -reload(hr) # for ipython - -## writing file out - - -def render_page(page, filename): - """ - render the tree of elements - """ - - f = StringIO() - page.render(f, " ") - - f.reset() - - print f.read() - - f.reset() - open(filename, 'w').write(f.read()) - - -page = hr.Html() - -head = hr.Head() - -#head.append(hr.Meta(charset="UTF-8")) -head.append(hr.Title("some stuff ex")) - -page.append(head) - -body = hr.Body() - -body.append(hr.H(2, "Python Class - Hmwk 6 ex")) - -body.append(hr.P("Here is a paragraph - keep reading!!", - style="text-align: center, font-style: oblique;")) - -body.append(hr.Hr()) - -list = hr.U1(id="TheList", style="line-height:200%") - -list.append(hr.Li("the first item")) -list.append(hr.Li("the second item", style="color: red")) - -item = hr.Li() -item.append("And this is a ") -item.append(hr.A("http://google.com/", "link")) -item.append("to google") - -list.append(item) - -body.append(list) - -page.append(body) - -render_page(page, "test_html_outpt.html") \ No newline at end of file diff --git a/Students/ASimmons/Session06/test_html_outpt.html b/Students/ASimmons/Session06/test_html_outpt.html deleted file mode 100644 index 57a14326..00000000 --- a/Students/ASimmons/Session06/test_html_outpt.html +++ /dev/null @@ -1,26 +0,0 @@ - - - -
some stuff ex - - -

Python Class - Hmwk 6 ex

-

- Here is a paragraph - keep reading!! -

-
- -
  • - the first item -
  • -
  • - the second item -
  • -
  • - And this is a - - to google -
  • -
    - - diff --git a/Students/ASimmons/Session07/Session7_notes.txt b/Students/ASimmons/Session07/Session7_notes.txt deleted file mode 100644 index 2b858173..00000000 --- a/Students/ASimmons/Session07/Session7_notes.txt +++ /dev/null @@ -1,104 +0,0 @@ -Python Session 7 - - -## Mixin's - -Mixins are a sort of class that is used to -"mix in" extra properties and methods into a class. - -## New-Style Classes - -super(): use it to call a superclass method, rather than explicitly calling the unbound -method on the superclass. - -Way to call a method on class - -ex: - -instead of: - -class A(B): - def __init__ (self, *args, **kwargs) - B.__init__(self, *args, **kwargs) - -you can: - -class A(B): - def init - super (A, self).__init(*args, **kwargs) - -Properties: - - -- Something that looks to the outside user as an attribute, -but internally it is something - -"_x" : private attribute, external users not suppose to be using it - -class C(object) - -- What is up with the "@" symbols? -- Special syntax for wrapping a function with a function -- Those are decorators, it's a syntax for wrapping functions up with -- something special. - -ex: - -@property - -def x(self): -# means make a property called x with a getter - -- NOTE: when you define a property you should define a getter -- You DO NOT need to define a setter. If you don't you -- get a read-only attribute - - -EXAMPLE CODE FORE PROPERTY - -""" -Example code for properties - -""" - -class C(object): - _x = None - @property - def x(self): - return self._x # returns c - @x.setter - def x(self, value): - self._x = value - @x.deleter - def x(self): - del self._x - -if __name__ == "__main__": - c = C() - c.x = 5 - print c.x - -## Static Methods - -A static method is a method that doesn't get self: - -class StaticAdder(object): - @staticmethod - def add(a,b); - return a + b - ->> StaticAdder.add(3,6) - -Note: when you run "type()" and get 'type'...it is basically saying it is a class - -Note: For circle assignment use **2 = ^2 - -## Protocols - -The set of special methods needed to emulate a particular type -of Python object is called a protocol - -Your classes can "become" like a pre-existing python module - - - diff --git a/Students/ASimmons/Session07/circle.py b/Students/ASimmons/Session07/circle.py deleted file mode 100644 index 19fa75e8..00000000 --- a/Students/ASimmons/Session07/circle.py +++ /dev/null @@ -1,83 +0,0 @@ -__author__ = 'Ari' - - -## ALWAYS INHERIT FROM OBJECT - -## radius is a REQUIRED parameter - -## the resulting circle should have an attribute - -## since we don't want to have radius -## and diameter be two seperate things -## we are doing to 'get' the diameter -## from the radius (a getter) - -## create an alternate constructor -## so that you can define the Circle -## using a diameter - -## add __str__ and __repr__ methods to your circle class - -import math -import functools - -@functools.total_ordering -class Circle(object): - def __init__(self, radius): - self.radius = int(radius) - - # alternate constructor - need a class method - @classmethod - def from_diameter(cls, diameter): - # how to create an instance of the cicle class - # use the cls - which is the class object Circle() itself - return cls(diameter/2.0) - - @property - def diameter(self): - return self.radius * 2.0 - - @diameter.setter - def diameter(self, value): - return self.radius == value / 2.0 - - @property - def area(self): - return self.radius**2 * math.pi - - def __repr__(self): - return "Circle(%s)"%self.radius - - def __str__(self): - return "Circle with radius: %4f"%self.radius - - def __add__(self, other): - return Circle(self.radius + other.radius) - - def __iadd__(self, other): - """ - can be used for 'in place' addition - - """ - self.radius += other.radius - return self - - def __mul__(self, factor): - return Circle(self.radius * factor) - - def __imul__(self, factor): - self.radius *= factor - return self - - def __rmul__(self, factor): - return Circle(self.radius * factor) - - def __eq__(self, other): - return self.radius == other.radius - - def __gt__(self, other): - return self.radius > other.radius - -class SubCircle(Circle): - pass - diff --git a/Students/ASimmons/Session07/properties_example.py b/Students/ASimmons/Session07/properties_example.py deleted file mode 100644 index 66dcad59..00000000 --- a/Students/ASimmons/Session07/properties_example.py +++ /dev/null @@ -1,24 +0,0 @@ -__author__ = 'Ari' - - -""" -Example code for properties - -""" - -class C(object): - _x = None - @property - def x(self): - return self._x # returns c - @x.setter - def x(self, value): - self._x = value - @x.deleter - def x(self): - del self._x - -if __name__ == "__main__": - c = C() - c.x = 5 - print c.x \ No newline at end of file diff --git a/Students/ASimmons/Session07/test_circle.py b/Students/ASimmons/Session07/test_circle.py deleted file mode 100644 index 9d0f0f0c..00000000 --- a/Students/ASimmons/Session07/test_circle.py +++ /dev/null @@ -1,30 +0,0 @@ -__author__ = 'Ari' - -# first step in test, import! - -from circle import Circle -import pytest -import math - -def test_init(): - """ - this will fail if there is no initializer (self) - and the class Circle(object): - """ - Circle(3) - -def test_no_radius(): - with pytest.raises(TypeError): - c = Circle() - -def test_set_radius(): - c = Circle(3) - c.radius = 5 - assert c.radius == 5 - -def test_set_area(): - c = Circle(2) - with pytest.raises(AttributeError): - c.area = 30 - - diff --git a/Students/ASimmons/code_class_project/README.md b/Students/ASimmons/code_class_project/README.md deleted file mode 100644 index 810c205e..00000000 --- a/Students/ASimmons/code_class_project/README.md +++ /dev/null @@ -1,64 +0,0 @@ - - - - - -# Table of Contents -[Team Members](#team-members) - -[Project Summary](#project-summary) - -# Team Members -* "Arielle Simmons" - - Data Engineer - -# Project Summary - -Using the following Python packages: - - 1) Fiona (1.4+) [1] - 2) Shapely (1.3+) [2] - -Final Project (12/12/14) Update: I followed the steps outlined in M. Bostock's "How To Infer Topology" [3] -to design a 'PreserveTopology' module that will identify topological elements in a LineString and/or -MultiLineString shapefile. Combined with two other classes (written by me awhile ago) called GeomSimplify() -and TriangleCalculator(), a user can call my simplify_topology.py library from command line and -create a simplified version of any LineString or MultiLineString shapefile. - -The primary work that I completed includes: - - 1) identify junctions (intersection points) in LineString/MultiLineString shapefiles - 2) split geometric 'arcs' at their junction points (note: I decided for MultilineStrings and Linestrings - the need to de-duplicate geometric 'arcs' was unnecessary. However, it will have to be done - in order to complete the code for Polygon and MultiPolygon shape types). - 3) complete 10 unittests which tested the functionality of the PreserveTopology() class. - - -Key points to note: - - - All the code within the GeomSimplify() and TriangleCalculator() classes was undertaken - in a previous code I wrote here: [4] and should NOT be counted as part of my class project. - - All functions that were drafted as part of this class project have test functions. Test - functions for code that WASN'T part of the project (i.e. the GeomSimplify() and TriangleCalculator() - class is included at this repo [4]. - - to run from command line: python simplify_topology.py Topology= or - - the 'sample_lines.shp' included is a test file. When ran through this code with the Topology - flag set to 'True' it created 'sample_lines_TopoTrue': - - python .\simplify_topology.py .\sample_lines.shp .\sample_lines_TopoTRUE 10000000 True - - When ran with this code with the flag set to 'False' it created 'sample_lines_TopoFALSE': - - Python .\simplify_topology.py .\sample_lines.shp .\sample_lines_TopoTRUE 10000000 False - -References: - - 1: https://pypi.python.org/pypi/Fiona - 2: https://pypi.python.org/pypi/Shapely - 3: http://bost.ocks.org/mike/topology/ - 4: https://github.com/ARSimmons/Shapely_Fiona_Visvalingam_Simplify - -*NOTE: THIS PROJECT IS turned in for code review on 12/12/2014* - - - \ No newline at end of file diff --git a/Students/ASimmons/code_class_project/simplify_topology.py b/Students/ASimmons/code_class_project/simplify_topology.py deleted file mode 100644 index 1ddc5962..00000000 --- a/Students/ASimmons/code_class_project/simplify_topology.py +++ /dev/null @@ -1,453 +0,0 @@ -__author__ = 'asimmons' - - -import fiona -from shapely.geometry import shape, mapping, LineString, Polygon, MultiLineString, MultiPolygon -import heapq -import sys - -# Note: to change the quantitization from the default, you will have to do it before running process file - -# Linestring test: -# g = PreserveTopology();g.process_file(r'I:\It_23\simplify\test_lines_simplify_topology\sample_lines.shp',r'I:\It_23\simplify\test_lines_simplify_topology\simplified_sample.shp', 1000000, True) - -# Multilinestring test: -# g = PreserveTopology();g.process_file(r'I:\It_23\simplify\test_multi\four_lines_dis.shp', r'I:\It_23\simplify\test_multi\four_lines_test_simp.shp', 1000000, True) - - -class TriangleCalculator(object): - """ - TriangleCalculator() - Calculates the area of a triangle using the cross-product. - - """ - def __init__(self, point, index): - # Save instance variables - self.point = point - self.ringIndex = index - self.prevTriangle = None - self.nextTriangle = None - - # enables the instantiation of 'TriangleCalculator' to be compared - # by the calcArea(). - def __cmp__(self, other): - return cmp(self.calcArea(), other.calcArea()) - - ## calculate the effective area of a triangle given - ## its vertices -- using the cross product - def calcArea(self): - # Add validation - if not self.prevTriangle or not self.nextTriangle: - print "ERROR:" - - p1 = self.point - p2 = self.prevTriangle.point - p3 = self.nextTriangle.point - area = abs(p1[0] * (p2[1] - p3[1]) + p2[0] * (p3[1] - p1[1]) + p3[0] * (p1[1] - p2[1])) / 2.0 - #print "area = " + str(area) + ", point = " + str(self.point) - return area - - -class PreserveTopology(object): - - quantitizationFactor = (10000,10000) - - def set_quantitization_factor(self, quantValue): - self.quantitizationFactor = (quantValue, quantValue) - - def process_file(self, inFile, outFile, threshold, Topology = False): - """ - Takes an 'inFile' of an ESRI shapefile, converts it into a Shapely geometry - simplifies. - Returns an 'outFile' of a simplified ESRI shapefile. - - IF Topology = True - The object to be simplified is cut into junctions. - - IF Topology = False - The object is simplified as is. - - Note: - - A point is considered a junction if it shares the same point - with another shape AND has different neighbors. - - - Identical features on top of one another DO NOT have different - neighbors, and therefor DO NOT have any junctions. - - """ - # declare dictJunctions as a global variable - # key = quantitized junction points, value = 1 - dictJunctions = {} - - # create an instance of GeomSimplify() - - simplify = GeomSimplify() - - # Open input file - # loop over each - with fiona.open(inFile, 'r') as input: - - meta = input.meta - - # create dictionary of all junctions in all shapes - self.find_all_junctions(inFile, dictJunctions) - - # create an outFile has the same crs, schema as inFile - with fiona.open(outFile, 'w', **meta) as output: - # Read shapely geometries from file - # Loop through all shapely objects - for myGeom in input: - - myShape = shape(myGeom['geometry']) - - if isinstance(myShape, LineString): - if Topology is True: - simplifiedShapes = [] - lineList = self.cut_line_by_junctions(myShape, dictJunctions) - for line in lineList: - simplifiedShapes.append(simplify.simplify_line(line, threshold)) - else: - line = myShape - simplifiedShapes = [simplify.simplify_line(line, threshold)] - - elif isinstance(myShape, MultiLineString): - if Topology is True: - simplifiedShapes =[] - # mlineArray array of MultiLineString - mlineArray = self.cut_mline_by_junctions(myShape, dictJunctions) - #mline = MultiLineString shapely obj - for mline in mlineArray: - simplifiedShapes.append(simplify.simplify_multiline(mline, threshold)) - else: - mline = myShape - simplifiedShapes = [simplify.simplify_multiline(mline, threshold)] - else: - raise ValueError('Unhandled geometry type: ' + repr(myShape.type)) - - - # write to outfile - for simpleShape in simplifiedShapes: - if simpleShape is not None: - output.write({'geometry':mapping(simpleShape), 'properties': myGeom['properties']}) - - def quantitize(self, point): - # the default quantization factor is 10,000 (-q 1e4) - # Divide by quantitiztion factor, round(int), multiply by quantitization factor - x_quantitized = int(round(point[0]/self.quantitizationFactor[0]) * self.quantitizationFactor[0]) - y_quantitized = int(round(point[1]/self.quantitizationFactor[1]) * self.quantitizationFactor[1]) - - return (x_quantitized,y_quantitized) - - def append_junctions(self, dictJunctions, dictNeighbors, pointsList): - - """ - - Builds a global dictionary of all the junctions and neighbors found in a - single geometry within a shapefile. It determines if a point is a junction based on if it shares the same - point AND has different neighbors. - - """ - # updates dictJunctions & dictNeighbors - for index, point in enumerate(pointsList): - quant_point = self.quantitize(point) - quant_neighbors = [] - # append the previous neighbor - if index - 1 > 0: - quant_neighbors.append(self.quantitize(pointsList[index - 1])) - # append the next neighbor - if index + 1 < len(pointsList): - quant_neighbors.append(self.quantitize(pointsList[index + 1])) - - # check if point is in dictNeighbors, if it is - # check if the neighbors are equivalent to what - # is already in there, if not equiv. append to - # dictJunctions - - if quant_point in dictNeighbors: - # check if neighbors are equivalent - if set(dictNeighbors[quant_point]) != set(quant_neighbors): - dictJunctions[quant_point] = 1 - else: - # Otherwise, add to neighbors - dictNeighbors[quant_point] = quant_neighbors - - def find_all_junctions(self, inFile, dictJunctions): - - """ - - Builds a global dictionary of all the junctions and neighbors found in a shapefile. - - """ - - # declare dictNeighbors as a global - # key = checked quantitized points, value = array of quantitized neighbors - dictNeighbors = {} - - # loop over each - - with fiona.open(inFile, 'r') as input: - - # read shapely geometries from file - - for myGeom in input: - - myShape = shape(myGeom['geometry']) - - if isinstance(myShape, LineString): - myShape = self.find_junctions_line(myShape, dictJunctions, dictNeighbors) - - elif isinstance(myShape, MultiLineString): - myShape = self.find_junctions_mline(myShape, dictJunctions, dictNeighbors) - - else: - raise ValueError('Unhandled geometry type: ' + repr(myShape.type)) - - - def find_junctions_line(self, myShape, dictJunctions, dictNeighbors): - - pointsLineList = list(myShape.coords) - - self.append_junctions(dictJunctions, dictNeighbors, pointsLineList) - - - def find_junctions_mline(self, myShape, dictJunctions, dictNeighbors): - - lineList = myShape.geoms - - for line in lineList: - pointsLineList = list(line.coords) - self.append_junctions(dictJunctions, dictNeighbors, pointsLineList) - - - def cut_line_by_junctions(self, myShape, dictJunctions): - - """ - Returns Arcs from LineStrings. - - AN arc is a LineString between two junctions (note: junctions are end/start points & cannot be simplified) - IF a LineString has no found junctions then it is written as is into a list of lists. - - Returns 'arcs', LineString objects. By definiton a linestrings must have at least 2 points. - - arcs = List of list (all of the [arc]'s found in a single line segment) - - arc = a single arc being built from a linestring (arc ends when a junction is found) - - """ - - arcs = [] - - arc = [] - - pointsLineList = list(myShape.coords) - # split lines into arcs by junctions - for point in pointsLineList: - # quantitize the point - # self.quantitize(point) - quant_pt = self.quantitize(point) - # add the point to the 'arc' list till a - # junction point is identified - arc.append(point) - length_of_arc = len(arc) - #print length_of_arc - if quant_pt in dictJunctions and length_of_arc >= 2: - # if the junction is in the - # list add to arcs - arcs.append(arc) - arc = [point] - # make sure you have at least 2 pt for line - # also ensures that if the starting point - # of a line is a junction the line - # cannot be cut there (because it would be an invalid line, < 2 pts) - if len(arc) > 1: - arcs.append(arc) - # create a shapely Linestring object of arcs - arcsLine = [LineString(ar) for ar in arcs] - return arcsLine - - def cut_mline_by_junctions(self, myShape, dictJunctions): - - """ - Returns MultiLineStrings divided as arcs at junction points from MultiLineStrings. - - lineList = shapely geom collection, Multilinestring - """ - - - lineList = myShape.geoms - junctionedLines = [] - multiJunctionedLines = [] - for line in lineList: - # breaks the MultiLine Geom collection into LineStrings - # finds the junctions in the LineStrings and cuts them - # accordingly - junctionedLines.append(self.cut_line_by_junctions(line, dictJunctions)) - for cut_mline in junctionedLines: - # writes the re-junctioned Linestrings back as a MultiLineString - multiJunctionedLines.append(MultiLineString(cut_mline)) - - #multiLineArc = MultiLineString(multiJunctionedLines) - - return multiJunctionedLines - - -class GeomSimplify(object): - - - def simplify_line(self, line, threshold): - """ - - Simplifies LineString objects. Returns a shapely LineString obj. - - Note: unlike rings, we need to keep beginning and end points static throughout the simplification process - - """ - # Build list of Triangles from the line points - triangleArray = [] - ## each triangle contains an index and a point (x,y) - # handle line 'interior' (i.e. the vertices - # between start and end) first -- explicitly - # defined using the below slice notation - # i.e. [1:-1] - for index, point in enumerate(line.coords[1:-1]): - triangleArray.append(TriangleCalculator(point, index)) - - # then create start/end points separate from the triangleArray (meaning - # we cannot have the start/end points included in the heap sort) - startIndex = 0 - endIndex = len(line.coords)-1 - startTriangle = TriangleCalculator(line.coords[startIndex], startIndex) - endTriangle = TriangleCalculator(line.coords[endIndex], endIndex) - - # Hook up triangles with next and prev references (doubly-linked list) - # NOTE: linked list are composed of nodes, which have at - # least one link to another node (and this is a doubly-linked list..pointing at - # both our prevTriangle & our nextTriangle) - # NOTE: in this code block the 'triangle' is our 'triangle node' - - for index, triangle in enumerate(triangleArray): - # set prevIndex to be the adjacent point to index - prevIndex = index - 1 - nextIndex = index + 1 - - if prevIndex >= 0: - triangle.prevTriangle = triangleArray[prevIndex] - else: - triangle.prevTriangle = startTriangle - - if nextIndex < len(triangleArray): - triangle.nextTriangle = triangleArray[nextIndex] - else: - triangle.nextTriangle = endTriangle - - # Build a min-heap from the TriangleCalculator list - # print "heapify" - heapq.heapify(triangleArray) - - - # Simplify steps... - - - # Note: in contrast - # to our function 'simplify_ring' - # we can allow our array to go down to 0 and STILL have a valid line - # because we will still have the start and end points - while len(triangleArray) > 0: - # if the smallest triangle is greater than the threshold, we can stop - # i.e. loop to point where the heap head is >= threshold - if triangleArray[0].calcArea() >= threshold: - #print "break" - break - else: - # print statement for debugging - prints area's and coords of deleted/simplified pts - #print "simplify...triangle area's and their corresponding points that were less then the threshold" - #print "area = " + str(triangleArray[0].calcArea()) + ", point = " + str(triangleArray[0].point) - prev = triangleArray[0].prevTriangle - next = triangleArray[0].nextTriangle - prev.nextTriangle = next - next.prevTriangle = prev - # This has to be done after updating the linked list - # in order for the areas to be correct when the - # heap re-sorts - heapq.heappop(triangleArray) - - - # Create an list of indices from the triangleRing heap - indexList = [] - for triangle in triangleArray: - # add 1 b/c the triangle array's first index is actually the second point - indexList.append(triangle.ringIndex + 1) - # Append start and end points back into the array - indexList.append(startTriangle.ringIndex) - indexList.append(endTriangle.ringIndex) - - # Sort the index list - indexList.sort() - - # Create a new simplified ring - simpleLine = [] - for index in indexList: - simpleLine.append(line.coords[index]) - - # Convert list into LineString - simpleLine = LineString(simpleLine) - - return simpleLine - - def simplify_multiline(self, mline, threshold): - """ - Simplifies MultiLineStrings. Returns a shapely MultiLineString obj. - - """ - # break MultiLineString into lines - lineList = mline.geoms - simpleLineList = [] - - # call simplify_line on each - for line in lineList: - simpleLine = self.simplify_line(line, threshold) - #if not none append to list - if simpleLine: - simpleLineList.append(simpleLine) - - # check that line count > 0, otherwise return None - if not simpleLineList: - return None - - # put back into multilinestring - return MultiLineString(simpleLineList) - -def str2bool(v): - """ - Converts strings (which all command line passed argument are) to booleans. - - """ - return v.lower() in ("yes", "true", "t", "1") - - -def main(): - print "number of arguments (incl. py file name): " + str(len(sys.argv)) - if len(sys.argv) != 5: - print "Wrong amount of arguments!" - usage() - exit() - - geomSimplifyObject = PreserveTopology() - - inputFile = sys.argv[1] - outputFile = sys.argv[2] - threshold = sys.argv[3] - topology = sys.argv[4] - topology_convert = str2bool(topology) - - if topology_convert is False: - geomSimplifyObject.process_file(inputFile, outputFile, float(threshold), topology_convert) - print "Finished simplifying file (with topology NOT preserved)!" - elif topology_convert is True: - geomSimplifyObject.process_file(inputFile, outputFile, float(threshold), topology_convert) - print "Finished simplifying file (topology was preserved)!" - -def usage(): - print "python simplify_topology.py Topology= or " - - -if __name__ == "__main__": - main() diff --git a/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines.dbf b/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines.dbf deleted file mode 100644 index f073f90c..00000000 Binary files a/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines.dbf and /dev/null differ diff --git a/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines.prj b/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines.prj deleted file mode 100644 index 8042941d..00000000 --- a/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines.prj +++ /dev/null @@ -1 +0,0 @@ -PROJCS["WGS_1984_World_Mercator",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Mercator"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",0.0],UNIT["Meter",1.0]] \ No newline at end of file diff --git a/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines.sbn b/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines.sbn deleted file mode 100644 index c43a1279..00000000 Binary files a/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines.sbn and /dev/null differ diff --git a/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines.sbx b/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines.sbx deleted file mode 100644 index 7a027fcc..00000000 Binary files a/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines.sbx and /dev/null differ diff --git a/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines.shp b/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines.shp deleted file mode 100644 index db8087f6..00000000 Binary files a/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines.shp and /dev/null differ diff --git a/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines.shp.xml b/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines.shp.xml deleted file mode 100644 index d96dced7..00000000 --- a/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines.shp.xml +++ /dev/null @@ -1,2 +0,0 @@ - -20140402115520001.0TRUECalculateField oceana_us_admin1_borders class 1 VB #CalculateField oceana_us_admin1_borders class 1 VB #CalculateField oceana_us_admin1_borders class 1 VB #CalculateField oceana_us_admin1_borders ADMIN1_EDI "Edited Admin1 Class 0 to create adjacency to Class 1, ASIMMONS 10/27/2013" VB #CalculateField oceana_us_admin1_borders ADMIN1_EDI "Moved Admin1 Class 0 to create adjacency with Class 1, ASIMMONS 10/26/2013" VB #CalculateField oceana_us_admin1_borders ADMIN1_EDI "Moved Admin1 Class 0 to create adjacency with Class 1, ASIMMONS 10/26/2013" VB #CalculateField oceana_us_admin1_borders class 1 VB #CalculateField oceana_us_admin1_borders class 1 VB #CalculateField oceana_us_admin1_borders class 1 VB #CalculateField oceana_us_admin1_borders ADMIN1_EDI "Moved Class 0 line to be more coincident with processed p, ASimmons 10/26/2013" VB #CalculateField oceana_us_admin1_borders ADMIN1_EDI "Edited Class 0 to be coincident with processed p, ASimmons 10/28/2013" VB #CalculateField oceana_us_admin1_borders class 1 VB #CalculateField oceana_us_admin1_borders class 1 VB #CalculateField oceana_us_admin1_borders class 1 VB #CalculateField oceana_us_admin1_borders ADMIN1_EDI "Edited Admin1 Class 0 to Processed P, ASimmons 10/29/2013" VB #CalculateField oceana_us_admin1_borders ADMIN1_EDI "Edited Admin1 Class 0 to Processed P, ASimmons 10/29/2013" VB #CalculateField oceana_us_admin1_borders class 1 VB #CalculateField oceana_us_admin1_borders class 1 VB #CalculateField oceana_us_admin1_borders class 1 VB #CalculateField oceana_us_admin1_borders class 1 VB #CalculateField oceana_us_admin1_borders class 0 VB #CalculateField oceana_us_admin1_borders class 0 VB #CalculateField oceana_us_admin1_borders class 0 VB #CalculateField oceana_us_admin1_borders class 0 VB #CalculateField oceana_us_admin1_borders class 0 VB #CalculateField oceana_us_admin1_borders class 0 VB #CalculateField oceana_us_admin1_borders class 0 VB #CalculateField oceana_us_admin1_borders class 0 VB #CalculateField oceana_us_admin1_borders class 0 VB #CalculateField oceana_us_admin1_borders ADMIN1_EDI "Edited Class 0 to match Processed P, ASimmons, 10/31/2013" VB #CalculateField oceana_us_admin1_borders class 0 VB #CalculateField oceana_us_admin1_borders class 0 VB #CalculateField oceana_us_admin1_borders class 0 VB #CalculateField oceana_us_admin1_borders class 0 VB #CalculateField oceana_us_admin1_borders class 0 VB #CalculateField oceana_us_admin1_borders class 0 VB #file://\\ASIMMONS\C$\Users\asimmons\Documents\It_13\oceana_admin_1\Oceana.gdbLocal Area Network diff --git a/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines.shx b/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines.shx deleted file mode 100644 index cd7ced43..00000000 Binary files a/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines.shx and /dev/null differ diff --git a/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines_TopoFALSE.cpg b/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines_TopoFALSE.cpg deleted file mode 100644 index cd89cb97..00000000 --- a/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines_TopoFALSE.cpg +++ /dev/null @@ -1 +0,0 @@ -ISO-8859-1 \ No newline at end of file diff --git a/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines_TopoFALSE.dbf b/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines_TopoFALSE.dbf deleted file mode 100644 index 340f979c..00000000 Binary files a/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines_TopoFALSE.dbf and /dev/null differ diff --git a/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines_TopoFALSE.prj b/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines_TopoFALSE.prj deleted file mode 100644 index 2fa9b36a..00000000 --- a/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines_TopoFALSE.prj +++ /dev/null @@ -1 +0,0 @@ -PROJCS["Mercator",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Mercator"],PARAMETER["central_meridian",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["Meter",1],PARAMETER["standard_parallel_1",0.0]] \ No newline at end of file diff --git a/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines_TopoFALSE.shp b/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines_TopoFALSE.shp deleted file mode 100644 index 6f3c89fc..00000000 Binary files a/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines_TopoFALSE.shp and /dev/null differ diff --git a/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines_TopoFALSE.shx b/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines_TopoFALSE.shx deleted file mode 100644 index 60225145..00000000 Binary files a/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines_TopoFALSE.shx and /dev/null differ diff --git a/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines_TopoTRUE.dbf b/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines_TopoTRUE.dbf deleted file mode 100644 index b3552090..00000000 Binary files a/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines_TopoTRUE.dbf and /dev/null differ diff --git a/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines_TopoTRUE.prj b/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines_TopoTRUE.prj deleted file mode 100644 index 2fa9b36a..00000000 --- a/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines_TopoTRUE.prj +++ /dev/null @@ -1 +0,0 @@ -PROJCS["Mercator",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Mercator"],PARAMETER["central_meridian",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["Meter",1],PARAMETER["standard_parallel_1",0.0]] \ No newline at end of file diff --git a/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines_TopoTRUE.shp b/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines_TopoTRUE.shp deleted file mode 100644 index 65538998..00000000 Binary files a/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines_TopoTRUE.shp and /dev/null differ diff --git a/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines_TopoTRUE.shx b/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines_TopoTRUE.shx deleted file mode 100644 index 9e7f6f2b..00000000 Binary files a/Students/ASimmons/code_class_project/test_lines_simplify_topology/sample_lines_TopoTRUE.shx and /dev/null differ diff --git a/Students/ASimmons/code_class_project/test_simplify_topology.py b/Students/ASimmons/code_class_project/test_simplify_topology.py deleted file mode 100644 index 36367ce7..00000000 --- a/Students/ASimmons/code_class_project/test_simplify_topology.py +++ /dev/null @@ -1,280 +0,0 @@ -__author__ = 'asimmons' - -from simplify_topology import * -from nose.tools import * -import unittest - - -class test_PreserveTopology(unittest.TestCase): - - """ - Test append_junctions: - - cases to cover: - 1) one line - no junctions - 2) two lines - no junctions - 3) two lines - with junctions - 4) two lines that cross, but do not share a point - no junctions. - 5) two lines that are identical, and on top of each other, but - because the neighbors are the same - no junctions. - - Test cut_line_by_junctions: - - cases to cover: - 1) one line with a junction in the middle of the line - split into 2 arcs - 2) one line with a junction at the start of the line - 1 arc - 3) one line with a junction at the end of the line - 1 arc - 4) one line with no junctions - 1 arc - - Test quantitize: - - cases to cover: - 1) check if default quantization factor is 10,000 (-q 1e4) - """ - - ## A - ## \ - ## \ - ## X - ## \ - ## \ - ## D - - def test_one_line_no_junction_append_junctions(self): - g = PreserveTopology() - # set the quantitization factor - g.set_quantitization_factor(1) - # Line AXD - array = [(1,3),(1.4,2),(2,0)] - # create global dictionary - test_dictJunctions = {} - test_dictNeighbors = {} - g.append_junctions(test_dictJunctions,test_dictNeighbors,array) - assert(not test_dictJunctions ==True) # test that test_dictJunctions is empty - assert(not test_dictNeighbors ==True) # test that test_dictNeighbors is empty - - ## A - ## \ - ## \ - ## X - ## - ## - ## B-----C - - def test_two_lines_no_junctions_append_junctions(self): - - g = PreserveTopology() - # set the quantitization factor - g.set_quantitization_factor(1) - # LINE BC & AX - array = [(0,0),(1,0)] - array2 = [(1,3),(1.4,2)] - # create global dictionary - test_dictJunctions = {} - test_dictNeighbors = {} - g.append_junctions(test_dictJunctions,test_dictNeighbors,array) - g.append_junctions(test_dictJunctions,test_dictNeighbors,array2) - assert(not test_dictJunctions ==True) # test that test_dictJunctions is empty - assert(not test_dictNeighbors ==True) # test that test_dictNeighbors is empty - - ## A - ## \ - ## \ - ## X - ## \ - ## \ - ## B-----C-----D-----F - - def test_two_lines_one_junction(self): - g = PreserveTopology() - # set the quantitization factor - g.set_quantitization_factor(1) - # LINE BCDF & AXD - array = [(0,0),(1,0),(2,0),(3,0)] - array2 = [(1,3),(1.4,2),(2,0)] - # create global dictionary - test_dictJunctions = {} - test_dictNeighbors = {} - g.append_junctions(test_dictJunctions,test_dictNeighbors,array) - g.append_junctions(test_dictJunctions,test_dictNeighbors,array2) - assert test_dictJunctions == {(2,0): 1} - - ## - ## X - ## / - ## / - ## B-----C-----D-----F - ## / - ## Y - - def test_two_lines_cross_but_do_not_intersect_no_junctions(self): - g = PreserveTopology() - # set the quantitization factor - g.set_quantitization_factor(1) - # these lines do NOT have a junction because there is no shared point - # LINE BCDF - array = [(0,0),(1,0),(2,0),(3,0)] - # LINE XY - array2 = [(3,3),(-1,.5)] - # create global dictionary - test_dictJunctions = {} - test_dictNeighbors = {} - g.append_junctions(test_dictJunctions,test_dictNeighbors,array) - g.append_junctions(test_dictJunctions,test_dictNeighbors,array2) - assert(not test_dictJunctions ==True) # test that test_dictJunctions is empty - assert(not test_dictNeighbors ==True) # test that test_dictNeighbors is empty - - ## C and X - ## / - ## / - ## B and Y - ## / - ## A and Z - - def test_two_identical_lines_do_not_have_any_junctions(self): - g = PreserveTopology() - # set the quantitization factor - g.set_quantitization_factor(1) - # these lines do NOT have a junction because there are no different neighbors - # LINE ABC - array = [(3,3),(1,0),(-1,.5)] - # LINE ZYX - array2 = [(3,3),(1,0),(-1,.5)] - # create global dictionary - test_dictJunctions = {} - test_dictNeighbors = {} - g.append_junctions(test_dictJunctions,test_dictNeighbors,array) - g.append_junctions(test_dictJunctions,test_dictNeighbors,array2) - assert(not test_dictJunctions ==True) # test that test_dictJunctions is empty - assert(not test_dictNeighbors ==True) # test that test_dictNeighbors is empty - - - ## A - ## \ - ## \ - ## X - ## \ - ## \ - ## B-----C-----D-----F - ## \ - ## R - - def test_splitting_lines_2_arcs(self): - g = PreserveTopology() - # set the quantitization factor - g.set_quantitization_factor(1) - # LINE BCDF & AXDR - array = [(0,0),(1,0),(2,0),(3,0)] - array2 = [(1,3),(1.4,2),(2,0),(-1.4,3)] - # create LINE AXDR as shapely obj - array2_as_linestring = LineString(array2) - # create global dictionary - test_dictJunctions = {} - test_dictNeighbors = {} - g.append_junctions(test_dictJunctions,test_dictNeighbors,array) - g.append_junctions(test_dictJunctions,test_dictNeighbors,array2) - # test_dictJunctions == {(2,0): 1} - # For LINE AXDR if I run cut_line_by_junctions - # there should now be two LineString obj's - # LINE AXD & DR - # which are represented as two lists seperated by a - # comma - arcArray2 = g.cut_line_by_junctions(array2_as_linestring, test_dictJunctions) - result = list([list(i.coords) for i in arcArray2]) - assert result == [[(1,3),(1.4,2),(2,0)],[(2,0),(-1.4,3)]] - - ## X - ## | - ## | - ## | - ## | - ## | - ## B-----C-----D-----F - ## - - def test_splitting_line_w_junction_at_start_1_arc(self): - g = PreserveTopology() - # set the quantitization factor - g.set_quantitization_factor(1) - # LINE XB & BCDF - array1 = [(0,0),(0,5)] - array2 = [(0,0),(1,0),(2,0),(3,0)] - # create LINE BCDF as shapely obj - array2_as_linestring = LineString(array2) - # create global dictionary - test_dictJunctions = {} - test_dictNeighbors = {} - g.append_junctions(test_dictJunctions,test_dictNeighbors,array1) - g.append_junctions(test_dictJunctions,test_dictNeighbors,array2) - # test_dictJunctions == {(0,0): 1} - # For LINE BCDF if I run cut_line_by_junctions - # there should now be 1 LineString obj's - # LINE BCDF - arcArray2 = g.cut_line_by_junctions(array2_as_linestring, test_dictJunctions) - result = list([list(i.coords) for i in arcArray2]) - assert result == [[(0,0),(1,0),(2,0),(3,0)]] - - ## X - ## | - ## | - ## | - ## | - ## | - ## B-----C-----D-----F - ## - - def test_splitting_line_w_junction_at_end_1_arc(self): - g = PreserveTopology() - # set the quantitization factor - g.set_quantitization_factor(1) - # LINE XF & BCDF - array1 = [(3,0),(3,5)] - array2 = [(0,0),(1,0),(2,0),(3,0)] - # create LINE BCDF as shapely obj - array2_as_linestring = LineString(array2) - # create global dictionary - test_dictJunctions = {} - test_dictNeighbors = {} - g.append_junctions(test_dictJunctions,test_dictNeighbors,array1) - g.append_junctions(test_dictJunctions,test_dictNeighbors,array2) - # test_dictJunctions == {(3,0): 1} - # For LINE BCDF if I run cut_line_by_junctions - # there should now be 1 LineString obj's - # LINE BCDF - arcArray2 = g.cut_line_by_junctions(array2_as_linestring, test_dictJunctions) - result = list([list(i.coords) for i in arcArray2]) - assert result == [[(0,0),(1,0),(2,0),(3,0)]] - - - ## C - ## / - ## / - ## B - ## / - ## A - - def test_one_line_one_arc(self): - g = PreserveTopology() - # set the quantitization factor - g.set_quantitization_factor(1) - # LINE ABC - array = [(3,3),(1,0),(-1,.5)] - # create LINE ABC as shapely obj - array_as_linestring = LineString(array) - # create global dictionary - test_dictJunctions = {} - test_dictNeighbors = {} - g.append_junctions(test_dictJunctions,test_dictNeighbors,array) - g.append_junctions(test_dictJunctions,test_dictNeighbors,array) - # Create one arc from the junctionless LINE ABC - arcArray = g.cut_line_by_junctions(array_as_linestring, test_dictJunctions) - result = list([list(i.coords) for i in arcArray]) - assert result == [[(3,3),(1,0),(-1,.5)]] - - def test_quantitize(self): - g = PreserveTopology() - result = g.quantitize((12345,12345)) - assert_equal(result,(10000, 10000)) - -if __name__ == "__main__": - unittest.main() \ No newline at end of file diff --git a/Students/ASimmons/lightening_talk/Geometry Simplification.pdf b/Students/ASimmons/lightening_talk/Geometry Simplification.pdf deleted file mode 100644 index d0c75121..00000000 Binary files a/Students/ASimmons/lightening_talk/Geometry Simplification.pdf and /dev/null differ diff --git a/Students/CarolynEvans/final_project/__init__.py b/Students/CarolynEvans/final_project/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/Students/CarolynEvans/final_project/config.py b/Students/CarolynEvans/final_project/config.py deleted file mode 100644 index d8fd88bd..00000000 --- a/Students/CarolynEvans/final_project/config.py +++ /dev/null @@ -1,42 +0,0 @@ -import yaml - -class config(): - """ - This class parses config.yaml into a dictionary and provides callability. - """ - _VALUES = dict() - - def __init__(self): - with open('config.yaml', 'r') as f: - config = yaml.load(f) - - self.flatten(config) - - - def flatten(self, config): - """ - This method loads a dictionary using the data that was loaded from config.yaml in __init__. - The yaml dictionary 'values' may potentially be another dictionary. - This method is used recursively to explode all levels of the yaml into a flat dictionary. - :param config: A dict containing configuration values. - :return: There is no return value. This method is called during __init__. - """ - # TODO: Rewrite for loop as comprehension - - for key, val in config.items(): - if type(val) is dict: - self.flatten(val) - else: - self._VALUES[key]=val - - - - def get(self, key): - """ - This method is provides a configuration value for the given 'key'. - :param key: A string containing the 'key' of the config item in the config dict. - :return: A string containing the value of the config item in the config dict. - """ - val = self._VALUES[key] - return val - diff --git a/Students/CarolynEvans/final_project/config.yaml b/Students/CarolynEvans/final_project/config.yaml deleted file mode 100644 index cd0891be..00000000 --- a/Students/CarolynEvans/final_project/config.yaml +++ /dev/null @@ -1,14 +0,0 @@ -data_warehouse_config: - dw_dbname: "********" - dw_user: "*******" - dw_password: "********" - dw_host: "********" - dw_port: "****" - - -hummingbird_config: - hummingbird_url: ****** - -email_config: - email_server: ****** - diff --git a/Students/CarolynEvans/final_project/data_warehouse.py b/Students/CarolynEvans/final_project/data_warehouse.py deleted file mode 100644 index 1cf04fc9..00000000 --- a/Students/CarolynEvans/final_project/data_warehouse.py +++ /dev/null @@ -1,54 +0,0 @@ -import psycopg2 -from psycopg2._psycopg import ProgrammingError -from config import config - -class data_warehouse(object): - ''' - This class is used to get data from the Rightside data warehouse. - The complete data warehouse documentation can be found at - https://wiki.rightside.net/display/tnt/BI - ''' - - def __init__(self): - """ - This method sets the data warehouse connection string from the config. - """ - cnf = config() - dbname = cnf.get('dw_dbname') - user = cnf.get('dw_user') - password = cnf.get('dw_password') - host = cnf.get('dw_host') - port = cnf.get('dw_port') - - self.dw_connection_string = \ - "dbname='{}' user='{}' password='{}' host='{}' port='{}'".format(dbname,user,password,host,port) - - - def __call__(self, query): - """ - This method calls the data warehouse API. - The complete data warehouse documentation can be found at - https://wiki.rightside.net/display/tnt/BI - :param query: A string containing a valid redshift data warehouse query. - :return: This depends on the query. - If the query returns records, as in a 'select' query, the records are returned. - If the query does not return records, as in an 'update' query, a unicode string is returned. - """ - with psycopg2.connect(self.dw_connection_string) as conn: - with conn.cursor() as curs: - curs.execute(query) - - try: - records = curs.fetchall() - return records - except ProgrammingError as e: - # This error occurs when there are no records to return, - # for example, queries such as inserts, updates, and unloads. - message = unicode(e) - if message == u'no results to fetch': - return message - else: - raise message - - - diff --git a/Students/CarolynEvans/final_project/hummingbird.py b/Students/CarolynEvans/final_project/hummingbird.py deleted file mode 100644 index 6b0814d7..00000000 --- a/Students/CarolynEvans/final_project/hummingbird.py +++ /dev/null @@ -1,40 +0,0 @@ -import urllib2 -import json - -from config import config - -class hummingbird(object): - """ - This class is used to call the DizzyNinja Hummingbird Domain Recommendation API. - The complete hummingbird API documentation can be found at - https://wiki.rightside.net/display/tnt/API+Documentation - """ - - def __init__(self): - """ - This method sets the hummingbird url from the config. - """ - cnf = config() - self.url = cnf.get('hummingbird_url') - - - def __call__(self, command, **kwargs): - """ - This method calls the hummingbird API. - The complete hummingbird API documentation can be found at - https://wiki.rightside.net/display/tnt/API+Documentation - :param command: A string containing a valid hummingbird command. - :param kwargs: Depends on 'command'. See hummingbird documentation for complete list. - :return: Returns JSON with results for the 'command'. - """ - - # build the query string parameter for the hummingbird API http request. - query_string = "".join(['{}={},'.format(key,val) for key, val in kwargs.items()]) - - #add the 'command' and the query string to the url. - url = '{}{}?{}'.format(self.url, command, query_string) - - response = urllib2.urlopen(url).read() - return json.loads(response) - - diff --git a/Students/CarolynEvans/final_project/lead_gen.py b/Students/CarolynEvans/final_project/lead_gen.py deleted file mode 100644 index 4cf495e2..00000000 --- a/Students/CarolynEvans/final_project/lead_gen.py +++ /dev/null @@ -1,12 +0,0 @@ - -# TODO: Get list of registered domain names from data warehouse -# TODO: Get list of premium domains from data warehouse -# TODO: Call word splitter on both lists and save each in a dict with -# original domain name as key and split words as values. -# TODO: Sort split words for each domain name. -# TODO: Compare split words for registered domain to split words for premium domains. -# TODO: Get registered owners contact info from data warehouse. -# TODO: Write file that can be opened in excel. - - - diff --git a/Students/CarolynEvans/final_project/send_mail.py b/Students/CarolynEvans/final_project/send_mail.py deleted file mode 100644 index 964f175f..00000000 --- a/Students/CarolynEvans/final_project/send_mail.py +++ /dev/null @@ -1,28 +0,0 @@ -import smtplib -from config import config - - -def send_mail(email_address, subject, body=''): - """ - This function sends email notifications to the current user. - - :param email_address: This is the email address of the current user that was obtained from the ldap call. - :param subject: This parameter will be used as the subject line of the email. - :param body: This parameter will be used as the body of the email. - """ - - # If email is None, the task is being run from the command line and no email is sent. - if email_address is None: - return - - cnf = config() - SERVER = cnf.get('email_server') - FROM = "noreply@rightside.co" - TO = [email_address] - TEXT = 'Subject: %s\n\n%s' % (subject, body) - - # Send the mail - server = smtplib.SMTP(SERVER) - server.sendmail(FROM, TO, TEXT) - - diff --git a/Students/CarolynEvans/final_project/test.py b/Students/CarolynEvans/final_project/test.py deleted file mode 100644 index 0a9dc2ee..00000000 --- a/Students/CarolynEvans/final_project/test.py +++ /dev/null @@ -1,51 +0,0 @@ -def test_config(): - # Test config.py - from config import config - - cnf = config() - assert cnf.get('hummingbird_url') == 'http://hummingbird.dizzyninja.co/' - assert cnf.get('dw_dbname') == 'rightsidedw' - assert cnf.get('email_server') == 'mail.notify-customer.com' - - -def test_hummingbird(): - # Test hummingbird.py - # TODO: Add more hummingbird commands to the test. - from hummingbird import hummingbird - - h = hummingbird() - result = h('word-split', input='toiletseat') - assert result['output']['split'] == 'toilet seat' - - -def test_data_warehouse(): - # Test data_warehouse.py - # This test dumps a database table to a file. - # TODO: Add a select query and an update query to the test. - from data_warehouse import data_warehouse - - dw = data_warehouse() - # TODO: Make the following line readable. - query = "unload ('SELECT * FROM utld.tld') to 's3://rightside-data/whois/output/ActiveDomainStatus_20141210_ce.txt' with CREDENTIALS 'aws_access_key_id=AKIAI5ZAKRM5QRQ3LJXA;aws_secret_access_key=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' DELIMITER '\t' PARALLEL OFF ALLOWOVERWRITE GZIP;" - assert dw(query) == u'no results to fetch' - #result = dw(query) - #print result - x='x' - - - -def test_send_mail(): - # Test send_mail.py - # The send_mail function only works inside the firewall. - from send_mail import send_mail - email_address = 'carolyn.evans@rightside.co' - subject = 'test.py' - assert send_mail(email_address=email_address, subject=subject, body="") == None - - -if __name__ == '__main__': - test_config() - test_data_warehouse() - test_hummingbird() - #test_send_mail() - diff --git a/Students/CarolynEvans/session01/print_grid.py b/Students/CarolynEvans/session01/print_grid.py deleted file mode 100644 index a4304291..00000000 --- a/Students/CarolynEvans/session01/print_grid.py +++ /dev/null @@ -1,97 +0,0 @@ -# This was my first attempt. -# This one prints the number of boxes horizontal and vertical based on the 'x' parameter, -# and the size of each box is determined by the 'x' parameter as well. -def grid1(x): - - for a in range(0,x,1): - - for b in range(0,x,1): - - print '+', - - for c in range(0,x,1): - print '-', - - print '+' - - for b in range(0,x,1): - - for c in range(0,x,1): - - print '|', - - for a in range(0,x,1): - print ' ', - - print '|' - - for b in range(0,x,1): - - print '+', - - for c in range(0,x,1): - print '-', - - print '+' - -grid1(4) - -# This was my second attempt. -# This one also prints the number of boxes horizontal and vertical based on the 'size' parameter, -# and the size of each box is determined by the 'size' parameter as well. -# The difference is that the code has been simplified by calling a sub-function. -def grid2(size): - - for a in range(0,size,1): - - lineDraw2(size,'+','-') - - for b in range(0,size,1): - lineDraw2(size,'|',' ') - - lineDraw2(size,'+', '-') - -def lineDraw2 (size,border,filler): - for a in range(0,size,1): - - print border, - - for b in range(0,size,1): - print filler, - - print border - -grid2(4) - - -# Then I read the homework assignment more thoroughly. -# This one prints a grid with two vertical and two horizontal boxes. -# The size of whole entire grid is determined by the 'size' parameter. -def grid3(size): - - size -= 1 - size /= 2 - size -= 1 - - for outerLoop in range(0,2,1): - - lineDraw3(size,'+','-') - - for innerLoop in range(0,size,1): - lineDraw3(size,'|',' ') - - lineDraw3(size,'+', '-') - -def lineDraw3 (size,border,filler): - for outerLoop in range(0,2,1): - - print border, - - for innerLoop in range(0,size,1): - print filler, - - print border - -grid3(13) - - diff --git a/Students/CarolynEvans/session02/ack.py b/Students/CarolynEvans/session02/ack.py deleted file mode 100644 index c53349ba..00000000 --- a/Students/CarolynEvans/session02/ack.py +++ /dev/null @@ -1,57 +0,0 @@ -__author__ = 'carolyn.evans' - -def ack(m, n): - """ This is the Ackermann Function. - For a complete description, visit en.wikipedia.org/wiki/Ackermann_function. - - :param m: Parameter m must be an integer value of zero or more. - :param n: Parameter m must be an integer value of zero or more. - :return: If m and n are valid, an integer is returned. Otherwise, None is returned. - """ - - import sys - - try: - if m < 0 or n < 0: - return None - - if m == 0: - return n+1 - - if n == 0: - return ack(m-1, 1) - - return ack(m-1, ack(m, n-1)) - except Exception, err: - sys.stderr.write('ERROR: %s\n' % str(err)) - return None - -if __name__ == "__main__": - assert ack(0, 0) == 1 - assert ack(0, 1) == 2 - assert ack(0, 2) == 3 - assert ack(0, 3) == 4 - assert ack(0, 4) == 5 - - assert ack(1, 0) == 2 - assert ack(1, 1) == 3 - assert ack(1, 2) == 4 - assert ack(1, 3) == 5 - assert ack(1, 4) == 6 - - assert ack(2, 0) == 3 - assert ack(2, 1) == 5 - assert ack(2, 2) == 7 - assert ack(2, 3) == 9 - assert ack(2, 4) == 11 - - assert ack(3, 0) == 5 - assert ack(3, 1) == 13 - assert ack(3, 2) == 29 - assert ack(3, 3) == 61 - assert ack(3, 4) == 125 - - assert ack(4, 0) == 13 - - - print 'All Tests Passed' \ No newline at end of file diff --git a/Students/CarolynEvans/session02/series.py b/Students/CarolynEvans/session02/series.py deleted file mode 100644 index 7c58fbfd..00000000 --- a/Students/CarolynEvans/session02/series.py +++ /dev/null @@ -1,131 +0,0 @@ -__author__ = 'carolyn.evans' - -def fibonacci(n): - """ This is the Fibonacci Function. - It is a series of numbers that is seeded with 0 and 1, and then each subsequent - number in the series is the sum of the prior two numbers. - - :param n: Parameter n designates which value in the fibonacci series to return. - :return: An integer from the fibonacci series based on the given n is returned. - If a negative number is supplied as n, the function returns None. - """ - - import sys - - try: - if n < 0: - return None - - if n <= 1: - return n - - return fibonacci(n-1)+fibonacci(n-2) - - except Exception, err: - sys.stderr.write('ERROR: %s\n' % str(err)) - return None - - -def lucas(n): - """ This is the Lucas Function. - It is a series of numbers that is seeded with 2 and 1, and then each subsequent - number in the series is the sum of the prior two numbers. - - :param n: Parameter n designates which value in the lucas series to return. - :return: An integer from the lucas series based on the given n is returned. - If a number less than 1 is supplied as n, the function returns None. - """ - - import sys - - try: - if n < 0: - return None - - if n == 0: - return 2 - - if n == 1: - return 1 - - return lucas(n-1)+lucas(n-2) - - except Exception, err: - sys.stderr.write('ERROR: %s\n' % str(err)) - return None - - -def sum_series(n, firstValue = 0, secondValue = 1): - """ This function produces a number from a series of numbers that is seeded with - firstValue and secondValue parameters, and then each subsequent number is the - sum of the previous two numbers. - - :param n: Parameter n designates which value in the series to return. - :param firstValue: This is the first value in the series. - :param secondValue: This is the second value in the series. - :return: An integer from the a series based on the given parameters is returned. - """ - - import sys - - try: - if n < 0: - return None - - if n == 0: - return firstValue - - if n == 1: - return secondValue - - return sum_series(n-1, firstValue, secondValue)+sum_series(n-2, firstValue, secondValue) - - except Exception, err: - sys.stderr.write('ERROR: %s\n' % str(err)) - return None - - -if __name__ == "__main__": - # test cases for fibonacci() - assert fibonacci(-1) == None - assert fibonacci(0) == 0 - assert fibonacci(1) == 1 - assert fibonacci(2) == 1 - assert fibonacci(3) == 2 - assert fibonacci(4) == 3 - assert fibonacci(5) == 5 - assert fibonacci(6) == 8 - assert fibonacci(7) == 13 - - # test cases for lucas() - assert lucas(-1) == None - assert lucas(0) == 2 - assert lucas(1) == 1 - assert lucas(2) == 3 - assert lucas(3) == 4 - assert lucas(4) == 7 - assert lucas(5) == 11 - assert lucas(6) == 18 - assert lucas(7) == 29 - - # test cases for sum_series - assert sum_series(0, 0, 1) == 0 #fibonacci 1 - assert sum_series(1, 0, 1) == 1 #fibonacci 2 - assert sum_series(2, 0, 1) == 1 #fibonacci 3 - assert sum_series(3, 0, 1) == 2 #fibonacci 4 - assert sum_series(0, 2, 1) == 2 #lucas 1 - assert sum_series(1, 2, 1) == 1 #lucas 2 - assert sum_series(2, 2, 1) == 3 #lucas 3 - assert sum_series(3, 2, 1) == 4 #lucas 4 - assert sum_series(0, 3, 2) == 3 #other 4 - assert sum_series(1, 3, 2) == 2 #other 4 - assert sum_series(2, 3, 2) == 5 #other 4 - assert sum_series(3, 3, 2) == 7 #other 4 - - # throw a whole bunch of random stuff at sum_series - for n in range (0, 4, 1): - for firstValue in range (0, 4, 1): - for secondValue in range (0, 4, 1): - print n, firstValue, secondValue, sum_series(n, firstValue, secondValue) - - print 'All Tests Passed' \ No newline at end of file diff --git a/Students/CarolynEvans/session03/list_lab.py b/Students/CarolynEvans/session03/list_lab.py deleted file mode 100644 index adf727db..00000000 --- a/Students/CarolynEvans/session03/list_lab.py +++ /dev/null @@ -1,84 +0,0 @@ -print ' ' -print '# Create a list that contains Apples, Pears, Oranges and Peaches and display the list.' -fruits = ['Apples', 'Pears', 'Oranges', 'Peaches'] -print fruits -print ' ' - -print '# Ask the user for another fruit and add it to the end of the list and print the list.' -fruit1 = raw_input('Enter another fruit: ') -fruits.append(fruit1) -print fruits -print ' ' - -print '# Ask the user for a number and display the number back to the user and the fruit' -print 'corresponding to that number (on a 1-is-first basis).' -i = int(raw_input('Enter a number between 1 and 5: ')) -print i, fruits[i-1] -print ' ' - -print '# Add another fruit to hte beginning of the list using "+" and display the list.' -fruits = ['Bananas'] + fruits -print fruits -print ' ' - -print '# Add another fruit to the beginning of the list using insert() and display the list.' -fruits.insert(0,'Grapes') -print fruits -print ' ' - -print '# Display all the fruits that begin with "P", using a for loop.' -for fruit in fruits: - if fruit[0] == 'P': - print fruit - -print ' ' -print '# Display the list.' -print fruits -print ' ' - -print '# Remove the last fruit from the list and display the list.' -fruits.pop() -print fruits -print ' ' - -print '# Double the list.' -print '# Ask the user for a fruit to delete and find it and delete it.' -print '# Keep asking until they enter a fruit that is in the list.' -print '# Remove all occurrences of the fruit and display the list.' -fruits *= 2 -x = raw_input('Please enter a fruit to delete: ') -while x not in fruits: - x = raw_input('That fruit is not in the list. Please try again: ') -while x in fruits: - fruits.remove(x) -print fruits -print ' ' - - -print '# Ask the user for input displaying a line like Do you like apples?' -print '# for each fruit in the list (making the fruit all lowercase).' -print '# For each no, delete that fruit from the list.' -print '# For any answer that is not yes or no, prompt the user to answer with one of those two values (a while loop is good here):' -print '# Display the list.' -fruits = ['Apples', 'Pears', 'Oranges', 'Peaches'] -for fruit in fruits[:]: - x = raw_input('Do you like ' + fruit.lower() + '?') - while x not in ['yes', 'no']: - x = raw_input('Please answer yes or no. Do you like ' + fruit.lower() + '?') - if x == 'no': - fruits.remove(fruit) -print fruits -print '' - - -print '# Once more, using the list from series 1:' -print '# Make a copy of the list and reverse the letters in each fruit in the copy.' -print '# Delete the last item of the original list. Display the original list and the copy.' -fruits = ['Apples', 'Pears', 'Oranges', 'Peaches'] -new_fruits = fruits[:] -for i, fruit in enumerate(new_fruits): - new_fruits[i] = fruit[::-1] -fruits.pop() -print 'Original', fruits -print 'Copy', new_fruits - diff --git a/Students/CarolynEvans/session03/mailroom.py b/Students/CarolynEvans/session03/mailroom.py deleted file mode 100644 index 2535b587..00000000 --- a/Students/CarolynEvans/session03/mailroom.py +++ /dev/null @@ -1,145 +0,0 @@ -#!/usr/bin/env python - -from textwrap import dedent -import math - -# In memory representation of the donor database -# using a tuple for each donor -# -- kind of like a record in a database table -donor_db = [] -donor_db.append( ("William Gates, III", [653772.32, 12.17]) ) -donor_db.append( ("Jeff Bezos", [877.33]) ) -donor_db.append( ("Paul Allen", [663.23, 43.87, 1.32]) ) -donor_db.append( ("Mark Zuckerberg", [1663.23, 4300.87, 10432.0]) ) - - -def print_donors(): - print "Donor list:\n" - for donor in donor_db: - print donor[0] - - -def find_donor(name): - """ - find a donor in the donor db - - :param: the name of the donor - - :returns: The donor data structure -- None if not in the donor_db - """ - for donor in donor_db: - # do an non-capitalized compare - if name.strip().lower() == donor[0].lower(): - donor - return None - - -def main_menu_selection(): - """ - Print out the main application menu and then read the user input. - """ - input = raw_input(dedent(''' - Choose an action: - - 1 - Send a Thank You - 2 - Create a Report - 3 - Quit - - > ''')) - return input.strip() - - -def gen_letter(donor): - """ - Generate a thank you letter for the donor - - :param: donor tuple - - :returns: string with letter - """ - return dedent(''' - Dear %s - - Thank you for your very kind donation of %.2f. - It will be put to very good use. - - Sincerely, - -The Team - ''' % (donor[0], donor[1][-1]) ) - - -def send_thank_you(): - """ - Execute the logic to record a donation and generate a thank you message. - """ - # Read a valid donor to send a thank you from, handling special commands to - # let the user navigate as defined. - while True: - name = raw_input("Enter a donor's name (or list to see all donors or 'menu' to exit)> ").strip() - if name == "list": - print_donors() - elif name == "menu": - return - else: - break - - # Now prompt the user for a donation amount to apply. Since this is also an exit - # point to the main menu, we want to make sure this is done before mutating the db - # list object. - while True: - amount_str = raw_input("Enter a donation amount (or 'menu' to exit)> ").strip() - if amount_str == "menu": - return - # Make sure amount is a valid amount before leaving the input loop - amount = float(amount_str) - if math.isnan(amount) or math.isinf(amount) or round(amount, 2) == 0.00: - print "error: donation amount is invalid\n" - else: - break - - # If this is a new user, ensure that the database has the necessary data structure. - donor = find_donor(name) - if donor is None: - donor = (name, []) - donor_db.append( donor ) - - # Record the donation - donor[1].append(amount) - print gen_letter(donor) - - -def sort_key(item): - return item[1] - - -def print_donor_report(): - """ - Generate the report of the donors and amounts donated. - """ - # First, reduce the raw data into a summary list view - report_rows = [] - for (name, gifts) in donor_db: - total_gifts = sum(gifts) - num_gifts = len(gifts) - avg_gift = total_gifts / num_gifts - report_rows.append( (name, total_gifts, num_gifts, avg_gift) ) - - #sort the report data - report_rows.sort(key=sort_key) - print "%25s | %11s | %9s | %12s"%("Donor Name","Total Given","Num Gifts","Average Gift") - print "-"*66 - for row in report_rows: - print "%25s %11.2f %9i %12.2f"%row - -if __name__ == "__main__": - running = True - while running: - selection = main_menu_selection() - if selection is "1": - send_thank_you() - elif selection is "2": - print_donor_report() - elif selection is "3": - running = False - else: - print "error: menu selection is invalid!" diff --git a/Students/CarolynEvans/session03/slicing_lab.py b/Students/CarolynEvans/session03/slicing_lab.py deleted file mode 100644 index a7bedc49..00000000 --- a/Students/CarolynEvans/session03/slicing_lab.py +++ /dev/null @@ -1,61 +0,0 @@ -__author__ = 'carolyn.evans' - -def Slice(seq, task): - """ This function performs a variety of slicing operations based on the given task parameter. - - :param seq: Parameter 'seq' is the ordered sequence of objects to be sliced. - :param task: Parameter 'task' designates which slicing operation to perform. - Valid values are: - swapfirstlast: exchanges first and last objects. - removeeveryother: removes every other object. - removefirstlastfour: removes the first and last four objects. - reverse: reverses the sequence of objects. - reorder: change the order of the objects to middle, last, first. - :return: The revised sequence. - If the sequence is too short for the requested task, the sequence is returned unaltered. - """ - - if task == 'swapfirstlast' and len(seq) >= 2: - seq = seq[-1:] + seq[1:-1] + seq[:1] - - elif task == 'removeeveryother': - seq = seq[::2] - - elif task == 'reverse': - seq = seq[::-1] - - elif task == 'reorder': - onethird = (len(seq) / 3) - remainder = (len(seq) % 3) - seq = seq[onethird:onethird*2] + seq[0:onethird] + seq[(onethird + remainder) * -1:] - - elif task == 'removefirstlastfoureveryother': - seq = seq[4:-4:2] - - - return seq - -# test tuples -assert Slice(tuple(range(9)), 'swapfirstlast') == (8, 1, 2, 3, 4, 5, 6, 7, 0) -assert Slice(tuple(range(9)), 'removeeveryother') == (0, 2, 4, 6, 8) -assert Slice(tuple(range(9)), 'removefirstlastfour') == (0, 1, 2, 3, 4, 5, 6, 7, 8) -assert Slice(tuple(range(9)), 'reverse') == (8, 7, 6, 5, 4, 3, 2, 1, 0) -assert Slice(tuple(range(20)), 'removefirstlastfoureveryother') == (4, 6, 8, 10, 12, 14) -assert Slice(tuple(range(9)), 'reorder') == (3, 4, 5, 0, 1, 2, 6, 7, 8) -# test lists -assert Slice(list(range(9)), 'swapfirstlast') == [8, 1, 2, 3, 4, 5, 6, 7, 0] -assert Slice(list(range(9)), 'removeeveryother') == [0, 2, 4, 6, 8] -assert Slice(list(range(9)), 'removefirstlastfour') == [0, 1, 2, 3, 4, 5, 6, 7, 8] -assert Slice(list(range(9)), 'reverse') == [8, 7, 6, 5, 4, 3, 2, 1, 0] -assert Slice(list(range(20)), 'removefirstlastfoureveryother') == [4, 6, 8, 10, 12, 14] -assert Slice(list(range(9)), 'reorder') == [3, 4, 5, 0, 1, 2, 6, 7, 8] -# test strings -assert Slice('012345678', 'swapfirstlast') == '812345670' -assert Slice('012345678', 'removeeveryother') == '02468' -assert Slice('012345678', 'removefirstlastfour') == '012345678' -assert Slice('012345678', 'reverse') == '876543210' -assert Slice('0123456789abcd', 'removefirstlastfoureveryother') == '468' -assert Slice('0123456789a', 'reorder') == '3450126789a' - -print 'All tests passed' - diff --git a/Students/CarolynEvans/session04/PathlibHomework.py b/Students/CarolynEvans/session04/PathlibHomework.py deleted file mode 100644 index bd4cc156..00000000 --- a/Students/CarolynEvans/session04/PathlibHomework.py +++ /dev/null @@ -1,26 +0,0 @@ - -def printFullPath(): - import pathlib - - p = pathlib.Path('.') - - for f in p.iterdir(): - print f.absolute() - - -def copyFile(filename): - outfile = 'copyof_' + filename - o = open(outfile, 'w') - for line in open(filename): - o.write(line) - o.close - -copyFile('sherlock.txt') - - - - - - - - diff --git a/Students/CarolynEvans/session04/copyof_sherlock.txt b/Students/CarolynEvans/session04/copyof_sherlock.txt deleted file mode 100644 index 4dec2015..00000000 --- a/Students/CarolynEvans/session04/copyof_sherlock.txt +++ /dev/null @@ -1,13052 +0,0 @@ -Project Gutenberg's The Adventures of Sherlock Holmes, by Arthur Conan Doyle - -This eBook is for the use of anyone anywhere at no cost and with -almost no restrictions whatsoever. You may copy it, give it away or -re-use it under the terms of the Project Gutenberg License included -with this eBook or online at www.gutenberg.net - - -Title: The Adventures of Sherlock Holmes - -Author: Arthur Conan Doyle - -Posting Date: April 18, 2011 [EBook #1661] -First Posted: November 29, 2002 - -Language: English - - -*** START OF THIS PROJECT GUTENBERG EBOOK THE ADVENTURES OF SHERLOCK HOLMES *** - - - - -Produced by an anonymous Project Gutenberg volunteer and Jose Menendez - - - - - - - - - -THE ADVENTURES OF SHERLOCK HOLMES - -by - -SIR ARTHUR CONAN DOYLE - - - - I. A Scandal in Bohemia - II. The Red-headed League - III. A Case of Identity - IV. The Boscombe Valley Mystery - V. The Five Orange Pips - VI. The Man with the Twisted Lip - VII. The Adventure of the Blue Carbuncle -VIII. The Adventure of the Speckled Band - IX. The Adventure of the Engineer's Thumb - X. The Adventure of the Noble Bachelor - XI. The Adventure of the Beryl Coronet - XII. The Adventure of the Copper Beeches - - - - -ADVENTURE I. A SCANDAL IN BOHEMIA - -I. - -To Sherlock Holmes she is always THE woman. I have seldom heard -him mention her under any other name. In his eyes she eclipses -and predominates the whole of her sex. It was not that he felt -any emotion akin to love for Irene Adler. All emotions, and that -one particularly, were abhorrent to his cold, precise but -admirably balanced mind. He was, I take it, the most perfect -reasoning and observing machine that the world has seen, but as a -lover he would have placed himself in a false position. He never -spoke of the softer passions, save with a gibe and a sneer. They -were admirable things for the observer--excellent for drawing the -veil from men's motives and actions. But for the trained reasoner -to admit such intrusions into his own delicate and finely -adjusted temperament was to introduce a distracting factor which -might throw a doubt upon all his mental results. Grit in a -sensitive instrument, or a crack in one of his own high-power -lenses, would not be more disturbing than a strong emotion in a -nature such as his. And yet there was but one woman to him, and -that woman was the late Irene Adler, of dubious and questionable -memory. - -I had seen little of Holmes lately. My marriage had drifted us -away from each other. My own complete happiness, and the -home-centred interests which rise up around the man who first -finds himself master of his own establishment, were sufficient to -absorb all my attention, while Holmes, who loathed every form of -society with his whole Bohemian soul, remained in our lodgings in -Baker Street, buried among his old books, and alternating from -week to week between cocaine and ambition, the drowsiness of the -drug, and the fierce energy of his own keen nature. He was still, -as ever, deeply attracted by the study of crime, and occupied his -immense faculties and extraordinary powers of observation in -following out those clues, and clearing up those mysteries which -had been abandoned as hopeless by the official police. From time -to time I heard some vague account of his doings: of his summons -to Odessa in the case of the Trepoff murder, of his clearing up -of the singular tragedy of the Atkinson brothers at Trincomalee, -and finally of the mission which he had accomplished so -delicately and successfully for the reigning family of Holland. -Beyond these signs of his activity, however, which I merely -shared with all the readers of the daily press, I knew little of -my former friend and companion. - -One night--it was on the twentieth of March, 1888--I was -returning from a journey to a patient (for I had now returned to -civil practice), when my way led me through Baker Street. As I -passed the well-remembered door, which must always be associated -in my mind with my wooing, and with the dark incidents of the -Study in Scarlet, I was seized with a keen desire to see Holmes -again, and to know how he was employing his extraordinary powers. -His rooms were brilliantly lit, and, even as I looked up, I saw -his tall, spare figure pass twice in a dark silhouette against -the blind. He was pacing the room swiftly, eagerly, with his head -sunk upon his chest and his hands clasped behind him. To me, who -knew his every mood and habit, his attitude and manner told their -own story. He was at work again. He had risen out of his -drug-created dreams and was hot upon the scent of some new -problem. I rang the bell and was shown up to the chamber which -had formerly been in part my own. - -His manner was not effusive. It seldom was; but he was glad, I -think, to see me. With hardly a word spoken, but with a kindly -eye, he waved me to an armchair, threw across his case of cigars, -and indicated a spirit case and a gasogene in the corner. Then he -stood before the fire and looked me over in his singular -introspective fashion. - -"Wedlock suits you," he remarked. "I think, Watson, that you have -put on seven and a half pounds since I saw you." - -"Seven!" I answered. - -"Indeed, I should have thought a little more. Just a trifle more, -I fancy, Watson. And in practice again, I observe. You did not -tell me that you intended to go into harness." - -"Then, how do you know?" - -"I see it, I deduce it. How do I know that you have been getting -yourself very wet lately, and that you have a most clumsy and -careless servant girl?" - -"My dear Holmes," said I, "this is too much. You would certainly -have been burned, had you lived a few centuries ago. It is true -that I had a country walk on Thursday and came home in a dreadful -mess, but as I have changed my clothes I can't imagine how you -deduce it. As to Mary Jane, she is incorrigible, and my wife has -given her notice, but there, again, I fail to see how you work it -out." - -He chuckled to himself and rubbed his long, nervous hands -together. - -"It is simplicity itself," said he; "my eyes tell me that on the -inside of your left shoe, just where the firelight strikes it, -the leather is scored by six almost parallel cuts. Obviously they -have been caused by someone who has very carelessly scraped round -the edges of the sole in order to remove crusted mud from it. -Hence, you see, my double deduction that you had been out in vile -weather, and that you had a particularly malignant boot-slitting -specimen of the London slavey. As to your practice, if a -gentleman walks into my rooms smelling of iodoform, with a black -mark of nitrate of silver upon his right forefinger, and a bulge -on the right side of his top-hat to show where he has secreted -his stethoscope, I must be dull, indeed, if I do not pronounce -him to be an active member of the medical profession." - -I could not help laughing at the ease with which he explained his -process of deduction. "When I hear you give your reasons," I -remarked, "the thing always appears to me to be so ridiculously -simple that I could easily do it myself, though at each -successive instance of your reasoning I am baffled until you -explain your process. And yet I believe that my eyes are as good -as yours." - -"Quite so," he answered, lighting a cigarette, and throwing -himself down into an armchair. "You see, but you do not observe. -The distinction is clear. For example, you have frequently seen -the steps which lead up from the hall to this room." - -"Frequently." - -"How often?" - -"Well, some hundreds of times." - -"Then how many are there?" - -"How many? I don't know." - -"Quite so! You have not observed. And yet you have seen. That is -just my point. Now, I know that there are seventeen steps, -because I have both seen and observed. By-the-way, since you are -interested in these little problems, and since you are good -enough to chronicle one or two of my trifling experiences, you -may be interested in this." He threw over a sheet of thick, -pink-tinted note-paper which had been lying open upon the table. -"It came by the last post," said he. "Read it aloud." - -The note was undated, and without either signature or address. - -"There will call upon you to-night, at a quarter to eight -o'clock," it said, "a gentleman who desires to consult you upon a -matter of the very deepest moment. Your recent services to one of -the royal houses of Europe have shown that you are one who may -safely be trusted with matters which are of an importance which -can hardly be exaggerated. This account of you we have from all -quarters received. Be in your chamber then at that hour, and do -not take it amiss if your visitor wear a mask." - -"This is indeed a mystery," I remarked. "What do you imagine that -it means?" - -"I have no data yet. It is a capital mistake to theorize before -one has data. Insensibly one begins to twist facts to suit -theories, instead of theories to suit facts. But the note itself. -What do you deduce from it?" - -I carefully examined the writing, and the paper upon which it was -written. - -"The man who wrote it was presumably well to do," I remarked, -endeavouring to imitate my companion's processes. "Such paper -could not be bought under half a crown a packet. It is peculiarly -strong and stiff." - -"Peculiar--that is the very word," said Holmes. "It is not an -English paper at all. Hold it up to the light." - -I did so, and saw a large "E" with a small "g," a "P," and a -large "G" with a small "t" woven into the texture of the paper. - -"What do you make of that?" asked Holmes. - -"The name of the maker, no doubt; or his monogram, rather." - -"Not at all. The 'G' with the small 't' stands for -'Gesellschaft,' which is the German for 'Company.' It is a -customary contraction like our 'Co.' 'P,' of course, stands for -'Papier.' Now for the 'Eg.' Let us glance at our Continental -Gazetteer." He took down a heavy brown volume from his shelves. -"Eglow, Eglonitz--here we are, Egria. It is in a German-speaking -country--in Bohemia, not far from Carlsbad. 'Remarkable as being -the scene of the death of Wallenstein, and for its numerous -glass-factories and paper-mills.' Ha, ha, my boy, what do you -make of that?" His eyes sparkled, and he sent up a great blue -triumphant cloud from his cigarette. - -"The paper was made in Bohemia," I said. - -"Precisely. And the man who wrote the note is a German. Do you -note the peculiar construction of the sentence--'This account of -you we have from all quarters received.' A Frenchman or Russian -could not have written that. It is the German who is so -uncourteous to his verbs. It only remains, therefore, to discover -what is wanted by this German who writes upon Bohemian paper and -prefers wearing a mask to showing his face. And here he comes, if -I am not mistaken, to resolve all our doubts." - -As he spoke there was the sharp sound of horses' hoofs and -grating wheels against the curb, followed by a sharp pull at the -bell. Holmes whistled. - -"A pair, by the sound," said he. "Yes," he continued, glancing -out of the window. "A nice little brougham and a pair of -beauties. A hundred and fifty guineas apiece. There's money in -this case, Watson, if there is nothing else." - -"I think that I had better go, Holmes." - -"Not a bit, Doctor. Stay where you are. I am lost without my -Boswell. And this promises to be interesting. It would be a pity -to miss it." - -"But your client--" - -"Never mind him. I may want your help, and so may he. Here he -comes. Sit down in that armchair, Doctor, and give us your best -attention." - -A slow and heavy step, which had been heard upon the stairs and -in the passage, paused immediately outside the door. Then there -was a loud and authoritative tap. - -"Come in!" said Holmes. - -A man entered who could hardly have been less than six feet six -inches in height, with the chest and limbs of a Hercules. His -dress was rich with a richness which would, in England, be looked -upon as akin to bad taste. Heavy bands of astrakhan were slashed -across the sleeves and fronts of his double-breasted coat, while -the deep blue cloak which was thrown over his shoulders was lined -with flame-coloured silk and secured at the neck with a brooch -which consisted of a single flaming beryl. Boots which extended -halfway up his calves, and which were trimmed at the tops with -rich brown fur, completed the impression of barbaric opulence -which was suggested by his whole appearance. He carried a -broad-brimmed hat in his hand, while he wore across the upper -part of his face, extending down past the cheekbones, a black -vizard mask, which he had apparently adjusted that very moment, -for his hand was still raised to it as he entered. From the lower -part of the face he appeared to be a man of strong character, -with a thick, hanging lip, and a long, straight chin suggestive -of resolution pushed to the length of obstinacy. - -"You had my note?" he asked with a deep harsh voice and a -strongly marked German accent. "I told you that I would call." He -looked from one to the other of us, as if uncertain which to -address. - -"Pray take a seat," said Holmes. "This is my friend and -colleague, Dr. Watson, who is occasionally good enough to help me -in my cases. Whom have I the honour to address?" - -"You may address me as the Count Von Kramm, a Bohemian nobleman. -I understand that this gentleman, your friend, is a man of honour -and discretion, whom I may trust with a matter of the most -extreme importance. If not, I should much prefer to communicate -with you alone." - -I rose to go, but Holmes caught me by the wrist and pushed me -back into my chair. "It is both, or none," said he. "You may say -before this gentleman anything which you may say to me." - -The Count shrugged his broad shoulders. "Then I must begin," said -he, "by binding you both to absolute secrecy for two years; at -the end of that time the matter will be of no importance. At -present it is not too much to say that it is of such weight it -may have an influence upon European history." - -"I promise," said Holmes. - -"And I." - -"You will excuse this mask," continued our strange visitor. "The -august person who employs me wishes his agent to be unknown to -you, and I may confess at once that the title by which I have -just called myself is not exactly my own." - -"I was aware of it," said Holmes dryly. - -"The circumstances are of great delicacy, and every precaution -has to be taken to quench what might grow to be an immense -scandal and seriously compromise one of the reigning families of -Europe. To speak plainly, the matter implicates the great House -of Ormstein, hereditary kings of Bohemia." - -"I was also aware of that," murmured Holmes, settling himself -down in his armchair and closing his eyes. - -Our visitor glanced with some apparent surprise at the languid, -lounging figure of the man who had been no doubt depicted to him -as the most incisive reasoner and most energetic agent in Europe. -Holmes slowly reopened his eyes and looked impatiently at his -gigantic client. - -"If your Majesty would condescend to state your case," he -remarked, "I should be better able to advise you." - -The man sprang from his chair and paced up and down the room in -uncontrollable agitation. Then, with a gesture of desperation, he -tore the mask from his face and hurled it upon the ground. "You -are right," he cried; "I am the King. Why should I attempt to -conceal it?" - -"Why, indeed?" murmured Holmes. "Your Majesty had not spoken -before I was aware that I was addressing Wilhelm Gottsreich -Sigismond von Ormstein, Grand Duke of Cassel-Felstein, and -hereditary King of Bohemia." - -"But you can understand," said our strange visitor, sitting down -once more and passing his hand over his high white forehead, "you -can understand that I am not accustomed to doing such business in -my own person. Yet the matter was so delicate that I could not -confide it to an agent without putting myself in his power. I -have come incognito from Prague for the purpose of consulting -you." - -"Then, pray consult," said Holmes, shutting his eyes once more. - -"The facts are briefly these: Some five years ago, during a -lengthy visit to Warsaw, I made the acquaintance of the well-known -adventuress, Irene Adler. The name is no doubt familiar to you." - -"Kindly look her up in my index, Doctor," murmured Holmes without -opening his eyes. For many years he had adopted a system of -docketing all paragraphs concerning men and things, so that it -was difficult to name a subject or a person on which he could not -at once furnish information. In this case I found her biography -sandwiched in between that of a Hebrew rabbi and that of a -staff-commander who had written a monograph upon the deep-sea -fishes. - -"Let me see!" said Holmes. "Hum! Born in New Jersey in the year -1858. Contralto--hum! La Scala, hum! Prima donna Imperial Opera -of Warsaw--yes! Retired from operatic stage--ha! Living in -London--quite so! Your Majesty, as I understand, became entangled -with this young person, wrote her some compromising letters, and -is now desirous of getting those letters back." - -"Precisely so. But how--" - -"Was there a secret marriage?" - -"None." - -"No legal papers or certificates?" - -"None." - -"Then I fail to follow your Majesty. If this young person should -produce her letters for blackmailing or other purposes, how is -she to prove their authenticity?" - -"There is the writing." - -"Pooh, pooh! Forgery." - -"My private note-paper." - -"Stolen." - -"My own seal." - -"Imitated." - -"My photograph." - -"Bought." - -"We were both in the photograph." - -"Oh, dear! That is very bad! Your Majesty has indeed committed an -indiscretion." - -"I was mad--insane." - -"You have compromised yourself seriously." - -"I was only Crown Prince then. I was young. I am but thirty now." - -"It must be recovered." - -"We have tried and failed." - -"Your Majesty must pay. It must be bought." - -"She will not sell." - -"Stolen, then." - -"Five attempts have been made. Twice burglars in my pay ransacked -her house. Once we diverted her luggage when she travelled. Twice -she has been waylaid. There has been no result." - -"No sign of it?" - -"Absolutely none." - -Holmes laughed. "It is quite a pretty little problem," said he. - -"But a very serious one to me," returned the King reproachfully. - -"Very, indeed. And what does she propose to do with the -photograph?" - -"To ruin me." - -"But how?" - -"I am about to be married." - -"So I have heard." - -"To Clotilde Lothman von Saxe-Meningen, second daughter of the -King of Scandinavia. You may know the strict principles of her -family. She is herself the very soul of delicacy. A shadow of a -doubt as to my conduct would bring the matter to an end." - -"And Irene Adler?" - -"Threatens to send them the photograph. And she will do it. I -know that she will do it. You do not know her, but she has a soul -of steel. She has the face of the most beautiful of women, and -the mind of the most resolute of men. Rather than I should marry -another woman, there are no lengths to which she would not -go--none." - -"You are sure that she has not sent it yet?" - -"I am sure." - -"And why?" - -"Because she has said that she would send it on the day when the -betrothal was publicly proclaimed. That will be next Monday." - -"Oh, then we have three days yet," said Holmes with a yawn. "That -is very fortunate, as I have one or two matters of importance to -look into just at present. Your Majesty will, of course, stay in -London for the present?" - -"Certainly. You will find me at the Langham under the name of the -Count Von Kramm." - -"Then I shall drop you a line to let you know how we progress." - -"Pray do so. I shall be all anxiety." - -"Then, as to money?" - -"You have carte blanche." - -"Absolutely?" - -"I tell you that I would give one of the provinces of my kingdom -to have that photograph." - -"And for present expenses?" - -The King took a heavy chamois leather bag from under his cloak -and laid it on the table. - -"There are three hundred pounds in gold and seven hundred in -notes," he said. - -Holmes scribbled a receipt upon a sheet of his note-book and -handed it to him. - -"And Mademoiselle's address?" he asked. - -"Is Briony Lodge, Serpentine Avenue, St. John's Wood." - -Holmes took a note of it. "One other question," said he. "Was the -photograph a cabinet?" - -"It was." - -"Then, good-night, your Majesty, and I trust that we shall soon -have some good news for you. And good-night, Watson," he added, -as the wheels of the royal brougham rolled down the street. "If -you will be good enough to call to-morrow afternoon at three -o'clock I should like to chat this little matter over with you." - - -II. - -At three o'clock precisely I was at Baker Street, but Holmes had -not yet returned. The landlady informed me that he had left the -house shortly after eight o'clock in the morning. I sat down -beside the fire, however, with the intention of awaiting him, -however long he might be. I was already deeply interested in his -inquiry, for, though it was surrounded by none of the grim and -strange features which were associated with the two crimes which -I have already recorded, still, the nature of the case and the -exalted station of his client gave it a character of its own. -Indeed, apart from the nature of the investigation which my -friend had on hand, there was something in his masterly grasp of -a situation, and his keen, incisive reasoning, which made it a -pleasure to me to study his system of work, and to follow the -quick, subtle methods by which he disentangled the most -inextricable mysteries. So accustomed was I to his invariable -success that the very possibility of his failing had ceased to -enter into my head. - -It was close upon four before the door opened, and a -drunken-looking groom, ill-kempt and side-whiskered, with an -inflamed face and disreputable clothes, walked into the room. -Accustomed as I was to my friend's amazing powers in the use of -disguises, I had to look three times before I was certain that it -was indeed he. With a nod he vanished into the bedroom, whence he -emerged in five minutes tweed-suited and respectable, as of old. -Putting his hands into his pockets, he stretched out his legs in -front of the fire and laughed heartily for some minutes. - -"Well, really!" he cried, and then he choked and laughed again -until he was obliged to lie back, limp and helpless, in the -chair. - -"What is it?" - -"It's quite too funny. I am sure you could never guess how I -employed my morning, or what I ended by doing." - -"I can't imagine. I suppose that you have been watching the -habits, and perhaps the house, of Miss Irene Adler." - -"Quite so; but the sequel was rather unusual. I will tell you, -however. I left the house a little after eight o'clock this -morning in the character of a groom out of work. There is a -wonderful sympathy and freemasonry among horsey men. Be one of -them, and you will know all that there is to know. I soon found -Briony Lodge. It is a bijou villa, with a garden at the back, but -built out in front right up to the road, two stories. Chubb lock -to the door. Large sitting-room on the right side, well -furnished, with long windows almost to the floor, and those -preposterous English window fasteners which a child could open. -Behind there was nothing remarkable, save that the passage window -could be reached from the top of the coach-house. I walked round -it and examined it closely from every point of view, but without -noting anything else of interest. - -"I then lounged down the street and found, as I expected, that -there was a mews in a lane which runs down by one wall of the -garden. I lent the ostlers a hand in rubbing down their horses, -and received in exchange twopence, a glass of half and half, two -fills of shag tobacco, and as much information as I could desire -about Miss Adler, to say nothing of half a dozen other people in -the neighbourhood in whom I was not in the least interested, but -whose biographies I was compelled to listen to." - -"And what of Irene Adler?" I asked. - -"Oh, she has turned all the men's heads down in that part. She is -the daintiest thing under a bonnet on this planet. So say the -Serpentine-mews, to a man. She lives quietly, sings at concerts, -drives out at five every day, and returns at seven sharp for -dinner. Seldom goes out at other times, except when she sings. -Has only one male visitor, but a good deal of him. He is dark, -handsome, and dashing, never calls less than once a day, and -often twice. He is a Mr. Godfrey Norton, of the Inner Temple. See -the advantages of a cabman as a confidant. They had driven him -home a dozen times from Serpentine-mews, and knew all about him. -When I had listened to all they had to tell, I began to walk up -and down near Briony Lodge once more, and to think over my plan -of campaign. - -"This Godfrey Norton was evidently an important factor in the -matter. He was a lawyer. That sounded ominous. What was the -relation between them, and what the object of his repeated -visits? Was she his client, his friend, or his mistress? If the -former, she had probably transferred the photograph to his -keeping. If the latter, it was less likely. On the issue of this -question depended whether I should continue my work at Briony -Lodge, or turn my attention to the gentleman's chambers in the -Temple. It was a delicate point, and it widened the field of my -inquiry. I fear that I bore you with these details, but I have to -let you see my little difficulties, if you are to understand the -situation." - -"I am following you closely," I answered. - -"I was still balancing the matter in my mind when a hansom cab -drove up to Briony Lodge, and a gentleman sprang out. He was a -remarkably handsome man, dark, aquiline, and moustached--evidently -the man of whom I had heard. He appeared to be in a -great hurry, shouted to the cabman to wait, and brushed past the -maid who opened the door with the air of a man who was thoroughly -at home. - -"He was in the house about half an hour, and I could catch -glimpses of him in the windows of the sitting-room, pacing up and -down, talking excitedly, and waving his arms. Of her I could see -nothing. Presently he emerged, looking even more flurried than -before. As he stepped up to the cab, he pulled a gold watch from -his pocket and looked at it earnestly, 'Drive like the devil,' he -shouted, 'first to Gross & Hankey's in Regent Street, and then to -the Church of St. Monica in the Edgeware Road. Half a guinea if -you do it in twenty minutes!' - -"Away they went, and I was just wondering whether I should not do -well to follow them when up the lane came a neat little landau, -the coachman with his coat only half-buttoned, and his tie under -his ear, while all the tags of his harness were sticking out of -the buckles. It hadn't pulled up before she shot out of the hall -door and into it. I only caught a glimpse of her at the moment, -but she was a lovely woman, with a face that a man might die for. - -"'The Church of St. Monica, John,' she cried, 'and half a -sovereign if you reach it in twenty minutes.' - -"This was quite too good to lose, Watson. I was just balancing -whether I should run for it, or whether I should perch behind her -landau when a cab came through the street. The driver looked -twice at such a shabby fare, but I jumped in before he could -object. 'The Church of St. Monica,' said I, 'and half a sovereign -if you reach it in twenty minutes.' It was twenty-five minutes to -twelve, and of course it was clear enough what was in the wind. - -"My cabby drove fast. I don't think I ever drove faster, but the -others were there before us. The cab and the landau with their -steaming horses were in front of the door when I arrived. I paid -the man and hurried into the church. There was not a soul there -save the two whom I had followed and a surpliced clergyman, who -seemed to be expostulating with them. They were all three -standing in a knot in front of the altar. I lounged up the side -aisle like any other idler who has dropped into a church. -Suddenly, to my surprise, the three at the altar faced round to -me, and Godfrey Norton came running as hard as he could towards -me. - -"'Thank God,' he cried. 'You'll do. Come! Come!' - -"'What then?' I asked. - -"'Come, man, come, only three minutes, or it won't be legal.' - -"I was half-dragged up to the altar, and before I knew where I was -I found myself mumbling responses which were whispered in my ear, -and vouching for things of which I knew nothing, and generally -assisting in the secure tying up of Irene Adler, spinster, to -Godfrey Norton, bachelor. It was all done in an instant, and -there was the gentleman thanking me on the one side and the lady -on the other, while the clergyman beamed on me in front. It was -the most preposterous position in which I ever found myself in my -life, and it was the thought of it that started me laughing just -now. It seems that there had been some informality about their -license, that the clergyman absolutely refused to marry them -without a witness of some sort, and that my lucky appearance -saved the bridegroom from having to sally out into the streets in -search of a best man. The bride gave me a sovereign, and I mean -to wear it on my watch-chain in memory of the occasion." - -"This is a very unexpected turn of affairs," said I; "and what -then?" - -"Well, I found my plans very seriously menaced. It looked as if -the pair might take an immediate departure, and so necessitate -very prompt and energetic measures on my part. At the church -door, however, they separated, he driving back to the Temple, and -she to her own house. 'I shall drive out in the park at five as -usual,' she said as she left him. I heard no more. They drove -away in different directions, and I went off to make my own -arrangements." - -"Which are?" - -"Some cold beef and a glass of beer," he answered, ringing the -bell. "I have been too busy to think of food, and I am likely to -be busier still this evening. By the way, Doctor, I shall want -your co-operation." - -"I shall be delighted." - -"You don't mind breaking the law?" - -"Not in the least." - -"Nor running a chance of arrest?" - -"Not in a good cause." - -"Oh, the cause is excellent!" - -"Then I am your man." - -"I was sure that I might rely on you." - -"But what is it you wish?" - -"When Mrs. Turner has brought in the tray I will make it clear to -you. Now," he said as he turned hungrily on the simple fare that -our landlady had provided, "I must discuss it while I eat, for I -have not much time. It is nearly five now. In two hours we must -be on the scene of action. Miss Irene, or Madame, rather, returns -from her drive at seven. We must be at Briony Lodge to meet her." - -"And what then?" - -"You must leave that to me. I have already arranged what is to -occur. There is only one point on which I must insist. You must -not interfere, come what may. You understand?" - -"I am to be neutral?" - -"To do nothing whatever. There will probably be some small -unpleasantness. Do not join in it. It will end in my being -conveyed into the house. Four or five minutes afterwards the -sitting-room window will open. You are to station yourself close -to that open window." - -"Yes." - -"You are to watch me, for I will be visible to you." - -"Yes." - -"And when I raise my hand--so--you will throw into the room what -I give you to throw, and will, at the same time, raise the cry of -fire. You quite follow me?" - -"Entirely." - -"It is nothing very formidable," he said, taking a long cigar-shaped -roll from his pocket. "It is an ordinary plumber's smoke-rocket, -fitted with a cap at either end to make it self-lighting. -Your task is confined to that. When you raise your cry of fire, -it will be taken up by quite a number of people. You may then -walk to the end of the street, and I will rejoin you in ten -minutes. I hope that I have made myself clear?" - -"I am to remain neutral, to get near the window, to watch you, -and at the signal to throw in this object, then to raise the cry -of fire, and to wait you at the corner of the street." - -"Precisely." - -"Then you may entirely rely on me." - -"That is excellent. I think, perhaps, it is almost time that I -prepare for the new role I have to play." - -He disappeared into his bedroom and returned in a few minutes in -the character of an amiable and simple-minded Nonconformist -clergyman. His broad black hat, his baggy trousers, his white -tie, his sympathetic smile, and general look of peering and -benevolent curiosity were such as Mr. John Hare alone could have -equalled. It was not merely that Holmes changed his costume. His -expression, his manner, his very soul seemed to vary with every -fresh part that he assumed. The stage lost a fine actor, even as -science lost an acute reasoner, when he became a specialist in -crime. - -It was a quarter past six when we left Baker Street, and it still -wanted ten minutes to the hour when we found ourselves in -Serpentine Avenue. It was already dusk, and the lamps were just -being lighted as we paced up and down in front of Briony Lodge, -waiting for the coming of its occupant. The house was just such -as I had pictured it from Sherlock Holmes' succinct description, -but the locality appeared to be less private than I expected. On -the contrary, for a small street in a quiet neighbourhood, it was -remarkably animated. There was a group of shabbily dressed men -smoking and laughing in a corner, a scissors-grinder with his -wheel, two guardsmen who were flirting with a nurse-girl, and -several well-dressed young men who were lounging up and down with -cigars in their mouths. - -"You see," remarked Holmes, as we paced to and fro in front of -the house, "this marriage rather simplifies matters. The -photograph becomes a double-edged weapon now. The chances are -that she would be as averse to its being seen by Mr. Godfrey -Norton, as our client is to its coming to the eyes of his -princess. Now the question is, Where are we to find the -photograph?" - -"Where, indeed?" - -"It is most unlikely that she carries it about with her. It is -cabinet size. Too large for easy concealment about a woman's -dress. She knows that the King is capable of having her waylaid -and searched. Two attempts of the sort have already been made. We -may take it, then, that she does not carry it about with her." - -"Where, then?" - -"Her banker or her lawyer. There is that double possibility. But -I am inclined to think neither. Women are naturally secretive, -and they like to do their own secreting. Why should she hand it -over to anyone else? She could trust her own guardianship, but -she could not tell what indirect or political influence might be -brought to bear upon a business man. Besides, remember that she -had resolved to use it within a few days. It must be where she -can lay her hands upon it. It must be in her own house." - -"But it has twice been burgled." - -"Pshaw! They did not know how to look." - -"But how will you look?" - -"I will not look." - -"What then?" - -"I will get her to show me." - -"But she will refuse." - -"She will not be able to. But I hear the rumble of wheels. It is -her carriage. Now carry out my orders to the letter." - -As he spoke the gleam of the side-lights of a carriage came round -the curve of the avenue. It was a smart little landau which -rattled up to the door of Briony Lodge. As it pulled up, one of -the loafing men at the corner dashed forward to open the door in -the hope of earning a copper, but was elbowed away by another -loafer, who had rushed up with the same intention. A fierce -quarrel broke out, which was increased by the two guardsmen, who -took sides with one of the loungers, and by the scissors-grinder, -who was equally hot upon the other side. A blow was struck, and -in an instant the lady, who had stepped from her carriage, was -the centre of a little knot of flushed and struggling men, who -struck savagely at each other with their fists and sticks. Holmes -dashed into the crowd to protect the lady; but just as he reached -her he gave a cry and dropped to the ground, with the blood -running freely down his face. At his fall the guardsmen took to -their heels in one direction and the loungers in the other, while -a number of better-dressed people, who had watched the scuffle -without taking part in it, crowded in to help the lady and to -attend to the injured man. Irene Adler, as I will still call her, -had hurried up the steps; but she stood at the top with her -superb figure outlined against the lights of the hall, looking -back into the street. - -"Is the poor gentleman much hurt?" she asked. - -"He is dead," cried several voices. - -"No, no, there's life in him!" shouted another. "But he'll be -gone before you can get him to hospital." - -"He's a brave fellow," said a woman. "They would have had the -lady's purse and watch if it hadn't been for him. They were a -gang, and a rough one, too. Ah, he's breathing now." - -"He can't lie in the street. May we bring him in, marm?" - -"Surely. Bring him into the sitting-room. There is a comfortable -sofa. This way, please!" - -Slowly and solemnly he was borne into Briony Lodge and laid out -in the principal room, while I still observed the proceedings -from my post by the window. The lamps had been lit, but the -blinds had not been drawn, so that I could see Holmes as he lay -upon the couch. I do not know whether he was seized with -compunction at that moment for the part he was playing, but I -know that I never felt more heartily ashamed of myself in my life -than when I saw the beautiful creature against whom I was -conspiring, or the grace and kindliness with which she waited -upon the injured man. And yet it would be the blackest treachery -to Holmes to draw back now from the part which he had intrusted -to me. I hardened my heart, and took the smoke-rocket from under -my ulster. After all, I thought, we are not injuring her. We are -but preventing her from injuring another. - -Holmes had sat up upon the couch, and I saw him motion like a man -who is in need of air. A maid rushed across and threw open the -window. At the same instant I saw him raise his hand and at the -signal I tossed my rocket into the room with a cry of "Fire!" The -word was no sooner out of my mouth than the whole crowd of -spectators, well dressed and ill--gentlemen, ostlers, and -servant-maids--joined in a general shriek of "Fire!" Thick clouds -of smoke curled through the room and out at the open window. I -caught a glimpse of rushing figures, and a moment later the voice -of Holmes from within assuring them that it was a false alarm. -Slipping through the shouting crowd I made my way to the corner -of the street, and in ten minutes was rejoiced to find my -friend's arm in mine, and to get away from the scene of uproar. -He walked swiftly and in silence for some few minutes until we -had turned down one of the quiet streets which lead towards the -Edgeware Road. - -"You did it very nicely, Doctor," he remarked. "Nothing could -have been better. It is all right." - -"You have the photograph?" - -"I know where it is." - -"And how did you find out?" - -"She showed me, as I told you she would." - -"I am still in the dark." - -"I do not wish to make a mystery," said he, laughing. "The matter -was perfectly simple. You, of course, saw that everyone in the -street was an accomplice. They were all engaged for the evening." - -"I guessed as much." - -"Then, when the row broke out, I had a little moist red paint in -the palm of my hand. I rushed forward, fell down, clapped my hand -to my face, and became a piteous spectacle. It is an old trick." - -"That also I could fathom." - -"Then they carried me in. She was bound to have me in. What else -could she do? And into her sitting-room, which was the very room -which I suspected. It lay between that and her bedroom, and I was -determined to see which. They laid me on a couch, I motioned for -air, they were compelled to open the window, and you had your -chance." - -"How did that help you?" - -"It was all-important. When a woman thinks that her house is on -fire, her instinct is at once to rush to the thing which she -values most. It is a perfectly overpowering impulse, and I have -more than once taken advantage of it. In the case of the -Darlington substitution scandal it was of use to me, and also in -the Arnsworth Castle business. A married woman grabs at her baby; -an unmarried one reaches for her jewel-box. Now it was clear to -me that our lady of to-day had nothing in the house more precious -to her than what we are in quest of. She would rush to secure it. -The alarm of fire was admirably done. The smoke and shouting were -enough to shake nerves of steel. She responded beautifully. The -photograph is in a recess behind a sliding panel just above the -right bell-pull. She was there in an instant, and I caught a -glimpse of it as she half-drew it out. When I cried out that it -was a false alarm, she replaced it, glanced at the rocket, rushed -from the room, and I have not seen her since. I rose, and, making -my excuses, escaped from the house. I hesitated whether to -attempt to secure the photograph at once; but the coachman had -come in, and as he was watching me narrowly it seemed safer to -wait. A little over-precipitance may ruin all." - -"And now?" I asked. - -"Our quest is practically finished. I shall call with the King -to-morrow, and with you, if you care to come with us. We will be -shown into the sitting-room to wait for the lady, but it is -probable that when she comes she may find neither us nor the -photograph. It might be a satisfaction to his Majesty to regain -it with his own hands." - -"And when will you call?" - -"At eight in the morning. She will not be up, so that we shall -have a clear field. Besides, we must be prompt, for this marriage -may mean a complete change in her life and habits. I must wire to -the King without delay." - -We had reached Baker Street and had stopped at the door. He was -searching his pockets for the key when someone passing said: - -"Good-night, Mister Sherlock Holmes." - -There were several people on the pavement at the time, but the -greeting appeared to come from a slim youth in an ulster who had -hurried by. - -"I've heard that voice before," said Holmes, staring down the -dimly lit street. "Now, I wonder who the deuce that could have -been." - - -III. - -I slept at Baker Street that night, and we were engaged upon our -toast and coffee in the morning when the King of Bohemia rushed -into the room. - -"You have really got it!" he cried, grasping Sherlock Holmes by -either shoulder and looking eagerly into his face. - -"Not yet." - -"But you have hopes?" - -"I have hopes." - -"Then, come. I am all impatience to be gone." - -"We must have a cab." - -"No, my brougham is waiting." - -"Then that will simplify matters." We descended and started off -once more for Briony Lodge. - -"Irene Adler is married," remarked Holmes. - -"Married! When?" - -"Yesterday." - -"But to whom?" - -"To an English lawyer named Norton." - -"But she could not love him." - -"I am in hopes that she does." - -"And why in hopes?" - -"Because it would spare your Majesty all fear of future -annoyance. If the lady loves her husband, she does not love your -Majesty. If she does not love your Majesty, there is no reason -why she should interfere with your Majesty's plan." - -"It is true. And yet--Well! I wish she had been of my own -station! What a queen she would have made!" He relapsed into a -moody silence, which was not broken until we drew up in -Serpentine Avenue. - -The door of Briony Lodge was open, and an elderly woman stood -upon the steps. She watched us with a sardonic eye as we stepped -from the brougham. - -"Mr. Sherlock Holmes, I believe?" said she. - -"I am Mr. Holmes," answered my companion, looking at her with a -questioning and rather startled gaze. - -"Indeed! My mistress told me that you were likely to call. She -left this morning with her husband by the 5:15 train from Charing -Cross for the Continent." - -"What!" Sherlock Holmes staggered back, white with chagrin and -surprise. "Do you mean that she has left England?" - -"Never to return." - -"And the papers?" asked the King hoarsely. "All is lost." - -"We shall see." He pushed past the servant and rushed into the -drawing-room, followed by the King and myself. The furniture was -scattered about in every direction, with dismantled shelves and -open drawers, as if the lady had hurriedly ransacked them before -her flight. Holmes rushed at the bell-pull, tore back a small -sliding shutter, and, plunging in his hand, pulled out a -photograph and a letter. The photograph was of Irene Adler -herself in evening dress, the letter was superscribed to -"Sherlock Holmes, Esq. To be left till called for." My friend -tore it open and we all three read it together. It was dated at -midnight of the preceding night and ran in this way: - -"MY DEAR MR. SHERLOCK HOLMES,--You really did it very well. You -took me in completely. Until after the alarm of fire, I had not a -suspicion. But then, when I found how I had betrayed myself, I -began to think. I had been warned against you months ago. I had -been told that if the King employed an agent it would certainly -be you. And your address had been given me. Yet, with all this, -you made me reveal what you wanted to know. Even after I became -suspicious, I found it hard to think evil of such a dear, kind -old clergyman. But, you know, I have been trained as an actress -myself. Male costume is nothing new to me. I often take advantage -of the freedom which it gives. I sent John, the coachman, to -watch you, ran up stairs, got into my walking-clothes, as I call -them, and came down just as you departed. - -"Well, I followed you to your door, and so made sure that I was -really an object of interest to the celebrated Mr. Sherlock -Holmes. Then I, rather imprudently, wished you good-night, and -started for the Temple to see my husband. - -"We both thought the best resource was flight, when pursued by -so formidable an antagonist; so you will find the nest empty when -you call to-morrow. As to the photograph, your client may rest in -peace. I love and am loved by a better man than he. The King may -do what he will without hindrance from one whom he has cruelly -wronged. I keep it only to safeguard myself, and to preserve a -weapon which will always secure me from any steps which he might -take in the future. I leave a photograph which he might care to -possess; and I remain, dear Mr. Sherlock Holmes, - - "Very truly yours, - "IRENE NORTON, ne ADLER." - -"What a woman--oh, what a woman!" cried the King of Bohemia, when -we had all three read this epistle. "Did I not tell you how quick -and resolute she was? Would she not have made an admirable queen? -Is it not a pity that she was not on my level?" - -"From what I have seen of the lady she seems indeed to be on a -very different level to your Majesty," said Holmes coldly. "I am -sorry that I have not been able to bring your Majesty's business -to a more successful conclusion." - -"On the contrary, my dear sir," cried the King; "nothing could be -more successful. I know that her word is inviolate. The -photograph is now as safe as if it were in the fire." - -"I am glad to hear your Majesty say so." - -"I am immensely indebted to you. Pray tell me in what way I can -reward you. This ring--" He slipped an emerald snake ring from -his finger and held it out upon the palm of his hand. - -"Your Majesty has something which I should value even more -highly," said Holmes. - -"You have but to name it." - -"This photograph!" - -The King stared at him in amazement. - -"Irene's photograph!" he cried. "Certainly, if you wish it." - -"I thank your Majesty. Then there is no more to be done in the -matter. I have the honour to wish you a very good-morning." He -bowed, and, turning away without observing the hand which the -King had stretched out to him, he set off in my company for his -chambers. - -And that was how a great scandal threatened to affect the kingdom -of Bohemia, and how the best plans of Mr. Sherlock Holmes were -beaten by a woman's wit. He used to make merry over the -cleverness of women, but I have not heard him do it of late. And -when he speaks of Irene Adler, or when he refers to her -photograph, it is always under the honourable title of the woman. - - - -ADVENTURE II. THE RED-HEADED LEAGUE - -I had called upon my friend, Mr. Sherlock Holmes, one day in the -autumn of last year and found him in deep conversation with a -very stout, florid-faced, elderly gentleman with fiery red hair. -With an apology for my intrusion, I was about to withdraw when -Holmes pulled me abruptly into the room and closed the door -behind me. - -"You could not possibly have come at a better time, my dear -Watson," he said cordially. - -"I was afraid that you were engaged." - -"So I am. Very much so." - -"Then I can wait in the next room." - -"Not at all. This gentleman, Mr. Wilson, has been my partner and -helper in many of my most successful cases, and I have no -doubt that he will be of the utmost use to me in yours also." - -The stout gentleman half rose from his chair and gave a bob of -greeting, with a quick little questioning glance from his small -fat-encircled eyes. - -"Try the settee," said Holmes, relapsing into his armchair and -putting his fingertips together, as was his custom when in -judicial moods. "I know, my dear Watson, that you share my love -of all that is bizarre and outside the conventions and humdrum -routine of everyday life. You have shown your relish for it by -the enthusiasm which has prompted you to chronicle, and, if you -will excuse my saying so, somewhat to embellish so many of my own -little adventures." - -"Your cases have indeed been of the greatest interest to me," I -observed. - -"You will remember that I remarked the other day, just before we -went into the very simple problem presented by Miss Mary -Sutherland, that for strange effects and extraordinary -combinations we must go to life itself, which is always far more -daring than any effort of the imagination." - -"A proposition which I took the liberty of doubting." - -"You did, Doctor, but none the less you must come round to my -view, for otherwise I shall keep on piling fact upon fact on you -until your reason breaks down under them and acknowledges me to -be right. Now, Mr. Jabez Wilson here has been good enough to call -upon me this morning, and to begin a narrative which promises to -be one of the most singular which I have listened to for some -time. You have heard me remark that the strangest and most unique -things are very often connected not with the larger but with the -smaller crimes, and occasionally, indeed, where there is room for -doubt whether any positive crime has been committed. As far as I -have heard it is impossible for me to say whether the present -case is an instance of crime or not, but the course of events is -certainly among the most singular that I have ever listened to. -Perhaps, Mr. Wilson, you would have the great kindness to -recommence your narrative. I ask you not merely because my friend -Dr. Watson has not heard the opening part but also because the -peculiar nature of the story makes me anxious to have every -possible detail from your lips. As a rule, when I have heard some -slight indication of the course of events, I am able to guide -myself by the thousands of other similar cases which occur to my -memory. In the present instance I am forced to admit that the -facts are, to the best of my belief, unique." - -The portly client puffed out his chest with an appearance of some -little pride and pulled a dirty and wrinkled newspaper from the -inside pocket of his greatcoat. As he glanced down the -advertisement column, with his head thrust forward and the paper -flattened out upon his knee, I took a good look at the man and -endeavoured, after the fashion of my companion, to read the -indications which might be presented by his dress or appearance. - -I did not gain very much, however, by my inspection. Our visitor -bore every mark of being an average commonplace British -tradesman, obese, pompous, and slow. He wore rather baggy grey -shepherd's check trousers, a not over-clean black frock-coat, -unbuttoned in the front, and a drab waistcoat with a heavy brassy -Albert chain, and a square pierced bit of metal dangling down as -an ornament. A frayed top-hat and a faded brown overcoat with a -wrinkled velvet collar lay upon a chair beside him. Altogether, -look as I would, there was nothing remarkable about the man save -his blazing red head, and the expression of extreme chagrin and -discontent upon his features. - -Sherlock Holmes' quick eye took in my occupation, and he shook -his head with a smile as he noticed my questioning glances. -"Beyond the obvious facts that he has at some time done manual -labour, that he takes snuff, that he is a Freemason, that he has -been in China, and that he has done a considerable amount of -writing lately, I can deduce nothing else." - -Mr. Jabez Wilson started up in his chair, with his forefinger -upon the paper, but his eyes upon my companion. - -"How, in the name of good-fortune, did you know all that, Mr. -Holmes?" he asked. "How did you know, for example, that I did -manual labour. It's as true as gospel, for I began as a ship's -carpenter." - -"Your hands, my dear sir. Your right hand is quite a size larger -than your left. You have worked with it, and the muscles are more -developed." - -"Well, the snuff, then, and the Freemasonry?" - -"I won't insult your intelligence by telling you how I read that, -especially as, rather against the strict rules of your order, you -use an arc-and-compass breastpin." - -"Ah, of course, I forgot that. But the writing?" - -"What else can be indicated by that right cuff so very shiny for -five inches, and the left one with the smooth patch near the -elbow where you rest it upon the desk?" - -"Well, but China?" - -"The fish that you have tattooed immediately above your right -wrist could only have been done in China. I have made a small -study of tattoo marks and have even contributed to the literature -of the subject. That trick of staining the fishes' scales of a -delicate pink is quite peculiar to China. When, in addition, I -see a Chinese coin hanging from your watch-chain, the matter -becomes even more simple." - -Mr. Jabez Wilson laughed heavily. "Well, I never!" said he. "I -thought at first that you had done something clever, but I see -that there was nothing in it, after all." - -"I begin to think, Watson," said Holmes, "that I make a mistake -in explaining. 'Omne ignotum pro magnifico,' you know, and my -poor little reputation, such as it is, will suffer shipwreck if I -am so candid. Can you not find the advertisement, Mr. Wilson?" - -"Yes, I have got it now," he answered with his thick red finger -planted halfway down the column. "Here it is. This is what began -it all. You just read it for yourself, sir." - -I took the paper from him and read as follows: - -"TO THE RED-HEADED LEAGUE: On account of the bequest of the late -Ezekiah Hopkins, of Lebanon, Pennsylvania, U. S. A., there is now -another vacancy open which entitles a member of the League to a -salary of 4 pounds a week for purely nominal services. All -red-headed men who are sound in body and mind and above the age -of twenty-one years, are eligible. Apply in person on Monday, at -eleven o'clock, to Duncan Ross, at the offices of the League, 7 -Pope's Court, Fleet Street." - -"What on earth does this mean?" I ejaculated after I had twice -read over the extraordinary announcement. - -Holmes chuckled and wriggled in his chair, as was his habit when -in high spirits. "It is a little off the beaten track, isn't it?" -said he. "And now, Mr. Wilson, off you go at scratch and tell us -all about yourself, your household, and the effect which this -advertisement had upon your fortunes. You will first make a note, -Doctor, of the paper and the date." - -"It is The Morning Chronicle of April 27, 1890. Just two months -ago." - -"Very good. Now, Mr. Wilson?" - -"Well, it is just as I have been telling you, Mr. Sherlock -Holmes," said Jabez Wilson, mopping his forehead; "I have a small -pawnbroker's business at Coburg Square, near the City. It's not a -very large affair, and of late years it has not done more than -just give me a living. I used to be able to keep two assistants, -but now I only keep one; and I would have a job to pay him but -that he is willing to come for half wages so as to learn the -business." - -"What is the name of this obliging youth?" asked Sherlock Holmes. - -"His name is Vincent Spaulding, and he's not such a youth, -either. It's hard to say his age. I should not wish a smarter -assistant, Mr. Holmes; and I know very well that he could better -himself and earn twice what I am able to give him. But, after -all, if he is satisfied, why should I put ideas in his head?" - -"Why, indeed? You seem most fortunate in having an employ who -comes under the full market price. It is not a common experience -among employers in this age. I don't know that your assistant is -not as remarkable as your advertisement." - -"Oh, he has his faults, too," said Mr. Wilson. "Never was such a -fellow for photography. Snapping away with a camera when he ought -to be improving his mind, and then diving down into the cellar -like a rabbit into its hole to develop his pictures. That is his -main fault, but on the whole he's a good worker. There's no vice -in him." - -"He is still with you, I presume?" - -"Yes, sir. He and a girl of fourteen, who does a bit of simple -cooking and keeps the place clean--that's all I have in the -house, for I am a widower and never had any family. We live very -quietly, sir, the three of us; and we keep a roof over our heads -and pay our debts, if we do nothing more. - -"The first thing that put us out was that advertisement. -Spaulding, he came down into the office just this day eight -weeks, with this very paper in his hand, and he says: - -"'I wish to the Lord, Mr. Wilson, that I was a red-headed man.' - -"'Why that?' I asks. - -"'Why,' says he, 'here's another vacancy on the League of the -Red-headed Men. It's worth quite a little fortune to any man who -gets it, and I understand that there are more vacancies than -there are men, so that the trustees are at their wits' end what -to do with the money. If my hair would only change colour, here's -a nice little crib all ready for me to step into.' - -"'Why, what is it, then?' I asked. You see, Mr. Holmes, I am a -very stay-at-home man, and as my business came to me instead of -my having to go to it, I was often weeks on end without putting -my foot over the door-mat. In that way I didn't know much of what -was going on outside, and I was always glad of a bit of news. - -"'Have you never heard of the League of the Red-headed Men?' he -asked with his eyes open. - -"'Never.' - -"'Why, I wonder at that, for you are eligible yourself for one -of the vacancies.' - -"'And what are they worth?' I asked. - -"'Oh, merely a couple of hundred a year, but the work is slight, -and it need not interfere very much with one's other -occupations.' - -"Well, you can easily think that that made me prick up my ears, -for the business has not been over-good for some years, and an -extra couple of hundred would have been very handy. - -"'Tell me all about it,' said I. - -"'Well,' said he, showing me the advertisement, 'you can see for -yourself that the League has a vacancy, and there is the address -where you should apply for particulars. As far as I can make out, -the League was founded by an American millionaire, Ezekiah -Hopkins, who was very peculiar in his ways. He was himself -red-headed, and he had a great sympathy for all red-headed men; -so when he died it was found that he had left his enormous -fortune in the hands of trustees, with instructions to apply the -interest to the providing of easy berths to men whose hair is of -that colour. From all I hear it is splendid pay and very little to -do.' - -"'But,' said I, 'there would be millions of red-headed men who -would apply.' - -"'Not so many as you might think,' he answered. 'You see it is -really confined to Londoners, and to grown men. This American had -started from London when he was young, and he wanted to do the -old town a good turn. Then, again, I have heard it is no use your -applying if your hair is light red, or dark red, or anything but -real bright, blazing, fiery red. Now, if you cared to apply, Mr. -Wilson, you would just walk in; but perhaps it would hardly be -worth your while to put yourself out of the way for the sake of a -few hundred pounds.' - -"Now, it is a fact, gentlemen, as you may see for yourselves, -that my hair is of a very full and rich tint, so that it seemed -to me that if there was to be any competition in the matter I -stood as good a chance as any man that I had ever met. Vincent -Spaulding seemed to know so much about it that I thought he might -prove useful, so I just ordered him to put up the shutters for -the day and to come right away with me. He was very willing to -have a holiday, so we shut the business up and started off for -the address that was given us in the advertisement. - -"I never hope to see such a sight as that again, Mr. Holmes. From -north, south, east, and west every man who had a shade of red in -his hair had tramped into the city to answer the advertisement. -Fleet Street was choked with red-headed folk, and Pope's Court -looked like a coster's orange barrow. I should not have thought -there were so many in the whole country as were brought together -by that single advertisement. Every shade of colour they -were--straw, lemon, orange, brick, Irish-setter, liver, clay; -but, as Spaulding said, there were not many who had the real -vivid flame-coloured tint. When I saw how many were waiting, I -would have given it up in despair; but Spaulding would not hear -of it. How he did it I could not imagine, but he pushed and -pulled and butted until he got me through the crowd, and right up -to the steps which led to the office. There was a double stream -upon the stair, some going up in hope, and some coming back -dejected; but we wedged in as well as we could and soon found -ourselves in the office." - -"Your experience has been a most entertaining one," remarked -Holmes as his client paused and refreshed his memory with a huge -pinch of snuff. "Pray continue your very interesting statement." - -"There was nothing in the office but a couple of wooden chairs -and a deal table, behind which sat a small man with a head that -was even redder than mine. He said a few words to each candidate -as he came up, and then he always managed to find some fault in -them which would disqualify them. Getting a vacancy did not seem -to be such a very easy matter, after all. However, when our turn -came the little man was much more favourable to me than to any of -the others, and he closed the door as we entered, so that he -might have a private word with us. - -"'This is Mr. Jabez Wilson,' said my assistant, 'and he is -willing to fill a vacancy in the League.' - -"'And he is admirably suited for it,' the other answered. 'He has -every requirement. I cannot recall when I have seen anything so -fine.' He took a step backward, cocked his head on one side, and -gazed at my hair until I felt quite bashful. Then suddenly he -plunged forward, wrung my hand, and congratulated me warmly on my -success. - -"'It would be injustice to hesitate,' said he. 'You will, -however, I am sure, excuse me for taking an obvious precaution.' -With that he seized my hair in both his hands, and tugged until I -yelled with the pain. 'There is water in your eyes,' said he as -he released me. 'I perceive that all is as it should be. But we -have to be careful, for we have twice been deceived by wigs and -once by paint. I could tell you tales of cobbler's wax which -would disgust you with human nature.' He stepped over to the -window and shouted through it at the top of his voice that the -vacancy was filled. A groan of disappointment came up from below, -and the folk all trooped away in different directions until there -was not a red-head to be seen except my own and that of the -manager. - -"'My name,' said he, 'is Mr. Duncan Ross, and I am myself one of -the pensioners upon the fund left by our noble benefactor. Are -you a married man, Mr. Wilson? Have you a family?' - -"I answered that I had not. - -"His face fell immediately. - -"'Dear me!' he said gravely, 'that is very serious indeed! I am -sorry to hear you say that. The fund was, of course, for the -propagation and spread of the red-heads as well as for their -maintenance. It is exceedingly unfortunate that you should be a -bachelor.' - -"My face lengthened at this, Mr. Holmes, for I thought that I was -not to have the vacancy after all; but after thinking it over for -a few minutes he said that it would be all right. - -"'In the case of another,' said he, 'the objection might be -fatal, but we must stretch a point in favour of a man with such a -head of hair as yours. When shall you be able to enter upon your -new duties?' - -"'Well, it is a little awkward, for I have a business already,' -said I. - -"'Oh, never mind about that, Mr. Wilson!' said Vincent Spaulding. -'I should be able to look after that for you.' - -"'What would be the hours?' I asked. - -"'Ten to two.' - -"Now a pawnbroker's business is mostly done of an evening, Mr. -Holmes, especially Thursday and Friday evening, which is just -before pay-day; so it would suit me very well to earn a little in -the mornings. Besides, I knew that my assistant was a good man, -and that he would see to anything that turned up. - -"'That would suit me very well,' said I. 'And the pay?' - -"'Is 4 pounds a week.' - -"'And the work?' - -"'Is purely nominal.' - -"'What do you call purely nominal?' - -"'Well, you have to be in the office, or at least in the -building, the whole time. If you leave, you forfeit your whole -position forever. The will is very clear upon that point. You -don't comply with the conditions if you budge from the office -during that time.' - -"'It's only four hours a day, and I should not think of leaving,' -said I. - -"'No excuse will avail,' said Mr. Duncan Ross; 'neither sickness -nor business nor anything else. There you must stay, or you lose -your billet.' - -"'And the work?' - -"'Is to copy out the "Encyclopaedia Britannica." There is the first -volume of it in that press. You must find your own ink, pens, and -blotting-paper, but we provide this table and chair. Will you be -ready to-morrow?' - -"'Certainly,' I answered. - -"'Then, good-bye, Mr. Jabez Wilson, and let me congratulate you -once more on the important position which you have been fortunate -enough to gain.' He bowed me out of the room and I went home with -my assistant, hardly knowing what to say or do, I was so pleased -at my own good fortune. - -"Well, I thought over the matter all day, and by evening I was in -low spirits again; for I had quite persuaded myself that the -whole affair must be some great hoax or fraud, though what its -object might be I could not imagine. It seemed altogether past -belief that anyone could make such a will, or that they would pay -such a sum for doing anything so simple as copying out the -'Encyclopaedia Britannica.' Vincent Spaulding did what he could to -cheer me up, but by bedtime I had reasoned myself out of the -whole thing. However, in the morning I determined to have a look -at it anyhow, so I bought a penny bottle of ink, and with a -quill-pen, and seven sheets of foolscap paper, I started off for -Pope's Court. - -"Well, to my surprise and delight, everything was as right as -possible. The table was set out ready for me, and Mr. Duncan Ross -was there to see that I got fairly to work. He started me off -upon the letter A, and then he left me; but he would drop in from -time to time to see that all was right with me. At two o'clock he -bade me good-day, complimented me upon the amount that I had -written, and locked the door of the office after me. - -"This went on day after day, Mr. Holmes, and on Saturday the -manager came in and planked down four golden sovereigns for my -week's work. It was the same next week, and the same the week -after. Every morning I was there at ten, and every afternoon I -left at two. By degrees Mr. Duncan Ross took to coming in only -once of a morning, and then, after a time, he did not come in at -all. Still, of course, I never dared to leave the room for an -instant, for I was not sure when he might come, and the billet -was such a good one, and suited me so well, that I would not risk -the loss of it. - -"Eight weeks passed away like this, and I had written about -Abbots and Archery and Armour and Architecture and Attica, and -hoped with diligence that I might get on to the B's before very -long. It cost me something in foolscap, and I had pretty nearly -filled a shelf with my writings. And then suddenly the whole -business came to an end." - -"To an end?" - -"Yes, sir. And no later than this morning. I went to my work as -usual at ten o'clock, but the door was shut and locked, with a -little square of cardboard hammered on to the middle of the -panel with a tack. Here it is, and you can read for yourself." - -He held up a piece of white cardboard about the size of a sheet -of note-paper. It read in this fashion: - - THE RED-HEADED LEAGUE - - IS - - DISSOLVED. - - October 9, 1890. - -Sherlock Holmes and I surveyed this curt announcement and the -rueful face behind it, until the comical side of the affair so -completely overtopped every other consideration that we both -burst out into a roar of laughter. - -"I cannot see that there is anything very funny," cried our -client, flushing up to the roots of his flaming head. "If you can -do nothing better than laugh at me, I can go elsewhere." - -"No, no," cried Holmes, shoving him back into the chair from -which he had half risen. "I really wouldn't miss your case for -the world. It is most refreshingly unusual. But there is, if you -will excuse my saying so, something just a little funny about it. -Pray what steps did you take when you found the card upon the -door?" - -"I was staggered, sir. I did not know what to do. Then I called -at the offices round, but none of them seemed to know anything -about it. Finally, I went to the landlord, who is an accountant -living on the ground-floor, and I asked him if he could tell me -what had become of the Red-headed League. He said that he had -never heard of any such body. Then I asked him who Mr. Duncan -Ross was. He answered that the name was new to him. - -"'Well,' said I, 'the gentleman at No. 4.' - -"'What, the red-headed man?' - -"'Yes.' - -"'Oh,' said he, 'his name was William Morris. He was a solicitor -and was using my room as a temporary convenience until his new -premises were ready. He moved out yesterday.' - -"'Where could I find him?' - -"'Oh, at his new offices. He did tell me the address. Yes, 17 -King Edward Street, near St. Paul's.' - -"I started off, Mr. Holmes, but when I got to that address it was -a manufactory of artificial knee-caps, and no one in it had ever -heard of either Mr. William Morris or Mr. Duncan Ross." - -"And what did you do then?" asked Holmes. - -"I went home to Saxe-Coburg Square, and I took the advice of my -assistant. But he could not help me in any way. He could only say -that if I waited I should hear by post. But that was not quite -good enough, Mr. Holmes. I did not wish to lose such a place -without a struggle, so, as I had heard that you were good enough -to give advice to poor folk who were in need of it, I came right -away to you." - -"And you did very wisely," said Holmes. "Your case is an -exceedingly remarkable one, and I shall be happy to look into it. -From what you have told me I think that it is possible that -graver issues hang from it than might at first sight appear." - -"Grave enough!" said Mr. Jabez Wilson. "Why, I have lost four -pound a week." - -"As far as you are personally concerned," remarked Holmes, "I do -not see that you have any grievance against this extraordinary -league. On the contrary, you are, as I understand, richer by some -30 pounds, to say nothing of the minute knowledge which you have -gained on every subject which comes under the letter A. You have -lost nothing by them." - -"No, sir. But I want to find out about them, and who they are, -and what their object was in playing this prank--if it was a -prank--upon me. It was a pretty expensive joke for them, for it -cost them two and thirty pounds." - -"We shall endeavour to clear up these points for you. And, first, -one or two questions, Mr. Wilson. This assistant of yours who -first called your attention to the advertisement--how long had he -been with you?" - -"About a month then." - -"How did he come?" - -"In answer to an advertisement." - -"Was he the only applicant?" - -"No, I had a dozen." - -"Why did you pick him?" - -"Because he was handy and would come cheap." - -"At half-wages, in fact." - -"Yes." - -"What is he like, this Vincent Spaulding?" - -"Small, stout-built, very quick in his ways, no hair on his face, -though he's not short of thirty. Has a white splash of acid upon -his forehead." - -Holmes sat up in his chair in considerable excitement. "I thought -as much," said he. "Have you ever observed that his ears are -pierced for earrings?" - -"Yes, sir. He told me that a gipsy had done it for him when he -was a lad." - -"Hum!" said Holmes, sinking back in deep thought. "He is still -with you?" - -"Oh, yes, sir; I have only just left him." - -"And has your business been attended to in your absence?" - -"Nothing to complain of, sir. There's never very much to do of a -morning." - -"That will do, Mr. Wilson. I shall be happy to give you an -opinion upon the subject in the course of a day or two. To-day is -Saturday, and I hope that by Monday we may come to a conclusion." - -"Well, Watson," said Holmes when our visitor had left us, "what -do you make of it all?" - -"I make nothing of it," I answered frankly. "It is a most -mysterious business." - -"As a rule," said Holmes, "the more bizarre a thing is the less -mysterious it proves to be. It is your commonplace, featureless -crimes which are really puzzling, just as a commonplace face is -the most difficult to identify. But I must be prompt over this -matter." - -"What are you going to do, then?" I asked. - -"To smoke," he answered. "It is quite a three pipe problem, and I -beg that you won't speak to me for fifty minutes." He curled -himself up in his chair, with his thin knees drawn up to his -hawk-like nose, and there he sat with his eyes closed and his -black clay pipe thrusting out like the bill of some strange bird. -I had come to the conclusion that he had dropped asleep, and -indeed was nodding myself, when he suddenly sprang out of his -chair with the gesture of a man who has made up his mind and put -his pipe down upon the mantelpiece. - -"Sarasate plays at the St. James's Hall this afternoon," he -remarked. "What do you think, Watson? Could your patients spare -you for a few hours?" - -"I have nothing to do to-day. My practice is never very -absorbing." - -"Then put on your hat and come. I am going through the City -first, and we can have some lunch on the way. I observe that -there is a good deal of German music on the programme, which is -rather more to my taste than Italian or French. It is -introspective, and I want to introspect. Come along!" - -We travelled by the Underground as far as Aldersgate; and a short -walk took us to Saxe-Coburg Square, the scene of the singular -story which we had listened to in the morning. It was a poky, -little, shabby-genteel place, where four lines of dingy -two-storied brick houses looked out into a small railed-in -enclosure, where a lawn of weedy grass and a few clumps of faded -laurel-bushes made a hard fight against a smoke-laden and -uncongenial atmosphere. Three gilt balls and a brown board with -"JABEZ WILSON" in white letters, upon a corner house, announced -the place where our red-headed client carried on his business. -Sherlock Holmes stopped in front of it with his head on one side -and looked it all over, with his eyes shining brightly between -puckered lids. Then he walked slowly up the street, and then down -again to the corner, still looking keenly at the houses. Finally -he returned to the pawnbroker's, and, having thumped vigorously -upon the pavement with his stick two or three times, he went up -to the door and knocked. It was instantly opened by a -bright-looking, clean-shaven young fellow, who asked him to step -in. - -"Thank you," said Holmes, "I only wished to ask you how you would -go from here to the Strand." - -"Third right, fourth left," answered the assistant promptly, -closing the door. - -"Smart fellow, that," observed Holmes as we walked away. "He is, -in my judgment, the fourth smartest man in London, and for daring -I am not sure that he has not a claim to be third. I have known -something of him before." - -"Evidently," said I, "Mr. Wilson's assistant counts for a good -deal in this mystery of the Red-headed League. I am sure that you -inquired your way merely in order that you might see him." - -"Not him." - -"What then?" - -"The knees of his trousers." - -"And what did you see?" - -"What I expected to see." - -"Why did you beat the pavement?" - -"My dear doctor, this is a time for observation, not for talk. We -are spies in an enemy's country. We know something of Saxe-Coburg -Square. Let us now explore the parts which lie behind it." - -The road in which we found ourselves as we turned round the -corner from the retired Saxe-Coburg Square presented as great a -contrast to it as the front of a picture does to the back. It was -one of the main arteries which conveyed the traffic of the City -to the north and west. The roadway was blocked with the immense -stream of commerce flowing in a double tide inward and outward, -while the footpaths were black with the hurrying swarm of -pedestrians. It was difficult to realise as we looked at the line -of fine shops and stately business premises that they really -abutted on the other side upon the faded and stagnant square -which we had just quitted. - -"Let me see," said Holmes, standing at the corner and glancing -along the line, "I should like just to remember the order of the -houses here. It is a hobby of mine to have an exact knowledge of -London. There is Mortimer's, the tobacconist, the little -newspaper shop, the Coburg branch of the City and Suburban Bank, -the Vegetarian Restaurant, and McFarlane's carriage-building -depot. That carries us right on to the other block. And now, -Doctor, we've done our work, so it's time we had some play. A -sandwich and a cup of coffee, and then off to violin-land, where -all is sweetness and delicacy and harmony, and there are no -red-headed clients to vex us with their conundrums." - -My friend was an enthusiastic musician, being himself not only a -very capable performer but a composer of no ordinary merit. All -the afternoon he sat in the stalls wrapped in the most perfect -happiness, gently waving his long, thin fingers in time to the -music, while his gently smiling face and his languid, dreamy eyes -were as unlike those of Holmes the sleuth-hound, Holmes the -relentless, keen-witted, ready-handed criminal agent, as it was -possible to conceive. In his singular character the dual nature -alternately asserted itself, and his extreme exactness and -astuteness represented, as I have often thought, the reaction -against the poetic and contemplative mood which occasionally -predominated in him. The swing of his nature took him from -extreme languor to devouring energy; and, as I knew well, he was -never so truly formidable as when, for days on end, he had been -lounging in his armchair amid his improvisations and his -black-letter editions. Then it was that the lust of the chase -would suddenly come upon him, and that his brilliant reasoning -power would rise to the level of intuition, until those who were -unacquainted with his methods would look askance at him as on a -man whose knowledge was not that of other mortals. When I saw him -that afternoon so enwrapped in the music at St. James's Hall I -felt that an evil time might be coming upon those whom he had set -himself to hunt down. - -"You want to go home, no doubt, Doctor," he remarked as we -emerged. - -"Yes, it would be as well." - -"And I have some business to do which will take some hours. This -business at Coburg Square is serious." - -"Why serious?" - -"A considerable crime is in contemplation. I have every reason to -believe that we shall be in time to stop it. But to-day being -Saturday rather complicates matters. I shall want your help -to-night." - -"At what time?" - -"Ten will be early enough." - -"I shall be at Baker Street at ten." - -"Very well. And, I say, Doctor, there may be some little danger, -so kindly put your army revolver in your pocket." He waved his -hand, turned on his heel, and disappeared in an instant among the -crowd. - -I trust that I am not more dense than my neighbours, but I was -always oppressed with a sense of my own stupidity in my dealings -with Sherlock Holmes. Here I had heard what he had heard, I had -seen what he had seen, and yet from his words it was evident that -he saw clearly not only what had happened but what was about to -happen, while to me the whole business was still confused and -grotesque. As I drove home to my house in Kensington I thought -over it all, from the extraordinary story of the red-headed -copier of the "Encyclopaedia" down to the visit to Saxe-Coburg -Square, and the ominous words with which he had parted from me. -What was this nocturnal expedition, and why should I go armed? -Where were we going, and what were we to do? I had the hint from -Holmes that this smooth-faced pawnbroker's assistant was a -formidable man--a man who might play a deep game. I tried to -puzzle it out, but gave it up in despair and set the matter aside -until night should bring an explanation. - -It was a quarter-past nine when I started from home and made my -way across the Park, and so through Oxford Street to Baker -Street. Two hansoms were standing at the door, and as I entered -the passage I heard the sound of voices from above. On entering -his room I found Holmes in animated conversation with two men, -one of whom I recognised as Peter Jones, the official police -agent, while the other was a long, thin, sad-faced man, with a -very shiny hat and oppressively respectable frock-coat. - -"Ha! Our party is complete," said Holmes, buttoning up his -pea-jacket and taking his heavy hunting crop from the rack. -"Watson, I think you know Mr. Jones, of Scotland Yard? Let me -introduce you to Mr. Merryweather, who is to be our companion in -to-night's adventure." - -"We're hunting in couples again, Doctor, you see," said Jones in -his consequential way. "Our friend here is a wonderful man for -starting a chase. All he wants is an old dog to help him to do -the running down." - -"I hope a wild goose may not prove to be the end of our chase," -observed Mr. Merryweather gloomily. - -"You may place considerable confidence in Mr. Holmes, sir," said -the police agent loftily. "He has his own little methods, which -are, if he won't mind my saying so, just a little too theoretical -and fantastic, but he has the makings of a detective in him. It -is not too much to say that once or twice, as in that business of -the Sholto murder and the Agra treasure, he has been more nearly -correct than the official force." - -"Oh, if you say so, Mr. Jones, it is all right," said the -stranger with deference. "Still, I confess that I miss my rubber. -It is the first Saturday night for seven-and-twenty years that I -have not had my rubber." - -"I think you will find," said Sherlock Holmes, "that you will -play for a higher stake to-night than you have ever done yet, and -that the play will be more exciting. For you, Mr. Merryweather, -the stake will be some 30,000 pounds; and for you, Jones, it will -be the man upon whom you wish to lay your hands." - -"John Clay, the murderer, thief, smasher, and forger. He's a -young man, Mr. Merryweather, but he is at the head of his -profession, and I would rather have my bracelets on him than on -any criminal in London. He's a remarkable man, is young John -Clay. His grandfather was a royal duke, and he himself has been -to Eton and Oxford. His brain is as cunning as his fingers, and -though we meet signs of him at every turn, we never know where to -find the man himself. He'll crack a crib in Scotland one week, -and be raising money to build an orphanage in Cornwall the next. -I've been on his track for years and have never set eyes on him -yet." - -"I hope that I may have the pleasure of introducing you to-night. -I've had one or two little turns also with Mr. John Clay, and I -agree with you that he is at the head of his profession. It is -past ten, however, and quite time that we started. If you two -will take the first hansom, Watson and I will follow in the -second." - -Sherlock Holmes was not very communicative during the long drive -and lay back in the cab humming the tunes which he had heard in -the afternoon. We rattled through an endless labyrinth of gas-lit -streets until we emerged into Farrington Street. - -"We are close there now," my friend remarked. "This fellow -Merryweather is a bank director, and personally interested in the -matter. I thought it as well to have Jones with us also. He is -not a bad fellow, though an absolute imbecile in his profession. -He has one positive virtue. He is as brave as a bulldog and as -tenacious as a lobster if he gets his claws upon anyone. Here we -are, and they are waiting for us." - -We had reached the same crowded thoroughfare in which we had -found ourselves in the morning. Our cabs were dismissed, and, -following the guidance of Mr. Merryweather, we passed down a -narrow passage and through a side door, which he opened for us. -Within there was a small corridor, which ended in a very massive -iron gate. This also was opened, and led down a flight of winding -stone steps, which terminated at another formidable gate. Mr. -Merryweather stopped to light a lantern, and then conducted us -down a dark, earth-smelling passage, and so, after opening a -third door, into a huge vault or cellar, which was piled all -round with crates and massive boxes. - -"You are not very vulnerable from above," Holmes remarked as he -held up the lantern and gazed about him. - -"Nor from below," said Mr. Merryweather, striking his stick upon -the flags which lined the floor. "Why, dear me, it sounds quite -hollow!" he remarked, looking up in surprise. - -"I must really ask you to be a little more quiet!" said Holmes -severely. "You have already imperilled the whole success of our -expedition. Might I beg that you would have the goodness to sit -down upon one of those boxes, and not to interfere?" - -The solemn Mr. Merryweather perched himself upon a crate, with a -very injured expression upon his face, while Holmes fell upon his -knees upon the floor and, with the lantern and a magnifying lens, -began to examine minutely the cracks between the stones. A few -seconds sufficed to satisfy him, for he sprang to his feet again -and put his glass in his pocket. - -"We have at least an hour before us," he remarked, "for they can -hardly take any steps until the good pawnbroker is safely in bed. -Then they will not lose a minute, for the sooner they do their -work the longer time they will have for their escape. We are at -present, Doctor--as no doubt you have divined--in the cellar of -the City branch of one of the principal London banks. Mr. -Merryweather is the chairman of directors, and he will explain to -you that there are reasons why the more daring criminals of -London should take a considerable interest in this cellar at -present." - -"It is our French gold," whispered the director. "We have had -several warnings that an attempt might be made upon it." - -"Your French gold?" - -"Yes. We had occasion some months ago to strengthen our resources -and borrowed for that purpose 30,000 napoleons from the Bank of -France. It has become known that we have never had occasion to -unpack the money, and that it is still lying in our cellar. The -crate upon which I sit contains 2,000 napoleons packed between -layers of lead foil. Our reserve of bullion is much larger at -present than is usually kept in a single branch office, and the -directors have had misgivings upon the subject." - -"Which were very well justified," observed Holmes. "And now it is -time that we arranged our little plans. I expect that within an -hour matters will come to a head. In the meantime Mr. -Merryweather, we must put the screen over that dark lantern." - -"And sit in the dark?" - -"I am afraid so. I had brought a pack of cards in my pocket, and -I thought that, as we were a partie carre, you might have your -rubber after all. But I see that the enemy's preparations have -gone so far that we cannot risk the presence of a light. And, -first of all, we must choose our positions. These are daring men, -and though we shall take them at a disadvantage, they may do us -some harm unless we are careful. I shall stand behind this crate, -and do you conceal yourselves behind those. Then, when I flash a -light upon them, close in swiftly. If they fire, Watson, have no -compunction about shooting them down." - -I placed my revolver, cocked, upon the top of the wooden case -behind which I crouched. Holmes shot the slide across the front -of his lantern and left us in pitch darkness--such an absolute -darkness as I have never before experienced. The smell of hot -metal remained to assure us that the light was still there, ready -to flash out at a moment's notice. To me, with my nerves worked -up to a pitch of expectancy, there was something depressing and -subduing in the sudden gloom, and in the cold dank air of the -vault. - -"They have but one retreat," whispered Holmes. "That is back -through the house into Saxe-Coburg Square. I hope that you have -done what I asked you, Jones?" - -"I have an inspector and two officers waiting at the front door." - -"Then we have stopped all the holes. And now we must be silent -and wait." - -What a time it seemed! From comparing notes afterwards it was but -an hour and a quarter, yet it appeared to me that the night must -have almost gone and the dawn be breaking above us. My limbs -were weary and stiff, for I feared to change my position; yet my -nerves were worked up to the highest pitch of tension, and my -hearing was so acute that I could not only hear the gentle -breathing of my companions, but I could distinguish the deeper, -heavier in-breath of the bulky Jones from the thin, sighing note -of the bank director. From my position I could look over the case -in the direction of the floor. Suddenly my eyes caught the glint -of a light. - -At first it was but a lurid spark upon the stone pavement. Then -it lengthened out until it became a yellow line, and then, -without any warning or sound, a gash seemed to open and a hand -appeared, a white, almost womanly hand, which felt about in the -centre of the little area of light. For a minute or more the -hand, with its writhing fingers, protruded out of the floor. Then -it was withdrawn as suddenly as it appeared, and all was dark -again save the single lurid spark which marked a chink between -the stones. - -Its disappearance, however, was but momentary. With a rending, -tearing sound, one of the broad, white stones turned over upon -its side and left a square, gaping hole, through which streamed -the light of a lantern. Over the edge there peeped a clean-cut, -boyish face, which looked keenly about it, and then, with a hand -on either side of the aperture, drew itself shoulder-high and -waist-high, until one knee rested upon the edge. In another -instant he stood at the side of the hole and was hauling after -him a companion, lithe and small like himself, with a pale face -and a shock of very red hair. - -"It's all clear," he whispered. "Have you the chisel and the -bags? Great Scott! Jump, Archie, jump, and I'll swing for it!" - -Sherlock Holmes had sprung out and seized the intruder by the -collar. The other dived down the hole, and I heard the sound of -rending cloth as Jones clutched at his skirts. The light flashed -upon the barrel of a revolver, but Holmes' hunting crop came -down on the man's wrist, and the pistol clinked upon the stone -floor. - -"It's no use, John Clay," said Holmes blandly. "You have no -chance at all." - -"So I see," the other answered with the utmost coolness. "I fancy -that my pal is all right, though I see you have got his -coat-tails." - -"There are three men waiting for him at the door," said Holmes. - -"Oh, indeed! You seem to have done the thing very completely. I -must compliment you." - -"And I you," Holmes answered. "Your red-headed idea was very new -and effective." - -"You'll see your pal again presently," said Jones. "He's quicker -at climbing down holes than I am. Just hold out while I fix the -derbies." - -"I beg that you will not touch me with your filthy hands," -remarked our prisoner as the handcuffs clattered upon his wrists. -"You may not be aware that I have royal blood in my veins. Have -the goodness, also, when you address me always to say 'sir' and -'please.'" - -"All right," said Jones with a stare and a snigger. "Well, would -you please, sir, march upstairs, where we can get a cab to carry -your Highness to the police-station?" - -"That is better," said John Clay serenely. He made a sweeping bow -to the three of us and walked quietly off in the custody of the -detective. - -"Really, Mr. Holmes," said Mr. Merryweather as we followed them -from the cellar, "I do not know how the bank can thank you or -repay you. There is no doubt that you have detected and defeated -in the most complete manner one of the most determined attempts -at bank robbery that have ever come within my experience." - -"I have had one or two little scores of my own to settle with Mr. -John Clay," said Holmes. "I have been at some small expense over -this matter, which I shall expect the bank to refund, but beyond -that I am amply repaid by having had an experience which is in -many ways unique, and by hearing the very remarkable narrative of -the Red-headed League." - - -"You see, Watson," he explained in the early hours of the morning -as we sat over a glass of whisky and soda in Baker Street, "it -was perfectly obvious from the first that the only possible -object of this rather fantastic business of the advertisement of -the League, and the copying of the 'Encyclopaedia,' must be to get -this not over-bright pawnbroker out of the way for a number of -hours every day. It was a curious way of managing it, but, -really, it would be difficult to suggest a better. The method was -no doubt suggested to Clay's ingenious mind by the colour of his -accomplice's hair. The 4 pounds a week was a lure which must draw -him, and what was it to them, who were playing for thousands? -They put in the advertisement, one rogue has the temporary -office, the other rogue incites the man to apply for it, and -together they manage to secure his absence every morning in the -week. From the time that I heard of the assistant having come for -half wages, it was obvious to me that he had some strong motive -for securing the situation." - -"But how could you guess what the motive was?" - -"Had there been women in the house, I should have suspected a -mere vulgar intrigue. That, however, was out of the question. The -man's business was a small one, and there was nothing in his -house which could account for such elaborate preparations, and -such an expenditure as they were at. It must, then, be something -out of the house. What could it be? I thought of the assistant's -fondness for photography, and his trick of vanishing into the -cellar. The cellar! There was the end of this tangled clue. Then -I made inquiries as to this mysterious assistant and found that I -had to deal with one of the coolest and most daring criminals in -London. He was doing something in the cellar--something which -took many hours a day for months on end. What could it be, once -more? I could think of nothing save that he was running a tunnel -to some other building. - -"So far I had got when we went to visit the scene of action. I -surprised you by beating upon the pavement with my stick. I was -ascertaining whether the cellar stretched out in front or behind. -It was not in front. Then I rang the bell, and, as I hoped, the -assistant answered it. We have had some skirmishes, but we had -never set eyes upon each other before. I hardly looked at his -face. His knees were what I wished to see. You must yourself have -remarked how worn, wrinkled, and stained they were. They spoke of -those hours of burrowing. The only remaining point was what they -were burrowing for. I walked round the corner, saw the City and -Suburban Bank abutted on our friend's premises, and felt that I -had solved my problem. When you drove home after the concert I -called upon Scotland Yard and upon the chairman of the bank -directors, with the result that you have seen." - -"And how could you tell that they would make their attempt -to-night?" I asked. - -"Well, when they closed their League offices that was a sign that -they cared no longer about Mr. Jabez Wilson's presence--in other -words, that they had completed their tunnel. But it was essential -that they should use it soon, as it might be discovered, or the -bullion might be removed. Saturday would suit them better than -any other day, as it would give them two days for their escape. -For all these reasons I expected them to come to-night." - -"You reasoned it out beautifully," I exclaimed in unfeigned -admiration. "It is so long a chain, and yet every link rings -true." - -"It saved me from ennui," he answered, yawning. "Alas! I already -feel it closing in upon me. My life is spent in one long effort -to escape from the commonplaces of existence. These little -problems help me to do so." - -"And you are a benefactor of the race," said I. - -He shrugged his shoulders. "Well, perhaps, after all, it is of -some little use," he remarked. "'L'homme c'est rien--l'oeuvre -c'est tout,' as Gustave Flaubert wrote to George Sand." - - - -ADVENTURE III. A CASE OF IDENTITY - -"My dear fellow," said Sherlock Holmes as we sat on either side -of the fire in his lodgings at Baker Street, "life is infinitely -stranger than anything which the mind of man could invent. We -would not dare to conceive the things which are really mere -commonplaces of existence. If we could fly out of that window -hand in hand, hover over this great city, gently remove the -roofs, and peep in at the queer things which are going on, the -strange coincidences, the plannings, the cross-purposes, the -wonderful chains of events, working through generations, and -leading to the most outr results, it would make all fiction with -its conventionalities and foreseen conclusions most stale and -unprofitable." - -"And yet I am not convinced of it," I answered. "The cases which -come to light in the papers are, as a rule, bald enough, and -vulgar enough. We have in our police reports realism pushed to -its extreme limits, and yet the result is, it must be confessed, -neither fascinating nor artistic." - -"A certain selection and discretion must be used in producing a -realistic effect," remarked Holmes. "This is wanting in the -police report, where more stress is laid, perhaps, upon the -platitudes of the magistrate than upon the details, which to an -observer contain the vital essence of the whole matter. Depend -upon it, there is nothing so unnatural as the commonplace." - -I smiled and shook my head. "I can quite understand your thinking -so," I said. "Of course, in your position of unofficial adviser -and helper to everybody who is absolutely puzzled, throughout -three continents, you are brought in contact with all that is -strange and bizarre. But here"--I picked up the morning paper -from the ground--"let us put it to a practical test. Here is the -first heading upon which I come. 'A husband's cruelty to his -wife.' There is half a column of print, but I know without -reading it that it is all perfectly familiar to me. There is, of -course, the other woman, the drink, the push, the blow, the -bruise, the sympathetic sister or landlady. The crudest of -writers could invent nothing more crude." - -"Indeed, your example is an unfortunate one for your argument," -said Holmes, taking the paper and glancing his eye down it. "This -is the Dundas separation case, and, as it happens, I was engaged -in clearing up some small points in connection with it. The -husband was a teetotaler, there was no other woman, and the -conduct complained of was that he had drifted into the habit of -winding up every meal by taking out his false teeth and hurling -them at his wife, which, you will allow, is not an action likely -to occur to the imagination of the average story-teller. Take a -pinch of snuff, Doctor, and acknowledge that I have scored over -you in your example." - -He held out his snuffbox of old gold, with a great amethyst in -the centre of the lid. Its splendour was in such contrast to his -homely ways and simple life that I could not help commenting upon -it. - -"Ah," said he, "I forgot that I had not seen you for some weeks. -It is a little souvenir from the King of Bohemia in return for my -assistance in the case of the Irene Adler papers." - -"And the ring?" I asked, glancing at a remarkable brilliant which -sparkled upon his finger. - -"It was from the reigning family of Holland, though the matter in -which I served them was of such delicacy that I cannot confide it -even to you, who have been good enough to chronicle one or two of -my little problems." - -"And have you any on hand just now?" I asked with interest. - -"Some ten or twelve, but none which present any feature of -interest. They are important, you understand, without being -interesting. Indeed, I have found that it is usually in -unimportant matters that there is a field for the observation, -and for the quick analysis of cause and effect which gives the -charm to an investigation. The larger crimes are apt to be the -simpler, for the bigger the crime the more obvious, as a rule, is -the motive. In these cases, save for one rather intricate matter -which has been referred to me from Marseilles, there is nothing -which presents any features of interest. It is possible, however, -that I may have something better before very many minutes are -over, for this is one of my clients, or I am much mistaken." - -He had risen from his chair and was standing between the parted -blinds gazing down into the dull neutral-tinted London street. -Looking over his shoulder, I saw that on the pavement opposite -there stood a large woman with a heavy fur boa round her neck, -and a large curling red feather in a broad-brimmed hat which was -tilted in a coquettish Duchess of Devonshire fashion over her -ear. From under this great panoply she peeped up in a nervous, -hesitating fashion at our windows, while her body oscillated -backward and forward, and her fingers fidgeted with her glove -buttons. Suddenly, with a plunge, as of the swimmer who leaves -the bank, she hurried across the road, and we heard the sharp -clang of the bell. - -"I have seen those symptoms before," said Holmes, throwing his -cigarette into the fire. "Oscillation upon the pavement always -means an affaire de coeur. She would like advice, but is not sure -that the matter is not too delicate for communication. And yet -even here we may discriminate. When a woman has been seriously -wronged by a man she no longer oscillates, and the usual symptom -is a broken bell wire. Here we may take it that there is a love -matter, but that the maiden is not so much angry as perplexed, or -grieved. But here she comes in person to resolve our doubts." - -As he spoke there was a tap at the door, and the boy in buttons -entered to announce Miss Mary Sutherland, while the lady herself -loomed behind his small black figure like a full-sailed -merchant-man behind a tiny pilot boat. Sherlock Holmes welcomed -her with the easy courtesy for which he was remarkable, and, -having closed the door and bowed her into an armchair, he looked -her over in the minute and yet abstracted fashion which was -peculiar to him. - -"Do you not find," he said, "that with your short sight it is a -little trying to do so much typewriting?" - -"I did at first," she answered, "but now I know where the letters -are without looking." Then, suddenly realising the full purport -of his words, she gave a violent start and looked up, with fear -and astonishment upon her broad, good-humoured face. "You've -heard about me, Mr. Holmes," she cried, "else how could you know -all that?" - -"Never mind," said Holmes, laughing; "it is my business to know -things. Perhaps I have trained myself to see what others -overlook. If not, why should you come to consult me?" - -"I came to you, sir, because I heard of you from Mrs. Etherege, -whose husband you found so easy when the police and everyone had -given him up for dead. Oh, Mr. Holmes, I wish you would do as -much for me. I'm not rich, but still I have a hundred a year in -my own right, besides the little that I make by the machine, and -I would give it all to know what has become of Mr. Hosmer Angel." - -"Why did you come away to consult me in such a hurry?" asked -Sherlock Holmes, with his finger-tips together and his eyes to -the ceiling. - -Again a startled look came over the somewhat vacuous face of Miss -Mary Sutherland. "Yes, I did bang out of the house," she said, -"for it made me angry to see the easy way in which Mr. -Windibank--that is, my father--took it all. He would not go to -the police, and he would not go to you, and so at last, as he -would do nothing and kept on saying that there was no harm done, -it made me mad, and I just on with my things and came right away -to you." - -"Your father," said Holmes, "your stepfather, surely, since the -name is different." - -"Yes, my stepfather. I call him father, though it sounds funny, -too, for he is only five years and two months older than myself." - -"And your mother is alive?" - -"Oh, yes, mother is alive and well. I wasn't best pleased, Mr. -Holmes, when she married again so soon after father's death, and -a man who was nearly fifteen years younger than herself. Father -was a plumber in the Tottenham Court Road, and he left a tidy -business behind him, which mother carried on with Mr. Hardy, the -foreman; but when Mr. Windibank came he made her sell the -business, for he was very superior, being a traveller in wines. -They got 4700 pounds for the goodwill and interest, which wasn't -near as much as father could have got if he had been alive." - -I had expected to see Sherlock Holmes impatient under this -rambling and inconsequential narrative, but, on the contrary, he -had listened with the greatest concentration of attention. - -"Your own little income," he asked, "does it come out of the -business?" - -"Oh, no, sir. It is quite separate and was left me by my uncle -Ned in Auckland. It is in New Zealand stock, paying 4 1/2 per -cent. Two thousand five hundred pounds was the amount, but I can -only touch the interest." - -"You interest me extremely," said Holmes. "And since you draw so -large a sum as a hundred a year, with what you earn into the -bargain, you no doubt travel a little and indulge yourself in -every way. I believe that a single lady can get on very nicely -upon an income of about 60 pounds." - -"I could do with much less than that, Mr. Holmes, but you -understand that as long as I live at home I don't wish to be a -burden to them, and so they have the use of the money just while -I am staying with them. Of course, that is only just for the -time. Mr. Windibank draws my interest every quarter and pays it -over to mother, and I find that I can do pretty well with what I -earn at typewriting. It brings me twopence a sheet, and I can -often do from fifteen to twenty sheets in a day." - -"You have made your position very clear to me," said Holmes. -"This is my friend, Dr. Watson, before whom you can speak as -freely as before myself. Kindly tell us now all about your -connection with Mr. Hosmer Angel." - -A flush stole over Miss Sutherland's face, and she picked -nervously at the fringe of her jacket. "I met him first at the -gasfitters' ball," she said. "They used to send father tickets -when he was alive, and then afterwards they remembered us, and -sent them to mother. Mr. Windibank did not wish us to go. He -never did wish us to go anywhere. He would get quite mad if I -wanted so much as to join a Sunday-school treat. But this time I -was set on going, and I would go; for what right had he to -prevent? He said the folk were not fit for us to know, when all -father's friends were to be there. And he said that I had nothing -fit to wear, when I had my purple plush that I had never so much -as taken out of the drawer. At last, when nothing else would do, -he went off to France upon the business of the firm, but we went, -mother and I, with Mr. Hardy, who used to be our foreman, and it -was there I met Mr. Hosmer Angel." - -"I suppose," said Holmes, "that when Mr. Windibank came back from -France he was very annoyed at your having gone to the ball." - -"Oh, well, he was very good about it. He laughed, I remember, and -shrugged his shoulders, and said there was no use denying -anything to a woman, for she would have her way." - -"I see. Then at the gasfitters' ball you met, as I understand, a -gentleman called Mr. Hosmer Angel." - -"Yes, sir. I met him that night, and he called next day to ask if -we had got home all safe, and after that we met him--that is to -say, Mr. Holmes, I met him twice for walks, but after that father -came back again, and Mr. Hosmer Angel could not come to the house -any more." - -"No?" - -"Well, you know father didn't like anything of the sort. He -wouldn't have any visitors if he could help it, and he used to -say that a woman should be happy in her own family circle. But -then, as I used to say to mother, a woman wants her own circle to -begin with, and I had not got mine yet." - -"But how about Mr. Hosmer Angel? Did he make no attempt to see -you?" - -"Well, father was going off to France again in a week, and Hosmer -wrote and said that it would be safer and better not to see each -other until he had gone. We could write in the meantime, and he -used to write every day. I took the letters in in the morning, so -there was no need for father to know." - -"Were you engaged to the gentleman at this time?" - -"Oh, yes, Mr. Holmes. We were engaged after the first walk that -we took. Hosmer--Mr. Angel--was a cashier in an office in -Leadenhall Street--and--" - -"What office?" - -"That's the worst of it, Mr. Holmes, I don't know." - -"Where did he live, then?" - -"He slept on the premises." - -"And you don't know his address?" - -"No--except that it was Leadenhall Street." - -"Where did you address your letters, then?" - -"To the Leadenhall Street Post Office, to be left till called -for. He said that if they were sent to the office he would be -chaffed by all the other clerks about having letters from a lady, -so I offered to typewrite them, like he did his, but he wouldn't -have that, for he said that when I wrote them they seemed to come -from me, but when they were typewritten he always felt that the -machine had come between us. That will just show you how fond he -was of me, Mr. Holmes, and the little things that he would think -of." - -"It was most suggestive," said Holmes. "It has long been an axiom -of mine that the little things are infinitely the most important. -Can you remember any other little things about Mr. Hosmer Angel?" - -"He was a very shy man, Mr. Holmes. He would rather walk with me -in the evening than in the daylight, for he said that he hated to -be conspicuous. Very retiring and gentlemanly he was. Even his -voice was gentle. He'd had the quinsy and swollen glands when he -was young, he told me, and it had left him with a weak throat, -and a hesitating, whispering fashion of speech. He was always -well dressed, very neat and plain, but his eyes were weak, just -as mine are, and he wore tinted glasses against the glare." - -"Well, and what happened when Mr. Windibank, your stepfather, -returned to France?" - -"Mr. Hosmer Angel came to the house again and proposed that we -should marry before father came back. He was in dreadful earnest -and made me swear, with my hands on the Testament, that whatever -happened I would always be true to him. Mother said he was quite -right to make me swear, and that it was a sign of his passion. -Mother was all in his favour from the first and was even fonder -of him than I was. Then, when they talked of marrying within the -week, I began to ask about father; but they both said never to -mind about father, but just to tell him afterwards, and mother -said she would make it all right with him. I didn't quite like -that, Mr. Holmes. It seemed funny that I should ask his leave, as -he was only a few years older than me; but I didn't want to do -anything on the sly, so I wrote to father at Bordeaux, where the -company has its French offices, but the letter came back to me on -the very morning of the wedding." - -"It missed him, then?" - -"Yes, sir; for he had started to England just before it arrived." - -"Ha! that was unfortunate. Your wedding was arranged, then, for -the Friday. Was it to be in church?" - -"Yes, sir, but very quietly. It was to be at St. Saviour's, near -King's Cross, and we were to have breakfast afterwards at the St. -Pancras Hotel. Hosmer came for us in a hansom, but as there were -two of us he put us both into it and stepped himself into a -four-wheeler, which happened to be the only other cab in the -street. We got to the church first, and when the four-wheeler -drove up we waited for him to step out, but he never did, and -when the cabman got down from the box and looked there was no one -there! The cabman said that he could not imagine what had become -of him, for he had seen him get in with his own eyes. That was -last Friday, Mr. Holmes, and I have never seen or heard anything -since then to throw any light upon what became of him." - -"It seems to me that you have been very shamefully treated," said -Holmes. - -"Oh, no, sir! He was too good and kind to leave me so. Why, all -the morning he was saying to me that, whatever happened, I was to -be true; and that even if something quite unforeseen occurred to -separate us, I was always to remember that I was pledged to him, -and that he would claim his pledge sooner or later. It seemed -strange talk for a wedding-morning, but what has happened since -gives a meaning to it." - -"Most certainly it does. Your own opinion is, then, that some -unforeseen catastrophe has occurred to him?" - -"Yes, sir. I believe that he foresaw some danger, or else he -would not have talked so. And then I think that what he foresaw -happened." - -"But you have no notion as to what it could have been?" - -"None." - -"One more question. How did your mother take the matter?" - -"She was angry, and said that I was never to speak of the matter -again." - -"And your father? Did you tell him?" - -"Yes; and he seemed to think, with me, that something had -happened, and that I should hear of Hosmer again. As he said, -what interest could anyone have in bringing me to the doors of -the church, and then leaving me? Now, if he had borrowed my -money, or if he had married me and got my money settled on him, -there might be some reason, but Hosmer was very independent about -money and never would look at a shilling of mine. And yet, what -could have happened? And why could he not write? Oh, it drives me -half-mad to think of it, and I can't sleep a wink at night." She -pulled a little handkerchief out of her muff and began to sob -heavily into it. - -"I shall glance into the case for you," said Holmes, rising, "and -I have no doubt that we shall reach some definite result. Let the -weight of the matter rest upon me now, and do not let your mind -dwell upon it further. Above all, try to let Mr. Hosmer Angel -vanish from your memory, as he has done from your life." - -"Then you don't think I'll see him again?" - -"I fear not." - -"Then what has happened to him?" - -"You will leave that question in my hands. I should like an -accurate description of him and any letters of his which you can -spare." - -"I advertised for him in last Saturday's Chronicle," said she. -"Here is the slip and here are four letters from him." - -"Thank you. And your address?" - -"No. 31 Lyon Place, Camberwell." - -"Mr. Angel's address you never had, I understand. Where is your -father's place of business?" - -"He travels for Westhouse & Marbank, the great claret importers -of Fenchurch Street." - -"Thank you. You have made your statement very clearly. You will -leave the papers here, and remember the advice which I have given -you. Let the whole incident be a sealed book, and do not allow it -to affect your life." - -"You are very kind, Mr. Holmes, but I cannot do that. I shall be -true to Hosmer. He shall find me ready when he comes back." - -For all the preposterous hat and the vacuous face, there was -something noble in the simple faith of our visitor which -compelled our respect. She laid her little bundle of papers upon -the table and went her way, with a promise to come again whenever -she might be summoned. - -Sherlock Holmes sat silent for a few minutes with his fingertips -still pressed together, his legs stretched out in front of him, -and his gaze directed upward to the ceiling. Then he took down -from the rack the old and oily clay pipe, which was to him as a -counsellor, and, having lit it, he leaned back in his chair, with -the thick blue cloud-wreaths spinning up from him, and a look of -infinite languor in his face. - -"Quite an interesting study, that maiden," he observed. "I found -her more interesting than her little problem, which, by the way, -is rather a trite one. You will find parallel cases, if you -consult my index, in Andover in '77, and there was something of -the sort at The Hague last year. Old as is the idea, however, -there were one or two details which were new to me. But the -maiden herself was most instructive." - -"You appeared to read a good deal upon her which was quite -invisible to me," I remarked. - -"Not invisible but unnoticed, Watson. You did not know where to -look, and so you missed all that was important. I can never bring -you to realise the importance of sleeves, the suggestiveness of -thumb-nails, or the great issues that may hang from a boot-lace. -Now, what did you gather from that woman's appearance? Describe -it." - -"Well, she had a slate-coloured, broad-brimmed straw hat, with a -feather of a brickish red. Her jacket was black, with black beads -sewn upon it, and a fringe of little black jet ornaments. Her -dress was brown, rather darker than coffee colour, with a little -purple plush at the neck and sleeves. Her gloves were greyish and -were worn through at the right forefinger. Her boots I didn't -observe. She had small round, hanging gold earrings, and a -general air of being fairly well-to-do in a vulgar, comfortable, -easy-going way." - -Sherlock Holmes clapped his hands softly together and chuckled. - -"'Pon my word, Watson, you are coming along wonderfully. You have -really done very well indeed. It is true that you have missed -everything of importance, but you have hit upon the method, and -you have a quick eye for colour. Never trust to general -impressions, my boy, but concentrate yourself upon details. My -first glance is always at a woman's sleeve. In a man it is -perhaps better first to take the knee of the trouser. As you -observe, this woman had plush upon her sleeves, which is a most -useful material for showing traces. The double line a little -above the wrist, where the typewritist presses against the table, -was beautifully defined. The sewing-machine, of the hand type, -leaves a similar mark, but only on the left arm, and on the side -of it farthest from the thumb, instead of being right across the -broadest part, as this was. I then glanced at her face, and, -observing the dint of a pince-nez at either side of her nose, I -ventured a remark upon short sight and typewriting, which seemed -to surprise her." - -"It surprised me." - -"But, surely, it was obvious. I was then much surprised and -interested on glancing down to observe that, though the boots -which she was wearing were not unlike each other, they were -really odd ones; the one having a slightly decorated toe-cap, and -the other a plain one. One was buttoned only in the two lower -buttons out of five, and the other at the first, third, and -fifth. Now, when you see that a young lady, otherwise neatly -dressed, has come away from home with odd boots, half-buttoned, -it is no great deduction to say that she came away in a hurry." - -"And what else?" I asked, keenly interested, as I always was, by -my friend's incisive reasoning. - -"I noted, in passing, that she had written a note before leaving -home but after being fully dressed. You observed that her right -glove was torn at the forefinger, but you did not apparently see -that both glove and finger were stained with violet ink. She had -written in a hurry and dipped her pen too deep. It must have been -this morning, or the mark would not remain clear upon the finger. -All this is amusing, though rather elementary, but I must go back -to business, Watson. Would you mind reading me the advertised -description of Mr. Hosmer Angel?" - -I held the little printed slip to the light. - -"Missing," it said, "on the morning of the fourteenth, a gentleman -named Hosmer Angel. About five ft. seven in. in height; -strongly built, sallow complexion, black hair, a little bald in -the centre, bushy, black side-whiskers and moustache; tinted -glasses, slight infirmity of speech. Was dressed, when last seen, -in black frock-coat faced with silk, black waistcoat, gold Albert -chain, and grey Harris tweed trousers, with brown gaiters over -elastic-sided boots. Known to have been employed in an office in -Leadenhall Street. Anybody bringing--" - -"That will do," said Holmes. "As to the letters," he continued, -glancing over them, "they are very commonplace. Absolutely no -clue in them to Mr. Angel, save that he quotes Balzac once. There -is one remarkable point, however, which will no doubt strike -you." - -"They are typewritten," I remarked. - -"Not only that, but the signature is typewritten. Look at the -neat little 'Hosmer Angel' at the bottom. There is a date, you -see, but no superscription except Leadenhall Street, which is -rather vague. The point about the signature is very suggestive--in -fact, we may call it conclusive." - -"Of what?" - -"My dear fellow, is it possible you do not see how strongly it -bears upon the case?" - -"I cannot say that I do unless it were that he wished to be able -to deny his signature if an action for breach of promise were -instituted." - -"No, that was not the point. However, I shall write two letters, -which should settle the matter. One is to a firm in the City, the -other is to the young lady's stepfather, Mr. Windibank, asking -him whether he could meet us here at six o'clock tomorrow -evening. It is just as well that we should do business with the -male relatives. And now, Doctor, we can do nothing until the -answers to those letters come, so we may put our little problem -upon the shelf for the interim." - -I had had so many reasons to believe in my friend's subtle powers -of reasoning and extraordinary energy in action that I felt that -he must have some solid grounds for the assured and easy -demeanour with which he treated the singular mystery which he had -been called upon to fathom. Once only had I known him to fail, in -the case of the King of Bohemia and of the Irene Adler -photograph; but when I looked back to the weird business of the -Sign of Four, and the extraordinary circumstances connected with -the Study in Scarlet, I felt that it would be a strange tangle -indeed which he could not unravel. - -I left him then, still puffing at his black clay pipe, with the -conviction that when I came again on the next evening I would -find that he held in his hands all the clues which would lead up -to the identity of the disappearing bridegroom of Miss Mary -Sutherland. - -A professional case of great gravity was engaging my own -attention at the time, and the whole of next day I was busy at -the bedside of the sufferer. It was not until close upon six -o'clock that I found myself free and was able to spring into a -hansom and drive to Baker Street, half afraid that I might be too -late to assist at the dnouement of the little mystery. I found -Sherlock Holmes alone, however, half asleep, with his long, thin -form curled up in the recesses of his armchair. A formidable -array of bottles and test-tubes, with the pungent cleanly smell -of hydrochloric acid, told me that he had spent his day in the -chemical work which was so dear to him. - -"Well, have you solved it?" I asked as I entered. - -"Yes. It was the bisulphate of baryta." - -"No, no, the mystery!" I cried. - -"Oh, that! I thought of the salt that I have been working upon. -There was never any mystery in the matter, though, as I said -yesterday, some of the details are of interest. The only drawback -is that there is no law, I fear, that can touch the scoundrel." - -"Who was he, then, and what was his object in deserting Miss -Sutherland?" - -The question was hardly out of my mouth, and Holmes had not yet -opened his lips to reply, when we heard a heavy footfall in the -passage and a tap at the door. - -"This is the girl's stepfather, Mr. James Windibank," said -Holmes. "He has written to me to say that he would be here at -six. Come in!" - -The man who entered was a sturdy, middle-sized fellow, some -thirty years of age, clean-shaven, and sallow-skinned, with a -bland, insinuating manner, and a pair of wonderfully sharp and -penetrating grey eyes. He shot a questioning glance at each of -us, placed his shiny top-hat upon the sideboard, and with a -slight bow sidled down into the nearest chair. - -"Good-evening, Mr. James Windibank," said Holmes. "I think that -this typewritten letter is from you, in which you made an -appointment with me for six o'clock?" - -"Yes, sir. I am afraid that I am a little late, but I am not -quite my own master, you know. I am sorry that Miss Sutherland -has troubled you about this little matter, for I think it is far -better not to wash linen of the sort in public. It was quite -against my wishes that she came, but she is a very excitable, -impulsive girl, as you may have noticed, and she is not easily -controlled when she has made up her mind on a point. Of course, I -did not mind you so much, as you are not connected with the -official police, but it is not pleasant to have a family -misfortune like this noised abroad. Besides, it is a useless -expense, for how could you possibly find this Hosmer Angel?" - -"On the contrary," said Holmes quietly; "I have every reason to -believe that I will succeed in discovering Mr. Hosmer Angel." - -Mr. Windibank gave a violent start and dropped his gloves. "I am -delighted to hear it," he said. - -"It is a curious thing," remarked Holmes, "that a typewriter has -really quite as much individuality as a man's handwriting. Unless -they are quite new, no two of them write exactly alike. Some -letters get more worn than others, and some wear only on one -side. Now, you remark in this note of yours, Mr. Windibank, that -in every case there is some little slurring over of the 'e,' and -a slight defect in the tail of the 'r.' There are fourteen other -characteristics, but those are the more obvious." - -"We do all our correspondence with this machine at the office, -and no doubt it is a little worn," our visitor answered, glancing -keenly at Holmes with his bright little eyes. - -"And now I will show you what is really a very interesting study, -Mr. Windibank," Holmes continued. "I think of writing another -little monograph some of these days on the typewriter and its -relation to crime. It is a subject to which I have devoted some -little attention. I have here four letters which purport to come -from the missing man. They are all typewritten. In each case, not -only are the 'e's' slurred and the 'r's' tailless, but you will -observe, if you care to use my magnifying lens, that the fourteen -other characteristics to which I have alluded are there as well." - -Mr. Windibank sprang out of his chair and picked up his hat. "I -cannot waste time over this sort of fantastic talk, Mr. Holmes," -he said. "If you can catch the man, catch him, and let me know -when you have done it." - -"Certainly," said Holmes, stepping over and turning the key in -the door. "I let you know, then, that I have caught him!" - -"What! where?" shouted Mr. Windibank, turning white to his lips -and glancing about him like a rat in a trap. - -"Oh, it won't do--really it won't," said Holmes suavely. "There -is no possible getting out of it, Mr. Windibank. It is quite too -transparent, and it was a very bad compliment when you said that -it was impossible for me to solve so simple a question. That's -right! Sit down and let us talk it over." - -Our visitor collapsed into a chair, with a ghastly face and a -glitter of moisture on his brow. "It--it's not actionable," he -stammered. - -"I am very much afraid that it is not. But between ourselves, -Windibank, it was as cruel and selfish and heartless a trick in a -petty way as ever came before me. Now, let me just run over the -course of events, and you will contradict me if I go wrong." - -The man sat huddled up in his chair, with his head sunk upon his -breast, like one who is utterly crushed. Holmes stuck his feet up -on the corner of the mantelpiece and, leaning back with his hands -in his pockets, began talking, rather to himself, as it seemed, -than to us. - -"The man married a woman very much older than himself for her -money," said he, "and he enjoyed the use of the money of the -daughter as long as she lived with them. It was a considerable -sum, for people in their position, and the loss of it would have -made a serious difference. It was worth an effort to preserve it. -The daughter was of a good, amiable disposition, but affectionate -and warm-hearted in her ways, so that it was evident that with -her fair personal advantages, and her little income, she would -not be allowed to remain single long. Now her marriage would -mean, of course, the loss of a hundred a year, so what does her -stepfather do to prevent it? He takes the obvious course of -keeping her at home and forbidding her to seek the company of -people of her own age. But soon he found that that would not -answer forever. She became restive, insisted upon her rights, and -finally announced her positive intention of going to a certain -ball. What does her clever stepfather do then? He conceives an -idea more creditable to his head than to his heart. With the -connivance and assistance of his wife he disguised himself, -covered those keen eyes with tinted glasses, masked the face with -a moustache and a pair of bushy whiskers, sunk that clear voice -into an insinuating whisper, and doubly secure on account of the -girl's short sight, he appears as Mr. Hosmer Angel, and keeps off -other lovers by making love himself." - -"It was only a joke at first," groaned our visitor. "We never -thought that she would have been so carried away." - -"Very likely not. However that may be, the young lady was very -decidedly carried away, and, having quite made up her mind that -her stepfather was in France, the suspicion of treachery never -for an instant entered her mind. She was flattered by the -gentleman's attentions, and the effect was increased by the -loudly expressed admiration of her mother. Then Mr. Angel began -to call, for it was obvious that the matter should be pushed as -far as it would go if a real effect were to be produced. There -were meetings, and an engagement, which would finally secure the -girl's affections from turning towards anyone else. But the -deception could not be kept up forever. These pretended journeys -to France were rather cumbrous. The thing to do was clearly to -bring the business to an end in such a dramatic manner that it -would leave a permanent impression upon the young lady's mind and -prevent her from looking upon any other suitor for some time to -come. Hence those vows of fidelity exacted upon a Testament, and -hence also the allusions to a possibility of something happening -on the very morning of the wedding. James Windibank wished Miss -Sutherland to be so bound to Hosmer Angel, and so uncertain as to -his fate, that for ten years to come, at any rate, she would not -listen to another man. As far as the church door he brought her, -and then, as he could go no farther, he conveniently vanished -away by the old trick of stepping in at one door of a -four-wheeler and out at the other. I think that was the chain of -events, Mr. Windibank!" - -Our visitor had recovered something of his assurance while Holmes -had been talking, and he rose from his chair now with a cold -sneer upon his pale face. - -"It may be so, or it may not, Mr. Holmes," said he, "but if you -are so very sharp you ought to be sharp enough to know that it is -you who are breaking the law now, and not me. I have done nothing -actionable from the first, but as long as you keep that door -locked you lay yourself open to an action for assault and illegal -constraint." - -"The law cannot, as you say, touch you," said Holmes, unlocking -and throwing open the door, "yet there never was a man who -deserved punishment more. If the young lady has a brother or a -friend, he ought to lay a whip across your shoulders. By Jove!" -he continued, flushing up at the sight of the bitter sneer upon -the man's face, "it is not part of my duties to my client, but -here's a hunting crop handy, and I think I shall just treat -myself to--" He took two swift steps to the whip, but before he -could grasp it there was a wild clatter of steps upon the stairs, -the heavy hall door banged, and from the window we could see Mr. -James Windibank running at the top of his speed down the road. - -"There's a cold-blooded scoundrel!" said Holmes, laughing, as he -threw himself down into his chair once more. "That fellow will -rise from crime to crime until he does something very bad, and -ends on a gallows. The case has, in some respects, been not -entirely devoid of interest." - -"I cannot now entirely see all the steps of your reasoning," I -remarked. - -"Well, of course it was obvious from the first that this Mr. -Hosmer Angel must have some strong object for his curious -conduct, and it was equally clear that the only man who really -profited by the incident, as far as we could see, was the -stepfather. Then the fact that the two men were never together, -but that the one always appeared when the other was away, was -suggestive. So were the tinted spectacles and the curious voice, -which both hinted at a disguise, as did the bushy whiskers. My -suspicions were all confirmed by his peculiar action in -typewriting his signature, which, of course, inferred that his -handwriting was so familiar to her that she would recognise even -the smallest sample of it. You see all these isolated facts, -together with many minor ones, all pointed in the same -direction." - -"And how did you verify them?" - -"Having once spotted my man, it was easy to get corroboration. I -knew the firm for which this man worked. Having taken the printed -description. I eliminated everything from it which could be the -result of a disguise--the whiskers, the glasses, the voice, and I -sent it to the firm, with a request that they would inform me -whether it answered to the description of any of their -travellers. I had already noticed the peculiarities of the -typewriter, and I wrote to the man himself at his business -address asking him if he would come here. As I expected, his -reply was typewritten and revealed the same trivial but -characteristic defects. The same post brought me a letter from -Westhouse & Marbank, of Fenchurch Street, to say that the -description tallied in every respect with that of their employ, -James Windibank. Voil tout!" - -"And Miss Sutherland?" - -"If I tell her she will not believe me. You may remember the old -Persian saying, 'There is danger for him who taketh the tiger -cub, and danger also for whoso snatches a delusion from a woman.' -There is as much sense in Hafiz as in Horace, and as much -knowledge of the world." - - - -ADVENTURE IV. THE BOSCOMBE VALLEY MYSTERY - -We were seated at breakfast one morning, my wife and I, when the -maid brought in a telegram. It was from Sherlock Holmes and ran -in this way: - -"Have you a couple of days to spare? Have just been wired for from -the west of England in connection with Boscombe Valley tragedy. -Shall be glad if you will come with me. Air and scenery perfect. -Leave Paddington by the 11:15." - -"What do you say, dear?" said my wife, looking across at me. -"Will you go?" - -"I really don't know what to say. I have a fairly long list at -present." - -"Oh, Anstruther would do your work for you. You have been looking -a little pale lately. I think that the change would do you good, -and you are always so interested in Mr. Sherlock Holmes' cases." - -"I should be ungrateful if I were not, seeing what I gained -through one of them," I answered. "But if I am to go, I must pack -at once, for I have only half an hour." - -My experience of camp life in Afghanistan had at least had the -effect of making me a prompt and ready traveller. My wants were -few and simple, so that in less than the time stated I was in a -cab with my valise, rattling away to Paddington Station. Sherlock -Holmes was pacing up and down the platform, his tall, gaunt -figure made even gaunter and taller by his long grey -travelling-cloak and close-fitting cloth cap. - -"It is really very good of you to come, Watson," said he. "It -makes a considerable difference to me, having someone with me on -whom I can thoroughly rely. Local aid is always either worthless -or else biassed. If you will keep the two corner seats I shall -get the tickets." - -We had the carriage to ourselves save for an immense litter of -papers which Holmes had brought with him. Among these he rummaged -and read, with intervals of note-taking and of meditation, until -we were past Reading. Then he suddenly rolled them all into a -gigantic ball and tossed them up onto the rack. - -"Have you heard anything of the case?" he asked. - -"Not a word. I have not seen a paper for some days." - -"The London press has not had very full accounts. I have just -been looking through all the recent papers in order to master the -particulars. It seems, from what I gather, to be one of those -simple cases which are so extremely difficult." - -"That sounds a little paradoxical." - -"But it is profoundly true. Singularity is almost invariably a -clue. The more featureless and commonplace a crime is, the more -difficult it is to bring it home. In this case, however, they -have established a very serious case against the son of the -murdered man." - -"It is a murder, then?" - -"Well, it is conjectured to be so. I shall take nothing for -granted until I have the opportunity of looking personally into -it. I will explain the state of things to you, as far as I have -been able to understand it, in a very few words. - -"Boscombe Valley is a country district not very far from Ross, in -Herefordshire. The largest landed proprietor in that part is a -Mr. John Turner, who made his money in Australia and returned -some years ago to the old country. One of the farms which he -held, that of Hatherley, was let to Mr. Charles McCarthy, who was -also an ex-Australian. The men had known each other in the -colonies, so that it was not unnatural that when they came to -settle down they should do so as near each other as possible. -Turner was apparently the richer man, so McCarthy became his -tenant but still remained, it seems, upon terms of perfect -equality, as they were frequently together. McCarthy had one son, -a lad of eighteen, and Turner had an only daughter of the same -age, but neither of them had wives living. They appear to have -avoided the society of the neighbouring English families and to -have led retired lives, though both the McCarthys were fond of -sport and were frequently seen at the race-meetings of the -neighbourhood. McCarthy kept two servants--a man and a girl. -Turner had a considerable household, some half-dozen at the -least. That is as much as I have been able to gather about the -families. Now for the facts. - -"On June 3rd, that is, on Monday last, McCarthy left his house at -Hatherley about three in the afternoon and walked down to the -Boscombe Pool, which is a small lake formed by the spreading out -of the stream which runs down the Boscombe Valley. He had been -out with his serving-man in the morning at Ross, and he had told -the man that he must hurry, as he had an appointment of -importance to keep at three. From that appointment he never came -back alive. - -"From Hatherley Farm-house to the Boscombe Pool is a quarter of a -mile, and two people saw him as he passed over this ground. One -was an old woman, whose name is not mentioned, and the other was -William Crowder, a game-keeper in the employ of Mr. Turner. Both -these witnesses depose that Mr. McCarthy was walking alone. The -game-keeper adds that within a few minutes of his seeing Mr. -McCarthy pass he had seen his son, Mr. James McCarthy, going the -same way with a gun under his arm. To the best of his belief, the -father was actually in sight at the time, and the son was -following him. He thought no more of the matter until he heard in -the evening of the tragedy that had occurred. - -"The two McCarthys were seen after the time when William Crowder, -the game-keeper, lost sight of them. The Boscombe Pool is thickly -wooded round, with just a fringe of grass and of reeds round the -edge. A girl of fourteen, Patience Moran, who is the daughter of -the lodge-keeper of the Boscombe Valley estate, was in one of the -woods picking flowers. She states that while she was there she -saw, at the border of the wood and close by the lake, Mr. -McCarthy and his son, and that they appeared to be having a -violent quarrel. She heard Mr. McCarthy the elder using very -strong language to his son, and she saw the latter raise up his -hand as if to strike his father. She was so frightened by their -violence that she ran away and told her mother when she reached -home that she had left the two McCarthys quarrelling near -Boscombe Pool, and that she was afraid that they were going to -fight. She had hardly said the words when young Mr. McCarthy came -running up to the lodge to say that he had found his father dead -in the wood, and to ask for the help of the lodge-keeper. He was -much excited, without either his gun or his hat, and his right -hand and sleeve were observed to be stained with fresh blood. On -following him they found the dead body stretched out upon the -grass beside the pool. The head had been beaten in by repeated -blows of some heavy and blunt weapon. The injuries were such as -might very well have been inflicted by the butt-end of his son's -gun, which was found lying on the grass within a few paces of the -body. Under these circumstances the young man was instantly -arrested, and a verdict of 'wilful murder' having been returned -at the inquest on Tuesday, he was on Wednesday brought before the -magistrates at Ross, who have referred the case to the next -Assizes. Those are the main facts of the case as they came out -before the coroner and the police-court." - -"I could hardly imagine a more damning case," I remarked. "If -ever circumstantial evidence pointed to a criminal it does so -here." - -"Circumstantial evidence is a very tricky thing," answered Holmes -thoughtfully. "It may seem to point very straight to one thing, -but if you shift your own point of view a little, you may find it -pointing in an equally uncompromising manner to something -entirely different. It must be confessed, however, that the case -looks exceedingly grave against the young man, and it is very -possible that he is indeed the culprit. There are several people -in the neighbourhood, however, and among them Miss Turner, the -daughter of the neighbouring landowner, who believe in his -innocence, and who have retained Lestrade, whom you may recollect -in connection with the Study in Scarlet, to work out the case in -his interest. Lestrade, being rather puzzled, has referred the -case to me, and hence it is that two middle-aged gentlemen are -flying westward at fifty miles an hour instead of quietly -digesting their breakfasts at home." - -"I am afraid," said I, "that the facts are so obvious that you -will find little credit to be gained out of this case." - -"There is nothing more deceptive than an obvious fact," he -answered, laughing. "Besides, we may chance to hit upon some -other obvious facts which may have been by no means obvious to -Mr. Lestrade. You know me too well to think that I am boasting -when I say that I shall either confirm or destroy his theory by -means which he is quite incapable of employing, or even of -understanding. To take the first example to hand, I very clearly -perceive that in your bedroom the window is upon the right-hand -side, and yet I question whether Mr. Lestrade would have noted -even so self-evident a thing as that." - -"How on earth--" - -"My dear fellow, I know you well. I know the military neatness -which characterises you. You shave every morning, and in this -season you shave by the sunlight; but since your shaving is less -and less complete as we get farther back on the left side, until -it becomes positively slovenly as we get round the angle of the -jaw, it is surely very clear that that side is less illuminated -than the other. I could not imagine a man of your habits looking -at himself in an equal light and being satisfied with such a -result. I only quote this as a trivial example of observation and -inference. Therein lies my mtier, and it is just possible that -it may be of some service in the investigation which lies before -us. There are one or two minor points which were brought out in -the inquest, and which are worth considering." - -"What are they?" - -"It appears that his arrest did not take place at once, but after -the return to Hatherley Farm. On the inspector of constabulary -informing him that he was a prisoner, he remarked that he was not -surprised to hear it, and that it was no more than his deserts. -This observation of his had the natural effect of removing any -traces of doubt which might have remained in the minds of the -coroner's jury." - -"It was a confession," I ejaculated. - -"No, for it was followed by a protestation of innocence." - -"Coming on the top of such a damning series of events, it was at -least a most suspicious remark." - -"On the contrary," said Holmes, "it is the brightest rift which I -can at present see in the clouds. However innocent he might be, -he could not be such an absolute imbecile as not to see that the -circumstances were very black against him. Had he appeared -surprised at his own arrest, or feigned indignation at it, I -should have looked upon it as highly suspicious, because such -surprise or anger would not be natural under the circumstances, -and yet might appear to be the best policy to a scheming man. His -frank acceptance of the situation marks him as either an innocent -man, or else as a man of considerable self-restraint and -firmness. As to his remark about his deserts, it was also not -unnatural if you consider that he stood beside the dead body of -his father, and that there is no doubt that he had that very day -so far forgotten his filial duty as to bandy words with him, and -even, according to the little girl whose evidence is so -important, to raise his hand as if to strike him. The -self-reproach and contrition which are displayed in his remark -appear to me to be the signs of a healthy mind rather than of a -guilty one." - -I shook my head. "Many men have been hanged on far slighter -evidence," I remarked. - -"So they have. And many men have been wrongfully hanged." - -"What is the young man's own account of the matter?" - -"It is, I am afraid, not very encouraging to his supporters, -though there are one or two points in it which are suggestive. -You will find it here, and may read it for yourself." - -He picked out from his bundle a copy of the local Herefordshire -paper, and having turned down the sheet he pointed out the -paragraph in which the unfortunate young man had given his own -statement of what had occurred. I settled myself down in the -corner of the carriage and read it very carefully. It ran in this -way: - -"Mr. James McCarthy, the only son of the deceased, was then called -and gave evidence as follows: 'I had been away from home for -three days at Bristol, and had only just returned upon the -morning of last Monday, the 3rd. My father was absent from home at -the time of my arrival, and I was informed by the maid that he -had driven over to Ross with John Cobb, the groom. Shortly after -my return I heard the wheels of his trap in the yard, and, -looking out of my window, I saw him get out and walk rapidly out -of the yard, though I was not aware in which direction he was -going. I then took my gun and strolled out in the direction of -the Boscombe Pool, with the intention of visiting the rabbit -warren which is upon the other side. On my way I saw William -Crowder, the game-keeper, as he had stated in his evidence; but -he is mistaken in thinking that I was following my father. I had -no idea that he was in front of me. When about a hundred yards -from the pool I heard a cry of "Cooee!" which was a usual signal -between my father and myself. I then hurried forward, and found -him standing by the pool. He appeared to be much surprised at -seeing me and asked me rather roughly what I was doing there. A -conversation ensued which led to high words and almost to blows, -for my father was a man of a very violent temper. Seeing that his -passion was becoming ungovernable, I left him and returned -towards Hatherley Farm. I had not gone more than 150 yards, -however, when I heard a hideous outcry behind me, which caused me -to run back again. I found my father expiring upon the ground, -with his head terribly injured. I dropped my gun and held him in -my arms, but he almost instantly expired. I knelt beside him for -some minutes, and then made my way to Mr. Turner's lodge-keeper, -his house being the nearest, to ask for assistance. I saw no one -near my father when I returned, and I have no idea how he came by -his injuries. He was not a popular man, being somewhat cold and -forbidding in his manners, but he had, as far as I know, no -active enemies. I know nothing further of the matter.' - -"The Coroner: Did your father make any statement to you before -he died? - -"Witness: He mumbled a few words, but I could only catch some -allusion to a rat. - -"The Coroner: What did you understand by that? - -"Witness: It conveyed no meaning to me. I thought that he was -delirious. - -"The Coroner: What was the point upon which you and your father -had this final quarrel? - -"Witness: I should prefer not to answer. - -"The Coroner: I am afraid that I must press it. - -"Witness: It is really impossible for me to tell you. I can -assure you that it has nothing to do with the sad tragedy which -followed. - -"The Coroner: That is for the court to decide. I need not point -out to you that your refusal to answer will prejudice your case -considerably in any future proceedings which may arise. - -"Witness: I must still refuse. - -"The Coroner: I understand that the cry of 'Cooee' was a common -signal between you and your father? - -"Witness: It was. - -"The Coroner: How was it, then, that he uttered it before he saw -you, and before he even knew that you had returned from Bristol? - -"Witness (with considerable confusion): I do not know. - -"A Juryman: Did you see nothing which aroused your suspicions -when you returned on hearing the cry and found your father -fatally injured? - -"Witness: Nothing definite. - -"The Coroner: What do you mean? - -"Witness: I was so disturbed and excited as I rushed out into -the open, that I could think of nothing except of my father. Yet -I have a vague impression that as I ran forward something lay -upon the ground to the left of me. It seemed to me to be -something grey in colour, a coat of some sort, or a plaid perhaps. -When I rose from my father I looked round for it, but it was -gone. - -"'Do you mean that it disappeared before you went for help?' - -"'Yes, it was gone.' - -"'You cannot say what it was?' - -"'No, I had a feeling something was there.' - -"'How far from the body?' - -"'A dozen yards or so.' - -"'And how far from the edge of the wood?' - -"'About the same.' - -"'Then if it was removed it was while you were within a dozen -yards of it?' - -"'Yes, but with my back towards it.' - -"This concluded the examination of the witness." - -"I see," said I as I glanced down the column, "that the coroner -in his concluding remarks was rather severe upon young McCarthy. -He calls attention, and with reason, to the discrepancy about his -father having signalled to him before seeing him, also to his -refusal to give details of his conversation with his father, and -his singular account of his father's dying words. They are all, -as he remarks, very much against the son." - -Holmes laughed softly to himself and stretched himself out upon -the cushioned seat. "Both you and the coroner have been at some -pains," said he, "to single out the very strongest points in the -young man's favour. Don't you see that you alternately give him -credit for having too much imagination and too little? Too -little, if he could not invent a cause of quarrel which would -give him the sympathy of the jury; too much, if he evolved from -his own inner consciousness anything so outr as a dying -reference to a rat, and the incident of the vanishing cloth. No, -sir, I shall approach this case from the point of view that what -this young man says is true, and we shall see whither that -hypothesis will lead us. And now here is my pocket Petrarch, and -not another word shall I say of this case until we are on the -scene of action. We lunch at Swindon, and I see that we shall be -there in twenty minutes." - -It was nearly four o'clock when we at last, after passing through -the beautiful Stroud Valley, and over the broad gleaming Severn, -found ourselves at the pretty little country-town of Ross. A -lean, ferret-like man, furtive and sly-looking, was waiting for -us upon the platform. In spite of the light brown dustcoat and -leather-leggings which he wore in deference to his rustic -surroundings, I had no difficulty in recognising Lestrade, of -Scotland Yard. With him we drove to the Hereford Arms where a -room had already been engaged for us. - -"I have ordered a carriage," said Lestrade as we sat over a cup -of tea. "I knew your energetic nature, and that you would not be -happy until you had been on the scene of the crime." - -"It was very nice and complimentary of you," Holmes answered. "It -is entirely a question of barometric pressure." - -Lestrade looked startled. "I do not quite follow," he said. - -"How is the glass? Twenty-nine, I see. No wind, and not a cloud -in the sky. I have a caseful of cigarettes here which need -smoking, and the sofa is very much superior to the usual country -hotel abomination. I do not think that it is probable that I -shall use the carriage to-night." - -Lestrade laughed indulgently. "You have, no doubt, already formed -your conclusions from the newspapers," he said. "The case is as -plain as a pikestaff, and the more one goes into it the plainer -it becomes. Still, of course, one can't refuse a lady, and such a -very positive one, too. She has heard of you, and would have your -opinion, though I repeatedly told her that there was nothing -which you could do which I had not already done. Why, bless my -soul! here is her carriage at the door." - -He had hardly spoken before there rushed into the room one of the -most lovely young women that I have ever seen in my life. Her -violet eyes shining, her lips parted, a pink flush upon her -cheeks, all thought of her natural reserve lost in her -overpowering excitement and concern. - -"Oh, Mr. Sherlock Holmes!" she cried, glancing from one to the -other of us, and finally, with a woman's quick intuition, -fastening upon my companion, "I am so glad that you have come. I -have driven down to tell you so. I know that James didn't do it. -I know it, and I want you to start upon your work knowing it, -too. Never let yourself doubt upon that point. We have known each -other since we were little children, and I know his faults as no -one else does; but he is too tender-hearted to hurt a fly. Such a -charge is absurd to anyone who really knows him." - -"I hope we may clear him, Miss Turner," said Sherlock Holmes. -"You may rely upon my doing all that I can." - -"But you have read the evidence. You have formed some conclusion? -Do you not see some loophole, some flaw? Do you not yourself -think that he is innocent?" - -"I think that it is very probable." - -"There, now!" she cried, throwing back her head and looking -defiantly at Lestrade. "You hear! He gives me hopes." - -Lestrade shrugged his shoulders. "I am afraid that my colleague -has been a little quick in forming his conclusions," he said. - -"But he is right. Oh! I know that he is right. James never did -it. And about his quarrel with his father, I am sure that the -reason why he would not speak about it to the coroner was because -I was concerned in it." - -"In what way?" asked Holmes. - -"It is no time for me to hide anything. James and his father had -many disagreements about me. Mr. McCarthy was very anxious that -there should be a marriage between us. James and I have always -loved each other as brother and sister; but of course he is young -and has seen very little of life yet, and--and--well, he -naturally did not wish to do anything like that yet. So there -were quarrels, and this, I am sure, was one of them." - -"And your father?" asked Holmes. "Was he in favour of such a -union?" - -"No, he was averse to it also. No one but Mr. McCarthy was in -favour of it." A quick blush passed over her fresh young face as -Holmes shot one of his keen, questioning glances at her. - -"Thank you for this information," said he. "May I see your father -if I call to-morrow?" - -"I am afraid the doctor won't allow it." - -"The doctor?" - -"Yes, have you not heard? Poor father has never been strong for -years back, but this has broken him down completely. He has taken -to his bed, and Dr. Willows says that he is a wreck and that his -nervous system is shattered. Mr. McCarthy was the only man alive -who had known dad in the old days in Victoria." - -"Ha! In Victoria! That is important." - -"Yes, at the mines." - -"Quite so; at the gold-mines, where, as I understand, Mr. Turner -made his money." - -"Yes, certainly." - -"Thank you, Miss Turner. You have been of material assistance to -me." - -"You will tell me if you have any news to-morrow. No doubt you -will go to the prison to see James. Oh, if you do, Mr. Holmes, do -tell him that I know him to be innocent." - -"I will, Miss Turner." - -"I must go home now, for dad is very ill, and he misses me so if -I leave him. Good-bye, and God help you in your undertaking." She -hurried from the room as impulsively as she had entered, and we -heard the wheels of her carriage rattle off down the street. - -"I am ashamed of you, Holmes," said Lestrade with dignity after a -few minutes' silence. "Why should you raise up hopes which you -are bound to disappoint? I am not over-tender of heart, but I -call it cruel." - -"I think that I see my way to clearing James McCarthy," said -Holmes. "Have you an order to see him in prison?" - -"Yes, but only for you and me." - -"Then I shall reconsider my resolution about going out. We have -still time to take a train to Hereford and see him to-night?" - -"Ample." - -"Then let us do so. Watson, I fear that you will find it very -slow, but I shall only be away a couple of hours." - -I walked down to the station with them, and then wandered through -the streets of the little town, finally returning to the hotel, -where I lay upon the sofa and tried to interest myself in a -yellow-backed novel. The puny plot of the story was so thin, -however, when compared to the deep mystery through which we were -groping, and I found my attention wander so continually from the -action to the fact, that I at last flung it across the room and -gave myself up entirely to a consideration of the events of the -day. Supposing that this unhappy young man's story were -absolutely true, then what hellish thing, what absolutely -unforeseen and extraordinary calamity could have occurred between -the time when he parted from his father, and the moment when, -drawn back by his screams, he rushed into the glade? It was -something terrible and deadly. What could it be? Might not the -nature of the injuries reveal something to my medical instincts? -I rang the bell and called for the weekly county paper, which -contained a verbatim account of the inquest. In the surgeon's -deposition it was stated that the posterior third of the left -parietal bone and the left half of the occipital bone had been -shattered by a heavy blow from a blunt weapon. I marked the spot -upon my own head. Clearly such a blow must have been struck from -behind. That was to some extent in favour of the accused, as when -seen quarrelling he was face to face with his father. Still, it -did not go for very much, for the older man might have turned his -back before the blow fell. Still, it might be worth while to call -Holmes' attention to it. Then there was the peculiar dying -reference to a rat. What could that mean? It could not be -delirium. A man dying from a sudden blow does not commonly become -delirious. No, it was more likely to be an attempt to explain how -he met his fate. But what could it indicate? I cudgelled my -brains to find some possible explanation. And then the incident -of the grey cloth seen by young McCarthy. If that were true the -murderer must have dropped some part of his dress, presumably his -overcoat, in his flight, and must have had the hardihood to -return and to carry it away at the instant when the son was -kneeling with his back turned not a dozen paces off. What a -tissue of mysteries and improbabilities the whole thing was! I -did not wonder at Lestrade's opinion, and yet I had so much faith -in Sherlock Holmes' insight that I could not lose hope as long -as every fresh fact seemed to strengthen his conviction of young -McCarthy's innocence. - -It was late before Sherlock Holmes returned. He came back alone, -for Lestrade was staying in lodgings in the town. - -"The glass still keeps very high," he remarked as he sat down. -"It is of importance that it should not rain before we are able -to go over the ground. On the other hand, a man should be at his -very best and keenest for such nice work as that, and I did not -wish to do it when fagged by a long journey. I have seen young -McCarthy." - -"And what did you learn from him?" - -"Nothing." - -"Could he throw no light?" - -"None at all. I was inclined to think at one time that he knew -who had done it and was screening him or her, but I am convinced -now that he is as puzzled as everyone else. He is not a very -quick-witted youth, though comely to look at and, I should think, -sound at heart." - -"I cannot admire his taste," I remarked, "if it is indeed a fact -that he was averse to a marriage with so charming a young lady as -this Miss Turner." - -"Ah, thereby hangs a rather painful tale. This fellow is madly, -insanely, in love with her, but some two years ago, when he was -only a lad, and before he really knew her, for she had been away -five years at a boarding-school, what does the idiot do but get -into the clutches of a barmaid in Bristol and marry her at a -registry office? No one knows a word of the matter, but you can -imagine how maddening it must be to him to be upbraided for not -doing what he would give his very eyes to do, but what he knows -to be absolutely impossible. It was sheer frenzy of this sort -which made him throw his hands up into the air when his father, -at their last interview, was goading him on to propose to Miss -Turner. On the other hand, he had no means of supporting himself, -and his father, who was by all accounts a very hard man, would -have thrown him over utterly had he known the truth. It was with -his barmaid wife that he had spent the last three days in -Bristol, and his father did not know where he was. Mark that -point. It is of importance. Good has come out of evil, however, -for the barmaid, finding from the papers that he is in serious -trouble and likely to be hanged, has thrown him over utterly and -has written to him to say that she has a husband already in the -Bermuda Dockyard, so that there is really no tie between them. I -think that that bit of news has consoled young McCarthy for all -that he has suffered." - -"But if he is innocent, who has done it?" - -"Ah! who? I would call your attention very particularly to two -points. One is that the murdered man had an appointment with -someone at the pool, and that the someone could not have been his -son, for his son was away, and he did not know when he would -return. The second is that the murdered man was heard to cry -'Cooee!' before he knew that his son had returned. Those are the -crucial points upon which the case depends. And now let us talk -about George Meredith, if you please, and we shall leave all -minor matters until to-morrow." - -There was no rain, as Holmes had foretold, and the morning broke -bright and cloudless. At nine o'clock Lestrade called for us with -the carriage, and we set off for Hatherley Farm and the Boscombe -Pool. - -"There is serious news this morning," Lestrade observed. "It is -said that Mr. Turner, of the Hall, is so ill that his life is -despaired of." - -"An elderly man, I presume?" said Holmes. - -"About sixty; but his constitution has been shattered by his life -abroad, and he has been in failing health for some time. This -business has had a very bad effect upon him. He was an old friend -of McCarthy's, and, I may add, a great benefactor to him, for I -have learned that he gave him Hatherley Farm rent free." - -"Indeed! That is interesting," said Holmes. - -"Oh, yes! In a hundred other ways he has helped him. Everybody -about here speaks of his kindness to him." - -"Really! Does it not strike you as a little singular that this -McCarthy, who appears to have had little of his own, and to have -been under such obligations to Turner, should still talk of -marrying his son to Turner's daughter, who is, presumably, -heiress to the estate, and that in such a very cocksure manner, -as if it were merely a case of a proposal and all else would -follow? It is the more strange, since we know that Turner himself -was averse to the idea. The daughter told us as much. Do you not -deduce something from that?" - -"We have got to the deductions and the inferences," said -Lestrade, winking at me. "I find it hard enough to tackle facts, -Holmes, without flying away after theories and fancies." - -"You are right," said Holmes demurely; "you do find it very hard -to tackle the facts." - -"Anyhow, I have grasped one fact which you seem to find it -difficult to get hold of," replied Lestrade with some warmth. - -"And that is--" - -"That McCarthy senior met his death from McCarthy junior and that -all theories to the contrary are the merest moonshine." - -"Well, moonshine is a brighter thing than fog," said Holmes, -laughing. "But I am very much mistaken if this is not Hatherley -Farm upon the left." - -"Yes, that is it." It was a widespread, comfortable-looking -building, two-storied, slate-roofed, with great yellow blotches -of lichen upon the grey walls. The drawn blinds and the smokeless -chimneys, however, gave it a stricken look, as though the weight -of this horror still lay heavy upon it. We called at the door, -when the maid, at Holmes' request, showed us the boots which her -master wore at the time of his death, and also a pair of the -son's, though not the pair which he had then had. Having measured -these very carefully from seven or eight different points, Holmes -desired to be led to the court-yard, from which we all followed -the winding track which led to Boscombe Pool. - -Sherlock Holmes was transformed when he was hot upon such a scent -as this. Men who had only known the quiet thinker and logician of -Baker Street would have failed to recognise him. His face flushed -and darkened. His brows were drawn into two hard black lines, -while his eyes shone out from beneath them with a steely glitter. -His face was bent downward, his shoulders bowed, his lips -compressed, and the veins stood out like whipcord in his long, -sinewy neck. His nostrils seemed to dilate with a purely animal -lust for the chase, and his mind was so absolutely concentrated -upon the matter before him that a question or remark fell -unheeded upon his ears, or, at the most, only provoked a quick, -impatient snarl in reply. Swiftly and silently he made his way -along the track which ran through the meadows, and so by way of -the woods to the Boscombe Pool. It was damp, marshy ground, as is -all that district, and there were marks of many feet, both upon -the path and amid the short grass which bounded it on either -side. Sometimes Holmes would hurry on, sometimes stop dead, and -once he made quite a little detour into the meadow. Lestrade and -I walked behind him, the detective indifferent and contemptuous, -while I watched my friend with the interest which sprang from the -conviction that every one of his actions was directed towards a -definite end. - -The Boscombe Pool, which is a little reed-girt sheet of water -some fifty yards across, is situated at the boundary between the -Hatherley Farm and the private park of the wealthy Mr. Turner. -Above the woods which lined it upon the farther side we could see -the red, jutting pinnacles which marked the site of the rich -landowner's dwelling. On the Hatherley side of the pool the woods -grew very thick, and there was a narrow belt of sodden grass -twenty paces across between the edge of the trees and the reeds -which lined the lake. Lestrade showed us the exact spot at which -the body had been found, and, indeed, so moist was the ground, -that I could plainly see the traces which had been left by the -fall of the stricken man. To Holmes, as I could see by his eager -face and peering eyes, very many other things were to be read -upon the trampled grass. He ran round, like a dog who is picking -up a scent, and then turned upon my companion. - -"What did you go into the pool for?" he asked. - -"I fished about with a rake. I thought there might be some weapon -or other trace. But how on earth--" - -"Oh, tut, tut! I have no time! That left foot of yours with its -inward twist is all over the place. A mole could trace it, and -there it vanishes among the reeds. Oh, how simple it would all -have been had I been here before they came like a herd of buffalo -and wallowed all over it. Here is where the party with the -lodge-keeper came, and they have covered all tracks for six or -eight feet round the body. But here are three separate tracks of -the same feet." He drew out a lens and lay down upon his -waterproof to have a better view, talking all the time rather to -himself than to us. "These are young McCarthy's feet. Twice he -was walking, and once he ran swiftly, so that the soles are -deeply marked and the heels hardly visible. That bears out his -story. He ran when he saw his father on the ground. Then here are -the father's feet as he paced up and down. What is this, then? It -is the butt-end of the gun as the son stood listening. And this? -Ha, ha! What have we here? Tiptoes! tiptoes! Square, too, quite -unusual boots! They come, they go, they come again--of course -that was for the cloak. Now where did they come from?" He ran up -and down, sometimes losing, sometimes finding the track until we -were well within the edge of the wood and under the shadow of a -great beech, the largest tree in the neighbourhood. Holmes traced -his way to the farther side of this and lay down once more upon -his face with a little cry of satisfaction. For a long time he -remained there, turning over the leaves and dried sticks, -gathering up what seemed to me to be dust into an envelope and -examining with his lens not only the ground but even the bark of -the tree as far as he could reach. A jagged stone was lying among -the moss, and this also he carefully examined and retained. Then -he followed a pathway through the wood until he came to the -highroad, where all traces were lost. - -"It has been a case of considerable interest," he remarked, -returning to his natural manner. "I fancy that this grey house on -the right must be the lodge. I think that I will go in and have a -word with Moran, and perhaps write a little note. Having done -that, we may drive back to our luncheon. You may walk to the cab, -and I shall be with you presently." - -It was about ten minutes before we regained our cab and drove -back into Ross, Holmes still carrying with him the stone which he -had picked up in the wood. - -"This may interest you, Lestrade," he remarked, holding it out. -"The murder was done with it." - -"I see no marks." - -"There are none." - -"How do you know, then?" - -"The grass was growing under it. It had only lain there a few -days. There was no sign of a place whence it had been taken. It -corresponds with the injuries. There is no sign of any other -weapon." - -"And the murderer?" - -"Is a tall man, left-handed, limps with the right leg, wears -thick-soled shooting-boots and a grey cloak, smokes Indian -cigars, uses a cigar-holder, and carries a blunt pen-knife in his -pocket. There are several other indications, but these may be -enough to aid us in our search." - -Lestrade laughed. "I am afraid that I am still a sceptic," he -said. "Theories are all very well, but we have to deal with a -hard-headed British jury." - -"Nous verrons," answered Holmes calmly. "You work your own -method, and I shall work mine. I shall be busy this afternoon, -and shall probably return to London by the evening train." - -"And leave your case unfinished?" - -"No, finished." - -"But the mystery?" - -"It is solved." - -"Who was the criminal, then?" - -"The gentleman I describe." - -"But who is he?" - -"Surely it would not be difficult to find out. This is not such a -populous neighbourhood." - -Lestrade shrugged his shoulders. "I am a practical man," he said, -"and I really cannot undertake to go about the country looking -for a left-handed gentleman with a game leg. I should become the -laughing-stock of Scotland Yard." - -"All right," said Holmes quietly. "I have given you the chance. -Here are your lodgings. Good-bye. I shall drop you a line before -I leave." - -Having left Lestrade at his rooms, we drove to our hotel, where -we found lunch upon the table. Holmes was silent and buried in -thought with a pained expression upon his face, as one who finds -himself in a perplexing position. - -"Look here, Watson," he said when the cloth was cleared "just sit -down in this chair and let me preach to you for a little. I don't -know quite what to do, and I should value your advice. Light a -cigar and let me expound." - - "Pray do so." - -"Well, now, in considering this case there are two points about -young McCarthy's narrative which struck us both instantly, -although they impressed me in his favour and you against him. One -was the fact that his father should, according to his account, -cry 'Cooee!' before seeing him. The other was his singular dying -reference to a rat. He mumbled several words, you understand, but -that was all that caught the son's ear. Now from this double -point our research must commence, and we will begin it by -presuming that what the lad says is absolutely true." - -"What of this 'Cooee!' then?" - -"Well, obviously it could not have been meant for the son. The -son, as far as he knew, was in Bristol. It was mere chance that -he was within earshot. The 'Cooee!' was meant to attract the -attention of whoever it was that he had the appointment with. But -'Cooee' is a distinctly Australian cry, and one which is used -between Australians. There is a strong presumption that the -person whom McCarthy expected to meet him at Boscombe Pool was -someone who had been in Australia." - -"What of the rat, then?" - -Sherlock Holmes took a folded paper from his pocket and flattened -it out on the table. "This is a map of the Colony of Victoria," -he said. "I wired to Bristol for it last night." He put his hand -over part of the map. "What do you read?" - -"ARAT," I read. - -"And now?" He raised his hand. - -"BALLARAT." - -"Quite so. That was the word the man uttered, and of which his -son only caught the last two syllables. He was trying to utter -the name of his murderer. So and so, of Ballarat." - -"It is wonderful!" I exclaimed. - -"It is obvious. And now, you see, I had narrowed the field down -considerably. The possession of a grey garment was a third point -which, granting the son's statement to be correct, was a -certainty. We have come now out of mere vagueness to the definite -conception of an Australian from Ballarat with a grey cloak." - -"Certainly." - -"And one who was at home in the district, for the pool can only -be approached by the farm or by the estate, where strangers could -hardly wander." - -"Quite so." - -"Then comes our expedition of to-day. By an examination of the -ground I gained the trifling details which I gave to that -imbecile Lestrade, as to the personality of the criminal." - -"But how did you gain them?" - -"You know my method. It is founded upon the observation of -trifles." - -"His height I know that you might roughly judge from the length -of his stride. His boots, too, might be told from their traces." - -"Yes, they were peculiar boots." - -"But his lameness?" - -"The impression of his right foot was always less distinct than -his left. He put less weight upon it. Why? Because he limped--he -was lame." - -"But his left-handedness." - -"You were yourself struck by the nature of the injury as recorded -by the surgeon at the inquest. The blow was struck from -immediately behind, and yet was upon the left side. Now, how can -that be unless it were by a left-handed man? He had stood behind -that tree during the interview between the father and son. He had -even smoked there. I found the ash of a cigar, which my special -knowledge of tobacco ashes enables me to pronounce as an Indian -cigar. I have, as you know, devoted some attention to this, and -written a little monograph on the ashes of 140 different -varieties of pipe, cigar, and cigarette tobacco. Having found the -ash, I then looked round and discovered the stump among the moss -where he had tossed it. It was an Indian cigar, of the variety -which are rolled in Rotterdam." - -"And the cigar-holder?" - -"I could see that the end had not been in his mouth. Therefore he -used a holder. The tip had been cut off, not bitten off, but the -cut was not a clean one, so I deduced a blunt pen-knife." - -"Holmes," I said, "you have drawn a net round this man from which -he cannot escape, and you have saved an innocent human life as -truly as if you had cut the cord which was hanging him. I see the -direction in which all this points. The culprit is--" - -"Mr. John Turner," cried the hotel waiter, opening the door of -our sitting-room, and ushering in a visitor. - -The man who entered was a strange and impressive figure. His -slow, limping step and bowed shoulders gave the appearance of -decrepitude, and yet his hard, deep-lined, craggy features, and -his enormous limbs showed that he was possessed of unusual -strength of body and of character. His tangled beard, grizzled -hair, and outstanding, drooping eyebrows combined to give an air -of dignity and power to his appearance, but his face was of an -ashen white, while his lips and the corners of his nostrils were -tinged with a shade of blue. It was clear to me at a glance that -he was in the grip of some deadly and chronic disease. - -"Pray sit down on the sofa," said Holmes gently. "You had my -note?" - -"Yes, the lodge-keeper brought it up. You said that you wished to -see me here to avoid scandal." - -"I thought people would talk if I went to the Hall." - -"And why did you wish to see me?" He looked across at my -companion with despair in his weary eyes, as though his question -was already answered. - -"Yes," said Holmes, answering the look rather than the words. "It -is so. I know all about McCarthy." - -The old man sank his face in his hands. "God help me!" he cried. -"But I would not have let the young man come to harm. I give you -my word that I would have spoken out if it went against him at -the Assizes." - -"I am glad to hear you say so," said Holmes gravely. - -"I would have spoken now had it not been for my dear girl. It -would break her heart--it will break her heart when she hears -that I am arrested." - -"It may not come to that," said Holmes. - -"What?" - -"I am no official agent. I understand that it was your daughter -who required my presence here, and I am acting in her interests. -Young McCarthy must be got off, however." - -"I am a dying man," said old Turner. "I have had diabetes for -years. My doctor says it is a question whether I shall live a -month. Yet I would rather die under my own roof than in a gaol." - -Holmes rose and sat down at the table with his pen in his hand -and a bundle of paper before him. "Just tell us the truth," he -said. "I shall jot down the facts. You will sign it, and Watson -here can witness it. Then I could produce your confession at the -last extremity to save young McCarthy. I promise you that I shall -not use it unless it is absolutely needed." - -"It's as well," said the old man; "it's a question whether I -shall live to the Assizes, so it matters little to me, but I -should wish to spare Alice the shock. And now I will make the -thing clear to you; it has been a long time in the acting, but -will not take me long to tell. - -"You didn't know this dead man, McCarthy. He was a devil -incarnate. I tell you that. God keep you out of the clutches of -such a man as he. His grip has been upon me these twenty years, -and he has blasted my life. I'll tell you first how I came to be -in his power. - -"It was in the early '60's at the diggings. I was a young chap -then, hot-blooded and reckless, ready to turn my hand at -anything; I got among bad companions, took to drink, had no luck -with my claim, took to the bush, and in a word became what you -would call over here a highway robber. There were six of us, and -we had a wild, free life of it, sticking up a station from time -to time, or stopping the wagons on the road to the diggings. -Black Jack of Ballarat was the name I went under, and our party -is still remembered in the colony as the Ballarat Gang. - -"One day a gold convoy came down from Ballarat to Melbourne, and -we lay in wait for it and attacked it. There were six troopers -and six of us, so it was a close thing, but we emptied four of -their saddles at the first volley. Three of our boys were killed, -however, before we got the swag. I put my pistol to the head of -the wagon-driver, who was this very man McCarthy. I wish to the -Lord that I had shot him then, but I spared him, though I saw his -wicked little eyes fixed on my face, as though to remember every -feature. We got away with the gold, became wealthy men, and made -our way over to England without being suspected. There I parted -from my old pals and determined to settle down to a quiet and -respectable life. I bought this estate, which chanced to be in -the market, and I set myself to do a little good with my money, -to make up for the way in which I had earned it. I married, too, -and though my wife died young she left me my dear little Alice. -Even when she was just a baby her wee hand seemed to lead me down -the right path as nothing else had ever done. In a word, I turned -over a new leaf and did my best to make up for the past. All was -going well when McCarthy laid his grip upon me. - -"I had gone up to town about an investment, and I met him in -Regent Street with hardly a coat to his back or a boot to his -foot. - -"'Here we are, Jack,' says he, touching me on the arm; 'we'll be -as good as a family to you. There's two of us, me and my son, and -you can have the keeping of us. If you don't--it's a fine, -law-abiding country is England, and there's always a policeman -within hail.' - -"Well, down they came to the west country, there was no shaking -them off, and there they have lived rent free on my best land -ever since. There was no rest for me, no peace, no forgetfulness; -turn where I would, there was his cunning, grinning face at my -elbow. It grew worse as Alice grew up, for he soon saw I was more -afraid of her knowing my past than of the police. Whatever he -wanted he must have, and whatever it was I gave him without -question, land, money, houses, until at last he asked a thing -which I could not give. He asked for Alice. - -"His son, you see, had grown up, and so had my girl, and as I was -known to be in weak health, it seemed a fine stroke to him that -his lad should step into the whole property. But there I was -firm. I would not have his cursed stock mixed with mine; not that -I had any dislike to the lad, but his blood was in him, and that -was enough. I stood firm. McCarthy threatened. I braved him to do -his worst. We were to meet at the pool midway between our houses -to talk it over. - -"When I went down there I found him talking with his son, so I -smoked a cigar and waited behind a tree until he should be alone. -But as I listened to his talk all that was black and bitter in -me seemed to come uppermost. He was urging his son to marry my -daughter with as little regard for what she might think as if she -were a slut from off the streets. It drove me mad to think that I -and all that I held most dear should be in the power of such a -man as this. Could I not snap the bond? I was already a dying and -a desperate man. Though clear of mind and fairly strong of limb, -I knew that my own fate was sealed. But my memory and my girl! -Both could be saved if I could but silence that foul tongue. I -did it, Mr. Holmes. I would do it again. Deeply as I have sinned, -I have led a life of martyrdom to atone for it. But that my girl -should be entangled in the same meshes which held me was more -than I could suffer. I struck him down with no more compunction -than if he had been some foul and venomous beast. His cry brought -back his son; but I had gained the cover of the wood, though I -was forced to go back to fetch the cloak which I had dropped in -my flight. That is the true story, gentlemen, of all that -occurred." - -"Well, it is not for me to judge you," said Holmes as the old man -signed the statement which had been drawn out. "I pray that we -may never be exposed to such a temptation." - -"I pray not, sir. And what do you intend to do?" - -"In view of your health, nothing. You are yourself aware that you -will soon have to answer for your deed at a higher court than the -Assizes. I will keep your confession, and if McCarthy is -condemned I shall be forced to use it. If not, it shall never be -seen by mortal eye; and your secret, whether you be alive or -dead, shall be safe with us." - -"Farewell, then," said the old man solemnly. "Your own deathbeds, -when they come, will be the easier for the thought of the peace -which you have given to mine." Tottering and shaking in all his -giant frame, he stumbled slowly from the room. - -"God help us!" said Holmes after a long silence. "Why does fate -play such tricks with poor, helpless worms? I never hear of such -a case as this that I do not think of Baxter's words, and say, -'There, but for the grace of God, goes Sherlock Holmes.'" - -James McCarthy was acquitted at the Assizes on the strength of a -number of objections which had been drawn out by Holmes and -submitted to the defending counsel. Old Turner lived for seven -months after our interview, but he is now dead; and there is -every prospect that the son and daughter may come to live happily -together in ignorance of the black cloud which rests upon their -past. - - - -ADVENTURE V. THE FIVE ORANGE PIPS - -When I glance over my notes and records of the Sherlock Holmes -cases between the years '82 and '90, I am faced by so many which -present strange and interesting features that it is no easy -matter to know which to choose and which to leave. Some, however, -have already gained publicity through the papers, and others have -not offered a field for those peculiar qualities which my friend -possessed in so high a degree, and which it is the object of -these papers to illustrate. Some, too, have baffled his -analytical skill, and would be, as narratives, beginnings without -an ending, while others have been but partially cleared up, and -have their explanations founded rather upon conjecture and -surmise than on that absolute logical proof which was so dear to -him. There is, however, one of these last which was so remarkable -in its details and so startling in its results that I am tempted -to give some account of it in spite of the fact that there are -points in connection with it which never have been, and probably -never will be, entirely cleared up. - -The year '87 furnished us with a long series of cases of greater -or less interest, of which I retain the records. Among my -headings under this one twelve months I find an account of the -adventure of the Paradol Chamber, of the Amateur Mendicant -Society, who held a luxurious club in the lower vault of a -furniture warehouse, of the facts connected with the loss of the -British barque "Sophy Anderson", of the singular adventures of the -Grice Patersons in the island of Uffa, and finally of the -Camberwell poisoning case. In the latter, as may be remembered, -Sherlock Holmes was able, by winding up the dead man's watch, to -prove that it had been wound up two hours before, and that -therefore the deceased had gone to bed within that time--a -deduction which was of the greatest importance in clearing up the -case. All these I may sketch out at some future date, but none of -them present such singular features as the strange train of -circumstances which I have now taken up my pen to describe. - -It was in the latter days of September, and the equinoctial gales -had set in with exceptional violence. All day the wind had -screamed and the rain had beaten against the windows, so that -even here in the heart of great, hand-made London we were forced -to raise our minds for the instant from the routine of life and -to recognise the presence of those great elemental forces which -shriek at mankind through the bars of his civilisation, like -untamed beasts in a cage. As evening drew in, the storm grew -higher and louder, and the wind cried and sobbed like a child in -the chimney. Sherlock Holmes sat moodily at one side of the -fireplace cross-indexing his records of crime, while I at the -other was deep in one of Clark Russell's fine sea-stories until -the howl of the gale from without seemed to blend with the text, -and the splash of the rain to lengthen out into the long swash of -the sea waves. My wife was on a visit to her mother's, and for a -few days I was a dweller once more in my old quarters at Baker -Street. - -"Why," said I, glancing up at my companion, "that was surely the -bell. Who could come to-night? Some friend of yours, perhaps?" - -"Except yourself I have none," he answered. "I do not encourage -visitors." - -"A client, then?" - -"If so, it is a serious case. Nothing less would bring a man out -on such a day and at such an hour. But I take it that it is more -likely to be some crony of the landlady's." - -Sherlock Holmes was wrong in his conjecture, however, for there -came a step in the passage and a tapping at the door. He -stretched out his long arm to turn the lamp away from himself and -towards the vacant chair upon which a newcomer must sit. - -"Come in!" said he. - -The man who entered was young, some two-and-twenty at the -outside, well-groomed and trimly clad, with something of -refinement and delicacy in his bearing. The streaming umbrella -which he held in his hand, and his long shining waterproof told -of the fierce weather through which he had come. He looked about -him anxiously in the glare of the lamp, and I could see that his -face was pale and his eyes heavy, like those of a man who is -weighed down with some great anxiety. - -"I owe you an apology," he said, raising his golden pince-nez to -his eyes. "I trust that I am not intruding. I fear that I have -brought some traces of the storm and rain into your snug -chamber." - -"Give me your coat and umbrella," said Holmes. "They may rest -here on the hook and will be dry presently. You have come up from -the south-west, I see." - -"Yes, from Horsham." - -"That clay and chalk mixture which I see upon your toe caps is -quite distinctive." - -"I have come for advice." - -"That is easily got." - -"And help." - -"That is not always so easy." - -"I have heard of you, Mr. Holmes. I heard from Major Prendergast -how you saved him in the Tankerville Club scandal." - -"Ah, of course. He was wrongfully accused of cheating at cards." - -"He said that you could solve anything." - -"He said too much." - -"That you are never beaten." - -"I have been beaten four times--three times by men, and once by a -woman." - -"But what is that compared with the number of your successes?" - -"It is true that I have been generally successful." - -"Then you may be so with me." - -"I beg that you will draw your chair up to the fire and favour me -with some details as to your case." - -"It is no ordinary one." - -"None of those which come to me are. I am the last court of -appeal." - -"And yet I question, sir, whether, in all your experience, you -have ever listened to a more mysterious and inexplicable chain of -events than those which have happened in my own family." - -"You fill me with interest," said Holmes. "Pray give us the -essential facts from the commencement, and I can afterwards -question you as to those details which seem to me to be most -important." - -The young man pulled his chair up and pushed his wet feet out -towards the blaze. - -"My name," said he, "is John Openshaw, but my own affairs have, -as far as I can understand, little to do with this awful -business. It is a hereditary matter; so in order to give you an -idea of the facts, I must go back to the commencement of the -affair. - -"You must know that my grandfather had two sons--my uncle Elias -and my father Joseph. My father had a small factory at Coventry, -which he enlarged at the time of the invention of bicycling. He -was a patentee of the Openshaw unbreakable tire, and his business -met with such success that he was able to sell it and to retire -upon a handsome competence. - -"My uncle Elias emigrated to America when he was a young man and -became a planter in Florida, where he was reported to have done -very well. At the time of the war he fought in Jackson's army, -and afterwards under Hood, where he rose to be a colonel. When -Lee laid down his arms my uncle returned to his plantation, where -he remained for three or four years. About 1869 or 1870 he came -back to Europe and took a small estate in Sussex, near Horsham. -He had made a very considerable fortune in the States, and his -reason for leaving them was his aversion to the negroes, and his -dislike of the Republican policy in extending the franchise to -them. He was a singular man, fierce and quick-tempered, very -foul-mouthed when he was angry, and of a most retiring -disposition. During all the years that he lived at Horsham, I -doubt if ever he set foot in the town. He had a garden and two or -three fields round his house, and there he would take his -exercise, though very often for weeks on end he would never leave -his room. He drank a great deal of brandy and smoked very -heavily, but he would see no society and did not want any -friends, not even his own brother. - -"He didn't mind me; in fact, he took a fancy to me, for at the -time when he saw me first I was a youngster of twelve or so. This -would be in the year 1878, after he had been eight or nine years -in England. He begged my father to let me live with him and he -was very kind to me in his way. When he was sober he used to be -fond of playing backgammon and draughts with me, and he would -make me his representative both with the servants and with the -tradespeople, so that by the time that I was sixteen I was quite -master of the house. I kept all the keys and could go where I -liked and do what I liked, so long as I did not disturb him in -his privacy. There was one singular exception, however, for he -had a single room, a lumber-room up among the attics, which was -invariably locked, and which he would never permit either me or -anyone else to enter. With a boy's curiosity I have peeped -through the keyhole, but I was never able to see more than such a -collection of old trunks and bundles as would be expected in such -a room. - -"One day--it was in March, 1883--a letter with a foreign stamp -lay upon the table in front of the colonel's plate. It was not a -common thing for him to receive letters, for his bills were all -paid in ready money, and he had no friends of any sort. 'From -India!' said he as he took it up, 'Pondicherry postmark! What can -this be?' Opening it hurriedly, out there jumped five little -dried orange pips, which pattered down upon his plate. I began to -laugh at this, but the laugh was struck from my lips at the sight -of his face. His lip had fallen, his eyes were protruding, his -skin the colour of putty, and he glared at the envelope which he -still held in his trembling hand, 'K. K. K.!' he shrieked, and -then, 'My God, my God, my sins have overtaken me!' - -"'What is it, uncle?' I cried. - -"'Death,' said he, and rising from the table he retired to his -room, leaving me palpitating with horror. I took up the envelope -and saw scrawled in red ink upon the inner flap, just above the -gum, the letter K three times repeated. There was nothing else -save the five dried pips. What could be the reason of his -overpowering terror? I left the breakfast-table, and as I -ascended the stair I met him coming down with an old rusty key, -which must have belonged to the attic, in one hand, and a small -brass box, like a cashbox, in the other. - -"'They may do what they like, but I'll checkmate them still,' -said he with an oath. 'Tell Mary that I shall want a fire in my -room to-day, and send down to Fordham, the Horsham lawyer.' - -"I did as he ordered, and when the lawyer arrived I was asked to -step up to the room. The fire was burning brightly, and in the -grate there was a mass of black, fluffy ashes, as of burned -paper, while the brass box stood open and empty beside it. As I -glanced at the box I noticed, with a start, that upon the lid was -printed the treble K which I had read in the morning upon the -envelope. - -"'I wish you, John,' said my uncle, 'to witness my will. I leave -my estate, with all its advantages and all its disadvantages, to -my brother, your father, whence it will, no doubt, descend to -you. If you can enjoy it in peace, well and good! If you find you -cannot, take my advice, my boy, and leave it to your deadliest -enemy. I am sorry to give you such a two-edged thing, but I can't -say what turn things are going to take. Kindly sign the paper -where Mr. Fordham shows you.' - -"I signed the paper as directed, and the lawyer took it away with -him. The singular incident made, as you may think, the deepest -impression upon me, and I pondered over it and turned it every -way in my mind without being able to make anything of it. Yet I -could not shake off the vague feeling of dread which it left -behind, though the sensation grew less keen as the weeks passed -and nothing happened to disturb the usual routine of our lives. I -could see a change in my uncle, however. He drank more than ever, -and he was less inclined for any sort of society. Most of his -time he would spend in his room, with the door locked upon the -inside, but sometimes he would emerge in a sort of drunken frenzy -and would burst out of the house and tear about the garden with a -revolver in his hand, screaming out that he was afraid of no man, -and that he was not to be cooped up, like a sheep in a pen, by -man or devil. When these hot fits were over, however, he would -rush tumultuously in at the door and lock and bar it behind him, -like a man who can brazen it out no longer against the terror -which lies at the roots of his soul. At such times I have seen -his face, even on a cold day, glisten with moisture, as though it -were new raised from a basin. - -"Well, to come to an end of the matter, Mr. Holmes, and not to -abuse your patience, there came a night when he made one of those -drunken sallies from which he never came back. We found him, when -we went to search for him, face downward in a little -green-scummed pool, which lay at the foot of the garden. There -was no sign of any violence, and the water was but two feet deep, -so that the jury, having regard to his known eccentricity, -brought in a verdict of 'suicide.' But I, who knew how he winced -from the very thought of death, had much ado to persuade myself -that he had gone out of his way to meet it. The matter passed, -however, and my father entered into possession of the estate, and -of some 14,000 pounds, which lay to his credit at the bank." - -"One moment," Holmes interposed, "your statement is, I foresee, -one of the most remarkable to which I have ever listened. Let me -have the date of the reception by your uncle of the letter, and -the date of his supposed suicide." - -"The letter arrived on March 10, 1883. His death was seven weeks -later, upon the night of May 2nd." - -"Thank you. Pray proceed." - -"When my father took over the Horsham property, he, at my -request, made a careful examination of the attic, which had been -always locked up. We found the brass box there, although its -contents had been destroyed. On the inside of the cover was a -paper label, with the initials of K. K. K. repeated upon it, and -'Letters, memoranda, receipts, and a register' written beneath. -These, we presume, indicated the nature of the papers which had -been destroyed by Colonel Openshaw. For the rest, there was -nothing of much importance in the attic save a great many -scattered papers and note-books bearing upon my uncle's life in -America. Some of them were of the war time and showed that he had -done his duty well and had borne the repute of a brave soldier. -Others were of a date during the reconstruction of the Southern -states, and were mostly concerned with politics, for he had -evidently taken a strong part in opposing the carpet-bag -politicians who had been sent down from the North. - -"Well, it was the beginning of '84 when my father came to live at -Horsham, and all went as well as possible with us until the -January of '85. On the fourth day after the new year I heard my -father give a sharp cry of surprise as we sat together at the -breakfast-table. There he was, sitting with a newly opened -envelope in one hand and five dried orange pips in the -outstretched palm of the other one. He had always laughed at what -he called my cock-and-bull story about the colonel, but he looked -very scared and puzzled now that the same thing had come upon -himself. - -"'Why, what on earth does this mean, John?' he stammered. - -"My heart had turned to lead. 'It is K. K. K.,' said I. - -"He looked inside the envelope. 'So it is,' he cried. 'Here are -the very letters. But what is this written above them?' - -"'Put the papers on the sundial,' I read, peeping over his -shoulder. - -"'What papers? What sundial?' he asked. - -"'The sundial in the garden. There is no other,' said I; 'but the -papers must be those that are destroyed.' - -"'Pooh!' said he, gripping hard at his courage. 'We are in a -civilised land here, and we can't have tomfoolery of this kind. -Where does the thing come from?' - -"'From Dundee,' I answered, glancing at the postmark. - -"'Some preposterous practical joke,' said he. 'What have I to do -with sundials and papers? I shall take no notice of such -nonsense.' - -"'I should certainly speak to the police,' I said. - -"'And be laughed at for my pains. Nothing of the sort.' - -"'Then let me do so?' - -"'No, I forbid you. I won't have a fuss made about such -nonsense.' - -"It was in vain to argue with him, for he was a very obstinate -man. I went about, however, with a heart which was full of -forebodings. - -"On the third day after the coming of the letter my father went -from home to visit an old friend of his, Major Freebody, who is -in command of one of the forts upon Portsdown Hill. I was glad -that he should go, for it seemed to me that he was farther from -danger when he was away from home. In that, however, I was in -error. Upon the second day of his absence I received a telegram -from the major, imploring me to come at once. My father had -fallen over one of the deep chalk-pits which abound in the -neighbourhood, and was lying senseless, with a shattered skull. I -hurried to him, but he passed away without having ever recovered -his consciousness. He had, as it appears, been returning from -Fareham in the twilight, and as the country was unknown to him, -and the chalk-pit unfenced, the jury had no hesitation in -bringing in a verdict of 'death from accidental causes.' -Carefully as I examined every fact connected with his death, I -was unable to find anything which could suggest the idea of -murder. There were no signs of violence, no footmarks, no -robbery, no record of strangers having been seen upon the roads. -And yet I need not tell you that my mind was far from at ease, -and that I was well-nigh certain that some foul plot had been -woven round him. - -"In this sinister way I came into my inheritance. You will ask me -why I did not dispose of it? I answer, because I was well -convinced that our troubles were in some way dependent upon an -incident in my uncle's life, and that the danger would be as -pressing in one house as in another. - -"It was in January, '85, that my poor father met his end, and two -years and eight months have elapsed since then. During that time -I have lived happily at Horsham, and I had begun to hope that -this curse had passed away from the family, and that it had ended -with the last generation. I had begun to take comfort too soon, -however; yesterday morning the blow fell in the very shape in -which it had come upon my father." - -The young man took from his waistcoat a crumpled envelope, and -turning to the table he shook out upon it five little dried -orange pips. - -"This is the envelope," he continued. "The postmark is -London--eastern division. Within are the very words which were -upon my father's last message: 'K. K. K.'; and then 'Put the -papers on the sundial.'" - -"What have you done?" asked Holmes. - -"Nothing." - -"Nothing?" - -"To tell the truth"--he sank his face into his thin, white -hands--"I have felt helpless. I have felt like one of those poor -rabbits when the snake is writhing towards it. I seem to be in -the grasp of some resistless, inexorable evil, which no foresight -and no precautions can guard against." - -"Tut! tut!" cried Sherlock Holmes. "You must act, man, or you are -lost. Nothing but energy can save you. This is no time for -despair." - -"I have seen the police." - -"Ah!" - -"But they listened to my story with a smile. I am convinced that -the inspector has formed the opinion that the letters are all -practical jokes, and that the deaths of my relations were really -accidents, as the jury stated, and were not to be connected with -the warnings." - -Holmes shook his clenched hands in the air. "Incredible -imbecility!" he cried. - -"They have, however, allowed me a policeman, who may remain in -the house with me." - -"Has he come with you to-night?" - -"No. His orders were to stay in the house." - -Again Holmes raved in the air. - -"Why did you come to me," he cried, "and, above all, why did you -not come at once?" - -"I did not know. It was only to-day that I spoke to Major -Prendergast about my troubles and was advised by him to come to -you." - -"It is really two days since you had the letter. We should have -acted before this. You have no further evidence, I suppose, than -that which you have placed before us--no suggestive detail which -might help us?" - -"There is one thing," said John Openshaw. He rummaged in his coat -pocket, and, drawing out a piece of discoloured, blue-tinted -paper, he laid it out upon the table. "I have some remembrance," -said he, "that on the day when my uncle burned the papers I -observed that the small, unburned margins which lay amid the -ashes were of this particular colour. I found this single sheet -upon the floor of his room, and I am inclined to think that it -may be one of the papers which has, perhaps, fluttered out from -among the others, and in that way has escaped destruction. Beyond -the mention of pips, I do not see that it helps us much. I think -myself that it is a page from some private diary. The writing is -undoubtedly my uncle's." - -Holmes moved the lamp, and we both bent over the sheet of paper, -which showed by its ragged edge that it had indeed been torn from -a book. It was headed, "March, 1869," and beneath were the -following enigmatical notices: - -"4th. Hudson came. Same old platform. - -"7th. Set the pips on McCauley, Paramore, and - John Swain, of St. Augustine. - -"9th. McCauley cleared. - -"10th. John Swain cleared. - -"12th. Visited Paramore. All well." - -"Thank you!" said Holmes, folding up the paper and returning it -to our visitor. "And now you must on no account lose another -instant. We cannot spare time even to discuss what you have told -me. You must get home instantly and act." - -"What shall I do?" - -"There is but one thing to do. It must be done at once. You must -put this piece of paper which you have shown us into the brass -box which you have described. You must also put in a note to say -that all the other papers were burned by your uncle, and that -this is the only one which remains. You must assert that in such -words as will carry conviction with them. Having done this, you -must at once put the box out upon the sundial, as directed. Do -you understand?" - -"Entirely." - -"Do not think of revenge, or anything of the sort, at present. I -think that we may gain that by means of the law; but we have our -web to weave, while theirs is already woven. The first -consideration is to remove the pressing danger which threatens -you. The second is to clear up the mystery and to punish the -guilty parties." - -"I thank you," said the young man, rising and pulling on his -overcoat. "You have given me fresh life and hope. I shall -certainly do as you advise." - -"Do not lose an instant. And, above all, take care of yourself in -the meanwhile, for I do not think that there can be a doubt that -you are threatened by a very real and imminent danger. How do you -go back?" - -"By train from Waterloo." - -"It is not yet nine. The streets will be crowded, so I trust that -you may be in safety. And yet you cannot guard yourself too -closely." - -"I am armed." - -"That is well. To-morrow I shall set to work upon your case." - -"I shall see you at Horsham, then?" - -"No, your secret lies in London. It is there that I shall seek -it." - -"Then I shall call upon you in a day, or in two days, with news -as to the box and the papers. I shall take your advice in every -particular." He shook hands with us and took his leave. Outside -the wind still screamed and the rain splashed and pattered -against the windows. This strange, wild story seemed to have come -to us from amid the mad elements--blown in upon us like a sheet -of sea-weed in a gale--and now to have been reabsorbed by them -once more. - -Sherlock Holmes sat for some time in silence, with his head sunk -forward and his eyes bent upon the red glow of the fire. Then he -lit his pipe, and leaning back in his chair he watched the blue -smoke-rings as they chased each other up to the ceiling. - -"I think, Watson," he remarked at last, "that of all our cases we -have had none more fantastic than this." - -"Save, perhaps, the Sign of Four." - -"Well, yes. Save, perhaps, that. And yet this John Openshaw seems -to me to be walking amid even greater perils than did the -Sholtos." - -"But have you," I asked, "formed any definite conception as to -what these perils are?" - -"There can be no question as to their nature," he answered. - -"Then what are they? Who is this K. K. K., and why does he pursue -this unhappy family?" - -Sherlock Holmes closed his eyes and placed his elbows upon the -arms of his chair, with his finger-tips together. "The ideal -reasoner," he remarked, "would, when he had once been shown a -single fact in all its bearings, deduce from it not only all the -chain of events which led up to it but also all the results which -would follow from it. As Cuvier could correctly describe a whole -animal by the contemplation of a single bone, so the observer who -has thoroughly understood one link in a series of incidents -should be able to accurately state all the other ones, both -before and after. We have not yet grasped the results which the -reason alone can attain to. Problems may be solved in the study -which have baffled all those who have sought a solution by the -aid of their senses. To carry the art, however, to its highest -pitch, it is necessary that the reasoner should be able to -utilise all the facts which have come to his knowledge; and this -in itself implies, as you will readily see, a possession of all -knowledge, which, even in these days of free education and -encyclopaedias, is a somewhat rare accomplishment. It is not so -impossible, however, that a man should possess all knowledge -which is likely to be useful to him in his work, and this I have -endeavoured in my case to do. If I remember rightly, you on one -occasion, in the early days of our friendship, defined my limits -in a very precise fashion." - -"Yes," I answered, laughing. "It was a singular document. -Philosophy, astronomy, and politics were marked at zero, I -remember. Botany variable, geology profound as regards the -mud-stains from any region within fifty miles of town, chemistry -eccentric, anatomy unsystematic, sensational literature and crime -records unique, violin-player, boxer, swordsman, lawyer, and -self-poisoner by cocaine and tobacco. Those, I think, were the -main points of my analysis." - -Holmes grinned at the last item. "Well," he said, "I say now, as -I said then, that a man should keep his little brain-attic -stocked with all the furniture that he is likely to use, and the -rest he can put away in the lumber-room of his library, where he -can get it if he wants it. Now, for such a case as the one which -has been submitted to us to-night, we need certainly to muster -all our resources. Kindly hand me down the letter K of the -'American Encyclopaedia' which stands upon the shelf beside you. -Thank you. Now let us consider the situation and see what may be -deduced from it. In the first place, we may start with a strong -presumption that Colonel Openshaw had some very strong reason for -leaving America. Men at his time of life do not change all their -habits and exchange willingly the charming climate of Florida for -the lonely life of an English provincial town. His extreme love -of solitude in England suggests the idea that he was in fear of -someone or something, so we may assume as a working hypothesis -that it was fear of someone or something which drove him from -America. As to what it was he feared, we can only deduce that by -considering the formidable letters which were received by himself -and his successors. Did you remark the postmarks of those -letters?" - -"The first was from Pondicherry, the second from Dundee, and the -third from London." - -"From East London. What do you deduce from that?" - -"They are all seaports. That the writer was on board of a ship." - -"Excellent. We have already a clue. There can be no doubt that -the probability--the strong probability--is that the writer was -on board of a ship. And now let us consider another point. In the -case of Pondicherry, seven weeks elapsed between the threat and -its fulfilment, in Dundee it was only some three or four days. -Does that suggest anything?" - -"A greater distance to travel." - -"But the letter had also a greater distance to come." - -"Then I do not see the point." - -"There is at least a presumption that the vessel in which the man -or men are is a sailing-ship. It looks as if they always send -their singular warning or token before them when starting upon -their mission. You see how quickly the deed followed the sign -when it came from Dundee. If they had come from Pondicherry in a -steamer they would have arrived almost as soon as their letter. -But, as a matter of fact, seven weeks elapsed. I think that those -seven weeks represented the difference between the mail-boat which -brought the letter and the sailing vessel which brought the -writer." - -"It is possible." - -"More than that. It is probable. And now you see the deadly -urgency of this new case, and why I urged young Openshaw to -caution. The blow has always fallen at the end of the time which -it would take the senders to travel the distance. But this one -comes from London, and therefore we cannot count upon delay." - -"Good God!" I cried. "What can it mean, this relentless -persecution?" - -"The papers which Openshaw carried are obviously of vital -importance to the person or persons in the sailing-ship. I think -that it is quite clear that there must be more than one of them. -A single man could not have carried out two deaths in such a way -as to deceive a coroner's jury. There must have been several in -it, and they must have been men of resource and determination. -Their papers they mean to have, be the holder of them who it may. -In this way you see K. K. K. ceases to be the initials of an -individual and becomes the badge of a society." - -"But of what society?" - -"Have you never--" said Sherlock Holmes, bending forward and -sinking his voice--"have you never heard of the Ku Klux Klan?" - -"I never have." - -Holmes turned over the leaves of the book upon his knee. "Here it -is," said he presently: - -"'Ku Klux Klan. A name derived from the fanciful resemblance to -the sound produced by cocking a rifle. This terrible secret -society was formed by some ex-Confederate soldiers in the -Southern states after the Civil War, and it rapidly formed local -branches in different parts of the country, notably in Tennessee, -Louisiana, the Carolinas, Georgia, and Florida. Its power was -used for political purposes, principally for the terrorising of -the negro voters and the murdering and driving from the country -of those who were opposed to its views. Its outrages were usually -preceded by a warning sent to the marked man in some fantastic -but generally recognised shape--a sprig of oak-leaves in some -parts, melon seeds or orange pips in others. On receiving this -the victim might either openly abjure his former ways, or might -fly from the country. If he braved the matter out, death would -unfailingly come upon him, and usually in some strange and -unforeseen manner. So perfect was the organisation of the -society, and so systematic its methods, that there is hardly a -case upon record where any man succeeded in braving it with -impunity, or in which any of its outrages were traced home to the -perpetrators. For some years the organisation flourished in spite -of the efforts of the United States government and of the better -classes of the community in the South. Eventually, in the year -1869, the movement rather suddenly collapsed, although there have -been sporadic outbreaks of the same sort since that date.' - -"You will observe," said Holmes, laying down the volume, "that -the sudden breaking up of the society was coincident with the -disappearance of Openshaw from America with their papers. It may -well have been cause and effect. It is no wonder that he and his -family have some of the more implacable spirits upon their track. -You can understand that this register and diary may implicate -some of the first men in the South, and that there may be many -who will not sleep easy at night until it is recovered." - -"Then the page we have seen--" - -"Is such as we might expect. It ran, if I remember right, 'sent -the pips to A, B, and C'--that is, sent the society's warning to -them. Then there are successive entries that A and B cleared, or -left the country, and finally that C was visited, with, I fear, a -sinister result for C. Well, I think, Doctor, that we may let -some light into this dark place, and I believe that the only -chance young Openshaw has in the meantime is to do what I have -told him. There is nothing more to be said or to be done -to-night, so hand me over my violin and let us try to forget for -half an hour the miserable weather and the still more miserable -ways of our fellow-men." - - -It had cleared in the morning, and the sun was shining with a -subdued brightness through the dim veil which hangs over the -great city. Sherlock Holmes was already at breakfast when I came -down. - -"You will excuse me for not waiting for you," said he; "I have, I -foresee, a very busy day before me in looking into this case of -young Openshaw's." - -"What steps will you take?" I asked. - -"It will very much depend upon the results of my first inquiries. -I may have to go down to Horsham, after all." - -"You will not go there first?" - -"No, I shall commence with the City. Just ring the bell and the -maid will bring up your coffee." - -As I waited, I lifted the unopened newspaper from the table and -glanced my eye over it. It rested upon a heading which sent a -chill to my heart. - -"Holmes," I cried, "you are too late." - -"Ah!" said he, laying down his cup, "I feared as much. How was it -done?" He spoke calmly, but I could see that he was deeply moved. - -"My eye caught the name of Openshaw, and the heading 'Tragedy -Near Waterloo Bridge.' Here is the account: - -"Between nine and ten last night Police-Constable Cook, of the H -Division, on duty near Waterloo Bridge, heard a cry for help and -a splash in the water. The night, however, was extremely dark and -stormy, so that, in spite of the help of several passers-by, it -was quite impossible to effect a rescue. The alarm, however, was -given, and, by the aid of the water-police, the body was -eventually recovered. It proved to be that of a young gentleman -whose name, as it appears from an envelope which was found in his -pocket, was John Openshaw, and whose residence is near Horsham. -It is conjectured that he may have been hurrying down to catch -the last train from Waterloo Station, and that in his haste and -the extreme darkness he missed his path and walked over the edge -of one of the small landing-places for river steamboats. The body -exhibited no traces of violence, and there can be no doubt that -the deceased had been the victim of an unfortunate accident, -which should have the effect of calling the attention of the -authorities to the condition of the riverside landing-stages." - -We sat in silence for some minutes, Holmes more depressed and -shaken than I had ever seen him. - -"That hurts my pride, Watson," he said at last. "It is a petty -feeling, no doubt, but it hurts my pride. It becomes a personal -matter with me now, and, if God sends me health, I shall set my -hand upon this gang. That he should come to me for help, and that -I should send him away to his death--!" He sprang from his chair -and paced about the room in uncontrollable agitation, with a -flush upon his sallow cheeks and a nervous clasping and -unclasping of his long thin hands. - -"They must be cunning devils," he exclaimed at last. "How could -they have decoyed him down there? The Embankment is not on the -direct line to the station. The bridge, no doubt, was too -crowded, even on such a night, for their purpose. Well, Watson, -we shall see who will win in the long run. I am going out now!" - -"To the police?" - -"No; I shall be my own police. When I have spun the web they may -take the flies, but not before." - -All day I was engaged in my professional work, and it was late in -the evening before I returned to Baker Street. Sherlock Holmes -had not come back yet. It was nearly ten o'clock before he -entered, looking pale and worn. He walked up to the sideboard, -and tearing a piece from the loaf he devoured it voraciously, -washing it down with a long draught of water. - -"You are hungry," I remarked. - -"Starving. It had escaped my memory. I have had nothing since -breakfast." - -"Nothing?" - -"Not a bite. I had no time to think of it." - -"And how have you succeeded?" - -"Well." - -"You have a clue?" - -"I have them in the hollow of my hand. Young Openshaw shall not -long remain unavenged. Why, Watson, let us put their own devilish -trade-mark upon them. It is well thought of!" - -"What do you mean?" - -He took an orange from the cupboard, and tearing it to pieces he -squeezed out the pips upon the table. Of these he took five and -thrust them into an envelope. On the inside of the flap he wrote -"S. H. for J. O." Then he sealed it and addressed it to "Captain -James Calhoun, Barque 'Lone Star,' Savannah, Georgia." - -"That will await him when he enters port," said he, chuckling. -"It may give him a sleepless night. He will find it as sure a -precursor of his fate as Openshaw did before him." - -"And who is this Captain Calhoun?" - -"The leader of the gang. I shall have the others, but he first." - -"How did you trace it, then?" - -He took a large sheet of paper from his pocket, all covered with -dates and names. - -"I have spent the whole day," said he, "over Lloyd's registers -and files of the old papers, following the future career of every -vessel which touched at Pondicherry in January and February in -'83. There were thirty-six ships of fair tonnage which were -reported there during those months. Of these, one, the 'Lone Star,' -instantly attracted my attention, since, although it was reported -as having cleared from London, the name is that which is given to -one of the states of the Union." - -"Texas, I think." - -"I was not and am not sure which; but I knew that the ship must -have an American origin." - -"What then?" - -"I searched the Dundee records, and when I found that the barque -'Lone Star' was there in January, '85, my suspicion became a -certainty. I then inquired as to the vessels which lay at present -in the port of London." - -"Yes?" - -"The 'Lone Star' had arrived here last week. I went down to the -Albert Dock and found that she had been taken down the river by -the early tide this morning, homeward bound to Savannah. I wired -to Gravesend and learned that she had passed some time ago, and -as the wind is easterly I have no doubt that she is now past the -Goodwins and not very far from the Isle of Wight." - -"What will you do, then?" - -"Oh, I have my hand upon him. He and the two mates, are as I -learn, the only native-born Americans in the ship. The others are -Finns and Germans. I know, also, that they were all three away -from the ship last night. I had it from the stevedore who has -been loading their cargo. By the time that their sailing-ship -reaches Savannah the mail-boat will have carried this letter, and -the cable will have informed the police of Savannah that these -three gentlemen are badly wanted here upon a charge of murder." - -There is ever a flaw, however, in the best laid of human plans, -and the murderers of John Openshaw were never to receive the -orange pips which would show them that another, as cunning and as -resolute as themselves, was upon their track. Very long and very -severe were the equinoctial gales that year. We waited long for -news of the "Lone Star" of Savannah, but none ever reached us. We -did at last hear that somewhere far out in the Atlantic a -shattered stern-post of a boat was seen swinging in the trough -of a wave, with the letters "L. S." carved upon it, and that is -all which we shall ever know of the fate of the "Lone Star." - - - -ADVENTURE VI. THE MAN WITH THE TWISTED LIP - -Isa Whitney, brother of the late Elias Whitney, D.D., Principal -of the Theological College of St. George's, was much addicted to -opium. The habit grew upon him, as I understand, from some -foolish freak when he was at college; for having read De -Quincey's description of his dreams and sensations, he had -drenched his tobacco with laudanum in an attempt to produce the -same effects. He found, as so many more have done, that the -practice is easier to attain than to get rid of, and for many -years he continued to be a slave to the drug, an object of -mingled horror and pity to his friends and relatives. I can see -him now, with yellow, pasty face, drooping lids, and pin-point -pupils, all huddled in a chair, the wreck and ruin of a noble -man. - -One night--it was in June, '89--there came a ring to my bell, -about the hour when a man gives his first yawn and glances at the -clock. I sat up in my chair, and my wife laid her needle-work -down in her lap and made a little face of disappointment. - -"A patient!" said she. "You'll have to go out." - -I groaned, for I was newly come back from a weary day. - -We heard the door open, a few hurried words, and then quick steps -upon the linoleum. Our own door flew open, and a lady, clad in -some dark-coloured stuff, with a black veil, entered the room. - -"You will excuse my calling so late," she began, and then, -suddenly losing her self-control, she ran forward, threw her arms -about my wife's neck, and sobbed upon her shoulder. "Oh, I'm in -such trouble!" she cried; "I do so want a little help." - -"Why," said my wife, pulling up her veil, "it is Kate Whitney. -How you startled me, Kate! I had not an idea who you were when -you came in." - -"I didn't know what to do, so I came straight to you." That was -always the way. Folk who were in grief came to my wife like birds -to a light-house. - -"It was very sweet of you to come. Now, you must have some wine -and water, and sit here comfortably and tell us all about it. Or -should you rather that I sent James off to bed?" - -"Oh, no, no! I want the doctor's advice and help, too. It's about -Isa. He has not been home for two days. I am so frightened about -him!" - -It was not the first time that she had spoken to us of her -husband's trouble, to me as a doctor, to my wife as an old friend -and school companion. We soothed and comforted her by such words -as we could find. Did she know where her husband was? Was it -possible that we could bring him back to her? - -It seems that it was. She had the surest information that of late -he had, when the fit was on him, made use of an opium den in the -farthest east of the City. Hitherto his orgies had always been -confined to one day, and he had come back, twitching and -shattered, in the evening. But now the spell had been upon him -eight-and-forty hours, and he lay there, doubtless among the -dregs of the docks, breathing in the poison or sleeping off the -effects. There he was to be found, she was sure of it, at the Bar -of Gold, in Upper Swandam Lane. But what was she to do? How could -she, a young and timid woman, make her way into such a place and -pluck her husband out from among the ruffians who surrounded him? - -There was the case, and of course there was but one way out of -it. Might I not escort her to this place? And then, as a second -thought, why should she come at all? I was Isa Whitney's medical -adviser, and as such I had influence over him. I could manage it -better if I were alone. I promised her on my word that I would -send him home in a cab within two hours if he were indeed at the -address which she had given me. And so in ten minutes I had left -my armchair and cheery sitting-room behind me, and was speeding -eastward in a hansom on a strange errand, as it seemed to me at -the time, though the future only could show how strange it was to -be. - -But there was no great difficulty in the first stage of my -adventure. Upper Swandam Lane is a vile alley lurking behind the -high wharves which line the north side of the river to the east -of London Bridge. Between a slop-shop and a gin-shop, approached -by a steep flight of steps leading down to a black gap like the -mouth of a cave, I found the den of which I was in search. -Ordering my cab to wait, I passed down the steps, worn hollow in -the centre by the ceaseless tread of drunken feet; and by the -light of a flickering oil-lamp above the door I found the latch -and made my way into a long, low room, thick and heavy with the -brown opium smoke, and terraced with wooden berths, like the -forecastle of an emigrant ship. - -Through the gloom one could dimly catch a glimpse of bodies lying -in strange fantastic poses, bowed shoulders, bent knees, heads -thrown back, and chins pointing upward, with here and there a -dark, lack-lustre eye turned upon the newcomer. Out of the black -shadows there glimmered little red circles of light, now bright, -now faint, as the burning poison waxed or waned in the bowls of -the metal pipes. The most lay silent, but some muttered to -themselves, and others talked together in a strange, low, -monotonous voice, their conversation coming in gushes, and then -suddenly tailing off into silence, each mumbling out his own -thoughts and paying little heed to the words of his neighbour. At -the farther end was a small brazier of burning charcoal, beside -which on a three-legged wooden stool there sat a tall, thin old -man, with his jaw resting upon his two fists, and his elbows upon -his knees, staring into the fire. - -As I entered, a sallow Malay attendant had hurried up with a pipe -for me and a supply of the drug, beckoning me to an empty berth. - -"Thank you. I have not come to stay," said I. "There is a friend -of mine here, Mr. Isa Whitney, and I wish to speak with him." - -There was a movement and an exclamation from my right, and -peering through the gloom, I saw Whitney, pale, haggard, and -unkempt, staring out at me. - -"My God! It's Watson," said he. He was in a pitiable state of -reaction, with every nerve in a twitter. "I say, Watson, what -o'clock is it?" - -"Nearly eleven." - -"Of what day?" - -"Of Friday, June 19th." - -"Good heavens! I thought it was Wednesday. It is Wednesday. What -d'you want to frighten a chap for?" He sank his face onto his -arms and began to sob in a high treble key. - -"I tell you that it is Friday, man. Your wife has been waiting -this two days for you. You should be ashamed of yourself!" - -"So I am. But you've got mixed, Watson, for I have only been here -a few hours, three pipes, four pipes--I forget how many. But I'll -go home with you. I wouldn't frighten Kate--poor little Kate. -Give me your hand! Have you a cab?" - -"Yes, I have one waiting." - -"Then I shall go in it. But I must owe something. Find what I -owe, Watson. I am all off colour. I can do nothing for myself." - -I walked down the narrow passage between the double row of -sleepers, holding my breath to keep out the vile, stupefying -fumes of the drug, and looking about for the manager. As I passed -the tall man who sat by the brazier I felt a sudden pluck at my -skirt, and a low voice whispered, "Walk past me, and then look -back at me." The words fell quite distinctly upon my ear. I -glanced down. They could only have come from the old man at my -side, and yet he sat now as absorbed as ever, very thin, very -wrinkled, bent with age, an opium pipe dangling down from between -his knees, as though it had dropped in sheer lassitude from his -fingers. I took two steps forward and looked back. It took all my -self-control to prevent me from breaking out into a cry of -astonishment. He had turned his back so that none could see him -but I. His form had filled out, his wrinkles were gone, the dull -eyes had regained their fire, and there, sitting by the fire and -grinning at my surprise, was none other than Sherlock Holmes. He -made a slight motion to me to approach him, and instantly, as he -turned his face half round to the company once more, subsided -into a doddering, loose-lipped senility. - -"Holmes!" I whispered, "what on earth are you doing in this den?" - -"As low as you can," he answered; "I have excellent ears. If you -would have the great kindness to get rid of that sottish friend -of yours I should be exceedingly glad to have a little talk with -you." - -"I have a cab outside." - -"Then pray send him home in it. You may safely trust him, for he -appears to be too limp to get into any mischief. I should -recommend you also to send a note by the cabman to your wife to -say that you have thrown in your lot with me. If you will wait -outside, I shall be with you in five minutes." - -It was difficult to refuse any of Sherlock Holmes' requests, for -they were always so exceedingly definite, and put forward with -such a quiet air of mastery. I felt, however, that when Whitney -was once confined in the cab my mission was practically -accomplished; and for the rest, I could not wish anything better -than to be associated with my friend in one of those singular -adventures which were the normal condition of his existence. In a -few minutes I had written my note, paid Whitney's bill, led him -out to the cab, and seen him driven through the darkness. In a -very short time a decrepit figure had emerged from the opium den, -and I was walking down the street with Sherlock Holmes. For two -streets he shuffled along with a bent back and an uncertain foot. -Then, glancing quickly round, he straightened himself out and -burst into a hearty fit of laughter. - -"I suppose, Watson," said he, "that you imagine that I have added -opium-smoking to cocaine injections, and all the other little -weaknesses on which you have favoured me with your medical -views." - -"I was certainly surprised to find you there." - -"But not more so than I to find you." - -"I came to find a friend." - -"And I to find an enemy." - -"An enemy?" - -"Yes; one of my natural enemies, or, shall I say, my natural -prey. Briefly, Watson, I am in the midst of a very remarkable -inquiry, and I have hoped to find a clue in the incoherent -ramblings of these sots, as I have done before now. Had I been -recognised in that den my life would not have been worth an -hour's purchase; for I have used it before now for my own -purposes, and the rascally Lascar who runs it has sworn to have -vengeance upon me. There is a trap-door at the back of that -building, near the corner of Paul's Wharf, which could tell some -strange tales of what has passed through it upon the moonless -nights." - -"What! You do not mean bodies?" - -"Ay, bodies, Watson. We should be rich men if we had 1000 pounds -for every poor devil who has been done to death in that den. It -is the vilest murder-trap on the whole riverside, and I fear that -Neville St. Clair has entered it never to leave it more. But our -trap should be here." He put his two forefingers between his -teeth and whistled shrilly--a signal which was answered by a -similar whistle from the distance, followed shortly by the rattle -of wheels and the clink of horses' hoofs. - -"Now, Watson," said Holmes, as a tall dog-cart dashed up through -the gloom, throwing out two golden tunnels of yellow light from -its side lanterns. "You'll come with me, won't you?" - -"If I can be of use." - -"Oh, a trusty comrade is always of use; and a chronicler still -more so. My room at The Cedars is a double-bedded one." - -"The Cedars?" - -"Yes; that is Mr. St. Clair's house. I am staying there while I -conduct the inquiry." - -"Where is it, then?" - -"Near Lee, in Kent. We have a seven-mile drive before us." - -"But I am all in the dark." - -"Of course you are. You'll know all about it presently. Jump up -here. All right, John; we shall not need you. Here's half a -crown. Look out for me to-morrow, about eleven. Give her her -head. So long, then!" - -He flicked the horse with his whip, and we dashed away through -the endless succession of sombre and deserted streets, which -widened gradually, until we were flying across a broad -balustraded bridge, with the murky river flowing sluggishly -beneath us. Beyond lay another dull wilderness of bricks and -mortar, its silence broken only by the heavy, regular footfall of -the policeman, or the songs and shouts of some belated party of -revellers. A dull wrack was drifting slowly across the sky, and a -star or two twinkled dimly here and there through the rifts of -the clouds. Holmes drove in silence, with his head sunk upon his -breast, and the air of a man who is lost in thought, while I sat -beside him, curious to learn what this new quest might be which -seemed to tax his powers so sorely, and yet afraid to break in -upon the current of his thoughts. We had driven several miles, -and were beginning to get to the fringe of the belt of suburban -villas, when he shook himself, shrugged his shoulders, and lit up -his pipe with the air of a man who has satisfied himself that he -is acting for the best. - -"You have a grand gift of silence, Watson," said he. "It makes -you quite invaluable as a companion. 'Pon my word, it is a great -thing for me to have someone to talk to, for my own thoughts are -not over-pleasant. I was wondering what I should say to this dear -little woman to-night when she meets me at the door." - -"You forget that I know nothing about it." - -"I shall just have time to tell you the facts of the case before -we get to Lee. It seems absurdly simple, and yet, somehow I can -get nothing to go upon. There's plenty of thread, no doubt, but I -can't get the end of it into my hand. Now, I'll state the case -clearly and concisely to you, Watson, and maybe you can see a -spark where all is dark to me." - -"Proceed, then." - -"Some years ago--to be definite, in May, 1884--there came to Lee -a gentleman, Neville St. Clair by name, who appeared to have -plenty of money. He took a large villa, laid out the grounds very -nicely, and lived generally in good style. By degrees he made -friends in the neighbourhood, and in 1887 he married the daughter -of a local brewer, by whom he now has two children. He had no -occupation, but was interested in several companies and went into -town as a rule in the morning, returning by the 5:14 from Cannon -Street every night. Mr. St. Clair is now thirty-seven years of -age, is a man of temperate habits, a good husband, a very -affectionate father, and a man who is popular with all who know -him. I may add that his whole debts at the present moment, as far -as we have been able to ascertain, amount to 88 pounds 10s., while -he has 220 pounds standing to his credit in the Capital and -Counties Bank. There is no reason, therefore, to think that money -troubles have been weighing upon his mind. - -"Last Monday Mr. Neville St. Clair went into town rather earlier -than usual, remarking before he started that he had two important -commissions to perform, and that he would bring his little boy -home a box of bricks. Now, by the merest chance, his wife -received a telegram upon this same Monday, very shortly after his -departure, to the effect that a small parcel of considerable -value which she had been expecting was waiting for her at the -offices of the Aberdeen Shipping Company. Now, if you are well up -in your London, you will know that the office of the company is -in Fresno Street, which branches out of Upper Swandam Lane, where -you found me to-night. Mrs. St. Clair had her lunch, started for -the City, did some shopping, proceeded to the company's office, -got her packet, and found herself at exactly 4:35 walking through -Swandam Lane on her way back to the station. Have you followed me -so far?" - -"It is very clear." - -"If you remember, Monday was an exceedingly hot day, and Mrs. St. -Clair walked slowly, glancing about in the hope of seeing a cab, -as she did not like the neighbourhood in which she found herself. -While she was walking in this way down Swandam Lane, she suddenly -heard an ejaculation or cry, and was struck cold to see her -husband looking down at her and, as it seemed to her, beckoning -to her from a second-floor window. The window was open, and she -distinctly saw his face, which she describes as being terribly -agitated. He waved his hands frantically to her, and then -vanished from the window so suddenly that it seemed to her that -he had been plucked back by some irresistible force from behind. -One singular point which struck her quick feminine eye was that -although he wore some dark coat, such as he had started to town -in, he had on neither collar nor necktie. - -"Convinced that something was amiss with him, she rushed down the -steps--for the house was none other than the opium den in which -you found me to-night--and running through the front room she -attempted to ascend the stairs which led to the first floor. At -the foot of the stairs, however, she met this Lascar scoundrel of -whom I have spoken, who thrust her back and, aided by a Dane, who -acts as assistant there, pushed her out into the street. Filled -with the most maddening doubts and fears, she rushed down the -lane and, by rare good-fortune, met in Fresno Street a number of -constables with an inspector, all on their way to their beat. The -inspector and two men accompanied her back, and in spite of the -continued resistance of the proprietor, they made their way to -the room in which Mr. St. Clair had last been seen. There was no -sign of him there. In fact, in the whole of that floor there was -no one to be found save a crippled wretch of hideous aspect, who, -it seems, made his home there. Both he and the Lascar stoutly -swore that no one else had been in the front room during the -afternoon. So determined was their denial that the inspector was -staggered, and had almost come to believe that Mrs. St. Clair had -been deluded when, with a cry, she sprang at a small deal box -which lay upon the table and tore the lid from it. Out there fell -a cascade of children's bricks. It was the toy which he had -promised to bring home. - -"This discovery, and the evident confusion which the cripple -showed, made the inspector realise that the matter was serious. -The rooms were carefully examined, and results all pointed to an -abominable crime. The front room was plainly furnished as a -sitting-room and led into a small bedroom, which looked out upon -the back of one of the wharves. Between the wharf and the bedroom -window is a narrow strip, which is dry at low tide but is covered -at high tide with at least four and a half feet of water. The -bedroom window was a broad one and opened from below. On -examination traces of blood were to be seen upon the windowsill, -and several scattered drops were visible upon the wooden floor of -the bedroom. Thrust away behind a curtain in the front room were -all the clothes of Mr. Neville St. Clair, with the exception of -his coat. His boots, his socks, his hat, and his watch--all were -there. There were no signs of violence upon any of these -garments, and there were no other traces of Mr. Neville St. -Clair. Out of the window he must apparently have gone for no -other exit could be discovered, and the ominous bloodstains upon -the sill gave little promise that he could save himself by -swimming, for the tide was at its very highest at the moment of -the tragedy. - -"And now as to the villains who seemed to be immediately -implicated in the matter. The Lascar was known to be a man of the -vilest antecedents, but as, by Mrs. St. Clair's story, he was -known to have been at the foot of the stair within a very few -seconds of her husband's appearance at the window, he could -hardly have been more than an accessory to the crime. His defence -was one of absolute ignorance, and he protested that he had no -knowledge as to the doings of Hugh Boone, his lodger, and that he -could not account in any way for the presence of the missing -gentleman's clothes. - -"So much for the Lascar manager. Now for the sinister cripple who -lives upon the second floor of the opium den, and who was -certainly the last human being whose eyes rested upon Neville St. -Clair. His name is Hugh Boone, and his hideous face is one which -is familiar to every man who goes much to the City. He is a -professional beggar, though in order to avoid the police -regulations he pretends to a small trade in wax vestas. Some -little distance down Threadneedle Street, upon the left-hand -side, there is, as you may have remarked, a small angle in the -wall. Here it is that this creature takes his daily seat, -cross-legged with his tiny stock of matches on his lap, and as he -is a piteous spectacle a small rain of charity descends into the -greasy leather cap which lies upon the pavement beside him. I -have watched the fellow more than once before ever I thought of -making his professional acquaintance, and I have been surprised -at the harvest which he has reaped in a short time. His -appearance, you see, is so remarkable that no one can pass him -without observing him. A shock of orange hair, a pale face -disfigured by a horrible scar, which, by its contraction, has -turned up the outer edge of his upper lip, a bulldog chin, and a -pair of very penetrating dark eyes, which present a singular -contrast to the colour of his hair, all mark him out from amid -the common crowd of mendicants and so, too, does his wit, for he -is ever ready with a reply to any piece of chaff which may be -thrown at him by the passers-by. This is the man whom we now -learn to have been the lodger at the opium den, and to have been -the last man to see the gentleman of whom we are in quest." - -"But a cripple!" said I. "What could he have done single-handed -against a man in the prime of life?" - -"He is a cripple in the sense that he walks with a limp; but in -other respects he appears to be a powerful and well-nurtured man. -Surely your medical experience would tell you, Watson, that -weakness in one limb is often compensated for by exceptional -strength in the others." - -"Pray continue your narrative." - -"Mrs. St. Clair had fainted at the sight of the blood upon the -window, and she was escorted home in a cab by the police, as her -presence could be of no help to them in their investigations. -Inspector Barton, who had charge of the case, made a very careful -examination of the premises, but without finding anything which -threw any light upon the matter. One mistake had been made in not -arresting Boone instantly, as he was allowed some few minutes -during which he might have communicated with his friend the -Lascar, but this fault was soon remedied, and he was seized and -searched, without anything being found which could incriminate -him. There were, it is true, some blood-stains upon his right -shirt-sleeve, but he pointed to his ring-finger, which had been -cut near the nail, and explained that the bleeding came from -there, adding that he had been to the window not long before, and -that the stains which had been observed there came doubtless from -the same source. He denied strenuously having ever seen Mr. -Neville St. Clair and swore that the presence of the clothes in -his room was as much a mystery to him as to the police. As to -Mrs. St. Clair's assertion that she had actually seen her husband -at the window, he declared that she must have been either mad or -dreaming. He was removed, loudly protesting, to the -police-station, while the inspector remained upon the premises in -the hope that the ebbing tide might afford some fresh clue. - -"And it did, though they hardly found upon the mud-bank what they -had feared to find. It was Neville St. Clair's coat, and not -Neville St. Clair, which lay uncovered as the tide receded. And -what do you think they found in the pockets?" - -"I cannot imagine." - -"No, I don't think you would guess. Every pocket stuffed with -pennies and half-pennies--421 pennies and 270 half-pennies. It -was no wonder that it had not been swept away by the tide. But a -human body is a different matter. There is a fierce eddy between -the wharf and the house. It seemed likely enough that the -weighted coat had remained when the stripped body had been sucked -away into the river." - -"But I understand that all the other clothes were found in the -room. Would the body be dressed in a coat alone?" - -"No, sir, but the facts might be met speciously enough. Suppose -that this man Boone had thrust Neville St. Clair through the -window, there is no human eye which could have seen the deed. -What would he do then? It would of course instantly strike him -that he must get rid of the tell-tale garments. He would seize -the coat, then, and be in the act of throwing it out, when it -would occur to him that it would swim and not sink. He has little -time, for he has heard the scuffle downstairs when the wife tried -to force her way up, and perhaps he has already heard from his -Lascar confederate that the police are hurrying up the street. -There is not an instant to be lost. He rushes to some secret -hoard, where he has accumulated the fruits of his beggary, and he -stuffs all the coins upon which he can lay his hands into the -pockets to make sure of the coat's sinking. He throws it out, and -would have done the same with the other garments had not he heard -the rush of steps below, and only just had time to close the -window when the police appeared." - -"It certainly sounds feasible." - -"Well, we will take it as a working hypothesis for want of a -better. Boone, as I have told you, was arrested and taken to the -station, but it could not be shown that there had ever before -been anything against him. He had for years been known as a -professional beggar, but his life appeared to have been a very -quiet and innocent one. There the matter stands at present, and -the questions which have to be solved--what Neville St. Clair was -doing in the opium den, what happened to him when there, where is -he now, and what Hugh Boone had to do with his disappearance--are -all as far from a solution as ever. I confess that I cannot -recall any case within my experience which looked at the first -glance so simple and yet which presented such difficulties." - -While Sherlock Holmes had been detailing this singular series of -events, we had been whirling through the outskirts of the great -town until the last straggling houses had been left behind, and -we rattled along with a country hedge upon either side of us. -Just as he finished, however, we drove through two scattered -villages, where a few lights still glimmered in the windows. - -"We are on the outskirts of Lee," said my companion. "We have -touched on three English counties in our short drive, starting in -Middlesex, passing over an angle of Surrey, and ending in Kent. -See that light among the trees? That is The Cedars, and beside -that lamp sits a woman whose anxious ears have already, I have -little doubt, caught the clink of our horse's feet." - -"But why are you not conducting the case from Baker Street?" I -asked. - -"Because there are many inquiries which must be made out here. -Mrs. St. Clair has most kindly put two rooms at my disposal, and -you may rest assured that she will have nothing but a welcome for -my friend and colleague. I hate to meet her, Watson, when I have -no news of her husband. Here we are. Whoa, there, whoa!" - -We had pulled up in front of a large villa which stood within its -own grounds. A stable-boy had run out to the horse's head, and -springing down, I followed Holmes up the small, winding -gravel-drive which led to the house. As we approached, the door -flew open, and a little blonde woman stood in the opening, clad -in some sort of light mousseline de soie, with a touch of fluffy -pink chiffon at her neck and wrists. She stood with her figure -outlined against the flood of light, one hand upon the door, one -half-raised in her eagerness, her body slightly bent, her head -and face protruded, with eager eyes and parted lips, a standing -question. - -"Well?" she cried, "well?" And then, seeing that there were two -of us, she gave a cry of hope which sank into a groan as she saw -that my companion shook his head and shrugged his shoulders. - -"No good news?" - -"None." - -"No bad?" - -"No." - -"Thank God for that. But come in. You must be weary, for you have -had a long day." - -"This is my friend, Dr. Watson. He has been of most vital use to -me in several of my cases, and a lucky chance has made it -possible for me to bring him out and associate him with this -investigation." - -"I am delighted to see you," said she, pressing my hand warmly. -"You will, I am sure, forgive anything that may be wanting in our -arrangements, when you consider the blow which has come so -suddenly upon us." - -"My dear madam," said I, "I am an old campaigner, and if I were -not I can very well see that no apology is needed. If I can be of -any assistance, either to you or to my friend here, I shall be -indeed happy." - -"Now, Mr. Sherlock Holmes," said the lady as we entered a -well-lit dining-room, upon the table of which a cold supper had -been laid out, "I should very much like to ask you one or two -plain questions, to which I beg that you will give a plain -answer." - -"Certainly, madam." - -"Do not trouble about my feelings. I am not hysterical, nor given -to fainting. I simply wish to hear your real, real opinion." - -"Upon what point?" - -"In your heart of hearts, do you think that Neville is alive?" - -Sherlock Holmes seemed to be embarrassed by the question. -"Frankly, now!" she repeated, standing upon the rug and looking -keenly down at him as he leaned back in a basket-chair. - -"Frankly, then, madam, I do not." - -"You think that he is dead?" - -"I do." - -"Murdered?" - -"I don't say that. Perhaps." - -"And on what day did he meet his death?" - -"On Monday." - -"Then perhaps, Mr. Holmes, you will be good enough to explain how -it is that I have received a letter from him to-day." - -Sherlock Holmes sprang out of his chair as if he had been -galvanised. - -"What!" he roared. - -"Yes, to-day." She stood smiling, holding up a little slip of -paper in the air. - -"May I see it?" - -"Certainly." - -He snatched it from her in his eagerness, and smoothing it out -upon the table he drew over the lamp and examined it intently. I -had left my chair and was gazing at it over his shoulder. The -envelope was a very coarse one and was stamped with the Gravesend -postmark and with the date of that very day, or rather of the day -before, for it was considerably after midnight. - -"Coarse writing," murmured Holmes. "Surely this is not your -husband's writing, madam." - -"No, but the enclosure is." - -"I perceive also that whoever addressed the envelope had to go -and inquire as to the address." - -"How can you tell that?" - -"The name, you see, is in perfectly black ink, which has dried -itself. The rest is of the greyish colour, which shows that -blotting-paper has been used. If it had been written straight -off, and then blotted, none would be of a deep black shade. This -man has written the name, and there has then been a pause before -he wrote the address, which can only mean that he was not -familiar with it. It is, of course, a trifle, but there is -nothing so important as trifles. Let us now see the letter. Ha! -there has been an enclosure here!" - -"Yes, there was a ring. His signet-ring." - -"And you are sure that this is your husband's hand?" - -"One of his hands." - -"One?" - -"His hand when he wrote hurriedly. It is very unlike his usual -writing, and yet I know it well." - -"'Dearest do not be frightened. All will come well. There is a -huge error which it may take some little time to rectify. -Wait in patience.--NEVILLE.' Written in pencil upon the fly-leaf -of a book, octavo size, no water-mark. Hum! Posted to-day in -Gravesend by a man with a dirty thumb. Ha! And the flap has been -gummed, if I am not very much in error, by a person who had been -chewing tobacco. And you have no doubt that it is your husband's -hand, madam?" - -"None. Neville wrote those words." - -"And they were posted to-day at Gravesend. Well, Mrs. St. Clair, -the clouds lighten, though I should not venture to say that the -danger is over." - -"But he must be alive, Mr. Holmes." - -"Unless this is a clever forgery to put us on the wrong scent. -The ring, after all, proves nothing. It may have been taken from -him." - -"No, no; it is, it is his very own writing!" - -"Very well. It may, however, have been written on Monday and only -posted to-day." - -"That is possible." - -"If so, much may have happened between." - -"Oh, you must not discourage me, Mr. Holmes. I know that all is -well with him. There is so keen a sympathy between us that I -should know if evil came upon him. On the very day that I saw him -last he cut himself in the bedroom, and yet I in the dining-room -rushed upstairs instantly with the utmost certainty that -something had happened. Do you think that I would respond to such -a trifle and yet be ignorant of his death?" - -"I have seen too much not to know that the impression of a woman -may be more valuable than the conclusion of an analytical -reasoner. And in this letter you certainly have a very strong -piece of evidence to corroborate your view. But if your husband -is alive and able to write letters, why should he remain away -from you?" - -"I cannot imagine. It is unthinkable." - -"And on Monday he made no remarks before leaving you?" - -"No." - -"And you were surprised to see him in Swandam Lane?" - -"Very much so." - -"Was the window open?" - -"Yes." - -"Then he might have called to you?" - -"He might." - -"He only, as I understand, gave an inarticulate cry?" - -"Yes." - -"A call for help, you thought?" - -"Yes. He waved his hands." - -"But it might have been a cry of surprise. Astonishment at the -unexpected sight of you might cause him to throw up his hands?" - -"It is possible." - -"And you thought he was pulled back?" - -"He disappeared so suddenly." - -"He might have leaped back. You did not see anyone else in the -room?" - -"No, but this horrible man confessed to having been there, and -the Lascar was at the foot of the stairs." - -"Quite so. Your husband, as far as you could see, had his -ordinary clothes on?" - -"But without his collar or tie. I distinctly saw his bare -throat." - -"Had he ever spoken of Swandam Lane?" - -"Never." - -"Had he ever showed any signs of having taken opium?" - -"Never." - -"Thank you, Mrs. St. Clair. Those are the principal points about -which I wished to be absolutely clear. We shall now have a little -supper and then retire, for we may have a very busy day -to-morrow." - -A large and comfortable double-bedded room had been placed at our -disposal, and I was quickly between the sheets, for I was weary -after my night of adventure. Sherlock Holmes was a man, however, -who, when he had an unsolved problem upon his mind, would go for -days, and even for a week, without rest, turning it over, -rearranging his facts, looking at it from every point of view -until he had either fathomed it or convinced himself that his -data were insufficient. It was soon evident to me that he was now -preparing for an all-night sitting. He took off his coat and -waistcoat, put on a large blue dressing-gown, and then wandered -about the room collecting pillows from his bed and cushions from -the sofa and armchairs. With these he constructed a sort of -Eastern divan, upon which he perched himself cross-legged, with -an ounce of shag tobacco and a box of matches laid out in front -of him. In the dim light of the lamp I saw him sitting there, an -old briar pipe between his lips, his eyes fixed vacantly upon the -corner of the ceiling, the blue smoke curling up from him, -silent, motionless, with the light shining upon his strong-set -aquiline features. So he sat as I dropped off to sleep, and so he -sat when a sudden ejaculation caused me to wake up, and I found -the summer sun shining into the apartment. The pipe was still -between his lips, the smoke still curled upward, and the room was -full of a dense tobacco haze, but nothing remained of the heap of -shag which I had seen upon the previous night. - -"Awake, Watson?" he asked. - -"Yes." - -"Game for a morning drive?" - -"Certainly." - -"Then dress. No one is stirring yet, but I know where the -stable-boy sleeps, and we shall soon have the trap out." He -chuckled to himself as he spoke, his eyes twinkled, and he seemed -a different man to the sombre thinker of the previous night. - -As I dressed I glanced at my watch. It was no wonder that no one -was stirring. It was twenty-five minutes past four. I had hardly -finished when Holmes returned with the news that the boy was -putting in the horse. - -"I want to test a little theory of mine," said he, pulling on his -boots. "I think, Watson, that you are now standing in the -presence of one of the most absolute fools in Europe. I deserve -to be kicked from here to Charing Cross. But I think I have the -key of the affair now." - -"And where is it?" I asked, smiling. - -"In the bathroom," he answered. "Oh, yes, I am not joking," he -continued, seeing my look of incredulity. "I have just been -there, and I have taken it out, and I have got it in this -Gladstone bag. Come on, my boy, and we shall see whether it will -not fit the lock." - -We made our way downstairs as quietly as possible, and out into -the bright morning sunshine. In the road stood our horse and -trap, with the half-clad stable-boy waiting at the head. We both -sprang in, and away we dashed down the London Road. A few country -carts were stirring, bearing in vegetables to the metropolis, but -the lines of villas on either side were as silent and lifeless as -some city in a dream. - -"It has been in some points a singular case," said Holmes, -flicking the horse on into a gallop. "I confess that I have been -as blind as a mole, but it is better to learn wisdom late than -never to learn it at all." - -In town the earliest risers were just beginning to look sleepily -from their windows as we drove through the streets of the Surrey -side. Passing down the Waterloo Bridge Road we crossed over the -river, and dashing up Wellington Street wheeled sharply to the -right and found ourselves in Bow Street. Sherlock Holmes was well -known to the force, and the two constables at the door saluted -him. One of them held the horse's head while the other led us in. - -"Who is on duty?" asked Holmes. - -"Inspector Bradstreet, sir." - -"Ah, Bradstreet, how are you?" A tall, stout official had come -down the stone-flagged passage, in a peaked cap and frogged -jacket. "I wish to have a quiet word with you, Bradstreet." -"Certainly, Mr. Holmes. Step into my room here." It was a small, -office-like room, with a huge ledger upon the table, and a -telephone projecting from the wall. The inspector sat down at his -desk. - -"What can I do for you, Mr. Holmes?" - -"I called about that beggarman, Boone--the one who was charged -with being concerned in the disappearance of Mr. Neville St. -Clair, of Lee." - -"Yes. He was brought up and remanded for further inquiries." - -"So I heard. You have him here?" - -"In the cells." - -"Is he quiet?" - -"Oh, he gives no trouble. But he is a dirty scoundrel." - -"Dirty?" - -"Yes, it is all we can do to make him wash his hands, and his -face is as black as a tinker's. Well, when once his case has been -settled, he will have a regular prison bath; and I think, if you -saw him, you would agree with me that he needed it." - -"I should like to see him very much." - -"Would you? That is easily done. Come this way. You can leave -your bag." - -"No, I think that I'll take it." - -"Very good. Come this way, if you please." He led us down a -passage, opened a barred door, passed down a winding stair, and -brought us to a whitewashed corridor with a line of doors on each -side. - -"The third on the right is his," said the inspector. "Here it -is!" He quietly shot back a panel in the upper part of the door -and glanced through. - -"He is asleep," said he. "You can see him very well." - -We both put our eyes to the grating. The prisoner lay with his -face towards us, in a very deep sleep, breathing slowly and -heavily. He was a middle-sized man, coarsely clad as became his -calling, with a coloured shirt protruding through the rent in his -tattered coat. He was, as the inspector had said, extremely -dirty, but the grime which covered his face could not conceal its -repulsive ugliness. A broad wheal from an old scar ran right -across it from eye to chin, and by its contraction had turned up -one side of the upper lip, so that three teeth were exposed in a -perpetual snarl. A shock of very bright red hair grew low over -his eyes and forehead. - -"He's a beauty, isn't he?" said the inspector. - -"He certainly needs a wash," remarked Holmes. "I had an idea that -he might, and I took the liberty of bringing the tools with me." -He opened the Gladstone bag as he spoke, and took out, to my -astonishment, a very large bath-sponge. - -"He! he! You are a funny one," chuckled the inspector. - -"Now, if you will have the great goodness to open that door very -quietly, we will soon make him cut a much more respectable -figure." - -"Well, I don't know why not," said the inspector. "He doesn't -look a credit to the Bow Street cells, does he?" He slipped his -key into the lock, and we all very quietly entered the cell. The -sleeper half turned, and then settled down once more into a deep -slumber. Holmes stooped to the water-jug, moistened his sponge, -and then rubbed it twice vigorously across and down the -prisoner's face. - -"Let me introduce you," he shouted, "to Mr. Neville St. Clair, of -Lee, in the county of Kent." - -Never in my life have I seen such a sight. The man's face peeled -off under the sponge like the bark from a tree. Gone was the -coarse brown tint! Gone, too, was the horrid scar which had -seamed it across, and the twisted lip which had given the -repulsive sneer to the face! A twitch brought away the tangled -red hair, and there, sitting up in his bed, was a pale, -sad-faced, refined-looking man, black-haired and smooth-skinned, -rubbing his eyes and staring about him with sleepy bewilderment. -Then suddenly realising the exposure, he broke into a scream and -threw himself down with his face to the pillow. - -"Great heavens!" cried the inspector, "it is, indeed, the missing -man. I know him from the photograph." - -The prisoner turned with the reckless air of a man who abandons -himself to his destiny. "Be it so," said he. "And pray what am I -charged with?" - -"With making away with Mr. Neville St.-- Oh, come, you can't be -charged with that unless they make a case of attempted suicide of -it," said the inspector with a grin. "Well, I have been -twenty-seven years in the force, but this really takes the cake." - -"If I am Mr. Neville St. Clair, then it is obvious that no crime -has been committed, and that, therefore, I am illegally -detained." - -"No crime, but a very great error has been committed," said -Holmes. "You would have done better to have trusted your wife." - -"It was not the wife; it was the children," groaned the prisoner. -"God help me, I would not have them ashamed of their father. My -God! What an exposure! What can I do?" - -Sherlock Holmes sat down beside him on the couch and patted him -kindly on the shoulder. - -"If you leave it to a court of law to clear the matter up," said -he, "of course you can hardly avoid publicity. On the other hand, -if you convince the police authorities that there is no possible -case against you, I do not know that there is any reason that the -details should find their way into the papers. Inspector -Bradstreet would, I am sure, make notes upon anything which you -might tell us and submit it to the proper authorities. The case -would then never go into court at all." - -"God bless you!" cried the prisoner passionately. "I would have -endured imprisonment, ay, even execution, rather than have left -my miserable secret as a family blot to my children. - -"You are the first who have ever heard my story. My father was a -schoolmaster in Chesterfield, where I received an excellent -education. I travelled in my youth, took to the stage, and -finally became a reporter on an evening paper in London. One day -my editor wished to have a series of articles upon begging in the -metropolis, and I volunteered to supply them. There was the point -from which all my adventures started. It was only by trying -begging as an amateur that I could get the facts upon which to -base my articles. When an actor I had, of course, learned all the -secrets of making up, and had been famous in the green-room for -my skill. I took advantage now of my attainments. I painted my -face, and to make myself as pitiable as possible I made a good -scar and fixed one side of my lip in a twist by the aid of a -small slip of flesh-coloured plaster. Then with a red head of -hair, and an appropriate dress, I took my station in the business -part of the city, ostensibly as a match-seller but really as a -beggar. For seven hours I plied my trade, and when I returned -home in the evening I found to my surprise that I had received no -less than 26s. 4d. - -"I wrote my articles and thought little more of the matter until, -some time later, I backed a bill for a friend and had a writ -served upon me for 25 pounds. I was at my wit's end where to get -the money, but a sudden idea came to me. I begged a fortnight's -grace from the creditor, asked for a holiday from my employers, -and spent the time in begging in the City under my disguise. In -ten days I had the money and had paid the debt. - -"Well, you can imagine how hard it was to settle down to arduous -work at 2 pounds a week when I knew that I could earn as much in -a day by smearing my face with a little paint, laying my cap on -the ground, and sitting still. It was a long fight between my -pride and the money, but the dollars won at last, and I threw up -reporting and sat day after day in the corner which I had first -chosen, inspiring pity by my ghastly face and filling my pockets -with coppers. Only one man knew my secret. He was the keeper of a -low den in which I used to lodge in Swandam Lane, where I could -every morning emerge as a squalid beggar and in the evenings -transform myself into a well-dressed man about town. This fellow, -a Lascar, was well paid by me for his rooms, so that I knew that -my secret was safe in his possession. - -"Well, very soon I found that I was saving considerable sums of -money. I do not mean that any beggar in the streets of London -could earn 700 pounds a year--which is less than my average -takings--but I had exceptional advantages in my power of making -up, and also in a facility of repartee, which improved by -practice and made me quite a recognised character in the City. -All day a stream of pennies, varied by silver, poured in upon me, -and it was a very bad day in which I failed to take 2 pounds. - -"As I grew richer I grew more ambitious, took a house in the -country, and eventually married, without anyone having a -suspicion as to my real occupation. My dear wife knew that I had -business in the City. She little knew what. - -"Last Monday I had finished for the day and was dressing in my -room above the opium den when I looked out of my window and saw, -to my horror and astonishment, that my wife was standing in the -street, with her eyes fixed full upon me. I gave a cry of -surprise, threw up my arms to cover my face, and, rushing to my -confidant, the Lascar, entreated him to prevent anyone from -coming up to me. I heard her voice downstairs, but I knew that -she could not ascend. Swiftly I threw off my clothes, pulled on -those of a beggar, and put on my pigments and wig. Even a wife's -eyes could not pierce so complete a disguise. But then it -occurred to me that there might be a search in the room, and that -the clothes might betray me. I threw open the window, reopening -by my violence a small cut which I had inflicted upon myself in -the bedroom that morning. Then I seized my coat, which was -weighted by the coppers which I had just transferred to it from -the leather bag in which I carried my takings. I hurled it out of -the window, and it disappeared into the Thames. The other clothes -would have followed, but at that moment there was a rush of -constables up the stair, and a few minutes after I found, rather, -I confess, to my relief, that instead of being identified as Mr. -Neville St. Clair, I was arrested as his murderer. - -"I do not know that there is anything else for me to explain. I -was determined to preserve my disguise as long as possible, and -hence my preference for a dirty face. Knowing that my wife would -be terribly anxious, I slipped off my ring and confided it to the -Lascar at a moment when no constable was watching me, together -with a hurried scrawl, telling her that she had no cause to -fear." - -"That note only reached her yesterday," said Holmes. - -"Good God! What a week she must have spent!" - -"The police have watched this Lascar," said Inspector Bradstreet, -"and I can quite understand that he might find it difficult to -post a letter unobserved. Probably he handed it to some sailor -customer of his, who forgot all about it for some days." - -"That was it," said Holmes, nodding approvingly; "I have no doubt -of it. But have you never been prosecuted for begging?" - -"Many times; but what was a fine to me?" - -"It must stop here, however," said Bradstreet. "If the police are -to hush this thing up, there must be no more of Hugh Boone." - -"I have sworn it by the most solemn oaths which a man can take." - -"In that case I think that it is probable that no further steps -may be taken. But if you are found again, then all must come out. -I am sure, Mr. Holmes, that we are very much indebted to you for -having cleared the matter up. I wish I knew how you reach your -results." - -"I reached this one," said my friend, "by sitting upon five -pillows and consuming an ounce of shag. I think, Watson, that if -we drive to Baker Street we shall just be in time for breakfast." - - - -VII. THE ADVENTURE OF THE BLUE CARBUNCLE - -I had called upon my friend Sherlock Holmes upon the second -morning after Christmas, with the intention of wishing him the -compliments of the season. He was lounging upon the sofa in a -purple dressing-gown, a pipe-rack within his reach upon the -right, and a pile of crumpled morning papers, evidently newly -studied, near at hand. Beside the couch was a wooden chair, and -on the angle of the back hung a very seedy and disreputable -hard-felt hat, much the worse for wear, and cracked in several -places. A lens and a forceps lying upon the seat of the chair -suggested that the hat had been suspended in this manner for the -purpose of examination. - -"You are engaged," said I; "perhaps I interrupt you." - -"Not at all. I am glad to have a friend with whom I can discuss -my results. The matter is a perfectly trivial one"--he jerked his -thumb in the direction of the old hat--"but there are points in -connection with it which are not entirely devoid of interest and -even of instruction." - -I seated myself in his armchair and warmed my hands before his -crackling fire, for a sharp frost had set in, and the windows -were thick with the ice crystals. "I suppose," I remarked, "that, -homely as it looks, this thing has some deadly story linked on to -it--that it is the clue which will guide you in the solution of -some mystery and the punishment of some crime." - -"No, no. No crime," said Sherlock Holmes, laughing. "Only one of -those whimsical little incidents which will happen when you have -four million human beings all jostling each other within the -space of a few square miles. Amid the action and reaction of so -dense a swarm of humanity, every possible combination of events -may be expected to take place, and many a little problem will be -presented which may be striking and bizarre without being -criminal. We have already had experience of such." - -"So much so," I remarked, "that of the last six cases which I -have added to my notes, three have been entirely free of any -legal crime." - -"Precisely. You allude to my attempt to recover the Irene Adler -papers, to the singular case of Miss Mary Sutherland, and to the -adventure of the man with the twisted lip. Well, I have no doubt -that this small matter will fall into the same innocent category. -You know Peterson, the commissionaire?" - -"Yes." - -"It is to him that this trophy belongs." - -"It is his hat." - -"No, no, he found it. Its owner is unknown. I beg that you will -look upon it not as a battered billycock but as an intellectual -problem. And, first, as to how it came here. It arrived upon -Christmas morning, in company with a good fat goose, which is, I -have no doubt, roasting at this moment in front of Peterson's -fire. The facts are these: about four o'clock on Christmas -morning, Peterson, who, as you know, is a very honest fellow, was -returning from some small jollification and was making his way -homeward down Tottenham Court Road. In front of him he saw, in -the gaslight, a tallish man, walking with a slight stagger, and -carrying a white goose slung over his shoulder. As he reached the -corner of Goodge Street, a row broke out between this stranger -and a little knot of roughs. One of the latter knocked off the -man's hat, on which he raised his stick to defend himself and, -swinging it over his head, smashed the shop window behind him. -Peterson had rushed forward to protect the stranger from his -assailants; but the man, shocked at having broken the window, and -seeing an official-looking person in uniform rushing towards him, -dropped his goose, took to his heels, and vanished amid the -labyrinth of small streets which lie at the back of Tottenham -Court Road. The roughs had also fled at the appearance of -Peterson, so that he was left in possession of the field of -battle, and also of the spoils of victory in the shape of this -battered hat and a most unimpeachable Christmas goose." - -"Which surely he restored to their owner?" - -"My dear fellow, there lies the problem. It is true that 'For -Mrs. Henry Baker' was printed upon a small card which was tied to -the bird's left leg, and it is also true that the initials 'H. -B.' are legible upon the lining of this hat, but as there are -some thousands of Bakers, and some hundreds of Henry Bakers in -this city of ours, it is not easy to restore lost property to any -one of them." - -"What, then, did Peterson do?" - -"He brought round both hat and goose to me on Christmas morning, -knowing that even the smallest problems are of interest to me. -The goose we retained until this morning, when there were signs -that, in spite of the slight frost, it would be well that it -should be eaten without unnecessary delay. Its finder has carried -it off, therefore, to fulfil the ultimate destiny of a goose, -while I continue to retain the hat of the unknown gentleman who -lost his Christmas dinner." - -"Did he not advertise?" - -"No." - -"Then, what clue could you have as to his identity?" - -"Only as much as we can deduce." - -"From his hat?" - -"Precisely." - -"But you are joking. What can you gather from this old battered -felt?" - -"Here is my lens. You know my methods. What can you gather -yourself as to the individuality of the man who has worn this -article?" - -I took the tattered object in my hands and turned it over rather -ruefully. It was a very ordinary black hat of the usual round -shape, hard and much the worse for wear. The lining had been of -red silk, but was a good deal discoloured. There was no maker's -name; but, as Holmes had remarked, the initials "H. B." were -scrawled upon one side. It was pierced in the brim for a -hat-securer, but the elastic was missing. For the rest, it was -cracked, exceedingly dusty, and spotted in several places, -although there seemed to have been some attempt to hide the -discoloured patches by smearing them with ink. - -"I can see nothing," said I, handing it back to my friend. - -"On the contrary, Watson, you can see everything. You fail, -however, to reason from what you see. You are too timid in -drawing your inferences." - -"Then, pray tell me what it is that you can infer from this hat?" - -He picked it up and gazed at it in the peculiar introspective -fashion which was characteristic of him. "It is perhaps less -suggestive than it might have been," he remarked, "and yet there -are a few inferences which are very distinct, and a few others -which represent at least a strong balance of probability. That -the man was highly intellectual is of course obvious upon the -face of it, and also that he was fairly well-to-do within the -last three years, although he has now fallen upon evil days. He -had foresight, but has less now than formerly, pointing to a -moral retrogression, which, when taken with the decline of his -fortunes, seems to indicate some evil influence, probably drink, -at work upon him. This may account also for the obvious fact that -his wife has ceased to love him." - -"My dear Holmes!" - -"He has, however, retained some degree of self-respect," he -continued, disregarding my remonstrance. "He is a man who leads a -sedentary life, goes out little, is out of training entirely, is -middle-aged, has grizzled hair which he has had cut within the -last few days, and which he anoints with lime-cream. These are -the more patent facts which are to be deduced from his hat. Also, -by the way, that it is extremely improbable that he has gas laid -on in his house." - -"You are certainly joking, Holmes." - -"Not in the least. Is it possible that even now, when I give you -these results, you are unable to see how they are attained?" - -"I have no doubt that I am very stupid, but I must confess that I -am unable to follow you. For example, how did you deduce that -this man was intellectual?" - -For answer Holmes clapped the hat upon his head. It came right -over the forehead and settled upon the bridge of his nose. "It is -a question of cubic capacity," said he; "a man with so large a -brain must have something in it." - -"The decline of his fortunes, then?" - -"This hat is three years old. These flat brims curled at the edge -came in then. It is a hat of the very best quality. Look at the -band of ribbed silk and the excellent lining. If this man could -afford to buy so expensive a hat three years ago, and has had no -hat since, then he has assuredly gone down in the world." - -"Well, that is clear enough, certainly. But how about the -foresight and the moral retrogression?" - -Sherlock Holmes laughed. "Here is the foresight," said he putting -his finger upon the little disc and loop of the hat-securer. -"They are never sold upon hats. If this man ordered one, it is a -sign of a certain amount of foresight, since he went out of his -way to take this precaution against the wind. But since we see -that he has broken the elastic and has not troubled to replace -it, it is obvious that he has less foresight now than formerly, -which is a distinct proof of a weakening nature. On the other -hand, he has endeavoured to conceal some of these stains upon the -felt by daubing them with ink, which is a sign that he has not -entirely lost his self-respect." - -"Your reasoning is certainly plausible." - -"The further points, that he is middle-aged, that his hair is -grizzled, that it has been recently cut, and that he uses -lime-cream, are all to be gathered from a close examination of the -lower part of the lining. The lens discloses a large number of -hair-ends, clean cut by the scissors of the barber. They all -appear to be adhesive, and there is a distinct odour of -lime-cream. This dust, you will observe, is not the gritty, grey -dust of the street but the fluffy brown dust of the house, -showing that it has been hung up indoors most of the time, while -the marks of moisture upon the inside are proof positive that the -wearer perspired very freely, and could therefore, hardly be in -the best of training." - -"But his wife--you said that she had ceased to love him." - -"This hat has not been brushed for weeks. When I see you, my dear -Watson, with a week's accumulation of dust upon your hat, and -when your wife allows you to go out in such a state, I shall fear -that you also have been unfortunate enough to lose your wife's -affection." - -"But he might be a bachelor." - -"Nay, he was bringing home the goose as a peace-offering to his -wife. Remember the card upon the bird's leg." - -"You have an answer to everything. But how on earth do you deduce -that the gas is not laid on in his house?" - -"One tallow stain, or even two, might come by chance; but when I -see no less than five, I think that there can be little doubt -that the individual must be brought into frequent contact with -burning tallow--walks upstairs at night probably with his hat in -one hand and a guttering candle in the other. Anyhow, he never -got tallow-stains from a gas-jet. Are you satisfied?" - -"Well, it is very ingenious," said I, laughing; "but since, as -you said just now, there has been no crime committed, and no harm -done save the loss of a goose, all this seems to be rather a -waste of energy." - -Sherlock Holmes had opened his mouth to reply, when the door flew -open, and Peterson, the commissionaire, rushed into the apartment -with flushed cheeks and the face of a man who is dazed with -astonishment. - -"The goose, Mr. Holmes! The goose, sir!" he gasped. - -"Eh? What of it, then? Has it returned to life and flapped off -through the kitchen window?" Holmes twisted himself round upon -the sofa to get a fairer view of the man's excited face. - -"See here, sir! See what my wife found in its crop!" He held out -his hand and displayed upon the centre of the palm a brilliantly -scintillating blue stone, rather smaller than a bean in size, but -of such purity and radiance that it twinkled like an electric -point in the dark hollow of his hand. - -Sherlock Holmes sat up with a whistle. "By Jove, Peterson!" said -he, "this is treasure trove indeed. I suppose you know what you -have got?" - -"A diamond, sir? A precious stone. It cuts into glass as though -it were putty." - -"It's more than a precious stone. It is the precious stone." - -"Not the Countess of Morcar's blue carbuncle!" I ejaculated. - -"Precisely so. I ought to know its size and shape, seeing that I -have read the advertisement about it in The Times every day -lately. It is absolutely unique, and its value can only be -conjectured, but the reward offered of 1000 pounds is certainly -not within a twentieth part of the market price." - -"A thousand pounds! Great Lord of mercy!" The commissionaire -plumped down into a chair and stared from one to the other of us. - -"That is the reward, and I have reason to know that there are -sentimental considerations in the background which would induce -the Countess to part with half her fortune if she could but -recover the gem." - -"It was lost, if I remember aright, at the Hotel Cosmopolitan," I -remarked. - -"Precisely so, on December 22nd, just five days ago. John Horner, -a plumber, was accused of having abstracted it from the lady's -jewel-case. The evidence against him was so strong that the case -has been referred to the Assizes. I have some account of the -matter here, I believe." He rummaged amid his newspapers, -glancing over the dates, until at last he smoothed one out, -doubled it over, and read the following paragraph: - -"Hotel Cosmopolitan Jewel Robbery. John Horner, 26, plumber, was -brought up upon the charge of having upon the 22nd inst., -abstracted from the jewel-case of the Countess of Morcar the -valuable gem known as the blue carbuncle. James Ryder, -upper-attendant at the hotel, gave his evidence to the effect -that he had shown Horner up to the dressing-room of the Countess -of Morcar upon the day of the robbery in order that he might -solder the second bar of the grate, which was loose. He had -remained with Horner some little time, but had finally been -called away. On returning, he found that Horner had disappeared, -that the bureau had been forced open, and that the small morocco -casket in which, as it afterwards transpired, the Countess was -accustomed to keep her jewel, was lying empty upon the -dressing-table. Ryder instantly gave the alarm, and Horner was -arrested the same evening; but the stone could not be found -either upon his person or in his rooms. Catherine Cusack, maid to -the Countess, deposed to having heard Ryder's cry of dismay on -discovering the robbery, and to having rushed into the room, -where she found matters as described by the last witness. -Inspector Bradstreet, B division, gave evidence as to the arrest -of Horner, who struggled frantically, and protested his innocence -in the strongest terms. Evidence of a previous conviction for -robbery having been given against the prisoner, the magistrate -refused to deal summarily with the offence, but referred it to -the Assizes. Horner, who had shown signs of intense emotion -during the proceedings, fainted away at the conclusion and was -carried out of court." - -"Hum! So much for the police-court," said Holmes thoughtfully, -tossing aside the paper. "The question for us now to solve is the -sequence of events leading from a rifled jewel-case at one end to -the crop of a goose in Tottenham Court Road at the other. You -see, Watson, our little deductions have suddenly assumed a much -more important and less innocent aspect. Here is the stone; the -stone came from the goose, and the goose came from Mr. Henry -Baker, the gentleman with the bad hat and all the other -characteristics with which I have bored you. So now we must set -ourselves very seriously to finding this gentleman and -ascertaining what part he has played in this little mystery. To -do this, we must try the simplest means first, and these lie -undoubtedly in an advertisement in all the evening papers. If -this fail, I shall have recourse to other methods." - -"What will you say?" - -"Give me a pencil and that slip of paper. Now, then: 'Found at -the corner of Goodge Street, a goose and a black felt hat. Mr. -Henry Baker can have the same by applying at 6:30 this evening at -221B, Baker Street.' That is clear and concise." - -"Very. But will he see it?" - -"Well, he is sure to keep an eye on the papers, since, to a poor -man, the loss was a heavy one. He was clearly so scared by his -mischance in breaking the window and by the approach of Peterson -that he thought of nothing but flight, but since then he must -have bitterly regretted the impulse which caused him to drop his -bird. Then, again, the introduction of his name will cause him to -see it, for everyone who knows him will direct his attention to -it. Here you are, Peterson, run down to the advertising agency -and have this put in the evening papers." - -"In which, sir?" - -"Oh, in the Globe, Star, Pall Mall, St. James's, Evening News, -Standard, Echo, and any others that occur to you." - -"Very well, sir. And this stone?" - -"Ah, yes, I shall keep the stone. Thank you. And, I say, -Peterson, just buy a goose on your way back and leave it here -with me, for we must have one to give to this gentleman in place -of the one which your family is now devouring." - -When the commissionaire had gone, Holmes took up the stone and -held it against the light. "It's a bonny thing," said he. "Just -see how it glints and sparkles. Of course it is a nucleus and -focus of crime. Every good stone is. They are the devil's pet -baits. In the larger and older jewels every facet may stand for a -bloody deed. This stone is not yet twenty years old. It was found -in the banks of the Amoy River in southern China and is remarkable -in having every characteristic of the carbuncle, save that it is -blue in shade instead of ruby red. In spite of its youth, it has -already a sinister history. There have been two murders, a -vitriol-throwing, a suicide, and several robberies brought about -for the sake of this forty-grain weight of crystallised charcoal. -Who would think that so pretty a toy would be a purveyor to the -gallows and the prison? I'll lock it up in my strong box now and -drop a line to the Countess to say that we have it." - -"Do you think that this man Horner is innocent?" - -"I cannot tell." - -"Well, then, do you imagine that this other one, Henry Baker, had -anything to do with the matter?" - -"It is, I think, much more likely that Henry Baker is an -absolutely innocent man, who had no idea that the bird which he -was carrying was of considerably more value than if it were made -of solid gold. That, however, I shall determine by a very simple -test if we have an answer to our advertisement." - -"And you can do nothing until then?" - -"Nothing." - -"In that case I shall continue my professional round. But I shall -come back in the evening at the hour you have mentioned, for I -should like to see the solution of so tangled a business." - -"Very glad to see you. I dine at seven. There is a woodcock, I -believe. By the way, in view of recent occurrences, perhaps I -ought to ask Mrs. Hudson to examine its crop." - -I had been delayed at a case, and it was a little after half-past -six when I found myself in Baker Street once more. As I -approached the house I saw a tall man in a Scotch bonnet with a -coat which was buttoned up to his chin waiting outside in the -bright semicircle which was thrown from the fanlight. Just as I -arrived the door was opened, and we were shown up together to -Holmes' room. - -"Mr. Henry Baker, I believe," said he, rising from his armchair -and greeting his visitor with the easy air of geniality which he -could so readily assume. "Pray take this chair by the fire, Mr. -Baker. It is a cold night, and I observe that your circulation is -more adapted for summer than for winter. Ah, Watson, you have -just come at the right time. Is that your hat, Mr. Baker?" - -"Yes, sir, that is undoubtedly my hat." - -He was a large man with rounded shoulders, a massive head, and a -broad, intelligent face, sloping down to a pointed beard of -grizzled brown. A touch of red in nose and cheeks, with a slight -tremor of his extended hand, recalled Holmes' surmise as to his -habits. His rusty black frock-coat was buttoned right up in -front, with the collar turned up, and his lank wrists protruded -from his sleeves without a sign of cuff or shirt. He spoke in a -slow staccato fashion, choosing his words with care, and gave the -impression generally of a man of learning and letters who had had -ill-usage at the hands of fortune. - -"We have retained these things for some days," said Holmes, -"because we expected to see an advertisement from you giving your -address. I am at a loss to know now why you did not advertise." - -Our visitor gave a rather shamefaced laugh. "Shillings have not -been so plentiful with me as they once were," he remarked. "I had -no doubt that the gang of roughs who assaulted me had carried off -both my hat and the bird. I did not care to spend more money in a -hopeless attempt at recovering them." - -"Very naturally. By the way, about the bird, we were compelled to -eat it." - -"To eat it!" Our visitor half rose from his chair in his -excitement. - -"Yes, it would have been of no use to anyone had we not done so. -But I presume that this other goose upon the sideboard, which is -about the same weight and perfectly fresh, will answer your -purpose equally well?" - -"Oh, certainly, certainly," answered Mr. Baker with a sigh of -relief. - -"Of course, we still have the feathers, legs, crop, and so on of -your own bird, so if you wish--" - -The man burst into a hearty laugh. "They might be useful to me as -relics of my adventure," said he, "but beyond that I can hardly -see what use the disjecta membra of my late acquaintance are -going to be to me. No, sir, I think that, with your permission, I -will confine my attentions to the excellent bird which I perceive -upon the sideboard." - -Sherlock Holmes glanced sharply across at me with a slight shrug -of his shoulders. - -"There is your hat, then, and there your bird," said he. "By the -way, would it bore you to tell me where you got the other one -from? I am somewhat of a fowl fancier, and I have seldom seen a -better grown goose." - -"Certainly, sir," said Baker, who had risen and tucked his newly -gained property under his arm. "There are a few of us who -frequent the Alpha Inn, near the Museum--we are to be found in -the Museum itself during the day, you understand. This year our -good host, Windigate by name, instituted a goose club, by which, -on consideration of some few pence every week, we were each to -receive a bird at Christmas. My pence were duly paid, and the -rest is familiar to you. I am much indebted to you, sir, for a -Scotch bonnet is fitted neither to my years nor my gravity." With -a comical pomposity of manner he bowed solemnly to both of us and -strode off upon his way. - -"So much for Mr. Henry Baker," said Holmes when he had closed the -door behind him. "It is quite certain that he knows nothing -whatever about the matter. Are you hungry, Watson?" - -"Not particularly." - -"Then I suggest that we turn our dinner into a supper and follow -up this clue while it is still hot." - -"By all means." - -It was a bitter night, so we drew on our ulsters and wrapped -cravats about our throats. Outside, the stars were shining coldly -in a cloudless sky, and the breath of the passers-by blew out -into smoke like so many pistol shots. Our footfalls rang out -crisply and loudly as we swung through the doctors' quarter, -Wimpole Street, Harley Street, and so through Wigmore Street into -Oxford Street. In a quarter of an hour we were in Bloomsbury at -the Alpha Inn, which is a small public-house at the corner of one -of the streets which runs down into Holborn. Holmes pushed open -the door of the private bar and ordered two glasses of beer from -the ruddy-faced, white-aproned landlord. - -"Your beer should be excellent if it is as good as your geese," -said he. - -"My geese!" The man seemed surprised. - -"Yes. I was speaking only half an hour ago to Mr. Henry Baker, -who was a member of your goose club." - -"Ah! yes, I see. But you see, sir, them's not our geese." - -"Indeed! Whose, then?" - -"Well, I got the two dozen from a salesman in Covent Garden." - -"Indeed? I know some of them. Which was it?" - -"Breckinridge is his name." - -"Ah! I don't know him. Well, here's your good health landlord, -and prosperity to your house. Good-night." - -"Now for Mr. Breckinridge," he continued, buttoning up his coat -as we came out into the frosty air. "Remember, Watson that though -we have so homely a thing as a goose at one end of this chain, we -have at the other a man who will certainly get seven years' penal -servitude unless we can establish his innocence. It is possible -that our inquiry may but confirm his guilt; but, in any case, we -have a line of investigation which has been missed by the police, -and which a singular chance has placed in our hands. Let us -follow it out to the bitter end. Faces to the south, then, and -quick march!" - -We passed across Holborn, down Endell Street, and so through a -zigzag of slums to Covent Garden Market. One of the largest -stalls bore the name of Breckinridge upon it, and the proprietor -a horsey-looking man, with a sharp face and trim side-whiskers was -helping a boy to put up the shutters. - -"Good-evening. It's a cold night," said Holmes. - -The salesman nodded and shot a questioning glance at my -companion. - -"Sold out of geese, I see," continued Holmes, pointing at the -bare slabs of marble. - -"Let you have five hundred to-morrow morning." - -"That's no good." - -"Well, there are some on the stall with the gas-flare." - -"Ah, but I was recommended to you." - -"Who by?" - -"The landlord of the Alpha." - -"Oh, yes; I sent him a couple of dozen." - -"Fine birds they were, too. Now where did you get them from?" - -To my surprise the question provoked a burst of anger from the -salesman. - -"Now, then, mister," said he, with his head cocked and his arms -akimbo, "what are you driving at? Let's have it straight, now." - -"It is straight enough. I should like to know who sold you the -geese which you supplied to the Alpha." - -"Well then, I shan't tell you. So now!" - -"Oh, it is a matter of no importance; but I don't know why you -should be so warm over such a trifle." - -"Warm! You'd be as warm, maybe, if you were as pestered as I am. -When I pay good money for a good article there should be an end -of the business; but it's 'Where are the geese?' and 'Who did you -sell the geese to?' and 'What will you take for the geese?' One -would think they were the only geese in the world, to hear the -fuss that is made over them." - -"Well, I have no connection with any other people who have been -making inquiries," said Holmes carelessly. "If you won't tell us -the bet is off, that is all. But I'm always ready to back my -opinion on a matter of fowls, and I have a fiver on it that the -bird I ate is country bred." - -"Well, then, you've lost your fiver, for it's town bred," snapped -the salesman. - -"It's nothing of the kind." - -"I say it is." - -"I don't believe it." - -"D'you think you know more about fowls than I, who have handled -them ever since I was a nipper? I tell you, all those birds that -went to the Alpha were town bred." - -"You'll never persuade me to believe that." - -"Will you bet, then?" - -"It's merely taking your money, for I know that I am right. But -I'll have a sovereign on with you, just to teach you not to be -obstinate." - -The salesman chuckled grimly. "Bring me the books, Bill," said -he. - -The small boy brought round a small thin volume and a great -greasy-backed one, laying them out together beneath the hanging -lamp. - -"Now then, Mr. Cocksure," said the salesman, "I thought that I -was out of geese, but before I finish you'll find that there is -still one left in my shop. You see this little book?" - -"Well?" - -"That's the list of the folk from whom I buy. D'you see? Well, -then, here on this page are the country folk, and the numbers -after their names are where their accounts are in the big ledger. -Now, then! You see this other page in red ink? Well, that is a -list of my town suppliers. Now, look at that third name. Just -read it out to me." - -"Mrs. Oakshott, 117, Brixton Road--249," read Holmes. - -"Quite so. Now turn that up in the ledger." - -Holmes turned to the page indicated. "Here you are, 'Mrs. -Oakshott, 117, Brixton Road, egg and poultry supplier.'" - -"Now, then, what's the last entry?" - -"'December 22nd. Twenty-four geese at 7s. 6d.'" - -"Quite so. There you are. And underneath?" - -"'Sold to Mr. Windigate of the Alpha, at 12s.'" - -"What have you to say now?" - -Sherlock Holmes looked deeply chagrined. He drew a sovereign from -his pocket and threw it down upon the slab, turning away with the -air of a man whose disgust is too deep for words. A few yards off -he stopped under a lamp-post and laughed in the hearty, noiseless -fashion which was peculiar to him. - -"When you see a man with whiskers of that cut and the 'Pink 'un' -protruding out of his pocket, you can always draw him by a bet," -said he. "I daresay that if I had put 100 pounds down in front of -him, that man would not have given me such complete information -as was drawn from him by the idea that he was doing me on a -wager. Well, Watson, we are, I fancy, nearing the end of our -quest, and the only point which remains to be determined is -whether we should go on to this Mrs. Oakshott to-night, or -whether we should reserve it for to-morrow. It is clear from what -that surly fellow said that there are others besides ourselves -who are anxious about the matter, and I should--" - -His remarks were suddenly cut short by a loud hubbub which broke -out from the stall which we had just left. Turning round we saw a -little rat-faced fellow standing in the centre of the circle of -yellow light which was thrown by the swinging lamp, while -Breckinridge, the salesman, framed in the door of his stall, was -shaking his fists fiercely at the cringing figure. - -"I've had enough of you and your geese," he shouted. "I wish you -were all at the devil together. If you come pestering me any more -with your silly talk I'll set the dog at you. You bring Mrs. -Oakshott here and I'll answer her, but what have you to do with -it? Did I buy the geese off you?" - -"No; but one of them was mine all the same," whined the little -man. - -"Well, then, ask Mrs. Oakshott for it." - -"She told me to ask you." - -"Well, you can ask the King of Proosia, for all I care. I've had -enough of it. Get out of this!" He rushed fiercely forward, and -the inquirer flitted away into the darkness. - -"Ha! this may save us a visit to Brixton Road," whispered Holmes. -"Come with me, and we will see what is to be made of this -fellow." Striding through the scattered knots of people who -lounged round the flaring stalls, my companion speedily overtook -the little man and touched him upon the shoulder. He sprang -round, and I could see in the gas-light that every vestige of -colour had been driven from his face. - -"Who are you, then? What do you want?" he asked in a quavering -voice. - -"You will excuse me," said Holmes blandly, "but I could not help -overhearing the questions which you put to the salesman just now. -I think that I could be of assistance to you." - -"You? Who are you? How could you know anything of the matter?" - -"My name is Sherlock Holmes. It is my business to know what other -people don't know." - -"But you can know nothing of this?" - -"Excuse me, I know everything of it. You are endeavouring to -trace some geese which were sold by Mrs. Oakshott, of Brixton -Road, to a salesman named Breckinridge, by him in turn to Mr. -Windigate, of the Alpha, and by him to his club, of which Mr. -Henry Baker is a member." - -"Oh, sir, you are the very man whom I have longed to meet," cried -the little fellow with outstretched hands and quivering fingers. -"I can hardly explain to you how interested I am in this matter." - -Sherlock Holmes hailed a four-wheeler which was passing. "In that -case we had better discuss it in a cosy room rather than in this -wind-swept market-place," said he. "But pray tell me, before we -go farther, who it is that I have the pleasure of assisting." - -The man hesitated for an instant. "My name is John Robinson," he -answered with a sidelong glance. - -"No, no; the real name," said Holmes sweetly. "It is always -awkward doing business with an alias." - -A flush sprang to the white cheeks of the stranger. "Well then," -said he, "my real name is James Ryder." - -"Precisely so. Head attendant at the Hotel Cosmopolitan. Pray -step into the cab, and I shall soon be able to tell you -everything which you would wish to know." - -The little man stood glancing from one to the other of us with -half-frightened, half-hopeful eyes, as one who is not sure -whether he is on the verge of a windfall or of a catastrophe. -Then he stepped into the cab, and in half an hour we were back in -the sitting-room at Baker Street. Nothing had been said during -our drive, but the high, thin breathing of our new companion, and -the claspings and unclaspings of his hands, spoke of the nervous -tension within him. - -"Here we are!" said Holmes cheerily as we filed into the room. -"The fire looks very seasonable in this weather. You look cold, -Mr. Ryder. Pray take the basket-chair. I will just put on my -slippers before we settle this little matter of yours. Now, then! -You want to know what became of those geese?" - -"Yes, sir." - -"Or rather, I fancy, of that goose. It was one bird, I imagine in -which you were interested--white, with a black bar across the -tail." - -Ryder quivered with emotion. "Oh, sir," he cried, "can you tell -me where it went to?" - -"It came here." - -"Here?" - -"Yes, and a most remarkable bird it proved. I don't wonder that -you should take an interest in it. It laid an egg after it was -dead--the bonniest, brightest little blue egg that ever was seen. -I have it here in my museum." - -Our visitor staggered to his feet and clutched the mantelpiece -with his right hand. Holmes unlocked his strong-box and held up -the blue carbuncle, which shone out like a star, with a cold, -brilliant, many-pointed radiance. Ryder stood glaring with a -drawn face, uncertain whether to claim or to disown it. - -"The game's up, Ryder," said Holmes quietly. "Hold up, man, or -you'll be into the fire! Give him an arm back into his chair, -Watson. He's not got blood enough to go in for felony with -impunity. Give him a dash of brandy. So! Now he looks a little -more human. What a shrimp it is, to be sure!" - -For a moment he had staggered and nearly fallen, but the brandy -brought a tinge of colour into his cheeks, and he sat staring -with frightened eyes at his accuser. - -"I have almost every link in my hands, and all the proofs which I -could possibly need, so there is little which you need tell me. -Still, that little may as well be cleared up to make the case -complete. You had heard, Ryder, of this blue stone of the -Countess of Morcar's?" - -"It was Catherine Cusack who told me of it," said he in a -crackling voice. - -"I see--her ladyship's waiting-maid. Well, the temptation of -sudden wealth so easily acquired was too much for you, as it has -been for better men before you; but you were not very scrupulous -in the means you used. It seems to me, Ryder, that there is the -making of a very pretty villain in you. You knew that this man -Horner, the plumber, had been concerned in some such matter -before, and that suspicion would rest the more readily upon him. -What did you do, then? You made some small job in my lady's -room--you and your confederate Cusack--and you managed that he -should be the man sent for. Then, when he had left, you rifled -the jewel-case, raised the alarm, and had this unfortunate man -arrested. You then--" - -Ryder threw himself down suddenly upon the rug and clutched at my -companion's knees. "For God's sake, have mercy!" he shrieked. -"Think of my father! Of my mother! It would break their hearts. I -never went wrong before! I never will again. I swear it. I'll -swear it on a Bible. Oh, don't bring it into court! For Christ's -sake, don't!" - -"Get back into your chair!" said Holmes sternly. "It is very well -to cringe and crawl now, but you thought little enough of this -poor Horner in the dock for a crime of which he knew nothing." - -"I will fly, Mr. Holmes. I will leave the country, sir. Then the -charge against him will break down." - -"Hum! We will talk about that. And now let us hear a true account -of the next act. How came the stone into the goose, and how came -the goose into the open market? Tell us the truth, for there lies -your only hope of safety." - -Ryder passed his tongue over his parched lips. "I will tell you -it just as it happened, sir," said he. "When Horner had been -arrested, it seemed to me that it would be best for me to get -away with the stone at once, for I did not know at what moment -the police might not take it into their heads to search me and my -room. There was no place about the hotel where it would be safe. -I went out, as if on some commission, and I made for my sister's -house. She had married a man named Oakshott, and lived in Brixton -Road, where she fattened fowls for the market. All the way there -every man I met seemed to me to be a policeman or a detective; -and, for all that it was a cold night, the sweat was pouring down -my face before I came to the Brixton Road. My sister asked me -what was the matter, and why I was so pale; but I told her that I -had been upset by the jewel robbery at the hotel. Then I went -into the back yard and smoked a pipe and wondered what it would -be best to do. - -"I had a friend once called Maudsley, who went to the bad, and -has just been serving his time in Pentonville. One day he had met -me, and fell into talk about the ways of thieves, and how they -could get rid of what they stole. I knew that he would be true to -me, for I knew one or two things about him; so I made up my mind -to go right on to Kilburn, where he lived, and take him into my -confidence. He would show me how to turn the stone into money. -But how to get to him in safety? I thought of the agonies I had -gone through in coming from the hotel. I might at any moment be -seized and searched, and there would be the stone in my waistcoat -pocket. I was leaning against the wall at the time and looking at -the geese which were waddling about round my feet, and suddenly -an idea came into my head which showed me how I could beat the -best detective that ever lived. - -"My sister had told me some weeks before that I might have the -pick of her geese for a Christmas present, and I knew that she -was always as good as her word. I would take my goose now, and in -it I would carry my stone to Kilburn. There was a little shed in -the yard, and behind this I drove one of the birds--a fine big -one, white, with a barred tail. I caught it, and prying its bill -open, I thrust the stone down its throat as far as my finger -could reach. The bird gave a gulp, and I felt the stone pass -along its gullet and down into its crop. But the creature flapped -and struggled, and out came my sister to know what was the -matter. As I turned to speak to her the brute broke loose and -fluttered off among the others. - -"'Whatever were you doing with that bird, Jem?' says she. - -"'Well,' said I, 'you said you'd give me one for Christmas, and I -was feeling which was the fattest.' - -"'Oh,' says she, 'we've set yours aside for you--Jem's bird, we -call it. It's the big white one over yonder. There's twenty-six -of them, which makes one for you, and one for us, and two dozen -for the market.' - -"'Thank you, Maggie,' says I; 'but if it is all the same to you, -I'd rather have that one I was handling just now.' - -"'The other is a good three pound heavier,' said she, 'and we -fattened it expressly for you.' - -"'Never mind. I'll have the other, and I'll take it now,' said I. - -"'Oh, just as you like,' said she, a little huffed. 'Which is it -you want, then?' - -"'That white one with the barred tail, right in the middle of the -flock.' - -"'Oh, very well. Kill it and take it with you.' - -"Well, I did what she said, Mr. Holmes, and I carried the bird -all the way to Kilburn. I told my pal what I had done, for he was -a man that it was easy to tell a thing like that to. He laughed -until he choked, and we got a knife and opened the goose. My -heart turned to water, for there was no sign of the stone, and I -knew that some terrible mistake had occurred. I left the bird, -rushed back to my sister's, and hurried into the back yard. There -was not a bird to be seen there. - -"'Where are they all, Maggie?' I cried. - -"'Gone to the dealer's, Jem.' - -"'Which dealer's?' - -"'Breckinridge, of Covent Garden.' - -"'But was there another with a barred tail?' I asked, 'the same -as the one I chose?' - -"'Yes, Jem; there were two barred-tailed ones, and I could never -tell them apart.' - -"Well, then, of course I saw it all, and I ran off as hard as my -feet would carry me to this man Breckinridge; but he had sold the -lot at once, and not one word would he tell me as to where they -had gone. You heard him yourselves to-night. Well, he has always -answered me like that. My sister thinks that I am going mad. -Sometimes I think that I am myself. And now--and now I am myself -a branded thief, without ever having touched the wealth for which -I sold my character. God help me! God help me!" He burst into -convulsive sobbing, with his face buried in his hands. - -There was a long silence, broken only by his heavy breathing and -by the measured tapping of Sherlock Holmes' finger-tips upon the -edge of the table. Then my friend rose and threw open the door. - -"Get out!" said he. - -"What, sir! Oh, Heaven bless you!" - -"No more words. Get out!" - -And no more words were needed. There was a rush, a clatter upon -the stairs, the bang of a door, and the crisp rattle of running -footfalls from the street. - -"After all, Watson," said Holmes, reaching up his hand for his -clay pipe, "I am not retained by the police to supply their -deficiencies. If Horner were in danger it would be another thing; -but this fellow will not appear against him, and the case must -collapse. I suppose that I am commuting a felony, but it is just -possible that I am saving a soul. This fellow will not go wrong -again; he is too terribly frightened. Send him to gaol now, and -you make him a gaol-bird for life. Besides, it is the season of -forgiveness. Chance has put in our way a most singular and -whimsical problem, and its solution is its own reward. If you -will have the goodness to touch the bell, Doctor, we will begin -another investigation, in which, also a bird will be the chief -feature." - - - -VIII. THE ADVENTURE OF THE SPECKLED BAND - -On glancing over my notes of the seventy odd cases in which I -have during the last eight years studied the methods of my friend -Sherlock Holmes, I find many tragic, some comic, a large number -merely strange, but none commonplace; for, working as he did -rather for the love of his art than for the acquirement of -wealth, he refused to associate himself with any investigation -which did not tend towards the unusual, and even the fantastic. -Of all these varied cases, however, I cannot recall any which -presented more singular features than that which was associated -with the well-known Surrey family of the Roylotts of Stoke Moran. -The events in question occurred in the early days of my -association with Holmes, when we were sharing rooms as bachelors -in Baker Street. It is possible that I might have placed them -upon record before, but a promise of secrecy was made at the -time, from which I have only been freed during the last month by -the untimely death of the lady to whom the pledge was given. It -is perhaps as well that the facts should now come to light, for I -have reasons to know that there are widespread rumours as to the -death of Dr. Grimesby Roylott which tend to make the matter even -more terrible than the truth. - -It was early in April in the year '83 that I woke one morning to -find Sherlock Holmes standing, fully dressed, by the side of my -bed. He was a late riser, as a rule, and as the clock on the -mantelpiece showed me that it was only a quarter-past seven, I -blinked up at him in some surprise, and perhaps just a little -resentment, for I was myself regular in my habits. - -"Very sorry to knock you up, Watson," said he, "but it's the -common lot this morning. Mrs. Hudson has been knocked up, she -retorted upon me, and I on you." - -"What is it, then--a fire?" - -"No; a client. It seems that a young lady has arrived in a -considerable state of excitement, who insists upon seeing me. She -is waiting now in the sitting-room. Now, when young ladies wander -about the metropolis at this hour of the morning, and knock -sleepy people up out of their beds, I presume that it is -something very pressing which they have to communicate. Should it -prove to be an interesting case, you would, I am sure, wish to -follow it from the outset. I thought, at any rate, that I should -call you and give you the chance." - -"My dear fellow, I would not miss it for anything." - -I had no keener pleasure than in following Holmes in his -professional investigations, and in admiring the rapid -deductions, as swift as intuitions, and yet always founded on a -logical basis with which he unravelled the problems which were -submitted to him. I rapidly threw on my clothes and was ready in -a few minutes to accompany my friend down to the sitting-room. A -lady dressed in black and heavily veiled, who had been sitting in -the window, rose as we entered. - -"Good-morning, madam," said Holmes cheerily. "My name is Sherlock -Holmes. This is my intimate friend and associate, Dr. Watson, -before whom you can speak as freely as before myself. Ha! I am -glad to see that Mrs. Hudson has had the good sense to light the -fire. Pray draw up to it, and I shall order you a cup of hot -coffee, for I observe that you are shivering." - -"It is not cold which makes me shiver," said the woman in a low -voice, changing her seat as requested. - -"What, then?" - -"It is fear, Mr. Holmes. It is terror." She raised her veil as -she spoke, and we could see that she was indeed in a pitiable -state of agitation, her face all drawn and grey, with restless -frightened eyes, like those of some hunted animal. Her features -and figure were those of a woman of thirty, but her hair was shot -with premature grey, and her expression was weary and haggard. -Sherlock Holmes ran her over with one of his quick, -all-comprehensive glances. - -"You must not fear," said he soothingly, bending forward and -patting her forearm. "We shall soon set matters right, I have no -doubt. You have come in by train this morning, I see." - -"You know me, then?" - -"No, but I observe the second half of a return ticket in the palm -of your left glove. You must have started early, and yet you had -a good drive in a dog-cart, along heavy roads, before you reached -the station." - -The lady gave a violent start and stared in bewilderment at my -companion. - -"There is no mystery, my dear madam," said he, smiling. "The left -arm of your jacket is spattered with mud in no less than seven -places. The marks are perfectly fresh. There is no vehicle save a -dog-cart which throws up mud in that way, and then only when you -sit on the left-hand side of the driver." - -"Whatever your reasons may be, you are perfectly correct," said -she. "I started from home before six, reached Leatherhead at -twenty past, and came in by the first train to Waterloo. Sir, I -can stand this strain no longer; I shall go mad if it continues. -I have no one to turn to--none, save only one, who cares for me, -and he, poor fellow, can be of little aid. I have heard of you, -Mr. Holmes; I have heard of you from Mrs. Farintosh, whom you -helped in the hour of her sore need. It was from her that I had -your address. Oh, sir, do you not think that you could help me, -too, and at least throw a little light through the dense darkness -which surrounds me? At present it is out of my power to reward -you for your services, but in a month or six weeks I shall be -married, with the control of my own income, and then at least you -shall not find me ungrateful." - -Holmes turned to his desk and, unlocking it, drew out a small -case-book, which he consulted. - -"Farintosh," said he. "Ah yes, I recall the case; it was -concerned with an opal tiara. I think it was before your time, -Watson. I can only say, madam, that I shall be happy to devote -the same care to your case as I did to that of your friend. As to -reward, my profession is its own reward; but you are at liberty -to defray whatever expenses I may be put to, at the time which -suits you best. And now I beg that you will lay before us -everything that may help us in forming an opinion upon the -matter." - -"Alas!" replied our visitor, "the very horror of my situation -lies in the fact that my fears are so vague, and my suspicions -depend so entirely upon small points, which might seem trivial to -another, that even he to whom of all others I have a right to -look for help and advice looks upon all that I tell him about it -as the fancies of a nervous woman. He does not say so, but I can -read it from his soothing answers and averted eyes. But I have -heard, Mr. Holmes, that you can see deeply into the manifold -wickedness of the human heart. You may advise me how to walk amid -the dangers which encompass me." - -"I am all attention, madam." - -"My name is Helen Stoner, and I am living with my stepfather, who -is the last survivor of one of the oldest Saxon families in -England, the Roylotts of Stoke Moran, on the western border of -Surrey." - -Holmes nodded his head. "The name is familiar to me," said he. - -"The family was at one time among the richest in England, and the -estates extended over the borders into Berkshire in the north, -and Hampshire in the west. In the last century, however, four -successive heirs were of a dissolute and wasteful disposition, -and the family ruin was eventually completed by a gambler in the -days of the Regency. Nothing was left save a few acres of ground, -and the two-hundred-year-old house, which is itself crushed under -a heavy mortgage. The last squire dragged out his existence -there, living the horrible life of an aristocratic pauper; but -his only son, my stepfather, seeing that he must adapt himself to -the new conditions, obtained an advance from a relative, which -enabled him to take a medical degree and went out to Calcutta, -where, by his professional skill and his force of character, he -established a large practice. In a fit of anger, however, caused -by some robberies which had been perpetrated in the house, he -beat his native butler to death and narrowly escaped a capital -sentence. As it was, he suffered a long term of imprisonment and -afterwards returned to England a morose and disappointed man. - -"When Dr. Roylott was in India he married my mother, Mrs. Stoner, -the young widow of Major-General Stoner, of the Bengal Artillery. -My sister Julia and I were twins, and we were only two years old -at the time of my mother's re-marriage. She had a considerable -sum of money--not less than 1000 pounds a year--and this she -bequeathed to Dr. Roylott entirely while we resided with him, -with a provision that a certain annual sum should be allowed to -each of us in the event of our marriage. Shortly after our return -to England my mother died--she was killed eight years ago in a -railway accident near Crewe. Dr. Roylott then abandoned his -attempts to establish himself in practice in London and took us -to live with him in the old ancestral house at Stoke Moran. The -money which my mother had left was enough for all our wants, and -there seemed to be no obstacle to our happiness. - -"But a terrible change came over our stepfather about this time. -Instead of making friends and exchanging visits with our -neighbours, who had at first been overjoyed to see a Roylott of -Stoke Moran back in the old family seat, he shut himself up in -his house and seldom came out save to indulge in ferocious -quarrels with whoever might cross his path. Violence of temper -approaching to mania has been hereditary in the men of the -family, and in my stepfather's case it had, I believe, been -intensified by his long residence in the tropics. A series of -disgraceful brawls took place, two of which ended in the -police-court, until at last he became the terror of the village, -and the folks would fly at his approach, for he is a man of -immense strength, and absolutely uncontrollable in his anger. - -"Last week he hurled the local blacksmith over a parapet into a -stream, and it was only by paying over all the money which I -could gather together that I was able to avert another public -exposure. He had no friends at all save the wandering gipsies, -and he would give these vagabonds leave to encamp upon the few -acres of bramble-covered land which represent the family estate, -and would accept in return the hospitality of their tents, -wandering away with them sometimes for weeks on end. He has a -passion also for Indian animals, which are sent over to him by a -correspondent, and he has at this moment a cheetah and a baboon, -which wander freely over his grounds and are feared by the -villagers almost as much as their master. - -"You can imagine from what I say that my poor sister Julia and I -had no great pleasure in our lives. No servant would stay with -us, and for a long time we did all the work of the house. She was -but thirty at the time of her death, and yet her hair had already -begun to whiten, even as mine has." - -"Your sister is dead, then?" - -"She died just two years ago, and it is of her death that I wish -to speak to you. You can understand that, living the life which I -have described, we were little likely to see anyone of our own -age and position. We had, however, an aunt, my mother's maiden -sister, Miss Honoria Westphail, who lives near Harrow, and we -were occasionally allowed to pay short visits at this lady's -house. Julia went there at Christmas two years ago, and met there -a half-pay major of marines, to whom she became engaged. My -stepfather learned of the engagement when my sister returned and -offered no objection to the marriage; but within a fortnight of -the day which had been fixed for the wedding, the terrible event -occurred which has deprived me of my only companion." - -Sherlock Holmes had been leaning back in his chair with his eyes -closed and his head sunk in a cushion, but he half opened his -lids now and glanced across at his visitor. - -"Pray be precise as to details," said he. - -"It is easy for me to be so, for every event of that dreadful -time is seared into my memory. The manor-house is, as I have -already said, very old, and only one wing is now inhabited. The -bedrooms in this wing are on the ground floor, the sitting-rooms -being in the central block of the buildings. Of these bedrooms -the first is Dr. Roylott's, the second my sister's, and the third -my own. There is no communication between them, but they all open -out into the same corridor. Do I make myself plain?" - -"Perfectly so." - -"The windows of the three rooms open out upon the lawn. That -fatal night Dr. Roylott had gone to his room early, though we -knew that he had not retired to rest, for my sister was troubled -by the smell of the strong Indian cigars which it was his custom -to smoke. She left her room, therefore, and came into mine, where -she sat for some time, chatting about her approaching wedding. At -eleven o'clock she rose to leave me, but she paused at the door -and looked back. - -"'Tell me, Helen,' said she, 'have you ever heard anyone whistle -in the dead of the night?' - -"'Never,' said I. - -"'I suppose that you could not possibly whistle, yourself, in -your sleep?' - -"'Certainly not. But why?' - -"'Because during the last few nights I have always, about three -in the morning, heard a low, clear whistle. I am a light sleeper, -and it has awakened me. I cannot tell where it came from--perhaps -from the next room, perhaps from the lawn. I thought that I would -just ask you whether you had heard it.' - -"'No, I have not. It must be those wretched gipsies in the -plantation.' - -"'Very likely. And yet if it were on the lawn, I wonder that you -did not hear it also.' - -"'Ah, but I sleep more heavily than you.' - -"'Well, it is of no great consequence, at any rate.' She smiled -back at me, closed my door, and a few moments later I heard her -key turn in the lock." - -"Indeed," said Holmes. "Was it your custom always to lock -yourselves in at night?" - -"Always." - -"And why?" - -"I think that I mentioned to you that the doctor kept a cheetah -and a baboon. We had no feeling of security unless our doors were -locked." - -"Quite so. Pray proceed with your statement." - -"I could not sleep that night. A vague feeling of impending -misfortune impressed me. My sister and I, you will recollect, -were twins, and you know how subtle are the links which bind two -souls which are so closely allied. It was a wild night. The wind -was howling outside, and the rain was beating and splashing -against the windows. Suddenly, amid all the hubbub of the gale, -there burst forth the wild scream of a terrified woman. I knew -that it was my sister's voice. I sprang from my bed, wrapped a -shawl round me, and rushed into the corridor. As I opened my door -I seemed to hear a low whistle, such as my sister described, and -a few moments later a clanging sound, as if a mass of metal had -fallen. As I ran down the passage, my sister's door was unlocked, -and revolved slowly upon its hinges. I stared at it -horror-stricken, not knowing what was about to issue from it. By -the light of the corridor-lamp I saw my sister appear at the -opening, her face blanched with terror, her hands groping for -help, her whole figure swaying to and fro like that of a -drunkard. I ran to her and threw my arms round her, but at that -moment her knees seemed to give way and she fell to the ground. -She writhed as one who is in terrible pain, and her limbs were -dreadfully convulsed. At first I thought that she had not -recognised me, but as I bent over her she suddenly shrieked out -in a voice which I shall never forget, 'Oh, my God! Helen! It was -the band! The speckled band!' There was something else which she -would fain have said, and she stabbed with her finger into the -air in the direction of the doctor's room, but a fresh convulsion -seized her and choked her words. I rushed out, calling loudly for -my stepfather, and I met him hastening from his room in his -dressing-gown. When he reached my sister's side she was -unconscious, and though he poured brandy down her throat and sent -for medical aid from the village, all efforts were in vain, for -she slowly sank and died without having recovered her -consciousness. Such was the dreadful end of my beloved sister." - -"One moment," said Holmes, "are you sure about this whistle and -metallic sound? Could you swear to it?" - -"That was what the county coroner asked me at the inquiry. It is -my strong impression that I heard it, and yet, among the crash of -the gale and the creaking of an old house, I may possibly have -been deceived." - -"Was your sister dressed?" - -"No, she was in her night-dress. In her right hand was found the -charred stump of a match, and in her left a match-box." - -"Showing that she had struck a light and looked about her when -the alarm took place. That is important. And what conclusions did -the coroner come to?" - -"He investigated the case with great care, for Dr. Roylott's -conduct had long been notorious in the county, but he was unable -to find any satisfactory cause of death. My evidence showed that -the door had been fastened upon the inner side, and the windows -were blocked by old-fashioned shutters with broad iron bars, -which were secured every night. The walls were carefully sounded, -and were shown to be quite solid all round, and the flooring was -also thoroughly examined, with the same result. The chimney is -wide, but is barred up by four large staples. It is certain, -therefore, that my sister was quite alone when she met her end. -Besides, there were no marks of any violence upon her." - -"How about poison?" - -"The doctors examined her for it, but without success." - -"What do you think that this unfortunate lady died of, then?" - -"It is my belief that she died of pure fear and nervous shock, -though what it was that frightened her I cannot imagine." - -"Were there gipsies in the plantation at the time?" - -"Yes, there are nearly always some there." - -"Ah, and what did you gather from this allusion to a band--a -speckled band?" - -"Sometimes I have thought that it was merely the wild talk of -delirium, sometimes that it may have referred to some band of -people, perhaps to these very gipsies in the plantation. I do not -know whether the spotted handkerchiefs which so many of them wear -over their heads might have suggested the strange adjective which -she used." - -Holmes shook his head like a man who is far from being satisfied. - -"These are very deep waters," said he; "pray go on with your -narrative." - -"Two years have passed since then, and my life has been until -lately lonelier than ever. A month ago, however, a dear friend, -whom I have known for many years, has done me the honour to ask -my hand in marriage. His name is Armitage--Percy Armitage--the -second son of Mr. Armitage, of Crane Water, near Reading. My -stepfather has offered no opposition to the match, and we are to -be married in the course of the spring. Two days ago some repairs -were started in the west wing of the building, and my bedroom -wall has been pierced, so that I have had to move into the -chamber in which my sister died, and to sleep in the very bed in -which she slept. Imagine, then, my thrill of terror when last -night, as I lay awake, thinking over her terrible fate, I -suddenly heard in the silence of the night the low whistle which -had been the herald of her own death. I sprang up and lit the -lamp, but nothing was to be seen in the room. I was too shaken to -go to bed again, however, so I dressed, and as soon as it was -daylight I slipped down, got a dog-cart at the Crown Inn, which -is opposite, and drove to Leatherhead, from whence I have come on -this morning with the one object of seeing you and asking your -advice." - -"You have done wisely," said my friend. "But have you told me -all?" - -"Yes, all." - -"Miss Roylott, you have not. You are screening your stepfather." - -"Why, what do you mean?" - -For answer Holmes pushed back the frill of black lace which -fringed the hand that lay upon our visitor's knee. Five little -livid spots, the marks of four fingers and a thumb, were printed -upon the white wrist. - -"You have been cruelly used," said Holmes. - -The lady coloured deeply and covered over her injured wrist. "He -is a hard man," she said, "and perhaps he hardly knows his own -strength." - -There was a long silence, during which Holmes leaned his chin -upon his hands and stared into the crackling fire. - -"This is a very deep business," he said at last. "There are a -thousand details which I should desire to know before I decide -upon our course of action. Yet we have not a moment to lose. If -we were to come to Stoke Moran to-day, would it be possible for -us to see over these rooms without the knowledge of your -stepfather?" - -"As it happens, he spoke of coming into town to-day upon some -most important business. It is probable that he will be away all -day, and that there would be nothing to disturb you. We have a -housekeeper now, but she is old and foolish, and I could easily -get her out of the way." - -"Excellent. You are not averse to this trip, Watson?" - -"By no means." - -"Then we shall both come. What are you going to do yourself?" - -"I have one or two things which I would wish to do now that I am -in town. But I shall return by the twelve o'clock train, so as to -be there in time for your coming." - -"And you may expect us early in the afternoon. I have myself some -small business matters to attend to. Will you not wait and -breakfast?" - -"No, I must go. My heart is lightened already since I have -confided my trouble to you. I shall look forward to seeing you -again this afternoon." She dropped her thick black veil over her -face and glided from the room. - -"And what do you think of it all, Watson?" asked Sherlock Holmes, -leaning back in his chair. - -"It seems to me to be a most dark and sinister business." - -"Dark enough and sinister enough." - -"Yet if the lady is correct in saying that the flooring and walls -are sound, and that the door, window, and chimney are impassable, -then her sister must have been undoubtedly alone when she met her -mysterious end." - -"What becomes, then, of these nocturnal whistles, and what of the -very peculiar words of the dying woman?" - -"I cannot think." - -"When you combine the ideas of whistles at night, the presence of -a band of gipsies who are on intimate terms with this old doctor, -the fact that we have every reason to believe that the doctor has -an interest in preventing his stepdaughter's marriage, the dying -allusion to a band, and, finally, the fact that Miss Helen Stoner -heard a metallic clang, which might have been caused by one of -those metal bars that secured the shutters falling back into its -place, I think that there is good ground to think that the -mystery may be cleared along those lines." - -"But what, then, did the gipsies do?" - -"I cannot imagine." - -"I see many objections to any such theory." - -"And so do I. It is precisely for that reason that we are going -to Stoke Moran this day. I want to see whether the objections are -fatal, or if they may be explained away. But what in the name of -the devil!" - -The ejaculation had been drawn from my companion by the fact that -our door had been suddenly dashed open, and that a huge man had -framed himself in the aperture. His costume was a peculiar -mixture of the professional and of the agricultural, having a -black top-hat, a long frock-coat, and a pair of high gaiters, -with a hunting-crop swinging in his hand. So tall was he that his -hat actually brushed the cross bar of the doorway, and his -breadth seemed to span it across from side to side. A large face, -seared with a thousand wrinkles, burned yellow with the sun, and -marked with every evil passion, was turned from one to the other -of us, while his deep-set, bile-shot eyes, and his high, thin, -fleshless nose, gave him somewhat the resemblance to a fierce old -bird of prey. - -"Which of you is Holmes?" asked this apparition. - -"My name, sir; but you have the advantage of me," said my -companion quietly. - -"I am Dr. Grimesby Roylott, of Stoke Moran." - -"Indeed, Doctor," said Holmes blandly. "Pray take a seat." - -"I will do nothing of the kind. My stepdaughter has been here. I -have traced her. What has she been saying to you?" - -"It is a little cold for the time of the year," said Holmes. - -"What has she been saying to you?" screamed the old man -furiously. - -"But I have heard that the crocuses promise well," continued my -companion imperturbably. - -"Ha! You put me off, do you?" said our new visitor, taking a step -forward and shaking his hunting-crop. "I know you, you scoundrel! -I have heard of you before. You are Holmes, the meddler." - -My friend smiled. - -"Holmes, the busybody!" - -His smile broadened. - -"Holmes, the Scotland Yard Jack-in-office!" - -Holmes chuckled heartily. "Your conversation is most -entertaining," said he. "When you go out close the door, for -there is a decided draught." - -"I will go when I have said my say. Don't you dare to meddle with -my affairs. I know that Miss Stoner has been here. I traced her! -I am a dangerous man to fall foul of! See here." He stepped -swiftly forward, seized the poker, and bent it into a curve with -his huge brown hands. - -"See that you keep yourself out of my grip," he snarled, and -hurling the twisted poker into the fireplace he strode out of the -room. - -"He seems a very amiable person," said Holmes, laughing. "I am -not quite so bulky, but if he had remained I might have shown him -that my grip was not much more feeble than his own." As he spoke -he picked up the steel poker and, with a sudden effort, -straightened it out again. - -"Fancy his having the insolence to confound me with the official -detective force! This incident gives zest to our investigation, -however, and I only trust that our little friend will not suffer -from her imprudence in allowing this brute to trace her. And now, -Watson, we shall order breakfast, and afterwards I shall walk -down to Doctors' Commons, where I hope to get some data which may -help us in this matter." - - -It was nearly one o'clock when Sherlock Holmes returned from his -excursion. He held in his hand a sheet of blue paper, scrawled -over with notes and figures. - -"I have seen the will of the deceased wife," said he. "To -determine its exact meaning I have been obliged to work out the -present prices of the investments with which it is concerned. The -total income, which at the time of the wife's death was little -short of 1100 pounds, is now, through the fall in agricultural -prices, not more than 750 pounds. Each daughter can claim an -income of 250 pounds, in case of marriage. It is evident, -therefore, that if both girls had married, this beauty would have -had a mere pittance, while even one of them would cripple him to -a very serious extent. My morning's work has not been wasted, -since it has proved that he has the very strongest motives for -standing in the way of anything of the sort. And now, Watson, -this is too serious for dawdling, especially as the old man is -aware that we are interesting ourselves in his affairs; so if you -are ready, we shall call a cab and drive to Waterloo. I should be -very much obliged if you would slip your revolver into your -pocket. An Eley's No. 2 is an excellent argument with gentlemen -who can twist steel pokers into knots. That and a tooth-brush -are, I think, all that we need." - -At Waterloo we were fortunate in catching a train for -Leatherhead, where we hired a trap at the station inn and drove -for four or five miles through the lovely Surrey lanes. It was a -perfect day, with a bright sun and a few fleecy clouds in the -heavens. The trees and wayside hedges were just throwing out -their first green shoots, and the air was full of the pleasant -smell of the moist earth. To me at least there was a strange -contrast between the sweet promise of the spring and this -sinister quest upon which we were engaged. My companion sat in -the front of the trap, his arms folded, his hat pulled down over -his eyes, and his chin sunk upon his breast, buried in the -deepest thought. Suddenly, however, he started, tapped me on the -shoulder, and pointed over the meadows. - -"Look there!" said he. - -A heavily timbered park stretched up in a gentle slope, -thickening into a grove at the highest point. From amid the -branches there jutted out the grey gables and high roof-tree of a -very old mansion. - -"Stoke Moran?" said he. - -"Yes, sir, that be the house of Dr. Grimesby Roylott," remarked -the driver. - -"There is some building going on there," said Holmes; "that is -where we are going." - -"There's the village," said the driver, pointing to a cluster of -roofs some distance to the left; "but if you want to get to the -house, you'll find it shorter to get over this stile, and so by -the foot-path over the fields. There it is, where the lady is -walking." - -"And the lady, I fancy, is Miss Stoner," observed Holmes, shading -his eyes. "Yes, I think we had better do as you suggest." - -We got off, paid our fare, and the trap rattled back on its way -to Leatherhead. - -"I thought it as well," said Holmes as we climbed the stile, -"that this fellow should think we had come here as architects, or -on some definite business. It may stop his gossip. -Good-afternoon, Miss Stoner. You see that we have been as good as -our word." - -Our client of the morning had hurried forward to meet us with a -face which spoke her joy. "I have been waiting so eagerly for -you," she cried, shaking hands with us warmly. "All has turned -out splendidly. Dr. Roylott has gone to town, and it is unlikely -that he will be back before evening." - -"We have had the pleasure of making the doctor's acquaintance," -said Holmes, and in a few words he sketched out what had -occurred. Miss Stoner turned white to the lips as she listened. - -"Good heavens!" she cried, "he has followed me, then." - -"So it appears." - -"He is so cunning that I never know when I am safe from him. What -will he say when he returns?" - -"He must guard himself, for he may find that there is someone -more cunning than himself upon his track. You must lock yourself -up from him to-night. If he is violent, we shall take you away to -your aunt's at Harrow. Now, we must make the best use of our -time, so kindly take us at once to the rooms which we are to -examine." - -The building was of grey, lichen-blotched stone, with a high -central portion and two curving wings, like the claws of a crab, -thrown out on each side. In one of these wings the windows were -broken and blocked with wooden boards, while the roof was partly -caved in, a picture of ruin. The central portion was in little -better repair, but the right-hand block was comparatively modern, -and the blinds in the windows, with the blue smoke curling up -from the chimneys, showed that this was where the family resided. -Some scaffolding had been erected against the end wall, and the -stone-work had been broken into, but there were no signs of any -workmen at the moment of our visit. Holmes walked slowly up and -down the ill-trimmed lawn and examined with deep attention the -outsides of the windows. - -"This, I take it, belongs to the room in which you used to sleep, -the centre one to your sister's, and the one next to the main -building to Dr. Roylott's chamber?" - -"Exactly so. But I am now sleeping in the middle one." - -"Pending the alterations, as I understand. By the way, there does -not seem to be any very pressing need for repairs at that end -wall." - -"There were none. I believe that it was an excuse to move me from -my room." - -"Ah! that is suggestive. Now, on the other side of this narrow -wing runs the corridor from which these three rooms open. There -are windows in it, of course?" - -"Yes, but very small ones. Too narrow for anyone to pass -through." - -"As you both locked your doors at night, your rooms were -unapproachable from that side. Now, would you have the kindness -to go into your room and bar your shutters?" - -Miss Stoner did so, and Holmes, after a careful examination -through the open window, endeavoured in every way to force the -shutter open, but without success. There was no slit through -which a knife could be passed to raise the bar. Then with his -lens he tested the hinges, but they were of solid iron, built -firmly into the massive masonry. "Hum!" said he, scratching his -chin in some perplexity, "my theory certainly presents some -difficulties. No one could pass these shutters if they were -bolted. Well, we shall see if the inside throws any light upon -the matter." - -A small side door led into the whitewashed corridor from which -the three bedrooms opened. Holmes refused to examine the third -chamber, so we passed at once to the second, that in which Miss -Stoner was now sleeping, and in which her sister had met with her -fate. It was a homely little room, with a low ceiling and a -gaping fireplace, after the fashion of old country-houses. A -brown chest of drawers stood in one corner, a narrow -white-counterpaned bed in another, and a dressing-table on the -left-hand side of the window. These articles, with two small -wicker-work chairs, made up all the furniture in the room save -for a square of Wilton carpet in the centre. The boards round and -the panelling of the walls were of brown, worm-eaten oak, so old -and discoloured that it may have dated from the original building -of the house. Holmes drew one of the chairs into a corner and sat -silent, while his eyes travelled round and round and up and down, -taking in every detail of the apartment. - -"Where does that bell communicate with?" he asked at last -pointing to a thick bell-rope which hung down beside the bed, the -tassel actually lying upon the pillow. - -"It goes to the housekeeper's room." - -"It looks newer than the other things?" - -"Yes, it was only put there a couple of years ago." - -"Your sister asked for it, I suppose?" - -"No, I never heard of her using it. We used always to get what we -wanted for ourselves." - -"Indeed, it seemed unnecessary to put so nice a bell-pull there. -You will excuse me for a few minutes while I satisfy myself as to -this floor." He threw himself down upon his face with his lens in -his hand and crawled swiftly backward and forward, examining -minutely the cracks between the boards. Then he did the same with -the wood-work with which the chamber was panelled. Finally he -walked over to the bed and spent some time in staring at it and -in running his eye up and down the wall. Finally he took the -bell-rope in his hand and gave it a brisk tug. - -"Why, it's a dummy," said he. - -"Won't it ring?" - -"No, it is not even attached to a wire. This is very interesting. -You can see now that it is fastened to a hook just above where -the little opening for the ventilator is." - -"How very absurd! I never noticed that before." - -"Very strange!" muttered Holmes, pulling at the rope. "There are -one or two very singular points about this room. For example, -what a fool a builder must be to open a ventilator into another -room, when, with the same trouble, he might have communicated -with the outside air!" - -"That is also quite modern," said the lady. - -"Done about the same time as the bell-rope?" remarked Holmes. - -"Yes, there were several little changes carried out about that -time." - -"They seem to have been of a most interesting character--dummy -bell-ropes, and ventilators which do not ventilate. With your -permission, Miss Stoner, we shall now carry our researches into -the inner apartment." - -Dr. Grimesby Roylott's chamber was larger than that of his -step-daughter, but was as plainly furnished. A camp-bed, a small -wooden shelf full of books, mostly of a technical character, an -armchair beside the bed, a plain wooden chair against the wall, a -round table, and a large iron safe were the principal things -which met the eye. Holmes walked slowly round and examined each -and all of them with the keenest interest. - -"What's in here?" he asked, tapping the safe. - -"My stepfather's business papers." - -"Oh! you have seen inside, then?" - -"Only once, some years ago. I remember that it was full of -papers." - -"There isn't a cat in it, for example?" - -"No. What a strange idea!" - -"Well, look at this!" He took up a small saucer of milk which -stood on the top of it. - -"No; we don't keep a cat. But there is a cheetah and a baboon." - -"Ah, yes, of course! Well, a cheetah is just a big cat, and yet a -saucer of milk does not go very far in satisfying its wants, I -daresay. There is one point which I should wish to determine." He -squatted down in front of the wooden chair and examined the seat -of it with the greatest attention. - -"Thank you. That is quite settled," said he, rising and putting -his lens in his pocket. "Hullo! Here is something interesting!" - -The object which had caught his eye was a small dog lash hung on -one corner of the bed. The lash, however, was curled upon itself -and tied so as to make a loop of whipcord. - -"What do you make of that, Watson?" - -"It's a common enough lash. But I don't know why it should be -tied." - -"That is not quite so common, is it? Ah, me! it's a wicked world, -and when a clever man turns his brains to crime it is the worst -of all. I think that I have seen enough now, Miss Stoner, and -with your permission we shall walk out upon the lawn." - -I had never seen my friend's face so grim or his brow so dark as -it was when we turned from the scene of this investigation. We -had walked several times up and down the lawn, neither Miss -Stoner nor myself liking to break in upon his thoughts before he -roused himself from his reverie. - -"It is very essential, Miss Stoner," said he, "that you should -absolutely follow my advice in every respect." - -"I shall most certainly do so." - -"The matter is too serious for any hesitation. Your life may -depend upon your compliance." - -"I assure you that I am in your hands." - -"In the first place, both my friend and I must spend the night in -your room." - -Both Miss Stoner and I gazed at him in astonishment. - -"Yes, it must be so. Let me explain. I believe that that is the -village inn over there?" - -"Yes, that is the Crown." - -"Very good. Your windows would be visible from there?" - -"Certainly." - -"You must confine yourself to your room, on pretence of a -headache, when your stepfather comes back. Then when you hear him -retire for the night, you must open the shutters of your window, -undo the hasp, put your lamp there as a signal to us, and then -withdraw quietly with everything which you are likely to want -into the room which you used to occupy. I have no doubt that, in -spite of the repairs, you could manage there for one night." - -"Oh, yes, easily." - -"The rest you will leave in our hands." - -"But what will you do?" - -"We shall spend the night in your room, and we shall investigate -the cause of this noise which has disturbed you." - -"I believe, Mr. Holmes, that you have already made up your mind," -said Miss Stoner, laying her hand upon my companion's sleeve. - -"Perhaps I have." - -"Then, for pity's sake, tell me what was the cause of my sister's -death." - -"I should prefer to have clearer proofs before I speak." - -"You can at least tell me whether my own thought is correct, and -if she died from some sudden fright." - -"No, I do not think so. I think that there was probably some more -tangible cause. And now, Miss Stoner, we must leave you for if -Dr. Roylott returned and saw us our journey would be in vain. -Good-bye, and be brave, for if you will do what I have told you, -you may rest assured that we shall soon drive away the dangers -that threaten you." - -Sherlock Holmes and I had no difficulty in engaging a bedroom and -sitting-room at the Crown Inn. They were on the upper floor, and -from our window we could command a view of the avenue gate, and -of the inhabited wing of Stoke Moran Manor House. At dusk we saw -Dr. Grimesby Roylott drive past, his huge form looming up beside -the little figure of the lad who drove him. The boy had some -slight difficulty in undoing the heavy iron gates, and we heard -the hoarse roar of the doctor's voice and saw the fury with which -he shook his clinched fists at him. The trap drove on, and a few -minutes later we saw a sudden light spring up among the trees as -the lamp was lit in one of the sitting-rooms. - -"Do you know, Watson," said Holmes as we sat together in the -gathering darkness, "I have really some scruples as to taking you -to-night. There is a distinct element of danger." - -"Can I be of assistance?" - -"Your presence might be invaluable." - -"Then I shall certainly come." - -"It is very kind of you." - -"You speak of danger. You have evidently seen more in these rooms -than was visible to me." - -"No, but I fancy that I may have deduced a little more. I imagine -that you saw all that I did." - -"I saw nothing remarkable save the bell-rope, and what purpose -that could answer I confess is more than I can imagine." - -"You saw the ventilator, too?" - -"Yes, but I do not think that it is such a very unusual thing to -have a small opening between two rooms. It was so small that a -rat could hardly pass through." - -"I knew that we should find a ventilator before ever we came to -Stoke Moran." - -"My dear Holmes!" - -"Oh, yes, I did. You remember in her statement she said that her -sister could smell Dr. Roylott's cigar. Now, of course that -suggested at once that there must be a communication between the -two rooms. It could only be a small one, or it would have been -remarked upon at the coroner's inquiry. I deduced a ventilator." - -"But what harm can there be in that?" - -"Well, there is at least a curious coincidence of dates. A -ventilator is made, a cord is hung, and a lady who sleeps in the -bed dies. Does not that strike you?" - -"I cannot as yet see any connection." - -"Did you observe anything very peculiar about that bed?" - -"No." - -"It was clamped to the floor. Did you ever see a bed fastened -like that before?" - -"I cannot say that I have." - -"The lady could not move her bed. It must always be in the same -relative position to the ventilator and to the rope--or so we may -call it, since it was clearly never meant for a bell-pull." - -"Holmes," I cried, "I seem to see dimly what you are hinting at. -We are only just in time to prevent some subtle and horrible -crime." - -"Subtle enough and horrible enough. When a doctor does go wrong -he is the first of criminals. He has nerve and he has knowledge. -Palmer and Pritchard were among the heads of their profession. -This man strikes even deeper, but I think, Watson, that we shall -be able to strike deeper still. But we shall have horrors enough -before the night is over; for goodness' sake let us have a quiet -pipe and turn our minds for a few hours to something more -cheerful." - - -About nine o'clock the light among the trees was extinguished, -and all was dark in the direction of the Manor House. Two hours -passed slowly away, and then, suddenly, just at the stroke of -eleven, a single bright light shone out right in front of us. - -"That is our signal," said Holmes, springing to his feet; "it -comes from the middle window." - -As we passed out he exchanged a few words with the landlord, -explaining that we were going on a late visit to an acquaintance, -and that it was possible that we might spend the night there. A -moment later we were out on the dark road, a chill wind blowing -in our faces, and one yellow light twinkling in front of us -through the gloom to guide us on our sombre errand. - -There was little difficulty in entering the grounds, for -unrepaired breaches gaped in the old park wall. Making our way -among the trees, we reached the lawn, crossed it, and were about -to enter through the window when out from a clump of laurel -bushes there darted what seemed to be a hideous and distorted -child, who threw itself upon the grass with writhing limbs and -then ran swiftly across the lawn into the darkness. - -"My God!" I whispered; "did you see it?" - -Holmes was for the moment as startled as I. His hand closed like -a vice upon my wrist in his agitation. Then he broke into a low -laugh and put his lips to my ear. - -"It is a nice household," he murmured. "That is the baboon." - -I had forgotten the strange pets which the doctor affected. There -was a cheetah, too; perhaps we might find it upon our shoulders -at any moment. I confess that I felt easier in my mind when, -after following Holmes' example and slipping off my shoes, I -found myself inside the bedroom. My companion noiselessly closed -the shutters, moved the lamp onto the table, and cast his eyes -round the room. All was as we had seen it in the daytime. Then -creeping up to me and making a trumpet of his hand, he whispered -into my ear again so gently that it was all that I could do to -distinguish the words: - -"The least sound would be fatal to our plans." - -I nodded to show that I had heard. - -"We must sit without light. He would see it through the -ventilator." - -I nodded again. - -"Do not go asleep; your very life may depend upon it. Have your -pistol ready in case we should need it. I will sit on the side of -the bed, and you in that chair." - -I took out my revolver and laid it on the corner of the table. - -Holmes had brought up a long thin cane, and this he placed upon -the bed beside him. By it he laid the box of matches and the -stump of a candle. Then he turned down the lamp, and we were left -in darkness. - -How shall I ever forget that dreadful vigil? I could not hear a -sound, not even the drawing of a breath, and yet I knew that my -companion sat open-eyed, within a few feet of me, in the same -state of nervous tension in which I was myself. The shutters cut -off the least ray of light, and we waited in absolute darkness. - -From outside came the occasional cry of a night-bird, and once at -our very window a long drawn catlike whine, which told us that -the cheetah was indeed at liberty. Far away we could hear the -deep tones of the parish clock, which boomed out every quarter of -an hour. How long they seemed, those quarters! Twelve struck, and -one and two and three, and still we sat waiting silently for -whatever might befall. - -Suddenly there was the momentary gleam of a light up in the -direction of the ventilator, which vanished immediately, but was -succeeded by a strong smell of burning oil and heated metal. -Someone in the next room had lit a dark-lantern. I heard a gentle -sound of movement, and then all was silent once more, though the -smell grew stronger. For half an hour I sat with straining ears. -Then suddenly another sound became audible--a very gentle, -soothing sound, like that of a small jet of steam escaping -continually from a kettle. The instant that we heard it, Holmes -sprang from the bed, struck a match, and lashed furiously with -his cane at the bell-pull. - -"You see it, Watson?" he yelled. "You see it?" - -But I saw nothing. At the moment when Holmes struck the light I -heard a low, clear whistle, but the sudden glare flashing into my -weary eyes made it impossible for me to tell what it was at which -my friend lashed so savagely. I could, however, see that his face -was deadly pale and filled with horror and loathing. He had -ceased to strike and was gazing up at the ventilator when -suddenly there broke from the silence of the night the most -horrible cry to which I have ever listened. It swelled up louder -and louder, a hoarse yell of pain and fear and anger all mingled -in the one dreadful shriek. They say that away down in the -village, and even in the distant parsonage, that cry raised the -sleepers from their beds. It struck cold to our hearts, and I -stood gazing at Holmes, and he at me, until the last echoes of it -had died away into the silence from which it rose. - -"What can it mean?" I gasped. - -"It means that it is all over," Holmes answered. "And perhaps, -after all, it is for the best. Take your pistol, and we will -enter Dr. Roylott's room." - -With a grave face he lit the lamp and led the way down the -corridor. Twice he struck at the chamber door without any reply -from within. Then he turned the handle and entered, I at his -heels, with the cocked pistol in my hand. - -It was a singular sight which met our eyes. On the table stood a -dark-lantern with the shutter half open, throwing a brilliant -beam of light upon the iron safe, the door of which was ajar. -Beside this table, on the wooden chair, sat Dr. Grimesby Roylott -clad in a long grey dressing-gown, his bare ankles protruding -beneath, and his feet thrust into red heelless Turkish slippers. -Across his lap lay the short stock with the long lash which we -had noticed during the day. His chin was cocked upward and his -eyes were fixed in a dreadful, rigid stare at the corner of the -ceiling. Round his brow he had a peculiar yellow band, with -brownish speckles, which seemed to be bound tightly round his -head. As we entered he made neither sound nor motion. - -"The band! the speckled band!" whispered Holmes. - -I took a step forward. In an instant his strange headgear began -to move, and there reared itself from among his hair the squat -diamond-shaped head and puffed neck of a loathsome serpent. - -"It is a swamp adder!" cried Holmes; "the deadliest snake in -India. He has died within ten seconds of being bitten. Violence -does, in truth, recoil upon the violent, and the schemer falls -into the pit which he digs for another. Let us thrust this -creature back into its den, and we can then remove Miss Stoner to -some place of shelter and let the county police know what has -happened." - -As he spoke he drew the dog-whip swiftly from the dead man's lap, -and throwing the noose round the reptile's neck he drew it from -its horrid perch and, carrying it at arm's length, threw it into -the iron safe, which he closed upon it. - -Such are the true facts of the death of Dr. Grimesby Roylott, of -Stoke Moran. It is not necessary that I should prolong a -narrative which has already run to too great a length by telling -how we broke the sad news to the terrified girl, how we conveyed -her by the morning train to the care of her good aunt at Harrow, -of how the slow process of official inquiry came to the -conclusion that the doctor met his fate while indiscreetly -playing with a dangerous pet. The little which I had yet to learn -of the case was told me by Sherlock Holmes as we travelled back -next day. - -"I had," said he, "come to an entirely erroneous conclusion which -shows, my dear Watson, how dangerous it always is to reason from -insufficient data. The presence of the gipsies, and the use of -the word 'band,' which was used by the poor girl, no doubt, to -explain the appearance which she had caught a hurried glimpse of -by the light of her match, were sufficient to put me upon an -entirely wrong scent. I can only claim the merit that I instantly -reconsidered my position when, however, it became clear to me -that whatever danger threatened an occupant of the room could not -come either from the window or the door. My attention was -speedily drawn, as I have already remarked to you, to this -ventilator, and to the bell-rope which hung down to the bed. The -discovery that this was a dummy, and that the bed was clamped to -the floor, instantly gave rise to the suspicion that the rope was -there as a bridge for something passing through the hole and -coming to the bed. The idea of a snake instantly occurred to me, -and when I coupled it with my knowledge that the doctor was -furnished with a supply of creatures from India, I felt that I -was probably on the right track. The idea of using a form of -poison which could not possibly be discovered by any chemical -test was just such a one as would occur to a clever and ruthless -man who had had an Eastern training. The rapidity with which such -a poison would take effect would also, from his point of view, be -an advantage. It would be a sharp-eyed coroner, indeed, who could -distinguish the two little dark punctures which would show where -the poison fangs had done their work. Then I thought of the -whistle. Of course he must recall the snake before the morning -light revealed it to the victim. He had trained it, probably by -the use of the milk which we saw, to return to him when summoned. -He would put it through this ventilator at the hour that he -thought best, with the certainty that it would crawl down the -rope and land on the bed. It might or might not bite the -occupant, perhaps she might escape every night for a week, but -sooner or later she must fall a victim. - -"I had come to these conclusions before ever I had entered his -room. An inspection of his chair showed me that he had been in -the habit of standing on it, which of course would be necessary -in order that he should reach the ventilator. The sight of the -safe, the saucer of milk, and the loop of whipcord were enough to -finally dispel any doubts which may have remained. The metallic -clang heard by Miss Stoner was obviously caused by her stepfather -hastily closing the door of his safe upon its terrible occupant. -Having once made up my mind, you know the steps which I took in -order to put the matter to the proof. I heard the creature hiss -as I have no doubt that you did also, and I instantly lit the -light and attacked it." - -"With the result of driving it through the ventilator." - -"And also with the result of causing it to turn upon its master -at the other side. Some of the blows of my cane came home and -roused its snakish temper, so that it flew upon the first person -it saw. In this way I am no doubt indirectly responsible for Dr. -Grimesby Roylott's death, and I cannot say that it is likely to -weigh very heavily upon my conscience." - - - -IX. THE ADVENTURE OF THE ENGINEER'S THUMB - -Of all the problems which have been submitted to my friend, Mr. -Sherlock Holmes, for solution during the years of our intimacy, -there were only two which I was the means of introducing to his -notice--that of Mr. Hatherley's thumb, and that of Colonel -Warburton's madness. Of these the latter may have afforded a -finer field for an acute and original observer, but the other was -so strange in its inception and so dramatic in its details that -it may be the more worthy of being placed upon record, even if it -gave my friend fewer openings for those deductive methods of -reasoning by which he achieved such remarkable results. The story -has, I believe, been told more than once in the newspapers, but, -like all such narratives, its effect is much less striking when -set forth en bloc in a single half-column of print than when the -facts slowly evolve before your own eyes, and the mystery clears -gradually away as each new discovery furnishes a step which leads -on to the complete truth. At the time the circumstances made a -deep impression upon me, and the lapse of two years has hardly -served to weaken the effect. - -It was in the summer of '89, not long after my marriage, that the -events occurred which I am now about to summarise. I had returned -to civil practice and had finally abandoned Holmes in his Baker -Street rooms, although I continually visited him and occasionally -even persuaded him to forgo his Bohemian habits so far as to come -and visit us. My practice had steadily increased, and as I -happened to live at no very great distance from Paddington -Station, I got a few patients from among the officials. One of -these, whom I had cured of a painful and lingering disease, was -never weary of advertising my virtues and of endeavouring to send -me on every sufferer over whom he might have any influence. - -One morning, at a little before seven o'clock, I was awakened by -the maid tapping at the door to announce that two men had come -from Paddington and were waiting in the consulting-room. I -dressed hurriedly, for I knew by experience that railway cases -were seldom trivial, and hastened downstairs. As I descended, my -old ally, the guard, came out of the room and closed the door -tightly behind him. - -"I've got him here," he whispered, jerking his thumb over his -shoulder; "he's all right." - -"What is it, then?" I asked, for his manner suggested that it was -some strange creature which he had caged up in my room. - -"It's a new patient," he whispered. "I thought I'd bring him -round myself; then he couldn't slip away. There he is, all safe -and sound. I must go now, Doctor; I have my dooties, just the -same as you." And off he went, this trusty tout, without even -giving me time to thank him. - -I entered my consulting-room and found a gentleman seated by the -table. He was quietly dressed in a suit of heather tweed with a -soft cloth cap which he had laid down upon my books. Round one of -his hands he had a handkerchief wrapped, which was mottled all -over with bloodstains. He was young, not more than -five-and-twenty, I should say, with a strong, masculine face; but -he was exceedingly pale and gave me the impression of a man who -was suffering from some strong agitation, which it took all his -strength of mind to control. - -"I am sorry to knock you up so early, Doctor," said he, "but I -have had a very serious accident during the night. I came in by -train this morning, and on inquiring at Paddington as to where I -might find a doctor, a worthy fellow very kindly escorted me -here. I gave the maid a card, but I see that she has left it upon -the side-table." - -I took it up and glanced at it. "Mr. Victor Hatherley, hydraulic -engineer, 16A, Victoria Street (3rd floor)." That was the name, -style, and abode of my morning visitor. "I regret that I have -kept you waiting," said I, sitting down in my library-chair. "You -are fresh from a night journey, I understand, which is in itself -a monotonous occupation." - -"Oh, my night could not be called monotonous," said he, and -laughed. He laughed very heartily, with a high, ringing note, -leaning back in his chair and shaking his sides. All my medical -instincts rose up against that laugh. - -"Stop it!" I cried; "pull yourself together!" and I poured out -some water from a caraffe. - -It was useless, however. He was off in one of those hysterical -outbursts which come upon a strong nature when some great crisis -is over and gone. Presently he came to himself once more, very -weary and pale-looking. - -"I have been making a fool of myself," he gasped. - -"Not at all. Drink this." I dashed some brandy into the water, -and the colour began to come back to his bloodless cheeks. - -"That's better!" said he. "And now, Doctor, perhaps you would -kindly attend to my thumb, or rather to the place where my thumb -used to be." - -He unwound the handkerchief and held out his hand. It gave even -my hardened nerves a shudder to look at it. There were four -protruding fingers and a horrid red, spongy surface where the -thumb should have been. It had been hacked or torn right out from -the roots. - -"Good heavens!" I cried, "this is a terrible injury. It must have -bled considerably." - -"Yes, it did. I fainted when it was done, and I think that I must -have been senseless for a long time. When I came to I found that -it was still bleeding, so I tied one end of my handkerchief very -tightly round the wrist and braced it up with a twig." - -"Excellent! You should have been a surgeon." - -"It is a question of hydraulics, you see, and came within my own -province." - -"This has been done," said I, examining the wound, "by a very -heavy and sharp instrument." - -"A thing like a cleaver," said he. - -"An accident, I presume?" - -"By no means." - -"What! a murderous attack?" - -"Very murderous indeed." - -"You horrify me." - -I sponged the wound, cleaned it, dressed it, and finally covered -it over with cotton wadding and carbolised bandages. He lay back -without wincing, though he bit his lip from time to time. - -"How is that?" I asked when I had finished. - -"Capital! Between your brandy and your bandage, I feel a new man. -I was very weak, but I have had a good deal to go through." - -"Perhaps you had better not speak of the matter. It is evidently -trying to your nerves." - -"Oh, no, not now. I shall have to tell my tale to the police; -but, between ourselves, if it were not for the convincing -evidence of this wound of mine, I should be surprised if they -believed my statement, for it is a very extraordinary one, and I -have not much in the way of proof with which to back it up; and, -even if they believe me, the clues which I can give them are so -vague that it is a question whether justice will be done." - -"Ha!" cried I, "if it is anything in the nature of a problem -which you desire to see solved, I should strongly recommend you -to come to my friend, Mr. Sherlock Holmes, before you go to the -official police." - -"Oh, I have heard of that fellow," answered my visitor, "and I -should be very glad if he would take the matter up, though of -course I must use the official police as well. Would you give me -an introduction to him?" - -"I'll do better. I'll take you round to him myself." - -"I should be immensely obliged to you." - -"We'll call a cab and go together. We shall just be in time to -have a little breakfast with him. Do you feel equal to it?" - -"Yes; I shall not feel easy until I have told my story." - -"Then my servant will call a cab, and I shall be with you in an -instant." I rushed upstairs, explained the matter shortly to my -wife, and in five minutes was inside a hansom, driving with my -new acquaintance to Baker Street. - -Sherlock Holmes was, as I expected, lounging about his -sitting-room in his dressing-gown, reading the agony column of The -Times and smoking his before-breakfast pipe, which was composed -of all the plugs and dottles left from his smokes of the day -before, all carefully dried and collected on the corner of the -mantelpiece. He received us in his quietly genial fashion, -ordered fresh rashers and eggs, and joined us in a hearty meal. -When it was concluded he settled our new acquaintance upon the -sofa, placed a pillow beneath his head, and laid a glass of -brandy and water within his reach. - -"It is easy to see that your experience has been no common one, -Mr. Hatherley," said he. "Pray, lie down there and make yourself -absolutely at home. Tell us what you can, but stop when you are -tired and keep up your strength with a little stimulant." - -"Thank you," said my patient, "but I have felt another man since -the doctor bandaged me, and I think that your breakfast has -completed the cure. I shall take up as little of your valuable -time as possible, so I shall start at once upon my peculiar -experiences." - -Holmes sat in his big armchair with the weary, heavy-lidded -expression which veiled his keen and eager nature, while I sat -opposite to him, and we listened in silence to the strange story -which our visitor detailed to us. - -"You must know," said he, "that I am an orphan and a bachelor, -residing alone in lodgings in London. By profession I am a -hydraulic engineer, and I have had considerable experience of my -work during the seven years that I was apprenticed to Venner & -Matheson, the well-known firm, of Greenwich. Two years ago, -having served my time, and having also come into a fair sum of -money through my poor father's death, I determined to start in -business for myself and took professional chambers in Victoria -Street. - -"I suppose that everyone finds his first independent start in -business a dreary experience. To me it has been exceptionally so. -During two years I have had three consultations and one small -job, and that is absolutely all that my profession has brought -me. My gross takings amount to 27 pounds 10s. Every day, from -nine in the morning until four in the afternoon, I waited in my -little den, until at last my heart began to sink, and I came to -believe that I should never have any practice at all. - -"Yesterday, however, just as I was thinking of leaving the -office, my clerk entered to say there was a gentleman waiting who -wished to see me upon business. He brought up a card, too, with -the name of 'Colonel Lysander Stark' engraved upon it. Close at -his heels came the colonel himself, a man rather over the middle -size, but of an exceeding thinness. I do not think that I have -ever seen so thin a man. His whole face sharpened away into nose -and chin, and the skin of his cheeks was drawn quite tense over -his outstanding bones. Yet this emaciation seemed to be his -natural habit, and due to no disease, for his eye was bright, his -step brisk, and his bearing assured. He was plainly but neatly -dressed, and his age, I should judge, would be nearer forty than -thirty. - -"'Mr. Hatherley?' said he, with something of a German accent. -'You have been recommended to me, Mr. Hatherley, as being a man -who is not only proficient in his profession but is also discreet -and capable of preserving a secret.' - -"I bowed, feeling as flattered as any young man would at such an -address. 'May I ask who it was who gave me so good a character?' - -"'Well, perhaps it is better that I should not tell you that just -at this moment. I have it from the same source that you are both -an orphan and a bachelor and are residing alone in London.' - -"'That is quite correct,' I answered; 'but you will excuse me if -I say that I cannot see how all this bears upon my professional -qualifications. I understand that it was on a professional matter -that you wished to speak to me?' - -"'Undoubtedly so. But you will find that all I say is really to -the point. I have a professional commission for you, but absolute -secrecy is quite essential--absolute secrecy, you understand, and -of course we may expect that more from a man who is alone than -from one who lives in the bosom of his family.' - -"'If I promise to keep a secret,' said I, 'you may absolutely -depend upon my doing so.' - -"He looked very hard at me as I spoke, and it seemed to me that I -had never seen so suspicious and questioning an eye. - -"'Do you promise, then?' said he at last. - -"'Yes, I promise.' - -"'Absolute and complete silence before, during, and after? No -reference to the matter at all, either in word or writing?' - -"'I have already given you my word.' - -"'Very good.' He suddenly sprang up, and darting like lightning -across the room he flung open the door. The passage outside was -empty. - -"'That's all right,' said he, coming back. 'I know that clerks are -sometimes curious as to their master's affairs. Now we can talk -in safety.' He drew up his chair very close to mine and began to -stare at me again with the same questioning and thoughtful look. - -"A feeling of repulsion, and of something akin to fear had begun -to rise within me at the strange antics of this fleshless man. -Even my dread of losing a client could not restrain me from -showing my impatience. - -"'I beg that you will state your business, sir,' said I; 'my time -is of value.' Heaven forgive me for that last sentence, but the -words came to my lips. - -"'How would fifty guineas for a night's work suit you?' he asked. - -"'Most admirably.' - -"'I say a night's work, but an hour's would be nearer the mark. I -simply want your opinion about a hydraulic stamping machine which -has got out of gear. If you show us what is wrong we shall soon -set it right ourselves. What do you think of such a commission as -that?' - -"'The work appears to be light and the pay munificent.' - -"'Precisely so. We shall want you to come to-night by the last -train.' - -"'Where to?' - -"'To Eyford, in Berkshire. It is a little place near the borders -of Oxfordshire, and within seven miles of Reading. There is a -train from Paddington which would bring you there at about -11:15.' - -"'Very good.' - -"'I shall come down in a carriage to meet you.' - -"'There is a drive, then?' - -"'Yes, our little place is quite out in the country. It is a good -seven miles from Eyford Station.' - -"'Then we can hardly get there before midnight. I suppose there -would be no chance of a train back. I should be compelled to stop -the night.' - -"'Yes, we could easily give you a shake-down.' - -"'That is very awkward. Could I not come at some more convenient -hour?' - -"'We have judged it best that you should come late. It is to -recompense you for any inconvenience that we are paying to you, a -young and unknown man, a fee which would buy an opinion from the -very heads of your profession. Still, of course, if you would -like to draw out of the business, there is plenty of time to do -so.' - -"I thought of the fifty guineas, and of how very useful they -would be to me. 'Not at all,' said I, 'I shall be very happy to -accommodate myself to your wishes. I should like, however, to -understand a little more clearly what it is that you wish me to -do.' - -"'Quite so. It is very natural that the pledge of secrecy which -we have exacted from you should have aroused your curiosity. I -have no wish to commit you to anything without your having it all -laid before you. I suppose that we are absolutely safe from -eavesdroppers?' - -"'Entirely.' - -"'Then the matter stands thus. You are probably aware that -fuller's-earth is a valuable product, and that it is only found -in one or two places in England?' - -"'I have heard so.' - -"'Some little time ago I bought a small place--a very small -place--within ten miles of Reading. I was fortunate enough to -discover that there was a deposit of fuller's-earth in one of my -fields. On examining it, however, I found that this deposit was a -comparatively small one, and that it formed a link between two -very much larger ones upon the right and left--both of them, -however, in the grounds of my neighbours. These good people were -absolutely ignorant that their land contained that which was -quite as valuable as a gold-mine. Naturally, it was to my -interest to buy their land before they discovered its true value, -but unfortunately I had no capital by which I could do this. I -took a few of my friends into the secret, however, and they -suggested that we should quietly and secretly work our own little -deposit and that in this way we should earn the money which would -enable us to buy the neighbouring fields. This we have now been -doing for some time, and in order to help us in our operations we -erected a hydraulic press. This press, as I have already -explained, has got out of order, and we wish your advice upon the -subject. We guard our secret very jealously, however, and if it -once became known that we had hydraulic engineers coming to our -little house, it would soon rouse inquiry, and then, if the facts -came out, it would be good-bye to any chance of getting these -fields and carrying out our plans. That is why I have made you -promise me that you will not tell a human being that you are -going to Eyford to-night. I hope that I make it all plain?' - -"'I quite follow you,' said I. 'The only point which I could not -quite understand was what use you could make of a hydraulic press -in excavating fuller's-earth, which, as I understand, is dug out -like gravel from a pit.' - -"'Ah!' said he carelessly, 'we have our own process. We compress -the earth into bricks, so as to remove them without revealing -what they are. But that is a mere detail. I have taken you fully -into my confidence now, Mr. Hatherley, and I have shown you how I -trust you.' He rose as he spoke. 'I shall expect you, then, at -Eyford at 11:15.' - -"'I shall certainly be there.' - -"'And not a word to a soul.' He looked at me with a last long, -questioning gaze, and then, pressing my hand in a cold, dank -grasp, he hurried from the room. - -"Well, when I came to think it all over in cool blood I was very -much astonished, as you may both think, at this sudden commission -which had been intrusted to me. On the one hand, of course, I was -glad, for the fee was at least tenfold what I should have asked -had I set a price upon my own services, and it was possible that -this order might lead to other ones. On the other hand, the face -and manner of my patron had made an unpleasant impression upon -me, and I could not think that his explanation of the -fuller's-earth was sufficient to explain the necessity for my -coming at midnight, and his extreme anxiety lest I should tell -anyone of my errand. However, I threw all fears to the winds, ate -a hearty supper, drove to Paddington, and started off, having -obeyed to the letter the injunction as to holding my tongue. - -"At Reading I had to change not only my carriage but my station. -However, I was in time for the last train to Eyford, and I -reached the little dim-lit station after eleven o'clock. I was the -only passenger who got out there, and there was no one upon the -platform save a single sleepy porter with a lantern. As I passed -out through the wicket gate, however, I found my acquaintance of -the morning waiting in the shadow upon the other side. Without a -word he grasped my arm and hurried me into a carriage, the door -of which was standing open. He drew up the windows on either -side, tapped on the wood-work, and away we went as fast as the -horse could go." - -"One horse?" interjected Holmes. - -"Yes, only one." - -"Did you observe the colour?" - -"Yes, I saw it by the side-lights when I was stepping into the -carriage. It was a chestnut." - -"Tired-looking or fresh?" - -"Oh, fresh and glossy." - -"Thank you. I am sorry to have interrupted you. Pray continue -your most interesting statement." - -"Away we went then, and we drove for at least an hour. Colonel -Lysander Stark had said that it was only seven miles, but I -should think, from the rate that we seemed to go, and from the -time that we took, that it must have been nearer twelve. He sat -at my side in silence all the time, and I was aware, more than -once when I glanced in his direction, that he was looking at me -with great intensity. The country roads seem to be not very good -in that part of the world, for we lurched and jolted terribly. I -tried to look out of the windows to see something of where we -were, but they were made of frosted glass, and I could make out -nothing save the occasional bright blur of a passing light. Now -and then I hazarded some remark to break the monotony of the -journey, but the colonel answered only in monosyllables, and the -conversation soon flagged. At last, however, the bumping of the -road was exchanged for the crisp smoothness of a gravel-drive, -and the carriage came to a stand. Colonel Lysander Stark sprang -out, and, as I followed after him, pulled me swiftly into a porch -which gaped in front of us. We stepped, as it were, right out of -the carriage and into the hall, so that I failed to catch the -most fleeting glance of the front of the house. The instant that -I had crossed the threshold the door slammed heavily behind us, -and I heard faintly the rattle of the wheels as the carriage -drove away. - -"It was pitch dark inside the house, and the colonel fumbled -about looking for matches and muttering under his breath. -Suddenly a door opened at the other end of the passage, and a -long, golden bar of light shot out in our direction. It grew -broader, and a woman appeared with a lamp in her hand, which she -held above her head, pushing her face forward and peering at us. -I could see that she was pretty, and from the gloss with which -the light shone upon her dark dress I knew that it was a rich -material. She spoke a few words in a foreign tongue in a tone as -though asking a question, and when my companion answered in a -gruff monosyllable she gave such a start that the lamp nearly -fell from her hand. Colonel Stark went up to her, whispered -something in her ear, and then, pushing her back into the room -from whence she had come, he walked towards me again with the -lamp in his hand. - -"'Perhaps you will have the kindness to wait in this room for a -few minutes,' said he, throwing open another door. It was a -quiet, little, plainly furnished room, with a round table in the -centre, on which several German books were scattered. Colonel -Stark laid down the lamp on the top of a harmonium beside the -door. 'I shall not keep you waiting an instant,' said he, and -vanished into the darkness. - -"I glanced at the books upon the table, and in spite of my -ignorance of German I could see that two of them were treatises -on science, the others being volumes of poetry. Then I walked -across to the window, hoping that I might catch some glimpse of -the country-side, but an oak shutter, heavily barred, was folded -across it. It was a wonderfully silent house. There was an old -clock ticking loudly somewhere in the passage, but otherwise -everything was deadly still. A vague feeling of uneasiness began -to steal over me. Who were these German people, and what were -they doing living in this strange, out-of-the-way place? And -where was the place? I was ten miles or so from Eyford, that was -all I knew, but whether north, south, east, or west I had no -idea. For that matter, Reading, and possibly other large towns, -were within that radius, so the place might not be so secluded, -after all. Yet it was quite certain, from the absolute stillness, -that we were in the country. I paced up and down the room, -humming a tune under my breath to keep up my spirits and feeling -that I was thoroughly earning my fifty-guinea fee. - -"Suddenly, without any preliminary sound in the midst of the -utter stillness, the door of my room swung slowly open. The woman -was standing in the aperture, the darkness of the hall behind -her, the yellow light from my lamp beating upon her eager and -beautiful face. I could see at a glance that she was sick with -fear, and the sight sent a chill to my own heart. She held up one -shaking finger to warn me to be silent, and she shot a few -whispered words of broken English at me, her eyes glancing back, -like those of a frightened horse, into the gloom behind her. - -"'I would go,' said she, trying hard, as it seemed to me, to -speak calmly; 'I would go. I should not stay here. There is no -good for you to do.' - -"'But, madam,' said I, 'I have not yet done what I came for. I -cannot possibly leave until I have seen the machine.' - -"'It is not worth your while to wait,' she went on. 'You can pass -through the door; no one hinders.' And then, seeing that I smiled -and shook my head, she suddenly threw aside her constraint and -made a step forward, with her hands wrung together. 'For the love -of Heaven!' she whispered, 'get away from here before it is too -late!' - -"But I am somewhat headstrong by nature, and the more ready to -engage in an affair when there is some obstacle in the way. I -thought of my fifty-guinea fee, of my wearisome journey, and of -the unpleasant night which seemed to be before me. Was it all to -go for nothing? Why should I slink away without having carried -out my commission, and without the payment which was my due? This -woman might, for all I knew, be a monomaniac. With a stout -bearing, therefore, though her manner had shaken me more than I -cared to confess, I still shook my head and declared my intention -of remaining where I was. She was about to renew her entreaties -when a door slammed overhead, and the sound of several footsteps -was heard upon the stairs. She listened for an instant, threw up -her hands with a despairing gesture, and vanished as suddenly and -as noiselessly as she had come. - -"The newcomers were Colonel Lysander Stark and a short thick man -with a chinchilla beard growing out of the creases of his double -chin, who was introduced to me as Mr. Ferguson. - -"'This is my secretary and manager,' said the colonel. 'By the -way, I was under the impression that I left this door shut just -now. I fear that you have felt the draught.' - -"'On the contrary,' said I, 'I opened the door myself because I -felt the room to be a little close.' - -"He shot one of his suspicious looks at me. 'Perhaps we had -better proceed to business, then,' said he. 'Mr. Ferguson and I -will take you up to see the machine.' - -"'I had better put my hat on, I suppose.' - -"'Oh, no, it is in the house.' - -"'What, you dig fuller's-earth in the house?' - -"'No, no. This is only where we compress it. But never mind that. -All we wish you to do is to examine the machine and to let us -know what is wrong with it.' - -"We went upstairs together, the colonel first with the lamp, the -fat manager and I behind him. It was a labyrinth of an old house, -with corridors, passages, narrow winding staircases, and little -low doors, the thresholds of which were hollowed out by the -generations who had crossed them. There were no carpets and no -signs of any furniture above the ground floor, while the plaster -was peeling off the walls, and the damp was breaking through in -green, unhealthy blotches. I tried to put on as unconcerned an -air as possible, but I had not forgotten the warnings of the -lady, even though I disregarded them, and I kept a keen eye upon -my two companions. Ferguson appeared to be a morose and silent -man, but I could see from the little that he said that he was at -least a fellow-countryman. - -"Colonel Lysander Stark stopped at last before a low door, which -he unlocked. Within was a small, square room, in which the three -of us could hardly get at one time. Ferguson remained outside, -and the colonel ushered me in. - -"'We are now,' said he, 'actually within the hydraulic press, and -it would be a particularly unpleasant thing for us if anyone were -to turn it on. The ceiling of this small chamber is really the -end of the descending piston, and it comes down with the force of -many tons upon this metal floor. There are small lateral columns -of water outside which receive the force, and which transmit and -multiply it in the manner which is familiar to you. The machine -goes readily enough, but there is some stiffness in the working -of it, and it has lost a little of its force. Perhaps you will -have the goodness to look it over and to show us how we can set -it right.' - -"I took the lamp from him, and I examined the machine very -thoroughly. It was indeed a gigantic one, and capable of -exercising enormous pressure. When I passed outside, however, and -pressed down the levers which controlled it, I knew at once by -the whishing sound that there was a slight leakage, which allowed -a regurgitation of water through one of the side cylinders. An -examination showed that one of the india-rubber bands which was -round the head of a driving-rod had shrunk so as not quite to -fill the socket along which it worked. This was clearly the cause -of the loss of power, and I pointed it out to my companions, who -followed my remarks very carefully and asked several practical -questions as to how they should proceed to set it right. When I -had made it clear to them, I returned to the main chamber of the -machine and took a good look at it to satisfy my own curiosity. -It was obvious at a glance that the story of the fuller's-earth -was the merest fabrication, for it would be absurd to suppose -that so powerful an engine could be designed for so inadequate a -purpose. The walls were of wood, but the floor consisted of a -large iron trough, and when I came to examine it I could see a -crust of metallic deposit all over it. I had stooped and was -scraping at this to see exactly what it was when I heard a -muttered exclamation in German and saw the cadaverous face of the -colonel looking down at me. - -"'What are you doing there?' he asked. - -"I felt angry at having been tricked by so elaborate a story as -that which he had told me. 'I was admiring your fuller's-earth,' -said I; 'I think that I should be better able to advise you as to -your machine if I knew what the exact purpose was for which it -was used.' - -"The instant that I uttered the words I regretted the rashness of -my speech. His face set hard, and a baleful light sprang up in -his grey eyes. - -"'Very well,' said he, 'you shall know all about the machine.' He -took a step backward, slammed the little door, and turned the key -in the lock. I rushed towards it and pulled at the handle, but it -was quite secure, and did not give in the least to my kicks and -shoves. 'Hullo!' I yelled. 'Hullo! Colonel! Let me out!' - -"And then suddenly in the silence I heard a sound which sent my -heart into my mouth. It was the clank of the levers and the swish -of the leaking cylinder. He had set the engine at work. The lamp -still stood upon the floor where I had placed it when examining -the trough. By its light I saw that the black ceiling was coming -down upon me, slowly, jerkily, but, as none knew better than -myself, with a force which must within a minute grind me to a -shapeless pulp. I threw myself, screaming, against the door, and -dragged with my nails at the lock. I implored the colonel to let -me out, but the remorseless clanking of the levers drowned my -cries. The ceiling was only a foot or two above my head, and with -my hand upraised I could feel its hard, rough surface. Then it -flashed through my mind that the pain of my death would depend -very much upon the position in which I met it. If I lay on my -face the weight would come upon my spine, and I shuddered to -think of that dreadful snap. Easier the other way, perhaps; and -yet, had I the nerve to lie and look up at that deadly black -shadow wavering down upon me? Already I was unable to stand -erect, when my eye caught something which brought a gush of hope -back to my heart. - -"I have said that though the floor and ceiling were of iron, the -walls were of wood. As I gave a last hurried glance around, I saw -a thin line of yellow light between two of the boards, which -broadened and broadened as a small panel was pushed backward. For -an instant I could hardly believe that here was indeed a door -which led away from death. The next instant I threw myself -through, and lay half-fainting upon the other side. The panel had -closed again behind me, but the crash of the lamp, and a few -moments afterwards the clang of the two slabs of metal, told me -how narrow had been my escape. - -"I was recalled to myself by a frantic plucking at my wrist, and -I found myself lying upon the stone floor of a narrow corridor, -while a woman bent over me and tugged at me with her left hand, -while she held a candle in her right. It was the same good friend -whose warning I had so foolishly rejected. - -"'Come! come!' she cried breathlessly. 'They will be here in a -moment. They will see that you are not there. Oh, do not waste -the so-precious time, but come!' - -"This time, at least, I did not scorn her advice. I staggered to -my feet and ran with her along the corridor and down a winding -stair. The latter led to another broad passage, and just as we -reached it we heard the sound of running feet and the shouting of -two voices, one answering the other from the floor on which we -were and from the one beneath. My guide stopped and looked about -her like one who is at her wit's end. Then she threw open a door -which led into a bedroom, through the window of which the moon -was shining brightly. - -"'It is your only chance,' said she. 'It is high, but it may be -that you can jump it.' - -"As she spoke a light sprang into view at the further end of the -passage, and I saw the lean figure of Colonel Lysander Stark -rushing forward with a lantern in one hand and a weapon like a -butcher's cleaver in the other. I rushed across the bedroom, -flung open the window, and looked out. How quiet and sweet and -wholesome the garden looked in the moonlight, and it could not be -more than thirty feet down. I clambered out upon the sill, but I -hesitated to jump until I should have heard what passed between -my saviour and the ruffian who pursued me. If she were ill-used, -then at any risks I was determined to go back to her assistance. -The thought had hardly flashed through my mind before he was at -the door, pushing his way past her; but she threw her arms round -him and tried to hold him back. - -"'Fritz! Fritz!' she cried in English, 'remember your promise -after the last time. You said it should not be again. He will be -silent! Oh, he will be silent!' - -"'You are mad, Elise!' he shouted, struggling to break away from -her. 'You will be the ruin of us. He has seen too much. Let me -pass, I say!' He dashed her to one side, and, rushing to the -window, cut at me with his heavy weapon. I had let myself go, and -was hanging by the hands to the sill, when his blow fell. I was -conscious of a dull pain, my grip loosened, and I fell into the -garden below. - -"I was shaken but not hurt by the fall; so I picked myself up and -rushed off among the bushes as hard as I could run, for I -understood that I was far from being out of danger yet. Suddenly, -however, as I ran, a deadly dizziness and sickness came over me. -I glanced down at my hand, which was throbbing painfully, and -then, for the first time, saw that my thumb had been cut off and -that the blood was pouring from my wound. I endeavoured to tie my -handkerchief round it, but there came a sudden buzzing in my -ears, and next moment I fell in a dead faint among the -rose-bushes. - -"How long I remained unconscious I cannot tell. It must have been -a very long time, for the moon had sunk, and a bright morning was -breaking when I came to myself. My clothes were all sodden with -dew, and my coat-sleeve was drenched with blood from my wounded -thumb. The smarting of it recalled in an instant all the -particulars of my night's adventure, and I sprang to my feet with -the feeling that I might hardly yet be safe from my pursuers. But -to my astonishment, when I came to look round me, neither house -nor garden were to be seen. I had been lying in an angle of the -hedge close by the highroad, and just a little lower down was a -long building, which proved, upon my approaching it, to be the -very station at which I had arrived upon the previous night. Were -it not for the ugly wound upon my hand, all that had passed -during those dreadful hours might have been an evil dream. - -"Half dazed, I went into the station and asked about the morning -train. There would be one to Reading in less than an hour. The -same porter was on duty, I found, as had been there when I -arrived. I inquired of him whether he had ever heard of Colonel -Lysander Stark. The name was strange to him. Had he observed a -carriage the night before waiting for me? No, he had not. Was -there a police-station anywhere near? There was one about three -miles off. - -"It was too far for me to go, weak and ill as I was. I determined -to wait until I got back to town before telling my story to the -police. It was a little past six when I arrived, so I went first -to have my wound dressed, and then the doctor was kind enough to -bring me along here. I put the case into your hands and shall do -exactly what you advise." - -We both sat in silence for some little time after listening to -this extraordinary narrative. Then Sherlock Holmes pulled down -from the shelf one of the ponderous commonplace books in which he -placed his cuttings. - -"Here is an advertisement which will interest you," said he. "It -appeared in all the papers about a year ago. Listen to this: -'Lost, on the 9th inst., Mr. Jeremiah Hayling, aged -twenty-six, a hydraulic engineer. Left his lodgings at ten -o'clock at night, and has not been heard of since. Was -dressed in,' etc., etc. Ha! That represents the last time that -the colonel needed to have his machine overhauled, I fancy." - -"Good heavens!" cried my patient. "Then that explains what the -girl said." - -"Undoubtedly. It is quite clear that the colonel was a cool and -desperate man, who was absolutely determined that nothing should -stand in the way of his little game, like those out-and-out -pirates who will leave no survivor from a captured ship. Well, -every moment now is precious, so if you feel equal to it we shall -go down to Scotland Yard at once as a preliminary to starting for -Eyford." - -Some three hours or so afterwards we were all in the train -together, bound from Reading to the little Berkshire village. -There were Sherlock Holmes, the hydraulic engineer, Inspector -Bradstreet, of Scotland Yard, a plain-clothes man, and myself. -Bradstreet had spread an ordnance map of the county out upon the -seat and was busy with his compasses drawing a circle with Eyford -for its centre. - -"There you are," said he. "That circle is drawn at a radius of -ten miles from the village. The place we want must be somewhere -near that line. You said ten miles, I think, sir." - -"It was an hour's good drive." - -"And you think that they brought you back all that way when you -were unconscious?" - -"They must have done so. I have a confused memory, too, of having -been lifted and conveyed somewhere." - -"What I cannot understand," said I, "is why they should have -spared you when they found you lying fainting in the garden. -Perhaps the villain was softened by the woman's entreaties." - -"I hardly think that likely. I never saw a more inexorable face -in my life." - -"Oh, we shall soon clear up all that," said Bradstreet. "Well, I -have drawn my circle, and I only wish I knew at what point upon -it the folk that we are in search of are to be found." - -"I think I could lay my finger on it," said Holmes quietly. - -"Really, now!" cried the inspector, "you have formed your -opinion! Come, now, we shall see who agrees with you. I say it is -south, for the country is more deserted there." - -"And I say east," said my patient. - -"I am for west," remarked the plain-clothes man. "There are -several quiet little villages up there." - -"And I am for north," said I, "because there are no hills there, -and our friend says that he did not notice the carriage go up -any." - -"Come," cried the inspector, laughing; "it's a very pretty -diversity of opinion. We have boxed the compass among us. Who do -you give your casting vote to?" - -"You are all wrong." - -"But we can't all be." - -"Oh, yes, you can. This is my point." He placed his finger in the -centre of the circle. "This is where we shall find them." - -"But the twelve-mile drive?" gasped Hatherley. - -"Six out and six back. Nothing simpler. You say yourself that the -horse was fresh and glossy when you got in. How could it be that -if it had gone twelve miles over heavy roads?" - -"Indeed, it is a likely ruse enough," observed Bradstreet -thoughtfully. "Of course there can be no doubt as to the nature -of this gang." - -"None at all," said Holmes. "They are coiners on a large scale, -and have used the machine to form the amalgam which has taken the -place of silver." - -"We have known for some time that a clever gang was at work," -said the inspector. "They have been turning out half-crowns by -the thousand. We even traced them as far as Reading, but could -get no farther, for they had covered their traces in a way that -showed that they were very old hands. But now, thanks to this -lucky chance, I think that we have got them right enough." - -But the inspector was mistaken, for those criminals were not -destined to fall into the hands of justice. As we rolled into -Eyford Station we saw a gigantic column of smoke which streamed -up from behind a small clump of trees in the neighbourhood and -hung like an immense ostrich feather over the landscape. - -"A house on fire?" asked Bradstreet as the train steamed off -again on its way. - -"Yes, sir!" said the station-master. - -"When did it break out?" - -"I hear that it was during the night, sir, but it has got worse, -and the whole place is in a blaze." - -"Whose house is it?" - -"Dr. Becher's." - -"Tell me," broke in the engineer, "is Dr. Becher a German, very -thin, with a long, sharp nose?" - -The station-master laughed heartily. "No, sir, Dr. Becher is an -Englishman, and there isn't a man in the parish who has a -better-lined waistcoat. But he has a gentleman staying with him, -a patient, as I understand, who is a foreigner, and he looks as -if a little good Berkshire beef would do him no harm." - -The station-master had not finished his speech before we were all -hastening in the direction of the fire. The road topped a low -hill, and there was a great widespread whitewashed building in -front of us, spouting fire at every chink and window, while in -the garden in front three fire-engines were vainly striving to -keep the flames under. - -"That's it!" cried Hatherley, in intense excitement. "There is -the gravel-drive, and there are the rose-bushes where I lay. That -second window is the one that I jumped from." - -"Well, at least," said Holmes, "you have had your revenge upon -them. There can be no question that it was your oil-lamp which, -when it was crushed in the press, set fire to the wooden walls, -though no doubt they were too excited in the chase after you to -observe it at the time. Now keep your eyes open in this crowd for -your friends of last night, though I very much fear that they are -a good hundred miles off by now." - -And Holmes' fears came to be realised, for from that day to this -no word has ever been heard either of the beautiful woman, the -sinister German, or the morose Englishman. Early that morning a -peasant had met a cart containing several people and some very -bulky boxes driving rapidly in the direction of Reading, but -there all traces of the fugitives disappeared, and even Holmes' -ingenuity failed ever to discover the least clue as to their -whereabouts. - -The firemen had been much perturbed at the strange arrangements -which they had found within, and still more so by discovering a -newly severed human thumb upon a window-sill of the second floor. -About sunset, however, their efforts were at last successful, and -they subdued the flames, but not before the roof had fallen in, -and the whole place been reduced to such absolute ruin that, save -some twisted cylinders and iron piping, not a trace remained of -the machinery which had cost our unfortunate acquaintance so -dearly. Large masses of nickel and of tin were discovered stored -in an out-house, but no coins were to be found, which may have -explained the presence of those bulky boxes which have been -already referred to. - -How our hydraulic engineer had been conveyed from the garden to -the spot where he recovered his senses might have remained -forever a mystery were it not for the soft mould, which told us a -very plain tale. He had evidently been carried down by two -persons, one of whom had remarkably small feet and the other -unusually large ones. On the whole, it was most probable that the -silent Englishman, being less bold or less murderous than his -companion, had assisted the woman to bear the unconscious man out -of the way of danger. - -"Well," said our engineer ruefully as we took our seats to return -once more to London, "it has been a pretty business for me! I -have lost my thumb and I have lost a fifty-guinea fee, and what -have I gained?" - -"Experience," said Holmes, laughing. "Indirectly it may be of -value, you know; you have only to put it into words to gain the -reputation of being excellent company for the remainder of your -existence." - - - -X. THE ADVENTURE OF THE NOBLE BACHELOR - -The Lord St. Simon marriage, and its curious termination, have -long ceased to be a subject of interest in those exalted circles -in which the unfortunate bridegroom moves. Fresh scandals have -eclipsed it, and their more piquant details have drawn the -gossips away from this four-year-old drama. As I have reason to -believe, however, that the full facts have never been revealed to -the general public, and as my friend Sherlock Holmes had a -considerable share in clearing the matter up, I feel that no -memoir of him would be complete without some little sketch of -this remarkable episode. - -It was a few weeks before my own marriage, during the days when I -was still sharing rooms with Holmes in Baker Street, that he came -home from an afternoon stroll to find a letter on the table -waiting for him. I had remained indoors all day, for the weather -had taken a sudden turn to rain, with high autumnal winds, and -the Jezail bullet which I had brought back in one of my limbs as -a relic of my Afghan campaign throbbed with dull persistence. -With my body in one easy-chair and my legs upon another, I had -surrounded myself with a cloud of newspapers until at last, -saturated with the news of the day, I tossed them all aside and -lay listless, watching the huge crest and monogram upon the -envelope upon the table and wondering lazily who my friend's -noble correspondent could be. - -"Here is a very fashionable epistle," I remarked as he entered. -"Your morning letters, if I remember right, were from a -fish-monger and a tide-waiter." - -"Yes, my correspondence has certainly the charm of variety," he -answered, smiling, "and the humbler are usually the more -interesting. This looks like one of those unwelcome social -summonses which call upon a man either to be bored or to lie." - -He broke the seal and glanced over the contents. - -"Oh, come, it may prove to be something of interest, after all." - -"Not social, then?" - -"No, distinctly professional." - -"And from a noble client?" - -"One of the highest in England." - -"My dear fellow, I congratulate you." - -"I assure you, Watson, without affectation, that the status of my -client is a matter of less moment to me than the interest of his -case. It is just possible, however, that that also may not be -wanting in this new investigation. You have been reading the -papers diligently of late, have you not?" - -"It looks like it," said I ruefully, pointing to a huge bundle in -the corner. "I have had nothing else to do." - -"It is fortunate, for you will perhaps be able to post me up. I -read nothing except the criminal news and the agony column. The -latter is always instructive. But if you have followed recent -events so closely you must have read about Lord St. Simon and his -wedding?" - -"Oh, yes, with the deepest interest." - -"That is well. The letter which I hold in my hand is from Lord -St. Simon. I will read it to you, and in return you must turn -over these papers and let me have whatever bears upon the matter. -This is what he says: - -"'MY DEAR MR. SHERLOCK HOLMES:--Lord Backwater tells me that I -may place implicit reliance upon your judgment and discretion. I -have determined, therefore, to call upon you and to consult you -in reference to the very painful event which has occurred in -connection with my wedding. Mr. Lestrade, of Scotland Yard, is -acting already in the matter, but he assures me that he sees no -objection to your co-operation, and that he even thinks that -it might be of some assistance. I will call at four o'clock in -the afternoon, and, should you have any other engagement at that -time, I hope that you will postpone it, as this matter is of -paramount importance. Yours faithfully, ST. SIMON.' - -"It is dated from Grosvenor Mansions, written with a quill pen, -and the noble lord has had the misfortune to get a smear of ink -upon the outer side of his right little finger," remarked Holmes -as he folded up the epistle. - -"He says four o'clock. It is three now. He will be here in an -hour." - -"Then I have just time, with your assistance, to get clear upon -the subject. Turn over those papers and arrange the extracts in -their order of time, while I take a glance as to who our client -is." He picked a red-covered volume from a line of books of -reference beside the mantelpiece. "Here he is," said he, sitting -down and flattening it out upon his knee. "'Lord Robert Walsingham -de Vere St. Simon, second son of the Duke of Balmoral.' Hum! 'Arms: -Azure, three caltrops in chief over a fess sable. Born in 1846.' -He's forty-one years of age, which is mature for marriage. Was -Under-Secretary for the colonies in a late administration. The -Duke, his father, was at one time Secretary for Foreign Affairs. -They inherit Plantagenet blood by direct descent, and Tudor on -the distaff side. Ha! Well, there is nothing very instructive in -all this. I think that I must turn to you Watson, for something -more solid." - -"I have very little difficulty in finding what I want," said I, -"for the facts are quite recent, and the matter struck me as -remarkable. I feared to refer them to you, however, as I knew -that you had an inquiry on hand and that you disliked the -intrusion of other matters." - -"Oh, you mean the little problem of the Grosvenor Square -furniture van. That is quite cleared up now--though, indeed, it -was obvious from the first. Pray give me the results of your -newspaper selections." - -"Here is the first notice which I can find. It is in the personal -column of the Morning Post, and dates, as you see, some weeks -back: 'A marriage has been arranged,' it says, 'and will, if -rumour is correct, very shortly take place, between Lord Robert -St. Simon, second son of the Duke of Balmoral, and Miss Hatty -Doran, the only daughter of Aloysius Doran. Esq., of San -Francisco, Cal., U.S.A.' That is all." - -"Terse and to the point," remarked Holmes, stretching his long, -thin legs towards the fire. - -"There was a paragraph amplifying this in one of the society -papers of the same week. Ah, here it is: 'There will soon be a -call for protection in the marriage market, for the present -free-trade principle appears to tell heavily against our home -product. One by one the management of the noble houses of Great -Britain is passing into the hands of our fair cousins from across -the Atlantic. An important addition has been made during the last -week to the list of the prizes which have been borne away by -these charming invaders. Lord St. Simon, who has shown himself -for over twenty years proof against the little god's arrows, has -now definitely announced his approaching marriage with Miss Hatty -Doran, the fascinating daughter of a California millionaire. Miss -Doran, whose graceful figure and striking face attracted much -attention at the Westbury House festivities, is an only child, -and it is currently reported that her dowry will run to -considerably over the six figures, with expectancies for the -future. As it is an open secret that the Duke of Balmoral has -been compelled to sell his pictures within the last few years, -and as Lord St. Simon has no property of his own save the small -estate of Birchmoor, it is obvious that the Californian heiress -is not the only gainer by an alliance which will enable her to -make the easy and common transition from a Republican lady to a -British peeress.'" - -"Anything else?" asked Holmes, yawning. - -"Oh, yes; plenty. Then there is another note in the Morning Post -to say that the marriage would be an absolutely quiet one, that it -would be at St. George's, Hanover Square, that only half a dozen -intimate friends would be invited, and that the party would -return to the furnished house at Lancaster Gate which has been -taken by Mr. Aloysius Doran. Two days later--that is, on -Wednesday last--there is a curt announcement that the wedding had -taken place, and that the honeymoon would be passed at Lord -Backwater's place, near Petersfield. Those are all the notices -which appeared before the disappearance of the bride." - -"Before the what?" asked Holmes with a start. - -"The vanishing of the lady." - -"When did she vanish, then?" - -"At the wedding breakfast." - -"Indeed. This is more interesting than it promised to be; quite -dramatic, in fact." - -"Yes; it struck me as being a little out of the common." - -"They often vanish before the ceremony, and occasionally during -the honeymoon; but I cannot call to mind anything quite so prompt -as this. Pray let me have the details." - -"I warn you that they are very incomplete." - -"Perhaps we may make them less so." - -"Such as they are, they are set forth in a single article of a -morning paper of yesterday, which I will read to you. It is -headed, 'Singular Occurrence at a Fashionable Wedding': - -"'The family of Lord Robert St. Simon has been thrown into the -greatest consternation by the strange and painful episodes which -have taken place in connection with his wedding. The ceremony, as -shortly announced in the papers of yesterday, occurred on the -previous morning; but it is only now that it has been possible to -confirm the strange rumours which have been so persistently -floating about. In spite of the attempts of the friends to hush -the matter up, so much public attention has now been drawn to it -that no good purpose can be served by affecting to disregard what -is a common subject for conversation. - -"'The ceremony, which was performed at St. George's, Hanover -Square, was a very quiet one, no one being present save the -father of the bride, Mr. Aloysius Doran, the Duchess of Balmoral, -Lord Backwater, Lord Eustace and Lady Clara St. Simon (the -younger brother and sister of the bridegroom), and Lady Alicia -Whittington. The whole party proceeded afterwards to the house of -Mr. Aloysius Doran, at Lancaster Gate, where breakfast had been -prepared. It appears that some little trouble was caused by a -woman, whose name has not been ascertained, who endeavoured to -force her way into the house after the bridal party, alleging -that she had some claim upon Lord St. Simon. It was only after a -painful and prolonged scene that she was ejected by the butler -and the footman. The bride, who had fortunately entered the house -before this unpleasant interruption, had sat down to breakfast -with the rest, when she complained of a sudden indisposition and -retired to her room. Her prolonged absence having caused some -comment, her father followed her, but learned from her maid that -she had only come up to her chamber for an instant, caught up an -ulster and bonnet, and hurried down to the passage. One of the -footmen declared that he had seen a lady leave the house thus -apparelled, but had refused to credit that it was his mistress, -believing her to be with the company. On ascertaining that his -daughter had disappeared, Mr. Aloysius Doran, in conjunction with -the bridegroom, instantly put themselves in communication with -the police, and very energetic inquiries are being made, which -will probably result in a speedy clearing up of this very -singular business. Up to a late hour last night, however, nothing -had transpired as to the whereabouts of the missing lady. There -are rumours of foul play in the matter, and it is said that the -police have caused the arrest of the woman who had caused the -original disturbance, in the belief that, from jealousy or some -other motive, she may have been concerned in the strange -disappearance of the bride.'" - -"And is that all?" - -"Only one little item in another of the morning papers, but it is -a suggestive one." - -"And it is--" - -"That Miss Flora Millar, the lady who had caused the disturbance, -has actually been arrested. It appears that she was formerly a -danseuse at the Allegro, and that she has known the bridegroom -for some years. There are no further particulars, and the whole -case is in your hands now--so far as it has been set forth in the -public press." - -"And an exceedingly interesting case it appears to be. I would -not have missed it for worlds. But there is a ring at the bell, -Watson, and as the clock makes it a few minutes after four, I -have no doubt that this will prove to be our noble client. Do not -dream of going, Watson, for I very much prefer having a witness, -if only as a check to my own memory." - -"Lord Robert St. Simon," announced our page-boy, throwing open -the door. A gentleman entered, with a pleasant, cultured face, -high-nosed and pale, with something perhaps of petulance about -the mouth, and with the steady, well-opened eye of a man whose -pleasant lot it had ever been to command and to be obeyed. His -manner was brisk, and yet his general appearance gave an undue -impression of age, for he had a slight forward stoop and a little -bend of the knees as he walked. His hair, too, as he swept off -his very curly-brimmed hat, was grizzled round the edges and thin -upon the top. As to his dress, it was careful to the verge of -foppishness, with high collar, black frock-coat, white waistcoat, -yellow gloves, patent-leather shoes, and light-coloured gaiters. -He advanced slowly into the room, turning his head from left to -right, and swinging in his right hand the cord which held his -golden eyeglasses. - -"Good-day, Lord St. Simon," said Holmes, rising and bowing. "Pray -take the basket-chair. This is my friend and colleague, Dr. -Watson. Draw up a little to the fire, and we will talk this -matter over." - -"A most painful matter to me, as you can most readily imagine, -Mr. Holmes. I have been cut to the quick. I understand that you -have already managed several delicate cases of this sort, sir, -though I presume that they were hardly from the same class of -society." - -"No, I am descending." - -"I beg pardon." - -"My last client of the sort was a king." - -"Oh, really! I had no idea. And which king?" - -"The King of Scandinavia." - -"What! Had he lost his wife?" - -"You can understand," said Holmes suavely, "that I extend to the -affairs of my other clients the same secrecy which I promise to -you in yours." - -"Of course! Very right! very right! I'm sure I beg pardon. As to -my own case, I am ready to give you any information which may -assist you in forming an opinion." - -"Thank you. I have already learned all that is in the public -prints, nothing more. I presume that I may take it as correct--this -article, for example, as to the disappearance of the bride." - -Lord St. Simon glanced over it. "Yes, it is correct, as far as it -goes." - -"But it needs a great deal of supplementing before anyone could -offer an opinion. I think that I may arrive at my facts most -directly by questioning you." - -"Pray do so." - -"When did you first meet Miss Hatty Doran?" - -"In San Francisco, a year ago." - -"You were travelling in the States?" - -"Yes." - -"Did you become engaged then?" - -"No." - -"But you were on a friendly footing?" - -"I was amused by her society, and she could see that I was -amused." - -"Her father is very rich?" - -"He is said to be the richest man on the Pacific slope." - -"And how did he make his money?" - -"In mining. He had nothing a few years ago. Then he struck gold, -invested it, and came up by leaps and bounds." - -"Now, what is your own impression as to the young lady's--your -wife's character?" - -The nobleman swung his glasses a little faster and stared down -into the fire. "You see, Mr. Holmes," said he, "my wife was -twenty before her father became a rich man. During that time she -ran free in a mining camp and wandered through woods or -mountains, so that her education has come from Nature rather than -from the schoolmaster. She is what we call in England a tomboy, -with a strong nature, wild and free, unfettered by any sort of -traditions. She is impetuous--volcanic, I was about to say. She -is swift in making up her mind and fearless in carrying out her -resolutions. On the other hand, I would not have given her the -name which I have the honour to bear"--he gave a little stately -cough--"had not I thought her to be at bottom a noble woman. I -believe that she is capable of heroic self-sacrifice and that -anything dishonourable would be repugnant to her." - -"Have you her photograph?" - -"I brought this with me." He opened a locket and showed us the -full face of a very lovely woman. It was not a photograph but an -ivory miniature, and the artist had brought out the full effect -of the lustrous black hair, the large dark eyes, and the -exquisite mouth. Holmes gazed long and earnestly at it. Then he -closed the locket and handed it back to Lord St. Simon. - -"The young lady came to London, then, and you renewed your -acquaintance?" - -"Yes, her father brought her over for this last London season. I -met her several times, became engaged to her, and have now -married her." - -"She brought, I understand, a considerable dowry?" - -"A fair dowry. Not more than is usual in my family." - -"And this, of course, remains to you, since the marriage is a -fait accompli?" - -"I really have made no inquiries on the subject." - -"Very naturally not. Did you see Miss Doran on the day before the -wedding?" - -"Yes." - -"Was she in good spirits?" - -"Never better. She kept talking of what we should do in our -future lives." - -"Indeed! That is very interesting. And on the morning of the -wedding?" - -"She was as bright as possible--at least until after the -ceremony." - -"And did you observe any change in her then?" - -"Well, to tell the truth, I saw then the first signs that I had -ever seen that her temper was just a little sharp. The incident -however, was too trivial to relate and can have no possible -bearing upon the case." - -"Pray let us have it, for all that." - -"Oh, it is childish. She dropped her bouquet as we went towards -the vestry. She was passing the front pew at the time, and it -fell over into the pew. There was a moment's delay, but the -gentleman in the pew handed it up to her again, and it did not -appear to be the worse for the fall. Yet when I spoke to her of -the matter, she answered me abruptly; and in the carriage, on our -way home, she seemed absurdly agitated over this trifling cause." - -"Indeed! You say that there was a gentleman in the pew. Some of -the general public were present, then?" - -"Oh, yes. It is impossible to exclude them when the church is -open." - -"This gentleman was not one of your wife's friends?" - -"No, no; I call him a gentleman by courtesy, but he was quite a -common-looking person. I hardly noticed his appearance. But -really I think that we are wandering rather far from the point." - -"Lady St. Simon, then, returned from the wedding in a less -cheerful frame of mind than she had gone to it. What did she do -on re-entering her father's house?" - -"I saw her in conversation with her maid." - -"And who is her maid?" - -"Alice is her name. She is an American and came from California -with her." - -"A confidential servant?" - -"A little too much so. It seemed to me that her mistress allowed -her to take great liberties. Still, of course, in America they -look upon these things in a different way." - -"How long did she speak to this Alice?" - -"Oh, a few minutes. I had something else to think of." - -"You did not overhear what they said?" - -"Lady St. Simon said something about 'jumping a claim.' She was -accustomed to use slang of the kind. I have no idea what she -meant." - -"American slang is very expressive sometimes. And what did your -wife do when she finished speaking to her maid?" - -"She walked into the breakfast-room." - -"On your arm?" - -"No, alone. She was very independent in little matters like that. -Then, after we had sat down for ten minutes or so, she rose -hurriedly, muttered some words of apology, and left the room. She -never came back." - -"But this maid, Alice, as I understand, deposes that she went to -her room, covered her bride's dress with a long ulster, put on a -bonnet, and went out." - -"Quite so. And she was afterwards seen walking into Hyde Park in -company with Flora Millar, a woman who is now in custody, and who -had already made a disturbance at Mr. Doran's house that -morning." - -"Ah, yes. I should like a few particulars as to this young lady, -and your relations to her." - -Lord St. Simon shrugged his shoulders and raised his eyebrows. -"We have been on a friendly footing for some years--I may say on -a very friendly footing. She used to be at the Allegro. I have -not treated her ungenerously, and she had no just cause of -complaint against me, but you know what women are, Mr. Holmes. -Flora was a dear little thing, but exceedingly hot-headed and -devotedly attached to me. She wrote me dreadful letters when she -heard that I was about to be married, and, to tell the truth, the -reason why I had the marriage celebrated so quietly was that I -feared lest there might be a scandal in the church. She came to -Mr. Doran's door just after we returned, and she endeavoured to -push her way in, uttering very abusive expressions towards my -wife, and even threatening her, but I had foreseen the -possibility of something of the sort, and I had two police -fellows there in private clothes, who soon pushed her out again. -She was quiet when she saw that there was no good in making a -row." - -"Did your wife hear all this?" - -"No, thank goodness, she did not." - -"And she was seen walking with this very woman afterwards?" - -"Yes. That is what Mr. Lestrade, of Scotland Yard, looks upon as -so serious. It is thought that Flora decoyed my wife out and laid -some terrible trap for her." - -"Well, it is a possible supposition." - -"You think so, too?" - -"I did not say a probable one. But you do not yourself look upon -this as likely?" - -"I do not think Flora would hurt a fly." - -"Still, jealousy is a strange transformer of characters. Pray -what is your own theory as to what took place?" - -"Well, really, I came to seek a theory, not to propound one. I -have given you all the facts. Since you ask me, however, I may -say that it has occurred to me as possible that the excitement of -this affair, the consciousness that she had made so immense a -social stride, had the effect of causing some little nervous -disturbance in my wife." - -"In short, that she had become suddenly deranged?" - -"Well, really, when I consider that she has turned her back--I -will not say upon me, but upon so much that many have aspired to -without success--I can hardly explain it in any other fashion." - -"Well, certainly that is also a conceivable hypothesis," said -Holmes, smiling. "And now, Lord St. Simon, I think that I have -nearly all my data. May I ask whether you were seated at the -breakfast-table so that you could see out of the window?" - -"We could see the other side of the road and the Park." - -"Quite so. Then I do not think that I need to detain you longer. -I shall communicate with you." - -"Should you be fortunate enough to solve this problem," said our -client, rising. - -"I have solved it." - -"Eh? What was that?" - -"I say that I have solved it." - -"Where, then, is my wife?" - -"That is a detail which I shall speedily supply." - -Lord St. Simon shook his head. "I am afraid that it will take -wiser heads than yours or mine," he remarked, and bowing in a -stately, old-fashioned manner he departed. - -"It is very good of Lord St. Simon to honour my head by putting -it on a level with his own," said Sherlock Holmes, laughing. "I -think that I shall have a whisky and soda and a cigar after all -this cross-questioning. I had formed my conclusions as to the -case before our client came into the room." - -"My dear Holmes!" - -"I have notes of several similar cases, though none, as I -remarked before, which were quite as prompt. My whole examination -served to turn my conjecture into a certainty. Circumstantial -evidence is occasionally very convincing, as when you find a -trout in the milk, to quote Thoreau's example." - -"But I have heard all that you have heard." - -"Without, however, the knowledge of pre-existing cases which -serves me so well. There was a parallel instance in Aberdeen some -years back, and something on very much the same lines at Munich -the year after the Franco-Prussian War. It is one of these -cases--but, hullo, here is Lestrade! Good-afternoon, Lestrade! -You will find an extra tumbler upon the sideboard, and there are -cigars in the box." - -The official detective was attired in a pea-jacket and cravat, -which gave him a decidedly nautical appearance, and he carried a -black canvas bag in his hand. With a short greeting he seated -himself and lit the cigar which had been offered to him. - -"What's up, then?" asked Holmes with a twinkle in his eye. "You -look dissatisfied." - -"And I feel dissatisfied. It is this infernal St. Simon marriage -case. I can make neither head nor tail of the business." - -"Really! You surprise me." - -"Who ever heard of such a mixed affair? Every clue seems to slip -through my fingers. I have been at work upon it all day." - -"And very wet it seems to have made you," said Holmes laying his -hand upon the arm of the pea-jacket. - -"Yes, I have been dragging the Serpentine." - -"In heaven's name, what for?" - -"In search of the body of Lady St. Simon." - -Sherlock Holmes leaned back in his chair and laughed heartily. - -"Have you dragged the basin of Trafalgar Square fountain?" he -asked. - -"Why? What do you mean?" - -"Because you have just as good a chance of finding this lady in -the one as in the other." - -Lestrade shot an angry glance at my companion. "I suppose you -know all about it," he snarled. - -"Well, I have only just heard the facts, but my mind is made up." - -"Oh, indeed! Then you think that the Serpentine plays no part in -the matter?" - -"I think it very unlikely." - -"Then perhaps you will kindly explain how it is that we found -this in it?" He opened his bag as he spoke, and tumbled onto the -floor a wedding-dress of watered silk, a pair of white satin -shoes and a bride's wreath and veil, all discoloured and soaked -in water. "There," said he, putting a new wedding-ring upon the -top of the pile. "There is a little nut for you to crack, Master -Holmes." - -"Oh, indeed!" said my friend, blowing blue rings into the air. -"You dragged them from the Serpentine?" - -"No. They were found floating near the margin by a park-keeper. -They have been identified as her clothes, and it seemed to me -that if the clothes were there the body would not be far off." - -"By the same brilliant reasoning, every man's body is to be found -in the neighbourhood of his wardrobe. And pray what did you hope -to arrive at through this?" - -"At some evidence implicating Flora Millar in the disappearance." - -"I am afraid that you will find it difficult." - -"Are you, indeed, now?" cried Lestrade with some bitterness. "I -am afraid, Holmes, that you are not very practical with your -deductions and your inferences. You have made two blunders in as -many minutes. This dress does implicate Miss Flora Millar." - -"And how?" - -"In the dress is a pocket. In the pocket is a card-case. In the -card-case is a note. And here is the very note." He slapped it -down upon the table in front of him. "Listen to this: 'You will -see me when all is ready. Come at once. F.H.M.' Now my theory all -along has been that Lady St. Simon was decoyed away by Flora -Millar, and that she, with confederates, no doubt, was -responsible for her disappearance. Here, signed with her -initials, is the very note which was no doubt quietly slipped -into her hand at the door and which lured her within their -reach." - -"Very good, Lestrade," said Holmes, laughing. "You really are -very fine indeed. Let me see it." He took up the paper in a -listless way, but his attention instantly became riveted, and he -gave a little cry of satisfaction. "This is indeed important," -said he. - -"Ha! you find it so?" - -"Extremely so. I congratulate you warmly." - -Lestrade rose in his triumph and bent his head to look. "Why," he -shrieked, "you're looking at the wrong side!" - -"On the contrary, this is the right side." - -"The right side? You're mad! Here is the note written in pencil -over here." - -"And over here is what appears to be the fragment of a hotel -bill, which interests me deeply." - -"There's nothing in it. I looked at it before," said Lestrade. -"'Oct. 4th, rooms 8s., breakfast 2s. 6d., cocktail 1s., lunch 2s. -6d., glass sherry, 8d.' I see nothing in that." - -"Very likely not. It is most important, all the same. As to the -note, it is important also, or at least the initials are, so I -congratulate you again." - -"I've wasted time enough," said Lestrade, rising. "I believe in -hard work and not in sitting by the fire spinning fine theories. -Good-day, Mr. Holmes, and we shall see which gets to the bottom -of the matter first." He gathered up the garments, thrust them -into the bag, and made for the door. - -"Just one hint to you, Lestrade," drawled Holmes before his rival -vanished; "I will tell you the true solution of the matter. Lady -St. Simon is a myth. There is not, and there never has been, any -such person." - -Lestrade looked sadly at my companion. Then he turned to me, -tapped his forehead three times, shook his head solemnly, and -hurried away. - -He had hardly shut the door behind him when Holmes rose to put on -his overcoat. "There is something in what the fellow says about -outdoor work," he remarked, "so I think, Watson, that I must -leave you to your papers for a little." - -It was after five o'clock when Sherlock Holmes left me, but I had -no time to be lonely, for within an hour there arrived a -confectioner's man with a very large flat box. This he unpacked -with the help of a youth whom he had brought with him, and -presently, to my very great astonishment, a quite epicurean -little cold supper began to be laid out upon our humble -lodging-house mahogany. There were a couple of brace of cold -woodcock, a pheasant, a pt de foie gras pie with a group of -ancient and cobwebby bottles. Having laid out all these luxuries, -my two visitors vanished away, like the genii of the Arabian -Nights, with no explanation save that the things had been paid -for and were ordered to this address. - -Just before nine o'clock Sherlock Holmes stepped briskly into the -room. His features were gravely set, but there was a light in his -eye which made me think that he had not been disappointed in his -conclusions. - -"They have laid the supper, then," he said, rubbing his hands. - -"You seem to expect company. They have laid for five." - -"Yes, I fancy we may have some company dropping in," said he. "I -am surprised that Lord St. Simon has not already arrived. Ha! I -fancy that I hear his step now upon the stairs." - -It was indeed our visitor of the afternoon who came bustling in, -dangling his glasses more vigorously than ever, and with a very -perturbed expression upon his aristocratic features. - -"My messenger reached you, then?" asked Holmes. - -"Yes, and I confess that the contents startled me beyond measure. -Have you good authority for what you say?" - -"The best possible." - -Lord St. Simon sank into a chair and passed his hand over his -forehead. - -"What will the Duke say," he murmured, "when he hears that one of -the family has been subjected to such humiliation?" - -"It is the purest accident. I cannot allow that there is any -humiliation." - -"Ah, you look on these things from another standpoint." - -"I fail to see that anyone is to blame. I can hardly see how the -lady could have acted otherwise, though her abrupt method of -doing it was undoubtedly to be regretted. Having no mother, she -had no one to advise her at such a crisis." - -"It was a slight, sir, a public slight," said Lord St. Simon, -tapping his fingers upon the table. - -"You must make allowance for this poor girl, placed in so -unprecedented a position." - -"I will make no allowance. I am very angry indeed, and I have -been shamefully used." - -"I think that I heard a ring," said Holmes. "Yes, there are steps -on the landing. If I cannot persuade you to take a lenient view -of the matter, Lord St. Simon, I have brought an advocate here -who may be more successful." He opened the door and ushered in a -lady and gentleman. "Lord St. Simon," said he "allow me to -introduce you to Mr. and Mrs. Francis Hay Moulton. The lady, I -think, you have already met." - -At the sight of these newcomers our client had sprung from his -seat and stood very erect, with his eyes cast down and his hand -thrust into the breast of his frock-coat, a picture of offended -dignity. The lady had taken a quick step forward and had held out -her hand to him, but he still refused to raise his eyes. It was -as well for his resolution, perhaps, for her pleading face was -one which it was hard to resist. - -"You're angry, Robert," said she. "Well, I guess you have every -cause to be." - -"Pray make no apology to me," said Lord St. Simon bitterly. - -"Oh, yes, I know that I have treated you real bad and that I -should have spoken to you before I went; but I was kind of -rattled, and from the time when I saw Frank here again I just -didn't know what I was doing or saying. I only wonder I didn't -fall down and do a faint right there before the altar." - -"Perhaps, Mrs. Moulton, you would like my friend and me to leave -the room while you explain this matter?" - -"If I may give an opinion," remarked the strange gentleman, -"we've had just a little too much secrecy over this business -already. For my part, I should like all Europe and America to -hear the rights of it." He was a small, wiry, sunburnt man, -clean-shaven, with a sharp face and alert manner. - -"Then I'll tell our story right away," said the lady. "Frank here -and I met in '84, in McQuire's camp, near the Rockies, where pa -was working a claim. We were engaged to each other, Frank and I; -but then one day father struck a rich pocket and made a pile, -while poor Frank here had a claim that petered out and came to -nothing. The richer pa grew the poorer was Frank; so at last pa -wouldn't hear of our engagement lasting any longer, and he took -me away to 'Frisco. Frank wouldn't throw up his hand, though; so -he followed me there, and he saw me without pa knowing anything -about it. It would only have made him mad to know, so we just -fixed it all up for ourselves. Frank said that he would go and -make his pile, too, and never come back to claim me until he had -as much as pa. So then I promised to wait for him to the end of -time and pledged myself not to marry anyone else while he lived. -'Why shouldn't we be married right away, then,' said he, 'and -then I will feel sure of you; and I won't claim to be your -husband until I come back?' Well, we talked it over, and he had -fixed it all up so nicely, with a clergyman all ready in waiting, -that we just did it right there; and then Frank went off to seek -his fortune, and I went back to pa. - -"The next I heard of Frank was that he was in Montana, and then -he went prospecting in Arizona, and then I heard of him from New -Mexico. After that came a long newspaper story about how a -miners' camp had been attacked by Apache Indians, and there was -my Frank's name among the killed. I fainted dead away, and I was -very sick for months after. Pa thought I had a decline and took -me to half the doctors in 'Frisco. Not a word of news came for a -year and more, so that I never doubted that Frank was really -dead. Then Lord St. Simon came to 'Frisco, and we came to London, -and a marriage was arranged, and pa was very pleased, but I felt -all the time that no man on this earth would ever take the place -in my heart that had been given to my poor Frank. - -"Still, if I had married Lord St. Simon, of course I'd have done -my duty by him. We can't command our love, but we can our -actions. I went to the altar with him with the intention to make -him just as good a wife as it was in me to be. But you may -imagine what I felt when, just as I came to the altar rails, I -glanced back and saw Frank standing and looking at me out of the -first pew. I thought it was his ghost at first; but when I looked -again there he was still, with a kind of question in his eyes, as -if to ask me whether I were glad or sorry to see him. I wonder I -didn't drop. I know that everything was turning round, and the -words of the clergyman were just like the buzz of a bee in my -ear. I didn't know what to do. Should I stop the service and make -a scene in the church? I glanced at him again, and he seemed to -know what I was thinking, for he raised his finger to his lips to -tell me to be still. Then I saw him scribble on a piece of paper, -and I knew that he was writing me a note. As I passed his pew on -the way out I dropped my bouquet over to him, and he slipped the -note into my hand when he returned me the flowers. It was only a -line asking me to join him when he made the sign to me to do so. -Of course I never doubted for a moment that my first duty was now -to him, and I determined to do just whatever he might direct. - -"When I got back I told my maid, who had known him in California, -and had always been his friend. I ordered her to say nothing, but -to get a few things packed and my ulster ready. I know I ought to -have spoken to Lord St. Simon, but it was dreadful hard before -his mother and all those great people. I just made up my mind to -run away and explain afterwards. I hadn't been at the table ten -minutes before I saw Frank out of the window at the other side of -the road. He beckoned to me and then began walking into the Park. -I slipped out, put on my things, and followed him. Some woman -came talking something or other about Lord St. Simon to -me--seemed to me from the little I heard as if he had a little -secret of his own before marriage also--but I managed to get away -from her and soon overtook Frank. We got into a cab together, and -away we drove to some lodgings he had taken in Gordon Square, and -that was my true wedding after all those years of waiting. Frank -had been a prisoner among the Apaches, had escaped, came on to -'Frisco, found that I had given him up for dead and had gone to -England, followed me there, and had come upon me at last on the -very morning of my second wedding." - -"I saw it in a paper," explained the American. "It gave the name -and the church but not where the lady lived." - -"Then we had a talk as to what we should do, and Frank was all -for openness, but I was so ashamed of it all that I felt as if I -should like to vanish away and never see any of them again--just -sending a line to pa, perhaps, to show him that I was alive. It -was awful to me to think of all those lords and ladies sitting -round that breakfast-table and waiting for me to come back. So -Frank took my wedding-clothes and things and made a bundle of -them, so that I should not be traced, and dropped them away -somewhere where no one could find them. It is likely that we -should have gone on to Paris to-morrow, only that this good -gentleman, Mr. Holmes, came round to us this evening, though how -he found us is more than I can think, and he showed us very -clearly and kindly that I was wrong and that Frank was right, and -that we should be putting ourselves in the wrong if we were so -secret. Then he offered to give us a chance of talking to Lord -St. Simon alone, and so we came right away round to his rooms at -once. Now, Robert, you have heard it all, and I am very sorry if -I have given you pain, and I hope that you do not think very -meanly of me." - -Lord St. Simon had by no means relaxed his rigid attitude, but -had listened with a frowning brow and a compressed lip to this -long narrative. - -"Excuse me," he said, "but it is not my custom to discuss my most -intimate personal affairs in this public manner." - -"Then you won't forgive me? You won't shake hands before I go?" - -"Oh, certainly, if it would give you any pleasure." He put out -his hand and coldly grasped that which she extended to him. - -"I had hoped," suggested Holmes, "that you would have joined us -in a friendly supper." - -"I think that there you ask a little too much," responded his -Lordship. "I may be forced to acquiesce in these recent -developments, but I can hardly be expected to make merry over -them. I think that with your permission I will now wish you all a -very good-night." He included us all in a sweeping bow and -stalked out of the room. - -"Then I trust that you at least will honour me with your -company," said Sherlock Holmes. "It is always a joy to meet an -American, Mr. Moulton, for I am one of those who believe that the -folly of a monarch and the blundering of a minister in far-gone -years will not prevent our children from being some day citizens -of the same world-wide country under a flag which shall be a -quartering of the Union Jack with the Stars and Stripes." - -"The case has been an interesting one," remarked Holmes when our -visitors had left us, "because it serves to show very clearly how -simple the explanation may be of an affair which at first sight -seems to be almost inexplicable. Nothing could be more natural -than the sequence of events as narrated by this lady, and nothing -stranger than the result when viewed, for instance, by Mr. -Lestrade of Scotland Yard." - -"You were not yourself at fault at all, then?" - -"From the first, two facts were very obvious to me, the one that -the lady had been quite willing to undergo the wedding ceremony, -the other that she had repented of it within a few minutes of -returning home. Obviously something had occurred during the -morning, then, to cause her to change her mind. What could that -something be? She could not have spoken to anyone when she was -out, for she had been in the company of the bridegroom. Had she -seen someone, then? If she had, it must be someone from America -because she had spent so short a time in this country that she -could hardly have allowed anyone to acquire so deep an influence -over her that the mere sight of him would induce her to change -her plans so completely. You see we have already arrived, by a -process of exclusion, at the idea that she might have seen an -American. Then who could this American be, and why should he -possess so much influence over her? It might be a lover; it might -be a husband. Her young womanhood had, I knew, been spent in -rough scenes and under strange conditions. So far I had got -before I ever heard Lord St. Simon's narrative. When he told us -of a man in a pew, of the change in the bride's manner, of so -transparent a device for obtaining a note as the dropping of a -bouquet, of her resort to her confidential maid, and of her very -significant allusion to claim-jumping--which in miners' parlance -means taking possession of that which another person has a prior -claim to--the whole situation became absolutely clear. She had -gone off with a man, and the man was either a lover or was a -previous husband--the chances being in favour of the latter." - -"And how in the world did you find them?" - -"It might have been difficult, but friend Lestrade held -information in his hands the value of which he did not himself -know. The initials were, of course, of the highest importance, -but more valuable still was it to know that within a week he had -settled his bill at one of the most select London hotels." - -"How did you deduce the select?" - -"By the select prices. Eight shillings for a bed and eightpence -for a glass of sherry pointed to one of the most expensive -hotels. There are not many in London which charge at that rate. -In the second one which I visited in Northumberland Avenue, I -learned by an inspection of the book that Francis H. Moulton, an -American gentleman, had left only the day before, and on looking -over the entries against him, I came upon the very items which I -had seen in the duplicate bill. His letters were to be forwarded -to 226 Gordon Square; so thither I travelled, and being fortunate -enough to find the loving couple at home, I ventured to give them -some paternal advice and to point out to them that it would be -better in every way that they should make their position a little -clearer both to the general public and to Lord St. Simon in -particular. I invited them to meet him here, and, as you see, I -made him keep the appointment." - -"But with no very good result," I remarked. "His conduct was -certainly not very gracious." - -"Ah, Watson," said Holmes, smiling, "perhaps you would not be -very gracious either, if, after all the trouble of wooing and -wedding, you found yourself deprived in an instant of wife and of -fortune. I think that we may judge Lord St. Simon very mercifully -and thank our stars that we are never likely to find ourselves in -the same position. Draw your chair up and hand me my violin, for -the only problem we have still to solve is how to while away -these bleak autumnal evenings." - - - -XI. THE ADVENTURE OF THE BERYL CORONET - -"Holmes," said I as I stood one morning in our bow-window looking -down the street, "here is a madman coming along. It seems rather -sad that his relatives should allow him to come out alone." - -My friend rose lazily from his armchair and stood with his hands -in the pockets of his dressing-gown, looking over my shoulder. It -was a bright, crisp February morning, and the snow of the day -before still lay deep upon the ground, shimmering brightly in the -wintry sun. Down the centre of Baker Street it had been ploughed -into a brown crumbly band by the traffic, but at either side and -on the heaped-up edges of the foot-paths it still lay as white as -when it fell. The grey pavement had been cleaned and scraped, but -was still dangerously slippery, so that there were fewer -passengers than usual. Indeed, from the direction of the -Metropolitan Station no one was coming save the single gentleman -whose eccentric conduct had drawn my attention. - -He was a man of about fifty, tall, portly, and imposing, with a -massive, strongly marked face and a commanding figure. He was -dressed in a sombre yet rich style, in black frock-coat, shining -hat, neat brown gaiters, and well-cut pearl-grey trousers. Yet -his actions were in absurd contrast to the dignity of his dress -and features, for he was running hard, with occasional little -springs, such as a weary man gives who is little accustomed to -set any tax upon his legs. As he ran he jerked his hands up and -down, waggled his head, and writhed his face into the most -extraordinary contortions. - -"What on earth can be the matter with him?" I asked. "He is -looking up at the numbers of the houses." - -"I believe that he is coming here," said Holmes, rubbing his -hands. - -"Here?" - -"Yes; I rather think he is coming to consult me professionally. I -think that I recognise the symptoms. Ha! did I not tell you?" As -he spoke, the man, puffing and blowing, rushed at our door and -pulled at our bell until the whole house resounded with the -clanging. - -A few moments later he was in our room, still puffing, still -gesticulating, but with so fixed a look of grief and despair in -his eyes that our smiles were turned in an instant to horror and -pity. For a while he could not get his words out, but swayed his -body and plucked at his hair like one who has been driven to the -extreme limits of his reason. Then, suddenly springing to his -feet, he beat his head against the wall with such force that we -both rushed upon him and tore him away to the centre of the room. -Sherlock Holmes pushed him down into the easy-chair and, sitting -beside him, patted his hand and chatted with him in the easy, -soothing tones which he knew so well how to employ. - -"You have come to me to tell your story, have you not?" said he. -"You are fatigued with your haste. Pray wait until you have -recovered yourself, and then I shall be most happy to look into -any little problem which you may submit to me." - -The man sat for a minute or more with a heaving chest, fighting -against his emotion. Then he passed his handkerchief over his -brow, set his lips tight, and turned his face towards us. - -"No doubt you think me mad?" said he. - -"I see that you have had some great trouble," responded Holmes. - -"God knows I have!--a trouble which is enough to unseat my -reason, so sudden and so terrible is it. Public disgrace I might -have faced, although I am a man whose character has never yet -borne a stain. Private affliction also is the lot of every man; -but the two coming together, and in so frightful a form, have -been enough to shake my very soul. Besides, it is not I alone. -The very noblest in the land may suffer unless some way be found -out of this horrible affair." - -"Pray compose yourself, sir," said Holmes, "and let me have a -clear account of who you are and what it is that has befallen -you." - -"My name," answered our visitor, "is probably familiar to your -ears. I am Alexander Holder, of the banking firm of Holder & -Stevenson, of Threadneedle Street." - -The name was indeed well known to us as belonging to the senior -partner in the second largest private banking concern in the City -of London. What could have happened, then, to bring one of the -foremost citizens of London to this most pitiable pass? We -waited, all curiosity, until with another effort he braced -himself to tell his story. - -"I feel that time is of value," said he; "that is why I hastened -here when the police inspector suggested that I should secure -your co-operation. I came to Baker Street by the Underground and -hurried from there on foot, for the cabs go slowly through this -snow. That is why I was so out of breath, for I am a man who -takes very little exercise. I feel better now, and I will put the -facts before you as shortly and yet as clearly as I can. - -"It is, of course, well known to you that in a successful banking -business as much depends upon our being able to find remunerative -investments for our funds as upon our increasing our connection -and the number of our depositors. One of our most lucrative means -of laying out money is in the shape of loans, where the security -is unimpeachable. We have done a good deal in this direction -during the last few years, and there are many noble families to -whom we have advanced large sums upon the security of their -pictures, libraries, or plate. - -"Yesterday morning I was seated in my office at the bank when a -card was brought in to me by one of the clerks. I started when I -saw the name, for it was that of none other than--well, perhaps -even to you I had better say no more than that it was a name -which is a household word all over the earth--one of the highest, -noblest, most exalted names in England. I was overwhelmed by the -honour and attempted, when he entered, to say so, but he plunged -at once into business with the air of a man who wishes to hurry -quickly through a disagreeable task. - -"'Mr. Holder,' said he, 'I have been informed that you are in the -habit of advancing money.' - -"'The firm does so when the security is good.' I answered. - -"'It is absolutely essential to me,' said he, 'that I should have -50,000 pounds at once. I could, of course, borrow so trifling a -sum ten times over from my friends, but I much prefer to make it -a matter of business and to carry out that business myself. In my -position you can readily understand that it is unwise to place -one's self under obligations.' - -"'For how long, may I ask, do you want this sum?' I asked. - -"'Next Monday I have a large sum due to me, and I shall then most -certainly repay what you advance, with whatever interest you -think it right to charge. But it is very essential to me that the -money should be paid at once.' - -"'I should be happy to advance it without further parley from my -own private purse,' said I, 'were it not that the strain would be -rather more than it could bear. If, on the other hand, I am to do -it in the name of the firm, then in justice to my partner I must -insist that, even in your case, every businesslike precaution -should be taken.' - -"'I should much prefer to have it so,' said he, raising up a -square, black morocco case which he had laid beside his chair. -'You have doubtless heard of the Beryl Coronet?' - -"'One of the most precious public possessions of the empire,' -said I. - -"'Precisely.' He opened the case, and there, imbedded in soft, -flesh-coloured velvet, lay the magnificent piece of jewellery -which he had named. 'There are thirty-nine enormous beryls,' said -he, 'and the price of the gold chasing is incalculable. The -lowest estimate would put the worth of the coronet at double the -sum which I have asked. I am prepared to leave it with you as my -security.' - -"I took the precious case into my hands and looked in some -perplexity from it to my illustrious client. - -"'You doubt its value?' he asked. - -"'Not at all. I only doubt--' - -"'The propriety of my leaving it. You may set your mind at rest -about that. I should not dream of doing so were it not absolutely -certain that I should be able in four days to reclaim it. It is a -pure matter of form. Is the security sufficient?' - -"'Ample.' - -"'You understand, Mr. Holder, that I am giving you a strong proof -of the confidence which I have in you, founded upon all that I -have heard of you. I rely upon you not only to be discreet and to -refrain from all gossip upon the matter but, above all, to -preserve this coronet with every possible precaution because I -need not say that a great public scandal would be caused if any -harm were to befall it. Any injury to it would be almost as -serious as its complete loss, for there are no beryls in the -world to match these, and it would be impossible to replace them. -I leave it with you, however, with every confidence, and I shall -call for it in person on Monday morning.' - -"Seeing that my client was anxious to leave, I said no more but, -calling for my cashier, I ordered him to pay over fifty 1000 -pound notes. When I was alone once more, however, with the -precious case lying upon the table in front of me, I could not -but think with some misgivings of the immense responsibility -which it entailed upon me. There could be no doubt that, as it -was a national possession, a horrible scandal would ensue if any -misfortune should occur to it. I already regretted having ever -consented to take charge of it. However, it was too late to alter -the matter now, so I locked it up in my private safe and turned -once more to my work. - -"When evening came I felt that it would be an imprudence to leave -so precious a thing in the office behind me. Bankers' safes had -been forced before now, and why should not mine be? If so, how -terrible would be the position in which I should find myself! I -determined, therefore, that for the next few days I would always -carry the case backward and forward with me, so that it might -never be really out of my reach. With this intention, I called a -cab and drove out to my house at Streatham, carrying the jewel -with me. I did not breathe freely until I had taken it upstairs -and locked it in the bureau of my dressing-room. - -"And now a word as to my household, Mr. Holmes, for I wish you to -thoroughly understand the situation. My groom and my page sleep -out of the house, and may be set aside altogether. I have three -maid-servants who have been with me a number of years and whose -absolute reliability is quite above suspicion. Another, Lucy -Parr, the second waiting-maid, has only been in my service a few -months. She came with an excellent character, however, and has -always given me satisfaction. She is a very pretty girl and has -attracted admirers who have occasionally hung about the place. -That is the only drawback which we have found to her, but we -believe her to be a thoroughly good girl in every way. - -"So much for the servants. My family itself is so small that it -will not take me long to describe it. I am a widower and have an -only son, Arthur. He has been a disappointment to me, Mr. -Holmes--a grievous disappointment. I have no doubt that I am -myself to blame. People tell me that I have spoiled him. Very -likely I have. When my dear wife died I felt that he was all I -had to love. I could not bear to see the smile fade even for a -moment from his face. I have never denied him a wish. Perhaps it -would have been better for both of us had I been sterner, but I -meant it for the best. - -"It was naturally my intention that he should succeed me in my -business, but he was not of a business turn. He was wild, -wayward, and, to speak the truth, I could not trust him in the -handling of large sums of money. When he was young he became a -member of an aristocratic club, and there, having charming -manners, he was soon the intimate of a number of men with long -purses and expensive habits. He learned to play heavily at cards -and to squander money on the turf, until he had again and again -to come to me and implore me to give him an advance upon his -allowance, that he might settle his debts of honour. He tried -more than once to break away from the dangerous company which he -was keeping, but each time the influence of his friend, Sir -George Burnwell, was enough to draw him back again. - -"And, indeed, I could not wonder that such a man as Sir George -Burnwell should gain an influence over him, for he has frequently -brought him to my house, and I have found myself that I could -hardly resist the fascination of his manner. He is older than -Arthur, a man of the world to his finger-tips, one who had been -everywhere, seen everything, a brilliant talker, and a man of -great personal beauty. Yet when I think of him in cold blood, far -away from the glamour of his presence, I am convinced from his -cynical speech and the look which I have caught in his eyes that -he is one who should be deeply distrusted. So I think, and so, -too, thinks my little Mary, who has a woman's quick insight into -character. - -"And now there is only she to be described. She is my niece; but -when my brother died five years ago and left her alone in the -world I adopted her, and have looked upon her ever since as my -daughter. She is a sunbeam in my house--sweet, loving, beautiful, -a wonderful manager and housekeeper, yet as tender and quiet and -gentle as a woman could be. She is my right hand. I do not know -what I could do without her. In only one matter has she ever gone -against my wishes. Twice my boy has asked her to marry him, for -he loves her devotedly, but each time she has refused him. I -think that if anyone could have drawn him into the right path it -would have been she, and that his marriage might have changed his -whole life; but now, alas! it is too late--forever too late! - -"Now, Mr. Holmes, you know the people who live under my roof, and -I shall continue with my miserable story. - -"When we were taking coffee in the drawing-room that night after -dinner, I told Arthur and Mary my experience, and of the precious -treasure which we had under our roof, suppressing only the name -of my client. Lucy Parr, who had brought in the coffee, had, I am -sure, left the room; but I cannot swear that the door was closed. -Mary and Arthur were much interested and wished to see the famous -coronet, but I thought it better not to disturb it. - -"'Where have you put it?' asked Arthur. - -"'In my own bureau.' - -"'Well, I hope to goodness the house won't be burgled during the -night.' said he. - -"'It is locked up,' I answered. - -"'Oh, any old key will fit that bureau. When I was a youngster I -have opened it myself with the key of the box-room cupboard.' - -"He often had a wild way of talking, so that I thought little of -what he said. He followed me to my room, however, that night with -a very grave face. - -"'Look here, dad,' said he with his eyes cast down, 'can you let -me have 200 pounds?' - -"'No, I cannot!' I answered sharply. 'I have been far too -generous with you in money matters.' - -"'You have been very kind,' said he, 'but I must have this money, -or else I can never show my face inside the club again.' - -"'And a very good thing, too!' I cried. - -"'Yes, but you would not have me leave it a dishonoured man,' -said he. 'I could not bear the disgrace. I must raise the money -in some way, and if you will not let me have it, then I must try -other means.' - -"I was very angry, for this was the third demand during the -month. 'You shall not have a farthing from me,' I cried, on which -he bowed and left the room without another word. - -"When he was gone I unlocked my bureau, made sure that my -treasure was safe, and locked it again. Then I started to go -round the house to see that all was secure--a duty which I -usually leave to Mary but which I thought it well to perform -myself that night. As I came down the stairs I saw Mary herself -at the side window of the hall, which she closed and fastened as -I approached. - -"'Tell me, dad,' said she, looking, I thought, a little -disturbed, 'did you give Lucy, the maid, leave to go out -to-night?' - -"'Certainly not.' - -"'She came in just now by the back door. I have no doubt that she -has only been to the side gate to see someone, but I think that -it is hardly safe and should be stopped.' - -"'You must speak to her in the morning, or I will if you prefer -it. Are you sure that everything is fastened?' - -"'Quite sure, dad.' - -"'Then, good-night.' I kissed her and went up to my bedroom -again, where I was soon asleep. - -"I am endeavouring to tell you everything, Mr. Holmes, which may -have any bearing upon the case, but I beg that you will question -me upon any point which I do not make clear." - -"On the contrary, your statement is singularly lucid." - -"I come to a part of my story now in which I should wish to be -particularly so. I am not a very heavy sleeper, and the anxiety -in my mind tended, no doubt, to make me even less so than usual. -About two in the morning, then, I was awakened by some sound in -the house. It had ceased ere I was wide awake, but it had left an -impression behind it as though a window had gently closed -somewhere. I lay listening with all my ears. Suddenly, to my -horror, there was a distinct sound of footsteps moving softly in -the next room. I slipped out of bed, all palpitating with fear, -and peeped round the corner of my dressing-room door. - -"'Arthur!' I screamed, 'you villain! you thief! How dare you -touch that coronet?' - -"The gas was half up, as I had left it, and my unhappy boy, -dressed only in his shirt and trousers, was standing beside the -light, holding the coronet in his hands. He appeared to be -wrenching at it, or bending it with all his strength. At my cry -he dropped it from his grasp and turned as pale as death. I -snatched it up and examined it. One of the gold corners, with -three of the beryls in it, was missing. - -"'You blackguard!' I shouted, beside myself with rage. 'You have -destroyed it! You have dishonoured me forever! Where are the -jewels which you have stolen?' - -"'Stolen!' he cried. - -"'Yes, thief!' I roared, shaking him by the shoulder. - -"'There are none missing. There cannot be any missing,' said he. - -"'There are three missing. And you know where they are. Must I -call you a liar as well as a thief? Did I not see you trying to -tear off another piece?' - -"'You have called me names enough,' said he, 'I will not stand it -any longer. I shall not say another word about this business, -since you have chosen to insult me. I will leave your house in -the morning and make my own way in the world.' - -"'You shall leave it in the hands of the police!' I cried -half-mad with grief and rage. 'I shall have this matter probed to -the bottom.' - -"'You shall learn nothing from me,' said he with a passion such -as I should not have thought was in his nature. 'If you choose to -call the police, let the police find what they can.' - -"By this time the whole house was astir, for I had raised my -voice in my anger. Mary was the first to rush into my room, and, -at the sight of the coronet and of Arthur's face, she read the -whole story and, with a scream, fell down senseless on the -ground. I sent the house-maid for the police and put the -investigation into their hands at once. When the inspector and a -constable entered the house, Arthur, who had stood sullenly with -his arms folded, asked me whether it was my intention to charge -him with theft. I answered that it had ceased to be a private -matter, but had become a public one, since the ruined coronet was -national property. I was determined that the law should have its -way in everything. - -"'At least,' said he, 'you will not have me arrested at once. It -would be to your advantage as well as mine if I might leave the -house for five minutes.' - -"'That you may get away, or perhaps that you may conceal what you -have stolen,' said I. And then, realising the dreadful position -in which I was placed, I implored him to remember that not only -my honour but that of one who was far greater than I was at -stake; and that he threatened to raise a scandal which would -convulse the nation. He might avert it all if he would but tell -me what he had done with the three missing stones. - -"'You may as well face the matter,' said I; 'you have been caught -in the act, and no confession could make your guilt more heinous. -If you but make such reparation as is in your power, by telling -us where the beryls are, all shall be forgiven and forgotten.' - -"'Keep your forgiveness for those who ask for it,' he answered, -turning away from me with a sneer. I saw that he was too hardened -for any words of mine to influence him. There was but one way for -it. I called in the inspector and gave him into custody. A search -was made at once not only of his person but of his room and of -every portion of the house where he could possibly have concealed -the gems; but no trace of them could be found, nor would the -wretched boy open his mouth for all our persuasions and our -threats. This morning he was removed to a cell, and I, after -going through all the police formalities, have hurried round to -you to implore you to use your skill in unravelling the matter. -The police have openly confessed that they can at present make -nothing of it. You may go to any expense which you think -necessary. I have already offered a reward of 1000 pounds. My -God, what shall I do! I have lost my honour, my gems, and my son -in one night. Oh, what shall I do!" - -He put a hand on either side of his head and rocked himself to -and fro, droning to himself like a child whose grief has got -beyond words. - -Sherlock Holmes sat silent for some few minutes, with his brows -knitted and his eyes fixed upon the fire. - -"Do you receive much company?" he asked. - -"None save my partner with his family and an occasional friend of -Arthur's. Sir George Burnwell has been several times lately. No -one else, I think." - -"Do you go out much in society?" - -"Arthur does. Mary and I stay at home. We neither of us care for -it." - -"That is unusual in a young girl." - -"She is of a quiet nature. Besides, she is not so very young. She -is four-and-twenty." - -"This matter, from what you say, seems to have been a shock to -her also." - -"Terrible! She is even more affected than I." - -"You have neither of you any doubt as to your son's guilt?" - -"How can we have when I saw him with my own eyes with the coronet -in his hands." - -"I hardly consider that a conclusive proof. Was the remainder of -the coronet at all injured?" - -"Yes, it was twisted." - -"Do you not think, then, that he might have been trying to -straighten it?" - -"God bless you! You are doing what you can for him and for me. -But it is too heavy a task. What was he doing there at all? If -his purpose were innocent, why did he not say so?" - -"Precisely. And if it were guilty, why did he not invent a lie? -His silence appears to me to cut both ways. There are several -singular points about the case. What did the police think of the -noise which awoke you from your sleep?" - -"They considered that it might be caused by Arthur's closing his -bedroom door." - -"A likely story! As if a man bent on felony would slam his door -so as to wake a household. What did they say, then, of the -disappearance of these gems?" - -"They are still sounding the planking and probing the furniture -in the hope of finding them." - -"Have they thought of looking outside the house?" - -"Yes, they have shown extraordinary energy. The whole garden has -already been minutely examined." - -"Now, my dear sir," said Holmes, "is it not obvious to you now -that this matter really strikes very much deeper than either you -or the police were at first inclined to think? It appeared to you -to be a simple case; to me it seems exceedingly complex. Consider -what is involved by your theory. You suppose that your son came -down from his bed, went, at great risk, to your dressing-room, -opened your bureau, took out your coronet, broke off by main -force a small portion of it, went off to some other place, -concealed three gems out of the thirty-nine, with such skill that -nobody can find them, and then returned with the other thirty-six -into the room in which he exposed himself to the greatest danger -of being discovered. I ask you now, is such a theory tenable?" - -"But what other is there?" cried the banker with a gesture of -despair. "If his motives were innocent, why does he not explain -them?" - -"It is our task to find that out," replied Holmes; "so now, if -you please, Mr. Holder, we will set off for Streatham together, -and devote an hour to glancing a little more closely into -details." - -My friend insisted upon my accompanying them in their expedition, -which I was eager enough to do, for my curiosity and sympathy -were deeply stirred by the story to which we had listened. I -confess that the guilt of the banker's son appeared to me to be -as obvious as it did to his unhappy father, but still I had such -faith in Holmes' judgment that I felt that there must be some -grounds for hope as long as he was dissatisfied with the accepted -explanation. He hardly spoke a word the whole way out to the -southern suburb, but sat with his chin upon his breast and his -hat drawn over his eyes, sunk in the deepest thought. Our client -appeared to have taken fresh heart at the little glimpse of hope -which had been presented to him, and he even broke into a -desultory chat with me over his business affairs. A short railway -journey and a shorter walk brought us to Fairbank, the modest -residence of the great financier. - -Fairbank was a good-sized square house of white stone, standing -back a little from the road. A double carriage-sweep, with a -snow-clad lawn, stretched down in front to two large iron gates -which closed the entrance. On the right side was a small wooden -thicket, which led into a narrow path between two neat hedges -stretching from the road to the kitchen door, and forming the -tradesmen's entrance. On the left ran a lane which led to the -stables, and was not itself within the grounds at all, being a -public, though little used, thoroughfare. Holmes left us standing -at the door and walked slowly all round the house, across the -front, down the tradesmen's path, and so round by the garden -behind into the stable lane. So long was he that Mr. Holder and I -went into the dining-room and waited by the fire until he should -return. We were sitting there in silence when the door opened and -a young lady came in. She was rather above the middle height, -slim, with dark hair and eyes, which seemed the darker against -the absolute pallor of her skin. I do not think that I have ever -seen such deadly paleness in a woman's face. Her lips, too, were -bloodless, but her eyes were flushed with crying. As she swept -silently into the room she impressed me with a greater sense of -grief than the banker had done in the morning, and it was the -more striking in her as she was evidently a woman of strong -character, with immense capacity for self-restraint. Disregarding -my presence, she went straight to her uncle and passed her hand -over his head with a sweet womanly caress. - -"You have given orders that Arthur should be liberated, have you -not, dad?" she asked. - -"No, no, my girl, the matter must be probed to the bottom." - -"But I am so sure that he is innocent. You know what woman's -instincts are. I know that he has done no harm and that you will -be sorry for having acted so harshly." - -"Why is he silent, then, if he is innocent?" - -"Who knows? Perhaps because he was so angry that you should -suspect him." - -"How could I help suspecting him, when I actually saw him with -the coronet in his hand?" - -"Oh, but he had only picked it up to look at it. Oh, do, do take -my word for it that he is innocent. Let the matter drop and say -no more. It is so dreadful to think of our dear Arthur in -prison!" - -"I shall never let it drop until the gems are found--never, Mary! -Your affection for Arthur blinds you as to the awful consequences -to me. Far from hushing the thing up, I have brought a gentleman -down from London to inquire more deeply into it." - -"This gentleman?" she asked, facing round to me. - -"No, his friend. He wished us to leave him alone. He is round in -the stable lane now." - -"The stable lane?" She raised her dark eyebrows. "What can he -hope to find there? Ah! this, I suppose, is he. I trust, sir, -that you will succeed in proving, what I feel sure is the truth, -that my cousin Arthur is innocent of this crime." - -"I fully share your opinion, and I trust, with you, that we may -prove it," returned Holmes, going back to the mat to knock the -snow from his shoes. "I believe I have the honour of addressing -Miss Mary Holder. Might I ask you a question or two?" - -"Pray do, sir, if it may help to clear this horrible affair up." - -"You heard nothing yourself last night?" - -"Nothing, until my uncle here began to speak loudly. I heard -that, and I came down." - -"You shut up the windows and doors the night before. Did you -fasten all the windows?" - -"Yes." - -"Were they all fastened this morning?" - -"Yes." - -"You have a maid who has a sweetheart? I think that you remarked -to your uncle last night that she had been out to see him?" - -"Yes, and she was the girl who waited in the drawing-room, and -who may have heard uncle's remarks about the coronet." - -"I see. You infer that she may have gone out to tell her -sweetheart, and that the two may have planned the robbery." - -"But what is the good of all these vague theories," cried the -banker impatiently, "when I have told you that I saw Arthur with -the coronet in his hands?" - -"Wait a little, Mr. Holder. We must come back to that. About this -girl, Miss Holder. You saw her return by the kitchen door, I -presume?" - -"Yes; when I went to see if the door was fastened for the night I -met her slipping in. I saw the man, too, in the gloom." - -"Do you know him?" - -"Oh, yes! he is the green-grocer who brings our vegetables round. -His name is Francis Prosper." - -"He stood," said Holmes, "to the left of the door--that is to -say, farther up the path than is necessary to reach the door?" - -"Yes, he did." - -"And he is a man with a wooden leg?" - -Something like fear sprang up in the young lady's expressive -black eyes. "Why, you are like a magician," said she. "How do you -know that?" She smiled, but there was no answering smile in -Holmes' thin, eager face. - -"I should be very glad now to go upstairs," said he. "I shall -probably wish to go over the outside of the house again. Perhaps -I had better take a look at the lower windows before I go up." - -He walked swiftly round from one to the other, pausing only at -the large one which looked from the hall onto the stable lane. -This he opened and made a very careful examination of the sill -with his powerful magnifying lens. "Now we shall go upstairs," -said he at last. - -The banker's dressing-room was a plainly furnished little -chamber, with a grey carpet, a large bureau, and a long mirror. -Holmes went to the bureau first and looked hard at the lock. - -"Which key was used to open it?" he asked. - -"That which my son himself indicated--that of the cupboard of the -lumber-room." - -"Have you it here?" - -"That is it on the dressing-table." - -Sherlock Holmes took it up and opened the bureau. - -"It is a noiseless lock," said he. "It is no wonder that it did -not wake you. This case, I presume, contains the coronet. We must -have a look at it." He opened the case, and taking out the diadem -he laid it upon the table. It was a magnificent specimen of the -jeweller's art, and the thirty-six stones were the finest that I -have ever seen. At one side of the coronet was a cracked edge, -where a corner holding three gems had been torn away. - -"Now, Mr. Holder," said Holmes, "here is the corner which -corresponds to that which has been so unfortunately lost. Might I -beg that you will break it off." - -The banker recoiled in horror. "I should not dream of trying," -said he. - -"Then I will." Holmes suddenly bent his strength upon it, but -without result. "I feel it give a little," said he; "but, though -I am exceptionally strong in the fingers, it would take me all my -time to break it. An ordinary man could not do it. Now, what do -you think would happen if I did break it, Mr. Holder? There would -be a noise like a pistol shot. Do you tell me that all this -happened within a few yards of your bed and that you heard -nothing of it?" - -"I do not know what to think. It is all dark to me." - -"But perhaps it may grow lighter as we go. What do you think, -Miss Holder?" - -"I confess that I still share my uncle's perplexity." - -"Your son had no shoes or slippers on when you saw him?" - -"He had nothing on save only his trousers and shirt." - -"Thank you. We have certainly been favoured with extraordinary -luck during this inquiry, and it will be entirely our own fault -if we do not succeed in clearing the matter up. With your -permission, Mr. Holder, I shall now continue my investigations -outside." - -He went alone, at his own request, for he explained that any -unnecessary footmarks might make his task more difficult. For an -hour or more he was at work, returning at last with his feet -heavy with snow and his features as inscrutable as ever. - -"I think that I have seen now all that there is to see, Mr. -Holder," said he; "I can serve you best by returning to my -rooms." - -"But the gems, Mr. Holmes. Where are they?" - -"I cannot tell." - -The banker wrung his hands. "I shall never see them again!" he -cried. "And my son? You give me hopes?" - -"My opinion is in no way altered." - -"Then, for God's sake, what was this dark business which was -acted in my house last night?" - -"If you can call upon me at my Baker Street rooms to-morrow -morning between nine and ten I shall be happy to do what I can to -make it clearer. I understand that you give me carte blanche to -act for you, provided only that I get back the gems, and that you -place no limit on the sum I may draw." - -"I would give my fortune to have them back." - -"Very good. I shall look into the matter between this and then. -Good-bye; it is just possible that I may have to come over here -again before evening." - -It was obvious to me that my companion's mind was now made up -about the case, although what his conclusions were was more than -I could even dimly imagine. Several times during our homeward -journey I endeavoured to sound him upon the point, but he always -glided away to some other topic, until at last I gave it over in -despair. It was not yet three when we found ourselves in our -rooms once more. He hurried to his chamber and was down again in -a few minutes dressed as a common loafer. With his collar turned -up, his shiny, seedy coat, his red cravat, and his worn boots, he -was a perfect sample of the class. - -"I think that this should do," said he, glancing into the glass -above the fireplace. "I only wish that you could come with me, -Watson, but I fear that it won't do. I may be on the trail in -this matter, or I may be following a will-o'-the-wisp, but I -shall soon know which it is. I hope that I may be back in a few -hours." He cut a slice of beef from the joint upon the sideboard, -sandwiched it between two rounds of bread, and thrusting this -rude meal into his pocket he started off upon his expedition. - -I had just finished my tea when he returned, evidently in -excellent spirits, swinging an old elastic-sided boot in his -hand. He chucked it down into a corner and helped himself to a -cup of tea. - -"I only looked in as I passed," said he. "I am going right on." - -"Where to?" - -"Oh, to the other side of the West End. It may be some time -before I get back. Don't wait up for me in case I should be -late." - -"How are you getting on?" - -"Oh, so so. Nothing to complain of. I have been out to Streatham -since I saw you last, but I did not call at the house. It is a -very sweet little problem, and I would not have missed it for a -good deal. However, I must not sit gossiping here, but must get -these disreputable clothes off and return to my highly -respectable self." - -I could see by his manner that he had stronger reasons for -satisfaction than his words alone would imply. His eyes twinkled, -and there was even a touch of colour upon his sallow cheeks. He -hastened upstairs, and a few minutes later I heard the slam of -the hall door, which told me that he was off once more upon his -congenial hunt. - -I waited until midnight, but there was no sign of his return, so -I retired to my room. It was no uncommon thing for him to be away -for days and nights on end when he was hot upon a scent, so that -his lateness caused me no surprise. I do not know at what hour he -came in, but when I came down to breakfast in the morning there -he was with a cup of coffee in one hand and the paper in the -other, as fresh and trim as possible. - -"You will excuse my beginning without you, Watson," said he, "but -you remember that our client has rather an early appointment this -morning." - -"Why, it is after nine now," I answered. "I should not be -surprised if that were he. I thought I heard a ring." - -It was, indeed, our friend the financier. I was shocked by the -change which had come over him, for his face which was naturally -of a broad and massive mould, was now pinched and fallen in, -while his hair seemed to me at least a shade whiter. He entered -with a weariness and lethargy which was even more painful than -his violence of the morning before, and he dropped heavily into -the armchair which I pushed forward for him. - -"I do not know what I have done to be so severely tried," said -he. "Only two days ago I was a happy and prosperous man, without -a care in the world. Now I am left to a lonely and dishonoured -age. One sorrow comes close upon the heels of another. My niece, -Mary, has deserted me." - -"Deserted you?" - -"Yes. Her bed this morning had not been slept in, her room was -empty, and a note for me lay upon the hall table. I had said to -her last night, in sorrow and not in anger, that if she had -married my boy all might have been well with him. Perhaps it was -thoughtless of me to say so. It is to that remark that she refers -in this note: - -"'MY DEAREST UNCLE:--I feel that I have brought trouble upon you, -and that if I had acted differently this terrible misfortune -might never have occurred. I cannot, with this thought in my -mind, ever again be happy under your roof, and I feel that I must -leave you forever. Do not worry about my future, for that is -provided for; and, above all, do not search for me, for it will -be fruitless labour and an ill-service to me. In life or in -death, I am ever your loving,--MARY.' - -"What could she mean by that note, Mr. Holmes? Do you think it -points to suicide?" - -"No, no, nothing of the kind. It is perhaps the best possible -solution. I trust, Mr. Holder, that you are nearing the end of -your troubles." - -"Ha! You say so! You have heard something, Mr. Holmes; you have -learned something! Where are the gems?" - -"You would not think 1000 pounds apiece an excessive sum for -them?" - -"I would pay ten." - -"That would be unnecessary. Three thousand will cover the matter. -And there is a little reward, I fancy. Have you your check-book? -Here is a pen. Better make it out for 4000 pounds." - -With a dazed face the banker made out the required check. Holmes -walked over to his desk, took out a little triangular piece of -gold with three gems in it, and threw it down upon the table. - -With a shriek of joy our client clutched it up. - -"You have it!" he gasped. "I am saved! I am saved!" - -The reaction of joy was as passionate as his grief had been, and -he hugged his recovered gems to his bosom. - -"There is one other thing you owe, Mr. Holder," said Sherlock -Holmes rather sternly. - -"Owe!" He caught up a pen. "Name the sum, and I will pay it." - -"No, the debt is not to me. You owe a very humble apology to that -noble lad, your son, who has carried himself in this matter as I -should be proud to see my own son do, should I ever chance to -have one." - -"Then it was not Arthur who took them?" - -"I told you yesterday, and I repeat to-day, that it was not." - -"You are sure of it! Then let us hurry to him at once to let him -know that the truth is known." - -"He knows it already. When I had cleared it all up I had an -interview with him, and finding that he would not tell me the -story, I told it to him, on which he had to confess that I was -right and to add the very few details which were not yet quite -clear to me. Your news of this morning, however, may open his -lips." - -"For heaven's sake, tell me, then, what is this extraordinary -mystery!" - -"I will do so, and I will show you the steps by which I reached -it. And let me say to you, first, that which it is hardest for me -to say and for you to hear: there has been an understanding -between Sir George Burnwell and your niece Mary. They have now -fled together." - -"My Mary? Impossible!" - -"It is unfortunately more than possible; it is certain. Neither -you nor your son knew the true character of this man when you -admitted him into your family circle. He is one of the most -dangerous men in England--a ruined gambler, an absolutely -desperate villain, a man without heart or conscience. Your niece -knew nothing of such men. When he breathed his vows to her, as he -had done to a hundred before her, she flattered herself that she -alone had touched his heart. The devil knows best what he said, -but at least she became his tool and was in the habit of seeing -him nearly every evening." - -"I cannot, and I will not, believe it!" cried the banker with an -ashen face. - -"I will tell you, then, what occurred in your house last night. -Your niece, when you had, as she thought, gone to your room, -slipped down and talked to her lover through the window which -leads into the stable lane. His footmarks had pressed right -through the snow, so long had he stood there. She told him of the -coronet. His wicked lust for gold kindled at the news, and he -bent her to his will. I have no doubt that she loved you, but -there are women in whom the love of a lover extinguishes all -other loves, and I think that she must have been one. She had -hardly listened to his instructions when she saw you coming -downstairs, on which she closed the window rapidly and told you -about one of the servants' escapade with her wooden-legged lover, -which was all perfectly true. - -"Your boy, Arthur, went to bed after his interview with you but -he slept badly on account of his uneasiness about his club debts. -In the middle of the night he heard a soft tread pass his door, -so he rose and, looking out, was surprised to see his cousin -walking very stealthily along the passage until she disappeared -into your dressing-room. Petrified with astonishment, the lad -slipped on some clothes and waited there in the dark to see what -would come of this strange affair. Presently she emerged from the -room again, and in the light of the passage-lamp your son saw -that she carried the precious coronet in her hands. She passed -down the stairs, and he, thrilling with horror, ran along and -slipped behind the curtain near your door, whence he could see -what passed in the hall beneath. He saw her stealthily open the -window, hand out the coronet to someone in the gloom, and then -closing it once more hurry back to her room, passing quite close -to where he stood hid behind the curtain. - -"As long as she was on the scene he could not take any action -without a horrible exposure of the woman whom he loved. But the -instant that she was gone he realised how crushing a misfortune -this would be for you, and how all-important it was to set it -right. He rushed down, just as he was, in his bare feet, opened -the window, sprang out into the snow, and ran down the lane, -where he could see a dark figure in the moonlight. Sir George -Burnwell tried to get away, but Arthur caught him, and there was -a struggle between them, your lad tugging at one side of the -coronet, and his opponent at the other. In the scuffle, your son -struck Sir George and cut him over the eye. Then something -suddenly snapped, and your son, finding that he had the coronet -in his hands, rushed back, closed the window, ascended to your -room, and had just observed that the coronet had been twisted in -the struggle and was endeavouring to straighten it when you -appeared upon the scene." - -"Is it possible?" gasped the banker. - -"You then roused his anger by calling him names at a moment when -he felt that he had deserved your warmest thanks. He could not -explain the true state of affairs without betraying one who -certainly deserved little enough consideration at his hands. He -took the more chivalrous view, however, and preserved her -secret." - -"And that was why she shrieked and fainted when she saw the -coronet," cried Mr. Holder. "Oh, my God! what a blind fool I have -been! And his asking to be allowed to go out for five minutes! -The dear fellow wanted to see if the missing piece were at the -scene of the struggle. How cruelly I have misjudged him!" - -"When I arrived at the house," continued Holmes, "I at once went -very carefully round it to observe if there were any traces in -the snow which might help me. I knew that none had fallen since -the evening before, and also that there had been a strong frost -to preserve impressions. I passed along the tradesmen's path, but -found it all trampled down and indistinguishable. Just beyond it, -however, at the far side of the kitchen door, a woman had stood -and talked with a man, whose round impressions on one side showed -that he had a wooden leg. I could even tell that they had been -disturbed, for the woman had run back swiftly to the door, as was -shown by the deep toe and light heel marks, while Wooden-leg had -waited a little, and then had gone away. I thought at the time -that this might be the maid and her sweetheart, of whom you had -already spoken to me, and inquiry showed it was so. I passed -round the garden without seeing anything more than random tracks, -which I took to be the police; but when I got into the stable -lane a very long and complex story was written in the snow in -front of me. - -"There was a double line of tracks of a booted man, and a second -double line which I saw with delight belonged to a man with naked -feet. I was at once convinced from what you had told me that the -latter was your son. The first had walked both ways, but the -other had run swiftly, and as his tread was marked in places over -the depression of the boot, it was obvious that he had passed -after the other. I followed them up and found they led to the -hall window, where Boots had worn all the snow away while -waiting. Then I walked to the other end, which was a hundred -yards or more down the lane. I saw where Boots had faced round, -where the snow was cut up as though there had been a struggle, -and, finally, where a few drops of blood had fallen, to show me -that I was not mistaken. Boots had then run down the lane, and -another little smudge of blood showed that it was he who had been -hurt. When he came to the highroad at the other end, I found that -the pavement had been cleared, so there was an end to that clue. - -"On entering the house, however, I examined, as you remember, the -sill and framework of the hall window with my lens, and I could -at once see that someone had passed out. I could distinguish the -outline of an instep where the wet foot had been placed in coming -in. I was then beginning to be able to form an opinion as to what -had occurred. A man had waited outside the window; someone had -brought the gems; the deed had been overseen by your son; he had -pursued the thief; had struggled with him; they had each tugged -at the coronet, their united strength causing injuries which -neither alone could have effected. He had returned with the -prize, but had left a fragment in the grasp of his opponent. So -far I was clear. The question now was, who was the man and who -was it brought him the coronet? - -"It is an old maxim of mine that when you have excluded the -impossible, whatever remains, however improbable, must be the -truth. Now, I knew that it was not you who had brought it down, -so there only remained your niece and the maids. But if it were -the maids, why should your son allow himself to be accused in -their place? There could be no possible reason. As he loved his -cousin, however, there was an excellent explanation why he should -retain her secret--the more so as the secret was a disgraceful -one. When I remembered that you had seen her at that window, and -how she had fainted on seeing the coronet again, my conjecture -became a certainty. - -"And who could it be who was her confederate? A lover evidently, -for who else could outweigh the love and gratitude which she must -feel to you? I knew that you went out little, and that your -circle of friends was a very limited one. But among them was Sir -George Burnwell. I had heard of him before as being a man of evil -reputation among women. It must have been he who wore those boots -and retained the missing gems. Even though he knew that Arthur -had discovered him, he might still flatter himself that he was -safe, for the lad could not say a word without compromising his -own family. - -"Well, your own good sense will suggest what measures I took -next. I went in the shape of a loafer to Sir George's house, -managed to pick up an acquaintance with his valet, learned that -his master had cut his head the night before, and, finally, at -the expense of six shillings, made all sure by buying a pair of -his cast-off shoes. With these I journeyed down to Streatham and -saw that they exactly fitted the tracks." - -"I saw an ill-dressed vagabond in the lane yesterday evening," -said Mr. Holder. - -"Precisely. It was I. I found that I had my man, so I came home -and changed my clothes. It was a delicate part which I had to -play then, for I saw that a prosecution must be avoided to avert -scandal, and I knew that so astute a villain would see that our -hands were tied in the matter. I went and saw him. At first, of -course, he denied everything. But when I gave him every -particular that had occurred, he tried to bluster and took down a -life-preserver from the wall. I knew my man, however, and I -clapped a pistol to his head before he could strike. Then he -became a little more reasonable. I told him that we would give -him a price for the stones he held--1000 pounds apiece. That -brought out the first signs of grief that he had shown. 'Why, -dash it all!' said he, 'I've let them go at six hundred for the -three!' I soon managed to get the address of the receiver who had -them, on promising him that there would be no prosecution. Off I -set to him, and after much chaffering I got our stones at 1000 -pounds apiece. Then I looked in upon your son, told him that all -was right, and eventually got to my bed about two o'clock, after -what I may call a really hard day's work." - -"A day which has saved England from a great public scandal," said -the banker, rising. "Sir, I cannot find words to thank you, but -you shall not find me ungrateful for what you have done. Your -skill has indeed exceeded all that I have heard of it. And now I -must fly to my dear boy to apologise to him for the wrong which I -have done him. As to what you tell me of poor Mary, it goes to my -very heart. Not even your skill can inform me where she is now." - -"I think that we may safely say," returned Holmes, "that she is -wherever Sir George Burnwell is. It is equally certain, too, that -whatever her sins are, they will soon receive a more than -sufficient punishment." - - - -XII. THE ADVENTURE OF THE COPPER BEECHES - -"To the man who loves art for its own sake," remarked Sherlock -Holmes, tossing aside the advertisement sheet of the Daily -Telegraph, "it is frequently in its least important and lowliest -manifestations that the keenest pleasure is to be derived. It is -pleasant to me to observe, Watson, that you have so far grasped -this truth that in these little records of our cases which you -have been good enough to draw up, and, I am bound to say, -occasionally to embellish, you have given prominence not so much -to the many causes clbres and sensational trials in which I -have figured but rather to those incidents which may have been -trivial in themselves, but which have given room for those -faculties of deduction and of logical synthesis which I have made -my special province." - -"And yet," said I, smiling, "I cannot quite hold myself absolved -from the charge of sensationalism which has been urged against my -records." - -"You have erred, perhaps," he observed, taking up a glowing -cinder with the tongs and lighting with it the long cherry-wood -pipe which was wont to replace his clay when he was in a -disputatious rather than a meditative mood--"you have erred -perhaps in attempting to put colour and life into each of your -statements instead of confining yourself to the task of placing -upon record that severe reasoning from cause to effect which is -really the only notable feature about the thing." - -"It seems to me that I have done you full justice in the matter," -I remarked with some coldness, for I was repelled by the egotism -which I had more than once observed to be a strong factor in my -friend's singular character. - -"No, it is not selfishness or conceit," said he, answering, as -was his wont, my thoughts rather than my words. "If I claim full -justice for my art, it is because it is an impersonal thing--a -thing beyond myself. Crime is common. Logic is rare. Therefore it -is upon the logic rather than upon the crime that you should -dwell. You have degraded what should have been a course of -lectures into a series of tales." - -It was a cold morning of the early spring, and we sat after -breakfast on either side of a cheery fire in the old room at -Baker Street. A thick fog rolled down between the lines of -dun-coloured houses, and the opposing windows loomed like dark, -shapeless blurs through the heavy yellow wreaths. Our gas was lit -and shone on the white cloth and glimmer of china and metal, for -the table had not been cleared yet. Sherlock Holmes had been -silent all the morning, dipping continuously into the -advertisement columns of a succession of papers until at last, -having apparently given up his search, he had emerged in no very -sweet temper to lecture me upon my literary shortcomings. - -"At the same time," he remarked after a pause, during which he -had sat puffing at his long pipe and gazing down into the fire, -"you can hardly be open to a charge of sensationalism, for out of -these cases which you have been so kind as to interest yourself -in, a fair proportion do not treat of crime, in its legal sense, -at all. The small matter in which I endeavoured to help the King -of Bohemia, the singular experience of Miss Mary Sutherland, the -problem connected with the man with the twisted lip, and the -incident of the noble bachelor, were all matters which are -outside the pale of the law. But in avoiding the sensational, I -fear that you may have bordered on the trivial." - -"The end may have been so," I answered, "but the methods I hold -to have been novel and of interest." - -"Pshaw, my dear fellow, what do the public, the great unobservant -public, who could hardly tell a weaver by his tooth or a -compositor by his left thumb, care about the finer shades of -analysis and deduction! But, indeed, if you are trivial, I cannot -blame you, for the days of the great cases are past. Man, or at -least criminal man, has lost all enterprise and originality. As -to my own little practice, it seems to be degenerating into an -agency for recovering lost lead pencils and giving advice to -young ladies from boarding-schools. I think that I have touched -bottom at last, however. This note I had this morning marks my -zero-point, I fancy. Read it!" He tossed a crumpled letter across -to me. - -It was dated from Montague Place upon the preceding evening, and -ran thus: - -"DEAR MR. HOLMES:--I am very anxious to consult you as to whether -I should or should not accept a situation which has been offered -to me as governess. I shall call at half-past ten to-morrow if I -do not inconvenience you. Yours faithfully, - "VIOLET HUNTER." - -"Do you know the young lady?" I asked. - -"Not I." - -"It is half-past ten now." - -"Yes, and I have no doubt that is her ring." - -"It may turn out to be of more interest than you think. You -remember that the affair of the blue carbuncle, which appeared to -be a mere whim at first, developed into a serious investigation. -It may be so in this case, also." - -"Well, let us hope so. But our doubts will very soon be solved, -for here, unless I am much mistaken, is the person in question." - -As he spoke the door opened and a young lady entered the room. -She was plainly but neatly dressed, with a bright, quick face, -freckled like a plover's egg, and with the brisk manner of a -woman who has had her own way to make in the world. - -"You will excuse my troubling you, I am sure," said she, as my -companion rose to greet her, "but I have had a very strange -experience, and as I have no parents or relations of any sort -from whom I could ask advice, I thought that perhaps you would be -kind enough to tell me what I should do." - -"Pray take a seat, Miss Hunter. I shall be happy to do anything -that I can to serve you." - -I could see that Holmes was favourably impressed by the manner -and speech of his new client. He looked her over in his searching -fashion, and then composed himself, with his lids drooping and -his finger-tips together, to listen to her story. - -"I have been a governess for five years," said she, "in the -family of Colonel Spence Munro, but two months ago the colonel -received an appointment at Halifax, in Nova Scotia, and took his -children over to America with him, so that I found myself without -a situation. I advertised, and I answered advertisements, but -without success. At last the little money which I had saved began -to run short, and I was at my wit's end as to what I should do. - -"There is a well-known agency for governesses in the West End -called Westaway's, and there I used to call about once a week in -order to see whether anything had turned up which might suit me. -Westaway was the name of the founder of the business, but it is -really managed by Miss Stoper. She sits in her own little office, -and the ladies who are seeking employment wait in an anteroom, -and are then shown in one by one, when she consults her ledgers -and sees whether she has anything which would suit them. - -"Well, when I called last week I was shown into the little office -as usual, but I found that Miss Stoper was not alone. A -prodigiously stout man with a very smiling face and a great heavy -chin which rolled down in fold upon fold over his throat sat at -her elbow with a pair of glasses on his nose, looking very -earnestly at the ladies who entered. As I came in he gave quite a -jump in his chair and turned quickly to Miss Stoper. - -"'That will do,' said he; 'I could not ask for anything better. -Capital! capital!' He seemed quite enthusiastic and rubbed his -hands together in the most genial fashion. He was such a -comfortable-looking man that it was quite a pleasure to look at -him. - -"'You are looking for a situation, miss?' he asked. - -"'Yes, sir.' - -"'As governess?' - -"'Yes, sir.' - -"'And what salary do you ask?' - -"'I had 4 pounds a month in my last place with Colonel Spence -Munro.' - -"'Oh, tut, tut! sweating--rank sweating!' he cried, throwing his -fat hands out into the air like a man who is in a boiling -passion. 'How could anyone offer so pitiful a sum to a lady with -such attractions and accomplishments?' - -"'My accomplishments, sir, may be less than you imagine,' said I. -'A little French, a little German, music, and drawing--' - -"'Tut, tut!' he cried. 'This is all quite beside the question. -The point is, have you or have you not the bearing and deportment -of a lady? There it is in a nutshell. If you have not, you are -not fitted for the rearing of a child who may some day play a -considerable part in the history of the country. But if you have -why, then, how could any gentleman ask you to condescend to -accept anything under the three figures? Your salary with me, -madam, would commence at 100 pounds a year.' - -"You may imagine, Mr. Holmes, that to me, destitute as I was, -such an offer seemed almost too good to be true. The gentleman, -however, seeing perhaps the look of incredulity upon my face, -opened a pocket-book and took out a note. - -"'It is also my custom,' said he, smiling in the most pleasant -fashion until his eyes were just two little shining slits amid -the white creases of his face, 'to advance to my young ladies -half their salary beforehand, so that they may meet any little -expenses of their journey and their wardrobe.' - -"It seemed to me that I had never met so fascinating and so -thoughtful a man. As I was already in debt to my tradesmen, the -advance was a great convenience, and yet there was something -unnatural about the whole transaction which made me wish to know -a little more before I quite committed myself. - -"'May I ask where you live, sir?' said I. - -"'Hampshire. Charming rural place. The Copper Beeches, five miles -on the far side of Winchester. It is the most lovely country, my -dear young lady, and the dearest old country-house.' - -"'And my duties, sir? I should be glad to know what they would -be.' - -"'One child--one dear little romper just six years old. Oh, if -you could see him killing cockroaches with a slipper! Smack! -smack! smack! Three gone before you could wink!' He leaned back -in his chair and laughed his eyes into his head again. - -"I was a little startled at the nature of the child's amusement, -but the father's laughter made me think that perhaps he was -joking. - -"'My sole duties, then,' I asked, 'are to take charge of a single -child?' - -"'No, no, not the sole, not the sole, my dear young lady,' he -cried. 'Your duty would be, as I am sure your good sense would -suggest, to obey any little commands my wife might give, provided -always that they were such commands as a lady might with -propriety obey. You see no difficulty, heh?' - -"'I should be happy to make myself useful.' - -"'Quite so. In dress now, for example. We are faddy people, you -know--faddy but kind-hearted. If you were asked to wear any dress -which we might give you, you would not object to our little whim. -Heh?' - -"'No,' said I, considerably astonished at his words. - -"'Or to sit here, or sit there, that would not be offensive to -you?' - -"'Oh, no.' - -"'Or to cut your hair quite short before you come to us?' - -"I could hardly believe my ears. As you may observe, Mr. Holmes, -my hair is somewhat luxuriant, and of a rather peculiar tint of -chestnut. It has been considered artistic. I could not dream of -sacrificing it in this offhand fashion. - -"'I am afraid that that is quite impossible,' said I. He had been -watching me eagerly out of his small eyes, and I could see a -shadow pass over his face as I spoke. - -"'I am afraid that it is quite essential,' said he. 'It is a -little fancy of my wife's, and ladies' fancies, you know, madam, -ladies' fancies must be consulted. And so you won't cut your -hair?' - -"'No, sir, I really could not,' I answered firmly. - -"'Ah, very well; then that quite settles the matter. It is a -pity, because in other respects you would really have done very -nicely. In that case, Miss Stoper, I had best inspect a few more -of your young ladies.' - -"The manageress had sat all this while busy with her papers -without a word to either of us, but she glanced at me now with so -much annoyance upon her face that I could not help suspecting -that she had lost a handsome commission through my refusal. - -"'Do you desire your name to be kept upon the books?' she asked. - -"'If you please, Miss Stoper.' - -"'Well, really, it seems rather useless, since you refuse the -most excellent offers in this fashion,' said she sharply. 'You -can hardly expect us to exert ourselves to find another such -opening for you. Good-day to you, Miss Hunter.' She struck a gong -upon the table, and I was shown out by the page. - -"Well, Mr. Holmes, when I got back to my lodgings and found -little enough in the cupboard, and two or three bills upon the -table, I began to ask myself whether I had not done a very -foolish thing. After all, if these people had strange fads and -expected obedience on the most extraordinary matters, they were -at least ready to pay for their eccentricity. Very few -governesses in England are getting 100 pounds a year. Besides, -what use was my hair to me? Many people are improved by wearing -it short and perhaps I should be among the number. Next day I was -inclined to think that I had made a mistake, and by the day after -I was sure of it. I had almost overcome my pride so far as to go -back to the agency and inquire whether the place was still open -when I received this letter from the gentleman himself. I have it -here and I will read it to you: - - "'The Copper Beeches, near Winchester. -"'DEAR MISS HUNTER:--Miss Stoper has very kindly given me your -address, and I write from here to ask you whether you have -reconsidered your decision. My wife is very anxious that you -should come, for she has been much attracted by my description of -you. We are willing to give 30 pounds a quarter, or 120 pounds a -year, so as to recompense you for any little inconvenience which -our fads may cause you. They are not very exacting, after all. My -wife is fond of a particular shade of electric blue and would -like you to wear such a dress indoors in the morning. You need -not, however, go to the expense of purchasing one, as we have one -belonging to my dear daughter Alice (now in Philadelphia), which -would, I should think, fit you very well. Then, as to sitting -here or there, or amusing yourself in any manner indicated, that -need cause you no inconvenience. As regards your hair, it is no -doubt a pity, especially as I could not help remarking its beauty -during our short interview, but I am afraid that I must remain -firm upon this point, and I only hope that the increased salary -may recompense you for the loss. Your duties, as far as the child -is concerned, are very light. Now do try to come, and I shall -meet you with the dog-cart at Winchester. Let me know your train. -Yours faithfully, JEPHRO RUCASTLE.' - -"That is the letter which I have just received, Mr. Holmes, and -my mind is made up that I will accept it. I thought, however, -that before taking the final step I should like to submit the -whole matter to your consideration." - -"Well, Miss Hunter, if your mind is made up, that settles the -question," said Holmes, smiling. - -"But you would not advise me to refuse?" - -"I confess that it is not the situation which I should like to -see a sister of mine apply for." - -"What is the meaning of it all, Mr. Holmes?" - -"Ah, I have no data. I cannot tell. Perhaps you have yourself -formed some opinion?" - -"Well, there seems to me to be only one possible solution. Mr. -Rucastle seemed to be a very kind, good-natured man. Is it not -possible that his wife is a lunatic, that he desires to keep the -matter quiet for fear she should be taken to an asylum, and that -he humours her fancies in every way in order to prevent an -outbreak?" - -"That is a possible solution--in fact, as matters stand, it is -the most probable one. But in any case it does not seem to be a -nice household for a young lady." - -"But the money, Mr. Holmes, the money!" - -"Well, yes, of course the pay is good--too good. That is what -makes me uneasy. Why should they give you 120 pounds a year, when -they could have their pick for 40 pounds? There must be some -strong reason behind." - -"I thought that if I told you the circumstances you would -understand afterwards if I wanted your help. I should feel so -much stronger if I felt that you were at the back of me." - -"Oh, you may carry that feeling away with you. I assure you that -your little problem promises to be the most interesting which has -come my way for some months. There is something distinctly novel -about some of the features. If you should find yourself in doubt -or in danger--" - -"Danger! What danger do you foresee?" - -Holmes shook his head gravely. "It would cease to be a danger if -we could define it," said he. "But at any time, day or night, a -telegram would bring me down to your help." - -"That is enough." She rose briskly from her chair with the -anxiety all swept from her face. "I shall go down to Hampshire -quite easy in my mind now. I shall write to Mr. Rucastle at once, -sacrifice my poor hair to-night, and start for Winchester -to-morrow." With a few grateful words to Holmes she bade us both -good-night and bustled off upon her way. - -"At least," said I as we heard her quick, firm steps descending -the stairs, "she seems to be a young lady who is very well able -to take care of herself." - -"And she would need to be," said Holmes gravely. "I am much -mistaken if we do not hear from her before many days are past." - -It was not very long before my friend's prediction was fulfilled. -A fortnight went by, during which I frequently found my thoughts -turning in her direction and wondering what strange side-alley of -human experience this lonely woman had strayed into. The unusual -salary, the curious conditions, the light duties, all pointed to -something abnormal, though whether a fad or a plot, or whether -the man were a philanthropist or a villain, it was quite beyond -my powers to determine. As to Holmes, I observed that he sat -frequently for half an hour on end, with knitted brows and an -abstracted air, but he swept the matter away with a wave of his -hand when I mentioned it. "Data! data! data!" he cried -impatiently. "I can't make bricks without clay." And yet he would -always wind up by muttering that no sister of his should ever -have accepted such a situation. - -The telegram which we eventually received came late one night -just as I was thinking of turning in and Holmes was settling down -to one of those all-night chemical researches which he frequently -indulged in, when I would leave him stooping over a retort and a -test-tube at night and find him in the same position when I came -down to breakfast in the morning. He opened the yellow envelope, -and then, glancing at the message, threw it across to me. - -"Just look up the trains in Bradshaw," said he, and turned back -to his chemical studies. - -The summons was a brief and urgent one. - -"Please be at the Black Swan Hotel at Winchester at midday -to-morrow," it said. "Do come! I am at my wit's end. HUNTER." - -"Will you come with me?" asked Holmes, glancing up. - -"I should wish to." - -"Just look it up, then." - -"There is a train at half-past nine," said I, glancing over my -Bradshaw. "It is due at Winchester at 11:30." - -"That will do very nicely. Then perhaps I had better postpone my -analysis of the acetones, as we may need to be at our best in the -morning." - -By eleven o'clock the next day we were well upon our way to the -old English capital. Holmes had been buried in the morning papers -all the way down, but after we had passed the Hampshire border he -threw them down and began to admire the scenery. It was an ideal -spring day, a light blue sky, flecked with little fleecy white -clouds drifting across from west to east. The sun was shining -very brightly, and yet there was an exhilarating nip in the air, -which set an edge to a man's energy. All over the countryside, -away to the rolling hills around Aldershot, the little red and -grey roofs of the farm-steadings peeped out from amid the light -green of the new foliage. - -"Are they not fresh and beautiful?" I cried with all the -enthusiasm of a man fresh from the fogs of Baker Street. - -But Holmes shook his head gravely. - -"Do you know, Watson," said he, "that it is one of the curses of -a mind with a turn like mine that I must look at everything with -reference to my own special subject. You look at these scattered -houses, and you are impressed by their beauty. I look at them, -and the only thought which comes to me is a feeling of their -isolation and of the impunity with which crime may be committed -there." - -"Good heavens!" I cried. "Who would associate crime with these -dear old homesteads?" - -"They always fill me with a certain horror. It is my belief, -Watson, founded upon my experience, that the lowest and vilest -alleys in London do not present a more dreadful record of sin -than does the smiling and beautiful countryside." - -"You horrify me!" - -"But the reason is very obvious. The pressure of public opinion -can do in the town what the law cannot accomplish. There is no -lane so vile that the scream of a tortured child, or the thud of -a drunkard's blow, does not beget sympathy and indignation among -the neighbours, and then the whole machinery of justice is ever -so close that a word of complaint can set it going, and there is -but a step between the crime and the dock. But look at these -lonely houses, each in its own fields, filled for the most part -with poor ignorant folk who know little of the law. Think of the -deeds of hellish cruelty, the hidden wickedness which may go on, -year in, year out, in such places, and none the wiser. Had this -lady who appeals to us for help gone to live in Winchester, I -should never have had a fear for her. It is the five miles of -country which makes the danger. Still, it is clear that she is -not personally threatened." - -"No. If she can come to Winchester to meet us she can get away." - -"Quite so. She has her freedom." - -"What CAN be the matter, then? Can you suggest no explanation?" - -"I have devised seven separate explanations, each of which would -cover the facts as far as we know them. But which of these is -correct can only be determined by the fresh information which we -shall no doubt find waiting for us. Well, there is the tower of -the cathedral, and we shall soon learn all that Miss Hunter has -to tell." - -The Black Swan is an inn of repute in the High Street, at no -distance from the station, and there we found the young lady -waiting for us. She had engaged a sitting-room, and our lunch -awaited us upon the table. - -"I am so delighted that you have come," she said earnestly. "It -is so very kind of you both; but indeed I do not know what I -should do. Your advice will be altogether invaluable to me." - -"Pray tell us what has happened to you." - -"I will do so, and I must be quick, for I have promised Mr. -Rucastle to be back before three. I got his leave to come into -town this morning, though he little knew for what purpose." - -"Let us have everything in its due order." Holmes thrust his long -thin legs out towards the fire and composed himself to listen. - -"In the first place, I may say that I have met, on the whole, -with no actual ill-treatment from Mr. and Mrs. Rucastle. It is -only fair to them to say that. But I cannot understand them, and -I am not easy in my mind about them." - -"What can you not understand?" - -"Their reasons for their conduct. But you shall have it all just -as it occurred. When I came down, Mr. Rucastle met me here and -drove me in his dog-cart to the Copper Beeches. It is, as he -said, beautifully situated, but it is not beautiful in itself, -for it is a large square block of a house, whitewashed, but all -stained and streaked with damp and bad weather. There are grounds -round it, woods on three sides, and on the fourth a field which -slopes down to the Southampton highroad, which curves past about -a hundred yards from the front door. This ground in front belongs -to the house, but the woods all round are part of Lord -Southerton's preserves. A clump of copper beeches immediately in -front of the hall door has given its name to the place. - -"I was driven over by my employer, who was as amiable as ever, -and was introduced by him that evening to his wife and the child. -There was no truth, Mr. Holmes, in the conjecture which seemed to -us to be probable in your rooms at Baker Street. Mrs. Rucastle is -not mad. I found her to be a silent, pale-faced woman, much -younger than her husband, not more than thirty, I should think, -while he can hardly be less than forty-five. From their -conversation I have gathered that they have been married about -seven years, that he was a widower, and that his only child by -the first wife was the daughter who has gone to Philadelphia. Mr. -Rucastle told me in private that the reason why she had left them -was that she had an unreasoning aversion to her stepmother. As -the daughter could not have been less than twenty, I can quite -imagine that her position must have been uncomfortable with her -father's young wife. - -"Mrs. Rucastle seemed to me to be colourless in mind as well as -in feature. She impressed me neither favourably nor the reverse. -She was a nonentity. It was easy to see that she was passionately -devoted both to her husband and to her little son. Her light grey -eyes wandered continually from one to the other, noting every -little want and forestalling it if possible. He was kind to her -also in his bluff, boisterous fashion, and on the whole they -seemed to be a happy couple. And yet she had some secret sorrow, -this woman. She would often be lost in deep thought, with the -saddest look upon her face. More than once I have surprised her -in tears. I have thought sometimes that it was the disposition of -her child which weighed upon her mind, for I have never met so -utterly spoiled and so ill-natured a little creature. He is small -for his age, with a head which is quite disproportionately large. -His whole life appears to be spent in an alternation between -savage fits of passion and gloomy intervals of sulking. Giving -pain to any creature weaker than himself seems to be his one idea -of amusement, and he shows quite remarkable talent in planning -the capture of mice, little birds, and insects. But I would -rather not talk about the creature, Mr. Holmes, and, indeed, he -has little to do with my story." - -"I am glad of all details," remarked my friend, "whether they -seem to you to be relevant or not." - -"I shall try not to miss anything of importance. The one -unpleasant thing about the house, which struck me at once, was -the appearance and conduct of the servants. There are only two, a -man and his wife. Toller, for that is his name, is a rough, -uncouth man, with grizzled hair and whiskers, and a perpetual -smell of drink. Twice since I have been with them he has been -quite drunk, and yet Mr. Rucastle seemed to take no notice of it. -His wife is a very tall and strong woman with a sour face, as -silent as Mrs. Rucastle and much less amiable. They are a most -unpleasant couple, but fortunately I spend most of my time in the -nursery and my own room, which are next to each other in one -corner of the building. - -"For two days after my arrival at the Copper Beeches my life was -very quiet; on the third, Mrs. Rucastle came down just after -breakfast and whispered something to her husband. - -"'Oh, yes,' said he, turning to me, 'we are very much obliged to -you, Miss Hunter, for falling in with our whims so far as to cut -your hair. I assure you that it has not detracted in the tiniest -iota from your appearance. We shall now see how the electric-blue -dress will become you. You will find it laid out upon the bed in -your room, and if you would be so good as to put it on we should -both be extremely obliged.' - -"The dress which I found waiting for me was of a peculiar shade -of blue. It was of excellent material, a sort of beige, but it -bore unmistakable signs of having been worn before. It could not -have been a better fit if I had been measured for it. Both Mr. -and Mrs. Rucastle expressed a delight at the look of it, which -seemed quite exaggerated in its vehemence. They were waiting for -me in the drawing-room, which is a very large room, stretching -along the entire front of the house, with three long windows -reaching down to the floor. A chair had been placed close to the -central window, with its back turned towards it. In this I was -asked to sit, and then Mr. Rucastle, walking up and down on the -other side of the room, began to tell me a series of the funniest -stories that I have ever listened to. You cannot imagine how -comical he was, and I laughed until I was quite weary. Mrs. -Rucastle, however, who has evidently no sense of humour, never so -much as smiled, but sat with her hands in her lap, and a sad, -anxious look upon her face. After an hour or so, Mr. Rucastle -suddenly remarked that it was time to commence the duties of the -day, and that I might change my dress and go to little Edward in -the nursery. - -"Two days later this same performance was gone through under -exactly similar circumstances. Again I changed my dress, again I -sat in the window, and again I laughed very heartily at the funny -stories of which my employer had an immense rpertoire, and which -he told inimitably. Then he handed me a yellow-backed novel, and -moving my chair a little sideways, that my own shadow might not -fall upon the page, he begged me to read aloud to him. I read for -about ten minutes, beginning in the heart of a chapter, and then -suddenly, in the middle of a sentence, he ordered me to cease and -to change my dress. - -"You can easily imagine, Mr. Holmes, how curious I became as to -what the meaning of this extraordinary performance could possibly -be. They were always very careful, I observed, to turn my face -away from the window, so that I became consumed with the desire -to see what was going on behind my back. At first it seemed to be -impossible, but I soon devised a means. My hand-mirror had been -broken, so a happy thought seized me, and I concealed a piece of -the glass in my handkerchief. On the next occasion, in the midst -of my laughter, I put my handkerchief up to my eyes, and was able -with a little management to see all that there was behind me. I -confess that I was disappointed. There was nothing. At least that -was my first impression. At the second glance, however, I -perceived that there was a man standing in the Southampton Road, -a small bearded man in a grey suit, who seemed to be looking in -my direction. The road is an important highway, and there are -usually people there. This man, however, was leaning against the -railings which bordered our field and was looking earnestly up. I -lowered my handkerchief and glanced at Mrs. Rucastle to find her -eyes fixed upon me with a most searching gaze. She said nothing, -but I am convinced that she had divined that I had a mirror in my -hand and had seen what was behind me. She rose at once. - -"'Jephro,' said she, 'there is an impertinent fellow upon the -road there who stares up at Miss Hunter.' - -"'No friend of yours, Miss Hunter?' he asked. - -"'No, I know no one in these parts.' - -"'Dear me! How very impertinent! Kindly turn round and motion to -him to go away.' - -"'Surely it would be better to take no notice.' - -"'No, no, we should have him loitering here always. Kindly turn -round and wave him away like that.' - -"I did as I was told, and at the same instant Mrs. Rucastle drew -down the blind. That was a week ago, and from that time I have -not sat again in the window, nor have I worn the blue dress, nor -seen the man in the road." - -"Pray continue," said Holmes. "Your narrative promises to be a -most interesting one." - -"You will find it rather disconnected, I fear, and there may -prove to be little relation between the different incidents of -which I speak. On the very first day that I was at the Copper -Beeches, Mr. Rucastle took me to a small outhouse which stands -near the kitchen door. As we approached it I heard the sharp -rattling of a chain, and the sound as of a large animal moving -about. - -"'Look in here!' said Mr. Rucastle, showing me a slit between two -planks. 'Is he not a beauty?' - -"I looked through and was conscious of two glowing eyes, and of a -vague figure huddled up in the darkness. - -"'Don't be frightened,' said my employer, laughing at the start -which I had given. 'It's only Carlo, my mastiff. I call him mine, -but really old Toller, my groom, is the only man who can do -anything with him. We feed him once a day, and not too much then, -so that he is always as keen as mustard. Toller lets him loose -every night, and God help the trespasser whom he lays his fangs -upon. For goodness' sake don't you ever on any pretext set your -foot over the threshold at night, for it's as much as your life -is worth.' - -"The warning was no idle one, for two nights later I happened to -look out of my bedroom window about two o'clock in the morning. -It was a beautiful moonlight night, and the lawn in front of the -house was silvered over and almost as bright as day. I was -standing, rapt in the peaceful beauty of the scene, when I was -aware that something was moving under the shadow of the copper -beeches. As it emerged into the moonshine I saw what it was. It -was a giant dog, as large as a calf, tawny tinted, with hanging -jowl, black muzzle, and huge projecting bones. It walked slowly -across the lawn and vanished into the shadow upon the other side. -That dreadful sentinel sent a chill to my heart which I do not -think that any burglar could have done. - -"And now I have a very strange experience to tell you. I had, as -you know, cut off my hair in London, and I had placed it in a -great coil at the bottom of my trunk. One evening, after the -child was in bed, I began to amuse myself by examining the -furniture of my room and by rearranging my own little things. -There was an old chest of drawers in the room, the two upper ones -empty and open, the lower one locked. I had filled the first two -with my linen, and as I had still much to pack away I was -naturally annoyed at not having the use of the third drawer. It -struck me that it might have been fastened by a mere oversight, -so I took out my bunch of keys and tried to open it. The very -first key fitted to perfection, and I drew the drawer open. There -was only one thing in it, but I am sure that you would never -guess what it was. It was my coil of hair. - -"I took it up and examined it. It was of the same peculiar tint, -and the same thickness. But then the impossibility of the thing -obtruded itself upon me. How could my hair have been locked in -the drawer? With trembling hands I undid my trunk, turned out the -contents, and drew from the bottom my own hair. I laid the two -tresses together, and I assure you that they were identical. Was -it not extraordinary? Puzzle as I would, I could make nothing at -all of what it meant. I returned the strange hair to the drawer, -and I said nothing of the matter to the Rucastles as I felt that -I had put myself in the wrong by opening a drawer which they had -locked. - -"I am naturally observant, as you may have remarked, Mr. Holmes, -and I soon had a pretty good plan of the whole house in my head. -There was one wing, however, which appeared not to be inhabited -at all. A door which faced that which led into the quarters of -the Tollers opened into this suite, but it was invariably locked. -One day, however, as I ascended the stair, I met Mr. Rucastle -coming out through this door, his keys in his hand, and a look on -his face which made him a very different person to the round, -jovial man to whom I was accustomed. His cheeks were red, his -brow was all crinkled with anger, and the veins stood out at his -temples with passion. He locked the door and hurried past me -without a word or a look. - -"This aroused my curiosity, so when I went out for a walk in the -grounds with my charge, I strolled round to the side from which I -could see the windows of this part of the house. There were four -of them in a row, three of which were simply dirty, while the -fourth was shuttered up. They were evidently all deserted. As I -strolled up and down, glancing at them occasionally, Mr. Rucastle -came out to me, looking as merry and jovial as ever. - -"'Ah!' said he, 'you must not think me rude if I passed you -without a word, my dear young lady. I was preoccupied with -business matters.' - -"I assured him that I was not offended. 'By the way,' said I, -'you seem to have quite a suite of spare rooms up there, and one -of them has the shutters up.' - -"He looked surprised and, as it seemed to me, a little startled -at my remark. - -"'Photography is one of my hobbies,' said he. 'I have made my -dark room up there. But, dear me! what an observant young lady we -have come upon. Who would have believed it? Who would have ever -believed it?' He spoke in a jesting tone, but there was no jest -in his eyes as he looked at me. I read suspicion there and -annoyance, but no jest. - -"Well, Mr. Holmes, from the moment that I understood that there -was something about that suite of rooms which I was not to know, -I was all on fire to go over them. It was not mere curiosity, -though I have my share of that. It was more a feeling of duty--a -feeling that some good might come from my penetrating to this -place. They talk of woman's instinct; perhaps it was woman's -instinct which gave me that feeling. At any rate, it was there, -and I was keenly on the lookout for any chance to pass the -forbidden door. - -"It was only yesterday that the chance came. I may tell you that, -besides Mr. Rucastle, both Toller and his wife find something to -do in these deserted rooms, and I once saw him carrying a large -black linen bag with him through the door. Recently he has been -drinking hard, and yesterday evening he was very drunk; and when -I came upstairs there was the key in the door. I have no doubt at -all that he had left it there. Mr. and Mrs. Rucastle were both -downstairs, and the child was with them, so that I had an -admirable opportunity. I turned the key gently in the lock, -opened the door, and slipped through. - -"There was a little passage in front of me, unpapered and -uncarpeted, which turned at a right angle at the farther end. -Round this corner were three doors in a line, the first and third -of which were open. They each led into an empty room, dusty and -cheerless, with two windows in the one and one in the other, so -thick with dirt that the evening light glimmered dimly through -them. The centre door was closed, and across the outside of it -had been fastened one of the broad bars of an iron bed, padlocked -at one end to a ring in the wall, and fastened at the other with -stout cord. The door itself was locked as well, and the key was -not there. This barricaded door corresponded clearly with the -shuttered window outside, and yet I could see by the glimmer from -beneath it that the room was not in darkness. Evidently there was -a skylight which let in light from above. As I stood in the -passage gazing at the sinister door and wondering what secret it -might veil, I suddenly heard the sound of steps within the room -and saw a shadow pass backward and forward against the little -slit of dim light which shone out from under the door. A mad, -unreasoning terror rose up in me at the sight, Mr. Holmes. My -overstrung nerves failed me suddenly, and I turned and ran--ran -as though some dreadful hand were behind me clutching at the -skirt of my dress. I rushed down the passage, through the door, -and straight into the arms of Mr. Rucastle, who was waiting -outside. - -"'So,' said he, smiling, 'it was you, then. I thought that it -must be when I saw the door open.' - -"'Oh, I am so frightened!' I panted. - -"'My dear young lady! my dear young lady!'--you cannot think how -caressing and soothing his manner was--'and what has frightened -you, my dear young lady?' - -"But his voice was just a little too coaxing. He overdid it. I -was keenly on my guard against him. - -"'I was foolish enough to go into the empty wing,' I answered. -'But it is so lonely and eerie in this dim light that I was -frightened and ran out again. Oh, it is so dreadfully still in -there!' - -"'Only that?' said he, looking at me keenly. - -"'Why, what did you think?' I asked. - -"'Why do you think that I lock this door?' - -"'I am sure that I do not know.' - -"'It is to keep people out who have no business there. Do you -see?' He was still smiling in the most amiable manner. - -"'I am sure if I had known--' - -"'Well, then, you know now. And if you ever put your foot over -that threshold again'--here in an instant the smile hardened into -a grin of rage, and he glared down at me with the face of a -demon--'I'll throw you to the mastiff.' - -"I was so terrified that I do not know what I did. I suppose that -I must have rushed past him into my room. I remember nothing -until I found myself lying on my bed trembling all over. Then I -thought of you, Mr. Holmes. I could not live there longer without -some advice. I was frightened of the house, of the man, of the -woman, of the servants, even of the child. They were all horrible -to me. If I could only bring you down all would be well. Of -course I might have fled from the house, but my curiosity was -almost as strong as my fears. My mind was soon made up. I would -send you a wire. I put on my hat and cloak, went down to the -office, which is about half a mile from the house, and then -returned, feeling very much easier. A horrible doubt came into my -mind as I approached the door lest the dog might be loose, but I -remembered that Toller had drunk himself into a state of -insensibility that evening, and I knew that he was the only one -in the household who had any influence with the savage creature, -or who would venture to set him free. I slipped in in safety and -lay awake half the night in my joy at the thought of seeing you. -I had no difficulty in getting leave to come into Winchester this -morning, but I must be back before three o'clock, for Mr. and -Mrs. Rucastle are going on a visit, and will be away all the -evening, so that I must look after the child. Now I have told you -all my adventures, Mr. Holmes, and I should be very glad if you -could tell me what it all means, and, above all, what I should -do." - -Holmes and I had listened spellbound to this extraordinary story. -My friend rose now and paced up and down the room, his hands in -his pockets, and an expression of the most profound gravity upon -his face. - -"Is Toller still drunk?" he asked. - -"Yes. I heard his wife tell Mrs. Rucastle that she could do -nothing with him." - -"That is well. And the Rucastles go out to-night?" - -"Yes." - -"Is there a cellar with a good strong lock?" - -"Yes, the wine-cellar." - -"You seem to me to have acted all through this matter like a very -brave and sensible girl, Miss Hunter. Do you think that you could -perform one more feat? I should not ask it of you if I did not -think you a quite exceptional woman." - -"I will try. What is it?" - -"We shall be at the Copper Beeches by seven o'clock, my friend -and I. The Rucastles will be gone by that time, and Toller will, -we hope, be incapable. There only remains Mrs. Toller, who might -give the alarm. If you could send her into the cellar on some -errand, and then turn the key upon her, you would facilitate -matters immensely." - -"I will do it." - -"Excellent! We shall then look thoroughly into the affair. Of -course there is only one feasible explanation. You have been -brought there to personate someone, and the real person is -imprisoned in this chamber. That is obvious. As to who this -prisoner is, I have no doubt that it is the daughter, Miss Alice -Rucastle, if I remember right, who was said to have gone to -America. You were chosen, doubtless, as resembling her in height, -figure, and the colour of your hair. Hers had been cut off, very -possibly in some illness through which she has passed, and so, of -course, yours had to be sacrificed also. By a curious chance you -came upon her tresses. The man in the road was undoubtedly some -friend of hers--possibly her fianc--and no doubt, as you wore -the girl's dress and were so like her, he was convinced from your -laughter, whenever he saw you, and afterwards from your gesture, -that Miss Rucastle was perfectly happy, and that she no longer -desired his attentions. The dog is let loose at night to prevent -him from endeavouring to communicate with her. So much is fairly -clear. The most serious point in the case is the disposition of -the child." - -"What on earth has that to do with it?" I ejaculated. - -"My dear Watson, you as a medical man are continually gaining -light as to the tendencies of a child by the study of the -parents. Don't you see that the converse is equally valid. I have -frequently gained my first real insight into the character of -parents by studying their children. This child's disposition is -abnormally cruel, merely for cruelty's sake, and whether he -derives this from his smiling father, as I should suspect, or -from his mother, it bodes evil for the poor girl who is in their -power." - -"I am sure that you are right, Mr. Holmes," cried our client. "A -thousand things come back to me which make me certain that you -have hit it. Oh, let us lose not an instant in bringing help to -this poor creature." - -"We must be circumspect, for we are dealing with a very cunning -man. We can do nothing until seven o'clock. At that hour we shall -be with you, and it will not be long before we solve the -mystery." - -We were as good as our word, for it was just seven when we -reached the Copper Beeches, having put up our trap at a wayside -public-house. The group of trees, with their dark leaves shining -like burnished metal in the light of the setting sun, were -sufficient to mark the house even had Miss Hunter not been -standing smiling on the door-step. - -"Have you managed it?" asked Holmes. - -A loud thudding noise came from somewhere downstairs. "That is -Mrs. Toller in the cellar," said she. "Her husband lies snoring -on the kitchen rug. Here are his keys, which are the duplicates -of Mr. Rucastle's." - -"You have done well indeed!" cried Holmes with enthusiasm. "Now -lead the way, and we shall soon see the end of this black -business." - -We passed up the stair, unlocked the door, followed on down a -passage, and found ourselves in front of the barricade which Miss -Hunter had described. Holmes cut the cord and removed the -transverse bar. Then he tried the various keys in the lock, but -without success. No sound came from within, and at the silence -Holmes' face clouded over. - -"I trust that we are not too late," said he. "I think, Miss -Hunter, that we had better go in without you. Now, Watson, put -your shoulder to it, and we shall see whether we cannot make our -way in." - -It was an old rickety door and gave at once before our united -strength. Together we rushed into the room. It was empty. There -was no furniture save a little pallet bed, a small table, and a -basketful of linen. The skylight above was open, and the prisoner -gone. - -"There has been some villainy here," said Holmes; "this beauty -has guessed Miss Hunter's intentions and has carried his victim -off." - -"But how?" - -"Through the skylight. We shall soon see how he managed it." He -swung himself up onto the roof. "Ah, yes," he cried, "here's the -end of a long light ladder against the eaves. That is how he did -it." - -"But it is impossible," said Miss Hunter; "the ladder was not -there when the Rucastles went away." - -"He has come back and done it. I tell you that he is a clever and -dangerous man. I should not be very much surprised if this were -he whose step I hear now upon the stair. I think, Watson, that it -would be as well for you to have your pistol ready." - -The words were hardly out of his mouth before a man appeared at -the door of the room, a very fat and burly man, with a heavy -stick in his hand. Miss Hunter screamed and shrunk against the -wall at the sight of him, but Sherlock Holmes sprang forward and -confronted him. - -"You villain!" said he, "where's your daughter?" - -The fat man cast his eyes round, and then up at the open -skylight. - -"It is for me to ask you that," he shrieked, "you thieves! Spies -and thieves! I have caught you, have I? You are in my power. I'll -serve you!" He turned and clattered down the stairs as hard as he -could go. - -"He's gone for the dog!" cried Miss Hunter. - -"I have my revolver," said I. - -"Better close the front door," cried Holmes, and we all rushed -down the stairs together. We had hardly reached the hall when we -heard the baying of a hound, and then a scream of agony, with a -horrible worrying sound which it was dreadful to listen to. An -elderly man with a red face and shaking limbs came staggering out -at a side door. - -"My God!" he cried. "Someone has loosed the dog. It's not been -fed for two days. Quick, quick, or it'll be too late!" - -Holmes and I rushed out and round the angle of the house, with -Toller hurrying behind us. There was the huge famished brute, its -black muzzle buried in Rucastle's throat, while he writhed and -screamed upon the ground. Running up, I blew its brains out, and -it fell over with its keen white teeth still meeting in the great -creases of his neck. With much labour we separated them and -carried him, living but horribly mangled, into the house. We laid -him upon the drawing-room sofa, and having dispatched the sobered -Toller to bear the news to his wife, I did what I could to -relieve his pain. We were all assembled round him when the door -opened, and a tall, gaunt woman entered the room. - -"Mrs. Toller!" cried Miss Hunter. - -"Yes, miss. Mr. Rucastle let me out when he came back before he -went up to you. Ah, miss, it is a pity you didn't let me know -what you were planning, for I would have told you that your pains -were wasted." - -"Ha!" said Holmes, looking keenly at her. "It is clear that Mrs. -Toller knows more about this matter than anyone else." - -"Yes, sir, I do, and I am ready enough to tell what I know." - -"Then, pray, sit down, and let us hear it for there are several -points on which I must confess that I am still in the dark." - -"I will soon make it clear to you," said she; "and I'd have done -so before now if I could ha' got out from the cellar. If there's -police-court business over this, you'll remember that I was the -one that stood your friend, and that I was Miss Alice's friend -too. - -"She was never happy at home, Miss Alice wasn't, from the time -that her father married again. She was slighted like and had no -say in anything, but it never really became bad for her until -after she met Mr. Fowler at a friend's house. As well as I could -learn, Miss Alice had rights of her own by will, but she was so -quiet and patient, she was, that she never said a word about them -but just left everything in Mr. Rucastle's hands. He knew he was -safe with her; but when there was a chance of a husband coming -forward, who would ask for all that the law would give him, then -her father thought it time to put a stop on it. He wanted her to -sign a paper, so that whether she married or not, he could use -her money. When she wouldn't do it, he kept on worrying her until -she got brain-fever, and for six weeks was at death's door. Then -she got better at last, all worn to a shadow, and with her -beautiful hair cut off; but that didn't make no change in her -young man, and he stuck to her as true as man could be." - -"Ah," said Holmes, "I think that what you have been good enough -to tell us makes the matter fairly clear, and that I can deduce -all that remains. Mr. Rucastle then, I presume, took to this -system of imprisonment?" - -"Yes, sir." - -"And brought Miss Hunter down from London in order to get rid of -the disagreeable persistence of Mr. Fowler." - -"That was it, sir." - -"But Mr. Fowler being a persevering man, as a good seaman should -be, blockaded the house, and having met you succeeded by certain -arguments, metallic or otherwise, in convincing you that your -interests were the same as his." - -"Mr. Fowler was a very kind-spoken, free-handed gentleman," said -Mrs. Toller serenely. - -"And in this way he managed that your good man should have no -want of drink, and that a ladder should be ready at the moment -when your master had gone out." - -"You have it, sir, just as it happened." - -"I am sure we owe you an apology, Mrs. Toller," said Holmes, "for -you have certainly cleared up everything which puzzled us. And -here comes the country surgeon and Mrs. Rucastle, so I think, -Watson, that we had best escort Miss Hunter back to Winchester, -as it seems to me that our locus standi now is rather a -questionable one." - -And thus was solved the mystery of the sinister house with the -copper beeches in front of the door. Mr. Rucastle survived, but -was always a broken man, kept alive solely through the care of -his devoted wife. They still live with their old servants, who -probably know so much of Rucastle's past life that he finds it -difficult to part from them. Mr. Fowler and Miss Rucastle were -married, by special license, in Southampton the day after their -flight, and he is now the holder of a government appointment in -the island of Mauritius. As to Miss Violet Hunter, my friend -Holmes, rather to my disappointment, manifested no further -interest in her when once she had ceased to be the centre of one -of his problems, and she is now the head of a private school at -Walsall, where I believe that she has met with considerable success. - - - - - - - - - -End of the Project Gutenberg EBook of The Adventures of Sherlock Holmes, by -Arthur Conan Doyle - -*** END OF THIS PROJECT GUTENBERG EBOOK THE ADVENTURES OF SHERLOCK HOLMES *** - -***** This file should be named 1661-8.txt or 1661-8.zip ***** -This and all associated files of various formats will be found in: - http://www.gutenberg.org/1/6/6/1661/ - -Produced by an anonymous Project Gutenberg volunteer and Jose Menendez - -Updated editions will replace the previous one--the old editions -will be renamed. - -Creating the works from public domain print editions means that no -one owns a United States copyright in these works, so the Foundation -(and you!) can copy and distribute it in the United States without -permission and without paying copyright royalties. Special rules, -set forth in the General Terms of Use part of this license, apply to -copying and distributing Project Gutenberg-tm electronic works to -protect the PROJECT GUTENBERG-tm concept and trademark. Project -Gutenberg is a registered trademark, and may not be used if you -charge for the eBooks, unless you receive specific permission. If you -do not charge anything for copies of this eBook, complying with the -rules is very easy. You may use this eBook for nearly any purpose -such as creation of derivative works, reports, performances and -research. They may be modified and printed and given away--you may do -practically ANYTHING with public domain eBooks. Redistribution is -subject to the trademark license, especially commercial -redistribution. - - - -*** START: FULL LICENSE *** - -THE FULL PROJECT GUTENBERG LICENSE -PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK - -To protect the Project Gutenberg-tm mission of promoting the free -distribution of electronic works, by using or distributing this work -(or any other work associated in any way with the phrase "Project -Gutenberg"), you agree to comply with all the terms of the Full Project -Gutenberg-tm License (available with this file or online at -http://gutenberg.net/license). - - -Section 1. General Terms of Use and Redistributing Project Gutenberg-tm -electronic works - -1.A. By reading or using any part of this Project Gutenberg-tm -electronic work, you indicate that you have read, understand, agree to -and accept all the terms of this license and intellectual property -(trademark/copyright) agreement. If you do not agree to abide by all -the terms of this agreement, you must cease using and return or destroy -all copies of Project Gutenberg-tm electronic works in your possession. -If you paid a fee for obtaining a copy of or access to a Project -Gutenberg-tm electronic work and you do not agree to be bound by the -terms of this agreement, you may obtain a refund from the person or -entity to whom you paid the fee as set forth in paragraph 1.E.8. - -1.B. "Project Gutenberg" is a registered trademark. It may only be -used on or associated in any way with an electronic work by people who -agree to be bound by the terms of this agreement. There are a few -things that you can do with most Project Gutenberg-tm electronic works -even without complying with the full terms of this agreement. See -paragraph 1.C below. There are a lot of things you can do with Project -Gutenberg-tm electronic works if you follow the terms of this agreement -and help preserve free future access to Project Gutenberg-tm electronic -works. See paragraph 1.E below. - -1.C. The Project Gutenberg Literary Archive Foundation ("the Foundation" -or PGLAF), owns a compilation copyright in the collection of Project -Gutenberg-tm electronic works. Nearly all the individual works in the -collection are in the public domain in the United States. If an -individual work is in the public domain in the United States and you are -located in the United States, we do not claim a right to prevent you from -copying, distributing, performing, displaying or creating derivative -works based on the work as long as all references to Project Gutenberg -are removed. Of course, we hope that you will support the Project -Gutenberg-tm mission of promoting free access to electronic works by -freely sharing Project Gutenberg-tm works in compliance with the terms of -this agreement for keeping the Project Gutenberg-tm name associated with -the work. You can easily comply with the terms of this agreement by -keeping this work in the same format with its attached full Project -Gutenberg-tm License when you share it without charge with others. - -1.D. The copyright laws of the place where you are located also govern -what you can do with this work. Copyright laws in most countries are in -a constant state of change. If you are outside the United States, check -the laws of your country in addition to the terms of this agreement -before downloading, copying, displaying, performing, distributing or -creating derivative works based on this work or any other Project -Gutenberg-tm work. The Foundation makes no representations concerning -the copyright status of any work in any country outside the United -States. - -1.E. Unless you have removed all references to Project Gutenberg: - -1.E.1. The following sentence, with active links to, or other immediate -access to, the full Project Gutenberg-tm License must appear prominently -whenever any copy of a Project Gutenberg-tm work (any work on which the -phrase "Project Gutenberg" appears, or with which the phrase "Project -Gutenberg" is associated) is accessed, displayed, performed, viewed, -copied or distributed: - -This eBook is for the use of anyone anywhere at no cost and with -almost no restrictions whatsoever. You may copy it, give it away or -re-use it under the terms of the Project Gutenberg License included -with this eBook or online at www.gutenberg.net - -1.E.2. If an individual Project Gutenberg-tm electronic work is derived -from the public domain (does not contain a notice indicating that it is -posted with permission of the copyright holder), the work can be copied -and distributed to anyone in the United States without paying any fees -or charges. If you are redistributing or providing access to a work -with the phrase "Project Gutenberg" associated with or appearing on the -work, you must comply either with the requirements of paragraphs 1.E.1 -through 1.E.7 or obtain permission for the use of the work and the -Project Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or -1.E.9. - -1.E.3. If an individual Project Gutenberg-tm electronic work is posted -with the permission of the copyright holder, your use and distribution -must comply with both paragraphs 1.E.1 through 1.E.7 and any additional -terms imposed by the copyright holder. Additional terms will be linked -to the Project Gutenberg-tm License for all works posted with the -permission of the copyright holder found at the beginning of this work. - -1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm -License terms from this work, or any files containing a part of this -work or any other work associated with Project Gutenberg-tm. - -1.E.5. Do not copy, display, perform, distribute or redistribute this -electronic work, or any part of this electronic work, without -prominently displaying the sentence set forth in paragraph 1.E.1 with -active links or immediate access to the full terms of the Project -Gutenberg-tm License. - -1.E.6. You may convert to and distribute this work in any binary, -compressed, marked up, nonproprietary or proprietary form, including any -word processing or hypertext form. However, if you provide access to or -distribute copies of a Project Gutenberg-tm work in a format other than -"Plain Vanilla ASCII" or other format used in the official version -posted on the official Project Gutenberg-tm web site (www.gutenberg.net), -you must, at no additional cost, fee or expense to the user, provide a -copy, a means of exporting a copy, or a means of obtaining a copy upon -request, of the work in its original "Plain Vanilla ASCII" or other -form. Any alternate format must include the full Project Gutenberg-tm -License as specified in paragraph 1.E.1. - -1.E.7. Do not charge a fee for access to, viewing, displaying, -performing, copying or distributing any Project Gutenberg-tm works -unless you comply with paragraph 1.E.8 or 1.E.9. - -1.E.8. You may charge a reasonable fee for copies of or providing -access to or distributing Project Gutenberg-tm electronic works provided -that - -- You pay a royalty fee of 20% of the gross profits you derive from - the use of Project Gutenberg-tm works calculated using the method - you already use to calculate your applicable taxes. The fee is - owed to the owner of the Project Gutenberg-tm trademark, but he - has agreed to donate royalties under this paragraph to the - Project Gutenberg Literary Archive Foundation. Royalty payments - must be paid within 60 days following each date on which you - prepare (or are legally required to prepare) your periodic tax - returns. Royalty payments should be clearly marked as such and - sent to the Project Gutenberg Literary Archive Foundation at the - address specified in Section 4, "Information about donations to - the Project Gutenberg Literary Archive Foundation." - -- You provide a full refund of any money paid by a user who notifies - you in writing (or by e-mail) within 30 days of receipt that s/he - does not agree to the terms of the full Project Gutenberg-tm - License. You must require such a user to return or - destroy all copies of the works possessed in a physical medium - and discontinue all use of and all access to other copies of - Project Gutenberg-tm works. - -- You provide, in accordance with paragraph 1.F.3, a full refund of any - money paid for a work or a replacement copy, if a defect in the - electronic work is discovered and reported to you within 90 days - of receipt of the work. - -- You comply with all other terms of this agreement for free - distribution of Project Gutenberg-tm works. - -1.E.9. If you wish to charge a fee or distribute a Project Gutenberg-tm -electronic work or group of works on different terms than are set -forth in this agreement, you must obtain permission in writing from -both the Project Gutenberg Literary Archive Foundation and Michael -Hart, the owner of the Project Gutenberg-tm trademark. Contact the -Foundation as set forth in Section 3 below. - -1.F. - -1.F.1. Project Gutenberg volunteers and employees expend considerable -effort to identify, do copyright research on, transcribe and proofread -public domain works in creating the Project Gutenberg-tm -collection. Despite these efforts, Project Gutenberg-tm electronic -works, and the medium on which they may be stored, may contain -"Defects," such as, but not limited to, incomplete, inaccurate or -corrupt data, transcription errors, a copyright or other intellectual -property infringement, a defective or damaged disk or other medium, a -computer virus, or computer codes that damage or cannot be read by -your equipment. - -1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the "Right -of Replacement or Refund" described in paragraph 1.F.3, the Project -Gutenberg Literary Archive Foundation, the owner of the Project -Gutenberg-tm trademark, and any other party distributing a Project -Gutenberg-tm electronic work under this agreement, disclaim all -liability to you for damages, costs and expenses, including legal -fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT -LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE -PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE -TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE -LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR -INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH -DAMAGE. - -1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a -defect in this electronic work within 90 days of receiving it, you can -receive a refund of the money (if any) you paid for it by sending a -written explanation to the person you received the work from. If you -received the work on a physical medium, you must return the medium with -your written explanation. The person or entity that provided you with -the defective work may elect to provide a replacement copy in lieu of a -refund. If you received the work electronically, the person or entity -providing it to you may choose to give you a second opportunity to -receive the work electronically in lieu of a refund. If the second copy -is also defective, you may demand a refund in writing without further -opportunities to fix the problem. - -1.F.4. Except for the limited right of replacement or refund set forth -in paragraph 1.F.3, this work is provided to you 'AS-IS' WITH NO OTHER -WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO -WARRANTIES OF MERCHANTIBILITY OR FITNESS FOR ANY PURPOSE. - -1.F.5. Some states do not allow disclaimers of certain implied -warranties or the exclusion or limitation of certain types of damages. -If any disclaimer or limitation set forth in this agreement violates the -law of the state applicable to this agreement, the agreement shall be -interpreted to make the maximum disclaimer or limitation permitted by -the applicable state law. The invalidity or unenforceability of any -provision of this agreement shall not void the remaining provisions. - -1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the -trademark owner, any agent or employee of the Foundation, anyone -providing copies of Project Gutenberg-tm electronic works in accordance -with this agreement, and any volunteers associated with the production, -promotion and distribution of Project Gutenberg-tm electronic works, -harmless from all liability, costs and expenses, including legal fees, -that arise directly or indirectly from any of the following which you do -or cause to occur: (a) distribution of this or any Project Gutenberg-tm -work, (b) alteration, modification, or additions or deletions to any -Project Gutenberg-tm work, and (c) any Defect you cause. - - -Section 2. Information about the Mission of Project Gutenberg-tm - -Project Gutenberg-tm is synonymous with the free distribution of -electronic works in formats readable by the widest variety of computers -including obsolete, old, middle-aged and new computers. It exists -because of the efforts of hundreds of volunteers and donations from -people in all walks of life. - -Volunteers and financial support to provide volunteers with the -assistance they need are critical to reaching Project Gutenberg-tm's -goals and ensuring that the Project Gutenberg-tm collection will -remain freely available for generations to come. In 2001, the Project -Gutenberg Literary Archive Foundation was created to provide a secure -and permanent future for Project Gutenberg-tm and future generations. -To learn more about the Project Gutenberg Literary Archive Foundation -and how your efforts and donations can help, see Sections 3 and 4 -and the Foundation web page at http://www.pglaf.org. - - -Section 3. Information about the Project Gutenberg Literary Archive -Foundation - -The Project Gutenberg Literary Archive Foundation is a non profit -501(c)(3) educational corporation organized under the laws of the -state of Mississippi and granted tax exempt status by the Internal -Revenue Service. The Foundation's EIN or federal tax identification -number is 64-6221541. Its 501(c)(3) letter is posted at -http://pglaf.org/fundraising. Contributions to the Project Gutenberg -Literary Archive Foundation are tax deductible to the full extent -permitted by U.S. federal laws and your state's laws. - -The Foundation's principal office is located at 4557 Melan Dr. S. -Fairbanks, AK, 99712., but its volunteers and employees are scattered -throughout numerous locations. Its business office is located at -809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887, email -business@pglaf.org. Email contact links and up to date contact -information can be found at the Foundation's web site and official -page at http://pglaf.org - -For additional contact information: - Dr. Gregory B. Newby - Chief Executive and Director - gbnewby@pglaf.org - - -Section 4. Information about Donations to the Project Gutenberg -Literary Archive Foundation - -Project Gutenberg-tm depends upon and cannot survive without wide -spread public support and donations to carry out its mission of -increasing the number of public domain and licensed works that can be -freely distributed in machine readable form accessible by the widest -array of equipment including outdated equipment. Many small donations -($1 to $5,000) are particularly important to maintaining tax exempt -status with the IRS. - -The Foundation is committed to complying with the laws regulating -charities and charitable donations in all 50 states of the United -States. Compliance requirements are not uniform and it takes a -considerable effort, much paperwork and many fees to meet and keep up -with these requirements. We do not solicit donations in locations -where we have not received written confirmation of compliance. To -SEND DONATIONS or determine the status of compliance for any -particular state visit http://pglaf.org - -While we cannot and do not solicit contributions from states where we -have not met the solicitation requirements, we know of no prohibition -against accepting unsolicited donations from donors in such states who -approach us with offers to donate. - -International donations are gratefully accepted, but we cannot make -any statements concerning tax treatment of donations received from -outside the United States. U.S. laws alone swamp our small staff. - -Please check the Project Gutenberg Web pages for current donation -methods and addresses. Donations are accepted in a number of other -ways including including checks, online payments and credit card -donations. To donate, please visit: http://pglaf.org/donate - - -Section 5. General Information About Project Gutenberg-tm electronic -works. - -Professor Michael S. Hart is the originator of the Project Gutenberg-tm -concept of a library of electronic works that could be freely shared -with anyone. For thirty years, he produced and distributed Project -Gutenberg-tm eBooks with only a loose network of volunteer support. - - -Project Gutenberg-tm eBooks are often created from several printed -editions, all of which are confirmed as Public Domain in the U.S. -unless a copyright notice is included. Thus, we do not necessarily -keep eBooks in compliance with any particular paper edition. - - -Most people start at our Web site which has the main PG search facility: - - http://www.gutenberg.net - -This Web site includes information about Project Gutenberg-tm, -including how to make donations to the Project Gutenberg Literary -Archive Foundation, how to help produce our new eBooks, and how to -subscribe to our email newsletter to hear about new eBooks. diff --git a/Students/CarolynEvans/session04/labs.py b/Students/CarolynEvans/session04/labs.py deleted file mode 100644 index b35525a7..00000000 --- a/Students/CarolynEvans/session04/labs.py +++ /dev/null @@ -1,89 +0,0 @@ - -def dict_lab(): - # 1. - d = {'name': 'Chris', 'city': 'Seattle', 'cake': 'Chocolate'} - print d - d.pop('cake') - print d - d.setdefault('fruit', 'Mango') - print d - print d.viewkeys() - print d.viewvalues() - print 'cake' in d.keys() - print 'Mango' in d.values() - -def dict_zip(): - # 2. - l = list(range(0,16)) - print l - print '' - - m = [] - for i in range(16): - m.append(hex(i)) - print m - print '' - - d = dict(zip(l,m)) - print d - -def dict_tees(): - # 3. - d = {'name': 'Chris', 'city': 'Seattle', 'cake': 'Chocolate'} - for key in d.iterkeys(): - d[key] = d[key].count('t') - - print d - -def set_lab1(): - s2 = set(range(0,21,2)) - print s2 - s3 = set(range(0,21,3)) - print s3 - s4 = set(range(0,21,4)) - print s4 - print s3.issubset(s2) - print s4.issubset(s2) - -def set_lab2(): - s = set(['P','y','t','h','o','n']) - s |= {'i'} - print s - - fs = set(['m','a','r','a','t','h','o','n']) - print fs - print 'Union: ', fs.union(s) - print 'Intersection: ', fs.intersection(s) - -def safe_input(label): - try: - safeinput = raw_input(label) - return safeinput - except: - return None - - -def files_lab(): - languages = [] - for student in open('../../../Examples/Session01/students.txt'): - student = student.strip() - # Converts student languages to a list. - # Strips leading spaces and converts to lower case for later grouping. - studentlanguages = student.split(":")[1].lower().strip() - languages.extend(studentlanguages.split(",")) - - languages.remove('languages') - - # Jam packed stagement. - # Counts the number of occurences of each language string. - # Ignores keys (languages) that are empty strings or None. - languagedict = dict((language, languages.count(language)) for language in languages if language) - - for language, kount in languagedict.iteritems(): - print language.strip(), kount - - -# safeinput = safe_input('Enter here: ') -# print safeinput - -files_lab() \ No newline at end of file diff --git a/Students/CarolynEvans/session04/ngrams.py b/Students/CarolynEvans/session04/ngrams.py deleted file mode 100644 index f6d96595..00000000 --- a/Students/CarolynEvans/session04/ngrams.py +++ /dev/null @@ -1,58 +0,0 @@ -def ngrams(nkey=2,nvalue=1,filename='sherlock.txt'): - - __author__ = 'carolyn.evans' - - """ - This function builds a dictionary by looking at sets of words in the given file. - Words are are made up of the letters 'a' through 'z' and separated by a space. - Numbers and punctuation are removed. - - Output is written to a file called ngram.txt. - - :param nkey: Parameter nkey is the number of words to include in the dictionary key. - :param nvalue: Parameter nvalue is the number of words to include in the dictionary value. - :param filename: Parameter 'filename' is the name of the file containing the text to be processed. - """ - - import re # regex - from collections import defaultdict - - wordlist = [] - # Put each word into a list. - for line in open('sherlock.txt'): - # Use regex (re) to get rid of everything except alphabetic characters. - # Convert to lower case for grouping when you are playing around with the output file. - # Split into list by splitting on the space between each word. - wordlist.extend(re.sub("[^a-zA-Z ]+", "", line).lower().split(" ")) - - # Get rid of empty entries - wordlist = filter(None, wordlist) - - # print wordlist - - # Build the dictionary of ngrams. - ngramdict = defaultdict(list) - for i in range(0,len(wordlist) - nkey - nvalue): - # Build the key - k = str(wordlist[i]) - for j in range(i+1, i+nkey): - k += ' ' + wordlist[j] - - #Build the value - v = str(wordlist[i + nkey]) - for j in range(i+1+nkey, i+nkey+nvalue): - v += ' ' + wordlist[j] - - # Append the key:value to the dictionary - ngramdict[k].append(v) - - # print ' ' - # print ngramdict - - # Write the ngram dictionary to a file. - ngram = open('ngram.txt', 'w') - - for item in ngramdict.iteritems(): - ngram.write(str(item)) - -ngrams(2,1) \ No newline at end of file diff --git a/Students/CarolynEvans/session05/classroom.py b/Students/CarolynEvans/session05/classroom.py deleted file mode 100644 index 9e8f2a0f..00000000 --- a/Students/CarolynEvans/session05/classroom.py +++ /dev/null @@ -1,18 +0,0 @@ -def colors(fore_color='red', back_color='yellow', link_color='blue', visited_color='green'): - print fore_color - print back_color - print link_color - print visited_color - -def colors_kwargs(**kwargs): - for key, value in kwargs.iteritems(): - print 'key = {}'.format(key) - print 'value = {}'.format(value) - - - -# colors('darkred', 'darkyellow', 'darkblue', 'darkgreen') - - -colors_kwargs(fore_color='darkred', back_color = 'darkyellow', link_color ='darkblue', visited_color ='darkgreen') - diff --git a/Students/CarolynEvans/session05/comps.py b/Students/CarolynEvans/session05/comps.py deleted file mode 100644 index 984a0a1b..00000000 --- a/Students/CarolynEvans/session05/comps.py +++ /dev/null @@ -1,24 +0,0 @@ -# These functions are not tested by a test script. - -def comp1(): - feast = ['lambs', 'sloths', 'orangutans', 'breakfast cereals', 'fruit bats'] - - comprehension = [delicacy.capitalize() for delicacy in feast] - print comprehension - print comprehension[0] - print comprehension[2] - -def comp2(): - feast = ['spam', 'sloths', 'orangutans', 'breakfast cereals', 'fruit bats'] - comprehension = [delicacy for delicacy in feast if len(delicacy) > 6] - print comprehension - - print len(feast) - print len(comprehension) - - -def comp3(): - list_of_tuples = [(1, 'lumberjack'), (2, 'inquisition'), (4, 'spam')] - comprehension = [ skit * number for number, skit in list_of_tuples ] - print comprehension - diff --git a/Students/CarolynEvans/session05/comps_tested.py b/Students/CarolynEvans/session05/comps_tested.py deleted file mode 100644 index 32f97533..00000000 --- a/Students/CarolynEvans/session05/comps_tested.py +++ /dev/null @@ -1,25 +0,0 @@ - -# The following functions are tested in test.py - -def count_evens(nums): - return len([x for x in nums if x%2==0]) - -def print_food_prefs(d): - return "{name} is from {city}, and he likes {cake} cake, {fruit} fruit, {salad} salad, and {pasta} pasta.".format(**d) - -def hex_dict(): - return { i: hex(i) for i in range(0,16) } - -def count_a(d): - return { k:v.count('a') for k, v in d.iteritems()} - -def mod_0_list(*args, **kwargs): - """ - This functions returns sets of numbers that are evenly divisible by the given divisors. - :param args: Contains the list of divisors. - :param kwargs: Contains the beginning and ending numbers of the range to be tested. - :return: Returns a list of numbers for each given divisor. - """ - return [[i for i in range(kwargs['start'], kwargs['end'] + 1) if i%divisor == 0] for divisor in args] - - diff --git a/Students/CarolynEvans/session05/mailroom.py b/Students/CarolynEvans/session05/mailroom.py deleted file mode 100644 index bd15d32d..00000000 --- a/Students/CarolynEvans/session05/mailroom.py +++ /dev/null @@ -1,26 +0,0 @@ - - -def send_thanks(): - return 'send_thanks' - - -def create_report(): - return 'create_report' - -def main(): - menu_choice = 0 - - while menu_choice not in (1,2): - print menu_choice - - menu_choice = raw_input("Enter 1 to send a thank you. \nEnter 2 to create a report.") - - if menu_choice == 1: - send_thanks() - - elif menu_choice == 2: - create_report() - -if __name__ == '__main__': - main() - diff --git a/Students/CarolynEvans/session05/test.py b/Students/CarolynEvans/session05/test.py deleted file mode 100644 index 97e69851..00000000 --- a/Students/CarolynEvans/session05/test.py +++ /dev/null @@ -1,22 +0,0 @@ -from comps_tested import count_evens, print_food_prefs, hex_dict, count_a, mod_0_list - -assert count_evens([2, 1, 2, 3, 4]) == 3 -assert count_evens([2, 2, 0]) == 3 -assert count_evens([1, 3, 5]) == 0 - - - -food_prefs = {"name": u"Chris", - u"city": u"Seattle", - u"cake": u"chocolate", - u"fruit": u"mango", - u"salad": u"greek", - u"pasta": u"lasagna"} - -assert print_food_prefs(food_prefs) == 'Chris is from Seattle, and he likes chocolate cake, mango fruit, greek salad, and lasagna pasta.' - -assert str(hex_dict()) == "{0: '0x0', 1: '0x1', 2: '0x2', 3: '0x3', 4: '0x4', 5: '0x5', 6: '0x6', 7: '0x7', 8: '0x8', 9: '0x9', 10: '0xa', 11: '0xb', 12: '0xc', 13: '0xd', 14: '0xe', 15: '0xf'}" - -assert str(count_a(food_prefs)) == "{u'city': 1, 'name': 0, u'salad': 0, u'cake': 1, u'fruit': 1, u'pasta': 3}" - -assert str(mod_0_list(2, 3, 4, start=0, end=20))== "[[0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20], [0, 3, 6, 9, 12, 15, 18], [0, 4, 8, 12, 16, 20]]" \ No newline at end of file diff --git a/Students/CarolynEvans/session05/thankyounote.txt b/Students/CarolynEvans/session05/thankyounote.txt deleted file mode 100644 index bb3a2994..00000000 --- a/Students/CarolynEvans/session05/thankyounote.txt +++ /dev/null @@ -1,6 +0,0 @@ -Dear {person}, - -Thank you for your generous donation of {amount]. Your dollars go to help the needy. Without people like you, this would not be possible.lambda - -Sincerely, -The Charity diff --git a/Students/CarolynEvans/session06/html_render.py b/Students/CarolynEvans/session06/html_render.py deleted file mode 100644 index f576edf2..00000000 --- a/Students/CarolynEvans/session06/html_render.py +++ /dev/null @@ -1,122 +0,0 @@ -class Element(object): - tag = '' - indent = ' ' - - def __init__(self, content=None, **attributes): - - self.content = [] - self.attributes = attributes - - if content is not None: - self.content.append(content) - - def append(self, content): - """ - add some new content to the element - might want to apply html entities to this user input - """ - self.content.append(content) - - - def render_tag(self,current_indent): - attrs = "".join([' {}="{}"'.format(key,val) for key, val in self.attributes.items()]) - tag_str = "{}<{}{}>".format(current_indent, self.tag, attrs) - return tag_str - - def render(self, file_out, current_indent=""): - """render the content to the given file like object""" - file_out.write(self.render_tag(current_indent)) - file_out.write('\n') - for con in self.content: - try: - file_out.write(self.indent + current_indent + con+"\n") - except TypeError: - con.render(file_out, current_indent + self.indent) - file_out.write("{}\n".format(current_indent,self.tag)) - - -class OneLineTag(Element): - def render(self, file_out, current_indent=""): - file_out.write(self.render_tag(current_indent)) - for con in self.content: - try: - file_out.write(con+"") - except TypeError: - con.render(file_out, current_indent + self.indent) - file_out.write("".format(self.tag)) - -class Title(OneLineTag): - tag = 'title' - -class SelfClosingTag(OneLineTag): - def render(self, file_out, current_indent=""): - file_out.write("{}<{}>".format(current_indent, self.tag)) - - -class Hr(SelfClosingTag): - tag = 'hr' - - -class A(OneLineTag): - tag = 'a' - def __init__(self, link, content, **attributes): - OneLineTag.__init__(self, content=None, **attributes) - self.attributes["href"] = link - -class H(OneLineTag): - tag = 'h' - def __init__(self, level, content=None, **attributes): - OneLineTag.__init__(self, content, **attributes) - self.tag = "h%i"%(level) - -class Ul(Element): - tag = 'ul' - -class Li(Element): - tag = 'li' - -class Html(Element): - tag = 'html' - def render(self, file_out, current_indent=""): - file_out.write("\n") - Element.render(self, file_out, current_indent=self.indent) - - -class Body(Element): - tag = 'body' - - - -class P(Element): - tag = 'p' - - -''' - - - - - PythonClass = Revision 1087: - - -

    PythonClass - Class 6 example

    -

    - Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text -

    -
    -
      -
    • - The first item in a list -
    • -
    • - This is the second item -
    • -
    • - And this is a - link - to google -
    • -
    - - -''' \ No newline at end of file diff --git a/Students/CarolynEvans/session06/labs.py b/Students/CarolynEvans/session06/labs.py deleted file mode 100644 index 45bec310..00000000 --- a/Students/CarolynEvans/session06/labs.py +++ /dev/null @@ -1,31 +0,0 @@ -def function_builder(num): - l=[] - for y in range(0, num): - l.append(lambda x=y, y=num: x+y) - - return l - -def function_builder_comprehension(num): - l = [lambda x=y, y=num: x+y for y in range(0,num)] - - return l - -print "\nfunction list built with loop" -x=4 -the_list = function_builder(x) -for i in range(x): - print "{} + {} = {}".format(i, x, the_list[i](i)) - -print "\nfunction list built with comprehension" -x=4 -the_list = function_builder_comprehension(x) -for i in range(x): - print "{} + {} = {}".format(i, x, the_list[i](i)) - - - - - - - - diff --git a/Students/Chantal_H/Session03/ROT13.py b/Students/Chantal_H/Session03/ROT13.py deleted file mode 100644 index df677bfa..00000000 --- a/Students/Chantal_H/Session03/ROT13.py +++ /dev/null @@ -1,3 +0,0 @@ -## Zntargvp sebz bhgfvqr arne pbeare - -letters = 'Zntargvp sebz bhgfvqr arne pbeare' diff --git a/Students/Chantal_H/Session03/Slicing.py b/Students/Chantal_H/Session03/Slicing.py deleted file mode 100644 index a7df5758..00000000 --- a/Students/Chantal_H/Session03/Slicing.py +++ /dev/null @@ -1,102 +0,0 @@ -string = "Today is October 14" - -string[0] string[-1] - -string[::2] - -string[4:-4:2] - -string[::-1] - -def slice(string): - x = len(string)/3 - first = string[0:x-1] - mid = string[x:x+(x-1)] - last = string[:] - -len(string)/3 -##6 -mid = string[6:11] -first = string[0:5] -last = string[12:18] -result = mid + last + first -result - - - -## List Lab -fruit = ['Apples', 'Pears', 'Oranges', 'Peaches'] -fruit - -## Add fruit to the end -ask = raw_input("What is another fruit?") - ## Grapes -ask -fruit.append(ask) -fruit - -## Display number corresponding to fruit -ask2 = raw_input("Number: ") - ##3 -ask2 -ask2 = int(ask2) -ask2 = ask2 - 1 -fruit[ask2] - -## Add fruit to the beginning using + -ask3 = raw_input("What is another fruit?") - ##Mangos -ask3 -ask3 = [ask3] -fruit = ask3 + fruit - -## Add fruit to the beginning with insert -ask4 = raw_input("What is another fruit?") - ##Blueberries -fruit - -## Display fruits beginning with P -for x in fruit: - if x[:1] == 'P': - print x - -## Display List -fruit -## Remove the last fruit from the list. -fruit.pop(-1) -print fruit - -## Ask the user for a fruit to delete and find it and delete it. -ask5 = raw_input("Delete a fruit: ") - ##Apples -fruit.remove(ask5) -print fruit -## (Bonus: Multiply the list times two. Keep asking until a match is found. Once found, delete all occurrences.) -fruit_copy = fruit[:] *2 -############################## -for x in fruit_copy: - if x(fruit) == fruit - fruit.remove(x) -############################## - -## Ask the user for input displaying a line like “Do you like apples?” -## for each fruit in the list (making the fruit all lowercase). -## For each “no”, delete that fruit from the list. -## For any answer that is not “yes” or “no”, prompt the user to answer with one of those two values (a while loop is good here): -ask6 = raw_input("Do you like apples?") - -for x in fruit: - fruit.lower([]) - print fruit - -for x in fruit: - ask6 = raw_input("Do you like apples?") - if ask6 == 'no': - fruit.remove(x) - - else ask == 'yes' - - while ask6 != 'no' or 'yes': - - -##test \ No newline at end of file diff --git a/Students/Chantal_H/Session03/Task3.py b/Students/Chantal_H/Session03/Task3.py deleted file mode 100644 index f8c88e27..00000000 --- a/Students/Chantal_H/Session03/Task3.py +++ /dev/null @@ -1 +0,0 @@ -## Task 3 \ No newline at end of file diff --git a/Students/Danielle_Marcos/session01/break_me.py b/Students/Danielle_Marcos/session01/break_me.py deleted file mode 100644 index 016dcdeb..00000000 --- a/Students/Danielle_Marcos/session01/break_me.py +++ /dev/null @@ -1,17 +0,0 @@ -def myNameError(): - a > 0 - -def myTypeError(): - print 1 + 'ten' - -def mySyntaxError(): - print 'Hello World - -def myAttributeError(): - words="GreatTimes" - words.lowercase - -#myNameError() -#myTypeError() -#mySyntaxError() -myAttributeError() \ No newline at end of file diff --git a/Students/Danielle_Marcos/session01/task5.py b/Students/Danielle_Marcos/session01/task5.py deleted file mode 100644 index 2078e042..00000000 --- a/Students/Danielle_Marcos/session01/task5.py +++ /dev/null @@ -1,13 +0,0 @@ -def print_grid(size): - number = 2 - box_size = int((size-1) // 2) -print "box_size", box_size - - top = ('+' + '-' * box_size) * number + '+' + '\\n' - middle = ('|' + ' ' * 2 * box_size) * number + '|' + '\\n' - - row = top + middle*box_size - - grid = row*number + top - - print_grid() \ No newline at end of file diff --git a/Students/Danielle_Marcos/session02/ack.py b/Students/Danielle_Marcos/session02/ack.py deleted file mode 100644 index 91a0ede4..00000000 --- a/Students/Danielle_Marcos/session02/ack.py +++ /dev/null @@ -1,40 +0,0 @@ -def ack (m, n): - """Return a value based on the Ackermann-Peter function.""" - - if m == 0: - return n + 1 - elif m > 0 and n == 0: - return ack(m-1, 1) - elif m > 0 and n > 0: - return ack(m-1, ack(m, n-1)) - elif m < 0 and n < 0: - return None - -if __name__ == "__main__": - - assert ack(0,0) == 1 - assert ack(0,1) == 2 - assert ack(0,2) == 3 - assert ack(0,3) == 4 - assert ack(0,4) == 5 - - assert ack(1,0) == 2 - assert ack(1,1) == 3 - assert ack(1,2) == 4 - assert ack(1,3) == 5 - assert ack(1,4) == 6 - - assert ack(2,0) == 3 - assert ack(2,1) == 5 - assert ack(2,2) == 7 - assert ack(2,3) == 9 - assert ack(2,4) == 11 - - assert ack(3,0) == 5 - assert ack(3,1) == 13 - assert ack(3,2) == 29 - assert ack(3,3) == 61 - assert ack(3,4) == 125 - - print"" - print "All Tests Pass" \ No newline at end of file diff --git a/Students/Danielle_Marcos/session02/main.py b/Students/Danielle_Marcos/session02/main.py deleted file mode 100644 index 1e9fec9b..00000000 --- a/Students/Danielle_Marcos/session02/main.py +++ /dev/null @@ -1,5 +0,0 @@ -import ack - - -ack.ack(0,1) -print "hi" \ No newline at end of file diff --git a/Students/Danielle_Marcos/session02/series.py b/Students/Danielle_Marcos/session02/series.py deleted file mode 100644 index 070ba84c..00000000 --- a/Students/Danielle_Marcos/session02/series.py +++ /dev/null @@ -1,74 +0,0 @@ -def fibonacci(n): - """Return the n value based on the Fibonacci series.""" - if n <= 0: - return 0 - elif n == 1: - return 1 - else: - return fibonacci(n-1) + fibonacci(n-2) - -def lucas(n): - """Return the n value in the Lucas Numbers.""" - if n <= 0: - return 2 - elif n == 1: - return 1 - else: - return lucas(n-1) + lucas(n-2) - -def sum_series(n, x=0, y=1): - if n <= 0: - return x - elif n == 1: - return y - else: - return sum_series(n-1, x, y) + sum_series(n-2, x, y) - -if __name__ == "__main__": - """Validate that when an nth values are passed different positions are returned""" - -# Validate Fibonacci tests pass successfully. - assert fibonacci(0) == 0 - assert fibonacci(1) == 1 - assert fibonacci(2) == 1 - assert fibonacci(3) == 2 - assert fibonacci(4) == 3 - assert fibonacci(5) == 5 - assert fibonacci(6) == 8 - assert fibonacci(7) == 13 - -# Validate Lucas tests pass successfully. - - assert lucas(0) == 2 - assert lucas(1) == 1 - assert lucas(2) == 3 - assert lucas(3) == 4 - assert lucas(4) == 7 - assert lucas(5) == 11 - assert lucas(6) == 18 - assert lucas(7) == 29 - -# Validate sum_series tests for Fibonacci pass successfully. - - assert sum_series(0) == 0 - assert sum_series(1) == 1 - assert sum_series(2) == 1 - assert sum_series(3) == 2 - assert sum_series(4) == 3 - assert sum_series(5) == 5 - assert sum_series(6) == 8 - assert sum_series(7) == 13 - -# Validate sum_series tests for Lucas pass successfully. - - assert sum_series(0) == 0 - assert sum_series(1) == 1 - assert sum_series(2) == 1 - assert sum_series(3) == 2 - assert sum_series(4) == 3 - assert sum_series(5) == 5 - assert sum_series(6) == 8 - assert sum_series(7) == 13 - - print "" - print "All Tests Pass" \ No newline at end of file diff --git a/Students/Danielle_Marcos/session03/list_lab.py b/Students/Danielle_Marcos/session03/list_lab.py deleted file mode 100644 index d6c9812a..00000000 --- a/Students/Danielle_Marcos/session03/list_lab.py +++ /dev/null @@ -1,53 +0,0 @@ -mylist = ["apples", "pears", "oranges", "peaches"] -print mylist - -addfruit = raw_input ("Which fruit would you like to add?") -mylist.append(addfruit) -print mylist - -asknumber = int(raw_input("Give me a number and I will show you that fruit!")) -if (asknumber >= 1) and (asknumber <= len(mylist)): - print str(asknumber) + " " + mylist[asknumber - 1] -else: - print "Your number is out of range." - -print ["Kiwis"] + mylist - -mylist.insert(0, "melons") -print mylist - -for item in mylist: - if item.startswith("p"): - print item - -print mylist -del mylist[len(mylist)-1] -print mylist - -removefruit = raw_input ("Which fruit would like you remove?") -mylist.remove(removefruit) -print mylist - -for item in mylist: - checkfruit = raw_input("Do you like %s?" %item) - checkfruit = checkfruit.lower() - if checkfruit == "yes": - print mylist - if checkfruit == "no": - del item - while checkfruit != "yes" and checkfruit != "no": - print ("Please enter either 'yes' or 'no'.") - checkfruit = raw_input("Do you like %s?" %item) -print mylist - -mylist_copy = mylist[:] -print mylist_copy - -for item in mylist_copy: - reversed_mylist_copy = item[::-1] - print reversed_mylist_copy - -print mylist -del mylist[len(mylist)-1] -print mylist -print mylist_copy diff --git a/Students/Dave Fugelso/Lightning Talk/one.py b/Students/Dave Fugelso/Lightning Talk/one.py deleted file mode 100644 index 474ee472..00000000 --- a/Students/Dave Fugelso/Lightning Talk/one.py +++ /dev/null @@ -1,115 +0,0 @@ - -original = ''' -518659005232r583491410442e291745698219m421410443129o162080940635v32416189681e64832 -3758660l64832378918a291745692333r648323762540g324161887930e680739944367s22691331914 -3t129664756724p486242827755r648323758580i97248568173m486242846295e421410460783 -''' - -originalParsedText = ''' -518659005232 -r -583491410442 -e -291745698219 -m -421410443129 -o -162080940635 -v -32416189681 -e -648323758660 -l -64832378918 -a -291745692333 -r -648323762540 -g -324161887930 -e -680739944367 -s -226913319143 -t -129664756724 -p -486242827755 -r -648323758580 -i -97248568173 -m -486242846295 -e -421410460783 -''' - - -a = ''' -486242831895 -551075217947 -259329507176 -388994275884 -129664751092 -0 -615907574147 -32416188601 -259329512488 -615907584293 -291745691343 -648323773780 -194497138302 -97248563157 -453826655534 -615907594667 -64832376454 -453826635794 -388994273508 -''' - -#Code posted on Daniwe.com by a moderators named -# prime numbers are only divisible by unity and themselves -# (1 is not considered a prime number by convention) -def isprime(n): - '''check if integer n is a prime''' - # make sure n is a positive integer - n = abs(int(n)) - # 0 and 1 are not primes - if n < 2: - return False - # 2 is the only even prime number - if n == 2: - return True - # all other even numbers are not primes - if not n & 1: - return False - # range starts with 3 and only needs to go up the squareroot of n - # for all odd numbers - for x in range(3, int(n**0.5)+1, 2): - if n % x == 0: - return False - return True - -def solve(): - ''' - Find out which of the number above are prime - ''' - - b = a.split() - primes = list() - - for line in b: - i = int(line) - print 'checking', i, - if isprime(i): - print 'is prime' - else: - print 'is not prime' - - - - - - -solve() \ No newline at end of file diff --git a/Students/Dave Fugelso/Lightning Talk/prime.py b/Students/Dave Fugelso/Lightning Talk/prime.py deleted file mode 100644 index f3b7b57b..00000000 --- a/Students/Dave Fugelso/Lightning Talk/prime.py +++ /dev/null @@ -1,128 +0,0 @@ - -original = ''' -518659005232r583491410442e291745698219m421410443129o162080940635v32416189681e64832 -3758660l64832378918a291745692333r648323762540g324161887930e680739944367s22691331914 -3t129664756724p486242827755r648323758580i97248568173m486242846295e421410460783 -''' - -originalParsedText = ''' -518659005232 -r -583491410442 -e -291745698219 -m -421410443129 -o -162080940635 -v -32416189681 -e -648323758660 -l -64832378918 -a -291745692333 -r -648323762540 -g -324161887930 -e -680739944367 -s -226913319143 -t -129664756724 -p -486242827755 -r -648323758580 -i -97248568173 -m -486242846295 -e -421410460783 -''' - - -nums = ''' -486242831895 -551075217947 -259329507176 -388994275884 -129664751092 -0 -615907574147 -32416188601 -259329512488 -615907584293 -291745691343 -648323773780 -194497138302 -97248563157 -453826655534 -615907594667 -64832376454 -453826635794 -388994273508 -''' - -#Code posted on Daniwe.com by a moderators named -def isprime(n): - '''check if integer n is a prime''' - # make sure n is a positive integer - n = abs(int(n)) - # 0 and 1 are not primes - if n < 2: - return n, 'False' - # 2 is the only even prime number - if n == 2: - return 2, 'True' - # all other even numbers are not primes - if not n & 1: - return n/2, 'False' - # range starts with 3 and only needs to go up the squareroot of n - # for all odd numbers - for x in range(3, int(n**0.5)+1, 2): - if n % x == 0: - return n/x, 'False' - return n, 'True' - -def solve(): - ''' - Process a list of numbers and factor out the largest prime number in each. - Add 65 to the number left and convert to a character - ''' - - numbers = nums.split() - largestPrimesGone = list() - - for line in numbers: - i = int(line) - print 'checking', i - n, prime = isprime(i) - while prime == 'False' and n > 2: - print 'was not prime now checking', n - n, prime = isprime(n) - - print 'largest prime is ', n - if n != 0: - n = i / n - print 'new num is ', n - largestPrimesGone.append(n) - - - addr = '' - for line in largestPrimesGone: - print line - addr = addr + str(unichr(line+65)) - - - print addr - - - - - -solve() diff --git a/Students/Dave Fugelso/Lightning Talk/puzzle listing.png b/Students/Dave Fugelso/Lightning Talk/puzzle listing.png deleted file mode 100644 index 94af8608..00000000 Binary files a/Students/Dave Fugelso/Lightning Talk/puzzle listing.png and /dev/null differ diff --git a/Students/Dave Fugelso/Lightning Talk/two.py b/Students/Dave Fugelso/Lightning Talk/two.py deleted file mode 100644 index f73a3fd6..00000000 --- a/Students/Dave Fugelso/Lightning Talk/two.py +++ /dev/null @@ -1,120 +0,0 @@ -original = ''' -518659005232r583491410442e291745698219m421410443129o162080940635v32416189681e64832 -3758660l64832378918a291745692333r648323762540g324161887930e680739944367s22691331914 -3t129664756724p486242827755r648323758580i97248568173m486242846295e421410460783 -''' - -originalParsedText = ''' -518659005232 -r -583491410442 -e -291745698219 -m -421410443129 -o -162080940635 -v -32416189681 -e -648323758660 -l -64832378918 -a -291745692333 -r -648323762540 -g -324161887930 -e -680739944367 -s -226913319143 -t -129664756724 -p -486242827755 -r -648323758580 -i -97248568173 -m -486242846295 -e -421410460783 -''' - -nums = ''' -486242831895 -551075217947 -259329507176 -388994275884 -129664751092 -0 -615907574147 -32416188601 -259329512488 -615907584293 -291745691343 -648323773780 -194497138302 -97248563157 -453826655534 -615907594667 -64832376454 -453826635794 -388994273508 -''' - - -def isprime(n): - '''check if integer n is a prime''' - # make sure n is a positive integer - n = abs(int(n)) - # 0 and 1 are not primes - if n < 2: - return n, False - # 2 is the only even prime number - if n == 2: - return 2, True - # all other even numbers are not primes - if not n & 1: - return n/2, False - # range starts with 3 and only needs to go up the squareroot of n - # for all odd numbers - for x in range(3, int(n**0.5)+1, 2): - if n % x == 0: - return n/x, False - return True - -def solve(): - ''' - Process a list of numbers and factor out the largest prime number in each. - ''' - - b = nums.split() - primes = list() - - for line in b: - i = int(line) - print 'checking', i - n, prime = isprime(i) - while not prime and n > 2: - print 'was not prime now checking', n - n, prime = isprime(n) - - print 'largest prime is ', n - if n != 0: - n = i / n - print 'new num is ', n - primes.append(n) - - - print 'List is ' - for n in primes: - print n - - - - -solve() \ No newline at end of file diff --git a/Students/Dave Fugelso/Project/Alpine/TestHarness.py b/Students/Dave Fugelso/Project/Alpine/TestHarness.py deleted file mode 100644 index b6b18cf3..00000000 --- a/Students/Dave Fugelso/Project/Alpine/TestHarness.py +++ /dev/null @@ -1,262 +0,0 @@ -# -# TestHarness.py -# Copyright (c) 2014 Airbiquity -# -# The tester emulates the body of requests coming over the network interface -# - -import sys -import threading -import json -import time -import Templates -import FileCache -import logger - -# Remove this import if non interface to Alpine -import HupInterface - -msglogger = logger.Logger() - - -''' -The following are test for the Template interface -''' - -def testTemplate1 (filename): - #print 'template1 file: ' + filename - #msglogger.logMessage(logger.DEBUG, 'testTemplate1', filename) - try: - with open(filename) as tmp1_file: - t = Templates.Template1 () - t.HandleRequest (tmp1_file.read()) - #print json.dumps(tmp1_file, indent=2) - except IOError as e: - print 'File read error' # TBD goes to error handler - -def testTemplate2 (filename): - try: - with open(filename) as tmp1_file: - t = Templates.Template2 () - t.HandleRequest (tmp1_file.read()) - #print json.dumps(tmp1_file, indent=2) - except IOError as e: - print 'File read error' # TBD goes to error handler - -def testTemplate3 (filename): - try: - with open(filename) as tmp1_file: - t = Templates.Template3 () - t.HandleRequest (tmp1_file.read()) - #print json.dumps(tmp1_file, indent=2) - except IOError as e: - print 'File read error' # TBD goes to error handler - -def testTemplate4 (filename): - try: - with open(filename) as tmp1_file: - t = Templates.Template4 () - t.HandleRequest (tmp1_file.read()) - #print json.dumps(tmp1_file, indent=2) - except IOError as e: - print 'File read error' # TBD goes to error handler - -def testTemplate5 (filename): - try: - with open(filename) as tmp1_file: - t = Templates.Template5 () - t.HandleRequest (tmp1_file.read()) - #print json.dumps(tmp1_file, indent=2) - except IOError as e: - print 'File read error' # TBD goes to error handler - -def testTemplate6 (filename): - try: - with open(filename) as tmp1_file: - t = Templates.Template6 () - t.HandleRequest (tmp1_file.read()) - #print json.dumps(tmp1_file, indent=2) - except IOError as e: - print 'File read error' # TBD goes to error handler - -def testTemplate7 (filename): - try: - with open(filename) as tmp1_file: - t = Templates.Template7 () - t.HandleRequest (tmp1_file.read()) - #print json.dumps(tmp1_file, indent=2) - except IOError as e: - print 'File read error' # TBD goes to error handler - -def testTemplate8 (filename): - try: - with open(filename) as tmp1_file: - t = Templates.Template8 () - t.HandleRequest (tmp1_file.read()) - #print json.dumps(tmp1_file, indent=2) - except IOError as e: - print 'File read error' # TBD goes to error handler - - -def testApplicationList(filename): - try: - with open(filename) as tmp1_file: - t = Templates.SendApplicationInformation() - t.HandleRequest (tmp1_file.read()) - #print json.dumps(tmp1_file, indent=2) - except IOError as e: - print 'File read error' # TBD goes to error handler - -def testNowExecuting(filename): - try: - with open(filename) as tmp1_file: - t = Templates.RequestNowExecutingInfomation() - t.HandleRequest(tmp1_file.read()) - except IOError as e: - print 'File read error nowExecuting.json' - -def testRequestAudioFocus(filename): - try: - with open(filename) as tmp1_file: - t = Templates.RequestAudioFocusInformation() - t.HandleRequest(tmp1_file.read()) - except IOError as e: - print 'File read error requestAudioFocus.json' - -def testSetLocation(filename): - try: - with open(filename) as tmp1_file: - t = Templates.RequestSetLocationInformation() - t.HandleRequest(tmp1_file.read()) - except IOError as e: - print 'File read error setlocation.json' - -def testPhoneIsAvailable(filename): - try: - with open(filename) as tmp1_file: - t = Templates.RequestSetPhoneAvailabilityInformation() - t.HandleRequest(tmp1_file.read()) - except IOError as e: - print 'File read error setPhoneAvailability.json' - -def testGoToKeyboard(): - t = Templates.RequestRequestGoToKeyboard() - t.HandleRequest() - -def startMIPApp (): - dictionary = dict() - dict['appType'] = 1 - dict['appName'] = 'Pandora' - # Create event broker with path '/hap/api/1.0/StartApplication' - # and json code json.dumps(dict) - - - -# Removed Native Platform Testing for TestHarness for template testers. Creating separate -# Native Platform Test Harness. - - -def starttest(testfilepath): - - msglogger.logMessage(logger.DEBUG, 'starttest', 'start') - - - #print 'Make a connection' - #MakeAConnection() - #time.sleep(5) - #print 'Done with connection' - - # print 'test NowExecuting' - # testNowExecuting(testfilepath + 'nowExecuting.json') - # print 'test RequestAudioFocus' - # testRequestAudioFocus(testfilepath + 'requestAudioFocus.json') - # print 'test setLocation' - # testSetLocation(testfilepath + 'setlocation.json') - # print 'test PhoneIsAvailable' - # testPhoneIsAvailable(testfilepath + 'setPhoneAvailability.json') - # print 'test GoToKeyboard' - # testGoToKeyboard() - # time.sleep(2) - - - testTemplate1( testfilepath + 'template1A.json' ) - print 'testTemplate1A done.' - time.sleep(2) - - # testTemplate1( testfilepath + 'template1A2.json' ) - # print 'testTemplate1A2 done.' - # time.sleep (3) - - # testTemplate1( testfilepath + 'template1A3.json' ) - # print 'testTemplate1A3 done.' - # time.sleep(2) - - # testTemplate1( testfilepath + 'template1B.json' ) - # print 'testTemplate1B done.' - # time.sleep(2) - - # testTemplate2(testfilepath + 'template2A.json') - # print 'testTemplate2A done.' - # time.sleep(2) - - # testTemplate2(testfilepath + 'template2B.json') - # print 'testTemplate2B done.' - # time.sleep(2) - - # testTemplate3(testfilepath + 'template3A.json') - # print 'testTemplate3A done.' - # time.sleep(2) - - # testTemplate3(testfilepath + 'template3B.json') - # print 'testTemplate3B done.' - # time.sleep(2) - - # testTemplate4(testfilepath + 'template4A.json') - # print 'testTemplate4A done.' - # time.sleep(2) - - # testTemplate4(testfilepath + 'template4B.json') - # print 'testTemplate4B done.' - # time.sleep(2) - - # testTemplate5(testfilepath + 'template5.json') - # print 'testTemplate5 done.' - # time.sleep(2) - - # testTemplate6(testfilepath + 'template6.json') - # print 'testTemplate6 done.' - # time.sleep(2) - - # testTemplate7(testfilepath + 'template7.json') - # print 'testTemplate7 done.' - # time.sleep(2) - - # testTemplate8(testfilepath + 'template8A.json') - # print 'testTemplate8A done.' - # time.sleep(2) - - # testTemplate8(testfilepath + 'template8B.json') - # print 'testTemplate8B done.' - # time.sleep(2) - - # testApplicationList(testfilepath + 'applications.json') - - #uncomment following to run an infinite loop to test incoming messages - # otherwise execution will end at the end of this script. - while (True): - time.sleep(1) - - - print 'Okay we\'re done.' - HupInterface.stopHupInterface() - - print 'call exit' - exit() - - -''' -Run tests as needed. Modify json files in testfiles to get different behaviors on tempaltes. -''' -if __name__ == "__main__": - HupInterface.startHupInterface() - starttest('testfiles/') diff --git a/Students/Dave Fugelso/Project/Alpine/build/Common/PrintData.o b/Students/Dave Fugelso/Project/Alpine/build/Common/PrintData.o deleted file mode 100644 index d52e976d..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/build/Common/PrintData.o and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/build/Common/Serialize_UnSerialize.o b/Students/Dave Fugelso/Project/Alpine/build/Common/Serialize_UnSerialize.o deleted file mode 100644 index 1b97306d..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/build/Common/Serialize_UnSerialize.o and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/build/temp.linux-x86_64-2.7/ABQHUPWrapperInterface.o b/Students/Dave Fugelso/Project/Alpine/build/temp.linux-x86_64-2.7/ABQHUPWrapperInterface.o deleted file mode 100644 index ac8308ae..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/build/temp.linux-x86_64-2.7/ABQHUPWrapperInterface.o and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/build/temp.linux-x86_64-2.7/ABQNativeInterface.o b/Students/Dave Fugelso/Project/Alpine/build/temp.linux-x86_64-2.7/ABQNativeInterface.o deleted file mode 100644 index 945716b1..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/build/temp.linux-x86_64-2.7/ABQNativeInterface.o and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/build/temp.linux-x86_64-2.7/HupInterface.o b/Students/Dave Fugelso/Project/Alpine/build/temp.linux-x86_64-2.7/HupInterface.o deleted file mode 100644 index 565db574..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/build/temp.linux-x86_64-2.7/HupInterface.o and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/build/temp.linux-x86_64-2.7/apn_abq_API.o b/Students/Dave Fugelso/Project/Alpine/build/temp.linux-x86_64-2.7/apn_abq_API.o deleted file mode 100644 index 564cd95c..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/build/temp.linux-x86_64-2.7/apn_abq_API.o and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/100x100A.png b/Students/Dave Fugelso/Project/Alpine/testfiles/100x100A.png deleted file mode 100644 index e12f4fed..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/100x100A.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/100x100B.png b/Students/Dave Fugelso/Project/Alpine/testfiles/100x100B.png deleted file mode 100644 index c005abb0..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/100x100B.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/100x100C.png b/Students/Dave Fugelso/Project/Alpine/testfiles/100x100C.png deleted file mode 100644 index 15ea8a89..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/100x100C.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/100x100D.png b/Students/Dave Fugelso/Project/Alpine/testfiles/100x100D.png deleted file mode 100644 index d6f4f507..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/100x100D.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/120x64A.png b/Students/Dave Fugelso/Project/Alpine/testfiles/120x64A.png deleted file mode 100644 index 968c4ce2..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/120x64A.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/120x64B.png b/Students/Dave Fugelso/Project/Alpine/testfiles/120x64B.png deleted file mode 100644 index f8fdb9b8..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/120x64B.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/120x64C.png b/Students/Dave Fugelso/Project/Alpine/testfiles/120x64C.png deleted file mode 100644 index 03deeafb..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/120x64C.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/135x30A.png b/Students/Dave Fugelso/Project/Alpine/testfiles/135x30A.png deleted file mode 100644 index 8ff8757a..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/135x30A.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/135x30B.png b/Students/Dave Fugelso/Project/Alpine/testfiles/135x30B.png deleted file mode 100644 index 01df8d73..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/135x30B.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/135x30C.png b/Students/Dave Fugelso/Project/Alpine/testfiles/135x30C.png deleted file mode 100644 index 4a55966e..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/135x30C.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/135x30D.png b/Students/Dave Fugelso/Project/Alpine/testfiles/135x30D.png deleted file mode 100644 index 0dda84ad..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/135x30D.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/135x30E.png b/Students/Dave Fugelso/Project/Alpine/testfiles/135x30E.png deleted file mode 100644 index 22ab90a1..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/135x30E.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/140x60A.png b/Students/Dave Fugelso/Project/Alpine/testfiles/140x60A.png deleted file mode 100644 index 8671039b..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/140x60A.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/140x60B.png b/Students/Dave Fugelso/Project/Alpine/testfiles/140x60B.png deleted file mode 100644 index c6c41697..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/140x60B.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/140x60C.png b/Students/Dave Fugelso/Project/Alpine/testfiles/140x60C.png deleted file mode 100644 index 43b6a49f..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/140x60C.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/140x60D.png b/Students/Dave Fugelso/Project/Alpine/testfiles/140x60D.png deleted file mode 100644 index 99a5256f..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/140x60D.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/140x60E.png b/Students/Dave Fugelso/Project/Alpine/testfiles/140x60E.png deleted file mode 100644 index 6230364b..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/140x60E.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/140x60F.png b/Students/Dave Fugelso/Project/Alpine/testfiles/140x60F.png deleted file mode 100644 index 2fa6206b..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/140x60F.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/140x64A.png b/Students/Dave Fugelso/Project/Alpine/testfiles/140x64A.png deleted file mode 100644 index a5bf1710..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/140x64A.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/140x64B.png b/Students/Dave Fugelso/Project/Alpine/testfiles/140x64B.png deleted file mode 100644 index 61843887..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/140x64B.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/140x64C.png b/Students/Dave Fugelso/Project/Alpine/testfiles/140x64C.png deleted file mode 100644 index f13b97ce..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/140x64C.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/140x64D.png b/Students/Dave Fugelso/Project/Alpine/testfiles/140x64D.png deleted file mode 100644 index 110e8e08..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/140x64D.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/140x64E.png b/Students/Dave Fugelso/Project/Alpine/testfiles/140x64E.png deleted file mode 100644 index 1ba4e5d9..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/140x64E.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/140x64F.png b/Students/Dave Fugelso/Project/Alpine/testfiles/140x64F.png deleted file mode 100644 index 1ce75f5b..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/140x64F.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/140x64G.png b/Students/Dave Fugelso/Project/Alpine/testfiles/140x64G.png deleted file mode 100644 index 21dc63fd..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/140x64G.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/140x64H.png b/Students/Dave Fugelso/Project/Alpine/testfiles/140x64H.png deleted file mode 100644 index 59855416..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/140x64H.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/140x64I.png b/Students/Dave Fugelso/Project/Alpine/testfiles/140x64I.png deleted file mode 100644 index c56b7381..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/140x64I.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/200x150A.png b/Students/Dave Fugelso/Project/Alpine/testfiles/200x150A.png deleted file mode 100644 index 50c6aefc..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/200x150A.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/200x150B.png b/Students/Dave Fugelso/Project/Alpine/testfiles/200x150B.png deleted file mode 100644 index d7f8e79d..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/200x150B.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/200x150C.png b/Students/Dave Fugelso/Project/Alpine/testfiles/200x150C.png deleted file mode 100644 index 330701bc..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/200x150C.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/250x22A.png b/Students/Dave Fugelso/Project/Alpine/testfiles/250x22A.png deleted file mode 100644 index 1a92896a..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/250x22A.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/250x22B.png b/Students/Dave Fugelso/Project/Alpine/testfiles/250x22B.png deleted file mode 100644 index f1fc7357..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/250x22B.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/250x22C.png b/Students/Dave Fugelso/Project/Alpine/testfiles/250x22C.png deleted file mode 100644 index 3a80802d..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/250x22C.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/250x22D.png b/Students/Dave Fugelso/Project/Alpine/testfiles/250x22D.png deleted file mode 100644 index 5e2b64cc..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/250x22D.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/250x45A.png b/Students/Dave Fugelso/Project/Alpine/testfiles/250x45A.png deleted file mode 100644 index 0e7be45a..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/250x45A.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/250x45B.png b/Students/Dave Fugelso/Project/Alpine/testfiles/250x45B.png deleted file mode 100644 index e2cc3ee3..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/250x45B.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/25x25A.png b/Students/Dave Fugelso/Project/Alpine/testfiles/25x25A.png deleted file mode 100644 index 1f00352e..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/25x25A.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/25x25B.png b/Students/Dave Fugelso/Project/Alpine/testfiles/25x25B.png deleted file mode 100644 index 04affc76..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/25x25B.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/25x25C.png b/Students/Dave Fugelso/Project/Alpine/testfiles/25x25C.png deleted file mode 100644 index 48db1f63..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/25x25C.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/25x25D.png b/Students/Dave Fugelso/Project/Alpine/testfiles/25x25D.png deleted file mode 100644 index b589ede7..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/25x25D.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/25x25E.png b/Students/Dave Fugelso/Project/Alpine/testfiles/25x25E.png deleted file mode 100644 index 3e58c781..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/25x25E.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/28x28A.png b/Students/Dave Fugelso/Project/Alpine/testfiles/28x28A.png deleted file mode 100644 index 94366085..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/28x28A.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/28x28B.png b/Students/Dave Fugelso/Project/Alpine/testfiles/28x28B.png deleted file mode 100644 index c093ec31..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/28x28B.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/28x28C.png b/Students/Dave Fugelso/Project/Alpine/testfiles/28x28C.png deleted file mode 100644 index 52395a05..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/28x28C.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/28x28D.png b/Students/Dave Fugelso/Project/Alpine/testfiles/28x28D.png deleted file mode 100644 index 0d6bbbde..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/28x28D.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/28x28E.png b/Students/Dave Fugelso/Project/Alpine/testfiles/28x28E.png deleted file mode 100644 index 166e2fd7..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/28x28E.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/378x22A.png b/Students/Dave Fugelso/Project/Alpine/testfiles/378x22A.png deleted file mode 100644 index b21687d9..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/378x22A.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/378x22B.png b/Students/Dave Fugelso/Project/Alpine/testfiles/378x22B.png deleted file mode 100644 index 7361c11e..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/378x22B.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/378x22C.png b/Students/Dave Fugelso/Project/Alpine/testfiles/378x22C.png deleted file mode 100644 index 3bdd796f..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/378x22C.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/378x22D.png b/Students/Dave Fugelso/Project/Alpine/testfiles/378x22D.png deleted file mode 100644 index 1d5cdb35..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/378x22D.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/478x185A.png b/Students/Dave Fugelso/Project/Alpine/testfiles/478x185A.png deleted file mode 100644 index 1c1fe22e..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/478x185A.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/478x233A.png b/Students/Dave Fugelso/Project/Alpine/testfiles/478x233A.png deleted file mode 100644 index d8267e8d..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/478x233A.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/500x8A.png b/Students/Dave Fugelso/Project/Alpine/testfiles/500x8A.png deleted file mode 100644 index 989578d2..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/500x8A.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/500x8B.png b/Students/Dave Fugelso/Project/Alpine/testfiles/500x8B.png deleted file mode 100644 index d644d460..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/500x8B.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/500x8C.png b/Students/Dave Fugelso/Project/Alpine/testfiles/500x8C.png deleted file mode 100644 index 7a695c7f..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/500x8C.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/56x64A.png b/Students/Dave Fugelso/Project/Alpine/testfiles/56x64A.png deleted file mode 100644 index 49eeebf8..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/56x64A.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/56x64B.png b/Students/Dave Fugelso/Project/Alpine/testfiles/56x64B.png deleted file mode 100644 index 1ac37a17..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/56x64B.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/76x60A.png b/Students/Dave Fugelso/Project/Alpine/testfiles/76x60A.png deleted file mode 100644 index e222126c..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/76x60A.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/76x60B.png b/Students/Dave Fugelso/Project/Alpine/testfiles/76x60B.png deleted file mode 100644 index 3bb2480e..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/76x60B.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/76x60C.png b/Students/Dave Fugelso/Project/Alpine/testfiles/76x60C.png deleted file mode 100644 index 74262717..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/76x60C.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/76x60D.png b/Students/Dave Fugelso/Project/Alpine/testfiles/76x60D.png deleted file mode 100644 index afa4c98c..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/76x60D.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/76x60E.png b/Students/Dave Fugelso/Project/Alpine/testfiles/76x60E.png deleted file mode 100644 index f7e03178..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/76x60E.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/76x60F.png b/Students/Dave Fugelso/Project/Alpine/testfiles/76x60F.png deleted file mode 100644 index ac3bab37..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/76x60F.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/80x64A.png b/Students/Dave Fugelso/Project/Alpine/testfiles/80x64A.png deleted file mode 100644 index 34142782..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/80x64A.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/80x64B.png b/Students/Dave Fugelso/Project/Alpine/testfiles/80x64B.png deleted file mode 100644 index 95d8ecee..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/80x64B.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/80x64C.png b/Students/Dave Fugelso/Project/Alpine/testfiles/80x64C.png deleted file mode 100644 index 0d64c945..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/80x64C.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/80x64D.png b/Students/Dave Fugelso/Project/Alpine/testfiles/80x64D.png deleted file mode 100644 index 2262164a..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/80x64D.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/80x64E.png b/Students/Dave Fugelso/Project/Alpine/testfiles/80x64E.png deleted file mode 100644 index ded2ec2a..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/80x64E.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/80x64F.png b/Students/Dave Fugelso/Project/Alpine/testfiles/80x64F.png deleted file mode 100644 index ffba52cd..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/80x64F.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/80x80A.png b/Students/Dave Fugelso/Project/Alpine/testfiles/80x80A.png deleted file mode 100644 index b5a2e7fa..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/80x80A.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/80x80B.png b/Students/Dave Fugelso/Project/Alpine/testfiles/80x80B.png deleted file mode 100644 index b5924159..00000000 Binary files a/Students/Dave Fugelso/Project/Alpine/testfiles/80x80B.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/HUinfo.json b/Students/Dave Fugelso/Project/Alpine/testfiles/HUinfo.json deleted file mode 100644 index 2e721270..00000000 --- a/Students/Dave Fugelso/Project/Alpine/testfiles/HUinfo.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "headUnitSerialNumber": "", - "vehicleModel": "", - "distance" : <"mi" | "km">, - "time": <"12" | "24">, - "date": <"MMDDYY" | "DDMMYY">, - "Temperature": <"C" | "F"> - "versioninfo": [ - { - "" : ", - "" : <1 | 0> - } - ] -} \ No newline at end of file diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/HupWrapper.py b/Students/Dave Fugelso/Project/Alpine/testfiles/HupWrapper.py deleted file mode 100644 index a2d35f85..00000000 --- a/Students/Dave Fugelso/Project/Alpine/testfiles/HupWrapper.py +++ /dev/null @@ -1,50 +0,0 @@ - -#//////////////////////////////////////////////////////////////////////////////////////////////////// -# Image Request - -# This expects the body to contain the appId and a path of a locally stored image file -class AlpineFetchImageResponseHandler(ResponseHandler): - def response(self, responseCode, headers, mimeType, body): - print 'have image for : ' + headers - try: - d = json.loads(body) - if (d.has_key('path') and d.has_key('appId'): - #TBD: Check if appId is still current appId - SendImage (d['path'], d['appId']) - else: - print 'Bad format for SendImage' - except: - print 'bad json into response handler for image request' - - -def imageRequest (d): - eb.request('GET','/RequestImage/', None, json.dumps(d),'application/json',[], AlpineFetchImageResponseHandler()) - - - -# This will be replaced by Configurator! -def RegisterHandlers (eb): - # Except these. These are not MIP callback handlers - HupInterface.requestCallback('RequestImage', imageRequest) - imageHandler = - - -#//////////////////////////////////////////////////////////////////////////////////////////////////// -# Register callbacks for Alpine initiated request - def setup(): - global srv, eb, myHandler - - - #handler1 = AlpineRequestHandler('HeadUnitID', RequestHeadUnitID) - #handler3 = AlpineRequestHandler('SetTemplate1', template1) - myHandler = MyResponseHandler() - - - # HttpGatewayRequestHandler is currently stubbed out and will be fixed by Jack Friday morning. - handler2 = HttpGatewayRequestHandler(btMCSSF, host=address_to_handset, port=port_of_handset_server) - - # Template 1 handler - - eb = EventBroker() - - RegisterHandlers (eb) \ No newline at end of file diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/alpine.json b/Students/Dave Fugelso/Project/Alpine/testfiles/alpine.json deleted file mode 100644 index c545c1c8..00000000 --- a/Students/Dave Fugelso/Project/Alpine/testfiles/alpine.json +++ /dev/null @@ -1,514 +0,0 @@ - -//////////////////////////////////////////////////////////////////////////////// -// These are responses HUP to HAP - - - - -{ - "path": "/hap/api/1.0/VehicleMakeAndModel", - "Make": "", - "Model": "" -} - -{ - "path": "/hap/api/1.0/MipSlipConnection", - "Status": "11111111", - "IP Address": " -} - -{ - "path": "/hap/api/1.0/DayNightMode", - "Mode": <"Day" | "Night"> -} - -{ - "path": "/hap/api/1.0/VehicleSpeed", - "Speed": -} - -{ - "path": "/hap/api/1.0/VehicleLocation", - "Direction": < - "latitude": , - "longitude": " -} - -{ - "path": "/hap/api/1.0/DestinationLocation", - "Destination": "Valid", - "latitude": , - "longitude": " -} - -{ - "path": "/hap/api/1.0/Shutdown" -} - -{ - "path": "/hap/api/1.0/MeasurementUnitDispFormat", - "Distance Unit": "M", - "Time Display": "12", - "Date Format": "MMDDYY", - "Temperature": "C" -} - -//////////////////////////////////////////////////////////////////////////////// -// These are requests Hap to HUP for the Native interface - -{ - "path": "/hup/api/1.0/RequestMipSlipConnectionStatus" -} - -{ - "path": "/hup/api/1.0/RequestHeadUnitID" -} - -{ - "path": "/hup/api/1.0/RequestVehicleMakeAndModel" -} - -{ - "path": "/hup/api/1.0/RequestHeadunitLanguageSetting" -} - -{ - "path": "/hup/api/1.0/RequestMeasurementUnitsAndDisplayFormat" -} - -{ - "path": "/hup/api/1.0/RequestMeasurementUnitsAndDisplayFormat" -} - -{ - "path": "/hup/api/1.0/RequestVehicleLocation" -} - -{ - "path": "/hup/api/1.0/RequestDestinationLocation" -} - -{ - "path": "/hup/api/1.0/RequestDayNightMode" -} - -{ - "path": "/hup/api/1.0/RequestVehicleSpeed" -} - -///////////////////////////////////////////////////// -// HAP to HUP Template messages - -{ - "path": "/hup/api/1.0/ApplicationList", - "Applications" : [ - { - "Name" : "", - "Icon" : , - "Type" : <"Audio" | "POI" | "Social" | "News" | "Sports" | "Stocks" | "Navigation" | "Traffic" | "Fuel" | "Parking" | "SpeedCameras" | "Weather" | "Flights" | "VRTTS" | "Movies"> - "Languages" : [ - { - "Language" : "", - "Local Name" : "" - } - ] - }, - { - - }, - ... - { - - } - ] -} - - -{ - "path": "/hup/api/1.0/NowExecuting", - "Name" : "", - "Type" : <"Audio" | "POI" | "Social" | "News" | "Sports" | "Stocks" | "Navigation" | "Traffic" | "Fuel" | "Parking" | "SpeedCameras" | "Weather" | "Flights" | "VRTTS" | "Movies"> -} - -{ - "path": "/hup/api/1.0/RequestAudioFocus", - "SourceType" : "" -} - -{ - "path": "/hup/api/1.0/ReleaseAudioFocus" -} - -{ - "path": "/hup/api/1.0/SetPhoneAvailability", - "Available" : " -} - -{ - "path": "/hup/api/1.0/SetLocation", - "Latitude" : , - "Longitude" : , - "Type" : <"None" | "Waypoint" | "Destination" | "POI"> - "PointInformation" : { - "Address" : "", - "Street" : "" - "HouseNumber" : "", - "PostalCode;" : "", - "City" : "", - "State" : "", - "Country" : "", - "Phone" : "", - "AdditionalInfo" : "" - } -} - -{ - "path": "/hup/api/1.0/Image", - "ImageID" : , - "Cache" : , - "Name" : , - TBD - details of transfer -} - -{ - "path": "/hup/api/1.0/Template1", - "partialUpdate" : <1 | 0>, - "appID" : "", - "screenID" : , - "loadingType" : < 1 | 2 | 3 | 4>, // < "ShowLoadScreen" | "ShowText" | "DoNotShowLoadScreen" | "LoadKeyboard"> - "backgroundImage" : , - "systemHeader" : <1 | 0>, - "templateContent" : { - "title" : { - "image" : , - "text" : "" - }, - "img01" : <image id>, - "img02" : <image id>, - "buttons" : { - "1": { - "text" : "<optional text>", - "image" : { - "normal" : <int image normal optional>, - "pressed" : <int button pressed image optional> - }, - "backgroundImage" : { - "normal" : <int image normal optional>, - "pressed" : <int button pressed image optional> - }, - "scrollUpButton" : <1 | 0>, // optional defaults 0 - "scrollDownButton" : <1 | 0>, // optional defaults 0 - "enabled" : <1 | 0> // optional defaults 1 - } - "2" : {..}, - ... - "6" : {..} - }, - "text01" : "<text 01">, - "text02" : "<text 02">, - "text03" : "<text 03">, - "text04" : "<text 04">, - "progress" : { - "color" : <Hex color e.g "#FEFEFE" >, - "totalSeconds" : <total seconds>, - "current" : <0.0 to 1.0>, - "active" : <1 | 0> - } - } -} - -{ - "path": "/hup/api/1.0/Template2", - "partialUpdate" : <1 | 0>, - "appID" : "<application name>", - "screenID" : <screen ID>, - "loadingType" : < 1 | 2 | 3 | 4>, // < "ShowLoadScreen" | "ShowText" | "DoNotShowLoadScreen" | "LoadKeyboard"> - "backgroundImage" : <Image ID this is optional>, - "systemHeader" : <1 | 0>, - "templateContent" : { - "title" : { - "image" : <image id>, - "text" : "<title text>" - }, - "buttons" : { - "1": { - "text" : "<optional text>", - "line02" : "<optional second line for Template 2>", - "image" : { - "normal" : <int image normal optional>, - "pressed" : <int button pressed image optional> - }, - "backgroundImage" : { - "normal" : <int image normal optional>, - "pressed" : <int button pressed image optional> - }, - "scrollUpButton" : <1 | 0>, // optional defaults 0 - "scrollDownButton" : <1 | 0>, // optional defaults 0 - "enabled" : <1 | 0> // optional defaults 1 - } - "2" : {..}, - ... - "9" : {..} - } - } - -} - -{ - "path": "/hup/api/1.0/Template3", - "partialUpdate" : <1 | 0>, - "appID" : "<application name>", - "screenID" : <screen ID>, - "loadingType" : < 1 | 2 | 3 | 4>, // < "ShowLoadScreen" | "ShowText" | "DoNotShowLoadScreen" | "LoadKeyboard"> - "backgroundImage" : <Image ID this is optional>, - "systemHeader" : <1 | 0>, - "templateContent" : { - "title" : { - "image" : <image id>, - "text" : "<title text>" - }, - - "list" : [ - { - "text" : "<text01 to text05>", - "image" : <imag01 to img05>, - "special" : "<special text"> - }, - { .. up to 5 } - ] - - "buttons" : { - "1": { - "text" : "<optional text>", - "image" : { - "normal" : <int image normal optional>, - "pressed" : <int button pressed image optional> - }, - "backgroundImage" : { - "normal" : <int image normal optional>, - "pressed" : <int button pressed image optional> - }, - "scrollUpButton" : <1 | 0>, // optional defaults 0 - "scrollDownButton" : <1 | 0>, // optional defaults 0 - "enabled" : <1 | 0> // optional defaults 1 - } - "2" : {..}, - ... - "6" : {..} - } - } - -} - -{ - "path": "/hup/api/1.0/Template4", - "partialUpdate" : <1 | 0>, - "appID" : "<application name>", - "screenID" : <screen ID>, - "loadingType" : < 1 | 2 | 3 | 4>, // < "ShowLoadScreen" | "ShowText" | "DoNotShowLoadScreen" | "LoadKeyboard"> - "backgroundImage" : <Image ID this is optional>, - "systemHeader" : <1 | 0>, - "templateContent" : { - - "text01" : "<text 01">, - "text02" : "<text 02">, - - "buttons" : { - "1": { - "text" : "<text>", - "image" : { - "normal" : <int image normal optional>, - "pressed" : <int button pressed image optional> - }, - "backgroundImage" : { - "normal" : <int image normal optional>, - "pressed" : <int button pressed image optional> - }, - "scrollUpButton" : <1 | 0>, // optional defaults 0 - "scrollDownButton" : <1 | 0>, // optional defaults 0 - "enabled" : <1 | 0> // optional defaults 1 - } - "2" : {..}, - "3" : {..} - } - } -} - -{ - "path": "/hup/api/1.0/Template5", - "partialUpdate" : <1 | 0>, - "appID" : "<application name>", - "screenID" : <screen ID>, - "loadingType" : < 1 | 2 | 3 | 4>, // < "ShowLoadScreen" | "ShowText" | "DoNotShowLoadScreen" | "LoadKeyboard"> - "backgroundImage" : <Image ID this is optional>, - "systemHeader" : <1 | 0>, - "templateContent" : { - "title" : { - "image" : <image id>, - "text" : "<title text>" - }, - "text01" : "<text 01">, - "buttons" : { - "1": { - "text" : "<optional text>", - "image" : { - "normal" : <int image normal optional>, - "pressed" : <int button pressed image optional> - }, - "backgroundImage" : { - "normal" : <int image normal optional>, - "pressed" : <int button pressed image optional> - }, - "scrollUpButton" : <1 | 0>, // optional defaults 0 - "scrollDownButton" : <1 | 0>, // optional defaults 0 - "enabled" : <1 | 0> // optional defaults 1 - } - "2" : {..}, - ... - "6" : {..} - } - } - -} - -{ - "path": "/hup/api/1.0/Template6", - "partialUpdate" : <1 | 0>, - "appID" : "<application name>", - "screenID" : <screen ID>, - "loadingType" : < 1 | 2 | 3 | 4>, // < "ShowLoadScreen" | "ShowText" | "DoNotShowLoadScreen" | "LoadKeyboard"> - "backgroundImage" : <Image ID this is optional>, - "systemHeader" : <1 | 0>, - "templateContent" : { - "title" : { - "image" : <image id>, - "text" : "<title text>" - }, - "line02" : { - "text" : "<text>", - "image" : <image id> - } - "img01" : <image id>, - "text01" : "<text 01>", - "text03" : "<text 03>", - "buttons" : { - "1": { - "text" : "<optional text>", - "image" : { - "normal" : <int image normal optional>, - "pressed" : <int button pressed image optional> - }, - "backgroundImage" : { - "normal" : <int image normal optional>, - "pressed" : <int button pressed image optional> - }, - "scrollUpButton" : <1 | 0>, // optional defaults 0 - "scrollDownButton" : <1 | 0>, // optional defaults 0 - "enabled" : <1 | 0> // optional defaults 1 - } - "2" : {..}, - ... - "6" : {..} - } - } -} - - -{ - "path": "/hup/api/1.0/Template7", - "partialUpdate" : <1 | 0>, - "appID" : "<application name>", - "screenID" : <screen ID>, - "loadingType" : < 1 | 2 | 3 | 4>, // < "ShowLoadScreen" | "ShowText" | "DoNotShowLoadScreen" | "LoadKeyboard"> - "backgroundImage" : <Image ID this is optional>, - "systemHeader" : <1 | 0>, - "templateContent" : { - "title" : { - "image" : <image id>, - "text" : "<title text>" - }, - "line02" : { - "text" : "<text>", - "image" : <image id> - } - "img01" : <image id>, - "text01" : "<text 01">, - "text03" : "<text 03">, - "buttons" : { - "1": { - "text" : "<optional text>", - "image" : { - "normal" : <int image normal optional>, - "pressed" : <int button pressed image optional> - }, - "backgroundImage" : { - "normal" : <int image normal optional>, - "pressed" : <int button pressed image optional> - }, - "scrollUpButton" : <1 | 0>, // optional defaults 0 - "scrollDownButton" : <1 | 0>, // optional defaults 0 - "enabled" : <1 | 0> // optional defaults 1 - } - "2" : {..}, - ... - "6" : {..} - } - } -} - -{ - "path": "/hup/api/1.0/Template8", - "partialUpdate" : <1 | 0>, - "appID" : "<application name>", - "screenID" : <screen ID>, - "loadingType" : < 1 | 2 | 3 | 4>, // < "ShowLoadScreen" | "ShowText" | "DoNotShowLoadScreen" | "LoadKeyboard"> - "backgroundImage" : <Image ID this is optional>, - "systemHeader" : <1 | 0>, - "templateContent" : { - "title" : { - "image" : <image id>, - "text" : "<title text>" - }, - "text01" : "<text 01">, - "img01" : <image id>, - "img02" : <image id> - } -} - -{ - "path": "/hap/api/1.0/SetText", - "Text" : "<user input text>", -} - - -/////////////////////////////////////////////////////// HUP to HAP Template messages -{ - "path": "/hap/api/1.0/NativeAppStartNotification", - "AudioApp" : <1 | 0> -} - -{ - "path": "/hap/api/1.0/StartApplication", - "Name" : "<Name>" -} - -{ - "path": "/hup/api/1.0/RequestImage", - "ImageID" : <image ID int> -} - -{ - "path": "/hap/api/1.0/HardwareButtonPress", - "ButtonType" : "<Button | List>", - "Index" : "<index>", - "Type" : "Up" | "Down" | "Left" | "Right" | "Back" (APN unavailable) | "FFWD" | "Rewind" | "Next" | "Prev" | "PlayPause" | "ScrollDown" | "ScrollUp" | "ScrollLeft" | "ScrollRight" | "FlickDown" | "FlickUp" | "FlickLeft" | "FlickRight"> - "PressType" : <"Press" | "LongPress"> -} - -{ - "path": "/hap/api/1.0/StartPhoneCall", - "Name" : "<32 UTF-8 character name>", - "NameYomi" : "<128 UTF-8 reading name>", - "Number" : "<Phone number '0'-'9', '#', '+', '*'>" -} diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/applications.json b/Students/Dave Fugelso/Project/Alpine/testfiles/applications.json deleted file mode 100644 index 01144db5..00000000 --- a/Students/Dave Fugelso/Project/Alpine/testfiles/applications.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "path": "/hup/api/1.0/ApplicationList", - "Applications" : [ - { - "Name" : "Pandora", - "Icon" : 64, - "Type" : 1, - "Languages" : [ - { - "Language" : "en", - "Local Name" : "English" - }, - { - "Language" : "fr", - "Local Name" : "French" - }, - { - "Language" : "jp", - "Local Name" : "Japonese" - } - ] - }, - { - "Name" : "IHeartRadio", - "Icon" : 40, - "Type" : 2, - "Languages" : [ - { - "Language" : "en", - "Local Name" : "English" - }, - { - "Language" : "fr", - "Local Name" : "French" - }, - { - "Language" : "jp", - "Local Name" : "Japonese" - } - ] - }, - { - "Name" : "Yelp", - "Icon" : 13, - "Type" : 2, - "Languages" : [ - { - "Language" : "English", - "Local Name" : "English" - }, - { - "Language" : "fr", - "Local Name" : "French" - }, - { - "Language" : "jp", - "Local Name" : "Japanese" - } - ] - } - ] -} \ No newline at end of file diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/filecache.json b/Students/Dave Fugelso/Project/Alpine/testfiles/filecache.json deleted file mode 100644 index acb9db2b..00000000 --- a/Students/Dave Fugelso/Project/Alpine/testfiles/filecache.json +++ /dev/null @@ -1,549 +0,0 @@ -{ - "Files" : [ - { - "Size" : { - "Width" : 25, - "Height" : 25 - }, - "Filename" : "25x25A.png", - "ID" : 1 - }, - { - "Size" : { - "Width" : 25, - "Height" : 25 - }, - "Filename" : "25x25B.png", - "ID" : 2 - }, - { - "Size" : { - "Width" : 25, - "Height" : 25 - }, - "Filename" : "25x25C.png", - "ID" : 3 - }, - { - "Size" : { - "Width" : 25, - "Height" : 25 - }, - "Filename" : "25x25D.png", - "ID" : 4 - }, - { - "Size" : { - "Width" : 25, - "Height" : 25 - }, - "Filename" : "25x25E.png", - "ID" : 5 - }, - { - "Size" : { - "Width" : 28, - "Height" : 28 - }, - "Filename" : "28x28A.png", - "ID" : 6 - }, - { - "Size" : { - "Width" : 28, - "Height" : 28 - }, - "Filename" : "28x28B.png", - "ID" : 7 - }, - { - "Size" : { - "Width" : 28, - "Height" : 28 - }, - "Filename" : "28x28C.png", - "ID" : 8 - }, - { - "Size" : { - "Width" : 28, - "Height" : 28 - }, - "Filename" : "28x28D.png", - "ID" : 9 - }, - { - "Size" : { - "Width" : 28, - "Height" : 28 - }, - "Filename" : "28x28E.png", - "ID" : 10 - }, - { - "Size" : { - "Width" : 56, - "Height" : 64 - }, - "Filename" : "56x64A.png", - "ID" : 11 - }, - { - "Size" : { - "Width" : 56, - "Height" : 64 - }, - "Filename" : "56x64B.png", - "ID" : 12 - }, - { - "Size" : { - "Width" : 76, - "Height" : 60 - }, - "Filename" : "76x60A.png", - "ID" : 13 - }, - { - "Size" : { - "Width" : 76, - "Height" : 60 - }, - "Filename" : "76x60B.png", - "ID" : 14 - }, - { - "Size" : { - "Width" : 76, - "Height" : 60 - }, - "Filename" : "76x60C.png", - "ID" : 15 - }, - { - "Size" : { - "Width" : 76, - "Height" : 60 - }, - "Filename" : "76x60D.png", - "ID" : 16 - }, - { - "Size" : { - "Width" : 76, - "Height" : 60 - }, - "Filename" : "76x60E.png", - "ID" : 17 - }, - { - "Size" : { - "Width" : 76, - "Height" : 60 - }, - "Filename" : "76x60F.png", - "ID" : 18 - }, - { - "Size" : { - "Width" : 80, - "Height" : 64 - }, - "Filename" : "80x64A.png", - "ID" : 19 - }, - { - "Size" : { - "Width" : 80, - "Height" : 64 - }, - "Filename" : "80x64B.png", - "ID" : 20 - }, - { - "Size" : { - "Width" : 80, - "Height" : 64 - }, - "Filename" : "80x64C.png", - "ID" : 21 - }, - { - "Size" : { - "Width" : 80, - "Height" : 64 - }, - "Filename" : "80x64D.png", - "ID" : 22 - }, - { - "Size" : { - "Width" : 80, - "Height" : 64 - }, - "Filename" : "80x64E.png", - "ID" : 23 - }, - { - "Size" : { - "Width" : 80, - "Height" : 64 - }, - "Filename" : "80x64F.png", - "ID" : 24 - }, - { - "Size" : { - "Width" : 80, - "Height" : 80 - }, - "Filename" : "80x80A.png", - "ID" : 25 - }, - { - "Size" : { - "Width" : 80, - "Height" : 80 - }, - "Filename" : "80x80B.png", - "ID" : 26 - }, - { - "Size" : { - "Width" : 100, - "Height" : 100 - }, - "Filename" : "100x100A.png", - "ID" : 27 - }, - { - "Size" : { - "Width" : 100, - "Height" : 100 - }, - "Filename" : "100x100B.png", - "ID" : 28 - }, - { - "Size" : { - "Width" : 100, - "Height" : 100 - }, - "Filename" : "100x100C.png", - "ID" : 29 - }, - { - "Size" : { - "Width" : 100, - "Height" : 100 - }, - "Filename" : "100x100D.png", - "ID" : 30 - }, - { - "Size" : { - "Width" : 120, - "Height" : 64 - }, - "Filename" : "120x64A.png", - "ID" : 31 - }, - { - "Size" : { - "Width" : 120, - "Height" : 64 - }, - "Filename" : "120x64B.png", - "ID" : 32 - }, - { - "Size" : { - "Width" : 120, - "Height" : 64 - }, - "Filename" : "120x64C.png", - "ID" : 33 - }, - { - "Size" : { - "Width" : 135, - "Height" : 30 - }, - "Filename" : "135x30A.png", - "ID" : 34 - }, - { - "Size" : { - "Width" : 135, - "Height" : 30 - }, - "Filename" : "135x30B.png", - "ID" : 35 - }, - { - "Size" : { - "Width" : 135, - "Height" : 30 - }, - "Filename" : "135x30C.png", - "ID" : 36 - }, - { - "Size" : { - "Width" : 135, - "Height" : 30 - }, - "Filename" : "135x30D.png", - "ID" : 37 - }, - { - "Size" : { - "Width" : 135, - "Height" : 30 - }, - "Filename" : "135x30E.png", - "ID" : 38 - }, - { - "Size" : { - "Width" : 140, - "Height" : 60 - }, - "Filename" : "140x60A.png", - "ID" : 39 - }, - { - "Size" : { - "Width" : 140, - "Height" : 60 - }, - "Filename" : "140x60B.png", - "ID" : 40 - }, - { - "Size" : { - "Width" : 140, - "Height" : 60 - }, - "Filename" : "140x60C.png", - "ID" : 41 - }, - { - "Size" : { - "Width" : 140, - "Height" : 60 - }, - "Filename" : "140x60D.png", - "ID" : 42 - }, - { - "Size" : { - "Width" : 140, - "Height" : 60 - }, - "Filename" : "140x60E.png", - "ID" : 43 - }, - { - "Size" : { - "Width" : 140, - "Height" : 60 - }, - "Filename" : "140x60F.png", - "ID" : 44 - }, - { - "Size" : { - "Width" : 140, - "Height" : 64 - }, - "Filename" : "140x64A.png", - "ID" : 45 - }, - { - "Size" : { - "Width" : 140, - "Height" : 64 - }, - "Filename" : "140x64B.png", - "ID" : 46 - }, - { - "Size" : { - "Width" : 140, - "Height" : 64 - }, - "Filename" : "140x64C.png", - "ID" : 47 - }, - { - "Size" : { - "Width" : 140, - "Height" : 64 - }, - "Filename" : "140x64D.png", - "ID" : 48 - }, - { - "Size" : { - "Width" : 140, - "Height" : 64 - }, - "Filename" : "140x64E.png", - "ID" : 49 - }, - { - "Size" : { - "Width" : 140, - "Height" : 64 - }, - "Filename" : "140x64F.png", - "ID" : 50 - }, - { - "Size" : { - "Width" : 140, - "Height" : 64 - }, - "Filename" : "140x64G.png", - "ID" : 51 - }, - { - "Size" : { - "Width" : 140, - "Height" : 64 - }, - "Filename" : "140x64H.png", - "ID" : 52 - }, - { - "Size" : { - "Width" : 140, - "Height" : 64 - }, - "Filename" : "140x64I.png", - "ID" : 56 - }, - { - "Size" : { - "Width" : 200, - "Height" : 150 - }, - "Filename" : "200x150A.png", - "ID" : 57 - }, - { - "Size" : { - "Width" : 200, - "Height" : 150 - }, - "Filename" : "200x150B.png", - "ID" : 58 - }, - { - "Size" : { - "Width" : 200, - "Height" : 150 - }, - "Filename" : "200x150C.png", - "ID" : 59 - }, - { - "Size" : { - "Width" : 250, - "Height" : 22 - }, - "Filename" : "250x22A.png", - "ID" : 60 - }, - { - "Size" : { - "Width" : 250, - "Height" : 22 - }, - "Filename" : "250x22B.png", - "ID" : 61 - }, - { - "Size" : { - "Width" : 250, - "Height" : 22 - }, - "Filename" : "250x22C.png", - "ID" : 62 - }, - { - "Size" : { - "Width" : 250, - "Height" : 22 - }, - "Filename" : "250x22D.png", - "ID" : 63 - }, - { - "Size" : { - "Width" : 250, - "Height" : 45 - }, - "Filename" : "250x45A.png", - "ID" : 64 - }, - { - "Size" : { - "Width" : 250, - "Height" : 45 - }, - "Filename" : "250x45B.png", - "ID" : 65 - }, - { - "Size" : { - "Width" : 378, - "Height" : 22 - }, - "Filename" : "378x22A.png", - "ID" : 66 - }, - { - "Size" : { - "Width" : 478, - "Height" : 185 - }, - "Filename" : "478x185A.png", - "ID" : 67 - }, - { - "Size" : { - "Width" : 478, - "Height" : 233 - }, - "Filename" : "478x233A.png", - "ID" : 68 - }, - { - "Size" : { - "Width" : 500, - "Height" : 8 - }, - "Filename" : "500x8A.png", - "ID" : 69 - }, - { - "Size" : { - "Width" : 500, - "Height" : 8 - }, - "Filename" : "500x8B.png", - "ID" : 70 - }, - { - "Size" : { - "Width" : 500, - "Height" : 8 - }, - "Filename" : "500x8C.png", - "ID" : 71 - } - ] -} - \ No newline at end of file diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/nowExecuting.json b/Students/Dave Fugelso/Project/Alpine/testfiles/nowExecuting.json deleted file mode 100644 index 610390c2..00000000 --- a/Students/Dave Fugelso/Project/Alpine/testfiles/nowExecuting.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "path" : "/hup/api/1.0/NowExecuting", - "name" : "°āĂă", - "type" : 0 -} \ No newline at end of file diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/requestAudioFocus.json b/Students/Dave Fugelso/Project/Alpine/testfiles/requestAudioFocus.json deleted file mode 100644 index 79f0c22d..00000000 --- a/Students/Dave Fugelso/Project/Alpine/testfiles/requestAudioFocus.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "path" : "headunit/event", - "state" : "acquire" -} \ No newline at end of file diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/setPhoneAvailability.json b/Students/Dave Fugelso/Project/Alpine/testfiles/setPhoneAvailability.json deleted file mode 100644 index 93a4f7f1..00000000 --- a/Students/Dave Fugelso/Project/Alpine/testfiles/setPhoneAvailability.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "path" : "/hup/api/1.0/SetPhoneAvailability", - "available" : "yes" -} \ No newline at end of file diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/setlocation.json b/Students/Dave Fugelso/Project/Alpine/testfiles/setlocation.json deleted file mode 100644 index c995865e..00000000 --- a/Students/Dave Fugelso/Project/Alpine/testfiles/setlocation.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "path": "/hup/api/1.0/SetLocation", - "latitude" : 34.17, - "longitude" : 118.25, - "type" : "destination", - "pointInformation" : { - "address" : "1234 Main Street", - "street" : "Main Street", - "houseNumber" : "1234", - "postalCode" : "98101", - "city" : "Glendale", - "state" : "California", - "country" : "United States", - "phone" : "1-908-123-4567", - "additionalInfo" : "Good Morning" - } -} - diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/template1.json b/Students/Dave Fugelso/Project/Alpine/testfiles/template1.json deleted file mode 100644 index 01d608ba..00000000 --- a/Students/Dave Fugelso/Project/Alpine/testfiles/template1.json +++ /dev/null @@ -1,117 +0,0 @@ -{ - "path": "/hup/api/1.0/Template1", - "partialUpdate" : "0", - "appId" : Pandora, - "screenId" : 236, - "loadingType" : "1", - "backgroundImage" : 1, - "systemHeader" : 1, - "templateContent" : { - "title" : { - "image" : 2, - "text" : "Pandora Again!" - }, - "img01" : 3, - "img02" : 4, - "buttons" : { - "1": - { - "text" : "button 1", - "image" : { - "normal" : 5, - "pressed" : 6 - } - "backgroundImage" : { - "normal" : 7, - "pressed" : 8 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "2" : - { - "text" : "button 2", - "image" : { - "normal" : 9, - "pressed" : 10 - }, - "backgroundImage" : { - "normal" :11, - "pressed" : 12 - }, - "scrollUpButton" : 1, - "scrollDownButton" : 1, - "enabled" : 0 - }, - "3" : - { - "text" : "button 3", - "image" : { - "normal" : 13, - "pressed" : 14 - }, - "backgroundImage" : { - "normal" : 15, - "pressed" : 16 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "4" : - { - "text" : "button 4", - "image" : { - "normal" : 17, - "pressed" : 18 - }, - "backgroundImage" : { - "normal" : 19, - "pressed" : 20 - } - - }, - "5" : - { - "text" : "button 5", - "image" : { - "normal" : 21, - "pressed" : 22 - }, - "backgroundImage" : { - "normal" : 23, - "pressed" : 24 - }, - "scrollUpButton" : "0", - "scrollDownButton" : 0, - "enabled" : 1 - }, - "6" : - { - "text" : "button 6", - "image" : { - "normal" : 25, - "pressed" : 26 - }, - "backgroundImage" : { - "normal" : 27, - "pressed" : 28 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - } - }, - "text01" : "text 01", - "text02" : "text 02", - "text03" : "text 03", - "text04" : "text 04", - "progress" : { - "color" : "FEFEFE", - "totalSeconds" : 630, - "current" : 0.54, - "active" : 1 - } - } -} diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/template1A.json b/Students/Dave Fugelso/Project/Alpine/testfiles/template1A.json deleted file mode 100644 index da31a6fd..00000000 --- a/Students/Dave Fugelso/Project/Alpine/testfiles/template1A.json +++ /dev/null @@ -1,118 +0,0 @@ -{ - "path": "/hup/api/1.0/Template1", - "partialUpdate" : 0, - "templateId" : 1, - "appId" : "Pandora", - "screenId" : 236, - "loadingType" : 0, - "backgroundImage" : 1, - "systemHeader" : 1, - "templateContent" : { - "title" : { - "image" : 64, - "text" : "Pandora!" - }, - "img01" : 27, - "img02" : 1, - "buttons" : { - "1": - { - "text" : "button 1", - "image" : { - "normal" : 13, - "pressed" : 14 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 1, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "2" : - { - "text" : "button 2", - "image" : { - "normal" : 15, - "pressed" : 16 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 1, - "enabled" : 0 - }, - "3" : - { - "text" : "button 3", - "image" : { - "normal" : 17, - "pressed" : 18 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "4" : - { - "text" : "button 4", - "image" : { - "normal" : 14, - "pressed" : 13 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - } - - }, - "5" : - { - "text" : "button 5", - "image" : { - "normal" : 16, - "pressed" : 15 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "6" : - { - "text" : "button 6", - "image" : { - "normal" : 18, - "pressed" : 17 - }, - "backgroundImage" : { - "normal" : 13, - "pressed" : 14 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - } - }, - "text01" : "text 01", - "text02" : "text 02", - "text03" : "text 03", - "text04" : "00:05:40", - "progress" : { - "color" : "FEFEFE", - "totalSeconds" : 630, - "current" : 0.54, - "active" : 1 - } - } -} diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/template1A2.json b/Students/Dave Fugelso/Project/Alpine/testfiles/template1A2.json deleted file mode 100644 index a6f75138..00000000 --- a/Students/Dave Fugelso/Project/Alpine/testfiles/template1A2.json +++ /dev/null @@ -1,118 +0,0 @@ -{ - "path": "/hup/api/1.0/Template1", - "partialUpdate" : 1, - "templateId" : 1, - "appId" : "Pandora", - "screenId" : 236, - "loadingType" : 1, - "backgroundImage" : 1, - "systemHeader" : 1, - "templateContent" : { - "title" : { - "image" : 64, - "text" : "Pandora!" - }, - "img01" : 27, - "img02" : 1, - "buttons" : { - "1": - { - "text" : "button 1", - "image" : { - "normal" : 13, - "pressed" : 14 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 1, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "2" : - { - "text" : "button 2", - "image" : { - "normal" : 15, - "pressed" : 16 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 1, - "enabled" : 0 - }, - "3" : - { - "text" : "button 3", - "image" : { - "normal" : 17, - "pressed" : 18 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "4" : - { - "text" : "button 4", - "image" : { - "normal" : 14, - "pressed" : 13 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - } - - }, - "5" : - { - "text" : "button 5", - "image" : { - "normal" : 16, - "pressed" : 15 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "6" : - { - "text" : "button 6", - "image" : { - "normal" : 18, - "pressed" : 17 - }, - "backgroundImage" : { - "normal" : 13, - "pressed" : 14 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - } - }, - "text01" : "text 01", - "text02" : "text 02", - "text03" : "text 03", - "text04" : "00:05:08", - "progress" : { - "color" : "FEFEFE", - "totalSeconds" : 630, - "current" : 0.54, - "active" : 1 - } - } -} diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/template1A3.json b/Students/Dave Fugelso/Project/Alpine/testfiles/template1A3.json deleted file mode 100644 index a83ad623..00000000 --- a/Students/Dave Fugelso/Project/Alpine/testfiles/template1A3.json +++ /dev/null @@ -1,118 +0,0 @@ -{ - "path": "/hup/api/1.0/Template1", - "partialUpdate" : 1, - "templateId" : 1, - "appId" : "Pandora", - "screenId" : 236, - "loadingType" : 2, - "backgroundImage" : 1, - "systemHeader" : 1, - "templateContent" : { - "title" : { - "image" : 64, - "text" : "Pandora!" - }, - "img01" : 27, - "img02" : 1, - "buttons" : { - "1": - { - "text" : "button 1", - "image" : { - "normal" : 13, - "pressed" : 14 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 1, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "2" : - { - "text" : "button 2", - "image" : { - "normal" : 15, - "pressed" : 16 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 1, - "enabled" : 0 - }, - "3" : - { - "text" : "button 3", - "image" : { - "normal" : 17, - "pressed" : 18 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "4" : - { - "text" : "button 4", - "image" : { - "normal" : 14, - "pressed" : 13 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - } - - }, - "5" : - { - "text" : "button 5", - "image" : { - "normal" : 16, - "pressed" : 15 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "6" : - { - "text" : "button 6", - "image" : { - "normal" : 18, - "pressed" : 17 - }, - "backgroundImage" : { - "normal" : 13, - "pressed" : 14 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - } - }, - "text01" : "text 01", - "text02" : "text 02", - "text03" : "text 03", - "text04" : "00:05:08", - "progress" : { - "color" : "FEFEFE", - "totalSeconds" : 630, - "current" : 0.54, - "active" : 1 - } - } -} diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/template1B.json b/Students/Dave Fugelso/Project/Alpine/testfiles/template1B.json deleted file mode 100644 index 52aec582..00000000 --- a/Students/Dave Fugelso/Project/Alpine/testfiles/template1B.json +++ /dev/null @@ -1,146 +0,0 @@ -{ - "path": "/hup/api/1.0/Template1", - "partialUpdate" : 0, - "templateId" : 1, - "appId" : "Pandora", - "screenId" : 236, - "loadingType" : 1, - "backgroundImage" : 1, - "systemHeader" : 1, - "templateContent" : { - "title" : { - "image" : 64, - "text" : "Pandora" - }, - "img01" : 25, - "buttons" : { - "1": - { - "text" : "button 1", - "image" : { - "normal" : 13, - "pressed" : 14 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "2" : - { - "text" : "button 2", - "image" : { - "normal" : 15, - "pressed" : 16 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 1, - "scrollDownButton" : 1, - "enabled" : 0 - }, - "3" : - { - "text" : "button 3", - "image" : { - "normal" : 17, - "pressed" : 18 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "4" : - { - "text" : "button 4", - "image" : { - "normal" : 14, - "pressed" : 13 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - } - }, - "5" : - { - "text" : "button 5", - "image" : { - "normal" : 16, - "pressed" : 15 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "6" : - { - "text" : "button 6", - "image" : { - "normal" : 18, - "pressed" : 17 - }, - "backgroundImage" : { - "normal" : 13, - "pressed" : 14 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "7" : - { - "text" : "button 6", - "image" : { - "normal" : 11, - "pressed" : 12 - }, - "backgroundImage" : { - "normal" : 12, - "pressed" : 11 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "8" : - { - "text" : "button 6", - "image" : { - "normal" : 18, - "pressed" : 17 - }, - "backgroundImage" : { - "normal" : 13, - "pressed" : 14 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - } - }, - "text01" : "text 01", - "text02" : "text 02", - "text03" : "text 03", - "text04" : "00:05:08", - "progress" : { - "color" : "FEFEFE", - "totalSeconds" : 630, - "current" : 0.54, - "active" : 1 - } - } -} diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/template1C.json b/Students/Dave Fugelso/Project/Alpine/testfiles/template1C.json deleted file mode 100644 index 52e82c94..00000000 --- a/Students/Dave Fugelso/Project/Alpine/testfiles/template1C.json +++ /dev/null @@ -1,147 +0,0 @@ -{ - "path": "/hup/api/1.0/Template1", - "templateId" : 1, - "partialUpdate" : 0, - "appId" : "Pandora", - "screenId" : 236, - "loadingType" : 1, - "backgroundImage" : 1, - "systemHeader" : 1, - "templateContent" : { - "title" : { - "image" : 64, - "text" : "Pandora" - }, - "img01" : 26, - "buttons" : { - "1": - { - "text" : "button 1", - "image" : { - "normal" : 13, - "pressed" : 14 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "2" : - { - "text" : "button 2", - "image" : { - "normal" : 15, - "pressed" : 16 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 1, - "scrollDownButton" : 1, - "enabled" : 0 - }, - "3" : - { - "text" : "button 3", - "image" : { - "normal" : 17, - "pressed" : 18 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "4" : - { - "text" : "button 4", - "image" : { - "normal" : 14, - "pressed" : 13 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - } - - }, - "5" : - { - "text" : "button 5", - "image" : { - "normal" : 16, - "pressed" : 15 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "6" : - { - "text" : "button 6", - "image" : { - "normal" : 18, - "pressed" : 17 - }, - "backgroundImage" : { - "normal" : 13, - "pressed" : 14 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "7" : - { - "text" : "button 6", - "image" : { - "normal" : 19, - "pressed" : 20 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "8" : - { - "text" : "button 6", - "image" : { - "normal" : 21, - "pressed" : 22 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - } - }, - "text01" : "text 01", - "text02" : "text 02", - "text03" : "text 03", - "text04" : "00:05:08", - "progress" : { - "color" : "FEFEFE", - "totalSeconds" : 630, - "current" : 0.54, - "active" : 1 - } - } -} diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/template2.json b/Students/Dave Fugelso/Project/Alpine/testfiles/template2.json deleted file mode 100644 index 0f70bc0f..00000000 --- a/Students/Dave Fugelso/Project/Alpine/testfiles/template2.json +++ /dev/null @@ -1,155 +0,0 @@ -{ - "path": "/hup/api/1.0/Template2", - "partialUpdate" : 0, - "appId" : "I heart radio", - "screenId" : 35, - "loadingType" : 1, - "backgroundImage" : 36, - "systemHeader" : 1 , - "templateContent" : - { - "title" : - { - "image" : 37, - "text" : "I heart radio" - }, - "img01" : 38, - "buttons" : - { - "1" : - { - "text" : "button 1", - "image" : { - "normal" : 55, - "pressed" : 56 - }, - "backgroundImage" : { - "normal" : 57, - "pressed" : 58 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "2" : - { - "text" : "button 2", - "image" : { - "normal" : 59, - "pressed" : 60 - }, - "backgroundImage" : { - "normal" : 61, - "pressed" : 62 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "3" : - { - "text" : "button 3", - "image" : { - "normal" : 63, - "pressed" : 64 - }, - "backgroundImage" : { - "normal" : 65, - "pressed" : 66 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "4" : - { - "text" : "button 4", - "image" : { - "normal" :67, - "pressed" : 68 - }, - "backgroundImage" : { - "normal" : 69, - "pressed" : 70 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "5" : - { - "text" : "button 5", - "image" : { - "normal" : 71, - "pressed" : 72 - }, - "backgroundImage" : { - "normal" : 73, - "pressed" : 74 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "6" : - { - "text" : "button 6", - "image" : { - "normal" : 75, - "pressed" : 76 - }, - "backgroundImage" : { - "normal" : 77, - "pressed" : 78 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "7" : { - "text" : "button 7", - "image" : { - "normal" : 79, - "pressed" : 80 - }, - "backgroundImage" : { - "normal" : 81, - "pressed" : 82 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "8" : - { - "text" : "button 8", - "image" : { - "normal" : 83, - "pressed" : 84 - }, - "backgroundImage" : { - "normal" : 85, - "pressed" : 86 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "9" : - { - "text" : "button 9", - "image" : { - "normal" : 87, - "pressed" : 88 - }, - "backgroundImage" : { - "normal" : 89, - "pressed" : 90 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - } - } - } -} diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/template2A.json b/Students/Dave Fugelso/Project/Alpine/testfiles/template2A.json deleted file mode 100644 index 0e917b06..00000000 --- a/Students/Dave Fugelso/Project/Alpine/testfiles/template2A.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "path": "/hup/api/1.0/Template2", - "templateId" : 2, - "partialUpdate" : 0, - "appId" : "I heart radio", - "screenId" : 35, - "loadingType" : 1, - "backgroundImage" : -1, - "systemHeader" : 1 , - "templateContent" : - { - "title" : - { - "image" : 65, - "text" : "I Heart Radio" - }, - "img03" : 69, - "buttons" : - { - "1" : - { - "text" : "button 1", - "image" : { - "normal" : 39, - "pressed" : 40 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "2" : - { - "text" : "button 2", - "image" : { - "normal" : 40, - "pressed" : 40 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "3" : - { - "text" : "button 3", - "image" : { - "normal" : 41, - "pressed" : 40 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "4" : - { - "text" : "button 4", - "image" : { - "normal" : 42, - "pressed" : 40 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "5" : - { - "text" : "button 5", - "image" : { - "normal" : 43, - "pressed" : 44 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "6" : - { - "text" : "button 6", - "image" : { - "normal" : 44, - "pressed" : 40 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - } - } - } -} diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/template2B.json b/Students/Dave Fugelso/Project/Alpine/testfiles/template2B.json deleted file mode 100644 index 1c5968bc..00000000 --- a/Students/Dave Fugelso/Project/Alpine/testfiles/template2B.json +++ /dev/null @@ -1,156 +0,0 @@ -{ - "path": "/hup/api/1.0/Template2", - "templateId" : 2, - "partialUpdate" : 0, - "appId" : "I heart radio", - "screenId" : 35, - "loadingType" : 1, - "backgroundImage" : -1, - "systemHeader" : 1 , - "templateContent" : - { - "title" : - { - "image" : 65, - "text" : "I Heart Radio" - }, - "img03" : 69, - "buttons" : - { - "1" : - { - "text" : "button 1", - "image" : { - "normal" : 45, - "pressed" : 46 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "2" : - { - "text" : "button 2", - "image" : { - "normal" : 47, - "pressed" : 46 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "3" : - { - "text" : "button 3", - "image" : { - "normal" : 48, - "pressed" : 46 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "4" : - { - "text" : "button 4", - "image" : { - "normal" : 49, - "pressed" : 46 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "5" : - { - "text" : "button 5", - "image" : { - "normal" : 50, - "pressed" : 46 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "6" : - { - "text" : "button 6", - "image" : { - "normal" : 51, - "pressed" : 46 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "7" : { - "text" : "button 7", - "image" : { - "normal" : 52, - "pressed" : 46 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "8" : - { - "text" : "button 8", - "image" : { - "normal" : 53, - "pressed" : 46 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "9" : - { - "text" : "button 9", - "image" : { - "normal" : 54, - "pressed" : 46 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - } - } - } -} diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/template3.json b/Students/Dave Fugelso/Project/Alpine/testfiles/template3.json deleted file mode 100644 index 97b9b35e..00000000 --- a/Students/Dave Fugelso/Project/Alpine/testfiles/template3.json +++ /dev/null @@ -1,171 +0,0 @@ - -{ - "path": "/hup/api/1.0/Template3", - "partialUpdate" : 0, - "appId" : "I Heart Radio", - "screenId" : 238, - "loadingType" : 2, - "backgroundImage" : 91, - "systemHeader" : 1, - "templateContent" : { - "title" : { - "image" : 92, - "text" : "Template 3" - }, - - "list" : [ - { - "text" : "line text 1", - "image" : 93, - "special" : "special item 1" - }, - { - "text" : "line text 2", - "image" : 94, - "special" : "special item 2" - }, - { - "text" : "line text 3", - "image" : 95, - "special" : "special item 3" - }, - { - "text" : "line text 4", - "image" : 96, - "special" : "special item 4" - }, - { - "text" : "line text 5", - "image" : 97, - "special" : "special item 5" - }, - { - "text" : "line text 6", - "image" : 297, - "special" : "special item 6" - }, - { - "text" : "line text 7", - "image" : 397, - "special" : "special item 7" - }, - { - "text" : "line text 8", - "image" : 497, - "special" : "special item 8" - }, - { - "text" : "line text 9", - "image" : 597, - "special" : "special item 9" - }, - { - "text" : "line text 10", - "image" : 697, - "special" : "special item 10" - }, - { - "text" : "line text 11", - "image" : 797, - "special" : "special item 11" - }, - { - "text" : "line text 12", - "image" : 897, - "special" : "special item 12" - } - ], - - "buttons" : { - "1": - { - "text" : "button 1", - "image" : { - "normal" : 98, - "pressed" : 99 - }, - "backgroundImage" : { - "normal" : 100, - "pressed" : 101 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "2" : - { - "text" : "button 2", - "image" : { - "normal" : 102, - "pressed" : 103 - }, - "backgroundImage" : { - "normal" :104, - "pressed" : 105 - }, - "scrollUpButton" : 1, - "scrollDownButton" : 1, - "enabled" : 0 - }, - "3" : - { - "text" : "button 3", - "image" : { - "normal" : 106, - "pressed" : 107 - }, - "backgroundImage" : { - "normal" : 108, - "pressed" : 109 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "4" : - { - "text" : "button 4", - "image" : { - "normal" : 110, - "pressed" : 111 - }, - "backgroundImage" : { - "normal" : 112, - "pressed" : 113 - } - - }, - "5" : - { - "text" : "button 5", - "image" : { - "normal" : 114, - "pressed" : 115 - }, - "backgroundImage" : { - "normal" : 116, - "pressed" : 117 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "6" : - { - "text" : "button 6", - "image" : { - "normal" : 118, - "pressed" : 119 - }, - "backgroundImage" : { - "normal" : 120, - "pressed" : 121 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - } - } - } - -} diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/template3A.json b/Students/Dave Fugelso/Project/Alpine/testfiles/template3A.json deleted file mode 100644 index 0f2ab573..00000000 --- a/Students/Dave Fugelso/Project/Alpine/testfiles/template3A.json +++ /dev/null @@ -1,157 +0,0 @@ - -{ - "path": "/hup/api/1.0/Template3", - "templateId" : 3, - "partialUpdate" : 0, - "appId" : "I Heart Radio", - "screenId" : 238, - "loadingType" : 2, - "backgroundImage" : 91, - "systemHeader" : 1, - "templateContent" : { - "title" : { - "image" : 65, - "text" : "Template 3A" - }, - - "list" : [ - { - "text" : "line text 1", - "image" : 6 - }, - { - "text" : "line text 2", - "image" : 7 - }, - { - "text" : "line text 3", - "image" : 8 - }, - { - "text" : "line text 4", - "image" : 9 - }, - { - "text" : "line text 5", - "image" : 10 - }, - { - "text" : "line text 6", - "image" : 7 - }, - { - "text" : "line text 7", - "image" : 8 - }, - { - "text" : "line text 8", - "image" : 9 - }, - { - "text" : "line text 9", - "image" : 10 - }, - { - "text" : "line text 10", - "image" : 6 - }, - { - "text" : "line text 11", - "image" : 8 - }, - { - "text" : "line text 12", - "image" : 9 - } - ], - "buttons" : { - "1": - { - "text" : "button 1", - "image" : { - "normal" : 13, - "pressed" : 14 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUp" : 0, - "scrollDown" : 0, - "enabled" : 1 - }, - "2" : - { - "text" : "button 2", - "image" : { - "normal" : 15, - "pressed" : 16 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUp" : 1, - "scrollDown" : 0, - "enabled" : 0 - }, - "3" : - { - "text" : "button 3", - "image" : { - "normal" : 17, - "pressed" : 18 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUp" : 0, - "scrollDown" : 1, - "enabled" : 1 - }, - "4" : - { - "text" : "button 4", - "image" : { - "normal" : 14, - "pressed" : 13 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - } - }, - "5" : - { - "text" : "button 5", - "image" : { - "normal" : 16, - "pressed" : 15 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUp" : 1, - "scrollDown" : 0, - "enabled" : 1 - }, - "6" : - { - "text" : "button 6", - "image" : { - "normal" : 18, - "pressed" : 17 - }, - "backgroundImage" : { - "normal" : 13, - "pressed" : 14 - }, - "scrollUp" : 0, - "scrollDown" : 1, - "enabled" : 1 - } - } - } -} diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/template3A.json.orig b/Students/Dave Fugelso/Project/Alpine/testfiles/template3A.json.orig deleted file mode 100644 index b03655d6..00000000 --- a/Students/Dave Fugelso/Project/Alpine/testfiles/template3A.json.orig +++ /dev/null @@ -1,160 +0,0 @@ - -{ - "path": "/hup/api/1.0/Template3", - "templateId" : 3, - "partialUpdate" : false, - "appId" : "I Heart Radio", - "screenId" : 238, - "loadingType" : 2, - "backgroundImage" : 91, - "systemHeader" : true, - "templateContent" : { - "title" : { - "image" : 65, - "text" : "Template 3B" - }, - - "list" : [ - { - "text" : "line text 1", - "image" : 6 - }, - { - "text" : "line text 2", - "image" : 7 - }, - { - "text" : "line text 3", - "image" : 8 - }, - { - "text" : "line text 4", - "image" : 9 - }, - { - "text" : "line text 5", - "image" : 10 - }, - { - "text" : "line text 6", - "image" : 7 - }, - { - "text" : "line text 7", - "image" : 8 - }, - { - "text" : "line text 8", - "image" : 9 - }, - { - "text" : "line text 9", - "image" : 10 - }, - { - "text" : "line text 10", - "image" : 6 - }, - { - "text" : "line text 11", - "image" : 8 - }, - { - "text" : "line text 12", - "image" : 9 - } - ], - "buttons" : { - "1": - { - "text" : "button 1", - "image" : { - "normal" : 13, - "pressed" : 14 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUp" : false, - "scrollDown" : false, - "enabled" : true - }, - "2" : - { - "text" : "button 2", - "image" : { - "normal" : 15, - "pressed" : 16 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, -<<<<<<< HEAD:Alpine/Glue/testfiles/template3A.json -======= - "scrollUp" : true, - "scrollDown" : false, - "enabled" : false ->>>>>>> f93a81d25a17e363d6c77ffc311ce11f58f86b9d:Alpine/Glue/template3A.json - }, - "3" : - { - "text" : "button 3", - "image" : { - "normal" : 17, - "pressed" : 18 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUp" : false, - "scrollDown" : true, - "enabled" : true - }, - "4" : - { - "text" : "button 4", - "image" : { - "normal" : 14, - "pressed" : 13 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - } - }, - "5" : - { - "text" : "button 5", - "image" : { - "normal" : 16, - "pressed" : 15 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUp" : true, - "scrollDown" : false, - "enabled" : true - }, - "6" : - { - "text" : "button 6", - "image" : { - "normal" : 18, - "pressed" : 17 - }, - "backgroundImage" : { - "normal" : 13, - "pressed" : 14 - }, - "scrollUp" : false, - "scrollDown" : true, - "enabled" : true - } - } - } -} diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/template3B.json b/Students/Dave Fugelso/Project/Alpine/testfiles/template3B.json deleted file mode 100644 index f29fa25e..00000000 --- a/Students/Dave Fugelso/Project/Alpine/testfiles/template3B.json +++ /dev/null @@ -1,181 +0,0 @@ - -{ - "path": "/hup/api/1.0/Template3", - "templateId" : 3, - "partialUpdate" : 0, - "appId" : "I Heart Radio", - "screenId" : 238, - "loadingType" : 2, - "backgroundImage" : 91, - "systemHeader" : 1, - "templateContent" : { - "title" : { - "image" : 65, - "text" : "Template 3B" - }, - - "list" : [ - { - "text" : "line text 1", - "image" : 6, - "special" : "special item 1", - "specialImage" : 34 - }, - { - "text" : "line text 2", - "image" : 7, - "special" : "special item 2", - "specialImage" : 35 - }, - { - "text" : "line text 3", - "image" : 8, - "special" : "special item 3", - "specialImage" : 36 - }, - { - "text" : "line text 4", - "image" : 9, - "special" : "special item 4", - "specialImage" : 37 - }, - { - "text" : "line text 5", - "image" : 10, - "special" : "special item 5", - "specialImage" : 38 - }, - { - "text" : "line text 6", - "image" : 7, - "special" : "special item 6", - "specialImage" : 36 - }, - { - "text" : "line text 7", - "image" : 8, - "special" : "special item 7", - "specialImage" : 37 - }, - { - "text" : "line text 8", - "image" : 9, - "special" : "special item 8", - "specialImage" : 38 - }, - { - "text" : "line text 9", - "image" : 10, - "special" : "special item 9", - "specialImage" : 34 - }, - { - "text" : "line text 10", - "image" : 6, - "special" : "special item 10", - "specialImage" : 35 - }, - { - "text" : "line text 11", - "image" : 8, - "special" : "special item 11", - "specialImage" : 36 - }, - { - "text" : "line text 12", - "image" : 9, - "special" : "special item 12", - "specialImage" : 37 - } - ], - "buttons" : { - "1": - { - "text" : "button 1", - "image" : { - "normal" : 13, - "pressed" : 14 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUp" : 0, - "scrollDown" : 0, - "enabled" : 1 - }, - "2" : - { - "text" : "button 2", - "image" : { - "normal" : 15, - "pressed" : 16 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUp" : 0, - "scrollDown" : 0, - "enabled" : 0 - }, - "3" : - { - "text" : "button 3", - "image" : { - "normal" : 17, - "pressed" : 18 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUp" : 0, - "scrollDown" : 0, - "enabled" : 1 - }, - "4" : - { - "text" : "button 4", - "image" : { - "normal" : 14, - "pressed" : 13 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - } - }, - "5" : - { - "text" : "button 5", - "image" : { - "normal" : 16, - "pressed" : 15 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUp" : 1, - "scrollDown" : 0, - "enabled" : 1 - }, - "6" : - { - "text" : "button 6", - "image" : { - "normal" : 18, - "pressed" : 17 - }, - "backgroundImage" : { - "normal" : 13, - "pressed" : 14 - }, - "scrollUp" : 0, - "scrollDown" : 1, - "enabled" : 1 - } - } - } -} diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/template4.json b/Students/Dave Fugelso/Project/Alpine/testfiles/template4.json deleted file mode 100644 index 4e9859f7..00000000 --- a/Students/Dave Fugelso/Project/Alpine/testfiles/template4.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "path": "/hup/api/1.0/Template4", - "partialUpdate" : 0, - "appId" : "IHeartRadio", - "screenId" : 201, - "loadingType" : 2, - "backgroundImage" : -1, - "systemHeader" : 0, - "templateContent" : { - - "text01" : "Station Created", - "text02" : "Would you like to play a game", - - "buttons" : { - "1": - { - "text" : "button 1", - "image" : { - "normal" : 202, - "pressed" : 203 - }, - "backgroundImage" : { - "normal" : 204, - "pressed" : 205 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "2" : - { - "text" : "button 2", - "image" : { - "normal" : 206, - "pressed" : 207 - }, - "backgroundImage" : { - "normal" :208, - "pressed" : 209 - }, - "scrollUpButton" : 1, - "scrollDownButton" : 1, - "enabled" : 0 - }, - "3" : - { - "text" : "button 3", - "image" : { - "normal" : 210, - "pressed" : 211 - }, - "backgroundImage" : { - "normal" : 212, - "pressed" : 213 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - } - } - } -} \ No newline at end of file diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/template4A.json b/Students/Dave Fugelso/Project/Alpine/testfiles/template4A.json deleted file mode 100644 index fe49797a..00000000 --- a/Students/Dave Fugelso/Project/Alpine/testfiles/template4A.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "path": "/hup/api/1.0/Template4", - "templateId" : 4, - "partialUpdate" : 0, - "appId" : "IHeartRadio", - "screenId" : 201, - "loadingType" : 1, - "backgroundImage" : -1, - "systemHeader" : 0, - "templateContent" : { - - "text01" : "Station Created", - "text02" : "Would you like to play a game", - - "buttons" : { - "1": - { - "text" : "button 1", - "image" : { - "normal" : 31, - "pressed" : 33 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - } - }, - "2" : - { - "text" : "button 2", - "image" : { - "normal" : 32, - "pressed" : 33 - }, - "backgroundImage" : { - "normal" :-1, - "pressed" : -1 - } - }, - "3" : - { - "text" : "button 3", - "image" : { - "normal" : 33, - "pressed" : 31 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - } - } - } - } -} \ No newline at end of file diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/template4B.json b/Students/Dave Fugelso/Project/Alpine/testfiles/template4B.json deleted file mode 100644 index fa3309b3..00000000 --- a/Students/Dave Fugelso/Project/Alpine/testfiles/template4B.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "path": "/hup/api/1.0/Template4", - "templateId" : 4, - "partialUpdate" : 0, - "appId" : "IHeartRadio", - "screenId" : 201, - "loadingType" : 1, - "backgroundImage" : -1, - "systemHeader" : 0, - "templateContent" : { - - "text01" : "Station Created", - "text02" : "Would you like to play a game", - - "buttons" : { - "1": - { - "text" : "button 1", - "image" : { - "normal" : 19, - "pressed" : 20 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - } - }, - "2" : - { - "text" : "button 2", - "image" : { - "normal" : 21, - "pressed" : 22 - }, - "backgroundImage" : { - "normal" :-1, - "pressed" : -1 - } - }, - "3" : - { - "text" : "button 3", - "image" : { - "normal" : 23, - "pressed" : 24 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - } - } - } - } -} \ No newline at end of file diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/template5.json b/Students/Dave Fugelso/Project/Alpine/testfiles/template5.json deleted file mode 100644 index 79c6ad7f..00000000 --- a/Students/Dave Fugelso/Project/Alpine/testfiles/template5.json +++ /dev/null @@ -1,93 +0,0 @@ -{ - "path": "/hup/api/1.0/Template5", - "templateId" : 5, - "partialUpdate" : 0, - "appId" : "I Heart Radio", - "screenId" : 338, - "loadingType" : 1, - "backgroundImage" : 339, - "systemHeader" : 1, - "templateContent" : { - "title" : { - "image" : 64, - "text" : "Template 5" - }, - "text01" : "text line zero 1", - "buttons" : { - "1": - { - "text" : "button 1", - "image" : { - "normal" : 13, - "pressed" : 14 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - } - }, - "2" : - { - "text" : "button 2", - "image" : { - "normal" : 15, - "pressed" : 16 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - } - }, - "3" : - { - "text" : "button 3", - "image" : { - "normal" : 17, - "pressed" : 18 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - } - }, - "4" : - { - "text" : "button 4", - "image" : { - "normal" : 14, - "pressed" : 13 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - } - - }, - "5" : - { - "text" : "button 5", - "image" : { - "normal" : 16, - "pressed" : 15 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - } - - }, - "6" : - { - "text" : "button 6", - "image" : { - "normal" : 18, - "pressed" : 17 - }, - "backgroundImage" : { - "normal" : 13, - "pressed" : 14 - } - } - } - } -} \ No newline at end of file diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/template6.json b/Students/Dave Fugelso/Project/Alpine/testfiles/template6.json deleted file mode 100644 index 9507d82d..00000000 --- a/Students/Dave Fugelso/Project/Alpine/testfiles/template6.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "path": "/hup/api/1.0/Template6", - "templateId" : 6, - "partialUpdate" : 0, - "appId" : "I Heart Radio", - "screenId" : 238, - "loadingType" : 2, - "backgroundImage" : 91, - "systemHeader" : 1, - "templateContent" : { - "title" : { - "image" : 64, - "text" : "Template 6" - }, - "line02" : { - "text" : "line 02 text", - "image" : 460 - }, - "img01" : 26, - "img03" : 70, - "text01" : "text line 01", - "text03" : "text line 03", - "buttons" : { - "1": - { - "text" : "button 1", - "image" : { - "normal" : 13, - "pressed" : 14 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - } - }, - "2" : - { - "text" : "button 2", - "image" : { - "normal" : 15, - "pressed" : 16 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - } - }, - "3" : - { - "text" : "button 3", - "image" : { - "normal" : 17, - "pressed" : 18 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - } - }, - "4" : - { - "text" : "button 4", - "image" : { - "normal" : 14, - "pressed" : 13 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - } - }, - "5" : - { - "text" : "button 5", - "image" : { - "normal" : 16, - "pressed" : 15 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - } - }, - "6" : - { - "text" : "button 6", - "image" : { - "normal" : 18, - "pressed" : 17 - }, - "backgroundImage" : { - "normal" : 13, - "pressed" : 14 - } - } - } - } -} diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/template7.json b/Students/Dave Fugelso/Project/Alpine/testfiles/template7.json deleted file mode 100644 index 18a4b7e9..00000000 --- a/Students/Dave Fugelso/Project/Alpine/testfiles/template7.json +++ /dev/null @@ -1,113 +0,0 @@ -{ - "path": "/hup/api/1.0/Template7", - "templateId" : 7, - "partialUpdate" : 0, - "appId" : "I Heart Radio", - "screenId" : 248, - "loadingType" : 2, - "backgroundImage" : 91, - "systemHeader" : 1, - "templateContent" : { - "title" : { - "image" : 64, - "text" : "Template 7" - }, - "line02" : { - "text" : "line 02 text", - "image" : 460 - }, - "img01" : 59, - "img03" : 60, - "text01" : "text line 01", - "text03" : "text line 03", - "buttons" : { - "1": - { - "text" : "button 1", - "image" : { - "normal" : 13, - "pressed" : 14 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "2" : - { - "text" : "button 2", - "image" : { - "normal" : 15, - "pressed" : 16 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 1, - "scrollDownButton" : 1, - "enabled" : 0 - }, - "3" : - { - "text" : "button 3", - "image" : { - "normal" : 17, - "pressed" : 18 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "4" : - { - "text" : "button 4", - "image" : { - "normal" : 14, - "pressed" : 13 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - } - }, - "5" : - { - "text" : "button 5", - "image" : { - "normal" : 16, - "pressed" : 15 - }, - "backgroundImage" : { - "normal" : -1, - "pressed" : -1 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - }, - "6" : - { - "text" : "button 6", - "image" : { - "normal" : 18, - "pressed" : 17 - }, - "backgroundImage" : { - "normal" : 13, - "pressed" : 14 - }, - "scrollUpButton" : 0, - "scrollDownButton" : 0, - "enabled" : 1 - } - } - } -} diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/template8.json b/Students/Dave Fugelso/Project/Alpine/testfiles/template8.json deleted file mode 100644 index c007f7fe..00000000 --- a/Students/Dave Fugelso/Project/Alpine/testfiles/template8.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "path": "/hup/api/1.0/Template8", - "partialUpdate" : 0, - "appId" : "I Heart Radio", - "screenId" : 248, - "loadingType" : 2, - "backgroundImage" : 91, - "systemHeader" : 1, - "templateContent" : { - "title" : { - "image" : 750, - "text" : "Template 8" - }, - "img01" : 761, - "img02" : 762, - "text01" : "text line 01" - } -} diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/template8A.json b/Students/Dave Fugelso/Project/Alpine/testfiles/template8A.json deleted file mode 100644 index d806a368..00000000 --- a/Students/Dave Fugelso/Project/Alpine/testfiles/template8A.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "path": "/hup/api/1.0/Template8", - "templateId" : 8, - "partialUpdate" : 0, - "appId" : "I Heart Radio", - "screenId" : 248, - "loadingType" : 2, - "backgroundImage" : 91, - "systemHeader" : 1, - "templateContent" : { - "title" : { - "image" : 64, - "text" : "Template 8A" - }, - "img01" : 68, - "img02" : -1, - "text01" : "Flügel" - } -} diff --git a/Students/Dave Fugelso/Project/Alpine/testfiles/template8B.json b/Students/Dave Fugelso/Project/Alpine/testfiles/template8B.json deleted file mode 100644 index d48db360..00000000 --- a/Students/Dave Fugelso/Project/Alpine/testfiles/template8B.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "path": "/hup/api/1.0/Template8", - "templateId" : 8, - "partialUpdate" : 0, - "appId" : "I Heart Radio", - "screenId" : 248, - "loadingType" : 2, - "backgroundImage" : 91, - "systemHeader" : 1, - "templateContent" : { - "title" : { - "image" : 64, - "text" : "Template 8B" - }, - "img01" : -1, - "img02" : 67, - "text01" : "text line 01" - } -} diff --git a/Students/Dave Fugelso/Project/Introduction to Python Project Report.docx b/Students/Dave Fugelso/Project/Introduction to Python Project Report.docx deleted file mode 100644 index 7f8c356a..00000000 Binary files a/Students/Dave Fugelso/Project/Introduction to Python Project Report.docx and /dev/null differ diff --git a/Students/Dave Fugelso/Project/The pain and suffering that went into getting PyQt 4 installed on Ubuntu.docx b/Students/Dave Fugelso/Project/The pain and suffering that went into getting PyQt 4 installed on Ubuntu.docx deleted file mode 100644 index fc4cc04d..00000000 Binary files a/Students/Dave Fugelso/Project/The pain and suffering that went into getting PyQt 4 installed on Ubuntu.docx and /dev/null differ diff --git a/Students/Dave Fugelso/Project/pyqt/_HupInterface.py b/Students/Dave Fugelso/Project/pyqt/_HupInterface.py deleted file mode 100644 index d2c55322..00000000 --- a/Students/Dave Fugelso/Project/pyqt/_HupInterface.py +++ /dev/null @@ -1,240 +0,0 @@ -''' -Python course project. - -This implements templates for simulation. Please see write up. - -''' -import sys -from PyQt4.QtGui import QApplication, QDialog -from ui_template import * -from functools import partial - - - -class Button (object): - - def __init__(self, *args, **kwargs): - ''' - Store info for a button. The args are well known. - ''' - print 'Add Button' - print args - self.text = args[0] - self.normalImage = args[1] - self.normalImagePressed = args[2] - self.backgroundImage = args[3] - self.backgroundImagePressed = args[4] - self.scrollUpButton = args[5] - self.scrollDownButton = args[5] - self.enabled = args[6] - self.key = -1 - - @property - def Key (self): - return self.key - - @Key.setter - def Key(self, key): - self.key = key - -class pyqtTemplate(object): - - def __init__(self): - self.Buttons = [None for i in range(9)] #max nine buttons - self.buttonIndex = 0 - self.partialUpdate = None - self.appId = None - self.loadingType = None - self.screenId = None - self.backgroundImage = None - self.systemHeader = None - self.colrRGB = None - self.current = None - self.totlaseconds = None - self.active = None - self.path = None - self.key = None - self.callback = None - - def addButtons(self, *args, **kwargs): - ''' - Add button to template. Buttons are sent in order. - ''' - self.Buttons[self.buttonIndex] = Button(*args, **kwargs) - self.buttonIndex += 1 - - def clearButtonList(self): - ''' - Clear list for next display. - ''' - self.Buttons = [None for i in range(9)] #max nine buttons - - def setContentTemplateHeader(self, *args, **kwargs): - ''' - Set header informaiton. - ''' - self.partialUpdate = args[0] - self.appId = args[1] - self.loadingType = args[2] - self.screenId = args[3] - self.backgroundImage = args[4] - self.systemHeader = args[5] - - def setContentProgressBar(self, *args, **kwargs): - ''' - Progress bar update. - ''' - self.colorRGB = args[0] - self.current = args[1] - self.totlaseconds = args[2] - self.active = args[3] - - def sendImage (self, *args, **kwargs): - ''' - Returns a request image. (Btw this calls a registered callback. This function would normal - call the registered callback, thus the 'Send' instead of 'Receive.' - - Also, this method would normally be asynchronous, but it isn't here. (It would find the right button based on key.) - ''' - - #find widget by name - wid = getattr(self.ui, self.name) - - if isinstance(wid, QtGui.QLabel): - print 'have Qlabel!' - wid.setPixmap (QtGui.QPixmap(args[0])) - else: - icon = QtGui.QPixmap(args[0]) - wid.setIcon(QtGui.QIcon(icon)) - size = wid.frameSize () - wid.setIconSize(QtCore.QSize(size.height(),size.width())) - print self.button.key - #wid.clicked.connect(lambda: self.buttonClick(self.button.Key)) - wid.clicked.connect(partial(self.buttonClick, self.button.Key)) - - - def startPlatformInitialization(self, alpineInterfaceCallback): - ''' - This defines the callback function to make calls back into HUP. - ''' - self.callback = alpineInterfaceCallback - - def buttonClick (self, key): - ''' - Pass a button click back to HUIP for processising. - ''' - cbDict = {} - cbDict['Index'] = key - cbDict['templateId'] = self.appId - cbDict['type'] = 0 - self.callback('TemplateButtonPress', cbDict) - - - def setContentTemplate1 (self, *args, **kwargs): - buttonNames = ('btn01', 'btn02', 'btn03', 'btn04', 'btn05', 'btn06') - print 'Template 1 display' - self.image = args[0] - self.titlestr = args[1] - self.img01 = args[2] - self.img02 = args[3] - self.text01 = args[4] - self.text02 = args[5] - self.text03 = args[6] - self.text04 = args[7] - - app = QApplication(sys.argv) - window = QDialog() - self.ui = Ui_Template1() - self.ui.setupUi(window) - - #For each button gets its image () - processButtons = zip (buttonNames, self.Buttons, range(1,7)) - for self.name, self.button, self.buttonId in processButtons: - ''' - Requests to HUP are dictionaries. - ''' - request = {} - request['ImageID'] = self.button.normalImage - - #register callback for button - self.button.Key = self.buttonId - - #request the image - self.callback ('RequestImage', request) - - - - - #Other images in the frameSize - self.name = 'img01' - request['ImageID'] = self.img01 - self.callback ('RequestImage', request) - self.name = 'img02' - request['ImageID'] = self.img02 - self.callback ('RequestImage', request) - - #Set the text field (normally this would take into consideration length to set size. - wid = getattr(self.ui, 'imgtitle') - wid.setText (QtCore.QString(self.titlestr)) - wid = getattr(self.ui, 'text01') - wid.setText (QtCore.QString(self.text01)) - wid = getattr(self.ui, 'text02') - wid.setText (QtCore.QString(self.text02)) - wid = getattr(self.ui, 'text03') - wid.setText (QtCore.QString(self.text03)) - wid = getattr(self.ui, 'text04') - wid.setText (QtCore.QString(self.text04)) - - #Update progress bar - wid = getattr(self.ui, 'text04') - wid.setText (QtCore.QString(self.text04)) - wid = getattr(self.ui, 'progbar') - wid.setMinimum(0) - wid.setMaximum(self.totlaseconds) - wid.setValue (self.current * self.totlaseconds) - - window.show() - sys.exit(app.exec_()) - -# Instance of template -P = pyqtTemplate () - - -''' -These function simulate the C functions that is the real interface. -''' -def AddButton (*args, **kwargs): - P.addButtons(*args, **kwargs) - -def ClearButtonList (): - P.clearButtonList() - -def SetContentTemplateHeader(*args, **kwargs): - P.setContentTemplateHeader(*args, **kwargs) - -def SetContentProgressBar(*args, **kwargs): - P.setContentProgressBar(*args, **kwargs) - -def SendImage (*args, **kwargs): - P.sendImage (*args, **kwargs) - -def startPlatformInitialization(alpineInterfaceCallback): - P.startPlatformInitialization(alpineInterfaceCallback) - -def SetContentTemplate1 (*args, **kwargs): - P.setContentTemplate1(*args, **kwargs) - -''' -Unimplemented code. this allows me to replace the C module _HupInterface -''' -def SendNowExecuting (*arg, **kwargs): - pass - -def SendRequestAudioFocus(*arg, **kwargs): - pass - -def SendSetLocation(*arg, **kwargs): - pass - -def SendSetLocation(*arg, **kwargs): - pass \ No newline at end of file diff --git a/Students/Dave Fugelso/Project/pyqt/template1.ui b/Students/Dave Fugelso/Project/pyqt/template1.ui deleted file mode 100644 index 33159468..00000000 --- a/Students/Dave Fugelso/Project/pyqt/template1.ui +++ /dev/null @@ -1,217 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<ui version="4.0"> - <class>Template1</class> - <widget class="QDialog" name="Template1"> - <property name="geometry"> - <rect> - <x>0</x> - <y>0</y> - <width>500</width> - <height>300</height> - </rect> - </property> - <property name="sizePolicy"> - <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> - <horstretch>0</horstretch> - <verstretch>0</verstretch> - </sizepolicy> - </property> - <property name="windowTitle"> - <string>Dialog</string> - </property> - <widget class="QToolButton" name="btn01"> - <property name="geometry"> - <rect> - <x>17</x> - <y>223</y> - <width>76</width> - <height>60</height> - </rect> - </property> - <property name="text"> - <string>...</string> - </property> - </widget> - <widget class="QToolButton" name="btn02"> - <property name="geometry"> - <rect> - <x>95</x> - <y>223</y> - <width>76</width> - <height>60</height> - </rect> - </property> - <property name="text"> - <string>...</string> - </property> - </widget> - <widget class="QToolButton" name="btn03"> - <property name="geometry"> - <rect> - <x>173</x> - <y>223</y> - <width>76</width> - <height>60</height> - </rect> - </property> - <property name="text"> - <string>...</string> - </property> - </widget> - <widget class="QToolButton" name="btn04"> - <property name="geometry"> - <rect> - <x>251</x> - <y>223</y> - <width>76</width> - <height>60</height> - </rect> - </property> - <property name="text"> - <string>...</string> - </property> - </widget> - <widget class="QToolButton" name="btn05"> - <property name="geometry"> - <rect> - <x>329</x> - <y>223</y> - <width>76</width> - <height>60</height> - </rect> - </property> - <property name="text"> - <string>...</string> - </property> - </widget> - <widget class="QToolButton" name="btn06"> - <property name="geometry"> - <rect> - <x>407</x> - <y>223</y> - <width>76</width> - <height>60</height> - </rect> - </property> - <property name="text"> - <string>...</string> - </property> - </widget> - <widget class="QLabel" name="img01"> - <property name="geometry"> - <rect> - <x>16</x> - <y>84</y> - <width>100</width> - <height>100</height> - </rect> - </property> - <property name="text"> - <string>TextLabel</string> - </property> - </widget> - <widget class="QLabel" name="img02"> - <property name="geometry"> - <rect> - <x>463</x> - <y>70</y> - <width>25</width> - <height>25</height> - </rect> - </property> - <property name="text"> - <string>TextLabel</string> - </property> - </widget> - <widget class="QLabel" name="imgtitle"> - <property name="geometry"> - <rect> - <x>0</x> - <y>0</y> - <width>250</width> - <height>45</height> - </rect> - </property> - <property name="font"> - <font> - <family>Saab</family> - <pointsize>25</pointsize> - </font> - </property> - <property name="autoFillBackground"> - <bool>true</bool> - </property> - <property name="text"> - <string>TextLabel</string> - </property> - </widget> - <widget class="QLineEdit" name="text01"> - <property name="geometry"> - <rect> - <x>128</x> - <y>84</y> - <width>310</width> - <height>22</height> - </rect> - </property> - </widget> - <widget class="QLineEdit" name="text02"> - <property name="geometry"> - <rect> - <x>128</x> - <y>112</y> - <width>310</width> - <height>24</height> - </rect> - </property> - </widget> - <widget class="QLineEdit" name="text03"> - <property name="geometry"> - <rect> - <x>128</x> - <y>146</y> - <width>310</width> - <height>22</height> - </rect> - </property> - </widget> - <widget class="QLineEdit" name="text04"> - <property name="geometry"> - <rect> - <x>406</x> - <y>194</y> - <width>72</width> - <height>18</height> - </rect> - </property> - </widget> - <widget class="QProgressBar" name="progbar"> - <property name="geometry"> - <rect> - <x>128</x> - <y>197</y> - <width>270</width> - <height>14</height> - </rect> - </property> - <property name="value"> - <number>24</number> - </property> - </widget> - <widget class="QLabel" name="sbar"> - <property name="geometry"> - <rect> - <x>250</x> - <y>0</y> - <width>250</width> - <height>45</height> - </rect> - </property> - <property name="text"> - <string/> - </property> - </widget> - </widget> - <resources/> - <connections/> -</ui> diff --git a/Students/Dave Fugelso/Project/pyqt/ui_template.py b/Students/Dave Fugelso/Project/pyqt/ui_template.py deleted file mode 100644 index 83e5b11b..00000000 --- a/Students/Dave Fugelso/Project/pyqt/ui_template.py +++ /dev/null @@ -1,102 +0,0 @@ -# -*- coding: utf-8 -*- - -# Form implementation generated from reading ui file 'template1.ui' -# -# Created: Thu Dec 11 21:43:48 2014 -# by: PyQt4 UI code generator 4.11.3 -# -# WARNING! All changes made in this file will be lost! - -from PyQt4 import QtCore, QtGui - -try: - _fromUtf8 = QtCore.QString.fromUtf8 -except AttributeError: - def _fromUtf8(s): - return s - -try: - _encoding = QtGui.QApplication.UnicodeUTF8 - def _translate(context, text, disambig): - return QtGui.QApplication.translate(context, text, disambig, _encoding) -except AttributeError: - def _translate(context, text, disambig): - return QtGui.QApplication.translate(context, text, disambig) - -class Ui_Template1(object): - def setupUi(self, Template1): - Template1.setObjectName(_fromUtf8("Template1")) - Template1.resize(500, 300) - sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) - sizePolicy.setHorizontalStretch(0) - sizePolicy.setVerticalStretch(0) - sizePolicy.setHeightForWidth(Template1.sizePolicy().hasHeightForWidth()) - Template1.setSizePolicy(sizePolicy) - self.btn01 = QtGui.QToolButton(Template1) - self.btn01.setGeometry(QtCore.QRect(17, 223, 76, 60)) - self.btn01.setObjectName(_fromUtf8("btn01")) - self.btn02 = QtGui.QToolButton(Template1) - self.btn02.setGeometry(QtCore.QRect(95, 223, 76, 60)) - self.btn02.setObjectName(_fromUtf8("btn02")) - self.btn03 = QtGui.QToolButton(Template1) - self.btn03.setGeometry(QtCore.QRect(173, 223, 76, 60)) - self.btn03.setObjectName(_fromUtf8("btn03")) - self.btn04 = QtGui.QToolButton(Template1) - self.btn04.setGeometry(QtCore.QRect(251, 223, 76, 60)) - self.btn04.setObjectName(_fromUtf8("btn04")) - self.btn05 = QtGui.QToolButton(Template1) - self.btn05.setGeometry(QtCore.QRect(329, 223, 76, 60)) - self.btn05.setObjectName(_fromUtf8("btn05")) - self.btn06 = QtGui.QToolButton(Template1) - self.btn06.setGeometry(QtCore.QRect(407, 223, 76, 60)) - self.btn06.setObjectName(_fromUtf8("btn06")) - self.img01 = QtGui.QLabel(Template1) - self.img01.setGeometry(QtCore.QRect(16, 84, 100, 100)) - self.img01.setObjectName(_fromUtf8("img01")) - self.img02 = QtGui.QLabel(Template1) - self.img02.setGeometry(QtCore.QRect(463, 70, 25, 25)) - self.img02.setObjectName(_fromUtf8("img02")) - self.imgtitle = QtGui.QLabel(Template1) - self.imgtitle.setGeometry(QtCore.QRect(0, 0, 250, 45)) - font = QtGui.QFont() - font.setFamily(_fromUtf8("Saab")) - font.setPointSize(25) - self.imgtitle.setFont(font) - self.imgtitle.setAutoFillBackground(True) - self.imgtitle.setObjectName(_fromUtf8("imgtitle")) - self.text01 = QtGui.QLineEdit(Template1) - self.text01.setGeometry(QtCore.QRect(128, 84, 310, 22)) - self.text01.setObjectName(_fromUtf8("text01")) - self.text02 = QtGui.QLineEdit(Template1) - self.text02.setGeometry(QtCore.QRect(128, 112, 310, 24)) - self.text02.setObjectName(_fromUtf8("text02")) - self.text03 = QtGui.QLineEdit(Template1) - self.text03.setGeometry(QtCore.QRect(128, 146, 310, 22)) - self.text03.setObjectName(_fromUtf8("text03")) - self.text04 = QtGui.QLineEdit(Template1) - self.text04.setGeometry(QtCore.QRect(406, 194, 72, 18)) - self.text04.setObjectName(_fromUtf8("text04")) - self.progbar = QtGui.QProgressBar(Template1) - self.progbar.setGeometry(QtCore.QRect(128, 197, 270, 14)) - self.progbar.setProperty("value", 24) - self.progbar.setObjectName(_fromUtf8("progbar")) - self.sbar = QtGui.QLabel(Template1) - self.sbar.setGeometry(QtCore.QRect(250, 0, 250, 45)) - self.sbar.setText(_fromUtf8("")) - self.sbar.setObjectName(_fromUtf8("sbar")) - - self.retranslateUi(Template1) - QtCore.QMetaObject.connectSlotsByName(Template1) - - def retranslateUi(self, Template1): - Template1.setWindowTitle(_translate("Template1", "Dialog", None)) - self.btn01.setText(_translate("Template1", "...", None)) - self.btn02.setText(_translate("Template1", "...", None)) - self.btn03.setText(_translate("Template1", "...", None)) - self.btn04.setText(_translate("Template1", "...", None)) - self.btn05.setText(_translate("Template1", "...", None)) - self.btn06.setText(_translate("Template1", "...", None)) - self.img01.setText(_translate("Template1", "TextLabel", None)) - self.img02.setText(_translate("Template1", "TextLabel", None)) - self.imgtitle.setText(_translate("Template1", "TextLabel", None)) - diff --git a/Students/Dave Fugelso/Project/screenshot.png b/Students/Dave Fugelso/Project/screenshot.png deleted file mode 100644 index e16b60b2..00000000 Binary files a/Students/Dave Fugelso/Project/screenshot.png and /dev/null differ diff --git a/Students/Dave Fugelso/Project/template1A Picture.PNG b/Students/Dave Fugelso/Project/template1A Picture.PNG deleted file mode 100644 index edd96216..00000000 Binary files a/Students/Dave Fugelso/Project/template1A Picture.PNG and /dev/null differ diff --git a/Students/Dave Fugelso/Session 1/breakme.py b/Students/Dave Fugelso/Session 1/breakme.py deleted file mode 100644 index 761583bf..00000000 --- a/Students/Dave Fugelso/Session 1/breakme.py +++ /dev/null @@ -1,33 +0,0 @@ -''' -In the break_me.py file write four simple Python functions: - -Each function, when called, should cause an exception to happen -Each function should result in one of the four common exceptions from our lecture. -for review: NameError, TypeError, SyntaxError, AttributeError - - -Use the Python standard library reference on Built In Exceptions as a reference -''' - -def nameErrorExample(): - t = somethingThatDoesntExist() - -def typeErrorExample (): - a = 'Hello, World!' - worlds = 1 - worlds = worlds + a - -def syntaxErrorExample (): -# a = 'some string' -# a.print() - pass - -import time -def attributeErroexample(): - t = time.time - b = t.newtime - -#nameErrorExample() -#typeErrorExample () -syntaxErrorExample () -attributeErroexample() \ No newline at end of file diff --git a/Students/Dave Fugelso/Session 1/grid.py b/Students/Dave Fugelso/Session 1/grid.py deleted file mode 100644 index 1753a208..00000000 --- a/Students/Dave Fugelso/Session 1/grid.py +++ /dev/null @@ -1,121 +0,0 @@ -''' - -Dave Fugelso - -Problem: - -Write a function that draws a grid like the following: - -+ - - - - + - - - - + -| | | -| | | -| | | -| | | -+ - - - - + - - - - + -| | | -| | | -| | | -| | | -+ - - - - + - - - - + -Hint: to print more than one value on a line, you can print a comma-separated sequence: print "+ -" - -If the sequence ends with a comma, Python leaves the line unfinished, so the value printed next appears on the same line. - -print "+", -print "-" -The output of these statements is "+ -". - -A print statement all by itself ends the current line and goes to the next line. - -Part 2: - -Write a function print_grid() that takes one integer argument and prints a grid like the picture above, BUT the size of the grid is given by the argument. - -For example, print_grid(11) prints the grid in the above picture. - -This problem is underspecified. Do something reasonable. - -Hints: - -A character is a string of length 1 - -s + t is string s followed by string t - -s * n is string s replicated n times - -Part 3: - -Write a function that draws a similar grid with three rows and three columns. - -(what to do about rounding?) - - - -''' - -def cellTopBottom(cells, size): - ''' - print cell top or botton, including the '+' - ''' - for columns in range (0, cells): - print '+', - for i in range (0, size): - print '-', - print '+' - -def printSide (cells, size): - ''' - Just do the sides, no '+' - ''' - - - for rows in range (0, size): - print '|', - for column in range (0, cells): - for spaces in range(0, size): - print ' ', - print '|', - print - -def fixed_grid(): - ''' - print a two by two grid like example above. - ''' - cells = 2 - size = 4 - - for rows in range(0, cells): - cellTopBottom(cells, size) - printSide (cells, size) - cellTopBottom(cells, size) - -def print_grid(size): - ''' - Take an argument and print a grid with a vartiable size - ''' - cells = 2 - - for rows in range(0, cells): - cellTopBottom(cells, size) - printSide (cells, size) - cellTopBottom(cells, size) - -def print_grid_variable_cells(cells, size): - ''' - Take an argument and print a grid with a variable size - Take an argument for number of cells - - Ah, by using cells and size for the cell size I completely missed the rounding portion of this problem. - If I did do iut the other way, I would have left off the right and bottom edges. - ''' - - for rows in range(0, cells): - cellTopBottom(cells, size) - printSide (cells, size) - cellTopBottom(cells, size) - -fixed_grid() -print_grid(4) -print_grid(5) -print_grid_variable_cells (3, 4) - diff --git a/Students/Dave Fugelso/Session 2/ack.py b/Students/Dave Fugelso/Session 2/ack.py deleted file mode 100644 index b2118ed0..00000000 --- a/Students/Dave Fugelso/Session 2/ack.py +++ /dev/null @@ -1,101 +0,0 @@ -''' - -Dave Fugelso Python Course homework Session 2 Oct. 9 - -The Ackermann function, A(m, n), is defined: - -A(m, n) = - n+1 if m = 0 - A(m-1, 1) if m > 0 and n = 0 - A(m-1, A(m, n-1)) if m > 0 and n > 0. - - - - See http://en.wikipedia.org/wiki/Ackermann_funciton - -Create a new module called ack.py in a session02 folder in your student folder. - -In that module, write a function named ack that performs Ackermann's function. - - -Write a good docstring for your function according to PEP 257. -Ackermanns function is not defined for input values less than 0. Validate inputs to your function and return None if they are negative. -The wikipedia page provides a table of output values for inputs between 0 and 4. Using this table, add a if __name__ == "__main__": block to test your function. - -Test each pair of inputs between 0 and 4 and assert that the result produced by your function is the result expected by the wikipedia table. - -When your module is run from the command line, these tests should be executed. If they all pass, - - -print All Tests Pass as the result. - -Add your new module to your git clone and commit frequently while working on your implementation. Include good commit messages that explain concisely both what you are doing and why. - -When you are finished, push your changes to your fork of the class repository in GitHub. Then make a pull request and submit your assignment in Canvas. - -''' - -#Ackermann function -def ack(m, n): - ''' - Calculate the value for Ackermann's function for m, n. - ''' - - if m < 0 or n < 0: return None - - if m == 0: return n+1 - - if n == 0: return ack(m-1, 1) - - return ack (m-1, ack (m, n-1)) - -class someClass (object): - - def __init__(self): - self.setBody('there') - - def afunc (self, a): - print a, self.getBody() - - def getBody(self): - return self.__body - - def setBody(self, value): - self.__body = value - - body = property(getBody, setBody, None, "Body property.") - - -if __name__ == "__main__": - ''' - Unit test for Ackermann function. Print table m = 0,4 and n = 0,4. - ''' - - #Print nicely - print 'm/n\t\t', - for n in range(0,5): - print n, '\t', - print '\n' - - for m in range (0,4): - print m,'\t', - for n in range(0,5): - print '\t', - print ack(m, n), - print - - # for the m = 4 row, just print the first one (n = 0) otherwise we hit a stack overflow (maximum resursion) - m = 4 - print m,'\t', - for n in range(0,1): - print '\t', - print ack(m, n), - print '\t-\t-\t-\t-' - - print 'All Tests Pass' - - s = someClass () - s.afunc('hello') - s.body = 'fuck ya!' - s.afunc('hello') - s.body = 'why not?' \ No newline at end of file diff --git a/Students/Dave Fugelso/Session 2/series.py b/Students/Dave Fugelso/Session 2/series.py deleted file mode 100644 index 8caeab06..00000000 --- a/Students/Dave Fugelso/Session 2/series.py +++ /dev/null @@ -1,150 +0,0 @@ -''' -Dave Fugelso - UW Python Certification 10/09/2014 - -The Fibonacci Series is a numeric series starting with the integers 0 and 1. In this series, the next -integer is determined by summing the previous two. This gives us: - -0, 1, 1, 2, 3, 5, 8, 13, ... -Create a new module series.py in the session02 folder in your student folder. In it, add a function -called fibonacci. The function should have one parameter n. The function should return the nth value in the fibonacci series. - -Ensure that your function has a well-formed docstring - -The Lucas Numbers are a related series of integers that start with the values 2 and 1 rather than 0 and 1. -The resulting series looks like this: - - -2, 1, 3, 4, 7, 11, 18, 29, ... -In your series.py module, add a new function lucas that returns the nth value in the lucas numbers - -Ensure that your function has a well-formed docstring - -Both the fibonacci series and the lucas numbers are based on an identical formula. - -Add a third function called sum_series with one required parameter and two optional parameters. The required -parameter will determine which element in the series to print. The two optional parameters will have default values of 0 and 1 and will determine the first two values for the series to be produced. - -Calling this function with no optional parameters will produce numbers from the fibonacci series. Calling it -with the optional arguments 2 and 1 will produce values from the lucas numbers. Other values for the optional parameters will produce other series. - -Ensure that your function has a well-formed docstring - -Add an if __name__ == \"__main__\": block to the end of your series.py module. Use the block to write a series of assert -statements that demonstrate that your three functions work properly. - - -Use comments in this block to inform the observer what your tests do. - -Add your new module to your git clone and commit frequently while working on your implementation. Include good commit -messages that explain concisely both what you are doing and why. - -When you are finished, push your changes to your fork of the class repository in GitHub. Then make a pull request and submit your assignment in Canvas. -''' - -def fibonnacci (n): - ''' - Return the Nth value in the Fibonacci series. - Args: - n - Nth value - ''' - - # special cases at front of series - if n == 0: return 0 - if n == 1: return 1 - - #else let's calculate - a, b = 0, 1 - for seq in range (2, n): - a,b = b,a+b - return a+b - -def lucas (n): - ''' - Return the Nth value in the Lucas series. - Args: - n - Nth value - ''' - - # special cases at front of series - if n == 0: return 2 - if n == 1: return 1 - - #else let's calculate - a, b = 2, 1 - for seq in range (2, n): - a,b = b,a+b - return a+b - -''' -Second solution. Just have lucas and fibonacci start a series function with differing start arguments. -''' - -def series (a, b, n): - ''' - Calculate the nth number in a series based on starting at a, b. - Args: - a - value for element 0 - b - value for element 1 - n - the series element wanted - ''' - - # special cases at front of series - if n == 0: return a - if n == 1: return b - - #else let's calculate - for seq in range (2, n): - a,b = b,a+b - return a+b - -def fibonacci_2(n): - ''' - Return the Nth value in the Fibonacci series. - Args: - n - Nth value - ''' - return series(0, 1, n) - -def lucas_2(n): - ''' - Return the Nth value in the Lucas series. - Args: - n - Nth value - ''' - return series(2, 1, n) - -if __name__ == "__main__": - ''' - perform unit tests for fibonacci and lucas funcitons. - ''' - - #Test the Fibinacci series: randomly selected 0, 1 5, 8 and 25 - assert fibonnacci (0)==0, 'Fibonnaci (0) is 0. Failed!' - assert fibonnacci (1)==1, 'Fibonnaci (1) is 1. Failed!' - assert fibonnacci (5)==5, 'Fibonnaci (5) is 5. Failed!' - assert fibonnacci (8)==21, 'Fibonnaci (8) is 21. Failed!' - assert fibonnacci (25)==75025, 'Fibonnaci (25) is 75025. Failed!' - - #Test lucas series: choose 0, 1, 6, 9, 26 - assert lucas(0)==2, 'Lucas(0) is 2. Failed!' - assert lucas(1)==1, 'Lucas(1) is 1. Failed!' - assert lucas(6)==18, 'Lucas(6) is 2. Failed!' - assert lucas(9)==76, 'Lucas(9) is 2. Failed!' - assert lucas(26)==271443, 'Lucas(26) is 2. Failed!' - - #Test the Fibinacci series: randomly selected 0, 1 5, 8 and 25 - assert fibonnacci_2 (0)==0, 'Fibonnaci 2 (0) is 0. Failed!' - assert fibonnacci_2 (1)==1, 'Fibonnaci 2 (1) is 1. Failed!' - assert fibonnacci_2 (5)==5, 'Fibonnaci 2 (5) is 5. Failed!' - assert fibonnacci_2 (8)==21, 'Fibonnaci 2 (8) is 21. Failed!' - assert fibonnacci_2 (25)==75025, 'Fibonnaci 2 (25) is 75025. Failed!' - - # Test the second solutions - #Test lucas series: choose 0, 1, 6, 9, 26 - assert lucas_2(0)==2, 'Lucas 2 (0) is 2. Failed!' - assert lucas_2(1)==1, 'Lucas 2 (1) is 1. Failed!' - assert lucas_2(6)==18, 'Lucas 2 (6) is 2. Failed!' - assert lucas_2(9)==76, 'Lucas 2 (9) is 2. Failed!' - assert lucas_2(26)==271443, 'Lucas 2 (26) is 2. Failed!' - - \ No newline at end of file diff --git a/Students/Dave Fugelso/Session 3/list_lab.py b/Students/Dave Fugelso/Session 3/list_lab.py deleted file mode 100644 index 03fddcee..00000000 --- a/Students/Dave Fugelso/Session 3/list_lab.py +++ /dev/null @@ -1,164 +0,0 @@ -''' - - -List Lab (after http://www.upriss.org.uk/python/session5.html) - -In your student folder, create a new file called list_lab.py. - -The file should be an executable python script. That is to say that one should be able to run the script directly like so: - -$ ./list_lab.py -Add the file to your clone of the repository and commit changes frequently while working on the following tasks. When you are done, push your -changes to GitHub and issue a pull request. - -(if you are struggling with git -- just write the code for now) - -When the script is run, it should accomplish the following four series of actions: - -Create a list that contains "Apples", "Pears", "Oranges" and "Peaches". -Display the list. -Ask the user for another fruit and add it to the end of the list. -Display the list. -Ask the user for a number and display the number back to the user and the fruit corresponding to that number (on a 1-is-first basis). -Add another fruit to the beginning of the list using "+" and display the list. -Add another fruit to the beginning of the list using insert() and display the list. -Display all the fruits that begin with "P", using a for loop. -Using the list created in series 1 above: - -Display the list. -Remove the last fruit from the list. -Display the list. -Ask the user for a fruit to delete and find it and delete it. -(Bonus: Multiply the list times two. Keep asking until a match is found. Once found, delete all occurrences.) -Again, using the list from series 1: - -Ask the user for input displaying a line like "Do you like apples?" -for each fruit in the list (making the fruit all lowercase). -For each "no", delete that fruit from the list. -For any answer that is not "yes" or "no", prompt the user to answer with one of those two values (a while loop is good here): -Display the list. -Once more, using the list from series 1: - -Make a copy of the list and reverse the letters in each fruit in the copy. - -Delete the last item of the original list. Display the original list and the copy. - -''' - -#Windows development platform: - -if __name__ == "__main__": - #Create a list that contains "Apples", "Pears", "Oranges" and "Peaches". - fruits = ['Apples', 'Pears', 'Oranges', 'Peaches'] - #Display the list. - print fruits - - ''' - #Ask the user for another fruit and add it to the end of the list. - newFruit = raw_input ('Enter a new fruit to add to the list: ') - fruits.append(newFruit) - #Display the list. - print fruits - - #Ask the user for a number and display the number back to the user and the fruit corresponding to that number (on a 1-is-first basis). - validIndex = False - while not validIndex: - fruitIndex = raw_input ('Enter an index for a fruit: ') - try: - index = int(fruitIndex) - if index >= 0 and index < len(fruits): - validIndex = True - except: - print 'Invalid input. Enter number between zero and ', len (fruits) - print index, fruits[index] - ''' - #Add another fruit to the beginning of the list using "+" and display the list. - fruits = ['Kiwi'] + fruits - print fruits - - #Add another fruit to the beginning of the list using insert() and display the list. - fruits.insert (0, 'Pomegranates') - print fruits - - #Display all the fruits that begin with "P", using a for loop. - for fruit in fruits: - if fruit[0].upper() == 'P': - print fruit, - print - - - #Using the list created in series 1 above: - # - #Display the list. - print fruits - #Remove the last fruit from the list. - #Display the list. - fruits.pop() - print fruits - - #Ask the user for a fruit to delete and find it and delete it. - #(Bonus: Multiply the list times two. Keep asking until a match is found. Once found, delete all occurrences.) - ''' - success = False - fruits = fruits*2 - print fruits - while not success: - remove = raw_input ('Enter a fruit to delete from the list: ') - if remove in fruits: - success = True - while remove in fruits: - fruits.remove (remove) - else: - print "That's not in the list. Choose one of these: ", fruits - - print fruits - - - - #Again, using the list from series 1: - # - #Ask the user for input displaying a line like "Do you like apples?" - #for each fruit in the list (making the fruit all lowercase). - #For each "no", delete that fruit from the list. - #For any answer that is not "yes" or "no", prompt the user to answer with one of those two values (a while loop is good here): - #Display the list. - fruitListForIteration = fruits - likeList = [] - for fruit in fruitListForIteration: - if fruit in fruits: - if fruit not in likeList: - haveAnswer = False - while not haveAnswer: - remove = raw_input ('Do you like '+fruit+'?') - if remove.upper() == 'NO': - haveAnswer = True - while fruit in fruits: - fruits.remove(fruit) - elif remove.upper() == 'YES': - likeList.append(fruit) - haveAnswer = True - else: - print 'What kind of reply is that?' - print fruits - ''' - - - - #Once more, using the list from series 1: - # - #Make a copy of the list and reverse the letters in each fruit in the copy. - # - fruits = ['Apples', 'Pears', 'Oranges', 'Peaches', 'Kiwi', 'Grapes'] - fruitsCopy = fruits - for i in range (0,len(fruitsCopy)): - fruit = fruitsCopy[i] - fruitsCopy[i] = fruit[::-1] - print fruits - print fruitsCopy - - - - #Delete the last item of the original list. Display the original list and the copy. - fruits.pop() - print fruits - print fruitsCopy diff --git a/Students/Dave Fugelso/Session 3/mailroom.py b/Students/Dave Fugelso/Session 3/mailroom.py deleted file mode 100644 index a00dce7f..00000000 --- a/Students/Dave Fugelso/Session 3/mailroom.py +++ /dev/null @@ -1,178 +0,0 @@ -""" - -Dave Fugelso, UW Python Course (Developing on WIndows so didn't make this an executable script.) - - -Mail Room - -You work in the mail room at a local charity. Part of your job is to write incredibly boring, repetitive emails thanking your donors for their generous gifts. -You are tired of doing this over an over again, so yo've decided to let Python help you out of a jam. - -Write a small command-line script called mailroom.py. As with Task 1, This script should be executable. The script should accomplish the following goals: - -It should have a data structure that holds a list of your donors and a history of the amounts they have donated. This structure should be populated at -first with at least five donors, with between 1 and 3 donations each -The script should prompt the user (you) to choose from a menu of 2 actions: 'Send a Thank You' or 'Create a Report'. -If the user (you) selects 'Send a Thank You', prompt for a Full Name. -If the user types 'list', show them a list of the donor names and re-prompt -If the user types a name not in the list, add that name to the data structure and use it. -If the user types a name in the list, use it. -Once a name has been selected, prompt for a donation amount. -Verify that the amount is in fact a number, and re-prompt if it isn't. -Once an amount has been given, add that amount to the donation history of the selected user. -Finally, use string formatting to compose an email thanking the donor for their generous donation. Print the email to the terminal and return to the original prompt. -It is fine to forget new donors once the script quits running. - -If the user (you) selected 'Create a Report' Print a list of your donors, sorted by total historical donation amount. -Include Donor Name, total donated, number of donations and average donation amount as values in each row. -Using string formatting, format the output rows as nicely as possible. The end result should be tabular (values in each column should align with those above and below) -After printing this report, return to the original prompt. -At any point, the user should be able to quit their current task and return to the original prompt. -From the original prompt, the user should be able to quit the script cleanly -First, factor your script into separate functions. Each of the above tasks can be accomplished by a series of steps. Write discreet functions that accomplish individual steps and call them. - -Second, use loops to control the logical flow of your program. Interactive programs are a classic use-case for the while loop. - -Put the functions you write into the script at the top. - -Put your main interaction into an if __name__ == '__main__' block. - -Finally, use only functions and the basic Python data types you've learned about so far. There is no need to go any farther than that for this assignment. - -As always, put the new file in your student directory in a session03 directory, and add it to your clone early. Make frequent commits with good, clear messages about what you are doing and why. - -When you are done, push your changes and make a pull request. -""" - -import operator -import datetime - -#Donor list - -donors = [ ['Dave Fugelso', [3000, 6000, 4000]],\ - ['Barb Grecco', [5000]],\ - ['Ken Johnson', [500, 250, 50, 80]],\ - ['Jack Bell', [55, 55, 55, 55, 55]],\ - ['Alejandro Escobar', [25, 25]]\ - ] - -def listDonors (): - ''' - List donors. - ''' - for contributors in donors: - print contributors[0] - -def report (): - ''' - Create a report with Name, Total DOnation, Number of Donation and average donation size. Print largest donor first. - ''' - - # go through list and calculate donor metrics - for donor in donors: - total = 0 - print donor - print donor[0] - print donor[1] - for amount in donor[1]: - total += amount - donor.append (total) - print donor - #if total > 0: - # sortedDonors[total] = [ donor[0], total, len(donors[1]), total/len(donor[1]) ] - - #print it out - print '\n\nDonor\t\t\t\tAmount\t\tNumber of Donations\t\tAverage Donation' - print '-----\t\t\t\t------\t\t-------------------\t\t----------------' - for donor in sorted(donors, key=lambda individual: individual[2], reverse=True): - print donor[0], - if len(donor[0]) < 15: - print '\t\t\t', - else: - print '\t\t', - print donor[2], - print '\t\t\t', - if len(donor[1]) > 0: - print len(donor[1]), - print '\t\t\t', - print donor[2] / len(donor[1]) - else: - print '0\t\tNA' - print '\n\n\n\n' - -def thankYou (donor): - ''' - Send off a thank you note to a single donor. - ''' - print '\n\n\n\n\t\t\t\t\t',datetime.date.today() - print '\nOur Charity Name\nAddress\nEtc\n\n\n' - name = donor[0].split() - print 'Dear '+name[0]+':\n' - if len(donor[1]) <= 1: - print 'Thank you for your donation of ', - print donor[1][0] , - print '.' - else: - print 'Thank you for your donations of ', - for i in range (0, len(donor[1])-1): - print donor[1][i], - print ',', - print ' and ', - print donor[1][len(donor[1])-1], - print '.' - print '\nWe look forward to serving our community blah blah blah.\n\nSincerely, \n\nOur Charity.\n\n\n\n' - -def addDonor (name): - ''' - Add <name> to the list of donors and get the amounts of donation. - ''' - donations = [] - amount = 0 - while amount >= 0: - inp = raw_input ('Add amount of donation one at a time. Enter \'-1\' to finish: ') - try: - amount = int(inp) - if amount > 0: - donations.append(amount) - except: - print ('Input must be a number.') - amount = 0 - donors.append ( [name, donations] ) - - - - -def processDonors (): - ''' - Interact with administrator to manage donor list. - ''' - processing = True - while processing: - action = raw_input ("Select 'Send a Thank You(S)', 'Create a report (C)', or 'Quit(Q)': ") - if action.upper() == 'S' or action.upper() == 'SEND A THANK YOU': - thankYouProcessing = True - while thankYouProcessing: - name = raw_input ("Enter name of donor, add a donor ('A') or ('Add'), or list all donors ('L') or ('List') or 'E' or 'End' to go to main menu: ") - if name.upper() == 'L' or name.upper() == 'LIST': - listDonors() - elif name.upper() == 'E' or name.upper() == 'END': - thankYouProcessing = False - else: - haveDonor = False - for donor in donors: - if name in donor: - thankYou (donor) - haveDonor = True - break - if not haveDonor: - addDonor(name) - elif action.upper() == 'Q' or action.upper == 'QUIT': - processing = False - elif action.upper() == 'C' or action.upper == 'Create a report'.upper(): - report() - else: - print 'Unrecognized input.' - - -if __name__ == "__main__": - processDonors () \ No newline at end of file diff --git a/Students/Dave Fugelso/Session 3/rot13.py b/Students/Dave Fugelso/Session 3/rot13.py deleted file mode 100644 index 2a324bfc..00000000 --- a/Students/Dave Fugelso/Session 3/rot13.py +++ /dev/null @@ -1,36 +0,0 @@ -''' - -Dave Fugelso, UW Python Course - - - -''' - -import string - - -def rot13(encrypted): - ''' - Make a translation table with a rotated alphabet. - ''' - input = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz' - output = 'NOPQRSTUVWXYZABCDEFGHIJKLMnopqrstuvwxyzabcdefghijklm' - table = string.maketrans(input, output) - print encrypted - print encrypted.translate(table) - print len(input) - - ''' - In case there were ever some unknown rotation length - #rotate the translation table until we get something that's legible - for i in range (0, 26): - output = input[i:26]+input[0:i]+input[i+26:52]+input[26:i+26] - #print output - table = string.maketrans(input, output) - print encrypted.translate(table) - ''' - - - -if __name__ == "__main__": - rot13 ('Zntargvp sebz bhgfvqr arne pbeare') \ No newline at end of file diff --git a/Students/Dave Fugelso/Session 3/string_lab.py b/Students/Dave Fugelso/Session 3/string_lab.py deleted file mode 100644 index 3887ffef..00000000 --- a/Students/Dave Fugelso/Session 3/string_lab.py +++ /dev/null @@ -1,41 +0,0 @@ -''' -Rewrite: the first 3 numbers are: %i, %i, %i"%(1,2,3) - -for an arbitrary number of numbers... - -Write a format string that will take: - -( 2, 123.4567, 10000) - -and produce: - -'file_002 : 123.46, 1e+04' - -Then do these with the format() method... - -''' - -if __name__ == "__main__": - print '%i, %i, %i'%(1,2,3) - - arbitraryNumberOfNumbers = (1,2,3,4,5,6,7) - formatString = '%i, ' * len(arbitraryNumberOfNumbers) - formatString = formatString[0:len(formatString)-2] - print formatString%arbitraryNumberOfNumbers - - formatString = 'file_%03i : %f %.0e' - print formatString%( 2, 123.4567, 10000) - - # With format - - print '{0} {1} {2}'.format (1, 2, 3) - print '{} {} {}'.format (1, 2, 3) - - formatString = '{}, ' * len(arbitraryNumberOfNumbers) - formatString = formatString[0:len(formatString)-2] - print formatString.format(*arbitraryNumberOfNumbers) - - - print 'file_:{0:03d} : {1:f} {2:.0e}'.format( 2, 123.4567, 10000) - - \ No newline at end of file diff --git a/Students/Dave Fugelso/Session 4/Exceptions_lab.py b/Students/Dave Fugelso/Session 4/Exceptions_lab.py deleted file mode 100644 index bb25a6db..00000000 --- a/Students/Dave Fugelso/Session 4/Exceptions_lab.py +++ /dev/null @@ -1,31 +0,0 @@ - -''' -The raw_input() function can generate two exceptions: EOFError or KeyboardInterrupt on end-of-file(EOF) or canceled input. -Create a wrapper function, perhaps safe_input() that returns None rather rather than raising these exceptions, when -the user enters ^C for Keyboard Interrupt, or ^D (^Z on Windows) for End Of File. -Update your mailroom program to use exceptions (and IBAFP) to handle malformed numeric input -''' - -def safe_input(prompt): - try: - input = raw_input(prompt) - except EOFError: - print "That won't work!" - return None - except KeyboardInterrupt: - print "HAHAHAHA... you're stuck forever" - return None - return input - - -if __name__ == "__main__": - trapped = True - while trapped: - trapString = safe_input("Try to get out: ") - if trapString is not None: - print "You wrote:", trapString - if trapString.upper() == 'Q': - trapped = False - else: - print "Would you like to play a game?" - \ No newline at end of file diff --git a/Students/Dave Fugelso/Session 4/dict_and_set_lab.py b/Students/Dave Fugelso/Session 4/dict_and_set_lab.py deleted file mode 100644 index fe72e1d8..00000000 --- a/Students/Dave Fugelso/Session 4/dict_and_set_lab.py +++ /dev/null @@ -1,92 +0,0 @@ -''' -Create a dictionary containing "name", "city", and "cake" for "Chris" from "Seattle" who likes "Chocolate". -Display the dictionary. - -Delete the entry for "cake" -Display the dictionary. - -Add an entry for "fruit" with "Mango" and display the dictionary. -Display the dictionary keys. - -Display the dictionary values. - -Display whether or not "cake" is a key in the dictionary (i.e. False) (now). - -Display whether or not "Mango" is a value in the dictionary (i.e. True). - -Using the dict constructor and zip, build a dictionary of numbers from zero to fifteen and the hexadecimal equivalent (string is fine). - -Using the dictionary from item 1: Make a dictionary using the same keys but with the number of ts in each value. - -Create sets s2, s3 and s4 that contain numbers from zero through twenty, divisible 2, 3 and 4. - -Display the sets. - -Display if s3 is a subset of s2 (False) - -and if s4 is a subset of s2 (True). -Create a set with the letters in Python and add i to the set. -Create a frozenset with the letters in marathon -display the union and intersection of the two sets. - -''' - -if __name__ == "__main__": - d = {"name":"Chris", "city":"Seattle", "cake":"Chocolate"} - print d - - d.pop('cake') - print d - - d['fruit'] = 'Mango' - print d - - print d.values() - - print d.has_key('cake') - print 'Mango' in d.values() - - nums = (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,14, 15) - hexes = ('0x0', '0x1', '0x2', '0x3', '0x4','0x5', '0x6', '0x7', '0x8', '0x9', '0xa', '0xb', '0xc', '0xd', '0xe', '0xf') - hexdict = dict (zip(nums, hexes)) - print hexdict - - for key in d: - d[key] = d[key].count('t') - print d - - #Create sets s2, s3 and s4 that contain numbers from zero through twenty, divisible 2, 3 and 4. - s2 = set() - s3 = set() - s4 = set() - for i in range (0,21): - if i % 2 == 0: - s2.add(i) - if i % 3 == 0: - s3.add(i) - if i % 4 == 0: - s4.add(i) - print s2 - print s3 - print s4 - - #Display if s3 is a subset of s2 (False) - print s3.issubset(s2) - - #and if s4 is a subset of s2 (True). - print s4.issubset(s2) - - #Create a set with the letters in Python and add i to the set. - py = set(list('python')) - py.add('i') - print py - - #Create a frozenset with the letters in marathon - fs = frozenset (list('marathon')) - print fs - - #display the union and intersection of the two sets. - print py.union(fs) - print py.intersection(fs) - - \ No newline at end of file diff --git a/Students/Dave Fugelso/Session 4/mailroom.py b/Students/Dave Fugelso/Session 4/mailroom.py deleted file mode 100644 index befcfe19..00000000 --- a/Students/Dave Fugelso/Session 4/mailroom.py +++ /dev/null @@ -1,188 +0,0 @@ -""" - -Dave Fugelso, UW Python Course (Developing on Windows so didn't make this an executable script.) - -UPDATED: For Session 4. - - 1. Uses ValueError exception on numeric input - 2. Uses sum to calculate total donations (Just a fix from last week) - 3. Uses a Dict to hold donor names instead of a list. Key is donor name and value is list of donations. - 4. Remove unnecessary line continuations in Donors initialization. - -And, - - 5. Write a full set of letters to everyone to individual files on disk - 6. See if you can use a dict to switch between the users selections - 7. Try to use a dict and the .format() method to do the letter as one big template -- rather than building up a big string in parts. - - -Mail Room - -You work in the mail room at a local charity. Part of your job is to write incredibly boring, repetitive emails thanking your donors for their generous gifts. -You are tired of doing this over an over again, so yo've decided to let Python help you out of a jam. - -Write a small command-line script called mailroom.py. As with Task 1, This script should be executable. The script should accomplish the following goals: - -It should have a data structure that holds a list of your donors and a history of the amounts they have donated. This structure should be populated at -first with at least five donors, with between 1 and 3 donations each -The script should prompt the user (you) to choose from a menu of 2 actions: 'Send a Thank You' or 'Create a Report'. -If the user (you) selects 'Send a Thank You', prompt for a Full Name. -If the user types 'list', show them a list of the donor names and re-prompt -If the user types a name not in the list, add that name to the data structure and use it. -If the user types a name in the list, use it. -Once a name has been selected, prompt for a donation amount. -Verify that the amount is in fact a number, and re-prompt if it isn't. -Once an amount has been given, add that amount to the donation history of the selected user. -Finally, use string formatting to compose an email thanking the donor for their generous donation. Print the email to the terminal and return to the original prompt. -It is fine to forget new donors once the script quits running. - -If the user (you) selected 'Create a Report' Print a list of your donors, sorted by total historical donation amount. -Include Donor Name, total donated, number of donations and average donation amount as values in each row. -Using string formatting, format the output rows as nicely as possible. The end result should be tabular (values in each column should align with those above and below) -After printing this report, return to the original prompt. -At any point, the user should be able to quit their current task and return to the original prompt. -From the original prompt, the user should be able to quit the script cleanly -First, factor your script into separate functions. Each of the above tasks can be accomplished by a series of steps. Write discreet functions that accomplish individual steps and call them. - -Second, use loops to control the logical flow of your program. Interactive programs are a classic use-case for the while loop. - -Put the functions you write into the script at the top. - -Put your main interaction into an if __name__ == '__main__' block. - -Finally, use only functions and the basic Python data types you've learned about so far. There is no need to go any farther than that for this assignment. - -As always, put the new file in your student directory in a session03 directory, and add it to your clone early. Make frequent commits with good, clear messages about what you are doing and why. - -When you are done, push your changes and make a pull request. -""" - -import operator -import datetime - -#Donor list - -donors = { 'Dave Fugelso': [3000, 6000, 4000], - 'Barb Grecco': [5000], - 'Ken Johnson': [500, 250, 50, 80], - 'Jack Bell': [55, 55, 55, 55, 55], - 'Alejandro Escobar': [25, 25] - } - -def listDonors (): - ''' - List donors. - ''' - for key in donors: - print key, donors[key] - -def report (): - ''' - Create a report with Name, Total Donation, Number of Donation and average donation size. Print largest donor first. - ''' - - # go through list and calculate donor metrics - for key in donors: - print key, donors[key], sum(donors[key]) - - #print it out - print '\n\nDonor\t\t\t\tAmount\t\tNumber of Donations\t\tAverage Donation' - print '-----\t\t\t\t------\t\t-------------------\t\t----------------' - - # Sorting a dict by sum of the values... kinda tough. Fond a great lambda func to do that on Stack Overflow, but - # in the spirit of not getting to far out from the current topic, going to create a list and use the same sort. - - # iterate over the dictionary and create a list of donor, totals - #Check here later to see f we can geta list of keys without iterating.... TBD - sortlist = list() - for key in donors: - sortlist.append ( key ) - - for donorName in sorted(sortlist, key=lambda individual: sum(donors[individual]), reverse=True): - print donorName, - if len(donorName) < 15: - print '\t\t\t', - else: - print '\t\t', - print sum(donors[donorName]), - print '\t\t\t', - if len(donors[donorName]) > 0: - print len(donors[donorName]), - print '\t\t\t', - print sum(donors[donorName]) / len(donors[donorName]) - else: - print '0\t\tNA' - print '\n\n\n\n' - -def thankYou (fullname, donations): - ''' - Send off a thank you note to a single donor. - ''' - print '\n\n\n\n\t\t\t\t\t',datetime.date.today() - print '\nOur Charity Name\nAddress\nEtc\n\n\n' - name = fullname.split() - print 'Dear '+name[0]+':\n' - if len(donations) <= 1: - print 'Thank you for your donation of ', - print donations[0] - print '.' - else: - print 'Thank you for your donations of ', - for i in range (0, len(donations)-1): - print donations[i], - print ',', - print ' and ', - print donations[len(donations)-1], - print '.' - print '\nWe look forward to serving our community blah blah blah.\n\nSincerely, \n\nOur Charity.\n\n\n\n' - -def addDonor (name): - ''' - Add <name> to the list of donors and get the amounts of donation. - ''' - donations = [] - amount = 0 - while amount >= 0: - inp = raw_input ('Add amount of donation one at a time. Enter \'-1\' to finish: ') - try: - amount = int(inp) - if amount > 0: - donations.append(amount) - except ValueError: - print ('Input must be a number.') - amount = 0 - donors[name] = donations - - - - -def processDonors (): - ''' - Interact with administrator to manage donor list. - ''' - processing = True - while processing: - action = raw_input ("Select 'Send a Thank You(S)', 'Create a report(C)', or 'Quit(Q)': ") - if action.upper() == 'S' or action.upper() == 'SEND A THANK YOU': - thankYouProcessing = True - while thankYouProcessing: - name = raw_input ("Enter name of donor, add a donor ('A') or ('Add'), or list all donors ('L') or ('List') or 'E' or 'End' to go to main menu: ") - if name.upper() == 'L' or name.upper() == 'LIST': - listDonors() - elif name.upper() == 'E' or name.upper() == 'END': - thankYouProcessing = False - else: - if name in donors.keys(): - thankYou (name, donors[name]) - else: - addDonor(name) - elif action.upper() == 'Q' or action.upper == 'QUIT': - processing = False - elif action.upper() == 'C' or action.upper == 'Create a report'.upper(): - report() - else: - print 'Unrecognized input.' - - -if __name__ == "__main__": - processDonors () \ No newline at end of file diff --git a/Students/Dave Fugelso/Session 4/paths_lab.py b/Students/Dave Fugelso/Session 4/paths_lab.py deleted file mode 100644 index 8b528a98..00000000 --- a/Students/Dave Fugelso/Session 4/paths_lab.py +++ /dev/null @@ -1,49 +0,0 @@ -''' -Paths and File Processing --------------------------- - - * write a program which prints the full path to all files in the current directory, one per line - - * write a program which copies a file from a source, to a destination (without using shutil, or the OS copy command) -''' - -import os - -def myFileCopy (source, destination): - ''' - Copy a file by reading the content and then writing them. - ''' - try: - file_in = open(source, 'r') - except FileNotFoundError: - print 'File not found' - return - - try: - file_out = open(destination, 'w') - except FileExistsError: - print 'Unable to create file' - return - - - for line in file_in: - file_out.write(line) - - file_out.close() - file_in.close() - - -def printFullPathInCurrentDirectory(): - ''' - Print all filenames in the current directory. - ''' - path = os.path.dirname(os.path.abspath(__file__)) - for (dirpath, dirnames, filenames) in os.walk(path): - for fname in filenames: - print os.path.join(path, fname) - -if __name__ == "__main__": - printFullPathInCurrentDirectory() - myFileCopy ('t.t', 't.a') - - diff --git a/Students/Dave Fugelso/Session 4/t.t b/Students/Dave Fugelso/Session 4/t.t deleted file mode 100644 index 0a9290ff..00000000 --- a/Students/Dave Fugelso/Session 4/t.t +++ /dev/null @@ -1,52632 +0,0 @@ - - -Trigraphs -dad is : [u'very'] -a swamp : [u'adder'] -dashed down : [u'the'] -expect the : [u'bank'] -in Baker : [u'Street'] -There it : [u'is'] -possible reason : [u'.'] -hundred for : [u'the'] -the scenery : [u'.'] -dad in : [u'the'] -another word : [u'shall', u'.', u'about'] -Who did : [u'you'] -office just : [u'this'] -of dozen : [u'."'] -At Reading : [u'I'] -" Many : [u'times'] -whether she : [u'has', u'married'] -( the : [u'younger'] -are both : [u'an'] -to prevent : [u'?', u'it', u'me', u'anyone', u'some', u'an', u'him', u'you'] -the Bank : [u'of'] -called for : [u'."', u'.', u'the', u'us'] -desired his : [u'attentions'] -wood, : [u'and', u'though', u'but'] -desultory chat : [u'with'] -wood. : ['PP', u'As'] -not arresting : [u'Boone'] -of Mauritius : [u'.'] -will make : [u'it', u'the', u'no'] -de soie : [u','] -of cardboard : [u'hammered'] -created to : [u'provide'] -I listened : [u'to'] -devotedly attached : [u'to'] -old and : [u'oily', u'foolish', u'discoloured'] -Find what : [u'I'] -carries us : [u'right'] -were fortunate : [u'in'] -dress of : [u'watered'] -the Republican : [u'policy'] -which broadened : [u'and'] -your whole : [u'position'] -dress or : [u'appearance'] -personal affairs : [u'in'] -cane, : [u'and'] -seven. : [u'We', u'There'] -I mean : [u'to'] -seven, : [u'I'] -fire! : [u'Give'] -Philosophy, : [u'astronomy'] -had better : [u'go', u'discuss', u'do', u'not', u'proceed', u'put', u'say', u'take', u'postpone'] -double chin : [u','] -27, : [u'1890'] -made for : [u'my', u'the'] -her sell : [u'the'] -my breath : [u'to'] -and cloak : [u','] -scent as : [u'this'] -her self : [u'control'] -pipe and : [u'wondered', u'turn', u'gazing'] -bottom a : [u'noble'] -the Colony : [u'of'] -strong probability : [u'is'] -over with : [u'you', u'one', u'notes', u'bloodstains', u'cotton', u'its'] -this eBook : [u'or', u',', u'for'] -full terms : [u'of'] -nature. : [u'He', u'On', u'Besides'] -downstairs as : [u'quietly'] -us he : [u'put'] -.' Here : [u'is'] -now why : [u'you'] -quite incapable : [u'of'] -accessed, : [u'displayed'] -Australian from : [u'Ballarat'] -my time : [u',', u'is', u'to', u'in'] -to fear : [u'."', u'had'] -steps leading : [u'down'] -sailing vessel : [u'which'] -a handsome : [u'competence', u'commission'] -gas was : [u'half', u'lit'] -tree in : [u'the'] -miniature, : [u'and'] -animals, : [u'which'] -serious investigation : [u'.'] -if Dr : [u'.'] -recent events : [u'so'] -LICENSE. : ['PP'] -this little : [u'matter', u'mystery', u'book'] -were brilliantly : [u'lit'] -shock, : [u'though'] -shock. : [u'And'] -slept in : [u','] -him out : [u'to', u'from', u'and'] -right over : [u'the'] -ordinary plumber : [u"'"] -my profession : [u'is', u'has'] -error, : [u'by'] -error. : [u'Upon'] -several well : [u'dressed'] -thought seized : [u'me'] -tragedy of : [u'the'] -energy of : [u'his'] -rang the : [u'bell'] -different points : [u','] -you up : [u',', u'so', u'to'] -some subtle : [u'and'] -hour we : [u'were', u'shall'] -later we : [u'saw', u'were'] -a defect : [u'in'] -impunity. : [u'Give'] -cannot recall : [u'when', u'any'] -All will : [u'come'] -" just : [u'sit'] -I confess : [u'that', u',', u'is'] -or 1 : [u'.'] -, making : [u'my'] -Indeed. : [u'This'] -Indeed, : [u'I', u'apart', u'your', u'Doctor', u'it', u'from'] -the wagon : [u'driver'] -my coming : [u'at'] -Indeed! : [u'My', u'That', u'Whose', u'You'] -sooner or : [u'later'] -end what : [u'to'] -truth"-- : [u'he'] -Indeed? : [u'I'] -footman. : [u'The'] -soon drive : [u'away'] -and shouts : [u'of'] -s mind : [u'and', u'was'] -these garments : [u','] -drew over : [u'the'] -statement is : [u',', u'singularly'] -then closing : [u'it'] -uttered it : [u'before'] -the coffee : [u','] -would at : [u'such'] -cobbler' : [u's'] -we went : [u'into', u'to', u',', u'as', u'then', u'towards'] -or I : [u'am', u'will', u'may'] -a fresh : [u'convulsion'] -lank wrists : [u'protruded'] -opened his : [u'lips', u'mouth', u'lids', u'bag'] -liability, : [u'costs'] -Ah!' : [u'said'] -devoid of : [u'interest'] -or a : [u'crack', u'person', u'friend', u'plaid', u'boot', u'detective', u'compositor', u'plot', u'villain', u'look', u'means', u'replacement'] -first time : [u'that', u','] -practical questions : [u'as'] -credit card : [u'donations'] -and inquiry : [u'showed'] -the narrow : [u'passage'] -police station : [u'?"', u',', u'anywhere'] -him scribble : [u'on'] -a state : [u',', u'of'] -and armchairs : [u'.'] -A month : [u'ago'] -my problem : [u'.'] -ASCII" : [u'or'] -room from : [u'whence'] -way that : [u'showed', u'they'] -, Master : [u'Holmes'] -to refund : [u','] -was stirring : [u'.'] -the slow : [u'process'] -typewritten," : [u'I'] -coronet," : [u'cried'] -although what : [u'his'] -startled at : [u'the', u'my'] -little I : [u'heard'] -his belief : [u','] -sprang from : [u'his', u'the', u'my'] -, mostly : [u'of'] -Arthur caught : [u'him'] -of good : [u'fortune'] -impression generally : [u'of'] -touched bottom : [u'at'] -hedges were : [u'just'] -yourself that : [u'the'] -the Testament : [u','] -jealousy is : [u'a'] -of Mr : [u'.'] -INDIRECT, : [u'CONSEQUENTIAL'] -L' : [u'homme'] -may start : [u'with'] -buy a : [u'goose'] -L. : [u'S'] -touched at : [u'Pondicherry'] -, first : [u',', u'of'] -been," : [u'he'] -are gratefully : [u'accepted'] -on felony : [u'would'] -. Eventually : [u','] -117, : [u'Brixton'] -my reach : [u'.'] -of bushy : [u'whiskers'] -Suppose that : [u'this'] -Thank God : [u",'", u'for'] -THIS BEFORE : [u'YOU'] -rang out : [u'crisply'] -and perhaps : [u'the', u'write', u'he', u'just', u'I'] -"' Whatever : [u'were'] -somewhat cold : [u'and'] -is Saturday : [u','] -asking a : [u'question'] -two and : [u'thirty', u'twenty', u'three'] -mopping his : [u'forehead'] -all mark : [u'him'] -arm and : [u'hurried'] -promise you : [u'that'] -perfectly simple : [u'.'] -sins are : [u','] -epistle," : [u'I'] -was torn : [u'at'] -as Spaulding : [u'said'] -effect. : [u'It', 'PP'] -taking possession : [u'of'] -weapon which : [u'will'] -have during : [u'the'] -the footman : [u'.'] -are now : [u'standing', u",'"] -are not : [u'injuring', u'very', u'connected', u'over', u'entirely', u'averse', u'there', u'many', u'fitted', u'too', u'uniform'] -my books : [u'.'] -took place : [u',', u'.', u'?"'] -have always : [u'loved', u','] -worms? : [u'I'] -in Hafiz : [u'as'] -any piece : [u'of'] -my self : [u'control'] -smokes of : [u'the'] -commonplace British : [u'tradesman'] -metal dangling : [u'down'] -your mother : [u'is', u'take'] -his concluding : [u'remarks'] -were mostly : [u'concerned'] -shrugged his : [u'broad', u'shoulders'] -of drawers : [u'stood', u'in'] -either fathomed : [u'it'] -he fought : [u'in'] -distance to : [u'travel', u'come', u'the'] -announced in : [u'the'] -My morning : [u"'"] -relations of : [u'any'] -smasher, : [u'and'] -wine and : [u'water'] -may set : [u'your'] -follow you : [u'.', u",'"] -undoubtedly my : [u'uncle', u'hat'] -speak plainly : [u','] -an ordnance : [u'map'] -goals and : [u'ensuring'] -WARRANTIES OF : [u'ANY', u'MERCHANTIBILITY'] -over this : [u'matter', u'great', u'sort', u'ground', u'stile', u'trifling', u'business', u','] -may see : [u'for'] -home at : [u'the'] -little used : [u','] -speed down : [u'the'] -a madman : [u'coming'] -and reported : [u'to'] -correct, : [u'was', u'and', u'very', u'as'] -, Harley : [u'Street'] -She became : [u'restive'] -He can : [u"'"] -has awakened : [u'me'] -a sallow : [u'Malay'] -and unclaspings : [u'of'] -you show : [u'us'] -and mind : [u'and'] -strangest and : [u'most'] -begin to : [u'think'] -could anyone : [u'have', u'offer'] -simpler, : [u'for'] -simpler. : [u'You'] -most Project : [u'Gutenberg'] -these witnesses : [u'depose'] -sleeves and : [u'fronts'] -have compromised : [u'yourself'] -having closed : [u'the'] -Cedars is : [u'a'] -A patient : [u'!"'] -though some : [u'dreadful'] -eaten oak : [u','] -her wit : [u"'"] -leaned back : [u'in'] -Etherege, : [u'whose'] -taking coffee : [u'in'] -as true : [u'as'] -the flags : [u'which'] -and told : [u'her', u'you'] -you down : [u'all'] -comical pomposity : [u'of'] -heavy blow : [u'from'] -copyright notice : [u'is'] -occasionally, : [u'indeed', u'Mr'] -no more : [u'.', u'to', u'of', u'than', u'compunction', u'words', u'but'] -discretion. : [u'I'] -. Fleet : [u'Street'] -and lingering : [u'disease'] -to find : [u'the', u'my', u'some', u'out', u'it', u'anything', u'you', u'a', u'an', u'.', u'Sherlock', u'any', u'ourselves', u'remunerative', u'that', u'there', u'another', u'her'] -whom I : [u'may', u'was', u'had', u'recognised', u'can', u'have', u'buy', u'could'] -little monograph : [u'some', u'on'] -knowing that : [u'even'] -Peterson' : [u's'] -tout, : [u'without'] -tout. : ['PP'] -grinder with : [u'his'] -and Suburban : [u'Bank'] -we dashed : [u'away', u'down'] -meadows. : ['PP'] -meadows, : [u'and'] -reward; : [u'but'] -perhaps better : [u'first'] -lot it : [u'had'] -deep slumber : [u'.'] -Windigate of : [u'the'] -them which : [u'would'] -of brandy : [u'and', u'.'] -of bicycling : [u'.'] -was deadly : [u'pale', u'still'] -Christmas morning : [u','] -See the : [u'advantages'] -reward, : [u'and', u'my', u'I'] -reward. : [u'If'] -dare you : [u'touch'] -as pa : [u'.'] -Monday morning : [u".'"] -acquiesce in : [u'these'] -The police : [u'have'] -who does : [u'a'] -gasped the : [u'banker'] -did he : [u'come', u'live', u'meet', u'make', u'not'] -sounds feasible : [u'."'] -K.!' : [u'he'] -This discovery : [u','] -, beginning : [u'in'] -exaggerated. : [u'This'] -gave him : [u'Hatherley', u'without', u'somewhat', u'a', u'into', u'every'] -an average : [u'commonplace'] -gave his : [u'evidence'] -to vanish : [u'away'] -Those are : [u'the', u'all'] -endeavouring to : [u'imitate', u'trace', u'send', u'tell', u'straighten', u'communicate'] -ladies sitting : [u'round'] -Aloysius Doran : [u'.', u','] -scrawled over : [u'with'] -stolen,' : [u'said'] -old, : [u'and', u'middle'] -old. : [u'Putting', u'These', u'It', u'Oh'] -almost overcome : [u'my'] -A lens : [u'and'] -his lateness : [u'caused'] -her thick : [u'black'] -had by : [u'no'] -chin, : [u'and', u'who'] -neither sickness : [u'nor'] -and Tudor : [u'on'] -Giving pain : [u'to'] -tinged with : [u'a'] -influence with : [u'the'] -huge man : [u'had'] -pushing her : [u'face', u'back'] -fitted for : [u'the'] -indeed at : [u'the', u'liberty'] -discovery furnishes : [u'a'] -I entered : [u'the', u'.', u',', u'my'] -he showed : [u'us'] -s manner : [u','] -detain you : [u'longer'] -over such : [u'a'] -it appeared : [u'to', u','] -quick tempered : [u','] -you upon : [u'a'] -Both these : [u'witnesses'] -assistant having : [u'come'] -the gasfitters : [u"'"] -not finished : [u'his'] -long. : [u'It', u'Now'] -long, : [u'nervous', u'straight', u'thin', u'sinewy', u'low', u'then', u'questioning', u'golden', u'sharp', u'may'] -sure when : [u'he'] -a traveller : [u'in'] -second day : [u'of'] -cocked, : [u'upon'] -course we : [u'may'] -The bridge : [u','] -this unfortunate : [u'man', u'lady'] -The' : [u'G', u'Cooee', u'Lone'] -another door : [u'.'] -A professional : [u'case'] -affair? : [u'Every'] -nature, : [u'and', u'while', u'wild'] -affair. : ['PP', u'Presently', u'Of'] -no truth : [u','] -affair, : [u'and', u'the'] -sinister quest : [u'upon'] -of villas : [u'on'] -advertisement had : [u'upon'] -gives. : [u'I'] -disagreeable persistence : [u'of'] -insists upon : [u'seeing'] -my youth : [u','] -A house : [u'on'] -relative position : [u'to'] -showed any : [u'signs'] -adder!" : [u'cried'] -London slavey : [u'.'] -marriage with : [u'so', u'Miss'] -Such a : [u'charge'] -. Doran : [u"'"] -C below : [u'.'] -a fairly : [u'long'] -was bound : [u'to'] -spoke the : [u'gleam', u'door'] -she married : [u'again', u'or'] -This business : [u'at', u'has'] -claim that : [u'petered'] -to money : [u'?"'] -our seats : [u'to'] -attendant at : [u'the'] -statement to : [u'you', u'be'] -, according : [u'to'] -upstairs," : [u'said'] -times over : [u'from'] -down Tottenham : [u'Court'] -absolute reliability : [u'is'] -grimly. " : [u'Bring'] -street. " : [u'If', u'Now'] -hobby of : [u'mine'] -certain horror : [u'.'] -sister or : [u'landlady'] -thumb in : [u'the'] -the so : [u'precious'] -narrow corridor : [u','] -Miss Honoria : [u'Westphail'] -at least : [u'in', u'an', u'had', u'a', u'four', u'throw', u'you', u'there', u'tell', u'tenfold', u',', u',"', u'until', u'the', u'will', u'she', u'criminal', u'ready'] -." XI : [u'.'] -told more : [u'than'] -all wrong : [u'."'] -slight motion : [u'to'] -equipment including : [u'outdated'] -thinness. : [u'I'] -flew open : [u','] -a persevering : [u'man'] -of solid : [u'gold', u'iron'] -depressed and : [u'shaken'] -court at : [u'all'] -wound, " : [u'by'] -yet which : [u'presented'] -present instance : [u'I'] -precious stone : [u'.', u'."'] -of those : [u'boxes', u'hours', u'simple', u'great', u'which', u'drunken', u'poor', u'letters', u'who', u'singular', u'whimsical', u'geese', u'metal', u'hysterical', u'bulky', u'unwelcome', u'all'] -will follow : [u'in'] -facts from : [u'the'] -children from : [u'being'] -quite recent : [u','] -lady came : [u'to', u'in'] -handed it : [u'to', u'back', u'up'] -passed the : [u'well', u'tall', u'Hampshire'] -with both : [u'paragraphs'] -trademark license : [u','] -, " my : [u'real', u'theory', u'wife'] -such humiliation : [u'?"'] -Singularity is : [u'almost'] -lodgings. : [u'Good'] -west of : [u'England'] -, ' there : [u'would', u'is'] -drew from : [u'the'] -let us : [u'put', u'talk', u'do', u'consider', u'try', u'hear', u'have', u'know', u'hurry', u'hope', u'lose'] -not search : [u'for'] -that to : [u'me', u'.', u'do'] -drank more : [u'than'] -shiny top : [u'hat'] -of dingy : [u'two'] -either mad : [u'or'] -' Gesellschaft : [u",'"] -' Encyclopaedia : [u'Britannica', u",'"] -hard black : [u'lines'] -wrote them : [u'they'] -that line : [u'.'] -" These : [u'are'] -seriously. : ['PP'] -over to : [u'anyone', u'the', u'mother', u'Ross', u'England', u'him', u'his', u'America'] -, heard : [u'a'] -prevent you : [u'from'] -Here' : [u's'] -jug, : [u'moistened'] -mystery," : [u'I', u'said'] -described, : [u'we', u'and'] -in,' : [u'etc'] -described. : [u'You', u'She', u'Holmes'] -given us : [u'in'] -given up : [u'his'] -coincidence of : [u'dates'] -condition of : [u'the', u'his'] -penetrating to : [u'this'] -uncertain foot : [u'.'] -are on : [u'the', u'intimate'] -heartless a : [u'trick'] -are feared : [u'by'] -are of : [u'an', u'great', u'interest'] -found which : [u'could'] -a two : [u'edged'] -niece knew : [u'nothing'] -drifting slowly : [u'across'] -important addition : [u'has'] -doubt, : [u'Doctor', u'already', u'descend', u'but', u'was', u'caught', u'roasting', u'to', u'as'] -doubt. : [u'You', 'PP'] -could this : [u'American'] -passion also : [u'for'] -meet signs : [u'of'] -Clay, : [u'the', u'and'] -Clay. : [u'His'] -on Christmas : [u'morning'] -break her : [u'heart'] -of their : [u'travellers', u'employ', u'saddles', u'senses', u'father', u'beds', u'tents', u'profession', u'pictures', u'journey', u'isolation'] -was woman : [u"'"] -Clay' : [u's'] -doubt; : [u'or'] -the cellar : [u'like', u'of', u', "', u'.', u'something', u'stretched', u'on', u',"'] -my bureau : [u','] -. Isa : [u'Whitney'] -be immediately : [u'implicated'] -quavering voice : [u'.'] -small jollification : [u'and'] -. : ['PP'] -50 states : [u'of'] -well cut : [u'pearl'] -attract the : [u'attention'] -Holmes continued : [u'. "'] -nose and : [u'cheeks', u'chin'] -case considerably : [u'in'] -miles through : [u'the'] -into Holborn : [u'.'] -repute of : [u'a'] -might afford : [u'some'] -Station no : [u'one'] -needed. : ['PP', u'If', u'There'] -proof against : [u'the'] -of staining : [u'the'] -furniture van : [u'.'] -perhaps of : [u'petulance'] -, metallic : [u'or'] -carrying was : [u'of'] -down into : [u'an', u'the', u'his', u'a', u'Holborn', u'its'] -comes back : [u'."', u'.'] -but otherwise : [u'everything'] -stopping the : [u'wagons'] -have effected : [u'.'] -knife in : [u'his'] -rightly, : [u'you'] -in vegetables : [u'to'] -to twelve : [u','] -slut from : [u'off'] -not Neville : [u'St'] -houses to : [u'talk'] -in," : [u'said'] -affair of : [u'the'] -furiously with : [u'his'] -faddy but : [u'kind'] -was saying : [u'to'] -house in : [u'Kensington', u'the', u'my'] -and looking : [u'eagerly', u'defiantly', u'about', u'keenly', u'at'] -bought. : ['PP'] -so as : [u'to', u'near', u'not', u'the'] -house is : [u'on', u',', u'it'] -mind about : [u'that', u'father', u'them'] -mere pittance : [u','] -You understand : [u'?"', u','] -I lifted : [u'the'] -prosperous man : [u','] -as white : [u'as'] -us hope : [u'so'] -about Mr : [u'.'] -at each : [u'successive', u'other', u'of'] -greatest danger : [u'of'] -eyes travelled : [u'round'] -visible upon : [u'the'] -increased, : [u'and'] -"' If : [u'I', u'you'] -I claim : [u'full'] -de coeur : [u'.'] -was associated : [u'with'] -"' In : [u'the', u'my'] -any Project : [u'Gutenberg'] -"' It : [u'would', u"'", u'is'] -raise your : [u'cry'] -and shook : [u'my'] -it amiss : [u'if'] -us had : [u'I'] -pleasure." : [u'He'] -College of : [u'St'] -the ship : [u'must', u'.', u'last'] -felt about : [u'in'] -my mtier : [u','] -matter will : [u'be', u'fall'] -lips tight : [u','] -adventures, : [u'Mr'] -keep two : [u'assistants'] -a pale : [u'face', u','] -led into : [u'a', u'the', u'an'] -month by : [u'the'] -either to : [u'you', u'be'] -from whom : [u'I'] -head against : [u'the'] -handed against : [u'a'] -from showing : [u'my'] -, Wimpole : [u'Street'] -however improbable : [u','] -do his : [u'worst'] -crony of : [u'the'] -my suspicion : [u'became'] -has suffered : [u'."'] -a muttered : [u'exclamation'] -do him : [u'no'] -might find : [u'it', u'a'] -first of : [u'all', u'criminals'] -you become : [u'engaged'] -at me : [u',', u'.', u'. "', u'."', u'with', u'as', u'again', u". '", u'out', u'now', u'keenly'] -anyone were : [u'to'] -taxes. : [u'The'] -has refused : [u'him'] -joking," : [u'he'] -who believe : [u'in', u'that'] -Post Office : [u','] -she sings : [u'.'] -a German : [u'speaking', u'.', u'accent', u','] -others being : [u'volumes'] -at my : [u'hair', u'own', u'companion', u'elbow', u'request', u'skirt', u'side', u'surprise', u'disposal', u'watch', u'wit', u'wrist', u'hand', u'facts', u'Baker', u'remark'] -The next : [u'instant', u'I'] -hand the : [u'cord'] -WILL NOT : [u'BE'] -taken by : [u'Mr'] -silence of : [u'the'] -indulge yourself : [u'in'] -a seven : [u'mile'] -police reports : [u'realism'] -hedge close : [u'by'] -him again : [u'?"', u','] -up these : [u'points'] -followed her : [u','] -ha, : [u'my'] -ha! : [u'Living', u'What'] -itself within : [u'the'] -ha' : [u'got'] -will still : [u'call'] -dun coloured : [u'houses'] -only claim : [u'the'] -borne away : [u'by'] -my secret : [u'.', u'was'] -distrusted. : [u'So'] -case of : [u'the', u'cigars', u'another', u'great', u'a', u'considerable', u'Pondicherry', u'young', u'attempted', u'Miss', u'marriage'] -? There : [u'was', u'would', u'could', u'it', u'must'] -and chair : [u'.'] -any chemical : [u'test'] -social stride : [u','] -, ' is : [u'Mr'] -singular mystery : [u'which'] -cheeks. : ['PP', u'He'] -laws and : [u'your'] -job, : [u'and'] -, aquiline : [u','] -, lie : [u'down'] -the advantage : [u'of'] -crowded in : [u'to'] -card case : [u'.', u'is'] -The fund : [u'was'] -matter," : [u'I'] -Some preposterous : [u'practical'] -hung up : [u'indoors'] -had entered : [u',', u'his'] -knowing anything : [u'about'] -I suggest : [u'that'] -oil lamp : [u'above', u'which'] -were insufficient : [u'.'] -being an : [u'average'] -just fixed : [u'it'] -seen swinging : [u'in'] -inhabited wing : [u'of'] -from Ross : [u','] -in her : [u'own', u'life', u'ways', u'overpowering', u'interests', u'lap', u'eagerness', u'night', u'left', u'statement', u'hand', u'ear', u'right', u'then', u'as', u'hands', u'direction', u'young', u'when'] -Young McCarthy : [u'must'] -should they : [u'give'] -ten last : [u'night'] -heavy brassy : [u'Albert'] -the value : [u'of'] -his quietly : [u'genial'] -links which : [u'bind'] -brown tint : [u'!'] -another man : [u'.', u'since'] -appear at : [u'the'] -rabbit into : [u'its'] -witted, : [u'ready'] -keenly. : ['PP'] -door that : [u'is'] -the envelope : [u'which', u'and', u'.', u". '", u',"', u'had', u'upon'] -them into : [u'an', u'the'] -Monday last : [u','] -asked about : [u'the'] -me from : [u'any', u'ennui', u'Marseilles', u'breaking', u'my', u'showing', u'the'] -But your : [u'client'] -wilful murder : [u"'"] -the land : [u'may'] -BERYL. : ['PP'] -free on : [u'my'] -' example : [u'and'] -suspected a : [u'mere'] -s expressive : [u'black'] -from Horsham : [u'."'] -twinkling in : [u'front'] -free of : [u'any'] -clearly perceive : [u'that'] -bent with : [u'age'] -to Duncan : [u'Ross'] -cured of : [u'a'] -goodness to : [u'sit', u'open', u'touch', u'look'] -most resolute : [u'of'] -the three : [u'at', u'of', u'rooms', u'bedrooms', u'missing', u"!'", u'figures'] -and face : [u'protruded'] -are points : [u'in'] -to harm : [u'.'] -these vague : [u'theories'] -new companion : [u','] -, wandering : [u'away'] -downstairs. " : [u'That'] -, Elise : [u"!'"] -postmark is : [u'London'] -In my : [u'position', u'own'] -pleasure of : [u'introducing', u'assisting', u'making'] -to command : [u'and'] -emotions, : [u'and'] -professional and : [u'of'] -in colour : [u','] -own station : [u'!'] -groom, : [u'ill', u'is'] -earnestly. " : [u'It'] -groom. : [u'Shortly'] -myself some : [u'small'] -blush passed : [u'over'] -blood in : [u'my'] -framework of : [u'the'] -bad companions : [u','] -most extreme : [u'importance'] -my stick : [u'.'] -End. : [u'It'] -looked inside : [u'the'] -was allowed : [u'some'] -much chaffering : [u'I'] -extreme limits : [u',', u'of'] -prefer not : [u'to'] -two above : [u'my'] -the match : [u','] -light mousseline : [u'de'] -220 pounds : [u'standing'] -Angel must : [u'have'] -specialist in : [u'crime'] -only fair : [u'to'] -my library : [u'chair'] -Only two : [u'days'] -the trouble : [u'of'] -will tell : [u'you', u'me'] -I foresee : [u','] -cleaned it : [u','] -finally returning : [u'to'] -appearance at : [u'the'] -The lamps : [u'had'] -, turned : [u'on', u'out'] -" John : [u'Clay'] -though a : [u'window'] -was staying : [u'in'] -modern, : [u'and'] -next evening : [u'I'] -day the : [u'wind'] -contemplative mood : [u'which'] -, ( 801 : [u')'] -Holmes was : [u'not', u'pacing', u'transformed', u'silent', u'able', u'wrong', u'already', u'a', u'well', u'for', u',', u'favourably', u'settling'] -' surmise : [u'as'] -his presence : [u','] -blue smoke : [u'rings', u'curling'] -already recorded : [u','] -sat again : [u'in'] -copier of : [u'the'] -abstracted from : [u'the'] -crown. : [u'Look'] -should or : [u'should'] -her needle : [u'work'] -war time : [u'and'] -is willing : [u'to'] -stay, : [u'or'] -the leaking : [u'cylinder'] -mind before : [u'he'] -trained it : [u','] -written beneath : [u'.'] -I held : [u'the', u'most'] -a sprig : [u'of'] -knows to : [u'be'] -advocate here : [u'who'] -. " No : [u','] -at for : [u'my'] -been lounging : [u'in'] -got in : [u'.'] -We can : [u"'", u'do'] -losing, : [u'sometimes'] -cord is : [u'hung'] -, through : [u'which', u'the'] -flags which : [u'lined'] -impatient snarl : [u'in'] -farm steadings : [u'peeped'] -innocent man : [u','] -wonder who : [u'the'] -really confined : [u'to'] -preserve my : [u'disguise'] -a vacancy : [u',', u'did', u'in'] -man entered : [u'who'] -cockroaches with : [u'a'] -, lounging : [u'figure', u'about'] -bonnet with : [u'a'] -nine," : [u'said'] -had misgivings : [u'upon'] -the gipsies : [u'do', u','] -freely over : [u'his'] -child' : [u's'] -child, : [u'who', u'and', u'or'] -child. : ['PP', u'There', u'They', u'Now'] -pride, : [u'Watson'] -great greasy : [u'backed'] -houses of : [u'Europe', u'Great'] -crate, : [u'with', u'and'] -professional case : [u'of'] -of roofs : [u'some'] -It looks : [u'as', u'newer', u'like'] -compressed, : [u'and', u'marked'] -They drove : [u'away'] -thin knees : [u'drawn'] -with whom : [u'I'] -Jephro,' : [u'said'] -ve let : [u'them'] -indulgently. " : [u'You'] -seeing what : [u'I'] -marry another : [u'woman'] -been much : [u'perturbed', u'attracted'] -fees to : [u'meet'] -the sleuth : [u'hound'] -hardly found : [u'upon'] -rejoin you : [u'in'] -of oak : [u'leaves'] -on such : [u'a'] -him about : [u'it'] -sudden wealth : [u'so'] -and pale : [u'looking', u','] -unusual salary : [u','] -s quick : [u'intuition', u'insight'] -employed my : [u'morning'] -though to : [u'remember'] -dust, : [u'you'] -to acquiesce : [u'in'] -rain to : [u'lengthen'] -faced woman : [u','] -enormous pressure : [u'.'] -shirt. : [u'He', 'PP'] -was evident : [u'that'] -, seedy : [u'coat'] -double point : [u'our'] -field down : [u'considerably'] -Europe. : [u'To', u'Holmes', u'I'] -I really : [u'wouldn', u'don', u'cannot', u'have', u'could'] -, whether : [u'you', u','] -laughter. : ['PP'] -a wonderful : [u'sympathy', u'man', u'manager'] -disappointed in : [u'his'] -that though : [u'we', u'the'] -pensioners upon : [u'the'] -secrecy is : [u'quite'] -much addicted : [u'to'] -He stood : [u',"'] -web page : [u'at'] -that address : [u'it'] -your money : [u','] -woman very : [u'much'] -30. : ['PP'] -, all : [u'the', u'pointed', u'thought', u'covered', u'huddled', u'on', u'mark', u'this', u'those', u'comprehensive', u'efforts', u'."', u'that', u'safe', u'carefully', u'discoloured', u'curiosity', u'palpitating', u'shall', u'worn', u'of'] -lane now : [u'."'] -Hatherley," : [u'said'] -word is : [u'inviolate'] -conceive. : [u'In'] -perhaps she : [u'might'] -the High : [u'Street'] -of Horner : [u','] -clanging. : ['PP'] -any agent : [u'or'] -been drinking : [u'hard'] -may mean : [u'a'] -Charming rural : [u'place'] -crushing a : [u'misfortune'] -rise within : [u'me'] -he little : [u'knew'] -following paragraph : [u':'] -done better : [u'to'] -, dipping : [u'continuously'] -official police : [u'.', u'agent', u',', u'."', u'as'] -sacrificing it : [u'in'] -either openly : [u'abjure'] -had occurred : [u'.', u'during', u','] -very heartily : [u',', u'at'] -story right : [u'away'] -would think : [u'of', u'that', u'they'] -well to : [u'do', u'follow', u'earn', u'have', u'think', u'cringe', u'perform'] -bill for : [u'a'] -wonderfully. : [u'You'] -served upon : [u'me'] -accept in : [u'return'] -the new : [u'role', u'year', u'conditions', u'foliage'] -a bird : [u'at', u'to', u'will'] -There the : [u'matter'] -get out : [u'and'] -vague account : [u'of'] -parents by : [u'studying'] -the trustees : [u'are'] -slovenly as : [u'we'] -branches in : [u'different'] -just buy : [u'a'] -dimly imagine : [u'.'] -my inheritance : [u'.'] -heard? : [u'Poor'] -one limb : [u'is'] -strong agitation : [u','] -he appears : [u'as', u'to'] -some paternal : [u'advice'] -and grotesque : [u'.'] -heard. : ['PP', u'He', u'You'] -solve this : [u'problem'] -heard, : [u'I', u'Ryder', u'Mr'] -cigar which : [u'had'] -their horses : [u','] -not connected : [u'with'] -ready at : [u'the'] -and sinking : [u'his'] -it pulled : [u'up'] -underneath. : ['PP'] -admiring the : [u'rapid'] -we compress : [u'it'] -the terms : [u'of'] -shown into : [u'the'] -fashioned shutters : [u'with'] -effects and : [u'extraordinary'] -rules of : [u'your'] -listen. : ['PP'] -lock. : ['PP', u'I'] -use and : [u'distribution'] -lock, : [u'and', u'opened', u'but'] -sure," : [u'said'] -Lee laid : [u'down'] -reabsorbed by : [u'them'] -flush upon : [u'her', u'his'] -pennies and : [u'half', u'270'] -have bitterly : [u'regretted'] -done," : [u'said'] -the McCarthys : [u'were'] -Hum! : [u'Born', u'Posted', u'So', u'We'] -him will : [u'direct', u'break'] -politicians who : [u'had'] -. laws : [u'alone'] -Then creeping : [u'up'] -her beautiful : [u'hair'] -intention to : [u'make', u'charge'] -just left : [u'him', u'.', u'everything'] -t slip : [u'away'] -the Sherlock : [u'Holmes'] -most clumsy : [u'and'] -, sitting : [u'down', u'with', u'by', u'up', u'beside'] -notably in : [u'Tennessee'] -Shall be : [u'glad'] -. Willows : [u'says'] -you against : [u'him'] -hunting in : [u'couples'] -and Horner : [u'was'] -latter led : [u'to'] -the Museum : [u'we', u'itself'] -whither that : [u'hypothesis'] -his clearing : [u'up'] -below, : [u'and'] -quick witted : [u'youth'] -did you : [u'find', u'know', u'take', u'do', u'pick', u'see', u'beat', u'come', u'address', u'gather', u'verify', u'understand', u'learn', u'go', u'gain', u'wish', u'not', u'trace', u'deduce', u'get', u'sell', u'first', u'observe', u'hope', u'give', u'think'] -shrieked, " : [u'you'] -, there : [u'are', u'was', u"'", u'is', u'were', u'may', u'might', u'came', u',', u'must', u'lies', u'has', u'burst', u'does', u'seems'] -have read : [u'the', u'about', u','] -separate explanations : [u','] -of understanding : [u'.'] -dead; : [u'and'] -go down : [u'to'] -leave him : [u'.', u'alone', u'stooping'] -woven into : [u'the'] -did, : [u'Doctor', u'and', u'though'] -. Women : [u'are'] -more miserable : [u'ways'] -more tangible : [u'cause'] -As if : [u'a'] -sea fishes : [u'.'] -A door : [u'which'] -dead. : [u'Oh', 'PP', u'Then'] -dead, : [u'and', u'shall', u'then'] -leave his : [u'room'] -settle his : [u'debts'] -her mother : [u'.', u'when', u"'"] -seventeen steps : [u','] -, dreamy : [u'eyes'] -might betray : [u'me'] -from Dundee : [u',', u'.'] -and preserved : [u'her'] -wild goose : [u'may'] -episode. : ['PP'] -year, : [u'but', u'with', u'so', u'when'] -year. : [u'Old', u'We', 'PP', u'Besides'] -, fit : [u'you'] -with Project : [u'Gutenberg'] -blood had : [u'fallen'] -. Royalty : [u'payments'] -any harm : [u'were'] -year' : [u'87', u'83'] -very friendly : [u'footing'] -without charge : [u'with'] -the young : [u'lady', u'man', u'widow'] -grin. " : [u'Well'] -may copy : [u'it'] -events in : [u'question'] -scar ran : [u'right'] -zero point : [u','] -Civil War : [u','] -show how : [u'strange'] -trouble. : [u'But'] -trouble, : [u'to', u'he'] -events is : [u'certainly'] -UNDER THIS : [u'AGREEMENT'] -a rending : [u','] -strange antics : [u'of'] -moment that : [u'my', u'I'] -apparently have : [u'gone'] -akimbo, " : [u'what'] -his lips : [u'to', u'and', u'compressed', u',', u'tight', u'."'] -and Mrs : [u'.'] -the simple : [u'fare', u'faith'] -about shooting : [u'them'] -drove faster : [u','] -got blood : [u'enough'] -think as : [u'if'] -been made : [u'.', u'in', u'during'] -might see : [u'him'] -. " For : [u'God'] -think at : [u'one'] -curb, : [u'followed'] -your existence : [u'."'] -wooden thicket : [u','] -cleared the : [u'matter'] -sight which : [u'met'] -Not so : [u'many'] -Southern states : [u',', u'after'] -overstrung nerves : [u'failed'] -dottles left : [u'from'] -are breaking : [u'the'] -with silk : [u','] -That bears : [u'out'] -Our footfalls : [u'rang'] -were broken : [u'and'] -bald enough : [u','] -extremely difficult : [u'."'] -with Miss : [u'Hatty'] -first men : [u'in'] -never tell : [u'them'] -most difficult : [u'to'] -without the : [u'knowledge', u'payment'] -letters are : [u'without', u'all'] -copy and : [u'distribute'] -tumultuously in : [u'at'] -knew my : [u'secret', u'man'] -hear you : [u'give', u'say'] -30 pounds : [u',', u'a'] -which was : [u'thrown', u'suggested', u'increased', u'the', u'not', u'piled', u'tilted', u'peculiar', u'to', u'quite', u'so', u'found', u'a', u'hanging', u'of', u'invariably', u'full', u'answered', u'weighted', u'tied', u'characteristic', u'loose', u'buttoned', u'passing', u'associated', u'ajar', u'used', u'mottled', u'composed', u'standing', u'my', u'round', u'throbbing', u'performed', u'no', u'acted', u'naturally', u'even', u'all', u'wont'] -.'" : [u'This', u'I', u'Well', u'Now', u'My', u'The', u'It', u'You', u'He', u'We', u'As', u'Seeing', u'By', u'What', u'That'] -revolver in : [u'your', u'his'] -serious case : [u'against', u'.'] -lady might : [u'with'] -the girl : [u"'", u'said', u'who'] -who went : [u'to'] -wait until : [u'I', u'you'] -year our : [u'good'] -year out : [u','] -. ' He : [u'has'] -last London : [u'season'] -my station : [u'in', u'.'] -My limbs : [u'were'] -as brave : [u'as'] -stepfather learned : [u'of'] -The wind : [u'was'] -literary shortcomings : [u'.'] -clear," : [u'he'] -injuries reveal : [u'something'] -border he : [u'threw'] -acknowledges me : [u'to'] -being the : [u'scene', u'nearest'] -propriety of : [u'my'] -of circumstances : [u'which'] -study of : [u'crime', u'tattoo', u'the'] -which hangs : [u'over'] -my cousin : [u'Arthur'] -you best : [u'.', u'by'] -business to : [u'a', u'do', u'know', u'an'] -than any : [u'effort', u'other'] -evidently seen : [u'more'] -above my : [u'head'] -badly on : [u'account'] -cases have : [u'indeed'] -announced his : [u'approaching'] -emotion akin : [u'to'] -home that : [u'she'] -shocked at : [u'having'] -or two : [u'of', u'matters', u'questions', u'.', u'little', u'details', u'minor', u'points', u'twinkled', u'plain', u'things', u'very', u'places', u'above', u'?"'] -view of : [u'your', u'the', u'recent'] -forgiven and : [u'forgotten'] -nursery and : [u'my'] -in your : [u'chamber', u'eyes', u'absence', u'pocket', u'position', u'example', u'bedroom', u'undertaking', u'lot', u'London', u'sleep', u'hands', u'room', u'case', u'power', u'house', u'rooms', u'possession'] -picked nervously : [u'at'] -on. : ['PP', u'The'] -on, : [u'the', u'sometimes', u'my', u'and', u'I', u'year', u'transcribe'] -I earn : [u'at'] -shag which : [u'I'] -spoke, : [u'his', u'and', u'the'] -at climbing : [u'down'] -having signalled : [u'to'] -copyright laws : [u'of'] -patient!" : [u'said'] -, shimmering : [u'brightly'] -customary contraction : [u'like'] -this two : [u'days'] -cheerful. : ['PP'] -doubt which : [u'might'] -trees was : [u'extinguished'] -is you : [u'who'] -the Church : [u'of'] -noble man : [u'.'] -many feet : [u','] -spare figure : [u'pass'] -since it : [u'has', u'was'] -You see : [u',', u',"', u'it', u'all', u'how', u'this', u'that', u'we', u'no'] -perfect happiness : [u','] -it took : [u'all'] -and complete : [u'silence'] -banker had : [u'done'] -! Great : [u'Lord'] -read for : [u'yourself', u'about'] -him round : [u'myself'] -forebodings. : ['PP'] -set yours : [u'aside'] -Won' : [u't'] -and better : [u'not'] -received an : [u'excellent', u'appointment'] -fees or : [u'charges'] -meanly of : [u'me'] -salary of : [u'4'] -the rush : [u'of'] -of satisfaction : [u'.', u'. "'] -water was : [u'but'] -friend remarked : [u'. "'] -strange hair : [u'to'] -garden below : [u'.'] -for Briony : [u'Lodge'] -are without : [u'looking'] -half wages : [u'so', u','] -can call : [u'upon'] -of light : [u'.', u',', u'mousseline', u'upon', u'shot'] -a narrow : [u'passage', u'belt', u'strip', u'white', u'corridor', u'path'] -I fainted : [u'when', u'dead'] -. net : [u'/', u'),'] -jewel, : [u'was'] -. Four : [u'or'] -of energy : [u'."'] -soled shooting : [u'boots'] -wheel, : [u'two'] -a head : [u'that', u'of', u'.', u'which'] -quite imagine : [u'that'] -But never : [u'mind'] -an English : [u'paper', u'lawyer', u'provincial'] -a panel : [u'in'] -costume. : [u'His'] -solicit contributions : [u'from'] -like room : [u','] -the precious : [u'stone', u'case', u'treasure', u'coronet'] -, crossed : [u'it'] -of mere : [u'vagueness'] -else could : [u'she', u'outweigh'] -loathsome serpent : [u'.'] -a slow : [u'staccato'] -this business : [u'already', u','] -a slop : [u'shop'] -was printed : [u'the', u'upon'] -the ruffian : [u'who'] -dashed open : [u','] -As Cuvier : [u'could'] -windows of : [u'the', u'this'] -for two : [u'years', u'days', u'nights'] -power would : [u'rise'] -Hotel Cosmopolitan : [u',"', u'Jewel', u'.'] -become delirious : [u'.'] -none missing : [u'.'] -very scrupulous : [u'in'] -without anyone : [u'having'] -took my : [u'gun', u'station', u'wedding'] -a tooth : [u'brush'] -fingers fidgeted : [u'with'] -in vain : [u'to', u',', u'.'] -on board : [u'of'] -took me : [u'in', u'away', u'to'] -yourself deprived : [u'in'] -cuff so : [u'very'] -complete loss : [u','] -there we : [u'found'] -came bustling : [u'in'] -A large : [u'and', u'face'] -curve of : [u'the'] -imagine. : [u'I', u'It', 'PP', u'Several'] -resort to : [u'her'] -see upon : [u'your'] -shown up : [u'to', u'together'] -yourself last : [u'night'] -just where : [u'the'] -Toller and : [u'his'] -off his : [u'coat', u'very'] -whimsical problem : [u','] -him standing : [u'by'] -Lady Clara : [u'St'] -We got : [u'to', u'away', u'off', u'into'] -press, : [u'I', u'as', u'and', u'set'] -press. : [u'You', u'This', 'PP'] -his system : [u'of'] -first key : [u'fitted'] -as strong : [u'as'] -was indeed : [u'he', u'in', u'at', u'a', u'our', u'well'] -path it : [u'would'] -personal advantages : [u','] -he lay : [u'upon', u'there'] -, nodding : [u'approvingly'] -hypothesis for : [u'want'] -depression of : [u'the'] -all followed : [u'the'] -my lodgings : [u'and'] -Star,' : [u'Savannah', u'instantly'] -could therefore : [u','] -different way : [u'."'] -earth is : [u'a'] -photograph!" : [u'he'] -uncertain whether : [u'to'] -saw it : [u'all', u'by', u'in'] -most remarkable : [u'to', u'bird'] -him last : [u'he'] -to look : [u'into', u'three', u'."', u'after', u',', u'at', u'sleepily', u'for', u'out', u'it', u'round', u'. "'] -resolved to : [u'use'] -towards my : [u'wife'] -greyish and : [u'were'] -the geese : [u'which', u"?'", u'to', u'off'] -put our : [u'little', u'eyes'] -could and : [u'soon'] -will refuse : [u'."'] -83. : [u'There'] -correct,' : [u'I'] -trap on : [u'the'] -impression. : [u'At'] -has written : [u'to', u'the'] -has asked : [u'her'] -of fortune : [u'.'] -shall set : [u'to', u'my'] -has done : [u'a', u'from', u'it', u'me', u'no'] -heard by : [u'Miss'] -in completely : [u'.'] -of mine : [u'to', u'that', u'.', u'here', u',"', u',', u'apply'] -future lives : [u'."'] -shall see : [u'."', u'whither', u'you', u'who', u'whether', u'if', u'which'] -singular man : [u','] -stream upon : [u'the'] -every mood : [u'and'] -data were : [u'insufficient'] -west, : [u'I'] -base my : [u'articles'] -very curly : [u'brimmed'] -in by : [u'repeated', u'train', u'the'] -there never : [u'was', u'has'] -her face : [u',', u'all', u'blanched', u'and', u'forward', u'that', u'. "', u'.'] -dress does : [u'implicate'] -endured imprisonment : [u','] -because there : [u'are'] -PROVIDED IN : [u'PARAGRAPH'] -bar of : [u'the', u'light'] -her last : [u'night'] -by Mr : [u'.'] -jowl, : [u'black'] -the wealthy : [u'Mr'] -gave an : [u'inarticulate', u'undue'] -pittance, : [u'while'] -Was it : [u'to', u'possible', u'your', u'all', u'not'] -its conventionalities : [u'and'] -Clair has : [u'entered', u'most'] -bear the : [u'unconscious', u'disgrace', u'news'] -miss. : [u'Mr'] -bring a : [u'man'] -contact information : [u'can', u':'] -having it : [u'all'] -impending misfortune : [u'impressed'] -know her : [u','] -can always : [u'draw'] -feet; " : [u'it'] -Clair had : [u'her', u'last', u'been', u'fainted'] -miles over : [u'heavy'] -black with : [u'the'] -The dog : [u'is'] -start at : [u'once', u'our'] -good seaman : [u'should'] -was sure : [u'that', u'of'] -This eBook : [u'is'] -t miss : [u'your'] -not observed : [u'.'] -s purchase : [u';'] -disgust you : [u'with'] -Fairbank, : [u'the'] -passionate as : [u'his'] -glasses on : [u'his'] -afterwards the : [u'sitting', u'clang'] -a philanthropist : [u'or'] -by evening : [u'I'] -a frantic : [u'plucking'] -vacant chair : [u'upon'] -that petered : [u'out'] -good health : [u'landlord'] -motive, : [u'she'] -murderer must : [u'have'] -motive. : [u'In'] -be the : [u'blackest', u'hours', u'end', u'man', u'simpler', u'only', u'result', u'best', u'signs', u'lodge', u'easier', u'reason', u'holder', u'initials', u'stone', u'chief', u'house', u'more', u'ruin', u'very', u'richest', u'worse', u'fragment', u'matter', u'position', u'maid', u'police', u'truth', u'most', u'centre'] -his seeing : [u'Mr'] -secret hoard : [u','] -That fatal : [u'night'] -his Lordship : [u'. "'] -scratching his : [u'chin'] -than there : [u'are'] -What was : [u'the', u'this', u'that', u'he'] -The swing : [u'of'] -an abstracted : [u'air'] -the cross : [u'purposes', u'bar'] -eyes at : [u'his'] -Your father : [u',"'] -edge, : [u'where'] -heavily veiled : [u','] -Archery and : [u'Armour'] -wealthy Mr : [u'.'] -her like : [u'one'] -walk brought : [u'us'] -INCLUDING BUT : [u'NOT'] -in opposing : [u'the'] -his note : [u'book'] -limps with : [u'the'] -wire. : [u'Here', u'This', u'I'] -was obviously : [u'caused'] -shall write : [u'two', u'to'] -, was : [u'the', u'but', u'out', u'beautifully', u'suggestive', u'let', u'in', u'then', u'waiting', u'one', u'goading', u'a', u'extremely', u'given', u'John', u'too', u'upon', u'much', u'none', u'arrested', u'well', u'returning', u'accused', u'brought', u'lying', u'shaking', u'turned', u'curled', u'never', u'folded', u'at', u'grizzled', u'responsible', u'enough', u'standing', u'missing', u'now', u'surprised', u'leaning'] -seen more : [u'in'] -man appeared : [u'at'] -methods I : [u'hold'] -, twitching : [u'and'] -farther side : [u'we', u'of'] -heard of : [u'the', u'any', u'either', u'you', u'her', u'that', u'Colonel', u'since', u'such', u'Frank', u'him', u'it'] -death that : [u'I'] -have placed : [u'himself', u'before', u'them'] -4d. : ['PP'] -lady to : [u'whom', u'a'] -be committed : [u'there'] -dear boy : [u'to'] -a composer : [u'of'] -wish that : [u'you'] -fainted on : [u'seeing'] -the outer : [u'edge', u'side'] -a confectioner : [u"'"] -some great : [u'hoax', u'anxiety', u'crisis', u'trouble'] -laughed. " : [u'It', u'I', u'Here'] -residence of : [u'the'] -very quietly : [u',', u'.', u'entered'] -ideal spring : [u'day'] -soda in : [u'Baker'] -live happily : [u'together'] -421 pennies : [u'and'] -poor girl : [u',', u'who'] -long I : [u'remained'] -while she : [u'was', u'held'] -dreadful mess : [u','] -possible that : [u'graver', u'he', u'it', u'we', u'even', u'our', u'I', u'this', u'the', u'his'] -the reception : [u'by'] -an egg : [u'after'] -any which : [u'presented'] -It drove : [u'me'] -may open : [u'his'] -dressed man : [u'about'] -their escape : [u'.'] -royal blood : [u'in'] -of removing : [u'any'] -few hundred : [u'pounds'] -may prove : [u'to', u'it'] -kept talking : [u'of'] -angle of : [u'the', u'Surrey'] -but one : [u'woman', u'retreat', u'thing', u'way', u'of'] -cases but : [u','] -Bohemia in : [u'return'] -I drove : [u'home', u'one'] -out little : [u','] -he takes : [u'snuff'] -little promise : [u'that'] -paragraph to : [u'the'] -stream which : [u'runs'] -them was : [u'of', u'his', u'mine', u'Sir', u'that'] -circles of : [u'light'] -would hurry : [u'on'] -I thought : [u',', u'at', u'he', u'that', u'over', u'as', u'it', u'of', u'there', u'people', u'I', u'her', u'little'] -public possessions : [u'of'] -thought her : [u'to'] -wash linen : [u'of'] -. Quick : [u','] -should produce : [u'her'] -is seared : [u'into'] -, cigar : [u','] -banker' : [u's'] -in June : [u", '"] -crop!" : [u'He'] -? Now : [u','] -place where : [u'our', u'my', u'you'] -we erected : [u'a'] -first," : [u'she', u'groaned'] -, won : [u"'"] -had such : [u'faith'] -" How : [u'often', u'many', u'did', u',', u'on', u'is', u'do', u'can', u'about', u'very', u'long', u'could', u'are'] -the doors : [u'of'] -off into : [u'silence'] -also because : [u'the'] -dying man : [u',"'] -heart of : [u'great', u'hearts', u'a'] -my fields : [u'.'] -see deeply : [u'into'] -should stand : [u'in'] -. Horner : [u','] -admiring your : [u'fuller'] -yellow envelope : [u','] -remarkable about : [u'the'] -s hard : [u'to'] -place might : [u'not'] -, grizzled : [u'hair'] -Literary Archive : [u'Foundation'] -old gold : [u','] -visit to : [u'Warsaw', u'Saxe', u'her', u'Brixton', u'an'] -Contributions to : [u'the'] -that likely : [u'.'] -the explanation : [u'may'] -replace his : [u'clay'] -spoke he : [u'picked', u'drew'] -. Miss : [u'Irene', u'Stoner', u'Doran', u'Hunter'] -, thrilling : [u'with'] -Petrified with : [u'astonishment'] -whispered, " : [u'Walk', u'what'] -between cocaine : [u'and'] -whispered, ' : [u'get'] -and distribution : [u'must', u'of'] -an importance : [u'which'] -fright. : ['PP'] -s bricks : [u'.'] -looked from : [u'one', u'the'] -it or : [u'convinced'] -the church : [u'.', u'door', u'first', u',', u'is', u'?', u'but'] -it on : [u'the', u'my', u'either', u'a', u'.', u'we'] -stained and : [u'streaked'] -cried I : [u', "'] -picked it : [u'up'] -: FULL : [u'LICENSE'] -broad brimmed : [u'hat', u'straw'] -it of : [u'late', u'you'] -known the : [u'truth', u'quiet', u'bridegroom'] -adventures which : [u'were'] -water mark : [u'.'] -so savagely : [u'.'] -whiter. : [u'He'] -gentleman. " : [u'Lord'] -knowledge which : [u'you', u'is'] -lay half : [u'fainting'] -and returned : [u'in', u'some', u'towards'] -pirates who : [u'will'] -we paced : [u'up', u'to'] -would suit : [u'me', u'them'] -goose, : [u'which', u'took', u'while', u'all', u'Mr', u'sir', u'and'] -goose. : ['PP', u'It', u'My'] -pips in : [u'the', u'others'] -s carriage : [u'building'] -moment," : [u'Holmes', u'said'] -a shudder : [u'to'] -father when : [u'I'] -maddening doubts : [u'and'] -only provoked : [u'a'] -my dear : [u'sir', u'Watson', u'girl', u'little', u'madam', u'wife', u'boy', u'fellow', u'young', u'daughter'] -except the : [u'criminal'] -dead the : [u'bonniest'] -Grosvenor Square : [u'furniture'] -her again : [u','] -his consciousness : [u'.'] -that voice : [u'before'] -word," : [u'said'] -woman to : [u'him', u'night', u'bear'] -upon European : [u'history'] -travelled round : [u'and'] -Savannah, : [u'Georgia', u'but'] -Savannah. : [u'I'] -armchair and : [u'closing', u'putting', u'cheery', u'warmed', u'greeting', u'stood'] -alternately asserted : [u'itself'] -forehead. : ['PP'] -remarked, " : [u'the', u'I', u'for', u'if', u'would', u'that', u'and', u'so'] -wit' : [u's'] -glass above : [u'the'] -walk up : [u'and'] -a knot : [u'in'] -were greyish : [u'and'] -even redder : [u'than'] -wit. : [u'He'] -how strongly : [u'it'] -trip, : [u'Watson'] -more ready : [u'to'] -my conscience : [u'."'] -When, : [u'in'] -? Great : [u'Scott'] -does his : [u'wit'] -forgiveness for : [u'those'] -would bring : [u'the', u'a', u'his', u'you', u'me'] -a sturdy : [u','] -works 1 : [u'.'] -down near : [u'Briony'] -married again : [u'so', u'.'] -answering, : [u'as'] -. Hardy : [u','] -s police : [u'court'] -secret as : [u'a'] -good bye : [u',', u'to'] -His letters : [u'were'] -a foreign : [u'stamp', u'tongue'] -fine stroke : [u'to'] -away like : [u'this', u'that'] -got beyond : [u'words'] -glass in : [u'his', u'my'] -tear off : [u'another'] -under your : [u'roof'] -to Lord : [u'St'] -" Sold : [u'out'] -drawn from : [u'him', u'my'] -letter you : [u'certainly'] -anatomy unsystematic : [u','] -for river : [u'steamboats'] -a rich : [u'material', u'man', u'pocket'] -matter as : [u'I'] -of whoever : [u'it'] -very bright : [u'red'] -matter at : [u'all'] -attentions, : [u'and'] -attentions. : [u'The'] -criminals in : [u'London'] -Neville is : [u'alive'] -the very : [u'deepest', u'word', u'soul', u'possibility', u'room', u'simple', u'remarkable', u'morning', u'strongest', u'thought', u'letters', u'shape', u'words', u'day', u'best', u'man', u'horror', u'bed', u'peculiar', u'heads', u'station', u'painful', u'note', u'items', u'few', u'first'] -large curling : [u'red'] -, houses : [u','] -down my : [u'face'] -, cocked : [u'his', u','] -written in : [u'a', u'pencil', u'the'] -for who : [u'else'] -go together : [u'.'] -call for : [u'help', u'protection', u'it'] -could ask : [u'advice'] -doubt travel : [u'a'] -a mixed : [u'affair'] -memoranda, : [u'receipts'] -trick. : ['PP'] -darkness which : [u'surrounds'] -comical he : [u'was'] -sharp you : [u'ought'] -father met : [u'his'] -are sentimental : [u'considerations'] -including obsolete : [u','] -?" murmured : [u'Holmes'] -self. : ['PP'] -Mexico. : [u'After'] -By train : [u'from'] -a Lascar : [u','] -out the : [u'"', u"'", u'case', u'paragraph', u'very', u'pips', u'vile', u'grounds', u'present', u'grey', u'full', u'diadem', u'required', u'coronet', u'first', u'contents'] -widest array : [u'of'] -single half : [u'column'] -photograph and : [u'a'] -showed by : [u'its'] -slowly from : [u'the'] -dropped in : [u'my', u'sheer'] -spreading out : [u'of'] -who live : [u'under'] -recovering them : [u'."'] -old editions : [u'will'] -central window : [u','] -covered over : [u'her'] -Street we : [u'shall'] -there has : [u'then', u'been'] -kissed her : [u'and'] -associate crime : [u'with'] -the senior : [u'partner'] -, ' and : [u'half', u'he', u'we', u'will', u'then', u'the'] -. Kill : [u'it'] -having met : [u'you'] -gather yourself : [u'as'] -merit that : [u'I'] -time a : [u'deduction', u'decrepit'] -of Eastern : [u'divan'] -he flung : [u'open'] -passing, : [u'that'] -must raise : [u'the'] -seem trivial : [u'to'] -Gone to : [u'the'] -time I : [u'heard', u'was', u'have'] -a fine : [u'actor', u',', u'stroke', u'to', u'big'] -chair against : [u'the'] -rashness of : [u'my'] -way up : [u','] -uniform rushing : [u'towards'] -a preliminary : [u'to'] -could get : [u'the', u'rid', u'no'] -; when : [u'I'] -our arrangements : [u','] -strong emotion : [u'in'] -wing are : [u'on'] -, Windibank : [u','] -cause. : ['PP', u'And'] -man fresh : [u'from'] -clues which : [u'would', u'I'] -a ship : [u"'", u'."', u'.'] -tint of : [u'chestnut'] -obey any : [u'little'] -awful to : [u'me'] -not convinced : [u'of'] -Your task : [u'is'] -his lameness : [u'?"'] -sinking his : [u'voice'] -cap on : [u'the'] -shall try : [u'not'] -unfortunately more : [u'than'] -might throw : [u'a'] -came by : [u'the', u'his'] -should think : [u',', u'we'] -, scratching : [u'his'] -grow to : [u'be'] -all means : [u'."', u','] -he feared : [u','] -just quitted : [u'.'] -has, : [u'in', u'perhaps', u'however', u'I'] -the sympathetic : [u'sister'] -done our : [u'work'] -then to : [u'the', u'raise', u'throw'] -extreme darkness : [u'he'] -sit down : [u'upon', u'in', u'on', u','] -ran down : [u'the'] -one remarkable : [u'point'] -my handkerchief : [u'very', u'round', u'.', u'up', u'and'] -know everything : [u'of'] -of apology : [u','] -, rearranging : [u'his'] -that are : [u'destroyed'] -affair when : [u'there'] -dwell. : [u'You'] -tugged until : [u'I'] -mould, : [u'which', u'was'] -in Bow : [u'Street'] -to miss : [u'it', u'anything'] -never together : [u','] -nice work : [u'as'] -dog to : [u'help'] -soon remedied : [u','] -berths to : [u'men'] -snug chamber : [u'."'] -woman who : [u'had', u'is', u'has'] -display, : [u'perform'] -to Stoke : [u'Moran'] -," whined : [u'the'] -bring up : [u'your'] -who forgot : [u'all'] -affected than : [u'I'] -carte blanche : [u'."', u'to'] -appear prominently : [u'whenever'] -seven mile : [u'drive'] -and lowliest : [u'manifestations'] -I question : [u'whether', u','] -the ceaseless : [u'tread'] -the account : [u':'] -table waiting : [u'for'] -serious point : [u'in'] -a couple : [u'of'] -now past : [u'the'] -in such : [u'contrast', u'a', u'words', u'trouble', u'places', u'states'] -has said : [u'that'] -Exactly so : [u'.'] -my things : [u'and', u','] -" Nothing : [u'to', u'."', u'?"', u','] -done before : [u'now'] -hands to : [u'the'] -probably transferred : [u'the'] -and sensations : [u','] -monotonous voice : [u','] -is lightened : [u'already'] -run to : [u'too', u'considerably'] -cigar and : [u'let', u'waited'] -man hesitated : [u'for'] -banker wrung : [u'his'] -, very : [u'quick', u'neat', u'much', u'many', u'foul', u'thin', u'wrinkled', u'shortly', u'soon', u'well', u'old', u'weary', u'possibly'] -look askance : [u'at'] -paragraph in : [u'which'] -become the : [u'laughing'] -planking and : [u'probing'] -his collar : [u'or', u'turned'] -half past : [u'six', u'ten', u'nine'] -God, : [u'goes', u'my', u'what'] -social, : [u'then'] -near Reading : [u'.'] -God! : [u'It', u'What', u'Helen', u'what'] -God' : [u's'] -than what : [u'we'] -. Farintosh : [u','] -fear," : [u'said'] -pipes I : [u'forget'] -to whether : [u'I'] -your London : [u','] -upbraided for : [u'not'] -the Theological : [u'College'] -his compasses : [u'drawing'] -works that : [u'can', u'could'] -is really : [u'confined', u'a', u'very', u'impossible', u'no', u'two', u'to', u'the', u'managed'] -third point : [u'which'] -next to : [u'the', u'each'] -its horrid : [u'perch'] -she never : [u'said'] -different person : [u'to'] -very sharp : [u'you'] -disgrace. : [u'I'] -tell them : [u'apart'] -their first : [u'green'] -in Berkshire : [u'.'] -cigarette into : [u'the'] -morose Englishman : [u'.'] -principle appears : [u'to'] -her young : [u'man'] -exclusion, : [u'at'] -I were : [u'not', u'alone', u'twins', u'glad'] -says it : [u'is'] -this unhappy : [u'young', u'family'] -few of : [u'us', u'my'] -For an : [u'instant', u'hour'] -per cent : [u'.'] -says is : [u'true', u'absolutely'] -Peterson, : [u'the', u'who', u'so', u'run', u'just'] -his path : [u'and', u'.'] -under them : [u'and'] -entirely different : [u'.'] -anything to : [u'a', u'do'] -Lord Robert : [u'Walsingham', u'St'] -day so : [u'far'] -than such : [u'a'] -affected. : [u'There'] -is grizzled : [u','] -slippers. : [u'Across'] -is given : [u'to'] -Arthur is : [u'innocent'] -during our : [u'drive', u'homeward', u'short'] -Arthur in : [u'prison'] -is fear : [u','] -rolled them : [u'all'] -Nous verrons : [u',"'] -that bell : [u'communicate'] -which his : [u'son'] -triumph and : [u'bent'] -" Undoubtedly : [u'.'] -t look : [u'a'] -solved the : [u'mystery'] -sound would : [u'be'] -play such : [u'tricks'] -as day : [u'.'] -red hair : [u'.', u'grew', u','] -s short : [u'sight'] -France, : [u'the'] -France. : [u'It', 'PP'] -quiet one : [u','] -own shadow : [u'might'] -stopped to : [u'light'] -re looking : [u'at'] -en bloc : [u'in'] -not until : [u'close'] -everything of : [u'importance', u'it'] -allow that : [u'there'] -as Peter : [u'Jones'] -feet thrust : [u'into'] -crime the : [u'more'] -and donations : [u'from', u'can', u'to'] -brougham rolled : [u'down'] -I settled : [u'myself'] -t been : [u'for', u'at'] -believing her : [u'to'] -I brought : [u'this'] -disappearance are : [u'all'] -woman of : [u'thirty', u'strong'] -this nocturnal : [u'expedition'] -This note : [u'I'] -her consciousness : [u'.'] -am ever : [u'your'] -Why serious : [u'?"'] -round the : [u'edges', u'curve', u'corner', u'edge', u'angle', u'body', u'flaring', u'room', u'reptile', u'wrist', u'head', u'house', u'garden'] -course. : [u'He', 'PP'] -course, : [u'stands', u'stay', u'saw', u'I', u'for', u'in', u'the', u'that', u'inferred', u'one', u'a', u'learned', u'we', u'if', u'remains', u'of', u'well', u'borrow', u'he', u'yours'] -in France : [u','] -" Breckinridge : [u'is'] -crop. " : [u'I'] -between. : ['PP'] -vague figure : [u'huddled'] -and coming : [u'to'] -to Fordham : [u','] -charge. : [u'But'] -clapped the : [u'hat'] -must find : [u'your'] -very lovely : [u'woman'] -sank into : [u'a'] -came over : [u'the', u'our', u'me'] -virtues and : [u'of'] -whom you : [u'wish', u'can', u'may', u'helped', u'had', u'paid'] -mind with : [u'my', u'a'] -be explained : [u'away'] -course that : [u'was', u'suggested'] -from them : [u'.'] -sank his : [u'face'] -. Draw : [u'up', u'your'] -hound, : [u'Holmes', u'and'] -surely the : [u'bell'] -Some woman : [u'came'] -they appeared : [u'to'] -of grief : [u'and', u'than', u'that'] -absurd to : [u'anyone', u'suppose'] -out, " : [u'I'] -no need : [u'for'] -his deserts : [u'.', u','] -strenuously having : [u'ever'] -to what : [u'it', u'these', u'took', u'we', u'had', u'you', u'I', u'the'] -she became : [u'engaged', u'his'] -he evolved : [u'from'] -There he : [u'was', u'is'] -way with : [u'a', u'the', u'an'] -. Evidently : [u'there'] -be regretted : [u'.'] -narrowly it : [u'seemed'] -accompanying them : [u'in'] -and shape : [u','] -papers are : [u','] -last three : [u'days', u'years'] -set matters : [u'right'] -have had : [u'the', u'several', u'misgivings', u'one', u'some', u'little', u'diabetes', u'none', u'nothing', u'a', u'to', u'considerable', u'three', u'your'] -copy is : [u'also'] -none could : [u'see'] -dweller once : [u'more'] -and uncongenial : [u'atmosphere'] -these charming : [u'invaders'] -and sent : [u'them', u'for'] -pair, : [u'by'] -it says : [u", '"] -very tall : [u'and'] -of interest : [u'.', u'to', u'."', u'and', u'in', u','] -gloss with : [u'which'] -Holmes nodded : [u'his'] -overtopped every : [u'other'] -that Miss : [u'Sutherland', u'Helen', u'Stoner', u'Stoper', u'Hunter', u'Rucastle'] -tree as : [u'far'] -us some : [u'harm'] -say!' : [u'He'] -hold him : [u'back'] -fastened at : [u'the'] -first that : [u'you', u'the', u'this'] -coil of : [u'hair'] -reaction, : [u'with'] -fastened as : [u'I'] -occur. : [u'There'] -slept at : [u'Baker'] -jewel case : [u'.', u'of', u'at', u','] -road there : [u'who'] -may well : [u'have'] -the Californian : [u'heiress'] -that strike : [u'you'] -is of : [u'such', u'that', u'a', u'some', u'importance', u'the', u'course', u'her', u'no', u'value', u'paramount'] -' But : [u'it'] -rather to : [u'himself', u'the', u'those', u'my'] -help to : [u'night', u'them', u'clear', u'this'] -You heard : [u'him', u'nothing'] -is on : [u'fire', u'duty', u'the'] -pestered as : [u'I'] -home a : [u'dozen', u'box'] -3rd. : [u'My'] -3rd, : [u'that'] -we had : [u'turned', u'all', u'listened', u'just', u'some', u'found', u'never', u'got', u'a', u'1000', u'been', u'better', u'come', u'seen', u'noticed', u'hydraulic', u'sat', u'under', u'passed', u'best'] -he enlarged : [u'at'] -print editions : [u'means'] -right side : [u'of', u',', u'."', u'?', u'was'] -Then let : [u'us', u'me'] -noise like : [u'a'] -several delicate : [u'cases'] -table was : [u'set'] -has left : [u'England', u'it'] -goes Sherlock : [u'Holmes'] -Elise!' : [u'he'] -suddenly, : [u'just', u'in', u'and'] -by so : [u'formidable', u'many', u'elaborate'] -suddenly. : ['PP'] -home I : [u'don'] -look round : [u'me'] -domain and : [u'licensed'] -slipped through : [u'.'] -his friends : [u'and'] -felt by : [u'daubing'] -and should : [u'be'] -never leave : [u'his'] -carelessly scraped : [u'round'] -might help : [u'us', u'me'] -him mention : [u'her'] -studied, : [u'near'] -first, : [u'one', u'and', u'third', u'but', u'as', u'two', u'that', u'of', u'developed'] -first. : ['PP', u'Pray'] -and we : [u'were', u'all', u'keep', u'can', u'heard', u'shall', u'set', u'will', u'had', u'lay', u'both', u'dashed', u'rattled', u'fattened', u'got', u'could', u'are', u'waited', u'listened', u'wish', u'drove', u'came', u'sat'] -dispose of : [u'it'] -object, : [u'then'] -some vague : [u'account'] -map of : [u'the'] -your results : [u'."'] -first; : [u'but'] -will come : [u'to', u'with', u'well'] -Square presented : [u'as'] -heavy lidded : [u'expression'] -house shortly : [u'after'] -they fire : [u','] -gaining light : [u'as'] -The case : [u'has', u'is', u'would'] -any practice : [u'at'] -and hold : [u'the'] -if there : [u'is', u'was', u'were'] -hush this : [u'thing'] -afraid to : [u'break'] -knew where : [u'I'] -poetry. : [u'Then'] -and licensed : [u'works'] -the glade : [u'?'] -once convinced : [u'from'] -work the : [u'longer'] -, handing : [u'it'] -able with : [u'a'] -Then she : [u'threw', u'got'] -foresight," : [u'said'] -from copying : [u','] -authorities that : [u'there'] -my revolver : [u',', u'and', u',"'] -said yesterday : [u','] -body had : [u'been'] -near St : [u'.'] -ashes were : [u'of'] -suit you : [u"?'"] -between puckered : [u'lids'] -where breakfast : [u'had'] -A call : [u'for'] -drawn him : [u'into'] -rogue incites : [u'the'] -collecting pillows : [u'from'] -be kept : [u'up', u'upon'] -my remarks : [u'very'] -far grasped : [u'this'] -noble in : [u'the'] -" Precisely : [u'.', u'so', u'."'] -fare that : [u'our'] -shoes. : [u'With'] -pushed her : [u'out'] -went about : [u','] -misgivings upon : [u'the'] -boasting when : [u'I'] -rather severe : [u'upon'] -must also : [u'put'] -corridor with : [u'a'] -will prove : [u'to'] -are to : [u'understand', u'station', u'watch', u'hush', u'be', u'examine', u'take'] -crisply and : [u'loudly'] -understand, : [u'became', u'richer', u'without', u'a', u'Mr', u'but', u'little', u'from', u'gave', u'which', u'and', u'is', u'who', u'deposes', u'agree'] -understand. : ['PP', u'Where', u'This', u'By'] -sake don : [u"'"] -a nonentity : [u'.'] -that whatever : [u'happened', u'danger', u'her'] -less now : [u'than'] -half frightened : [u','] -on their : [u'way'] -Lucy, : [u'the'] -destroy his : [u'theory'] -reconstruction of : [u'the'] -protruding out : [u'of'] -awkward doing : [u'business'] -task is : [u'confined'] -sharp. : [u'The'] -the bisulphate : [u'of'] -you could : [u'never', u'do', u'solve', u'see', u'help', u'not', u'manage', u'make', u'come', u'wink', u'tell', u'perform', u'send'] -plaster. : [u'Then'] -my dooties : [u','] -are careful : [u'.'] -grey cloth : [u'seen'] -to accept : [u'anything'] -are women : [u'in'] -back hung : [u'a'] -town this : [u'morning'] -think evil : [u'of'] -incoherent ramblings : [u'of'] -You have : [u'not', u'compromised', u'carte', u'the', u'really', u'but', u'shown', u'heard', u'worked', u'lost', u'already', u'no', u'made', u'been', u',', u'formed', u'come', u'given', u'a', u'him', u'an', u'done', u'evidently', u'doubtless', u'destroyed', u'dishonoured', u'called', u'neither', u'it', u'erred', u'degraded'] -year," : [u'said'] -ring and : [u'confided'] -guessed as : [u'much'] -cable will : [u'have'] -very gipsies : [u'in'] -watered silk : [u','] -, descend : [u'to'] -and what : [u'the', u'then', u'their', u'were', u'was', u'happened', u'Hugh', u'did', u'of', u'purpose', u'have', u'it', u'has'] -and interesting : [u'features'] -first volley : [u'.'] -, cut : [u'at', u'off'] -What CAN : [u'be'] -him now : [u','] -itself upon : [u'the', u'me'] -I continually : [u'visited'] -Ha, : [u'ha'] -Ha! : [u'Our', u'that', u'In', u'there', u'And', u'this', u'I', u'You', u'That', u'Well', u'you', u'did'] -alive, : [u'and', u'Mr'] -home in : [u'a', u'the', u'it'] -; quite : [u'dramatic'] -he cried : [u'; "', u',', u". '", u'. "', u'.', u', "', u'impatiently'] -joined in : [u'a'] -implored him : [u'to'] -out came : [u'my'] -column, : [u'with'] -then wandered : [u'through', u'about'] -column. : [u'The'] -sir?' : [u'said'] -am going : [u'through', u'out', u'mad', u'right'] -and third : [u'of'] -of children : [u"'"] -crossed the : [u'threshold'] -your company : [u',"'] -address it : [u'was'] -there who : [u'stares'] -wintry sun : [u'.'] -grand gift : [u'of'] -be repugnant : [u'to'] -or orange : [u'pips'] -two or : [u'three'] -understand," : [u'said'] -the Bermuda : [u'Dockyard'] -finally that : [u'C'] -two of : [u'my', u'us', u'them', u'which', u'the'] -such trouble : [u'!"'] -. One : [u'night', u'was', u'is', u'of', u'singular', u'mistake', u'day', u'morning', u'by', u'sorrow', u'evening'] -Capital! : [u'Between', u'capital'] -just have : [u'time'] -Oakshott here : [u'and'] -people start : [u'at'] -prime of : [u'life'] -pitch of : [u'expectancy', u'tension'] -few details : [u'which'] -gained on : [u'every'] -has become : [u'known', u'of'] -protection in : [u'the'] -been burned : [u','] -stood smiling : [u','] -No sign : [u'of'] -impertinent! : [u'Kindly'] -pretty girl : [u'and'] -was pretty : [u','] -are several : [u'people', u'other', u'quiet', u'singular', u'points'] -a life : [u'of', u'preserver'] -hat on : [u','] -respects he : [u'appears'] -finger in : [u'the'] -hat of : [u'the'] -she threw : [u'open', u'her'] -make her : [u'way'] -hardly knows : [u'his'] -openly abjure : [u'his'] -lip to : [u'this'] -tread pass : [u'his'] -breakfast with : [u'him', u'the'] -house about : [u'half'] -chance at : [u'all'] -he disentangled : [u'the'] -chance as : [u'any'] -simplify matters : [u'."'] -not effusive : [u'.'] -light was : [u'still'] -you come : [u'to', u'away', u'pestering', u'with'] -weary, : [u'for', u'heavy'] -doing all : [u'that'] -weary. : [u'Mrs'] -confederates, : [u'no'] -a cluster : [u'of'] -paramount importance : [u'.'] -spun the : [u'web'] -be worth : [u'your', u'while'] -fell a : [u'cascade'] -cold blooded : [u'scoundrel'] -a ghastly : [u'face'] -the convincing : [u'evidence'] -quite disproportionately : [u'large'] -any criminal : [u'in'] -struck him : [u'down'] -half opened : [u'his'] -, hover : [u'over'] -drawn, : [u'so', u'as'] -Pray proceed : [u'."', u'with'] -cage. : [u'As'] -feet would : [u'carry'] -clearly how : [u'simple'] -. Lord : [u'St'] -nothing and : [u'kept'] -morning had : [u'hurried', u'not'] -stood hid : [u'behind'] -solution is : [u'its'] -with great : [u'yellow', u'care', u'intensity'] -beef would : [u'do'] -listless, : [u'watching'] -first wife : [u'was'] -longed to : [u'meet'] -information can : [u'be'] -a gibe : [u'and'] -your purpose : [u'equally'] -obstinacy. : ['PP'] -heroic self : [u'sacrifice'] -gentleman by : [u'courtesy'] -What does : [u'her'] -cannot be : [u'any', u'read'] -were travelling : [u'in'] -and braced : [u'it'] -whole way : [u'out'] -and ruin : [u'of'] -blandly, " : [u'but'] -a salesman : [u'in', u'named'] -an arm : [u'back'] -the silence : [u'of', u'from', u'I', u'Holmes'] -you remark : [u'in', u'the'] -momentary. : [u'With'] -have yourself : [u'formed'] -, principally : [u'for'] -must put : [u'the', u'this'] -suburb, : [u'but'] -an arc : [u'and'] -meant for : [u'the', u'a'] -suddenly he : [u'plunged'] -" Yes : [u'."', u',', u'.', u';', u',"', u'?"'] -" Yet : [u'if'] -Even when : [u'she'] -fellow for : [u'photography'] -such and : [u''] -he devoured : [u'it'] -locked up : [u'.', u",'"] -indeed in : [u'a'] -results all : [u'pointed'] -one belonging : [u'to'] -old ancestral : [u'house'] -a hundred : [u'a', u'yards', u'other', u'before'] -vigil? : [u'I'] -our fads : [u'may'] -help us : [u'!"', u'?"', u'in'] -abstracted air : [u','] -been recognised : [u'in'] -How long : [u'they', u'I', u'did'] -rooms to : [u'morrow'] -desperate man : [u'.', u','] -to lead : [u'me', u". '"] -only bring : [u'you'] -conviction with : [u'them'] -gathering darkness : [u', "'] -, pushing : [u'her', u'his'] -Holmes drew : [u'one'] -check trousers : [u','] -led a : [u'life'] -goodwill and : [u'interest'] -further points : [u','] -august person : [u'who'] -opinion about : [u'a'] -was fresh : [u'and'] -distorted child : [u','] -fuss made : [u'about'] -me fresh : [u'life'] -whitewashed, : [u'but'] -worth of : [u'the'] -over heavy : [u'roads'] -Miss Rucastle : [u'was', u'were'] -three gentlemen : [u'are'] -is Armitage : [u'Percy'] -Outside, : [u'the'] -a plainly : [u'furnished'] -an advertisement : [u'."', u'in', u'from', u'which'] -just whatever : [u'he'] -is thought : [u'that'] -lot at : [u'once'] -rather sad : [u'that'] -of spectators : [u','] -yet. : [u'It', 'PP', u'So', u'Suddenly', u'Sherlock'] -yet, : [u'and', u'what', u'somehow', u'but', u'among', u'had'] -regret that : [u'I'] -wound up : [u'two'] -ventilator and : [u'to'] -glare of : [u'the'] -a probable : [u'one'] -how hard : [u'it'] -it unless : [u'it'] -" Ay : [u','] -morrow I : [u'shall'] -of reeds : [u'round'] -" At : [u'eight', u'half', u'what', u'Reading', u'the', u'some', u'least'] -" As : [u'far', u'a', u'low', u'I', u'it', u'you', u'she', u'long'] -myself inside : [u'the'] -is familiar : [u'to'] -" An : [u'elderly', u'enemy', u'accident'] -" Ah : [u',', u',"', u'!', u'!"'] -get her : [u'to', u'out'] -works posted : [u'with'] -uncle returned : [u'to'] -were those : [u'of'] -here a : [u'highway', u'few'] -us," : [u'he'] -feared, : [u'we'] -engine could : [u'be'] -, spare : [u'figure'] -to lay : [u'your', u'a'] -drove back : [u'into'] -that laugh : [u'.'] -until then : [u'?"'] -read the : [u'indications', u'evidence', u'advertisement', u'following', u'whole'] -genial fashion : [u',', u'.'] -finely adjusted : [u'temperament'] -may want : [u'your'] -figure pass : [u'twice'] -a wonderfully : [u'silent'] -and lashed : [u'furiously'] -over good : [u'for'] -or damaged : [u'disk'] -sold by : [u'Mrs'] -was none : [u'other'] -now to : [u'have', u'solve', u'him', u'go'] -common lot : [u'this'] -The dress : [u'which'] -and another : [u'little'] -the fantastic : [u'.'] -to goodness : [u'the'] -just such : [u'as', u'a'] -s disposition : [u'is'] -if something : [u'quite'] -through one : [u'of'] -up edges : [u'of'] -, music : [u','] -at what : [u'he', u'moment', u'point', u'hour'] -to time : [u'I', u'to', u',', u'.'] -Malay attendant : [u'had'] -the news : [u'that', u'of', u',', u'to'] -one begins : [u'to'] -fish that : [u'you'] -had little : [u'of'] -to showing : [u'his'] -of cause : [u'and'] -indicated. " : [u'Here'] -glasses more : [u'vigorously'] -again on : [u'the', u'its'] -rather painful : [u'tale'] -pungent cleanly : [u'smell'] -it did : [u'not', u',', u'.', u'to'] -and whatever : [u'it'] -flicked the : [u'horse'] -let Mr : [u'.'] -were usually : [u'preceded'] -tool and : [u'was'] -client clutched : [u'it'] -bone had : [u'been'] -I rushed : [u'forward', u'out', u'upstairs', u'towards', u'across', u'down'] -is safely : [u'in'] -little god : [u"'"] -, wayward : [u','] -not understand : [u'?"'] -ventured a : [u'remark'] -other from : [u'the'] -gbnewby@ : [u'pglaf'] -you sure : [u'about', u'that'] -completely. : [u'Until', u'I', u'He', u'You'] -jest. : ['PP'] -the engineer : [u', "'] -any news : [u'to'] -Stark and : [u'a'] -my bracelets : [u'on'] -by SIR : [u'ARTHUR'] -village inn : [u'over'] -keen eye : [u'upon'] -should continue : [u'my'] -a herd : [u'of'] -golden sovereigns : [u'for'] -small matter : [u'will', u'in'] -silent house : [u'.'] -faddy people : [u','] -are we : [u'to'] -Majesty to : [u'regain'] -you supplied : [u'to'] -to this : [u'room', u'mysterious', u',', u'place', u'dear', u'gentleman', u'Mrs', u'man', u'trip', u'floor', u'ventilator', u'extraordinary', u':', u'lucky', u'no', u'Alice', u'young', u": '", u'address', u'long', u'most', u'poor', u'system', u'agreement'] -might change : [u'my'] -method. : [u'It'] -method, : [u'and'] -given me : [u'.', u'fresh', u'such', u'satisfaction', u'your'] -find yourself : [u'in'] -lad tugging : [u'at'] -overhearing the : [u'questions'] -fees, : [u'that'] -, check : [u'the'] -newspaper from : [u'the'] -three hundred : [u'pounds'] -we regained : [u'our'] -in sitting : [u'by'] -experience would : [u'tell'] -little bald : [u'in'] -smart little : [u'landau'] -a heart : [u'which'] -of better : [u'dressed'] -deduce the : [u'select'] -of excitement : [u','] -a roof : [u'over'] -wanted to : [u'know', u'do', u'see'] -an oak : [u'shutter'] -. Probably : [u'he'] -over him : [u'.', u','] -he paced : [u'up'] -despairing gesture : [u','] -I repeatedly : [u'told'] -picking up : [u'a'] -this single : [u'sheet'] -should return : [u'.'] -a strongly : [u'marked'] -east," : [u'said'] -, might : [u'be', u'come'] -Might not : [u'the'] -very absurd : [u'!'] -Doyle*** : [u'END'] -up the : [u'lane', u'side', u'steps', u'shutters', u'street', u'lantern', u'morning', u'dead', u'case', u'envelope', u'paper', u'mystery', u'outer', u'small', u'stair', u'stone', u'blue', u'steel', u'windows', u'epistle', u'garments', u'path', u'trains'] -greatest consternation : [u'by'] -set your : [u'mind', u'foot'] -make by : [u'the'] -Bohemian paper : [u'and'] -been hurt : [u'.'] -legible upon : [u'the'] -the hotel : [u',', u'waiter', u'where', u'.'] -We will : [u'be', u'talk'] -brought to : [u'bear'] -facility of : [u'repartee'] -. " Many : [u'men'] -a number : [u'of'] -perhaps we : [u'might'] -driven down : [u'to'] -he says : [u':'] -But as : [u'I'] -But at : [u'any'] -look of : [u'peering', u'infinite', u'incredulity', u'grief', u'it'] -the Alpha : [u'Inn', u'."', u'were', u','] -with much : [u'less'] -had stopped : [u'at'] -look on : [u'these', u'his'] -said then : [u','] -open, : [u'and', u'that', u'a', u'I', u'but', u'throwing', u'the'] -my shoes : [u','] -goose may : [u'not'] -You then : [u'--"', u'roused'] -a Christmas : [u'present'] -not want : [u'any'] -energetic inquiries : [u'are'] -fortunes. : [u'You'] -infirmity of : [u'speech'] -fortunes, : [u'seems', u'then'] -a pitch : [u'of'] -was never : [u'so', u'to', u'any', u'able', u'weary', u'happy'] -was face : [u'to'] -folded up : [u'the'] -controlled when : [u'she'] -is wrong : [u'we', u'with'] -plentiful with : [u'me'] -of character : [u'.', u','] -in Jackson : [u"'"] -six figures : [u','] -a baleful : [u'light'] -the fluffy : [u'brown'] -, being : [u'himself', u'a', u'rather', u'somewhat', u'less'] -ten minutes : [u'.', u'to', u'was', u'before', u'I', u'or', u','] -there the : [u'body'] -Frank here : [u'again', u'and', u'had'] -yes," : [u'he'] -I do : [u'not', u'unless', u'?"', u'so', u'."', u'for', u'!', u'!"', u','] -drawn back : [u'by'] -well," : [u'said', u'continued'] -to jump : [u'until'] -living. : [u'I', u'They'] -well,' : [u'said'] -came running : [u'as', u'up'] -been seriously : [u'wronged'] -careless servant : [u'girl'] -nerve and : [u'he'] -but whether : [u'north'] -His whole : [u'face', u'life'] -only chance : [u'young', u",'"] -who desires : [u'to'] -worn all : [u'the'] -, Ezekiah : [u'Hopkins'] -heard uncle : [u"'"] -implicit reliance : [u'upon'] -your judgment : [u'and'] -round a : [u'small'] -mean that : [u'she', u'it', u'he', u'any'] -tapping at : [u'the'] -attempts of : [u'the'] -test tube : [u'at'] -Encyclopaedia Britannica : [u'."', u".'"] -matter with : [u'me', u'him'] -young womanhood : [u'had'] -"' At : [u'least'] -wife is : [u'very', u'fond', u'a'] -"' As : [u'governess'] -Venner& : [u'Matheson'] -"' Ah : [u',', u"!'"] -This ground : [u'in'] -my household : [u','] -not laid : [u'on'] -not itself : [u'within'] -no question : [u'as', u'that'] -resistless, : [u'inexorable'] -to settle : [u'with', u'down'] -he assumed : [u'.'] -young men : [u'who'] -consideration at : [u'his'] -high autumnal : [u'winds'] -By all : [u'means'] -she stood : [u'at'] -brows and : [u'an'] -was either : [u'a'] -assures me : [u'that'] -be silent : [u'and', u',', u'!', u"!'"] -one thing : [u',', u',"', u'to', u'in'] -all Europe : [u'and'] -; " pull : [u'yourself'] -who leads : [u'a'] -the action : [u'to', u'and'] -Coming on : [u'the'] -to move : [u'into', u'me', u','] -embarrassed by : [u'the'] -' Letters : [u','] -What else : [u'could', u'can'] -Holder,' : [u'said'] -consented to : [u'take'] -of linen : [u'.'] -professional skill : [u'and'] -a boat : [u'was'] -will find : [u'me', u'the', u',"', u'parallel', u'little', u'it', u'that', u'an'] -my servant : [u'will'] -did at : [u'first', u'last'] -as plainly : [u'furnished'] -the advertised : [u'description'] -before and : [u'after'] -the machinery : [u'which'] -that den : [u'my', u'.'] -right through : [u'the'] -without heart : [u'or'] -examine the : [u'third', u'machine'] -gave the : [u'appearance', u'alarm', u'impression', u'maid', u'name'] -father I : [u'looked'] -all these : [u'reasons', u'isolated', u'varied', u'luxuries', u'vague'] -Merryweather, : [u'who', u'the', u'but', u'we', u'striking'] -the blue : [u'smoke', u'carbuncle', u'dress'] -stone was : [u'lying'] -"' This : [u'is'] -detective; : [u'and'] -was remarkably : [u'animated'] -hinges. : [u'I'] -hinges, : [u'but'] -sleeping, : [u'and'] -gossips away : [u'from'] -comparatively small : [u'one'] -was remarkable : [u','] -the result : [u'that', u'is', u'of', u'when'] -house at : [u'Hatherley', u'the', u'Stoke', u'Lancaster', u'Streatham'] -house as : [u'in'] -detective. : ['PP'] -little income : [u',"', u','] -tying up : [u'of'] -was intellectual : [u'?"'] -knew your : [u'energetic'] -arise directly : [u'or'] -his hunting : [u'crop'] -conducted us : [u'down'] -shot the : [u'slide'] -being in : [u'the', u'favour'] -with just : [u'a'] -close fitting : [u'cloth'] -now a : [u'word'] -secret the : [u'more'] -manner. " : [u'I'] -that, : [u'Mr', u'especially', u'for', u'as', u'whatever', u'though', u'but', u'and', u'we', u'however', u'in', u'therefore', u'homely', u'with', u'living', u'Watson', u'save', u'from', u'even', u'besides'] -hasp, : [u'put'] -that. : [u'It', u'When', u'But', u'The', 'PP', u'I', u'God', u'And', u'Perhaps', u'My', u'All', u'Then', u'About'] -so absolutely : [u'concentrated'] -closely into : [u'details'] -that' : [u's', u'For'] -want must : [u'be'] -that! : [u'I'] -laying her : [u'hand'] -peasant had : [u'met'] -another loafer : [u','] -in London : [u'quite', u'for', u',', u'.', u'and', u".'", u'which', u'do'] -federal laws : [u'and'] -man himself : [u'.', u'at'] -they not : [u'fresh'] -and passed : [u'his', u'her'] -secured at : [u'the'] -began talking : [u','] -answered. : ['PP', u"'"] -that rate : [u'.'] -answered, : [u'lighting', u'ringing', u'yawning', u'glancing', u'laughing', u'smiling', u'turning'] -superscribed to : [u'"'] -were from : [u'a'] -the ceiling : [u'.', u','] -reach the : [u'ventilator', u'door'] -to 226 : [u'Gordon'] -at first : [u'that', u'sight', u',"', u'been', u';', u'inclined', u','] -over me : [u'.', u'and'] -All was : [u'going', u'as'] -met you : [u'succeeded'] -manner of : [u'my', u'a'] -The distinction : [u'is'] -got mixed : [u','] -have arrived : [u'almost'] -fixed vacantly : [u'upon'] -at this : [u',', u'time', u'moment', u'hour', u'lady', u'!"', u'sudden', u'to'] -been already : [u'referred'] -lay upon : [u'the', u'a', u'our'] -him free : [u'.'] -the fate : [u'of'] -and remember : [u'the'] -where a : [u'lawn', u'room', u'few', u'corner'] -he naturally : [u'did'] -beaten against : [u'the'] -my partner : [u'and', u'I', u'with'] -believe," : [u'said'] -the buildings : [u'.'] -to use : [u'it', u'my', u',', u'slang', u'your'] -may both : [u'think'] -for wear : [u',', u'.'] -never very : [u'much', u'absorbing'] -given. : [u'It'] -given, : [u'and'] -It appeared : [u'in', u'to'] -no other : [u'woman', u",'", u'traces', u'exit'] -rain had : [u'beaten'] -unknown. : [u'I'] -should retain : [u'her'] -where I : [u'was', u'lay', u'would', u'liked', u'received', u'could', u'hope', u'might', u'had', u'believe'] -the tinted : [u'spectacles'] -client, : [u'his', u'flushing', u'but', u'then', u'rising'] -client. : ['PP', u'It', u'Do', u'Lucy', u'He'] -been well : [u'with'] -refer them : [u'to'] -and now : [u'to', u'I'] -the exact : [u'spot', u'purpose'] -s never : [u'very'] -and not : [u'to', u'me', u'another', u'a', u'very', u'Neville', u'sink', u'one', u'in', u'too'] -cheetah and : [u'a'] -, inexorable : [u'evil'] -Again I : [u'changed'] -the list : [u'of'] -an active : [u'member'] -crowns by : [u'the'] -first day : [u'that'] -brown dustcoat : [u'and'] -cry of : [u'fire', u'"', u"'", u'satisfaction', u'surprise', u'astonishment', u'hope', u'dismay', u'a'] -our friendship : [u','] -you raise : [u'your', u'up'] -Now my : [u'theory'] -Again a : [u'startled'] -the plantation : [u".'", u'at', u'.'] -the Sign : [u'of'] -paid Whitney : [u"'"] -morrow afternoon : [u'at'] -the walls : [u'were', u','] -his anger : [u'.', u'by'] -hand just : [u'now'] -so closely : [u'allied', u'you'] -remarks, : [u'very'] -Logic is : [u'rare'] -and driving : [u'from'] -no cause : [u'to'] -but neither : [u'of'] -daughter can : [u'claim'] -puffing at : [u'his'] -may seem : [u'to'] -my room : [u'as', u'to', u'here', u'above', u'.', u'."', u'swung', u',', u'and'] -Saxe Meningen : [u','] -follow your : [u'Majesty'] -to defray : [u'whatever'] -pit. : ['PP'] -destroyed it : [u'!'] -and raised : [u'his'] -Gross& : [u'Hankey'] -the ventilator : [u'is', u',', u'and', u'."', u'when', u'.'] -it brought : [u'him'] -Clair walked : [u'slowly'] -within an : [u'hour'] -their fists : [u'and'] -but her : [u'hair', u'eyes'] -several robberies : [u'brought'] -trouble which : [u'is'] -families to : [u'whom'] -complimentary of : [u'you'] -our vegetables : [u'round'] -horse was : [u'fresh'] -If the : [u'former', u'latter', u'lady', u'young', u'police', u'second'] -moment there : [u'was'] -Square furniture : [u'van'] -which represent : [u'at', u'the'] -a blunt : [u'weapon', u'pen'] -may need : [u'to'] -pale, : [u'haggard', u'sad', u'with'] -pale looking : [u'.'] -whole garden : [u'has'] -The cab : [u'and'] -little fellow : [u'with'] -A hundred : [u'and'] -pale; : [u'but'] -the mind : [u'of'] -short greeting : [u'he'] -soothing answers : [u'and'] -leader of : [u'the'] -other similar : [u'cases'] -they went : [u','] -three rooms : [u'open'] -mountains, : [u'so'] -initials were : [u','] -; one : [u'of'] -a charge : [u'is', u'of'] -( any : [u'work'] -either his : [u'gun'] -have believed : [u'it'] -enough now : [u','] -that end : [u'wall'] -whole time : [u'.'] -donation methods : [u'and'] -into just : [u'at'] -kind as : [u'to'] -important, : [u'you', u'to', u'all'] -important. : [u'When', u'Can', u'I', 'PP', u'And'] -of his : [u'own', u'doings', u'summons', u'clearing', u'activity', u'drug', u'top', u'double', u'face', u'note', u'client', u'failing', u'repeated', u'harness', u'princess', u'hand', u'greatcoat', u'voice', u'flaming', u'chair', u'trousers', u'nature', u'profession', u'lantern', u'accomplice', u'words', u'passion', u'which', u'armchair', u'wife', u'assurance', u'speed', u'seeing', u'belief', u'son', u'had', u'father', u'trap', u'conversation', u'keen', u'dress', u'kindness', u'death', u'actions', u'murderer', u'stride', u'right', u'nostrils', u'civilisation', u'overpowering', u'time', u'soul', u'way', u'supposed', u',', u'absence', u'room', u'library', u'long', u'fate', u'dreams', u'neighbour', u'existence', u'thoughts', u'coat', u'upper', u'hair', u'beggary', u'hands', u'fortunes', u'nose', u'name', u'extended', u'shoulders', u'pocket', u'stall', u'art', u'quick', u'step', u'safe', u'cheeks', u'family', u'suspicious', u'little', u'case', u'wardrobe', u'frock', u'dressing', u'reason', u'friend', u'manner', u'presence', u'person', u'head', u'return', u'uneasiness', u'opponent', u'cast', u'new', u'small', u'should', u'mouth', u'neck', u'devoted', u'problems'] -amiable. : [u'They'] -forbid you : [u'.'] -the peace : [u'which'] -of him : [u'.', u'in', u'before', u'at', u'than', u',', u'."', u'and', u'there', u'he', u'. "', u'whether', u'would', u'from'] -considerable confidence : [u'in'] -frogged jacket : [u'. "'] -or anger : [u'would'] -was secure : [u'a'] -Road," : [u'whispered'] -town a : [u'good'] -room rather : [u'than'] -direct. : ['PP'] -its coming : [u'to'] -sounded, : [u'and'] -for satisfaction : [u'than'] -too good : [u'to', u'and', u'.'] -amiable and : [u'simple'] -extremely," : [u'said'] -Chubb lock : [u'to'] -horrible scar : [u','] -yourself I : [u'have'] -advise you : [u'."', u'as'] -financial support : [u'to'] -to see : [u'Holmes', u'me', u'how', u'which', u'my', u'such', u'that', u'."', u'.', u'what', u'the', u'Sherlock', u'you', u'each', u'James', u'him', u'more', u'her', u'it', u'an', u'a', u'anyone', u'over', u'whether', u'dimly', u'solved', u'something', u'exactly', u'someone', u'if', u',', u'his', u'all'] -principally for : [u'the'] -quite easy : [u'in'] -north," : [u'said'] -comfortable looking : [u'building', u'man'] -abrupt method : [u'of'] -morning letters : [u','] -to set : [u'it', u'any', u'him'] -deal of : [u'him', u'German', u'brandy', u'supplementing'] -the unusual : [u','] -clinked upon : [u'the'] -30 days : [u'of'] -a piteous : [u'spectacle'] -certainly plausible : [u'."'] -even though : [u'I'] -most fleeting : [u'glance'] -daylight I : [u'slipped'] -thought of : [u'it', u'the', u'her', u'death', u'!"', u'making', u'nothing', u'my', u'looking', u'you', u'seeing'] -burglar could : [u'have'] -state visit : [u'http'] -my character : [u'.'] -Last week : [u'he'] -me palpitating : [u'with'] -headed League : [u'III', u'.', u'."'] -! Smack : [u'!'] -move her : [u'bed'] -A conversation : [u'ensued'] -the tradespeople : [u','] -and lethargy : [u'which'] -stood a : [u'large', u'dark'] -same class : [u'of'] -law now : [u','] -my ulster : [u'.', u'ready'] -bland, : [u'insinuating'] -use slang : [u'of'] -tangled beard : [u','] -bit his : [u'lip'] -do you : [u'know', u'imagine', u'deduce', u'make', u'call', u'think', u'conceal', u'say', u'good', u'mean', u'read', u'intend', u'go', u'want', u'not', u'?"', u'give', u'ask', u'foresee'] -down her : [u'throat'] -book, : [u'and', u'octavo', u'which'] -book. : [u'It', 'PP'] -hands groping : [u'for'] -still open : [u'when'] -not seen : [u'her', u'you', u'a'] -comfortable sofa : [u'.'] -talk for : [u'a'] -against. : ['PP'] -of Hosmer : [u'again'] -imagine that : [u'it', u'I', u'this', u'you', u'her'] -order to : [u'remove', u'master', u'see', u'give', u'avoid', u'put', u'help', u'prevent', u'get'] -things. : [u'Perhaps', 'PP', u'There'] -things, : [u'so', u'and'] -foot or : [u'two'] -, disclaim : [u'all'] -trained as : [u'an'] -how curious : [u'I'] -foot of : [u'yours', u'the'] -are some : [u'thousands', u'on'] -most unlikely : [u'that'] -sudden indisposition : [u'and'] -governess. : [u'I', 'PP'] -foul tongue : [u'.'] -chance has : [u'made', u'placed'] -ready for : [u'me'] -week she : [u'must'] -your forgiveness : [u'for'] -head and : [u'looking', u'face', u'shrugged', u'puffed', u'declared', u'rocked'] -The one : [u'unpleasant'] -learn the : [u'business'] -his elbows : [u'upon'] -analytical reasoner : [u'.'] -, ate : [u'a'] -outside of : [u'the', u'it'] -interest. : ['PP', u'They', u'It', u'The', u'Lestrade'] -interest, : [u'which', u'of', u'after'] -two. : ['PP', u'By', u'To'] -instant,' : [u'said'] -two, : [u'might', u'a'] -but this : [u'has', u'fault', u'horrible', u'really', u'fellow'] -clock at : [u'night'] -a vague : [u'impression', u'figure'] -my museum : [u'."'] -discovered stored : [u'in'] -persevering man : [u','] -top. : [u'As'] -gold Albert : [u'chain'] -crowd I : [u'made'] -Ballarat with : [u'a'] -rueful face : [u'behind'] -compelled our : [u'respect'] -you ask : [u'me', u'a', u"?'"] -mine that : [u'the', u'when', u'I'] -once as : [u'a'] -a care : [u'in'] -London when : [u'he'] -have devised : [u'seven'] -greeting his : [u'visitor'] -the sweet : [u'promise'] -such business : [u'in'] -pretends to : [u'a'] -gentleman half : [u'rose'] -write a : [u'little'] -articles. : [u'When'] -a poor : [u'man'] -articles, : [u'with'] -manner told : [u'their'] -firm does : [u'so'] -blew out : [u'into'] -who insists : [u'upon'] -leaving home : [u'but'] -a conclusion : [u'."'] -t it : [u'?"', u"'", u'ring'] -fall a : [u'victim'] -pocket stuffed : [u'with'] -at some : [u'time', u'small', u'pains', u'future', u'more'] -reaches Savannah : [u'the'] -And then : [u'suddenly', u'I', u'the', u','] -not joking : [u',"'] -of cases : [u'of'] -will recollect : [u','] -to personate : [u'someone'] -farms which : [u'he'] -vessel which : [u'brought', u'touched'] -one way : [u'out', u'for'] -me lay : [u'upon'] -This and : [u'all'] -other immediate : [u'access'] -freely distributed : [u'in'] -a wager : [u'.'] -then been : [u'a'] -may draw : [u'."'] -driving rapidly : [u'in'] -us glance : [u'at'] -." Having : [u'left'] -s affection : [u'."'] -possibility. : [u'But'] -we took : [u'.', u',', u'our'] -after following : [u'Holmes'] -been overjoyed : [u'to'] -coronet had : [u'been'] -THE RED : [u'HEADED'] -only are : [u'the'] -same porter : [u'was'] -bedded room : [u'had'] -evidently a : [u'woman'] -until close : [u'upon'] -unopened newspaper : [u'from'] -sure if : [u'I'] -the Carolinas : [u','] -other thirty : [u'six'] -Some letters : [u'get'] -once called : [u'Maudsley'] -denied strenuously : [u'having'] -immediate access : [u'to'] -coins were : [u'to'] -his talk : [u'all'] -his tall : [u','] -own circle : [u'to'] -a companion : [u',', u". '"] -His rusty : [u'black'] -you? : [u'That', u'How', u'I'] -LIMITED TO : [u'WARRANTIES'] -has anything : [u'which'] -edged weapon : [u'now'] -kind enough : [u'to'] -the ladder : [u'was'] -was damp : [u','] -eyes sparkled : [u','] -those boxes : [u','] -." And : [u'off', u'Holmes', u'yet', u'thus'] -parts. : ['PP'] -on her : [u'way'] -greyish colour : [u','] -realising the : [u'full', u'exposure', u'dreadful'] -steaming horses : [u'were'] -thing was : [u'!'] -face before : [u'I'] -my statement : [u','] -of high : [u'gaiters'] -" Sometimes : [u'I'] -my client : [u',', u'is', u'was', u'.'] -standing and : [u'looking'] -a trusty : [u'comrade'] -very obstinate : [u'man'] -our hotel : [u','] -The postmark : [u'is'] -steps to : [u'the'] -every man : [u'who', u'I', u"'", u';'] -Whoa, : [u'there'] -found Holmes : [u'in'] -for cruelty : [u"'"] -that railway : [u'cases'] -our doors : [u'were'] -, flicking : [u'the'] -low voice : [u'whispered', u','] -the forefinger : [u','] -You bring : [u'Mrs'] -stood firm : [u'.'] -visit http : [u'://'] -restraint. : [u'Disregarding'] -, far : [u'away'] -tramped into : [u'the'] -cheetah is : [u'just'] -I found : [u'her', u'myself', u'my', u'how', u'it', u'Holmes', u'Sherlock', u'the', u'him', u'this', u'that', u'to', u',', u'waiting'] -of works : [u'on'] -the subject : [u'.', u'in', u'."'] -and seven : [u'hundred', u'sheets'] -else which : [u'she'] -fangs had : [u'done'] -and among : [u'them'] -but sooner : [u'or'] -bell until : [u'the'] -conditions if : [u'you'] -hesitated for : [u'an'] -Come along : [u'!"'] -deduce from : [u'it', u'that'] -added opium : [u'smoking'] -other within : [u'the'] -, again : [u',', u'I'] -England without : [u'being'] -can understand : [u',"', u'that', u','] -tap. : ['PP'] -no harm : [u'done', u'."', u'and'] -bade us : [u'both'] -know all : [u'that', u'about'] -He put : [u'his', u'less', u'out', u'a'] -With him : [u'we'] -once; : [u'but'] -heads to : [u'search'] -but more : [u'valuable'] -Hart, : [u'the'] -once, : [u'for', u'but', u'and', u'some', u'sacrifice', u'was'] -once. : [u'There', u'My', 'PP', u'You', u'F', u'Now', u'I', u'When', u'It'] -draws my : [u'interest'] -sensational literature : [u'and'] -Ryder," : [u'said'] -to meddle : [u'with'] -some brandy : [u'into'] -which branches : [u'out'] -little startled : [u'at'] -Moran. : [u'The', 'PP', u'It'] -something depressing : [u'and'] -Moran, : [u'who', u'and', u'on'] -slight shrug : [u'of'] -. Consider : [u'what'] -our troubles : [u'were'] -may hang : [u'from'] -his frock : [u'coat'] -unfeigned admiration : [u'. "'] -by their : [u'violence', u'beauty'] -LIMITED WARRANTY : [u','] -' room : [u'.'] -everyone finds : [u'his'] -of iodoform : [u','] -looking back : [u'into'] -band,' : [u'which'] -martyrdom to : [u'atone'] -soul of : [u'delicacy', u'steel'] -He learned : [u'to'] -something unnatural : [u'about'] -find her : [u'eyes'] -dates. : [u'A'] -so plentiful : [u'with'] -fellow countryman : [u'.'] -husband was : [u'a', u'?'] -been more : [u'nearly', u'than'] -voice which : [u'I'] -and sleeves : [u'.'] -us follow : [u'it'] -bad fellow : [u','] -important highway : [u','] -with most : [u'Project'] -half dragged : [u'up'] -the deception : [u'could'] -Here. : ['PP'] -branded thief : [u','] -Here, : [u'signed'] -white letters : [u','] -with odd : [u'boots'] -quicker at : [u'climbing'] -trace of : [u'them'] -thought had : [u'hardly'] -natural effect : [u'of'] -certain ball : [u'.'] -At my : [u'cry'] -poured in : [u'upon'] -then vanished : [u'from'] -simple cases : [u'which'] -? Every : [u'clue'] -really no : [u'tie'] -is easy : [u'for', u'to'] -took advantage : [u'now'] -glancing his : [u'eye'] -is The : [u'Morning', u'Cedars'] -their travellers : [u'.'] -say before : [u'this'] -Disregarding my : [u'presence'] -descent, : [u'and'] -radiance. : [u'Ryder'] -grey shepherd : [u"'"] -and prevent : [u'her'] -rusty key : [u','] -alluded are : [u'there'] -an orphanage : [u'in'] -my belief : [u',', u'that'] -satisfaction. " : [u'This'] -we looked : [u'at'] -to hesitate : [u",'"] -my love : [u'of'] -since as : [u'my'] -in doubt : [u'or'] -hour that : [u'he'] -down between : [u'the'] -experience this : [u'lonely'] -merry over : [u'the', u'them'] -experienced. : [u'The'] -reporter on : [u'an'] -never--" : [u'said'] -named 1661 : [u'8'] -obliged. : ['PP'] -upon those : [u'whom'] -knees of : [u'his'] -!" It : [u'was'] -a touch : [u'of'] -grizzled brown : [u'.'] -had driven : [u'him', u'over', u'several'] -the leaves : [u'and', u'of'] -been hereditary : [u'in'] -felt the : [u'stone', u'draught', u'room'] -s lap : [u','] -of" : [u'Fire', u'Cooee'] -coarsely clad : [u'as'] -of! : [u'See'] -of smoke : [u'curled', u'which'] -of' : [u'wilful', u'Cooee', u'suicide', u'84', u'85', u'death', u'89', u'Colonel'] -we never : [u'know'] -ring. : [u'His', 'PP'] -of. : [u'She', 'PP', u'I'] -cases we : [u'have'] -of, : [u'sir', u'and', u'then'] -and writhed : [u'his'] -remembered in : [u'the'] -sir? : [u'A', u'I'] -I assured : [u'him'] -faced round : [u'to', u','] -carriage building : [u'depot'] -by two : [u'persons'] -and taken : [u'to'] -is fond : [u'of'] -portion was : [u'in'] -golden pince : [u'nez'] -and heavy : [u'step', u'with'] -upon such : [u'a'] -a myth : [u'.'] -corridor lamp : [u'I'] -talent in : [u'planning'] -a stricken : [u'look'] -re hunting : [u'in'] -here"-- : [u'I'] -remarked upon : [u'at'] -In each : [u'case'] -the darker : [u'against'] -of yours : [u'who', u',', u'with', u'I', u'.'] -considering the : [u'formidable'] -travelled by : [u'the'] -her eagerness : [u','] -lookout for : [u'any'] -near Briony : [u'Lodge'] -none knew : [u'better'] -are tax : [u'deductible'] -was now : [u'preparing', u'sleeping', u'to', u'made', u'pinched'] -was not : [u'that', u'effusive', u'in', u'a', u'merely', u'broken', u'on', u'to', u'sure', u'quite', u'very', u'the', u'until', u'unnatural', u'surprised', u'aware', u'and', u'familiar', u'much', u'one', u'of', u'itself', u'yet', u'Arthur', u'."', u'mistaken', u'you', u'alone', u'offended', u'mere', u'there'] -returned. : [u'The', u'He', u'Those'] -returned, : [u'and', u'evidently', u'feeling'] -you rather : [u'that'] -the male : [u'relatives'] -what for : [u'?"'] -the billet : [u'was'] -enemy' : [u's'] -cried. ' : [u'You', u'Here', u'This', u'Your'] -receipt of : [u'the'] -I promise : [u',"', u'you', u'to', u".'"] -cried. " : [u'Certainly', u'What', u'And', u'Who', u'Someone'] -is the : [u'very', u'German', u'writing', u'daintiest', u'name', u'address', u'first', u'less', u'most', u'chairman', u'Dundas', u'motive', u'slip', u'idea', u'girl', u'daughter', u'brightest', u'young', u'glass', u'more', u'butt', u'true', u'object', u'envelope', u'only', u'account', u'vilest', u'man', u'clue', u'foresight', u'precious', u'reward', u'sequence', u'stone', u'making', u'season', u'last', u'worst', u'village', u'Crown', u'baboon', u'gravel', u'one', u'right', u'note', u'purest', u'lot', u'truth', u'good', u'green', u'corner', u'person', u'letter', u'meaning', u'five', u'tower', u'disposition', u'originator'] -huge error : [u'which'] -wear such : [u'a'] -death from : [u'McCarthy', u'accidental'] -we shall : [u'soon', u'have', u'be', u'take', u'reach', u'see', u'leave', u'ever', u'not', u'just', u'both', u'order', u'call', u'now', u'walk', u'investigate', u'go', u'find', u'no'] -word has : [u'ever'] -are accepted : [u'in'] -states who : [u'approach'] -Your recent : [u'services'] -in writing : [u'(', u'from', u'without'] -excited, : [u'without'] -gained property : [u'under'] -one by : [u'one'] -dreadful earnest : [u'and'] -so necessitate : [u'very'] -clock, : [u'to', u'but', u'which', u'I', u'after', u'for', u'my'] -already,' : [u'said'] -well as : [u'we', u'for', u'possible', u'a', u'mine', u'in', u'I'] -order that : [u'you', u'he'] -came out : [u'before', u'into', u'save', u'of', u',', u'to'] -Police Constable : [u'Cook'] -its views : [u'.'] -and locked : [u'the', u',', u'it'] -the page : [u'we', u'indicated', u'.', u','] -house even : [u'had'] -chair from : [u'which'] -we' : [u've', u'll'] -garments. : [u'He'] -garments, : [u'and', u'thrust'] -, " but : [u'now', u'if', u'beyond', u'I', u'it', u'you', u'the'] -shortly to : [u'my'] -altogether. : [u'I'] -trees and : [u'the', u'wayside'] -his accuser : [u'.'] -case as : [u'they', u'this', u'the', u'I'] -case at : [u'one'] -' thin : [u','] -sister and : [u'I'] -the sound : [u',"', u'of', u'produced', u'as'] -dear fellow : [u',"', u',', u'wanted'] -induce her : [u'to'] -by trying : [u'begging'] -. zip : [u'*****'] -arrested the : [u'same'] -find a : [u'friend', u'clue', u'ventilator', u'doctor', u'letter', u'trout'] -feeling. : [u'At'] -all curiosity : [u','] -be ungrateful : [u'if'] -grass twenty : [u'paces'] -a shapeless : [u'pulp'] -hurriedly ransacked : [u'them'] -forward something : [u'lay'] -was flattered : [u'by'] -and rage : [u". '"] -manner was : [u'not', u'brisk', u"--'"] -save only : [u'one', u'his'] -shattered by : [u'a', u'his'] -it seems : [u',', u'to', u'exceedingly', u'rather'] -there through : [u'the'] -In only : [u'one'] -among bad : [u'companions'] -the saddest : [u'look'] -she been : [u'saying'] -our small : [u'staff'] -strange to : [u'him'] -within his : [u'reach'] -looked again : [u'there'] -s madness : [u'.'] -out again : [u'.'] -one next : [u'to'] -her uncle : [u'and'] -deed followed : [u'the'] -to detain : [u'you'] -my watch : [u'chain', u'.'] -notice indicating : [u'that'] -so inadequate : [u'a'] -within him : [u'.'] -your compliance : [u'."'] -cigar shaped : [u'roll'] -which gave : [u'him', u'me'] -here we : [u'are', u'may'] -in one : [u'of', u'direction', u'long', u'hand', u'house', u'limb', u'corner', u'or', u'easy', u'night', u'by'] -have passed : [u'since'] -cabman to : [u'wait', u'your'] -half rose : [u'from'] -synonymous with : [u'the'] -sort since : [u'that'] -the financier : [u'.'] -cry for : [u'help'] -Cook, : [u'of'] -was he : [u',', u'feared', u'that', u'doing', u'who'] -painful episodes : [u'which'] -have concealed : [u'the'] -and slow : [u'.'] -in soft : [u','] -place? : [u'And', u'I', u'There'] -start in : [u'business'] -man about : [u'town'] -How are : [u'you'] -be millions : [u'of'] -place. : [u'A', u'That', 'PP', u'The', u'They'] -story teller : [u'.'] -Duke say : [u',"'] -old Turner : [u'. "'] -turning to : [u'the', u'me'] -." II : [u'.'] -more a : [u'feeling'] -fill me : [u'with'] -letter. : ['PP', u'The', u'We', u'But', u'Ha'] -letter, : [u'and'] -." IX : [u'.'] -the prize : [u','] -weary eyes : [u',', u'made'] -and huge : [u'projecting'] -Hyde Park : [u'in'] -." In : [u'town'] -you hear : [u'him'] -When Mrs : [u'.'] -set eyes : [u'on', u'upon'] -to arduous : [u'work'] -." It : [u'was', u'had'] -he speaks : [u'of'] -THE BERYL : [u'CORONET'] -immense capacity : [u'for'] -trap in : [u'the'] -is evident : [u','] -accessory to : [u'the'] -London in : [u'order'] -either in : [u'word'] -the air : [u'of', u'when', u'. "', u'.', u'in', u'was', u'like', u','] -now fallen : [u'upon'] -have spared : [u'you'] -the aid : [u'of'] -light blue : [u'sky'] -the 9th : [u'inst'] -prices. : [u'Eight'] -she may : [u'find', u'have'] -do your : [u'work'] -garden. : [u'I', u'There', u'Perhaps'] -weight it : [u'may'] -water some : [u'fifty'] -grief than : [u'the'] -useful, : [u'so'] -or Russian : [u'could'] -when taken : [u'with'] -, hereditary : [u'kings'] -grief that : [u'he'] -feather over : [u'the'] -precise but : [u'admirably'] -sinister German : [u','] -. Holder : [u",'", u',', u'and', u'.', u',"', u'?', u'. "'] -Metropolitan Station : [u'no'] -Both he : [u'and'] -the Dundee : [u'records'] -absolutely ignorant : [u'that'] -an observer : [u'contain'] -a hurry : [u'?"', u'."', u'and'] -the rate : [u'that'] -walked into : [u'the'] -recommended to : [u'you', u'me'] -At any : [u'rate'] -Do not : [u'join', u'think', u'lose', u'trouble', u'go', u'dream', u'worry', u'unlink', u'copy', u'charge'] -some comment : [u','] -Already I : [u'was'] -have decoyed : [u'him'] -extraordinary one : [u','] -detail. : [u'I'] -was really : [u'an', u'dead'] -overcome my : [u'pride'] -inward twist : [u'is'] -Imperial Opera : [u'of'] -in Nova : [u'Scotia'] -the fourteen : [u'other'] -gave it : [u'a', u'up', u'over'] -was working : [u'a'] -from Baker : [u'Street'] -Only that : [u"?'"] -hurried round : [u'to'] -his newly : [u'gained'] -matter now : [u','] -should send : [u'him'] -the sleepers : [u'from'] -perhaps even : [u'to'] -advertising my : [u'virtues'] -beeches immediately : [u'in'] -dint of : [u'a'] -, built : [u'firmly'] -been undoubtedly : [u'alone'] -fund was : [u','] -the hope : [u'of', u'that'] -his lad : [u'should'] -springing down : [u','] -bottles and : [u'test'] -should run : [u'for'] -advance was : [u'a'] -his lap : [u',', u'lay'] -missing lady : [u'.'] -to Paddington : [u'Station', u','] -advertisement about : [u'it'] -" Owe : [u'!"'] -The ceremony : [u','] -Berkshire. : [u'It'] -gold chasing : [u'is'] -well indeed : [u'.', u'!"'] -nothing should : [u'stand'] -brought trouble : [u'upon'] -If your : [u'Majesty'] -Rucastles as : [u'I'] -The Lascar : [u'was'] -seven miles : [u'of', u'from', u','] -. Evidence : [u'of'] -ago to : [u'strengthen', u'the', u'be', u'Mr'] -immensely indebted : [u'to'] -people in : [u'the', u'their', u'all'] -is laid : [u','] -without prominently : [u'displaying'] -? Some : [u'friend'] -from you : [u',', u'?"', u'giving', u'should'] -square block : [u'of'] -for unrepaired : [u'breaches'] -expired. : [u'I'] -your snug : [u'chamber'] -The telegram : [u'which'] -return you : [u'must'] -are there : [u'?"', u'as'] -Then the : [u'fact', u'page', u'charge', u'matter'] -slapped it : [u'down'] -deposition it : [u'was'] -I shouted : [u','] -at himself : [u'in'] -value.' : [u'Heaven'] -it we : [u'heard', u'shall'] -was glad : [u',', u'that'] -forming an : [u'opinion'] -Simon glanced : [u'over'] -separate and : [u'was'] -overpowering impulse : [u','] -stood there : [u'.'] -elect to : [u'provide'] -march upstairs : [u','] -seized and : [u'searched'] -greater or : [u'less'] -questioning you : [u'."'] -reach it : [u'in'] -comrade is : [u'always'] -the excellent : [u'lining', u'bird'] -my powers : [u'to'] -glancing along : [u'the'] -machine, : [u'and', u'of'] -spark upon : [u'the'] -out by : [u'Holmes', u'the'] -, upper : [u'attendant'] -with laudanum : [u'in'] -with notes : [u'and'] -all impatience : [u'to'] -both into : [u'it'] -well see : [u'that'] -went under : [u','] -violence that : [u'she'] -Very murderous : [u'indeed'] -Grimesby Roylott : [u'which', u',', u',"', u"'", u'drive', u'clad'] -seven places : [u'.'] -ten now : [u'."'] -his expedition : [u'.'] -the reverse : [u'.'] -a national : [u'possession'] ---" let : [u'us'] -a wooden : [u'chair', u'leg'] -about four : [u'o'] -barred, : [u'was'] -from endeavouring : [u'to'] -answer her : [u','] -in contemplation : [u'.'] -, make : [u'her', u'notes'] -a round : [u'table'] -your co : [u'operation'] -turned all : [u'the'] -absolutely innocent : [u'man'] -the street : [u'. "', u'and', u'.', u',', u'."', u'was', u'with', u'but', u', "'] -to communicate : [u'with', u'.'] -from fifteen : [u'to'] -its contraction : [u',', u'had'] -ladies from : [u'boarding'] -, above : [u'all'] -am for : [u'west', u'north'] -of heart : [u','] -lock yourselves : [u'in'] -knows that : [u'the'] -You forget : [u'that'] -peeped up : [u'in'] -threshold the : [u'door'] -is writhing : [u'towards'] -to frighten : [u'a'] -human life : [u'as'] -ll checkmate : [u'them'] -for days : [u'on', u',', u'and'] -presumably, : [u'heiress'] -is locked : [u'up'] -Rucastle to : [u'be', u'find'] -corresponds to : [u'that'] -an appearance : [u'of'] -darker than : [u'coffee'] -wooden legged : [u'lover'] -thick blue : [u'cloud'] -swiftly to : [u'the'] -Surely your : [u'medical'] -which turned : [u'at'] -forearm. " : [u'We'] -" Peculiar : [u'that'] -for half : [u'wages', u'an'] -hurt by : [u'the'] -four before : [u'the'] -society. : [u'Most', 'PP'] -apparently see : [u'that'] -society, : [u'and'] -a correspondent : [u','] -an instant : [u',', u'the', u'among', u'entered', u'.', u'to', u'. "', u'his', u'."', u",'", u'I', u'all', u'of', u'in'] -third name : [u'.'] -inquiry showed : [u'it'] -, shutting : [u'his'] -society' : [u's'] -a twitter : [u'. "'] -. " The : [u'august', u'matter', u'cases', u'case', u'postmark', u'ideal', u'question', u'left', u'name'] -she loved : [u'you'] -captured ship : [u'.'] -the habits : [u','] -lay a : [u'whip'] -smudge of : [u'blood'] -pipe rack : [u'within'] -and cravat : [u','] -Trepoff murder : [u','] -neighbourhood in : [u'whom', u'which'] -conclusions as : [u'to'] -wedding in : [u'a'] -knew the : [u'firm', u'true'] -led down : [u'a'] -south, : [u'east', u'then', u'for'] -gentle slope : [u','] -a burden : [u'to'] -any old : [u'key'] -to indulge : [u'in'] -colonies, : [u'so'] -considerable amount : [u'of'] -as belonging : [u'to'] -may obtain : [u'a'] -and bustled : [u'off'] -the salesman : [u'.', u', "', u',', u'just'] -and companion : [u'.'] -sat for : [u'some', u'a'] -veil, : [u'entered', u'all', u'I'] -freely down : [u'his'] -business papers : [u'."'] -with at : [u'least'] -foul play : [u'in'] -' There : [u','] -indicate? : [u'I'] -Miss Turner : [u',', u',"', u'.', u'."'] -ate a : [u'hearty'] -face away : [u'from'] -Major Prendergast : [u'how', u'about'] -want," : [u'said'] -Holmes went : [u'to'] -heartily at : [u'the'] -late acquaintance : [u'are'] -brandy down : [u'her'] -. When : [u'I', u'you', u'a', u',', u'shall', u'about', u'Lee', u'he', u'these', u'an', u'it', u'my', u'the', u'she'] -can to : [u'make', u'serve'] -his civilisation : [u','] -a commanding : [u'figure'] -thereby hangs : [u'a'] -was so : [u'delicate', u'pleased', u'acute', u'dear', u'familiar', u'frightened', u'disturbed', u'thin', u'absolutely', u'remarkable', u'strong', u'pale', u'small', u'strange', u'ashamed', u'out', u'angry', u'.', u'terrified', u'quiet'] -see someone : [u','] -approached. : ['PP'] -tide waiter : [u'."'] -approached, : [u'the'] -the wife : [u'tried', u';', u"'"] -one with : [u'the'] -body stretched : [u'out'] -house after : [u'the'] -few months : [u'.'] -Oakshott, : [u'117', u'of', u'and'] -My last : [u'client'] -rashers and : [u'eggs'] -realise the : [u'importance'] -twenty sheets : [u'in'] -scandal and : [u'seriously'] -, sloping : [u'down'] -keep an : [u'eye'] -Your affection : [u'for'] -speaking to : [u'her'] -having to : [u'sally', u'go'] -keep at : [u'three'] -Frisco. : [u'Frank', u'Not'] -a step : [u'backward', u'in', u'forward', u'which', u'between'] -weather through : [u'which'] -Carlsbad. ' : [u'Remarkable'] -Twenty nine : [u','] -singular character : [u'the', u'.'] -were stained : [u'with'] -ulster, : [u'put'] -the Hotel : [u'Cosmopolitan'] -failed to : [u'recognise', u'take', u'catch'] -So Frank : [u'took'] -points in : [u'connection', u'it', u'the'] -extraordinary mystery : [u'!"'] -to Mary : [u'Jane', u'but'] -to recommence : [u'your'] -which no : [u'foresight'] -imagine in : [u'which'] -nonsense. : ['PP'] -and called : [u'for'] -deed had : [u'been'] -line before : [u'I'] -hydraulic engineers : [u'coming'] -kind,' : [u'said'] -this that : [u'I'] -see Miss : [u'Doran'] -day eight : [u'weeks'] -lady and : [u'to', u'gentleman'] -whipcord were : [u'enough'] -probably on : [u'the'] -I seized : [u'my'] -within 60 : [u'days'] -knows more : [u'about'] -explanations founded : [u'rather'] -have faced : [u','] -is Mortimer : [u"'"] -Twice he : [u'was', u'struck'] -paces across : [u'between'] -surprised you : [u'by'] -was compelled : [u'to'] -): I : [u'do'] -ringing note : [u','] -agree with : [u'you', u'me'] -, firm : [u'steps'] -old papers : [u','] -were among : [u'the'] -obvious course : [u'of'] -. Lucy : [u'Parr'] -may demand : [u'a'] -of September : [u','] -a curt : [u'announcement'] -hands wrung : [u'together'] -lad says : [u'is'] -the shoulder : [u'.', u','] -At least : [u",'", u',"', u'that'] -my Afghan : [u'campaign'] -both sat : [u'in'] -to relieve : [u'his'] -60 pounds : [u'."'] -1661 8 : [u'.'] -the General : [u'Terms'] -assure you : [u'that', u','] -, got : [u'into', u'her', u'a'] -Toller in : [u'the'] -so candid : [u'.'] -so they : [u'have'] -busy this : [u'afternoon'] -begged my : [u'father'] -the founder : [u'of'] -the plumber : [u','] -charred stump : [u'of'] -fleeting glance : [u'of'] -, sound : [u'at'] -sparkled, : [u'and'] -together they : [u'manage'] -can come : [u'to'] -quite tense : [u'over'] -her family : [u'.'] -, pushed : [u'her'] -with exceptional : [u'violence'] -"' Is : [u'4', u'purely', u'to'] -loose at : [u'night'] -addicted to : [u'opium'] -the small : [u"'", u',', u'landing', u'morocco', u'estate'] -And how : [u'did', u'could', u'far', u'have', u'?"', u'in'] -married," : [u'remarked'] -another formidable : [u'gate'] -upon four : [u'before'] -am forced : [u'to'] -Holmes shot : [u'the', u'one'] -our drive : [u','] -we know : [u'that', u'them', u'of'] -forty than : [u'thirty'] -to take : [u'the', u'a', u'.', u'comfort', u'2', u'place', u'this', u'great', u'charge', u'care', u'no'] -fade even : [u'for'] -who endeavoured : [u'to'] -though her : [u'manner', u'abrupt'] -sound came : [u'from'] -my power : [u'of', u'to', u'.'] -effect was : [u'increased'] -top with : [u'her'] -to close : [u'the'] -The fish : [u'that'] -on each : [u'side'] -would tell : [u'you'] -while you : [u'were', u'explain'] -or employee : [u'of'] -all about : [u'him', u'yourself', u'it', u'your', u'McCarthy', u'the'] -the loafing : [u'men'] -points which : [u'were'] -his outstanding : [u'bones'] -red and : [u'grey'] -I hadn : [u"'"] -Chinese coin : [u'hanging'] -painted my : [u'face'] -put a : [u'hand', u'stop'] -of laying : [u'out'] -several points : [u'on'] -, fourth : [u'left'] -fortunate in : [u'having', u'catching'] -half pay : [u'major'] -! I : [u'wish', u'am', u'already', u'thought', u'know', u'did', u'have', u'had', u'want', u'don', u'never', u"'", u'fancy', u'determined'] -a yawn : [u'. "'] -! A : [u'twitch'] -boards, : [u'while', u'which'] -. Rather : [u'than'] -walked behind : [u'him'] -trough, : [u'and'] -his wicked : [u'little'] -sat silent : [u'for', u','] -I slipped : [u'off', u'down', u'out', u'in'] -and pointed : [u'over'] -said something : [u'about'] -me see : [u'!"', u',"', u'it'] -often. : ['PP'] -in both : [u'his'] -and helpless : [u','] -only remaining : [u'point'] -ragged edge : [u'that'] -authority for : [u'what'] -you your : [u'check'] -vivid flame : [u'coloured'] -sent the : [u'pips', u'society', u'house'] -see whither : [u'that'] -madam,' : [u'said'] -which has : [u'prompted', u'been', u',', u'come', u'dried', u'deprived', u'disturbed', u'already', u'got', u'taken', u'occurred', u'saved', u'the'] -madam," : [u'said'] -knows a : [u'word'] -severe upon : [u'young'] -air when : [u'his'] -seen in : [u'my', u'the'] -paragraph 1 : [u'.'] -were occasionally : [u'allowed'] -which had : [u'been', u'formerly', u'seamed', u'given', u'caught', u'cost', u'come'] -He shook : [u'hands'] -the singular : [u'tragedy', u'story', u'mystery', u'adventures', u'case', u'experience'] -game leg : [u'.'] -cigarettes here : [u'which'] -no record : [u'of'] -suggested at : [u'once'] -, copying : [u',', u'or'] -works in : [u'your', u'the', u'compliance', u'creating', u'accordance', u'formats'] -subject. : [u'That', 'PP', u'We', u'Turn', u'You'] -astir, : [u'for'] -terrible fate : [u','] -knew for : [u'what'] -was farther : [u'from'] -not short : [u'of'] -preserver from : [u'the'] -and fluttered : [u'off'] -always well : [u'dressed'] -whether north : [u','] -Having taken : [u'the'] -so McCarthy : [u'became'] -peculiar words : [u'of'] -dad,' : [u'said'] -He would : [u'not', u'get', u'rather', u'seize', u'show', u'see', u'put'] -due at : [u'Winchester'] -looking even : [u'more'] -from hushing : [u'the'] -road was : [u'exchanged', u'undoubtedly'] -very deepest : [u'moment'] -my tale : [u'to'] -solemn Mr : [u'.'] -or twelve : [u','] -sworn it : [u'by'] -gear. : [u'If'] -of cobbler : [u"'"] -she seemed : [u'absurdly'] -fell down : [u',', u'senseless'] -unnecessary delay : [u'.'] -most inextricable : [u'mysteries'] -has made : [u'up', u'it'] -Known to : [u'have'] -and gloomy : [u'intervals'] -more convenient : [u'hour'] -run. : [u'I'] -when up : [u'the'] -down past : [u'the'] -it a : [u'character', u'pleasure', u'stricken', u'brisk', u'few', u'matter', u'dishonoured'] -. Section : [u'', u'3'] -richest man : [u'on'] -Morris or : [u'Mr'] -were one : [u'or'] -fell immediately : [u'.'] -lens. : [u'You'] -is good : [u'ground', u".'", u'too'] -empty. : ['PP', u'There'] -empty, : [u'and'] -knocked up : [u','] -got 4700 : [u'pounds'] -address you : [u'never'] -out right : [u'in'] -least she : [u'became'] -home there : [u'.'] -scream and : [u'threw'] -it I : [u'could', u'would', u'heard'] -signal I : [u'tossed'] -taken fresh : [u'heart'] -fogs of : [u'Baker'] -was fairly : [u'well'] -Alpha Inn : [u','] -been taken : [u'.', u'down', u'from', u'by'] -than 26s : [u'.'] -unique, : [u'and', u'violin'] -unique. : ['PP'] -" Not : [u'at', u'a', u'in', u'yet', u'him', u'invisible', u'only', u'the', u'particularly', u'social', u'I'] -more deeply : [u'into'] -" Now : [u',', u'a', u'for', u'then'] -the knees : [u'as'] -" Nor : [u'running', u'from'] -Such paper : [u'could'] -traveller. : [u'My'] -dies. : [u'Does'] -myself because : [u'I'] -after I : [u'became', u'had', u'found', u'was'] -! She : [u'is'] -donations. : [u'To'] -for medical : [u'aid'] -on what : [u'day'] -at 221B : [u','] -and note : [u'books'] -acknowledge that : [u'I'] -those who : [u'were', u'have', u'believe', u'ask'] -drifted into : [u'the'] -a bob : [u'of'] -these dear : [u'old'] -earn as : [u'much'] -tell him : [u'afterwards', u'?"', u'that', u'about'] -was favourably : [u'impressed'] -sitting by : [u'the'] -whole he : [u"'"] -a box : [u'of'] -after a : [u'time', u'few', u'long', u'careful', u'painful', u'pause'] -old elastic : [u'sided'] -little moist : [u'red'] -way altered : [u'."'] -tattered object : [u'in'] -Scarlet, : [u'I', u'to'] -fainted away : [u'at'] -right and : [u'found', u'left', u'to'] -to Fairbank : [u','] -storied brick : [u'houses'] -saying, ' : [u'There'] -guineas for : [u'a'] -its silence : [u'broken'] -, insinuating : [u'manner'] -thoroughly at : [u'home'] -tragedy which : [u'followed'] -in every : [u'direction', u'way', u'case', u'respect', u'particular', u'detail'] -husband looking : [u'down'] -operations we : [u'erected'] -cab by : [u'the'] -periodic tax : [u''] -another dull : [u'wilderness'] -secret lies : [u'in'] -near Crewe : [u'.'] -shining coldly : [u'in'] -private banking : [u'concern'] -of blood : [u'were', u'had', u'showed'] -See that : [u'light', u'you'] -draw. : ['PP'] -gravel drive : [u'which', u','] -hard enough : [u'to'] -weary man : [u'gives'] -trooped away : [u'in'] -fell over : [u'into', u'with'] -was busy : [u'at', u'with'] -received no : [u'less'] -of coffee : [u',', u'in'] -about them : [u',', u'."', u'but'] -me no : [u'surprise'] -difference to : [u'me'] -secure the : [u'photograph', u'girl'] -teller. : [u'Take'] -than those : [u'which'] -the South : [u'.', u','] -glossy. : ['PP'] -notes upon : [u'anything'] -turn the : [u'lamp', u'stone', u'key'] -By reading : [u'or'] -have your : [u'rubber', u'opinion', u'pistol'] -refers in : [u'this'] -upon short : [u'sight'] -or so : [u".'", u'.', u'we', u'from', u'afterwards', u','] -hundred pounds : [u'in', u".'", u'was'] -warnings that : [u'an'] -The two : [u'McCarthys'] -that once : [u'or'] -and on : [u'Saturday', u'the', u'inquiring', u'looking'] -silence for : [u'some'] -opposition to : [u'the'] -and of : [u'course', u'late', u'the', u'meditation', u'reeds', u'which', u'character', u'a', u'some', u'endeavouring', u'something', u'how', u'tin', u'her', u'fortune', u'Arthur', u'every', u'logical', u'interest'] -Anstruther would : [u'do'] -friend and : [u'companion', u'colleague', u'school', u'had', u'associate', u'I', u'me'] -a lamp : [u'post', u'in'] -helped himself : [u'to'] -luxurious club : [u'in'] -four o : [u"'"] -a purple : [u'dressing'] -influence him : [u'.'] -Never mind : [u'him', u',"', u'.'] -rare accomplishment : [u'.'] -loafer to : [u'Sir'] -why are : [u'you'] -were seen : [u'after'] -uncouth man : [u','] -spectacle a : [u'small'] -brisk, : [u'and'] -hoarse roar : [u'of'] -exchange willingly : [u'the'] -folks would : [u'fly'] -a brain : [u'must'] -we might : [u'expect', u'spend', u'find', u'give'] -About 1869 : [u'or'] -of placing : [u'upon'] -the journey : [u','] -wont to : [u'replace'] -glimmer of : [u'china'] -entering the : [u'grounds', u'house'] -were very : [u'well', u'black', u'old', u'obvious'] -traffic, : [u'but'] -affair up : [u'."'] -example of : [u'observation'] -So say : [u'the'] -conclusions. : ['PP'] -beating upon : [u'the', u'her'] -mission was : [u'practically'] -, holding : [u'it', u'my', u'up', u'the'] -allows you : [u'to'] -greater sense : [u'of'] -, gold : [u'Albert'] -emotion. : [u'Then'] -business affairs : [u'.'] -four in : [u'the'] -between his : [u'knees', u'teeth', u'lips'] -Alas! : [u'I'] -and pattered : [u'against'] -combination of : [u'events'] -young widow : [u'of'] -our lives : [u'.'] -on discovering : [u'the'] -He quietly : [u'shot'] -Now I : [u'am', u'have'] -that s : [u'/'] -has prompted : [u'you'] -hope which : [u'sank', u'had'] -am much : [u'mistaken', u'indebted'] -my bell : [u','] -and bull : [u'story'] -He curled : [u'himself'] -limitation permitted : [u'by'] -conjecture and : [u'surmise'] -game' : [u's'] -no just : [u'cause'] -My room : [u'at'] -married or : [u'not'] -night he : [u'heard'] -some city : [u'in'] -fits were : [u'over'] -broad passage : [u','] -weary after : [u'my'] -Now a : [u'pawnbroker'] -demeanour with : [u'which'] -as correct : [u'this'] -then inquired : [u'as'] -step up : [u'to'] -I disregarded : [u'them'] -hands at : [u'once'] -so transparent : [u'a'] -: It : [u'conveyed', u'is', u'was'] -a moral : [u'retrogression'] -step and : [u'bowed'] -gallop. " : [u'I'] -help you : [u'?"', u'in'] -a sort : [u'of'] -he jerked : [u'his'] -him he : [u'saw'] -pretext set : [u'your'] -swinging it : [u'over'] -sinister enough : [u'."'] -be our : [u'companion', u'foreman', u'noble'] -swinging in : [u'the', u'his'] -turn to : [u'Mr', u'none', u'rain', u'you'] -besides ourselves : [u'who'] -winced from : [u'the'] -cosy room : [u'rather'] -his courage : [u". '"] -the smooth : [u'patch'] -lest the : [u'dog'] -extraordinary matters : [u','] -Your wife : [u'has'] -yourselves behind : [u'those'] -providing copies : [u'of'] -? Did : [u'he', u'you', u'I'] -annual sum : [u'should'] -and crawl : [u'now'] -so soon : [u'after'] -distribute a : [u'Project'] -Finally, : [u'I'] -see a : [u'Chinese', u'change', u'spark', u'man', u'Roylott', u'bed', u'crust', u'dark', u'shadow', u'sister'] -they always : [u'send'] -so here : [u'."'] -and towards : [u'the'] -responsibility which : [u'it'] -opening, : [u'clad', u'her'] -chiffon at : [u'her'] -gold watch : [u'from'] -so he : [u'sat', u'followed', u'rose'] -I spend : [u'most'] -open his : [u'mouth', u'lips'] -Apache Indians : [u','] -a paragraph : [u'amplifying'] -. ' Here : [u'are'] -, keen : [u'witted'] -pretty a : [u'toy'] -and clattered : [u'down'] -' Pink : [u"'"] -moving softly : [u'in'] -just come : [u'at'] -should allow : [u'him'] -home before : [u'six'] -tore it : [u'open'] -struggle between : [u'them'] -a line : [u'to', u'before', u'of', u'asking', u','] -have 200 : [u'pounds'] -a link : [u'between'] -The right : [u'side'] -its inward : [u'twist'] -1661. : ['PP'] -it hard : [u'to', u'enough'] -the user : [u','] -t get : [u'the'] -be stored : [u','] -a confused : [u'memory'] -widower, : [u'and'] -gentle. : [u'He'] -from Major : [u'Prendergast'] -homme c : [u"'"] -perfectly happy : [u','] -jump in : [u'his'] -very energetic : [u'inquiries'] -waste the : [u'so'] -remark in : [u'this'] -seized the : [u'intruder', u'poker'] -the agonies : [u'I'] -a bundle : [u'of'] -glanced my : [u'eye'] -meantime Mr : [u'.'] -So he : [u'sat'] -baggy trousers : [u','] -six, : [u'reached', u'a'] -the lookout : [u'for'] -six. : [u'Come'] -One other : [u'question'] -state your : [u'case', u'business'] -McFarlane' : [u's'] -to drop : [u'his'] -any unnecessary : [u'footmarks'] -so dearly : [u'.'] -he whose : [u'step'] -sure you : [u'could'] -somewhat rare : [u'accomplishment'] -shrieked. : [u'"'] -that C : [u'was'] -wooden shelf : [u'full'] -issue from : [u'it'] -which marked : [u'a', u'the'] -length of : [u'obstinacy', u'his'] -was seven : [u'weeks'] -distributing any : [u'Project'] -California millionaire : [u'.'] -indulged in : [u','] -which present : [u'any', u'strange', u'a'] -hearty fit : [u'of'] -Roylott was : [u'in'] -solution as : [u'ever'] -come within : [u'my'] -confessed, : [u'neither', u'however'] -my dark : [u'room'] -were much : [u'interested'] -, ' were : [u'it'] -for showing : [u'traces'] -satisfying its : [u'wants'] -shrieked, : [u'and'] -beyond that : [u'I'] -a rescue : [u'.'] -of woman : [u"'"] -been sporadic : [u'outbreaks'] -bird at : [u'Christmas'] -We were : [u'both', u'engaged', u'seated', u'to', u'sitting', u'as', u'all'] -stone which : [u'he'] -my cock : [u'and'] -deprived me : [u'of'] -answered firmly : [u'.'] -, ' it : [u'was'] -fro like : [u'that'] -some good : [u'news', u'might'] -can most : [u'readily'] -India. : [u'He'] -at fifty : [u'miles'] -to chat : [u'this'] -there reared : [u'itself'] -THE MAN : [u'WITH'] -runs the : [u'corridor'] -instant to : [u'be', u'horror'] -the Vegetarian : [u'Restaurant'] -was loose : [u'.'] -turned round : [u'the'] -public house : [u'at', u'.'] -who may : [u'safely', u'remain', u'be', u'have', u'some'] -shaped head : [u'and'] -small for : [u'his'] -our short : [u'drive', u'interview'] -altogether past : [u'belief'] -He bowed : [u',', u'me'] -money of : [u'the'] -, suddenly : [u'realising', u'losing', u',', u'springing'] -money on : [u'the'] -flush sprang : [u'to'] -small donations : [u'($'] -have kept : [u'you'] -have them : [u'in', u'ashamed', u'back'] -as his : [u'.', u'client', u'fingers', u'murderer', u'grief', u'tread', u'."'] -The Cedars : [u'is', u'?"', u','] -enables me : [u'to'] -just received : [u','] -yesterday that : [u'the'] -it ring : [u'?"'] -leather cap : [u'which'] -bed. : [u'Then', 'PP', u'He', u'The', u'It'] -bed, : [u'and', u'was', u'wrapped', u'the', u'a', u'struck', u'all', u'went', u'I', u'padlocked'] -clergyman absolutely : [u'refused'] -an unpleasant : [u'impression'] -turned once : [u'more'] -investigations, : [u'and'] -less interest : [u','] -, talking : [u'excitedly', u'all'] -instant from : [u'the'] -affectionate father : [u','] -Square, : [u'near', u'and', u'the', u'too', u'that', u'was'] -but friend : [u'Lestrade'] -Square. : [u'Let', u'I'] -fasten all : [u'the'] -myself down : [u'in'] -rest upon : [u'me'] -Square; : [u'so'] -No doubt : [u'you'] -uncle, ' : [u'to'] -and Friday : [u'evening'] -the bell : [u'and', u'.', u'. "', u'pull', u',', u'rope'] -thrust Neville : [u'St'] -right, ' : [u'sent'] -" Perhaps : [u'I', u'you', u'we', u','] -for standing : [u'in'] -the good : [u'pawnbroker', u'sense', u'of'] -but Holmes : [u'caught', u'had', u"'"] -finding the : [u'track'] -Subtle enough : [u'and'] -and borrowed : [u'for'] -which caused : [u'me', u'him'] -all swept : [u'from'] -and tearing : [u'a', u'it'] -I gazed : [u'at'] -penal servitude : [u'unless'] -professionally. : [u'I'] -put my : [u'pistol', u'hat', u'handkerchief'] -me so : [u'well', u'.', u'if', u'far', u'good'] -man she : [u'no'] -were fond : [u'of'] -a strange : [u'tangle', u'and', u'errand', u',', u'contrast', u'idea', u'transformer'] -of relief : [u'.'] -to lie : [u'back', u'and', u'."'] -ask me : [u'why', u',', u'whether'] -. " All : [u'is', u'has'] -a station : [u'from'] -to put : [u'yourself', u'up', u'us', u'so', u'me', u'the', u'on', u'it', u'colour', u'a'] -he beat : [u'his'] -same evening : [u';'] -, realising : [u'the'] -side whiskers : [u'and', u'was'] -Look in : [u'here'] -sleeping in : [u'the'] -and extraordinary : [u'powers', u'combinations', u'energy', u'calamity'] -turn. : [u'Then', u'He'] -turn, : [u'we'] -and this : [u',', u'also', u'in', u'I', u'she', u'sinister', u'he'] -and soon : [u'found', u'overtook'] -and walls : [u'are'] -the fogs : [u'of'] -creature hiss : [u'as'] -gone to : [u'the', u'bed', u'his', u'town', u'it', u'England', u'your', u'live', u'Philadelphia', u'America'] -accident near : [u'Crewe'] -2s. : [u'6d'] -Dundee records : [u','] -valet, : [u'learned'] -it prove : [u'to'] -his thin : [u'knees', u','] -of shag : [u'tobacco', u'which', u'.'] -the glass : [u'?', u'above', u'in'] -headed man : [u".'", u"?'"] -hole to : [u'develop'] -what strange : [u'side'] -together. ' : [u'For'] -drunkard. : [u'I'] -together. " : [u'The'] -and sympathy : [u'were'] -drunkard' : [u's'] -had then : [u'had', u'run'] -Grice Patersons : [u'in'] -we don : [u"'"] -displaying the : [u'sentence'] -a dramatic : [u'manner'] -back?' : [u'Well'] -failed ever : [u'to'] -the ruined : [u'coronet'] -feet deep : [u','] -piteous spectacle : [u'.', u'a'] -lady lived : [u'."'] -to exclude : [u'them'] -marry before : [u'father'] -the tide : [u'was', u'receded', u'.'] -spent his : [u'day'] -than on : [u'any', u'that'] -. Seldom : [u'goes'] -than of : [u'a', u'the'] -return or : [u'destroy', u''] -trials in : [u'which'] -generally recognised : [u'shape'] -his immense : [u'faculties'] -presence might : [u'be'] -very natural : [u'that'] -dubious and : [u'questionable'] -is currently : [u'reported'] -The possession : [u'of'] -was said : [u'to'] -gets his : [u'claws'] -to that : [u'open', u'.', u'address', u'imbecile', u',"', u'of', u'which', u'remark', u'noble', u'clue'] -merely for : [u'cruelty'] -: ' Found : [u'at'] -her match : [u','] -admirable queen : [u'?'] -maintenance. : [u'It'] -a group : [u'of'] -regulations he : [u'pretends'] -chance,' : [u'said'] -" It : [u'is', u'came', u'must', u'was', u"'", u'saved', u'missed', u'seems', u'surprised', u'may', u'appears', u'has', u'will', u'certainly', u'goes', u'looks', u'means', u'might', u'seemed'] -his boots : [u'. "'] -oak, : [u'so'] -" Is : [u'Briony', u'the', u'a', u'such', u'he', u'it', u'Toller', u'there'] -geese, : [u'I', u'but'] -geese. : ['PP'] -If, : [u'on'] -did I : [u'not'] -birds they : [u'were'] -sudden ejaculation : [u'caused'] -" If : [u'your', u'I', u'so', u'you'] -sunk that : [u'clear'] -, handsome : [u','] -" In : [u'answer', u'what', u'view', u'this', u'your', u'the', u'that', u'which', u'San', u'mining', u'short', u'heaven', u'search'] -humming the : [u'tunes'] -was angry : [u','] -relentless, : [u'keen'] -liberty to : [u'defray'] -was suggested : [u'by'] -87 furnished : [u'us'] -have still : [u'time', u'to'] -trunks and : [u'bundles'] -to persuade : [u'myself'] -you imagine : [u'that', u",'"] -shook himself : [u','] -front room : [u'she', u'during', u'was', u'were'] -, " and : [u'I', u'he', u',', u'yet', u'perhaps', u'the', u'let'] -weapon like : [u'a'] -hard at : [u'his', u'me', u'the'] -hard as : [u'he', u'my', u'I'] -on glancing : [u'down'] -hardly consider : [u'that'] -avoid publicity : [u'.'] -those lines : [u'."'] -a prior : [u'claim'] -no remarks : [u'before'] -light green : [u'of'] -But if : [u'I', u'he', u'your', u'you', u'it'] -Be one : [u'of'] -same. : ['PP', u'As'] -a crackling : [u'voice'] -cried Sherlock : [u'Holmes'] -a cold : [u'sneer', u'blooded', u'day', u'supper', u'night', u',', u'morning'] -soft, : [u'flesh'] -admit such : [u'intrusions'] -myself that : [u'the', u'he', u'it', u'I', u'night'] -excellent education : [u'.'] -and politics : [u'were'] -and choked : [u'her'] -a compressed : [u'lip'] -At half : [u'wages'] -supper began : [u'to'] -better!" : [u'said'] -Please be : [u'at'] -the duplicates : [u'of'] -reopening by : [u'my'] -License included : [u'with'] -laid a : [u'glass'] -private clothes : [u','] -synthesis which : [u'I'] -pile. " : [u'There'] -brimmed hat : [u'in', u'which', u','] -but make : [u'such'] -magistrate than : [u'upon'] -I doubt : [u'if'] -! How : [u'dare', u'very'] -carrying a : [u'white', u'large'] -I miss : [u'my'] -is cabinet : [u'size'] -Pray take : [u'a', u'this', u'the'] -Were they : [u'all'] -flag which : [u'shall'] -word spoken : [u','] -personally threatened : [u'."'] -the blinds : [u'had', u'in'] -he protested : [u'that'] -certainly sounds : [u'feasible'] -has an : [u'interest'] -He moved : [u'out'] -contributions from : [u'states'] -comely to : [u'look'] -as Aldersgate : [u';'] -armchair with : [u'the'] -conveniently vanished : [u'away'] -to Godfrey : [u'Norton'] -year 1869 : [u','] -myself not : [u'to'] -robbery. : ['PP'] -robbery, : [u'no', u'and'] -nose. : ['PP'] -nose, : [u'and', u'I', u'gave', u'looking'] -horse?" : [u'interjected'] -walked away : [u'. "'] -in Montana : [u','] -relatives should : [u'allow'] -are threatened : [u'by'] -of most : [u'vital'] -both his : [u'hands'] -suppliers. : [u'Now'] -so serious : [u'.'] -no slit : [u'through'] -may make : [u'them'] -consideration is : [u'to'] -started from : [u'London', u'home'] -gale, : [u'there'] -been observed : [u'there'] -round by : [u'the'] -recent, : [u'and'] -At his : [u'fall'] -his house : [u'which', u'at', u'being', u',', u'."', u'?"', u'and'] -free future : [u'access'] -though none : [u','] -both seen : [u'and'] -wet feet : [u'out'] -some service : [u'in'] -in Australia : [u'and', u'."'] -pounds is : [u'certainly'] -no, : [u'there', u'sir', u'the', u'no', u'he', u'not', u'it', u'my', u'nothing', u'we'] -brass box : [u',', u'stood', u'there', u'which'] -I think : [u',', u'that', u'you', u'it', u'of', u'I', u'myself', u'."', u'we'] -back at : [u'me'] -persons in : [u'the'] -and taking : [u'his', u'out'] -no! : [u'I'] -problem upon : [u'the', u'his'] -wants it : [u'.'] -colonel, : [u'but'] -wants is : [u'an'] -Street wheeled : [u'sharply'] -earth was : [u'sufficient', u'the'] -window about : [u'two'] -touched his : [u'heart'] -a stately : [u','] -neck with : [u'a'] -the coach : [u'house'] -been caught : [u'in'] -the gallows : [u'and'] -s advice : [u'and'] -rifled the : [u'jewel'] -we met : [u'him'] -Pondicherry postmark : [u'!'] -the indications : [u'which'] -instance in : [u'Aberdeen'] -" Get : [u'back', u'out'] -spirits. : ['PP'] -spirits, : [u'swinging'] -"' That : [u'would', u'white', u'is', u"'", u'you', u'will'] -' hoofs : [u'and', u'.'] -a man : [u'of', u'.', u'who', u'might', u'with', u'whose', u'she', u'it', u"'", u'and', u'should', u'as', u'out', u'gives', u'in', u',', u'can', u'named', u'that', u'rather', u'either', u'bent', u'without', u'fresh', u'standing', u'appeared'] -its contents : [u'had'] -never guess : [u'how', u'what'] -own to : [u'settle'] -ennui," : [u'he'] -swiftly forward : [u','] -him talking : [u'with'] -This account : [u'of'] -success of : [u'our'] -is Hugh : [u'Boone'] -commonly become : [u'delirious'] -framed in : [u'the'] -, amount : [u'to'] -along heavy : [u'roads'] -that she : [u'will', u'has', u'would', u'carries', u'does', u'had', u'was', u'came', u'ran', u'is', u'must', u'could', u'died', u'went', u',', u'might', u'may', u'refers', u'alone', u'loved', u'carried', u'no', u'never'] -who stares : [u'up'] -must feel : [u'to'] -advantage. : [u'It'] -risk, : [u'to'] -which direction : [u'he'] -be obeyed : [u'.'] -three times : [u'before', u',', u'by', u'repeated'] -scissors of : [u'the'] -merry and : [u'jovial'] -sad that : [u'his'] -K.,' : [u'said'] -tension within : [u'him'] -, me : [u'and', u'!'] -brought into : [u'frequent'] -same source : [u'.', u'that'] -my valise : [u','] -hurried down : [u'to'] -he unlocked : [u'.'] -situation and : [u'see'] -, my : [u'double', u'boy', u'brougham', u'dear', u'father', u'stepfather', u'wife', u'God', u'sins', u'suspicion', u'natural', u'companion', u'profession', u'mother', u'sister', u'thrill', u'old', u'night', u'clerk', u'grip', u'correspondence', u'two', u'gems', u'girl', u'conjecture', u'thoughts', u'hair', u'mastiff', u'groom', u'friend'] -So there : [u'were'] -looking outside : [u'the'] -are a : [u'benefactor', u'funny', u'few', u'thousand', u'good', u'most', u'lot'] -," replied : [u'Lestrade', u'Holmes'] -interesting. : [u'It', u'Indeed', u'You', 'PP', u'This', u'And'] -also true : [u'that'] -salesman chuckled : [u'grimly'] -police, : [u'and', u'but', u'the', u'as', u'let'] -police. : [u'From', u'Whatever', 'PP', u'When', u'As', u'It'] -to avert : [u'another', u'scandal'] -away five : [u'years'] -start which : [u'I'] -folded, : [u'his', u'asked'] -every precaution : [u'has'] -police; : [u'but'] -The building : [u'was'] -every chink : [u'and'] -leading from : [u'a'] -this creature : [u'takes', u'back'] -a relative : [u','] -carefully sounded : [u','] -at that : [u'hour', u'moment', u',', u'third', u'end', u'deadly', u'time', u'rate', u'window'] -was making : [u'his'] -reproachfully. : ['PP'] -simple minded : [u'Nonconformist'] -the Franco : [u'Prussian'] -of by : [u'the'] -tide with : [u'at'] -visitor of : [u'the'] -suspecting that : [u'she'] -a double : [u'edged', u'stream', u'tide', u'bedded', u'line'] -Foundation as : [u'set'] -cocked and : [u'his'] -you months : [u'ago'] -last message : [u": '"] -landlady had : [u'provided'] -your silly : [u'talk'] -did they : [u'come', u'say'] -cause of : [u'quarrel', u'death', u'this', u'my', u'the', u'complaint'] -s other : [u'occupations'] -was apprenticed : [u'to'] -which sank : [u'into'] -sleepy porter : [u'with'] -not object : [u'to'] -pale of : [u'the'] -due? : [u'This'] -term of : [u'imprisonment'] -He throws : [u'it'] -talk of : [u'marrying', u'delirium', u'woman'] -West End : [u'.', u'called'] -whole incident : [u'be'] -Robert Walsingham : [u'de'] -professional. : ['PP'] -very penetrating : [u'dark'] -raised his : [u'hand', u'stick', u'eyebrows', u'finger'] -had feared : [u'to'] -to learn : [u'the', u'what', u'wisdom', u'it', u'of'] -chemical researches : [u'which'] -drunk?" : [u'he'] -. Where : [u'is', u'does', u'are'] -how are : [u'you'] -TO YOU : [u'FOR'] -violet eyes : [u'shining'] -are legible : [u'upon'] -the entries : [u'against'] -the postmarks : [u'of'] -lose hope : [u'as'] -Holmes gazed : [u'long'] -had written : [u'a', u',', u'about', u'in', u'my'] -poor ignorant : [u'folk'] -know your : [u'train'] -amiable as : [u'ever'] -roared, : [u'shaking'] -feeble than : [u'his'] -of very : [u'red', u'penetrating', u'bright'] -creature weaker : [u'than'] -precipitance may : [u'ruin'] -a clanging : [u'sound'] -him afterwards : [u','] -so angry : [u'that'] -between us : [u'.', u'that'] -not unlike : [u'each'] -he managed : [u'it', u'that'] -foresee. : ['PP'] -now!" : [u'she', u'cried'] -armed. : ['PP'] -from this : [u'double', u'old', u'hat', u'allusion', u'four', u'work'] -confine yourself : [u'to'] -of court : [u'."'] -clad lawn : [u','] -armed? : [u'Where'] -me out : [u'of', u"!'", u',', u'when'] -daughter could : [u'not'] -disclaimer or : [u'limitation'] -superb figure : [u'outlined'] -fantastic poses : [u','] -becomes positively : [u'slovenly'] -various keys : [u'in'] -to seek : [u'the', u'a', u'his'] -uses lime : [u'cream'] -matter like : [u'a'] -confound me : [u'with'] -the easier : [u'for'] -*** THE : [u'FULL'] -K which : [u'I'] -trimmed lawn : [u'and'] -deep harsh : [u'voice'] -pestering me : [u'any'] -to no : [u'disease'] -the secure : [u'tying'] -as tender : [u'and'] -feeling very : [u'much'] -off in : [u'my', u'the', u'one'] -use her : [u'money'] -walked to : [u'the'] -. Such : [u'a', u'was', u'are'] -life would : [u'not'] -impatiently. " : [u'I'] -thin line : [u'of'] -floor." : [u'He'] -s adventure : [u'."', u','] -adventure," : [u'said'] -Its owner : [u'is'] -eyes into : [u'his'] -suicide of : [u'it'] -over precipitance : [u'may'] -this awful : [u'business'] -body in : [u'one'] -acted so : [u'harshly'] -readily upon : [u'him'] -broke loose : [u'and'] -charge with : [u'others'] -this trophy : [u'belongs'] -there now : [u',"'] -from Fareham : [u'in'] -sake of : [u'a', u'this'] -But to : [u'whom', u'day', u'my'] -displaying, : [u'performing'] -correct," : [u'said'] -quivered with : [u'emotion'] -explain the : [u'state', u'appearance', u'necessity', u'true'] -body is : [u'a', u'to'] -birds a : [u'fine'] -will he : [u'see', u'say'] -vanished from : [u'the'] -seen. : [u'That', 'PP', u'There', u'I', u'At'] -seen, : [u'but', u'and', u'in'] -We' : [u're', u'll'] -regard to : [u'his'] -been identified : [u'as'] -working upon : [u'.'] -the vestry : [u'.'] -" Except : [u'yourself'] -the use : [u'of'] -under the : [u'terms', u'name', u'honourable', u'full', u'letter', u'circumstances', u'shadow', u'sponge', u'impression', u'three', u'door', u'laws'] -to Eton : [u'and'] -station in : [u'the'] -pierced bit : [u'of'] -is from : [u'you', u'Lord'] -Confederate soldiers : [u'in'] -The impression : [u'of'] -fashion of : [u'my', u'speech', u'old'] -a hearty : [u'fit', u'laugh', u'meal', u'supper'] -metal had : [u'fallen'] -a sharp : [u'pull', u'cry', u'frost', u'face', u'eyed'] -very thought : [u'of'] -Anybody bringing : [u'--"'] -my wounded : [u'thumb'] -, clad : [u'in'] -turning his : [u'head'] -A broad : [u'wheal'] -queer things : [u'which'] -was shot : [u'with'] -between savage : [u'fits'] -, clay : [u';'] -this." : [u'He', u'I'] -mass of : [u'black', u'metal'] -her tresses : [u'.'] -entirely to : [u'a'] -corner of : [u'the', u'Paul', u'Goodge', u'one', u'my'] -undertake to : [u'go'] -our noble : [u'benefactor', u'client'] -convulsed. : [u'At'] -groaned the : [u'prisoner'] -quite made : [u'up'] -a blaze : [u'."'] -to advance : [u'it', u'to'] -in Brixton : [u'Road'] -was closed : [u'.', u','] -youth?" : [u'asked'] -light between : [u'two'] -faded laurel : [u'bushes'] -clever stepfather : [u'do'] -instantly and : [u'act'] -man confessed : [u'to'] -, don : [u"'"] -cause to : [u'fear', u'be', u'effect', u'occur'] -the goose : [u'as', u',', u'came', u'into', u'.'] -ll be : [u'gone', u'as', u'into', u'too'] -waited in : [u'absolute', u'my', u'the'] -not miss : [u'it'] -Pray be : [u'precise'] -?" said : [u'she', u'he', u'my', u'Holmes', u'the', u'our'] -colour. : [u'From', u'Never', u'I', 'PP'] -colour, : [u'here', u'with', u'a', u'which'] -must cease : [u'using'] -ask where : [u'you'] -are outside : [u'the'] -my stone : [u'to'] -more precious : [u'to'] -, screaming : [u'out', u','] -just on : [u'with'] -quick steps : [u'upon'] -s place : [u'of', u','] -a crib : [u'in'] -snake ring : [u'from'] -consider the : [u'situation', u'blow'] -are fatal : [u','] -warnings. : ['PP'] -called Westaway : [u"'"] -or 1661 : [u'8'] -the interim : [u'."'] -four, : [u'I'] -clock in : [u'the'] -; " that : [u'is'] -to summarise : [u'.'] -there isn : [u"'"] -, fresh : [u'and'] -he tell : [u'me'] -thresholds of : [u'which'] -I not : [u'tell', u'snap', u'escort', u'come', u'see'] -Then we : [u'have', u'shall', u'can', u'had'] -going back : [u'to'] -one retreat : [u',"'] -and Godfrey : [u'Norton'] -answered Mr : [u'.'] -died five : [u'years'] -corridor and : [u'down'] -there only : [u'remained'] -day which : [u'had', u'has'] -given you : [u'.', u'the', u'my', u'all', u'pain'] -say to : [u'me', u'mother', u'this', u'you'] -Wilson,' : [u'said'] -work chairs : [u','] -now entirely : [u'see'] -his purpose : [u'were'] -With hardly : [u'a'] -levers which : [u'controlled'] -hurried scrawl : [u','] -along here : [u'.'] -rather roughly : [u'what'] -and plucked : [u'at'] -wanted ten : [u'minutes'] -Doctor, : [u'and', u'I', u'but', u'of', u'we', u'there', u'you', u'that', u'perhaps'] -Doctor. : [u'Stay'] -sketch of : [u'this'] -chatted with : [u'him'] -t," : [u'said'] -s laws : [u'.'] -fire?" : [u'asked'] -the sunlight : [u';'] -innocent human : [u'life'] -Doctor; : [u'I'] -trying begging : [u'as'] -conceal its : [u'repulsive'] -crowded, : [u'so', u'even'] -begging. : ['PP'] -of Winchester : [u'.'] -, a : [u'black', u'Bohemian', u'glass', u'scissors', u'not', u'gash', u'white', u'gentleman', u'woman', u'little', u'lad', u'game', u'coat', u'pink', u'man', u'great', u'lumber', u'possession', u'sinister', u'very', u'few', u'young', u'sallow', u'trusty', u'good', u'small', u'pale', u'bulldog', u'standing', u'trifle', u'Lascar', u'pipe', u'tallish', u'row', u'plumber', u'goose', u'vitriol', u'suicide', u'massive', u'clatter', u'large', u'dear', u'long', u'picture', u'narrow', u'plain', u'round', u'cheetah', u'cord', u'single', u'chill', u'hoarse', u'worthy', u'fee', u'deadly', u'hydraulic', u'patient', u'year', u'considerable', u'pair', u'quite', u'pheasant', u'pt', u'public', u'horrible', u'brilliant', u'wonderful', u'fair', u'telegram', u'light', u'sort', u'means', u'full', u'copyright', u'defective', u'computer'] -to light : [u'a', u'in', u',', u'the'] -her lap : [u'and', u','] -s army : [u','] -be burgled : [u'during'] -circumstances connected : [u'with'] -to enter : [u'into', u'upon', u'.', u'through'] -OF SHERLOCK : [u'HOLMES'] -a radius : [u'of'] -, I : [u'take', u'knew', u'was', u'saw', u'think', u'should', u'fancy', u'observe', u'deduce', u'fail', u'must', u'know', u'made', u'had', u'began', u'found', u'shall', u'thought', u'motioned', u'wonder', u'believe', u'have', u'followed', u'am', u'took', u'can', u'forgot', u'see', u'never', u'presume', u'would', u'started', u'went', u'came', u'say', u'confess', u'wish', u'did', u'remember', u'met', u'don', u'understand', u'ventured', u'felt', u'fear', u'very', u'left', u'may', u'then', u'turned', u'doubt', u'foresee', u'forbid', u'suppose', u'do', u'lifted', u"'", u'passed', u'could', u'backed', u'slipped', u'will', u'got', u'shan', u'imagine', u'thrust', u'find', u'cannot', u'blinked', u'recall', u'suddenly', u'daresay', u'at', u'feel', u'determined', u'waited', u'promise', u'threw', u'still', u'returned', u'tossed', u'congratulate', u'hope', u'guess', u'glanced', u'learned', u'said', u'ordered', u'called', u'told', u'implored', u'examined', u'really', u'observed', u'put', u'perceived', u'strolled', u'blew'] -singular contrast : [u'to'] -, D : [u'.'] -, B : [u',', u'division'] -you call : [u'?"', u'to', u'purely'] -fortnight' : [u's'] -that these : [u'three'] -you," : [u'he', u'said', u'Holmes', u'I', u'she'] -were we : [u'going', u'to'] -Farm and : [u'the'] -a replacement : [u'copy'] -, U : [u'.'] -Simon bitterly : [u'.'] -. " Hullo : [u'!'] -dear young : [u'lady'] -answering smile : [u'in'] -and found : [u',', u'him', u'that', u'your', u'herself', u'ourselves', u'a', u'they', u'little'] -unfortunately lost : [u'.'] -GIVE NOTICE : [u'OF'] -. Swiftly : [u'and', u'I'] -arrived the : [u'door'] -you followed : [u'me'] -a dweller : [u'once'] -, 7 : [u'Pope'] -take charge : [u'of'] -and help : [u',', u'preserve'] -so frightful : [u'a'] -day and : [u'to', u'at', u'was'] -for seven : [u'and', u'months'] -, rising : [u', "', u'and', u'from', u'.', u'. "'] -eyes she : [u'eclipses'] -enough lash : [u'.'] -area of : [u'light'] -youngster I : [u'have'] -bare ankles : [u'protruding'] -the big : [u'ledger', u'white'] -some loophole : [u','] -picked out : [u'from'] -am. : [u'Very', u'Just', u'But', u'When'] -fancy that : [u'my', u'this', u'I'] -before he : [u'could', u'died', u'saw', u'even', u'really', u'knew', u'entered', u'started', u'wrote', u'roused', u'was', u'went'] -the mission : [u'which'] -just the : [u'same'] -excellent bird : [u'which'] -confronted him : [u'.'] -, hand : [u'made', u'out'] -faced pawnbroker : [u"'"] -to punish : [u'the'] -a most : [u'clumsy', u'entertaining', u'mysterious', u'useful', u'suspicious', u'retiring', u'unimpeachable', u'remarkable', u'singular', u'dark', u'interesting', u'unpleasant', u'searching'] -was twisted : [u'."'] -gradually away : [u'as'] -League III : [u'.'] -of the : [u'Project', u'Blue', u'Speckled', u'Engineer', u'Noble', u'Beryl', u'Copper', u'softer', u'drug', u'Trepoff', u'singular', u'Atkinson', u'mission', u'daily', u'Study', u'sole', u'London', u'medical', u'very', u'royal', u'paper', u'maker', u'death', u'sentence', u'window', u'face', u'most', u'reigning', u'man', u'well', u'King', u'Count', u'provinces', u'grim', u'case', u'investigation', u'fire', u'coach', u'garden', u'Inner', u'sitting', u'buckles', u'hall', u'door', u'altar', u'occasion', u'street', u'house', u'sort', u'side', u'avenue', u'loafing', u'loungers', u'quiet', u'Darlington', u'preceding', u'freedom', u'lady', u'woman', u'utmost', u'greatest', u'imagination', u'story', u'course', u'subject', u'bequest', u'late', u'League', u'Red', u'vacancies', u'way', u'others', u'manager', u'pensioners', u'red', u'room', u'whole', u'office', u'panel', u'affair', u'minute', u'main', u'City', u'houses', u'chase', u'"', u'Sholto', u'principal', u'wooden', u'vault', u'bulky', u'bank', u'floor', u'little', u'broad', u'aperture', u'hole', u'detective', u'morning', u'advertisement', u"'", u'assistant', u'question', u'coolest', u'race', u'magistrate', u'average', u'lid', u'Irene', u'swimmer', u'bell', u'business', u'money', u'drawer', u'firm', u'wedding', u'matter', u'church', u'trouser', u'hand', u'fourteenth', u'Sign', u'disappearing', u'sufferer', u'salt', u'details', u'mantelpiece', u'daughter', u'girl', u'bitter', u'typewriter', u'world', u'murdered', u'farms', u'same', u'neighbouring', u'neighbourhood', u'stream', u'tragedy', u'lodge', u'Boscombe', u'woods', u'wood', u'body', u'jaw', u'coroner', u'situation', u'local', u'carriage', u'deceased', u'yard', u'witness', u'jury', u'vanishing', u'light', u'crime', u'events', u'day', u'injuries', u'inquest', u'left', u'occipital', u'accused', u'grey', u'Hall', u'son', u'wealthy', u'rich', u'pool', u'trees', u'stricken', u'gun', u'tree', u'rat', u'Colony', u'map', u'ground', u'criminal', u'injury', u'variety', u'clutches', u'wagon', u'police', u'peace', u'black', u'Sherlock', u'fact', u'adventure', u'Paradol', u'Amateur', u'facts', u'British', u'Grice', u'Camberwell', u'fireplace', u'gale', u'rain', u'sea', u'landlady', u'fierce', u'lamp', u'storm', u'invention', u'Openshaw', u'war', u'Republican', u'colonel', u'estate', u'reception', u'letter', u'attic', u'cover', u'papers', u'Southern', u'other', u'forts', u'deep', u'law', u'time', u'Ku', u'book', u'country', u'negro', u'society', u'efforts', u'United', u'better', u'community', u'more', u'first', u'H', u'help', u'water', u'small', u'authorities', u'riverside', u'flap', u'gang', u'old', u'states', u'Union', u'fate', u'Theological', u'docks', u'river', u'metal', u'policeman', u'clouds', u'belt', u'Aberdeen', u'company', u'stairs', u'continued', u'proprietor', u'wharves', u'bedroom', u'vilest', u'stair', u'missing', u'opium', u'blood', u'premises', u'clothes', u'tell', u'coat', u'great', u'greyish', u'ceiling', u'heap', u'previous', u'Surrey', u'upper', u'city', u'season', u'back', u'chair', u'last', u'latter', u'field', u'spoils', u'slight', u'unknown', u'usual', u'hat', u'lower', u'lining', u'barber', u'palm', u'market', u'Countess', u'robbery', u'grate', u'one', u'Amoy', u'carbuncle', u'passers', u'streets', u'private', u'largest', u'Alpha', u'kind', u'folk', u'circle', u'stranger', u'nervous', u'next', u'agonies', u'birds', u'flock', u'stone', u'table', u'seventy', u'Roylotts', u'driver', u'human', u'oldest', u'Regency', u'Bengal', u'family', u'village', u'engagement', u'buildings', u'three', u'strong', u'night', u'corridor', u'doctor', u'spring', u'building', u'dying', u'devil', u'professional', u'agricultural', u'doorway', u'year', u'investments', u'wife', u'pleasant', u'moist', u'trap', u'windows', u'walls', u'chairs', u'apartment', u'bed', u'repairs', u'inhabited', u'lad', u'Manor', u'parish', u'ventilator', u'gipsies', u'word', u'whistle', u'milk', u'safe', u'blows', u'fifty', u'fuller', u'journey', u'road', u'front', u'wheels', u'passage', u'utter', u'unpleasant', u'creases', u'descending', u'india', u'loss', u'machine', u'levers', u'leaking', u'boards', u'two', u'hedge', u'ponderous', u'county', u'beautiful', u'fugitives', u'second', u'machinery', u'highest', u'Duke', u'Grosvenor', u'Morning', u'noble', u'prizes', u'bride', u'common', u'attempts', u'friends', u'bridegroom', u'footmen', u'knees', u'lustrous', u'general', u'pea', u'pile', u'Arabian', u'afternoon', u'clergyman', u'change', u'foot', u'Metropolitan', u'banking', u'foremost', u'clerks', u'empire', u'gold', u'coronet', u'confidence', u'immense', u'precious', u'box', u'beryls', u'noise', u'disappearance', u'thirty', u'banker', u'sill', u'cupboard', u'lumber', u'jeweller', u'class', u'West', u'servants', u'struggle', u'kitchen', u'boot', u'receiver', u'Daily', u'early', u'blue', u'founder', u'child', u'features', u'acetones', u'farm', u'new', u'curses', u'impunity', u'deeds', u'cathedral', u'funniest', u'glass', u'scene', u'copper', u'third', u'thing', u'Tollers', u'parents', u'setting', u'barricade', u'disagreeable', u'sinister', u'Full', u'place', u'copyright', u'work', u'gross', u'full', u'works', u'state', u'Foundation', u'following'] -rather walk : [u'with'] -glance so : [u'simple'] -go away : [u".'"] -either. : [u'It'] -either, : [u'if'] -conduct, : [u'and'] -boy was : [u'putting'] -conduct. : [u'But'] -sodden grass : [u'twenty'] -stooped to : [u'the'] -subdued brightness : [u'through'] -pay and : [u'very'] -The panel : [u'had'] -and glances : [u'at'] -brave soldier : [u'.'] -She impressed : [u'me'] -Swain, : [u'of'] -greeting, : [u'with'] -highest pitch : [u'of', u','] -his conversation : [u'with'] -long shining : [u'waterproof'] -is known : [u'."'] -every quarter : [u'and', u'of'] -many hours : [u'a'] -About the : [u'same'] -old quarters : [u'at'] -dates, : [u'until', u'as'] -strike you : [u'."', u'as', u'?"'] -even the : [u'smallest', u'bark', u'fantastic', u'drawing'] -been cut : [u'off', u'near', u'to'] -afterwards returned : [u'to'] -some years : [u',', u'ago', u'the', u'.', u'I', u'back'] -promise were : [u'instituted'] -outlined against : [u'the'] -HAVE NO : [u'REMEDIES'] -defend himself : [u'and'] -very rich : [u'?"'] -will if : [u'you'] -actually saw : [u'him'] -less murderous : [u'than'] -of china : [u'and'] -grove at : [u'the'] -blanched with : [u'terror'] -had remarked : [u','] -so fixed : [u'a'] -of disguises : [u','] -immense litter : [u'of'] -trivial but : [u'characteristic'] -his speech : [u'before'] -the prizes : [u'which'] -Edgeware Road : [u'.'] -in grief : [u'came'] -to Hatherley : [u'Farm'] -something very : [u'bad', u'pressing'] -Quick, : [u'quick'] -peace, : [u'no', u'well'] -peace. : [u'I'] -light brown : [u'dustcoat'] -would often : [u'be'] -and louder : [u','] -your lad : [u'tugging'] -fate while : [u'indiscreetly'] -may have : [u'an', u'the', u'something', u'noticed', u'been', u'to', u'remarked', u'happened', u'a', u'referred', u'dated', u'deduced', u'remained', u'afforded', u'explained', u'some', u'any', u'heard', u'gone', u'planned', u'bordered'] -has proved : [u'that'] -wrote it : [u'was'] -strict principles : [u'of'] -hailed a : [u'four'] -her expression : [u'was'] -drawback is : [u'that'] -because the : [u'peculiar'] -never thought : [u'that'] -stepped over : [u'to'] -families in : [u'England'] -dear girl : [u'.'] -blocked with : [u'the', u'wooden'] -has put : [u'in'] -son came : [u'down'] -a magnifying : [u'lens'] -apartment. : [u'The', 'PP'] -all assembled : [u'round'] -with cotton : [u'wadding'] -foul of : [u'!'] -Toller to : [u'bear'] -quite master : [u'of'] -crawled swiftly : [u'backward'] -, thinks : [u'my'] -. Also : [u','] -How you : [u'startled'] -my real : [u'occupation', u'name'] -the London : [u'slavey', u'Road'] -the further : [u'end'] -typewritten. : [u'Look', u'In'] -lamp and : [u'examined', u'led'] -to mind : [u'about', u'anything'] -to mine : [u'."', u'and'] -might hardly : [u'yet'] -be led : [u'to'] -the splash : [u'of'] -is small : [u'for'] -but for : [u'the'] -I ventured : [u'a', u'to'] -kitchen rug : [u'.'] -could learn : [u','] -AND ANY : [u'DISTRIBUTOR'] -. Were : [u'it'] -made use : [u'of'] -! a : [u'murderous'] -. Two : [u'attempts', u'hansoms', u'thousand', u'days', u'hours', u'years'] -"' What : [u'then', u'would', u'do', u',', u'is', u'papers', u'are'] -thirty. : [u'Has', 'PP'] -light flashed : [u'upon'] -imagine what : [u'had', u'I'] -stamping machine : [u'which'] -still,' : [u'said'] -dilate with : [u'a'] -. Your : [u'recent', u'Majesty', u'task', u'right', u'wedding', u'own', u'wife', u'husband', u'life', u'windows', u'news', u'niece', u'skill', u'duties', u'advice'] -entertaining," : [u'said'] -will ask : [u'me'] -national property : [u'.'] -wing of : [u'the', u'Stoke'] -, ' K : [u'.'] -grasp of : [u'a', u'some', u'his'] -ten or : [u'twelve'] -will have : [u'for', u'carried', u'informed', u'nothing', u'a', u'the'] -man whom : [u'we', u'I'] -shall glance : [u'into'] -own income : [u','] -several printed : [u'editions'] -same corridor : [u'.'] -actionable from : [u'the'] -this fellow : [u'."', u'will', u'should'] -star, : [u'with'] -and wasteful : [u'disposition'] -man McCarthy : [u'.'] -articles upon : [u'begging'] -human thumb : [u'upon'] -though I : [u'see', u'was', u'repeatedly', u'saw', u'should', u'disregarded', u'very', u'presume', u'am', u'have'] -An elderly : [u'man'] -than either : [u'you'] -is needed : [u'.'] -shag. : [u'I'] -the blow : [u',', u'fell', u'which'] -twentieth part : [u'of'] -them ever : [u'since'] -day father : [u'struck'] -a partie : [u'carre'] -a sight : [u'as', u'.'] -darkness, " : [u'I'] -single handed : [u'against'] -60' : [u's'] -of much : [u'importance'] -wait,' : [u'she'] -metallic deposit : [u'all'] -and Stripes : [u'."'] -window not : [u'long'] -almost instantly : [u'expired'] -doubted that : [u'Frank'] -having lit : [u'it'] -worth?' : [u'I'] -his theory : [u'by'] -He didn : [u"'"] -Mademoiselle' : [u's'] -advanced slowly : [u'into'] -details. : [u'My', 'PP'] -details, : [u'but', u'which'] -good strong : [u'lock'] -and employees : [u'expend', u'are'] -pronounce as : [u'an'] -a level : [u'with'] -untamed beasts : [u'in'] -" Because : [u'she', u'it', u'he', u'there', u'you'] -which faced : [u'that'] -, imploring : [u'me'] -currently reported : [u'that'] -gently in : [u'the'] -hopeful eyes : [u','] -John Cobb : [u','] -YOU FOR : [u'ACTUAL'] -might die : [u'for'] -his features : [u'.', u'as'] -open drawers : [u','] -his direction : [u','] -You look : [u'cold', u'dissatisfied', u'at'] -Upon what : [u'point'] -white counterpaned : [u'bed'] -house being : [u'the'] -they must : [u'have'] -rifled jewel : [u'case'] -Horace, : [u'and'] -must not : [u'interfere', u'discourage', u'fear', u'sit', u'think'] -should be : [u'better', u'.', u'a', u'able', u'happy', u'pushed', u'ungrateful', u'at', u'alone', u'in', u'entangled', u'ashamed', u'exceedingly', u'rich', u'here', u'eaten', u'excellent', u'so', u'an', u'the', u'allowed', u'very', u'tied', u'surprised', u'immensely', u'compelled', u'putting', u'paid', u'taken', u'deeply', u'stopped', u'liberated', u'late', u'proud', u'glad', u'among', u',', u'ready', u'named', u'clearly'] -six hundred : [u'for'] -from?" : [u'He'] -and rich : [u'tint'] -he loved : [u'.', u'his'] -cabinet. : ['PP'] -yourself absolutely : [u'at'] -his conclusions : [u',"', u'.', u'were'] -a youngster : [u'of', u'I'] -long windows : [u'almost', u'reaching'] -consideration that : [u'we'] -of obtaining : [u'a'] -bed beside : [u'him'] -following you : [u'closely'] -the eBooks : [u','] -I help : [u'suspecting'] -Holmes, " : [u'that', u'I', u'the', u'your', u'it', u'are', u'you', u'and', u'is', u'to', u'here', u'for'] -before experienced : [u'.'] -directed, : [u'and'] -directed. : [u'Do'] -shortly take : [u'place'] -gloom, : [u'and', u'I', u'throwing'] -then?' : [u'I', u'said'] -High Street : [u','] -tomorrow evening : [u'.'] -"' Sold : [u'to'] -and ready : [u'traveller'] -was equally : [u'hot', u'clear'] -down its : [u'throat'] -nervous woman : [u'.'] -is situated : [u'at'] -uncongenial atmosphere : [u'.'] -machine to : [u'form'] -With much : [u'labour'] -the contents : [u'.', u'startled', u','] -terrorising of : [u'the'] -in far : [u'gone'] -before three : [u'.', u'o'] -the screen : [u'over'] -case in : [u'the', u'his'] -Toller will : [u','] -case is : [u'an', u'as', u'in', u'a', u'the'] -case it : [u'had', u'appears', u'does'] -our interview : [u','] -Without, : [u'however'] -It conveyed : [u'no'] -dress I : [u'knew'] -blackmailing or : [u'other'] -true state : [u'of'] -another little : [u'monograph', u'smudge'] -Then with : [u'a', u'his'] -and as : [u'much', u'he', u'my', u'I', u'tenacious', u'the', u'resolute', u'such', u'soon', u'noiselessly', u'Lord', u'his'] -the pressing : [u'danger'] -Bring me : [u'the'] -a union : [u'?"'] -answer forever : [u'.'] -the deuce : [u'that'] -myself with : [u'a', u'the', u'rage'] -enclosure here : [u'!"'] -fair to : [u'them'] -suit of : [u'heather'] -impetuous volcanic : [u','] -burned the : [u'papers'] -was merely : [u'the'] -track, : [u'isn'] -track. : [u'You', u'Very', u'The'] -already at : [u'breakfast'] -be invaluable : [u'."'] -daresay. : [u'There'] -the daughter : [u'as', u'of', u'who', u'could', u','] -give it : [u'away', u'all'] -a coquettish : [u'Duchess'] -a hunting : [u'crop'] -Bought. : ['PP'] -his attentions : [u'.'] -, leaving : [u'me'] -We could : [u'write', u'see'] -guardsmen took : [u'to'] -inspection. : [u'Our'] -sudden commission : [u'which'] -should tell : [u'anyone'] -touch of : [u'fluffy', u'red', u'colour'] -In her : [u'right'] -young fellow : [u','] -went for : [u'help'] -of none : [u'other'] -petered out : [u'and'] -matter quiet : [u'for'] -He leaned : [u'back'] -ideal reasoner : [u',"'] -can only : [u'touch', u'be', u'deduce', u'mean', u'say', u'claim'] -a guttering : [u'candle'] -. Since : [u'you'] -endeavoured in : [u'my', u'every'] -became consumed : [u'with'] -that Lord : [u'St'] -street, : [u'and', u'with'] -street. : [u'The', 'PP', u'May', u'Looking', u'We', u'Filled', u'There'] -brightness through : [u'the'] -his actions : [u'was', u'were'] -. Donations : [u'are'] -other methods : [u'."'] -Countess was : [u'accustomed'] -policeman, : [u'who', u'or'] -wish a : [u'smarter'] -make clear : [u'."'] -in lodgings : [u'in'] -was probably : [u'some', u'on'] -For goodness : [u"'"] -you about : [u'this', u'one'] -work has : [u'not'] -the traffic : [u'of', u','] -off another : [u'piece'] -livid spots : [u','] -the push : [u','] -. " Well : [u',', u',"', u'then'] -all was : [u'right', u'dark', u'silent', u'secure'] -old at : [u'the'] -have caught : [u'him', u'in', u'you'] -here or : [u'there'] -when viewed : [u','] -, thereby : [u'hangs'] -morning he : [u'was'] -drop until : [u'the'] -She states : [u'that'] -terrible event : [u'occurred'] -S. : [u'A', u'H', 'PP', u'federal', u'Fairbanks', u'laws', u'Hart', u'unless'] -here on : [u'the', u'this'] -wicked lust : [u'for'] -You know : [u'me', u'my', u'Peterson', u'what'] -darkness such : [u'an'] -grieved. : [u'But'] -sister, : [u'Miss'] -your inferences : [u'."', u'.'] -faults as : [u'no'] -attracted much : [u'attention'] -walk amid : [u'the'] -your casting : [u'vote'] -give in : [u'the'] -that dreadful : [u'time', u'vigil', u'snap'] -" Good : [u'night', u'evening', u'God', u'heavens', u'morning', u'day'] -find ourselves : [u'in'] -the barrel : [u'of'] -sister' : [u's'] -the different : [u'incidents'] -sister of : [u'the', u'mine', u'his'] -seriously to : [u'finding'] -resolutions. : [u'On'] -knees drawn : [u'up'] -footfall in : [u'the'] -. Every : [u'shade', u'morning', u'pocket', u'good', u'day'] -trap at : [u'the', u'a'] -He had : [u'risen', u'been', u'hardly', u'stood', u'even', u'made', u'a', u'always', u',', u'turned', u'no', u'for', u'foresight', u'remained', u'ceased', u'trained', u'set', u'evidently', u'nothing', u'returned'] -with mine : [u';'] -told from : [u'their'] -g," : [u'a'] -." As : [u'he', u'I', u'we'] -?' and : [u"'"] -baleful light : [u'sprang'] -true facts : [u'of'] -this strange : [u',', u'affair'] -seen so : [u'thin', u'suspicious'] -of Sherlock : [u'Holmes'] -is barred : [u'up'] -ordinary man : [u'could'] -Holmes stopped : [u'in'] -dooties, : [u'just'] -armchair amid : [u'his'] -some resistless : [u','] -a curtain : [u'in'] -the extraordinary : [u'announcement', u'story', u'circumstances'] -. McCauley : [u'cleared'] -doubtless among : [u'the'] -throw up : [u'his'] -Rucastle were : [u'both', u'married'] -were locked : [u'."'] -later she : [u'must'] -has arrived : [u'in'] -want the : [u'doctor'] -Valley tragedy : [u'.'] -penetrating grey : [u'eyes'] -Fowler being : [u'a'] -who gets : [u'it'] -much sense : [u'in'] -electric point : [u'in'] -the still : [u'more'] -further opportunities : [u'to'] -and hence : [u'also', u'it', u'my'] -raved in : [u'the'] -the stile : [u','] -either from : [u'the'] -an object : [u'of'] -last hear : [u'that'] -hotel where : [u'it'] -been intrusted : [u'to'] -the dearest : [u'old'] -, once : [u'more'] -his library : [u','] -can inform : [u'me'] -of charity : [u'descends'] -stepfather has : [u'offered'] -The whole : [u'party', u'garden'] -the weeks : [u'passed'] -night could : [u'not'] -, ' sent : [u'the'] -a subject : [u'or', u'to', u'of'] -kingdom of : [u'Bohemia'] -and leaning : [u'back'] -blue egg : [u'that'] -his sympathetic : [u'smile'] -insight into : [u'character', u'the'] -is excellent : [u'!"', u'.'] -having carried : [u'out'] -his lip : [u'from'] -a pawnbroker : [u"'"] -miserable story : [u'.'] -provided only : [u'that'] -wishes his : [u'agent'] -have gained : [u'on'] -put colour : [u'and'] -copyright in : [u'these', u'the'] -to calculate : [u'your'] -communicate with : [u'you', u'?"', u'her'] -this she : [u'bequeathed'] -now though : [u','] -identification number : [u'is'] -longer against : [u'the'] -my plan : [u'of'] -pressing which : [u'they'] -. By : [u'the', u'degrees', u'Jove', u'an', u'it', u'profession', u'its', u'a', u'reading'] -of electric : [u'blue'] -would give : [u'one', u'them', u'it', u'him', u'his', u'these', u'you', u'my'] -WORK To : [u'protect'] -means that : [u'it', u'no'] -. Nothing : [u'less', u'of', u'but', u'had', u'was', u'simpler', u'could', u'to'] -. Be : [u'in', u'one'] -" Done : [u'about'] -listen to : [u'."', u'another', u'her', u'.'] -the forbidden : [u'door'] -mole could : [u'trace'] -have devoted : [u'some'] -and eerie : [u'in'] -' parlance : [u'means'] -Walsingham de : [u'Vere'] -., of : [u'San'] -face was : [u'bent', u'of', u'pale', u'deadly', u'one'] -larger but : [u'with'] -second from : [u'Dundee'] -I gasped : [u'.'] -the lust : [u'of'] -charge of : [u'murder', u'the', u'having', u'it', u'sensationalism', u'a'] -village, : [u'and', u'all'] -Arabian Nights : [u','] -to you : [u',', u'."', u'.', u'that', u'before', u'for', u';', u'or', u'?"', u'how', u'Watson', u'in', u'I', u'to', u'now', u'?', u"?'", u':', u',"', u'within', u'may', u"'"] -clear the : [u'matter'] -such opening : [u'for'] -black and : [u'bitter', u'heavily'] -her geese : [u'for'] -longer about : [u'Mr'] -we call : [u'it', u'in'] -house. : [u'Once', u'I', u'Four', 'PP', u'What', u'It', u'As', u'Good', u'She', u'Julia', u'Holmes', u'The', u'There', u'We'] -house, : [u'of', u'for', u'announced', u'I', u'and', u'showing', u'which', u'he', u'you', u'it', u'with', u'but', u'Arthur', u'across', u'however', u'managed', u'whitewashed'] -speedy clearing : [u'up'] -until night : [u'should'] -whenever any : [u'copy'] -but the : [u'sequel', u'others', u'locality', u'blinds', u'coachman', u'greeting', u'course', u'work', u'door', u'letter', u'signature', u'cut', u'laugh', u'papers', u'facts', u'enclosure', u'lines', u'grime', u'dollars', u'man', u'elastic', u'fluffy', u'reward', u'stone', u'high', u'brandy', u'right', u'sudden', u'other', u'words', u'colonel', u'floor', u'remorseless', u'crash', u'gentleman', u'two', u'methods', u'father', u'woods'] -paleness in : [u'a'] -your process : [u'.'] -been this : [u'morning'] -it under : [u'the'] -so want : [u'a'] -call the : [u'police'] -criminal in : [u'London'] -clock Lestrade : [u'called'] -a refund : [u'from', u'of', u'.', u'in'] -dark red : [u','] -finger on : [u'it'] -!'-- you : [u'cannot'] -Simon' : [u's'] -7 and : [u'any'] -Simon, : [u'second', u'who', u'then', u'I', u'tapping', u'of', u'but'] -criminal it : [u'does'] -, moved : [u'the'] -was because : [u'I'] -overhear what : [u'they'] -fall foul : [u'of'] -to watch : [u'me', u'you'] -this not : [u'over'] -is said : [u'that', u'to'] -much astonished : [u','] -English window : [u'fasteners'] -home man : [u','] -in peace : [u'.', u','] -does go : [u'wrong'] -command our : [u'love'] -jaw, : [u'it'] -the mastiff : [u".'"] -At one : [u'side'] -implicate some : [u'of'] -The lash : [u','] -sofa," : [u'said'] -heaving chest : [u','] -Not more : [u'than'] -glimmer from : [u'beneath'] -and accomplishments : [u"?'"] -hurrying up : [u'the'] -hypothesis will : [u'lead'] -colour and : [u'life'] -once at : [u'our'] -who used : [u'to'] -ordered two : [u'glasses'] -carts were : [u'stirring'] -The last : [u'squire'] -Star, : [u'Pall'] -very extraordinary : [u'one'] -the desk : [u'?"'] -the misfortune : [u'to'] -assaulted me : [u'had'] -" More : [u'than'] -, uses : [u'a'] -doing there : [u'.', u"?'", u'at'] -suburban villas : [u','] -would talk : [u'if'] -ostrich feather : [u'over'] -receive a : [u'bird', u'more', u'refund'] -innocent he : [u'might'] -had caged : [u'up'] -quite beyond : [u'my'] -high wharves : [u'which'] -swept the : [u'matter'] -, impatient : [u'snarl'] -See paragraph : [u'1'] -entered he : [u'made'] -vagabonds leave : [u'to'] -me shiver : [u',"'] -waterproof to : [u'have'] -Date: : [u'April'] -he married : [u'the', u'my'] -future proceedings : [u'which'] -finished when : [u'Holmes'] -drawback which : [u'we'] -court yard : [u','] -me narrowly : [u'it'] -more the : [u'hand'] -quite committed : [u'myself'] -their hands : [u'at'] -includes information : [u'about'] -than Arthur : [u','] -before nine : [u'o'] -' 77 : [u','] -," it : [u'said'] -nervous hands : [u'together'] -signal to : [u'throw', u'us'] -the character : [u'of'] -. Esq : [u'.,'] -appeared in : [u'all'] -s Hall : [u'this', u'I'] -evidently all : [u'deserted'] -cut which : [u'I'] -unknown to : [u'you', u'him'] -is easterly : [u'I'] -for thousands : [u'?'] -nostrils were : [u'tinged'] -without reading : [u'it'] -for not : [u'doing', u'waiting'] -ran with : [u'her'] -possible with : [u'us'] -wooden chair : [u',', u'against', u'and'] -entirely wrong : [u'scent'] -2001, : [u'the'] -and jovial : [u'as'] -and beneath : [u'were'] -never mind : [u'about', u'that'] -They may : [u'rest', u'do', u'be'] -the complete : [u'truth'] -early tide : [u'this'] -crime committed : [u','] -confided it : [u'to'] -we going : [u','] -whose name : [u'is', u',', u'has'] -End called : [u'Westaway'] -coloured shirt : [u'protruding'] -kept two : [u'servants'] -You cannot : [u'say', u'imagine'] -blow fell : [u'.', u'in'] -that date : [u".'"] -I much : [u'prefer'] -rigid attitude : [u','] -, 117 : [u','] -sweetly. " : [u'It'] -Doctors' : [u'Commons'] -limit on : [u'the'] -" Defects : [u',"'] -clearly and : [u'concisely', u'kindly'] -How many : [u'?'] -been wrongfully : [u'hanged'] -wife that : [u'he'] -nez to : [u'his'] -an equally : [u'uncompromising'] -wasn' : [u't'] -do for : [u'you'] -would fly : [u'at'] -oil and : [u'heated'] -a grave : [u'face'] -' You : [u'have'] -a candle : [u'.', u'in'] -in business : [u'for', u'a'] -not wait : [u'and'] -fragment in : [u'the'] -or otherwise : [u','] -away to : [u'you', u'consult', u'Paddington', u'his', u'your', u"'", u'the', u'some'] -abnormal, : [u'though'] -that bed : [u'?"'] -through at : [u'the'] -the principal : [u'room', u'London', u'points', u'things'] -of derivative : [u'works'] -this fashion : [u':', u",'"] -have dishonoured : [u'me'] -yet a : [u'saucer'] -this noised : [u'abroad'] -carry that : [u'feeling'] -a vulgar : [u','] -escapade with : [u'her'] -shall approach : [u'this'] -a basin : [u'.'] -yet I : [u'believe', u'am', u'question', u'had', u'need', u'know', u'in', u'knew', u'could'] -companions. : [u'Ferguson'] -there fell : [u'a'] -certainly be : [u'you', u'there'] -keep it : [u'only'] -notice of : [u'such', u'it'] -beyond myself : [u'.'] -even as : [u'I', u'science', u'mine'] -powers to : [u'determine'] -quarters of : [u'the'] -you lived : [u'a'] -sin than : [u'does'] -possibly have : [u'come', u'been', u'concealed'] -etc., : [u'etc'] -you would : [u'have', u'just', u'go', u'do', u'not', u'call', u'guess', u'agree', u'wish', u',', u'slip', u'kindly', u'like', u'be', u'really', u'understand', u'never', u'facilitate'] -he. " : [u'Read', u'Yes', u'You', u'Was', u'I', u'And', u'Have', u'It', u'May', u'Just', u'By', u'But', u'When', u'Ah', u'To', u'Pray', u'That', u'Only'] -my years : [u'nor'] -boxes which : [u'have'] -velvet, : [u'lay'] -be described : [u'.'] -heaven' : [u's'] -ever done : [u'yet', u'.'] -job in : [u'my'] -gain that : [u'by'] -steamboats. : [u'The'] -our foreman : [u','] -the literature : [u'of'] -baffled his : [u'analytical'] -really done : [u'very'] -join a : [u'Sunday'] -which shall : [u'be'] -worn through : [u'at'] -hollow in : [u'the'] -collar nor : [u'necktie'] -caught up : [u'an', u'a'] -rural place : [u'.'] -was cracked : [u','] -told me : [u'that', u'I', u',', u'.', u'to', u'of', u'some', u'all', u'by', u". '", u'how', u'in'] -calling so : [u'late'] -dropped his : [u'gloves', u'goose'] -a barmaid : [u'in'] -few governesses : [u'in'] -?" asked : [u'Holmes', u'the', u'Sherlock', u'this', u'Bradstreet'] -hair grew : [u'low'] -who our : [u'client'] -cannot escape : [u','] -Rucastle then : [u','] -that lay : [u'upon'] -wrist and : [u'pushed', u'braced'] -, announced : [u'the'] -principal room : [u','] -the tunes : [u'which'] -misses me : [u'so'] -drove one : [u'of'] -It missed : [u'him'] -Holmes looked : [u'deeply'] -Square is : [u'serious'] -wishes that : [u'she'] -days following : [u'each'] -much annoyance : [u'upon'] -and asked : [u'me', u'several', u'about'] -discover that : [u'there'] -this time : [u'I', u'?"', u'.', u'the'] -' you : [u'want', u'think', u'see', u'seem'] -, finally : [u'returning', u','] -your practice : [u','] -rose from : [u'his', u'my'] -the tattered : [u'object'] -I asks : [u'.'] -his excitement : [u'.'] -other work : [u'associated'] -certainly cleared : [u'up'] -in high : [u'spirits'] -any emotion : [u'akin'] -surprise the : [u'question'] -became entangled : [u'with'] -fowls for : [u'the'] -very thick : [u','] -ran swiftly : [u',', u'across'] -in it : [u'.', u',', u'had', u'which', u'."', u'I', u'?"'] -of uneasiness : [u'began'] -Street once : [u'more'] -of keeping : [u'her'] -King Edward : [u'Street'] -of which : [u'I', u'his', u'a', u'Mr', u'he', u'ended', u'was', u'were', u'the', u'would', u'my', u'are'] -I cared : [u'to'] -in in : [u'the', u'safety'] -those. : [u'Then'] -gave to : [u'that'] -represented the : [u'difference'] -his knowledge : [u';'] -you verify : [u'them'] -all traces : [u'were', u'of'] -blundering of : [u'a'] -live, : [u'then', u'sir'] -turned to : [u'lead', u'the', u'speak', u'water', u'his', u'me'] -railway cases : [u'were'] -lamp on : [u'the'] -yards, : [u'however'] -grounds of : [u'my'] -inception and : [u'so'] -if she : [u'were', u'could', u'died', u'had'] -The copyright : [u'laws'] -Clair through : [u'the'] -and left : [u'us', u'a', u'both', u'the', u'her'] -us could : [u'hardly'] -, elderly : [u'gentleman'] -in having : [u'an', u'every'] -clearly not : [u'only'] -which closed : [u'the'] -porter was : [u'on'] -penetrating dark : [u'eyes'] -son had : [u'returned', u'no'] -, wrinkled : [u','] -task more : [u'difficult'] -not and : [u'am'] -From Dundee : [u",'"] -his every : [u'mood'] -either of : [u'the', u'us'] -a quavering : [u'voice'] -They come : [u','] -throughout three : [u'continents'] -warmly. " : [u'All'] -' scales : [u'of'] -you leave : [u',', u'it'] -degrees he : [u'made'] -most refreshingly : [u'unusual'] -not alone : [u'.'] -THE NOBLE : [u'BACHELOR'] -into the : [u'texture', u'room', u'bedroom', u'church', u'streets', u'house', u'crowd', u'street', u'sitting', u'drawing', u'very', u'cellar', u'office', u'city', u'chair', u'habit', u'dull', u'fire', u'bargain', u'case', u'nearest', u'open', u'glade', u'clutches', u'air', u'meadow', u'pool', u'whole', u'long', u'brass', u'greasy', u'river', u'pockets', u'apartment', u'bright', u'lock', u'papers', u'Thames', u'same', u'frosty', u'darkness', u'cab', u'goose', u'back', u'manifold', u'corridor', u'chamber', u'crackling', u'fireplace', u'massive', u'whitewashed', u'inner', u'silence', u'pit', u'iron', u'water', u'secret', u'carriage', u'hall', u'gloom', u'garden', u'station', u'hands', u'greatest', u'pew', u'breakfast', u'bag', u'breast', u'Park', u'most', u'easy', u'right', u'stable', u'dining', u'matter', u'glass', u'armchair', u'snow', u'advertisement', u'little', u'moonshine', u'shadow', u'quarters', u'arms', u'empty', u'affair', u'character'] -carried my : [u'takings'] -shouts of : [u'some'] -terribly agitated : [u'.'] -can very : [u'well'] -the deadliest : [u'snake'] -carry our : [u'researches'] -carry out : [u'my', u'that', u'its'] -to fetch : [u'the'] -of suburban : [u'villas'] -domain in : [u'the'] -Holmes? : [u'Do'] -trousers and : [u'shirt'] -Holmes; : [u'and', u'I', u'you'] -a way : [u'as', u'that'] -Holmes' : [u'succinct', u'quick', u'hunting', u'cases', u'attention', u'insight', u'request', u'requests', u'room', u'surmise', u'finger', u'example', u'fears', u'ingenuity', u'judgment', u'thin', u'face'] -strange creature : [u'which'] -Holmes! : [u'The'] -The smell : [u'of'] -continued. " : [u'I', u'The'] -Holmes, : [u'by', u'who', u'settling', u'shutting', u'as', u'staring', u'I', u'Esq', u'one', u'relapsing', u'for', u'especially', u'and', u'shoving', u'but', u'sinking', u'standing', u'buttoning', u'sir', u'taking', u'throwing', u'laughing', u'with', u'when', u'rising', u'stepping', u'unlocking', u'do', u'without', u'answering', u'folding', u'bending', u'laying', u'you', u'flicking', u'nodding', u'that', u'"', u'pointing', u'reaching', u'leaning', u'the', u'shading', u'after', u'pulling', u'springing', u'before', u'stretching', u'yawning', u'smiling', u'came', u'rubbing', u'which', u'going', u'tossing', u'my', u'glancing', u'in', u'how', u'from', u'looking', u'rather'] -I stay : [u'at'] -Holmes. : ['PP', u'Then', u'From', u'I', u'Here', u'"', u'We', u'He', u'It', u'For', u'Step', u'This', u'Flora', u'Where', u'My'] -successive heirs : [u'were'] -starting a : [u'chase'] -of bread : [u','] -tender and : [u'quiet'] -, unlocked : [u'the'] -my suspicions : [u'depend'] -transpired, : [u'the'] -his claws : [u'upon'] -be rich : [u'men'] -stealthily open : [u'the'] -jerking his : [u'thumb'] -both my : [u'hat', u'friend'] -immensely obliged : [u'to'] -and indulge : [u'yourself'] -Hosmer again : [u'.'] -So tall : [u'was'] -sinister way : [u'I'] -with terror : [u','] -and shrugged : [u'his'] -feather in : [u'a'] -then walk : [u'to'] -matter was : [u'so', u'perfectly', u'serious'] -his own : [u'delicate', u'high', u'establishment', u'keen', u'hands', u'little', u'eyes', u'arrest', u'statement', u'inner', u',', u'brother', u'thoughts', u'strength', u'."', u'save', u',"', u'before', u'request', u'family'] -www. : [u'gutenberg', u'pglaf'] -me always : [u'to'] -suddenly snapped : [u','] -successful banking : [u'business'] -little whim : [u'.'] -ensue if : [u'any'] -. Running : [u'up'] -even knew : [u'that'] -splashed and : [u'pattered'] -Miss Sutherland : [u"'", u'?"', u'has', u'to'] -Lane on : [u'her'] -of campaign : [u'.'] -her marriage : [u'would'] -great hurry : [u','] -you her : [u'photograph'] -one dreadful : [u'shriek'] -dare to : [u'conceive', u'meddle'] -the shock : [u'.'] -like whipcord : [u'in'] -all save : [u'the'] -refused him : [u'.'] -of affairs : [u',"', u'without'] -learning and : [u'letters'] -extraordinary energy : [u'in', u'.'] -matter shortly : [u'to'] -the turf : [u','] -to buy : [u'so', u'their', u'the'] -a picture : [u'does', u'of'] -At eleven : [u'o'] -being terribly : [u'agitated'] -a brisk : [u'tug'] -lecture me : [u'upon'] -d give : [u'me'] -someone with : [u'me'] -terribly. : [u'I'] -retained until : [u'this'] -our party : [u'is'] -If not : [u','] -having ever : [u'recovered', u'seen', u'consented'] -hardly imagine : [u'a'] -great a : [u'contrast', u'length'] -ARAT," : [u'I'] -perpetrators. : [u'For'] -his keen : [u',', u'and'] -transform myself : [u'into'] -dreadfully still : [u'in'] -all just : [u'as'] -Looking over : [u'his'] -shutters for : [u'the'] -the public : [u'press', u'prints', u',', u'domain'] -rooms up : [u'there'] -He waved : [u'his'] -wore those : [u'boots'] -a populous : [u'neighbourhood'] -hopeless attempt : [u'at'] -effect is : [u'much'] -should proceed : [u'to'] -lady with : [u'such'] -not selfishness : [u'or'] -no man : [u',', u'on'] -He seems : [u'a'] -, St : [u'.'] -a gentleman : [u'walks', u'who', u'sprang', u'called', u'named', u',', u'seated', u'waiting', u'staying', u'in', u'by', u'down'] -very heart : [u'.'] -it said : [u', "', u'. "'] -bag from : [u'under'] -bent downward : [u','] -limbs as : [u'a'] -strange disappearance : [u'of'] -jest in : [u'his'] -head the : [u'night'] -your circle : [u'of'] -, ST : [u'.'] -few nights : [u'I'] -before midnight : [u'.'] -horrible enough : [u'.'] -wouldn' : [u't'] -I look : [u'at'] -humdrum routine : [u'of'] -deadliest enemy : [u'.'] -hansom, : [u'Watson', u'but', u'driving'] -plumber' : [u's'] -freckled like : [u'a'] -derivative works : [u',', u'based'] -. Air : [u'and'] -early days : [u'of'] -lip, : [u'and', u'a', u'so'] -are sound : [u'in', u','] -lip. : [u'Well'] -and through : [u'a'] -wife was : [u'on', u'standing', u'twenty', u'the'] -me some : [u'weeks'] -sobbed upon : [u'her'] -idea of : [u'the', u'murder', u'a', u'using', u'amusement'] -gentleman in : [u'place', u'the'] -engaging a : [u'bedroom'] -the ring : [u'?"'] -OF REPLACEMENT : [u'OR'] -meetings of : [u'the'] -find something : [u'to'] -to little : [u'Edward'] -Where did : [u'he', u'you'] -rested upon : [u'the', u'a', u'Neville'] -peaceful beauty : [u'of'] -, ' first : [u'to'] -should wish : [u'to'] -and fallen : [u'in'] -come so : [u'suddenly'] -marriage market : [u','] -s door : [u'was', u'just', u'.'] -pushed as : [u'far'] -looking over : [u'the', u'my'] -more terrible : [u'than'] -a steep : [u'flight'] -walks, : [u'but'] -How, : [u'in'] -," observed : [u'Holmes', u'Mr', u'Bradstreet'] -may grow : [u'lighter'] -cannot undertake : [u'to'] -magnificent specimen : [u'of'] -take them : [u'at'] -whom McCarthy : [u'expected'] -powers in : [u'the'] -from side : [u'to'] -its repulsive : [u'ugliness'] -want your : [u'help', u'co', u'opinion'] -format must : [u'include'] -room what : [u'I'] -remained for : [u'three'] -them go : [u'at'] -and go : [u'together', u'to'] -his failing : [u'had'] -just didn : [u"'"] -and paced : [u'up', u'about'] -at last : [u',', u'flung', u'he', u', "', u'. "', u'hear', u'pointing', u'my', u'.', u'before', u'successful', u'pa', u'on', u'with', u'I'] -whatever happened : [u'I', u','] -favour and : [u'you'] -ago I : [u'bought', u'was'] -something just : [u'a'] -pouring from : [u'my'] -would only : [u'change', u'have'] -bizarre without : [u'being'] -, 1888 : [u'I'] -panoply she : [u'peeped'] -but that : [u'he', u'the', u'was', u'of', u'didn'] -, 1883 : [u'a', u'.'] -, 1884 : [u'there'] -its beauty : [u'during'] -brush are : [u','] -of Florida : [u'for'] -Not invisible : [u'but'] -written to : [u'me', u'him'] -is confined : [u'to'] -, imbedded : [u'in'] -stood in : [u'the', u'one'] -Under Secretary : [u'for'] -be less : [u'private', u'than'] -hand on : [u'either'] -Has he : [u'come'] -putting myself : [u'in'] -: 1 : [u'.'] -permanent impression : [u'upon'] -and loudly : [u'as'] -smile. : [u'I'] -drawn to : [u'it'] -smile, : [u'and'] -leads on : [u'to'] -doors of : [u'the'] -until to : [u'morrow'] -would respond : [u'to'] -we rushed : [u'into'] -doors on : [u'each'] -to typewrite : [u'them'] -letters back : [u'."'] -gone against : [u'my'] -do so : [u'.', u'."', u'much', u'as', u"?'", u'want', u".'", u','] -constable was : [u'watching'] -manner had : [u'shaken'] -gone by : [u'that'] -appeared with : [u'a'] -I learned : [u'by'] -hour or : [u'more', u'so'] -I surveyed : [u'this'] -pack at : [u'once'] -Society, : [u'who'] -and confided : [u'it'] -gently. " : [u'You'] -not commonly : [u'become'] -? Tell : [u'us'] -descends into : [u'the'] -grasped one : [u'fact'] -hour of : [u'the', u'her'] -compasses drawing : [u'a'] -present case : [u'is'] -indeed?" : [u'murmured'] -Kindly hand : [u'me'] -to tackle : [u'facts', u'the'] -preoccupied with : [u'business'] -: I : [u'should', u'am', u'must', u'understand', u'was'] -Street cells : [u','] -safely say : [u',"'] -shortly and : [u'yet'] -fear. : ['PP'] -fear, : [u'that', u'a', u'Mr', u'and'] -is peculiarly : [u'strong'] -too far : [u'for'] -amount, : [u'but'] -I soon : [u'found', u'managed', u'devised', u'had'] -of gear : [u'.'] -the earliest : [u'risers'] -brought some : [u'traces'] -to control : [u'.'] -stone steps : [u','] -had long : [u'been'] -dying from : [u'a'] -swinging an : [u'old'] -having letters : [u'from'] -hands softly : [u'together'] -possible bearing : [u'upon'] -your consideration : [u'."'] -friend rose : [u'and', u'lazily', u'now'] -texture of : [u'the'] -about for : [u'the'] -your written : [u'explanation'] -little better : [u'repair'] -Lancaster Gate : [u'which', u','] -never so : [u'truly', u'much'] -position; : [u'yet'] -Tuesday, : [u'he'] -be consulted : [u'.'] -, quite : [u'unusual'] -, where : [u'there', u'four', u'a', u'all', u'we', u'more', u'the', u',', u'I', u'strangers', u'he', u'you', u'is', u'she', u'breakfast', u'pa', u'Boots'] -English paper : [u'at'] -my first : [u'inquiries', u'duty', u'impression', u'real'] -imitate my : [u'companion'] -Roylott of : [u'Stoke'] -followed on : [u'down'] -and quick : [u'tempered', u'march'] -position. : [u'He', 'PP', u'We', u'Draw'] ---" but : [u'there'] -position, : [u'and'] -what have : [u'you', u'I'] -only now : [u'that'] -offer an : [u'opinion'] -our throats : [u'.'] -indeed was : [u'nodding'] -my writings : [u'.'] -cannot possibly : [u'leave'] -evident, : [u'therefore'] -not less : [u'than'] -grew richer : [u'I'] -practical jokes : [u','] -for Streatham : [u'together'] -Listen to : [u'this'] -, third : [u','] -may I : [u'ask'] -lips and : [u'glancing', u'the'] -No, : [u'no', u'my', u'sir', u'I', u'that', u'for', u'he', u'it', u'finished', u'your', u'but', u'she', u'distinctly', u'alone', u'thank', u'his', u'the'] -knees seemed : [u'to'] -No. : [u'4', 'PP', u'31', u'His', u'2', u'What', u'They', u'If'] -four wheeler : [u',', u'drove', u'and', u'which'] -hand me : [u'down', u'over', u'my'] -followed the : [u'winding', u'sign'] -Then there : [u'was', u'is', u'are'] -its true : [u'value'] -nearly every : [u'evening'] -No; : [u'I', u'but', u'a', u'we'] -twisted poker : [u'into'] -know them : [u'.'] -excellent lining : [u'.'] -and light : [u'coloured', u'heel'] -obvious that : [u'the', u'you', u'no', u'he'] -turned over : [u'upon', u'a', u'the'] -see James : [u'.'] -reckless, : [u'ready'] -at about : [u'11'] -their whereabouts : [u'.'] -out ready : [u'for'] -that help : [u'you'] -of all : [u'that', u',', u'our', u'knowledge', u'others', u'.', u'the', u'those', u'these', u'details'] -there another : [u'with'] -rope which : [u'hung'] -curious chance : [u'you'] -be up : [u','] -prisoner passionately : [u'. "'] -Aberdeen Shipping : [u'Company'] -great widespread : [u'whitewashed'] -tell the : [u'truth'] -My companion : [u'sat', u'noiselessly'] -almost no : [u'restrictions'] -and becomes : [u'the'] -our way : [u'over', u'downstairs', u'a', u'among', u'home', u'to', u'in'] -recognised as : [u'Peter'] -the bush : [u','] -chances being : [u'in'] -snow which : [u'might'] -to Turner : [u',', u"'"] -Jones from : [u'the'] -not help : [u'laughing', u'me', u'commenting', u'overhearing', u'suspecting', u'remarking'] -my body : [u'in'] -himself in : [u'a', u'an', u'the', u'practice', u'this'] -guilty parties : [u'."'] -groomed and : [u'trimly'] -remark upon : [u'short'] -given its : [u'name'] -shall either : [u'confirm'] -interposed, " : [u'your'] -behind a : [u'sliding', u'tiny', u'tree', u'curtain', u'small'] -neither collar : [u'nor'] -my wooing : [u','] -he stretched : [u'out'] -my taste : [u'than'] -., but : [u'its'] -apology to : [u'me', u'that'] -coldly grasped : [u'that'] -of beauties : [u'.'] -accept it : [u'.'] -glove. : [u'You'] -truth is : [u'known'] -Turner' : [u's'] -carried a : [u'broad', u'black'] -that breakfast : [u'table'] -ANY KIND : [u','] -can know : [u'nothing'] -" Please : [u'be'] -ally, : [u'the'] -used by : [u'the'] -me. ' : [u'I', u'Not', u'Perhaps'] -asked Sherlock : [u'Holmes'] -raising money : [u'to'] -me. " : [u'I'] -VII. : [u'The', u'THE'] -these days : [u'on', u'of'] -for?" : [u'he', u'He'] -doubt strike : [u'you'] -as intuitions : [u','] -paid a : [u'fee'] -Street Post : [u'Office'] -as much : [u'information', u'."', u',"', u'for', u'as', u'individuality', u'sense', u'knowledge', u'.', u'a', u'in', u'depends'] -pavement always : [u'means'] -could ha : [u"'"] -skylight which : [u'let'] -of loans : [u','] -bird it : [u'proved'] -it now : [u',"', u",'"] -it not : [u'a', u'strike', u'been', u'only', u'as', u'for', u'that', u'absolutely', u'obvious', u'possible', u'extraordinary'] -of supplementing : [u'before'] -you hope : [u'to'] -a girl : [u'of', u'.'] -wandered about : [u'the'] -to chin : [u','] -am armed : [u'."'] -go slowly : [u'through'] -there been : [u'women'] -five minutes : [u'tweed', u'to', u'afterwards', u'."', u'past', u'was', u".'", u'!'] -proof with : [u'which'] -myself up : [u'entirely', u'and'] -boots I : [u'didn'] -peculiar shade : [u'of'] -and scenery : [u'perfect'] -Jack in : [u'office'] -rests upon : [u'their'] -the endless : [u'succession'] -sots, : [u'as'] -smear of : [u'ink'] -a case : [u'of', u'as', u'upon', u','] -further interest : [u'in'] -himself and : [u'rubbed', u'earn', u'stretched', u'towards', u'his', u',', u'lit'] -format used : [u'in'] -no attempt : [u'to'] -upon their : [u'past', u'mission', u'track'] -fellow men : [u'."'] -gross profits : [u'you'] -ll serve : [u'you'] -This strange : [u','] -assertion that : [u'she'] -wings the : [u'windows'] -He placed : [u'his'] -far. : ['PP'] -delicate and : [u'finely'] -a butcher : [u"'"] -Mr. : [u'Godfrey', u'John', u'Sherlock', u'Holmes', u'Wilson', u'Jabez', u'Duncan', u'William', u'Jones', u'Merryweather', u'Hosmer', u'Windibank', u'Hardy', u'Angel', u'James', u'Charles', u'Turner', u'McCarthy', u'Lestrade', u'Fordham', u'Isa', u'St', u'Neville', u'Henry', u'Baker', u'Breckinridge', u'Cocksure', u'Windigate', u'Ryder', u'Armitage', u'Hatherley', u'Victor', u'Ferguson', u'Jeremiah', u'Aloysius', u'Doran', u'and', u'Moulton', u'Holder', u'Rucastle', u'Fowler'] -shall you : [u'be'] -as had : [u'been'] -or stopping : [u'the'] -smiling, " : [u'and', u'perhaps', u'I'] -last echoes : [u'of'] -smiling, ' : [u'it'] -chin in : [u'some'] -but perhaps : [u'it'] -Omne ignotum : [u'pro'] -of everyday : [u'life'] -the sombre : [u'thinker'] -your hat : [u'and', u','] -had happened : [u'but', u',', u'.'] -improving his : [u'mind'] -over those : [u'papers'] -come again : [u'whenever', u'of'] -flight of : [u'winding', u'steps'] -complain of : [u',', u'.'] -forehead three : [u'times'] -comforted her : [u'by'] -a listless : [u'way'] -intuition, : [u'until', u'fastening'] -me where : [u'you', u'it', u'she'] -turn upon : [u'its'] -a year : [u',', u'in', u'which', u'and', u'ago', u".'", u'.'] -mysterious and : [u'inexplicable'] -stable lane : [u'.', u'now', u'?"', u'a'] -claim jumping : [u'which'] -Arms where : [u'a'] -yet quite : [u'clear'] -Then put : [u'on'] -own arrest : [u','] -drop in : [u'from'] -Forgery. : ['PP'] -jet of : [u'steam'] -thing to : [u'do', u'have'] -as he : [u'entered', u'could', u'turned', u'reached', u'lay', u'was', u'noticed', u'came', u'released', u'held', u'would', u'has', u'threw', u'had', u'passed', u'remarks', u'sat', u'paced', u'knew', u'.', u'took', u'ordered', u'is', u'finished', u'leaned', u'spoke', u'did', u'folded', u'walked', u'swept', u'said', u'looked'] -man is : [u'aware'] -church door : [u',', u'he'] -man it : [u'is'] -despair; : [u'but'] -nicely upon : [u'an'] -man in : [u'London', u'the', u'some', u'a'] -limbs came : [u'staggering'] -despair. : ['PP', u'It'] -were compelled : [u'to'] -ST. : [u'SIMON'] -we go : [u'farther', u'.'] -certain arguments : [u','] -or fresh : [u'?"'] -been always : [u'locked'] -returned some : [u'years'] -week I : [u'was'] -dog cart : [u'dashed', u',', u'which', u'at', u'to'] -the Ku : [u'Klux'] -open upon : [u'the'] -ejaculation caused : [u'me'] -turf, : [u'until'] -no one : [u'in', u'there', u'near', u'else', u'to', u'can', u'was', u'upon', u'hinders', u'being', u'could', u'owns'] -had risen : [u'out', u'from', u'and'] -to France : [u'upon', u'again', u'?"', u'were'] -was set : [u'out', u'on'] -cab within : [u'two'] -Look at : [u'the'] -my cashier : [u','] -is she : [u'to'] -yet see : [u'any'] -had spoken : [u'to'] -disturbed you : [u'."'] -' 89 : [u','] -police appeared : [u'."'] -his natural : [u'manner', u'habit'] -and wedding : [u','] -innocent aspect : [u'.'] -flying westward : [u'at'] -London which : [u'charge'] -lines of : [u'dingy', u'villas', u'dun'] -the flaring : [u'stalls'] -such narratives : [u','] -yet returned : [u'.'] -all into : [u'a'] -necessitate very : [u'prompt'] -, thickening : [u'into'] -, kind : [u'old'] -the lines : [u'of'] -doubts which : [u'may'] -gathered from : [u'a'] -dreadful position : [u'in'] -here always : [u'.'] -pence every : [u'week'] -remains Mrs : [u'.'] -carriage but : [u'my'] -dreams and : [u'was', u'sensations'] -a wire : [u'.'] -his had : [u'the'] -child one : [u'dear'] -lose a : [u'minute'] -loudly protesting : [u','] -this matter : [u'."', u',', u'is', u'over', u'?"', u'probed', u'really', u'as', u'like', u'than'] -And Irene : [u'Adler'] -take for : [u'the'] -his hat : [u'. "', u',', u'."', u'?"', u'.', u'in', u'actually', u'pulled', u'drawn'] -As governess : [u"?'"] -different directions : [u',', u'until'] -taken the : [u'printed', u'place'] -door behind : [u'me', u'him'] -good pawnbroker : [u'is'] -arm back : [u'into'] -on there : [u',"'] -summer than : [u'for'] -, explained : [u'the'] -warm over : [u'such'] -time, : [u'raise', u'but', u'my', u'he', u'and', u'or', u'though', u'for', u'while', u'from', u'Watson', u'chatting', u'so', u'at', u'saw', u'I', u'with', u'day'] -time. : [u'It', u'You', u'If', 'PP', u'Mr', u'This', u'His', u'Is', u'Instead', u'When', u'Ferguson', u'Now'] -neat hedges : [u'stretching'] -time! : [u'That'] -made inquiries : [u'as'] -; " pray : [u'go'] -fly, : [u'Mr'] -company of : [u'people', u'the'] -fly. : [u'Such', 'PP'] -better classes : [u'of'] -index, : [u'Doctor', u'in'] -already regretted : [u'having'] -task to : [u'find'] -, shoving : [u'him'] -second half : [u'of'] -Put the : [u'papers'] -hours." : [u'He'] -went as : [u'well', u'fast'] -the roofs : [u','] -careful to : [u'the'] -in all : [u'his', u'your', u'its', u'the', u'this', u'walks', u'50'] -passing. " : [u'In'] -deserved your : [u'warmest'] -her chair : [u'with'] -the court : [u'to', u'yard'] -accessible by : [u'the'] -will end : [u'in'] -a permanent : [u'impression'] -my very : [u'great', u'soul', u'heart'] -bearing assured : [u'.'] -lives in : [u'the'] -Every shade : [u'of'] -brought together : [u'by'] -sulking. : [u'Giving'] -but he : [u'was', u'pushed', u'would', u'has', u'is', u'wouldn', u'never', u'almost', u'had', u'looked', u'passed', u'first', u'pointed', u'half', u'assures', u'still', u'plunged', u'always', u'slept', u'swept', u''] -hard it : [u'was'] -mirror. : [u'Holmes'] -advertisement which : [u'will'] -horrify me : [u'."', u'!"'] -off once : [u'more'] -brought her : [u',', u'over'] -keenest interest : [u'.'] -wondering lazily : [u'who'] -stand erect : [u','] -enters port : [u',"'] -What would : [u'be', u'he'] -ever heard : [u'of', u'my', u'anyone', u'Lord'] -is Vincent : [u'Spaulding'] -perched himself : [u'upon', u'cross'] -pawnbroker out : [u'of'] -post a : [u'letter'] -Wedlock suits : [u'you'] -thought over : [u'the', u'it'] -This, : [u'I'] -medical instincts : [u'?', u'rose'] -what this : [u'young', u'new'] -heh. : ['PP'] -smiled. : ['PP'] -smiled, : [u'but'] -have endeavoured : [u'in'] -else I : [u'can'] -compilation copyright : [u'in'] -Cannon Street : [u'every'] -protruding through : [u'the'] -of trifles : [u'."'] -still shook : [u'my'] -, leaning : [u'back'] -boy all : [u'might'] -Presently she : [u'emerged'] -short interview : [u','] -curiosity. : [u'I', u'It'] -weigh very : [u'heavily'] -judgment and : [u'discretion'] -( or : [u'any', u'are', u'by'] -smell of : [u'hot', u'hydrochloric', u'the', u'burning', u'drink'] -victory in : [u'the'] -ran away : [u'and'] -that radius : [u','] -proposed that : [u'we'] -groan of : [u'disappointment'] -the Arnsworth : [u'Castle'] -the guidance : [u'of'] -property under : [u'his'] -to complain : [u'of'] -He suddenly : [u'sprang'] -continuously into : [u'the'] -known something : [u'of'] -quick eye : [u'took', u'for'] -a plot : [u','] -terribly anxious : [u','] -Now carry : [u'out'] -hide the : [u'discoloured'] -something grey : [u'in'] -sitting with : [u'a'] -both hat : [u'and'] -elbows upon : [u'the', u'his'] -which sparkled : [u'upon'] -Gladstone bag : [u'.', u'as'] -whether to : [u'attempt', u'claim'] -us through : [u'the'] -pleasant to : [u'have', u'me'] -absolute stillness : [u','] -small dog : [u'lash'] -a remarkable : [u'man', u'brilliant'] -in Aberdeen : [u'some'] -horror. : [u'I', u'It'] -tugged at : [u'me', u'the'] -horror, : [u'there', u'ran'] -to theorize : [u'before'] -of delirium : [u','] -sprung from : [u'his'] -not extraordinary : [u'?'] -a remarkably : [u'handsome'] -variety," : [u'he'] -is anything : [u'very', u'else', u'in'] -VALLEY. : ['PP'] -but which : [u'I', u'have'] -business been : [u'attended'] -to Boscombe : [u'Pool'] -black linen : [u'bag'] -sinister result : [u'for'] -, displayed : [u','] -I deduce : [u'it'] -relative, : [u'which'] -battle, : [u'and'] -, looks : [u'upon'] -pay a : [u'royalty'] -an innocent : [u'man', u'human'] -had divined : [u'that'] -black lines : [u','] -of order : [u','] -there jutted : [u'out'] -dwelling. : [u'On'] -been far : [u'too'] -race meetings : [u'of'] -front three : [u'fire'] -back next : [u'day'] -from turning : [u'towards'] -hardly wander : [u'."'] -alone when : [u'she'] -old chest : [u'of'] -accomplish. : [u'There'] -possibly other : [u'large'] -his watch : [u'all'] -suggestive detail : [u'which'] -pokers into : [u'knots'] -these works : [u','] -is hardest : [u'for'] -minutes or : [u'so'] -! Very : [u'right'] -The pressure : [u'of'] -for both : [u'of'] -out house : [u','] -minutes of : [u'his', u'returning'] -Noble Bachelor : [u''] -there during : [u'those'] -by our : [u'noble'] -same state : [u'of'] -could help : [u'it', u'me'] -shutters falling : [u'back'] -vague feeling : [u'of'] -, " can : [u'you'] -be very : [u'much', u'glad', u'happy', u'gracious'] -below. : [u'On', 'PP', u'There'] -have every : [u'possible', u'reason', u'cause'] -friend Holmes : [u','] -her fresh : [u'young'] -to Waterloo : [u'.'] -I rather : [u'think'] -I received : [u'a', u'an', u'this'] -hurling them : [u'at'] -outskirts of : [u'the', u'Lee'] -Smack! : [u'smack'] -chivalrous view : [u','] -talking, : [u'rather', u'and', u'so'] -forgive me : [u'for', u'?'] -the honourable : [u'title'] -Agra treasure : [u','] -s face : [u',', u', "', u'.', u'peeled', u'so'] -our investigation : [u','] -so dreadfully : [u'still'] -the fifty : [u'guineas'] -to refrain : [u'from'] -only lain : [u'there'] -might take : [u'an', u'in'] -Adler herself : [u'in'] -found my : [u'plans', u'father', u'attention', u'acquaintance', u'thoughts'] -right must : [u'be'] -she left : [u'him', u'me'] -with eager : [u'eyes'] -thumped vigorously : [u'upon'] -ever reached : [u'us'] -across at : [u'me', u'my', u'his'] -s EIN : [u'or'] -up for : [u'dead', u'the', u'ourselves', u'me'] -her figure : [u'outlined'] -up our : [u'trap'] -the interview : [u'between'] -McCauley, : [u'Paramore'] -drawn out : [u'. "', u'by'] -My accomplishments : [u','] -.*** : [u'START'] -found me : [u'to'] -her voice : [u'downstairs'] -I parted : [u'from'] -not hurt : [u'by'] -the Continent : [u'."'] -where we : [u'can', u'found', u'hired', u'are', u'were', u'compress', u'shall', u'have'] -flushed cheeks : [u'and'] -close there : [u'now'] -awaited us : [u'upon'] -Encyclopaedia,' : [u'must'] -Baker with : [u'a'] -steel poker : [u'and'] -generations, : [u'and'] -invent a : [u'cause', u'lie'] -the gas : [u'is', u'flare', u'light'] -sound nor : [u'motion'] -an account : [u'of'] -murder was : [u'done'] -at four : [u'o'] -went against : [u'him'] -room window : [u'will'] -plucked back : [u'by'] -helpless worms : [u'?'] -through two : [u'scattered'] -and drop : [u'a'] -back in : [u'deep', u'the', u'his', u'a', u'one'] -had taken : [u'a', u'place', u'in', u'it'] -The rooms : [u'were'] -ten. : ['PP'] -ten, : [u'and', u'however'] -devilish trade : [u'mark'] -is country : [u'bred'] -friend Lestrade : [u'held'] -with Flora : [u'Millar'] -noiselessly closed : [u'the'] -at us : [u'.'] -ushered in : [u'a'] -injured wrist : [u'. "'] -take great : [u'liberties'] -drawers in : [u'the'] -a deep : [u'harsh', u'game', u'black', u'slumber', u'impression'] -did. : ['PP', u'You', u'I'] -his strength : [u'of', u'.', u'upon'] -s a : [u'brave', u'good', u'nice', u'young', u'remarkable', u'hunting', u'cold', u'question', u'fine', u'beauty', u'bonny', u'dummy', u'common', u'wicked', u'new', u'very'] -that his : [u'ears', u'brilliant', u'handwriting', u'arrest', u'passion', u'nervous', u'son', u'life', u'father', u'lad', u'face', u'whole', u'data', u'wife', u'hair', u'hat', u'explanation', u'daughter', u'relatives', u'marriage', u'lateness', u'master', u'only'] -, shabby : [u'genteel'] -t speak : [u'to'] -public press : [u'."'] -sleep in : [u'the'] -about this : [u'little', u'time', u'whistle', u'room', u'business', u'matter'] -C'-- : [u'that'] -shoulder, : [u'I', u'and'] -not suffer : [u'from'] -shoulder. : ['PP', u'The', u'As', u'He', u'It'] -delicate pink : [u'is'] -impersonal thing : [u'a'] -tip had : [u'been'] -hands all : [u'the'] -decrepitude, : [u'and'] -back all : [u'that'] -reply was : [u'typewritten'] -day." : [u'She'] -owe something : [u'.'] -its legal : [u'sense'] -of wheels : [u'.', u'and'] -liar as : [u'well'] -Simon and : [u'his'] -not encourage : [u'visitors'] -One was : [u'buttoned', u'an', u'the'] -observe anything : [u'very'] -as assistant : [u'there'] -the vacant : [u'chair'] -rubbing his : [u'eyes', u'hands'] -knitted and : [u'his'] -. Saviour : [u"'"] -before pay : [u'day'] -begin another : [u'investigation'] -the criminal : [u',', u'."', u'news'] -work may : [u'elect'] -would convulse : [u'the'] -2 pounds : [u'a', u'.'] -clearing the : [u'matter'] -falls into : [u'the'] -your heart : [u'of'] -suited and : [u'respectable'] -far more : [u'daring'] -rattle of : [u'wheels', u'running', u'the'] -else?" : [u'I', u'asked'] -knows it : [u'already'] -She spoke : [u'a'] -by opening : [u'a'] -that we : [u'shall', u'both', u'started', u'have', u'arranged', u'cannot', u'met', u'took', u'should', u'may', u'could', u'are', u'turn', u'need', u'were', u'might', u'heard', u'had', u'seemed', u'found', u'just', u'would'] -picture of : [u'ruin', u'offended'] -name," : [u'said', u'answered'] -from that : [u'woman', u'?"', u'side', u'day', u'time'] -. Good : [u'bye', u'has', u'night', u'afternoon', u'day'] -name,' : [u'said'] -two dozen : [u'from', u'for'] -the gleam : [u'of'] -once his : [u'case'] -for Irene : [u'Adler'] -assumed a : [u'much'] -retained by : [u'the'] -of so : [u'dense', u'tangled', u'transparent'] -man would : [u'not', u'at'] -without having : [u'ever', u'recovered', u'carried'] -the will : [u'of'] -faced that : [u'which'] -miss your : [u'case'] -drove to : [u'the', u'our', u'Leatherhead', u'Paddington', u'some'] -a deduction : [u'which'] -silent and : [u'wait', u'buried', u'lifeless'] -speciously enough : [u'.'] -lodge to : [u'say'] -series of : [u'events', u'cases', u'incidents', u'articles', u'disgraceful', u'tales', u'the'] -does she : [u'propose'] -of events : [u'is', u',', u'than', u'which', u'may', u'leading', u'as'] -to base : [u'my'] -from France : [u'he'] -By it : [u'he'] -our connection : [u'and'] -yourself up : [u'from'] -, refined : [u'looking'] -a format : [u'other'] -, performances : [u'and'] -every characteristic : [u'of'] -a gigantic : [u'ball', u'one', u'column'] -I slept : [u'at'] -best to : [u'make', u'do'] -very obvious : [u'to', u'.'] -me like : [u'that'] -surroundings, : [u'I'] -4: : [u'35'] -accent. " : [u'I'] -oeuvre c : [u"'"] -it rapidly : [u'formed'] -' engraved : [u'upon'] -was gazing : [u'at', u'up'] -a) : [u'distribution'] -. End : [u'of'] -sixty; : [u'but'] -part, : [u'as', u'I'] -bulldog chin : [u','] -part. : [u'She', u'At'] -a large : [u'"', u'woman', u'curling', u'sheet', u'villa', u'blue', u'number', u'man', u'practice', u'iron', u'scale', u'sum', u'bureau', u'square', u'animal', u'black'] -I pushed : [u'forward'] -a sailing : [u'ship'] -and displayed : [u'upon'] -some of : [u'the', u'these', u'them'] -see her : [u'husband', u'ladyship'] -brown gaiters : [u'over', u','] -I begin : [u'to'] -which could : [u'account', u'be', u'suggest', u'tell', u'incriminate', u'have', u'not'] -some on : [u'the'] -having upon : [u'the'] -perhaps be : [u'able'] -In 2001 : [u','] -but we : [u'wedged', u'must', u'provide', u'had', u'went', u'have', u'emptied', u'can', u'believe', u'cannot'] -user to : [u'return'] -do," : [u'I', u'said'] -bottom. : [u'There', 'PP'] -your check : [u'book'] -light which : [u'was', u'shone'] -upon this : [u'gang', u'same', u'metal', u'as', u'point'] -in marriage : [u'.'] -make of : [u'that', u'it', u'a'] -employ who : [u'comes'] -these little : [u'problems', u'records'] -folded paper : [u'from'] -meant. : ['PP', u'I'] -knees were : [u'what'] -photograph which : [u'he'] -Star. : ['PP'] -serving man : [u'in'] -reporting and : [u'sat'] -for we : [u'have', u'may', u'must', u'lurched', u'are'] -lost his : [u'Christmas', u'self', u'wife'] -not injuring : [u'her'] -very considerable : [u'fortune'] -stepfather comes : [u'back'] -, waggled : [u'his'] -to straighten : [u'it'] -what makes : [u'me'] -by freely : [u'sharing'] -crowd of : [u'spectators', u'mendicants'] -had just : [u'quitted', u'transferred', u'left', u'a', u'finished', u'observed'] -two glowing : [u'eyes'] -would inform : [u'me'] -higher and : [u'louder'] -would rather : [u'have', u'walk', u'die', u'not'] -advertise. : ['PP'] -Breckinridge," : [u'he'] -bad hat : [u'and'] -OF ANY : [u'KIND'] -without permission : [u'and'] -every point : [u'of'] -buried among : [u'his'] -, easily : [u'."'] -was full : [u'of'] -probably never : [u'will'] -anyhow, : [u'so'] -snarled. : ['PP'] -pulp. : [u'I'] -proceed. : ['PP'] -now and : [u'drop', u'now', u'glanced', u'paced'] -last pointing : [u'to'] -be made : [u'upon', u'out', u'of'] -him driven : [u'through'] -better say : [u'no'] -be frightened : [u'.', u",'"] -all along : [u'has'] -little want : [u'and'] -confidential servant : [u'?"'] -my brains : [u'to'] -U. : [u'S'] -was returning : [u'from'] -set my : [u'hand'] -important to : [u'maintaining'] -duty as : [u'to'] -fitting cloth : [u'cap'] -Round this : [u'corner'] -professional commission : [u'for'] -repulsive ugliness : [u'.'] -signal between : [u'my', u'you'] -the B : [u"'"] -had the : [u'lady', u'real', u'hint', u'quinsy', u'effect', u'carriage', u'natural', u'hardihood', u'appointment', u'letter', u'surest', u'money', u'good', u'pleasure', u'misfortune', u'marriage', u'coronet'] -, yourself : [u','] -the H : [u'Division'] -remunerative investments : [u'for'] -the U : [u'.'] -habits, : [u'and', u'a'] -pretty good : [u'plan'] -habits. : [u'I', u'His', 'PP', u'He'] -lengthened at : [u'this'] -of change : [u'.'] -The bird : [u'gave'] -funds as : [u'upon'] -envelope. ' : [u'So'] -residing alone : [u'in'] -like man : [u','] -month or : [u'six'] -against my : [u'wishes', u'records'] -wood pipe : [u'which'] -, returned : [u'to', u'from'] -present make : [u'nothing'] -the 5 : [u':'] -its place : [u','] -linked on : [u'to'] -has thrown : [u'him'] -evil came : [u'upon'] -between them : [u',', u'.'] -One more : [u'question'] -fresh. : [u'There', 'PP'] -fresh, : [u'will'] -to its : [u'being', u'coming', u'extreme', u'highest', u'views'] -discovered, : [u'or', u'and'] -discovered. : [u'I'] -geese for : [u'a'] -, 99712 : [u'.,'] -your appearance : [u'.'] -intimate friends : [u'would'] -pointing upward : [u','] -finger could : [u'reach'] -any words : [u'of'] -. Outside : [u'the', u','] -were he : [u'.', u'whose'] -Streatham since : [u'I'] -devouring energy : [u';'] -. " What : [u'do', u'can', u'could'] -with us : [u'.', u'also', u'."', u'until', u'and', u',', u'warmly'] -braved the : [u'matter'] -concluded the : [u'examination'] -yours or : [u'mine'] -on his : [u'face', u'business', u'heel', u'track', u'brow', u'overcoat', u'lap', u'boots', u'nose'] -these scattered : [u'houses'] -sense of : [u'my', u'grief', u'humour'] -with red : [u'headed'] -or more : [u'the', u'with', u'he', u'down'] -the necessity : [u'for'] -curled through : [u'the'] -And thus : [u'was'] -wages, : [u'in', u'it'] -violet ink : [u'.'] -this Alice : [u'?"'] -gems out : [u'of'] -" 12th : [u'.'] -her master : [u'wore'] -my family : [u'."'] -secretly work : [u'our'] -crime and : [u'the'] -court of : [u'appeal', u'law'] -is undoubtedly : [u'my'] -distribution of : [u'electronic', u'Project', u'this'] -no farther : [u','] -of nothing : [u'save', u'except', u'but'] -come over : [u'here', u'him'] -pistol, : [u'and'] -brave as : [u'a'] -coronet, : [u'but', u'broke', u'and', u'their'] -soon flagged : [u'.'] -The Hague : [u'last'] -breaking through : [u'in'] -new foliage : [u'.'] -villas on : [u'either'] -gaunt figure : [u'made'] -Bradshaw. " : [u'It'] -, real : [u'opinion'] -for felony : [u'with'] -shriek at : [u'mankind'] -long a : [u'chain'] -likely I : [u'have'] -hats. : [u'If'] -daughter who : [u'required', u'has'] -of constabulary : [u'informing'] -them upon : [u'record'] -by four : [u'large'] -the sort : [u'have', u'.', u'at', u'in', u".'", u',', u'was'] -purpose equally : [u'well'] -these three : [u'gentlemen', u'rooms'] -sent for : [u'.', u'medical'] -which gets : [u'to'] -send her : [u'into'] -the control : [u'of'] -, whom : [u'I', u'you'] -, whoa : [u'!"'] -of burrowing : [u'.'] -case was : [u'told'] -his extended : [u'hand'] -mere detail : [u'.'] -very sick : [u'for'] -yours. : ['PP', u'When', u'Now'] -glance around : [u','] -yours, : [u'"', u'Mr', u'perhaps', u'Miss'] -same way : [u'with'] -kicked from : [u'here'] -now carry : [u'our'] -beautiful moonlight : [u'night'] -still carrying : [u'with'] -the doings : [u'of'] -considerable excitement : [u'. "'] -it upstairs : [u'and'] -a trifle : [u'more', u',', u'and', u'."'] -might think : [u",'", u'as'] -original disturbance : [u','] -least an : [u'hour'] -recently cut : [u','] -embellish so : [u'many'] -caressing and : [u'soothing'] -a tissue : [u'of'] -look thoroughly : [u'into'] -Well, : [u'some', u'really', u'I', u'the', u'but', u'it', u'you', u'to', u'Watson', u'would', u'when', u'perhaps', u'father', u'and', u'she', u'have', u'of', u'moonshine', u'now', u'obviously', u'down', u'yes', u'we', u'Mrs', u'very', u'that', u'he', u'then', u'here', u'there', u'look', u'a', u'every', u'at', u'certainly', u'your', u'let', u'Mr', u'Miss'] -' please : [u'.\'"'] -the sequel : [u'was'] -indexing his : [u'records'] -and blotting : [u'paper'] -Well! : [u'I'] -road and : [u'the'] -window will : [u'open'] -clean that : [u"'"] -hanging him : [u'.'] -sweet temper : [u'to'] -anyone have : [u'in'] -agitation, : [u'with', u'her', u'which'] -the bar : [u'.'] -agitation. : [u'Then'] -all appear : [u'to'] -the bag : [u','] -with lime : [u'cream'] -the bad : [u'hat', u','] -wont, : [u'my'] -the kitchen : [u'window', u'door', u'rug'] -having heard : [u'Ryder'] -ourselves to : [u'find'] -go elsewhere : [u'."'] -000) : [u'are'] -count upon : [u'delay'] -an immediate : [u'departure'] -crop. : ['PP', u'But'] -crop, : [u'and'] -may know : [u'the'] -got his : [u'coat', u'leave'] -select prices : [u'.'] -afternoon I : [u'left'] -clock precisely : [u'I'] -away. " : [u'He'] -perceive also : [u'that'] -otherwise, : [u'though', u'in'] -Then here : [u'are'] -which she : [u'would', u'waited', u'values', u'was', u'had', u'found', u'describes', u'used', u'slept', u'held', u'extended', u'closed', u'must', u'has'] -wrist. " : [u'He'] -is over : [u'."', u';', u'and'] -that caught : [u'the'] -the Paradol : [u'Chamber'] -jostling each : [u'other'] -baryta. : ['PP'] -upon a : [u'matter', u'sheet', u'business', u'chair', u'corner', u'crate', u'Testament', u'handsome', u'heading', u'charge', u'small', u'strong', u'window', u'man', u'scent'] -thinks that : [u'her', u'I', u'it'] -private diary : [u'.'] -gentleman down : [u'from'] -turned his : [u'back', u'face'] -her yesterday : [u',"'] -both paragraphs : [u'1'] -me more : [u'than'] -adjusted temperament : [u'was'] -Hence those : [u'vows'] -at Holmes : [u'with', u"'", u','] -had shaken : [u'me'] -researches into : [u'the'] -your shoulders : [u'.'] -man can : [u'take'] -Author: : [u'Arthur'] -sombre thinker : [u'of'] -me! : [u'God', u'it', u'I', u'How', u'what'] -Faces to : [u'the'] -and died : [u'without'] -me, : [u'who', u'and', u'for', u'as', u'I', u'it', u'with', u'Mr', u'but', u'that', u'having', u'which', u'no', u'Kate', u'won', u'together', u'before', u'Ryder', u'then', u'too', u'Helen', u'closed', u'in', u'until', u'the', u'her', u'to', u'slowly', u'neither', u'however', u'tapped', u'so', u'dad', u'Watson', u'madam', u'destitute', u'looking', u'a', u'unpapered'] -me. : [u'With', 'PP', u'I', u'Yet', u'He', u'At', u'It', u'What', u'My', u'There', u'But', u'Now', u'You', u'Air', u'"', u'When', u'Mr', u'And', u'If', u'The', u'No', u'Still', u'She', u'On', u'Who', u'Was', u'Bankers', u'Far', u'In', u'Your', u'Westaway', u'How'] -horror still : [u'lay'] -smooth skinned : [u','] -borders of : [u'Oxfordshire'] -eggs, : [u'and'] -only trust : [u'that'] -farthest east : [u'of'] -me? : [u'Now', u'At', u'Already', u'No', u'You', u'Many'] -even persuaded : [u'him'] -for securing : [u'the'] -me; : [u'but', u'in'] -note is : [u'a'] -next instant : [u'I'] -his body : [u'and'] -EIN or : [u'federal'] -he would : [u'have', u'see', u'drop', u'not', u'do', u'be', u'think', u'claim', u'come', u'give', u'return', u'take', u'never', u'make', u'spend', u'emerge', u'rush', u'bring', u'go', u'but', u'always'] -the treble : [u'K'] -General Stoner : [u','] -how far : [u'from'] -this particular : [u'colour'] -begin a : [u'narrative'] -method was : [u'no'] -I uttered : [u'the'] -former friend : [u'and'] -pledged myself : [u'not'] -back it : [u'up'] -and making : [u'a'] -finally been : [u'called'] -it voraciously : [u','] -fit you : [u'very'] -it yet : [u'?"'] -the bright : [u'morning', u'semicircle'] -her flight : [u'.'] -should prolong : [u'a'] -landlord. : ['PP'] -landlord, : [u'who', u'and', u'explaining'] -! Born : [u'in'] -cried. : ['PP', u'"'] -cried, : [u'and', u'grasping', u'glancing', u'throwing', u'shaking', u'on'] -puzzled, : [u'throughout', u'has'] -her resort : [u'to'] -much excited : [u','] -pay it : [u'."'] -four times : [u'three'] -you out : [u'of'] -, have : [u'no', u'you', u'already', u'baffled', u'been', u'mercy', u'long', u'hurried', u'I'] -variety which : [u'are'] -to prove : [u'their', u'that'] -travelled back : [u'next'] -Too little : [u','] -doing me : [u'on'] -leather bag : [u'from', u'in'] -a promise : [u'to', u'of'] -, strongly : [u'marked'] -heard his : [u'wife'] -is extremely : [u'improbable'] -yours I : [u'should'] -. Too : [u'large', u'narrow'] -Where are : [u'we', u'the', u'they'] -afternoon stroll : [u'to'] -always founded : [u'on'] -in place : [u'of'] -thing has : [u'some'] -exception, : [u'however'] -telling you : [u'how', u','] -thing had : [u'come'] -hair which : [u'he'] -two may : [u'have'] -poisoning case : [u'.'] -of shabbily : [u'dressed'] -whether the : [u'present', u'cellar', u'spotted', u'objections', u'place', u'man'] -stories. : [u'Chubb'] -some danger : [u','] -bigger the : [u'crime'] -that even : [u'if', u'here', u'the', u'now', u'he'] -" Were : [u'you', u'there', u'they'] -jacket. : ['PP'] -have made : [u'myself', u'!"', u'an', u'a', u'your', u'you', u'no', u'two', u'him', u'my'] -box and : [u'looked', u'the', u'held'] -wind still : [u'screamed'] -had Miss : [u'Hunter'] -that ever : [u'was', u'lived'] -presume that : [u'this', u'it', u'they', u'I'] -flurried than : [u'before'] -enthusiasm. " : [u'Now'] -or creating : [u'derivative'] -bramble covered : [u'land'] -" 9th : [u'.'] -feature of : [u'interest'] -we want : [u'must'] -her dowry : [u'will'] -now fled : [u'together'] -a useless : [u'expense'] -No more : [u'words'] -very first : [u'day', u'key'] -frosty air : [u'. "'] -grizzled, : [u'that'] -the steel : [u'poker'] -Jack of : [u'Ballarat'] -Living in : [u'London'] -wearing were : [u'not'] -present expenses : [u'?"'] -What then : [u"?'", u'?"'] -of resolution : [u'pushed'] -defects. : [u'The'] -important it : [u'was'] -at low : [u'tide'] -more bizarre : [u'a'] -Holmes before : [u'his'] -obviously of : [u'vital'] -to effect : [u'a', u'which'] -, " over : [u'Lloyd'] -most lay : [u'silent'] -the description : [u'of', u'tallied'] -use; : [u'and'] -Colonel Warburton : [u"'"] -had tossed : [u'it'] -"' But : [u",'", u'was', u','] -deserting Miss : [u'Sutherland'] -and good : [u'!'] -human beings : [u'all'] -do is : [u'to'] -could offer : [u'an'] -the ruffians : [u'who'] -partially cleared : [u'up'] -safe were : [u'the'] -food, : [u'and'] -him the : [u'sympathy', u'stone', u'compliments', u'coronet'] -! very : [u'right'] -could open : [u'.'] -at night : [u'."', u'until', u'probably', u'?"', u',', u'and', u'to'] -continued our : [u'strange'] -stevedore who : [u'has'] -. " God : [u'help'] -as a : [u'lover', u'confidant', u'ship', u'temporary', u'commonplace', u'bulldog', u'lobster', u'rule', u'hundred', u'counsellor', u'man', u'trivial', u'dying', u'pikestaff', u'little', u'family', u'working', u'matter', u'doctor', u'second', u'tall', u'companion', u'sitting', u'professional', u'mole', u'tinker', u'match', u'beggar', u'squalid', u'battered', u'peace', u'goose', u'signal', u'bridge', u'gold', u'small', u'preliminary', u'relic', u'check', u'weary', u'woman', u'thief', u'common', u'lady', u'calf', u'medical', u'good'] -probably familiar : [u'to'] -you can : [u'understand', u'get', u'easily', u'see', u'read', u'do', u'speak', u'spare', u'catch', u'imagine', u'have', u'enjoy', u',"', u"'", u'hardly', u'infer', u'always', u'ask', u'know', u',', u'jump', u'.', u'most', u'readily', u'for', u'call', u'receive'] -Holmes rather : [u'sternly'] -me extremely : [u',"'] -above us : [u'.'] -are many : [u'inquiries', u'noble'] -and results : [u'all'] -" because : [u'we'] -of agony : [u','] -some pains : [u',"'] -leaving them : [u'was'] -cold, : [u'precise', u'Mr', u'brilliant', u'dank'] -. gutenberg : [u'.'] -qualities which : [u'my'] -with active : [u'links'] -at stake : [u';'] -book and : [u'handed', u'took'] -making me : [u'a'] -nickel and : [u'of'] -east. : [u'The'] -recess behind : [u'a'] -and flattening : [u'it'] -a close : [u'thing', u'examination'] -other people : [u'in', u'who', u'don'] -stars were : [u'shining'] -calves, : [u'and'] -: This : [u'eBook'] -of directors : [u','] -step into : [u".'", u'the'] -motives were : [u'innocent'] -the killed : [u'.'] -dipped her : [u'pen'] -two rooms : [u'at', u'.'] -words and : [u'almost'] -making my : [u'excuses'] -s no : [u'vice', u'use', u'good'] -now by : [u'the'] -walked towards : [u'me'] -Unless they : [u'are'] -They put : [u'in'] -far gone : [u'years'] -once to : [u'rush', u'the', u'break', u'let'] -and leather : [u'leggings'] -ascended to : [u'your'] -very stealthily : [u'along'] -that James : [u'didn'] -found waiting : [u'for'] -which a : [u'child', u'newcomer', u'cold', u'man', u'singular', u'knife'] -was disappointed : [u'.'] -body would : [u'not'] -backgammon and : [u'draughts'] -amiss with : [u'him'] -point out : [u'to'] -we left : [u'Baker'] -point our : [u'research'] -The discovery : [u'that'] -neither Miss : [u'Stoner'] -in deserting : [u'Miss'] -from Grosvenor : [u'Mansions'] -which I : [u'merely', u'have', u'knew', u'ever', u'must', u'suspected', u'should', u'took', u'sit', u'crouched', u'shall', u'come', u'served', u'can', u'had', u'gave', u'could', u'retain', u'see', u'was', u'beg', u'wished', u'used', u'failed', u'carried', u'perceive', u'sold', u'would', u'am', u'met', u'hold', u'will', u'promise', u'visited', u'usually', u'thought', u'do', u'pushed', u'reached', u'saw', u'endeavoured', u'frequently', u'found', u'speak'] -try. : [u'What'] -save the : [u'two', u'single', u'five', u'loss', u'wandering', u'bell', u'occasional', u'small', u'father'] -He started : [u'me'] -true account : [u'of'] -And no : [u'later', u'more'] -bewilderment at : [u'my'] -from their : [u'traces', u'windows', u'beds'] -for Indian : [u'animals'] -may recollect : [u'in'] -on very : [u'nicely', u'much'] -had parted : [u'from'] -will win : [u'in'] -lamp onto : [u'the'] -my saviour : [u'and'] -than six : [u'feet'] -English lawyer : [u'named'] -Her gloves : [u'were'] -myself useful : [u".'"] -touching me : [u'on'] -friends of : [u'any', u'last'] -She held : [u'up'] -have gathered : [u'that'] -expenses, : [u'including'] -a zigzag : [u'of'] -laughing; " : [u'it', u'but'] -the whiskers : [u','] -sure to : [u'keep'] -the introduction : [u'of'] -s leg : [u'."'] -his eyes : [u'she', u'.', u'and', u'once', u'upon', u'open', u'closed', u'shining', u'to', u'were', u'shone', u'heavy', u'. "', u'bent', u'fixed', u'twinkled', u',', u'travelled', u'round', u'cast', u'that', u'into', u'as'] -and flapped : [u'off'] -the injunction : [u'as'] -, golden : [u'bar'] -young chap : [u'then'] -to drink : [u','] -provided you : [u'with'] -aid. : [u'I'] -full effect : [u'of'] -that no : [u'one', u'apology', u'crime', u'further', u'memoir', u'good', u'man', u'sister'] -death would : [u'unfailingly', u'depend'] -black top : [u'hat'] -hard and : [u'much'] -conscious of : [u'a', u'two'] -being whose : [u'eyes'] -place we : [u'want'] -our chase : [u',"'] -Naturally, : [u'it'] -a questionable : [u'one'] -Holmes lately : [u'.'] -can receive : [u'a'] -obligations. : ['PP'] -form curled : [u'up'] -dared to : [u'leave'] -Nothing simpler : [u'.'] -Now lead : [u'the'] -moved. : ['PP'] -great heavy : [u'chin'] -dreadful hand : [u'were'] -such contrast : [u'to'] -follows: ' : [u'I'] -everyone who : [u'knows'] -pitch dark : [u'inside'] -Scotia, : [u'and'] -evening light : [u'glimmered'] -my orders : [u'to'] -Neither you : [u'nor'] -Ross with : [u'John'] -of 4 : [u'pounds'] -faint among : [u'the'] -lid was : [u'printed'] -to change : [u'my', u'not', u'her'] -inferences," : [u'said'] -shoulders. : [u'By', 'PP'] -And now : [u'?"', u',', u'it', u'we', u'I', u'here', u'let', u'you', u'as', u'and', u'a', u'there'] -And not : [u'a'] -six shillings : [u','] -wants, : [u'and', u'I'] -stated I : [u'was'] -story now : [u'in'] -IMPLIED, : [u'INCLUDING'] -. Many : [u'small'] -lit in : [u'one'] -threw itself : [u'upon'] -, remember : [u'that'] -lit it : [u','] -said when : [u'the'] -not treated : [u'her'] -throwing a : [u'brilliant'] -of a : [u'Hercules', u'single', u'Hebrew', u'staff', u'doubt', u'situation', u'groom', u'cabman', u'man', u'best', u'carriage', u'little', u'delicate', u'bit', u'few', u'very', u'morning', u'sheet', u'day', u'picture', u'detective', u'light', u'lantern', u'revolver', u'brickish', u'pince', u'good', u'hundred', u'four', u'disguise', u'mile', u'healthy', u'guilty', u'barmaid', u'proposal', u'great', u'place', u'grey', u'cigar', u'number', u'furniture', u'most', u'brave', u'date', u'ship', u'society', u'young', u'boat', u'wave', u'noble', u'cave', u'flickering', u'local', u'better', u'large', u'deep', u'book', u'woman', u'dense', u'small', u'low', u'beggar', u'goose', u'certain', u'weakening', u'previous', u'fowl', u'windfall', u'catastrophe', u'door', u'return', u'nervous', u'dissolute', u'terrified', u'drunkard', u'match', u'band', u'crab', u'technical', u'headache', u'candle', u'breath', u'night', u'loathsome', u'snake', u'painful', u'problem', u'German', u'train', u'hydraulic', u'passing', u'gravel', u'harmonium', u'frightened', u'driving', u'narrow', u'dull', u'California', u'sudden', u'hotel', u'youth', u'bee', u'monarch', u'minister', u'bouquet', u'business', u'quiet', u'broad', u'lover', u'booted', u'loafer', u'cheery', u'succession', u'lady', u'child', u'rather', u'particular', u'mind', u'tortured', u'house', u'peculiar', u'chapter', u'sentence', u'chain', u'vague', u'demon', u'long', u'hound', u'husband', u'government', u'private', u'Project', u'refund', u'library'] -door to : [u'announce'] -learn nothing : [u'from'] -have divined : [u'in'] -, ' Oh : [u','] -floor, : [u'and', u'the', u'instantly', u'while'] -chamber door : [u'without'] -floor. : [u'Suddenly', u'Then', 'PP', u'At', u'Did', u'There', u'About', u'A'] -business address : [u'asking'] -my past : [u'than'] -During that : [u'time'] -with three : [u'of', u'gems', u'long'] -his ghost : [u'at'] -and worn : [u'.'] -grizzled round : [u'the'] -already in : [u'the', u'debt'] -gentleman with : [u'fiery', u'a', u'the'] -body. : [u'Then', u'Under', 'PP', u'But'] -prefers wearing : [u'a'] -, amid : [u'all'] -of K : [u'.'] -the mantelpiece : [u'.', u'and', u'with', u'showed', u'. "'] -into bricks : [u','] -seven months : [u'after'] -wooden berths : [u','] -its solution : [u'is'] -know before : [u'I'] -of manner : [u'he'] -, the : [u'most', u'drowsiness', u'leather', u'matter', u'nature', u'coachman', u'three', u'cause', u'letter', u'snuff', u'League', u'whole', u'red', u'scene', u'fourth', u'tobacconist', u'little', u'Coburg', u'Vegetarian', u'reaction', u'official', u'stake', u'murderer', u'other', u'assistant', u'strange', u'plannings', u'cross', u'wonderful', u'drink', u'push', u'blow', u'bruise', u'sympathetic', u'foreman', u'great', u'suggestiveness', u'mystery', u'loss', u'young', u'suspicion', u'heavy', u'glasses', u'voice', u'more', u'father', u'game', u'daughter', u'only', u'3rd', u'groom', u'detective', u'largest', u'lodge', u'storm', u'Horsham', u'deepest', u'jury', u'Sign', u'second', u'Carolinas', u'movement', u'body', u"'", u'name', u'wreck', u'dull', u'door', u'clouds', u'blue', u'smoke', u'missing', u'Lascar', u'commissionaire', u'initials', u'Countess', u'magistrate', u'gentleman', u'introduction', u'stars', u'salesman', u'temptation', u'plumber', u'sweat', u'bang', u'Roylotts', u'terrible', u'sitting', u'marks', u'presence', u'fact', u'dying', u'meddler', u'busybody', u'Scotland', u'centre', u'tassel', u'saucer', u'guard', u'clues', u'well', u'face', u'bumping', u'others', u'darkness', u'yellow', u'colonel', u'fat', u'thresholds', u'walls', u'hydraulic', u'sinister', u'fascinating', u'Duchess', u'lady', u'large', u'reason', u'consciousness', u'knowledge', u'one', u'man', u'maid', u'modest', u'debt', u'lad', u'sill', u'singular', u'problem', u'advance', u'money', u'curious', u'light', u'hidden', u'two', u'lower', u'first', u'wine', u'full', u'owner', u'Project', u'person', u'agreement', u'trademark'] -had stronger : [u'reasons'] -hint from : [u'Holmes'] -are yourself : [u'aware'] -; your : [u'very'] -Everybody about : [u'here'] -whole life : [u';', u'appears'] -next occasion : [u','] -lids drooping : [u'and'] -my other : [u'clients'] -you address : [u'me', u'your'] -Simon," : [u'announced', u'said'] -this girl : [u','] -s camp : [u','] -Duke of : [u'Cassel', u'Balmoral'] -. U : [u'.'] -end where : [u'to'] -a solicitor : [u'and'] -are good : [u'enough'] -. S : [u'.', u'."'] -one singular : [u'exception'] -sea weed : [u'in'] -spoke. : ['PP'] -wrote to : [u'George', u'father', u'the'] -covered at : [u'high'] -. I : [u'have', u'had', u'rang', u'am', u'may', u'understand', u'was', u'know', u'shall', u'sat', u'suppose', u'will', u'left', u'soon', u'walked', u'lent', u'fear', u'only', u'don', u'paid', u'lounged', u'heard', u'hope', u'think', u'do', u'hardened', u'caught', u'rushed', u'rose', u'hesitated', u'must', u'slept', u'often', u'sent', u'love', u'keep', u'leave', u'ask', u'did', u'used', u'should', u'cannot', u'could', u'went', u'observe', u'trust', u'tried', u"'", u'thought', u'expect', u'surprised', u'hardly', u'call', u'wasn', u'believe', u'met', u'took', u'didn', u'can', u'then', u'found', u'knew', u'eliminated', u'settled', u'dropped', u'knelt', u'saw', u'need', u'marked', u'see', u'give', u'promise', u'tell', u'put', u'wish', u'bought', u'married', u'would', u'stood', u'braved', u'struck', u'kept', u'began', u'won', u'hurried', u'seem', u'wired', u'promised', u'wouldn', u'glanced', u'felt', u'confess', u'hate', u'simply', u'distinctly', u'deserve', u'travelled', u'painted', u'begged', u'gave', u'threw', u'hurled', u'beg', u'ought', u'dine', u'never', u'swear', u'might', u'told', u'rapidly', u'sprang', u'stared', u'ran', u'want', u'traced', u'remember', u'imagine', u'deduced', u'dressed', u'entered', u'came', u'fainted', u'paced', u'implored', u'staggered', u'clambered', u'endeavoured', u'inquired', u'determined', u'say', u'read', u'feared', u'presume', u'congratulate', u'looked', u'wonder', u'ordered', u'just', u'hadn', u'slipped', u'invited', u'feel', u'started', u'rely', u'already', u'lay', u'snatched', u'answered', u'called', u'waited', u'passed', u'followed', u'advertised', u'assure', u'look', u'got', u'lowered', u'laid', u'returned', u'turned'] -crate upon : [u'which'] -But there : [u'is', u'I', u'was'] -very sorry : [u'if'] -thieves, : [u'and'] -. D : [u'.,', u"'", u'.'] -. F : [u'.'] -. A : [u'Scandal', u'Case', u'SCANDAL', u'hundred', u'man', u'shadow', u'fierce', u'blow', u'maid', u'married', u'little', u'frayed', u'.,', u'groan', u'sandwich', u'few', u'CASE', u'professional', u'formidable', u'girl', u'conversation', u'lean', u'mole', u'jagged', u'single', u'name', u'dull', u'shock', u'stable', u'broad', u'lens', u'touch', u'lady', u'series', u'vague', u'month', u'large', u'heavily', u'brown', u'camp', u'ventilator', u'moment', u".'", u'gentleman', u'search', u'short', u'double', u'thick', u'prodigiously', u'fortnight', u'clump', u'chair', u'door', u'mad', u'horrible', u'loud', u'.'] -. C : [u'below', u'.'] -publicity through : [u'the'] -tell. : ['PP', u'It', u'Perhaps'] -his soul : [u'.'] -tell, : [u'I'] -so what : [u'does'] -which occur : [u'to'] -. 8 : [u'.', u'or'] -. 5 : [u'.'] -"' Why : [u'that', u",'", u',', u'do'] -light a : [u'lantern'] -man were : [u'a'] -. 1 : [u'.', u'through', u'with'] -. 3 : [u'.', u','] -may rest : [u'in', u'here', u'assured'] -handed criminal : [u'agent'] -bride gave : [u'me'] -sponged the : [u'wound'] -most solemn : [u'oaths'] -invested it : [u','] -light I : [u'heard', u'saw'] -tunnel. : [u'But'] -must require : [u'such'] -finer field : [u'for'] -the business : [u'."', u'has', u'up', u',', u'?"', u'of', u'to', u'part', u';'] -purpose of : [u'consulting', u'examination'] -you one : [u'or'] -with blood : [u'from'] -a means : [u'.', u'of'] -lost sight : [u'of'] -strong, : [u'masculine'] -King to : [u'morrow'] -to realise : [u'as', u'the'] -disturbance at : [u'Mr'] -to town : [u'about', u'in', u',', u'before'] -believe that : [u'my', u'we', u'a', u'he', u'I', u'the', u'Mrs', u'."', u'it', u'that', u'here', u'she'] -for summer : [u'than'] -headed British : [u'jury'] -neatly dressed : [u','] -my mission : [u'was'] -successful cases : [u','] -ear, : [u'while', u'and'] -ear. : [u'From', u'Now', u'I', 'PP'] -run short : [u','] -accepted explanation : [u'.'] -eyes could : [u'not'] -, tell : [u'me'] -slipping in : [u'.'] -never seen : [u'or', u'my', u'so'] -His brain : [u'is'] -interesting features : [u'that'] -brow was : [u'all'] -devil knows : [u'best'] -always the : [u'way'] -men of : [u'resource', u'the'] -stay with : [u'us'] -lane?" : [u'She'] -much importance : [u'in'] -breaking the : [u'law', u'window'] -of burning : [u'charcoal', u'oil'] -degrees Mr : [u'.'] -was nearly : [u'fifteen', u'four', u'ten', u'one'] -any warning : [u'or'] -delirious. : ['PP', u'No'] -that whether : [u'she'] -instantly became : [u'riveted'] -immediately behind : [u','] -to refer : [u'them'] -mysterious business : [u'."'] -" Try : [u'the'] -the lowest : [u'and'] -was solved : [u'the'] -of going : [u'to', u','] -excuse me : [u'for', u',"', u'if'] -the ostlers : [u'a'] -pockets with : [u'coppers'] -excuse my : [u'saying', u'calling', u'beginning', u'troubling'] -many fees : [u'to'] -be confessed : [u','] -speech and : [u'the'] -place with : [u'Colonel'] -site which : [u'has'] -patient," : [u'he'] -can take : [u'."'] -Russell' : [u's'] -he declared : [u'that'] -, Doctor : [u'.', u',', u',"', u'as', u';'] -as warm : [u','] -laughing, : [u'as'] -would seize : [u'the'] -and twenty : [u'years', u'at', u',', u'."'] -wear, : [u'when', u'and'] -keep you : [u'out', u'waiting'] -this emaciation : [u'seemed'] -least," : [u'said'] -advance to : [u'my'] -matters. : [u'The', u'I', 'PP'] -business came : [u'to'] -passed out : [u'he', u'through', u'.'] -jewellery which : [u'he'] -whims so : [u'far'] -window fasteners : [u'which'] -wits' : [u'end'] -many inquiries : [u'which'] -sewn upon : [u'it'] -wheal from : [u'an'] -character has : [u'never'] -You blackguard : [u"!'"] -BEFORE YOU : [u'DISTRIBUTE'] -interruption, : [u'had'] -, reaching : [u'up'] -their way : [u'to', u'into'] -is most : [u'unlikely', u'refreshingly', u'entertaining', u'important'] -come here : [u'.', u'as'] -climbed the : [u'stile'] -alteration, : [u'modification'] -which improved : [u'by'] -, old : [u'fashioned', u','] -upon them : [u',', u'.'] -a dog : [u'who', u'cart'] -. Contralto : [u'hum'] -last pa : [u'wouldn'] -woman should : [u'be'] -is incorrigible : [u','] -McCarthy, : [u'who', u'going', u'the'] -case which : [u'he'] -an actor : [u'I'] -America they : [u'look'] -Every day : [u','] -therefore the : [u'deceased'] -an exceedingly : [u'remarkable', u'hot', u'interesting'] -satisfy myself : [u'as'] -remains to : [u'be', u'you'] -and astuteness : [u'represented'] -whole figure : [u'swaying'] -sadly at : [u'my'] -helping a : [u'boy'] -communicative during : [u'the'] -modest residence : [u'of'] -a result : [u'.'] -?" As : [u'he'] -It looked : [u'as'] -their old : [u'servants'] -plausible. : ['PP'] -Who could : [u'come'] -. Julia : [u'went'] -had drunk : [u'himself'] -some sort : [u',', u'of'] -ceiling. : ['PP', u'Then', u'Round'] -to visit : [u'the', u'an'] -ceiling, : [u'the'] -Just a : [u'trifle'] -narrowed the : [u'field'] -red paint : [u'in'] -Hatherley, : [u'was', u'hydraulic', u'as', u'and', u'in'] -Hatherley. : ['PP'] -colonies in : [u'a'] -lantern, : [u'and'] -lantern. : ['PP', u'Over', u'I', u'As'] -pressing danger : [u'which'] -before Sherlock : [u'Holmes'] -originality. : [u'As'] -while he : [u'wore', u'has', u'lived', u'could', u'can', u'writhed'] -from west : [u'to'] -Her bed : [u'this'] -and spread : [u'of'] -director. " : [u'We'] -suddenly dashed : [u'open'] -nothing except : [u'of', u'the'] -funny," : [u'cried'] -jacket. " : [u'I'] -s quicker : [u'at'] -good night : [u',', u'."', u".'", u'and'] -some distance : [u'to'] -because of : [u'the'] -that purpose : [u'30'] -shaken me : [u'more'] -Water, : [u'near'] -my violence : [u'a'] -in California : [u','] -Our client : [u'of', u'appeared'] -ask. : ['PP'] -landed proprietor : [u'in'] -and crime : [u'records'] -set aside : [u'altogether'] -doubt you : [u'have', u'will', u'think'] -always, : [u'about'] -single room : [u','] -double row : [u'of'] -shouted to : [u'the'] -who surrounded : [u'him'] -be walking : [u'amid'] -before waiting : [u'for'] -accepted, : [u'but'] -separation case : [u','] -investment, : [u'and'] -bearded man : [u'in'] -have some : [u'good', u'lunch', u'business', u'solid', u'strong', u'remembrance', u'of', u'wine', u'account', u'company'] -and though : [u'we', u'my', u'he'] -V. : [u'The', u'THE'] -P,' : [u'of'] -We waited : [u'long', u','] -lying on : [u'the', u'my'] -P," : [u'and'] -as freely : [u'as'] -more interesting : [u'than', u'.'] -fuller' : [u's'] -can. : ['PP', u'This'] -interest to : [u'the', u'me', u'buy'] -curious way : [u'of'] -delicacy that : [u'I'] -of terror : [u'when'] -one morning : [u',', u'to', u'in'] -carry it : [u'about', u'away'] -the clouds : [u'.', u'lighten'] -temperament was : [u'to'] -girl and : [u'has'] -son do : [u','] -effect upon : [u'him'] -retain her : [u'secret'] -the gale : [u'from', u',', u'and'] -be seized : [u'and'] -was heard : [u'to', u'upon'] -of revellers : [u'.'] -very massive : [u'iron'] -urgent one : [u'.'] -a grand : [u'gift'] -. ' Pon : [u'my'] -. Crime : [u'is'] -one to : [u'the', u'me', u'be', u'give', u'turn', u'your', u'Reading', u'advise'] -feet; : [u'and'] -even if : [u'something', u'it', u'they'] -cellar on : [u'some'] -and Dr : [u'.'] -even in : [u'these', u'the', u'your'] -a hansom : [u'cab', u',', u'and', u'on'] -feet, : [u'both', u'and', u'he', u'opened'] -do with : [u'the', u'much', u'this', u'sundials', u'his', u'it', u'my', u'most', u'Project'] -feet. : [u'Twice', 'PP', u'I'] -" Think : [u'of'] -buttoned up : [u'to'] -engaged then : [u'?"'] -outset. : [u'I'] -refuse the : [u'most'] -twenty minutes : [u"!'", u".'", u'."'] -visitor. " : [u'The', u'We', u'And', u'I'] -t insult : [u'your'] -narrative promises : [u'to'] -the well : [u'remembered', u'known'] -Spaulding would : [u'not'] -shall reach : [u'some'] -left handedness : [u'."'] -much," : [u'said', u'responded'] -swiftly, : [u'eagerly', u'so', u'and'] -ago, : [u'during', u'when', u'and', u'however', u'having'] -swiftly. : [u'If'] -ago. : [u'It', u'I', 'PP', u'John', u'Listen', u'Then'] -, recoil : [u'upon'] -warn me : [u'to'] -written a : [u'monograph', u'note', u'little'] -purport to : [u'come'] -womanly hand : [u','] -famished brute : [u','] -night that : [u'she'] -looked deeply : [u'chagrined'] -, hanging : [u'lip', u'gold'] -Perhaps I : [u'have', u'had'] -inexorable face : [u'in'] -copyright) : [u'agreement'] -street with : [u'Sherlock'] -dropped my : [u'gun', u'bouquet'] -Indian cigar : [u'.', u','] -this and : [u'lay', u'then'] -night than : [u'you'] -railway accident : [u'near'] -a secure : [u'and'] -interfere very : [u'much'] -typewriter and : [u'its'] -intrusted to : [u'me'] -" Great : [u'heavens'] -left leg : [u','] -far forgotten : [u'his'] -! This : [u'incident'] -was brown : [u','] -in possession : [u'of'] -had screamed : [u'and'] -into Briony : [u'Lodge'] -of self : [u'respect'] -a widower : [u'and', u','] -it looks : [u','] -great unobservant : [u'public'] -can leave : [u'your'] -permission of : [u'the'] -little smudge : [u'of'] -So were : [u'the'] -written explanation : [u'to', u'.'] -the hasp : [u','] -of acid : [u'upon'] -just before : [u'we', u'pay', u'it'] -hardly think : [u'that'] -blood showed : [u'that'] -I kissed : [u'her'] -from whence : [u'I', u'she'] -in as : [u'well', u'many', u'I'] -great thing : [u'for'] -in at : [u'all', u'the', u'one', u'night'] -will cause : [u'him'] -This incident : [u'gives'] -is popular : [u'with'] -of insensibility : [u'that'] -fighting against : [u'his'] -shaking finger : [u'to'] -no hills : [u'there'] -clues, : [u'and'] -following which : [u'you'] -in an : [u'instant', u'ulster', u'enemy', u'office', u'equally', u'equal', u'attempt', u'advertisement', u'affair', u'angle', u'out', u'hour', u'anteroom', u'alternation'] -Beryl Coronet : [u'XII', u"?'"] -shall live : [u'a', u'to'] -deduce nothing : [u'else'] -the distance : [u'.', u','] -this very : [u'paper', u'man', u'singular', u'woman'] -eaten without : [u'unnecessary'] -offhand fashion : [u'.'] -cabman as : [u'a'] -Yard at : [u'once'] -cart, : [u'along'] -from Lord : [u'St'] -who writes : [u'upon'] -the immense : [u'stream', u'responsibility'] -had several : [u'warnings'] -ground I : [u'gained'] -more human : [u'.'] -it afterwards : [u'transpired'] -immediately outside : [u'the'] -Florida, : [u'where'] -Florida. : [u'Its'] -the tropics : [u'.'] -the Mission : [u'of'] -and over : [u'the'] -are willing : [u'to'] -the object : [u'of'] -education. : [u'I'] -her mind : [u'on', u'that', u'.', u'and', u','] -gentleman?" : [u'she'] -Fowler. : ['PP'] -Lascar confederate : [u'that'] -tenfold what : [u'I'] -you villain : [u'!'] -go at : [u'scratch', u'six'] -two facts : [u'were'] -prevent? : [u'He'] -bounds. : ['PP'] -3) : [u'educational', u'letter'] -choked with : [u'red'] -Frank. : ['PP', u'We'] -handed gentleman : [u'with', u',"'] -the magnificent : [u'piece'] -His signet : [u'ring'] -The knees : [u'of'] -wishing him : [u'the'] -dear should : [u'be'] -s throat : [u','] -the genii : [u'of'] -Frank; : [u'so'] -it always : [u'is'] -shamefaced laugh : [u'. "'] -run over : [u'the'] -murderer, : [u'thief'] -mixture which : [u'I'] -murderer. : ['PP', u'So'] -Stoper, : [u'I'] -Stoper. : [u'She', 'PP'] -she sat : [u'for'] -she saw : [u',', u'the', u'that', u'you'] -on which : [u'he', u'I', u'you', u'several', u'', u'she', u'the', u'they'] -Male costume : [u'is'] -such words : [u'as'] -munificent. : ['PP'] -out together : [u'beneath'] -to supply : [u'them', u'their'] -manager. : ['PP', u'As', u'Now'] -. We : [u'must', u'may', u'are', u'will', u'live', u'know', u'rattled', u'had', u'have', u'would', u'could', u'were', u'got', u'lunch', u'called', u'found', u'should', u'cannot', u'waited', u'did', u'heard', u'soothed', u'shall', u'both', u'used', u'guard', u'compress', u'stepped', u'even', u'can', u'neither', u'feed', u'laid', u'do'] -had sunk : [u','] -is married : [u',"'] -vile that : [u'the'] -chance, : [u'his', u'I'] -left England : [u'?"'] -and asking : [u'your'] -earn the : [u'money'] -lake, : [u'Mr'] -the Boscombe : [u'Pool', u'Valley'] -London by : [u'the'] -was concluded : [u'he'] -GUTENBERG tm : [u'concept'] -over a : [u'sheet', u'glass', u'cup', u'new', u'parapet', u'fess', u'retort'] -dated from : [u'the', u'Grosvenor', u'Montague'] -not have : [u'written', u'made', u'thought', u'talked', u'been', u'let', u'his', u'carried', u'them', u'given', u'missed', u'spoken', u'me', u'a'] -3. : [u'If', u'YOU', u'LIMITED', u'Information'] -, inspiring : [u'pity'] -in body : [u'and'] -inexplicable chain : [u'of'] -visitor wear : [u'a'] -he threatened : [u'to'] -chronicler still : [u'more'] -agrees with : [u'you'] -companion sat : [u'in', u'open'] -sat moodily : [u'at'] -lives upon : [u'the'] -explained, : [u'has'] -not as : [u'remarkable', u'a'] -not at : [u'once'] -would spare : [u'your'] -great issues : [u'that'] -partner I : [u'must'] -common transition : [u'from'] -out on : [u'the', u'such', u'each'] -STRICT LIABILITY : [u','] -nervous tension : [u'within', u'in'] -gathering up : [u'what'] -precisely for : [u'that'] -summer sun : [u'shining'] -out of : [u'his', u'the', u'work', u'my', u'that', u'her', u'five', u'it', u'this', u'evil', u'mere', u'Upper', u'training', u'court', u'geese', u'their', u'gear', u'order', u'danger', u'breath', u'bed', u'these'] -he as : [u'he'] -betrayed myself : [u','] -done of : [u'an'] -he at : [u'me', u'last'] -not an : [u'English', u'action', u'idea', u'instant'] -was urging : [u'his'] -some most : [u'important'] -large staples : [u'.'] -shirt and : [u'trousers'] -details of : [u'his'] -an attempt : [u'might', u'to'] -have when : [u'I'] -little funny : [u'about'] -his duty : [u'well'] -he released : [u'me'] -or tie : [u'.'] -, will : [u'suffer', u'be', u'answer'] -obstinate man : [u'.'] -He slept : [u'on'] -, wild : [u'story', u'and'] -, heavily : [u'barred'] -and bizarre : [u'.', u'without'] -again of : [u'course'] -and keep : [u'up'] -a beauty : [u',', u"?'"] -your gesture : [u','] -she gave : [u'a', u'such'] -my wrist : [u'in', u','] -pictures. : [u'That'] -porch which : [u'gaped'] -my back : [u'towards', u'.'] -really puzzling : [u','] -aversion to : [u'the', u'her'] -shaking him : [u'by'] -shaking his : [u'fists', u'hunting', u'sides'] -any creature : [u'weaker'] -he stuffs : [u'all'] -knees. " : [u'For'] -make a : [u'mystery', u'mistake', u'note', u'case', u'loop', u'scene'] -and cut : [u'him'] -help him : [u'to'] -man took : [u'from'] -my lamp : [u'beating'] -paying to : [u'you'] -to chronicle : [u'one', u','] -he treated : [u'the'] -unusually large : [u'ones'] -home centred : [u'interests'] -off, : [u'Mr', u'not', u'but', u'however', u'and', u'therefore', u'that', u'do', u'paid', u'having', u'very'] -baits. : [u'In'] -he murmured : [u'. "', u', "'] -Swiftly and : [u'silently'] -remember right : [u", '", u','] -tale to : [u'the'] -tm License : [u'(', u'when', u'must', u'for', u'terms', u'.', u'as'] -indeed to : [u'be'] -sinister business : [u'."'] -cap which : [u'lies', u'he'] -he remained : [u'there', u'for'] -his wife : [u".'", u',', u'he', u'received', u'has', u'you', u'.', u'?"', u'is', u'and', u'find', u'tell'] -, slowly : [u','] -I bowed : [u','] -ran thus : [u':'] -Altogether, : [u'look'] -regretted. : [u'Having'] -sallow cheeks : [u'and', u'.'] -. Others : [u'were'] -had hurriedly : [u'ransacked'] -and bent : [u'it', u'his'] -reptile' : [u's'] -in exchange : [u'twopence'] -to Melbourne : [u','] -been pierced : [u','] -coloured silk : [u'and'] -whiskers, : [u'sunk', u'the', u'and'] -whiskers. : [u'My'] -, straightened : [u'it'] -it be : [u'?', u',', u'possible', u'that', u'who'] -his pale : [u'face'] -donations are : [u'gratefully'] -it by : [u'the', u'presuming', u'sending'] -blame you : [u','] -his thick : [u'red'] -contraction had : [u'turned'] -bureau. : ['PP', u'When'] -papers all : [u'the'] -chamber then : [u'at'] -a dozen : [u'other', u'times', u'."', u'yards', u'paces', u'intimate'] -side gate : [u'to'] -Sign of : [u'Four'] -from himself : [u'and'] -went into : [u'the', u'town'] -long thin : [u'hands', u'cane', u'legs'] -ventilator into : [u'another'] -flaming beryl : [u'.'] -Might I : [u'beg', u'not', u'ask'] -dozen paces : [u'off'] -sitting beside : [u'him'] -strong box : [u'now', u'and'] -stone of : [u'the'] -too great : [u'a'] -of murder : [u'.', u'."'] -his conjecture : [u','] -also have : [u'been'] -windows on : [u'either'] -called my : [u'cock'] -morning between : [u'nine'] -.""' : [u'Dearest'] -curious I : [u'became'] -written confirmation : [u'of'] -Defect you : [u'cause'] -bent it : [u'into'] -frantically to : [u'her'] -dreadful shriek : [u'.'] -definite, : [u'and', u'in'] -someone or : [u'something'] -that their : [u'sailing', u'land'] -of secrecy : [u'was', u'which'] -Last Monday : [u'Mr', u'I'] -only remains : [u',', u'Mrs'] -can at : [u'present', u'least'] -and oily : [u'clay'] -sloping down : [u'to'] -while others : [u'have'] -a singular : [u'man', u'document', u'contrast', u'case', u'chance', u'sight'] -bad compliment : [u'when'] -seen him : [u'get', u'.', u'driven'] -gentleman at : [u'No', u'this'] -ventilator when : [u'suddenly'] -, made : [u'a', u'use', u'his', u'the', u'up', u'sure', u'all'] -two months : [u'ago', u'older'] -reasoning from : [u'cause'] -works. : [u'See', u'Nearly', 'PP'] -you won : [u"'"] -hard work : [u'and'] -the track : [u'which', u'until'] -looking personally : [u'into'] -not now : [u'.'] -his existence : [u'.', u'there'] -major, : [u'imploring'] -the mines : [u'."'] -hangs a : [u'rather'] -other,' : [u'said'] -is that : [u'double', u'there', u'two', u'the', u'compared', u'which', u'this', u'I', u'you', u'?"', u'all', u'we', u'has'] -thumb upon : [u'a'] -glasses against : [u'the'] -A groan : [u'of'] -main chamber : [u'of'] -Oakshott for : [u'it'] -pay ten : [u'."'] -deductible to : [u'the'] -for daring : [u'I'] -HUNTER:-- : [u'Miss'] -Having once : [u'spotted', u'made'] -Australians. : [u'There'] -ostlers a : [u'hand'] -of town : [u','] -not escort : [u'her'] -in question : [u'occurred', u'."'] -then lounged : [u'down'] -tax his : [u'powers'] -his bluff : [u','] -on three : [u'English', u'sides'] -down under : [u'them'] -points to : [u'suicide'] -Apaches, : [u'had'] -of thread : [u','] -, hullo : [u','] -epistle. : ['PP'] -been possible : [u'to'] -my nerves : [u'worked', u'were'] -Leatherhead. : ['PP'] -Leatherhead, : [u'from', u'where'] -of small : [u'streets'] -English at : [u'me'] -down by : [u'one', u'two'] -best policy : [u'to'] -displayed, : [u'performed'] -late than : [u'never'] -from across : [u'the'] -strange bird : [u'.'] -the far : [u'side'] -attentions to : [u'the'] -cunning devils : [u',"'] -something out : [u'of'] -of resource : [u'and'] -stood as : [u'good'] -stood at : [u'the'] -heavy with : [u'the', u'snow'] -same trouble : [u','] -brain is : [u'as'] -singularly lucid : [u'."'] -OR FITNESS : [u'FOR'] -ended in : [u'a', u'the'] -papers were : [u'burned'] -facts to : [u'suit'] -the rapid : [u'deductions'] -tinted, : [u'with'] -my attention : [u',', u'to', u'wander', u'.'] -would cripple : [u'him'] -Reading I : [u'had'] -was overwhelmed : [u'by'] -? Impossible : [u'!"'] -In your : [u'heart'] -the hall : [u'to', u'door', u',', u'behind', u'onto', u'table', u'beneath', u'window', u'when'] -sitting here : [u'or'] -the half : [u'clad'] -Let the : [u'weight', u'whole', u'matter'] -usually people : [u'there'] -twelve or : [u'so'] -wild night : [u'.'] -put away : [u'in'] -door slammed : [u'heavily', u'overhead'] -house," : [u'she', u'continued'] -business myself : [u'.'] -Majesty. : [u'If', u'Then'] -laurel bushes : [u'made', u'there'] -Majesty, : [u'as', u'and', u'there'] -his shelves : [u'.'] -Majesty' : [u's'] -along has : [u'been'] -man seemed : [u'surprised'] -cried impatiently : [u'. "'] -last man : [u'to'] -station from : [u'time'] -bring home : [u'.'] -a gaol : [u'."', u'bird'] -replied Holmes : [u'; "'] -take any : [u'steps', u'action'] -interested white : [u','] -could towards : [u'me'] -expression was : [u'weary'] -"' Thank : [u'God', u'you'] -have asked : [u'had', u'.'] -was visited : [u','] -Bridge.' : [u'Here'] -imagine, : [u'but', u'Mr'] -or should : [u'not'] -realise that : [u'the'] -wife do : [u'when'] -his long : [u',', u'grey', u'arm', u'shining', u'thin', u'residence', u'pipe'] -publicity. : [u'On'] -an endless : [u'labyrinth'] -what others : [u'overlook'] -marry my : [u'daughter'] -villages up : [u'there'] -itself," : [u'said'] -Pall Mall : [u','] -him names : [u'at'] -Attica, : [u'and'] -became bad : [u'for'] -nine and : [u'ten'] -or immediate : [u'access'] -to pass : [u'through', u'the'] -as mine : [u'are', u'has', u'if'] -ill treatment : [u'from'] -and soothing : [u'his'] -mistress allowed : [u'her'] -equally well : [u'?"'] -, lithe : [u'and'] -peeled off : [u'under'] -sovereign from : [u'his'] -only daughter : [u'of'] -firelight strikes : [u'it'] -not ask : [u'for', u'it'] -great scandal : [u'threatened'] -not prove : [u'to'] -clever forgery : [u'to'] -shining with : [u'a'] -names at : [u'a'] -o'- : [u'the'] -broken him : [u'down'] -grow lighter : [u'as'] -drifting across : [u'from'] -formed my : [u'conclusions'] -shoe, : [u'just'] -Rucastle at : [u'once'] -street and : [u'found'] -by man : [u'or'] -was actually : [u'in'] -Lodge, : [u'Serpentine', u'or', u'and', u'waiting'] -straggling houses : [u'had'] -a chapter : [u','] -as plain : [u'as'] -jokes, : [u'and'] -, peeping : [u'over'] -was trying : [u'to'] -has in : [u'the'] -shutters if : [u'they'] -which awoke : [u'you'] -fundraising. : [u'Contributions'] -forefingers between : [u'his'] -have heard : [u'."', u'me', u'it', u'some', u'of', u',', u'that', u'so', u'what', u'all', u'uncle', u'something'] -dramatic in : [u'its'] -discretion must : [u'be'] -been informed : [u'that'] -in saying : [u'that'] -overtaken me : [u"!'"] -most dear : [u'should'] -always THE : [u'woman'] -You saw : [u'the', u'her'] -thirty feet : [u'down'] -, drew : [u'itself', u'out'] -nod he : [u'vanished'] -done to : [u'night', u'death', u'be', u'a'] -coolest and : [u'most'] -parted, : [u'a'] -distinct sound : [u'of'] -have someone : [u'to'] -large iron : [u'safe', u'trough', u'gates'] -But which : [u'of'] -She kept : [u'talking'] -recognised in : [u'that'] -afterwards. : ['PP', u'I'] -binding you : [u'both'] -a reporter : [u'on'] -are able : [u'to'] -the occipital : [u'bone'] -is condemned : [u'I'] -or other : [u'purposes', u'trace', u'about', u'immediate', u'format', u'form', u'intellectual', u'medium'] -seen young : [u'McCarthy'] -suggested to : [u'Clay'] -his aversion : [u'to'] -rely. : [u'Local'] -marked with : [u'every'] -backed novel : [u'.', u','] -had evidently : [u'taken', u'been'] -, before : [u'whom', u'we', u'you'] -! If : [u'you'] -can talk : [u'in'] -epistle. " : [u'Did'] -his force : [u'of'] -! In : [u'Victoria', u'a'] -sour face : [u','] -nothing actionable : [u'from'] -very often : [u'connected', u'for'] -! It : [u"'", u'would', u'was'] -by another : [u'loafer'] -within that : [u'time', u'radius'] -a sentence : [u','] -tangled a : [u'business'] -interjected Holmes : [u'.'] -whole machinery : [u'of'] -down considerably : [u'.'] -doubtless heard : [u'of'] -rope was : [u'there'] -which slopes : [u'down'] -attitude, : [u'but'] -throw any : [u'light'] -looked like : [u'a'] -blow which : [u'has'] -the riverside : [u'landing'] -on different : [u'terms'] -without her : [u'.'] -was under : [u'the'] -closed upon : [u'it'] -the accused : [u','] -She left : [u'this', u'her'] -the levers : [u'which', u'and', u'drowned'] -presence of : [u'a', u'those', u'the', u'one'] -male visitor : [u','] -all dark : [u'to'] -these gems : [u'?"'] -bridegroom, : [u'instantly'] -bridegroom. : [u'Had'] -% of : [u'the'] -the twilight : [u','] -Moran?" : [u'said'] -regular footfall : [u'of'] -his credit : [u'at', u'in'] -up out : [u'of'] -having caused : [u'some'] -hawk like : [u'nose'] -the pledge : [u'was', u'of'] -day to : [u'ask', u'morrow', u'this', u'you'] -article there : [u'should'] -city of : [u'ours'] -had no : [u'idea', u'difficulty', u'means', u'luck', u'friends', u'hesitation', u'time', u'occupation', u'knowledge', u'cause', u'hat', u'doubt', u'keener', u'great', u'feeling', u'capital', u'just', u'one', u'shoes', u'say'] -calling him : [u'names'] -thing about : [u'the'] -rain into : [u'your'] -alone once : [u'more'] -of Project : [u'Gutenberg'] -telling us : [u'where'] -entangled in : [u'the'] -be my : [u'own'] -bone and : [u'the'] -" Farewell : [u','] -even gaunter : [u'and'] -to secure : [u'it', u'the', u'his'] -third chamber : [u','] -s sleeve : [u'.'] -" Won : [u"'"] -was ten : [u'miles'] -she no : [u'longer'] -queen? : [u'Is'] -care of : [u'yourself', u'her', u'herself', u'his'] -cathedral, : [u'and'] -the jewel : [u'case', u'robbery', u'with'] -She is : [u'herself', u'the', u'waiting', u'what', u'impetuous', u'swift', u'an', u'a', u'my', u'of', u'four', u'even'] -spread of : [u'the'] -other words : [u','] -of decrepitude : [u','] -rather simplifies : [u'matters'] -bet, : [u'then'] -of wood : [u',', u'.'] -little Berkshire : [u'village'] -s friends : [u'were', u'?"'] -has turned : [u'all', u'up', u'out', u'her'] -confidence now : [u','] -presumption that : [u'the', u'Colonel'] -The more : [u'featureless'] -carved upon : [u'it'] -my curiosity : [u'and', u',', u'was'] -smoking, : [u'and'] -man as : [u'he', u'this', u'Sir'] -man at : [u'my'] -least ray : [u'of'] -user who : [u'notifies'] -sum ten : [u'times'] -may gain : [u'that'] -20% : [u'of'] -replied our : [u'visitor'] -a burst : [u'of'] -could any : [u'gentleman'] -must wire : [u'to'] -of artificial : [u'knee'] -child is : [u'concerned'] -retained. : [u'Then'] -all liability : [u'to', u','] -nature," : [u'he'] -. Twenty : [u'four'] -easy to : [u'get', u'restore', u'tell', u'see'] -in staring : [u'at'] -Holmes sprang : [u'out', u'from', u'forward'] -struck the : [u'light'] -force of : [u'character', u'many'] -He might : [u'."', u'have', u'avert'] -through in : [u'coming', u'green'] -been burgled : [u'."'] -contents startled : [u'me'] -his fists : [u'fiercely'] -us consider : [u'the', u'another'] -are that : [u'she'] -" Anyhow : [u','] -The game : [u'keeper', u"'"] -is off : [u','] -through it : [u'at', u'upon'] -would do : [u'as', u'nothing', u',', u'your', u'you', u'it', u'him'] -cold supper : [u'had', u'began'] -rumours as : [u'to'] -was suggestive : [u'.'] -Union Jack : [u'with'] -horrible crime : [u'."'] -breathe freely : [u'until'] -a possession : [u'of'] -charming invaders : [u'.'] -mile, : [u'and'] -s fine : [u'sea'] -is London : [u'eastern'] -bearing. : [u'The'] -your jacket : [u'is'] -treasure which : [u'we'] -Mary herself : [u'at'] -across from : [u'side', u'west'] -little slit : [u'of'] -certainly come : [u'."'] -little slip : [u'of'] -go to : [u'life', u'it', u'the', u'you', u'bed', u'any', u'little'] -instantly occurred : [u'to'] -in lieu : [u'of'] -lodger at : [u'the'] -the agency : [u'and'] -worthless or : [u'else'] -a constable : [u'entered'] -room for : [u'doubt', u'an', u'my', u'a', u'those'] -stains which : [u'had'] -stout man : [u'with'] -t say : [u'what', u'that'] -these vagabonds : [u'leave'] -worth considering : [u'."'] -considerably over : [u'the'] -deep attention : [u'the'] -Baker," : [u'said'] -pit unfenced : [u','] -preserve free : [u'future'] -friend lashed : [u'so'] -parallel cuts : [u'.'] -he enters : [u'port'] -stairs, " : [u'she'] -mind to : [u'go', u'control', u'run'] -they exactly : [u'fitted'] -, swordsman : [u','] -young McCarthy : [u'.', u"'", u'."', u'for'] -anyone whistle : [u'in'] -a husband : [u'already', u'.', u'coming'] -jewel with : [u'me'] -the greasy : [u'leather'] -friends were : [u'to'] -noised abroad : [u'.'] -we entered : [u',', u'a', u'.', u'he'] -has met : [u'with'] -has agreed : [u'to'] -fact in : [u'all'] -I kept : [u'all', u'a'] -what point : [u'?"', u'upon'] -Stoner did : [u'so'] -No crime : [u',', u',"'] -the larger : [u'but', u'and'] -shouted. " : [u'I'] -, tall : [u','] -have longed : [u'to'] -which such : [u'a'] -s amazing : [u'powers'] -water police : [u','] -me too : [u'well'] -a staff : [u'commander'] -so you : [u'will', u'missed', u'won'] -describe it : [u'.'] -little man : [u'was', u'.', u'and', u'stood'] -lest I : [u'should'] -big cat : [u','] -a battered : [u'billycock'] -doing something : [u'in'] -Game for : [u'a'] -contemplation. : [u'I'] -little may : [u'as'] -allow himself : [u'to'] -woman thinks : [u'that'] -take you : [u'away', u'round', u'up'] -there in : [u'an', u'twenty', u'January', u'time', u'private', u'silence', u'the'] -the St : [u'.'] -him stooping : [u'over'] -his bearing : [u'.', u'assured'] -to expect : [u'company'] -cleaver in : [u'the'] -he conveniently : [u'vanished'] -value which : [u'she'] -repulsion, : [u'and'] -hoping that : [u'I'] -2011[ : [u'EBook'] -there it : [u'vanishes'] -there is : [u'nothing', u'to', u'no', u'room', u'now', u'the', u'anything', u',', u'a', u'some', u'really', u'every', u'hardly', u'any', u'still', u'little', u'good', u'someone', u'at', u'plenty', u'another', u'only', u'but', u'an'] -is amusing : [u','] -other Project : [u'Gutenberg'] -incident of : [u'the'] -be modified : [u'and'] -of mind : [u'and', u'to', u'than'] -help remarking : [u'its'] -two edged : [u'thing'] -perhaps just : [u'a'] -items which : [u'I'] -matter I : [u'stood'] -?" she : [u'asked', u'cried'] -few and : [u'simple'] -was weary : [u'after', u'and'] -always oppressed : [u'with'] -A girl : [u'of'] -humbler are : [u'usually'] -; ' neither : [u'sickness'] -or when : [u'he'] -conditions, : [u'obtained', u'the'] -upon it : [u'.', u'."', u',', u'further', u'as', u'five', u'not', u'the', u'all'] -affair so : [u'completely'] -wedding dress : [u'of'] -conditions. : [u'So'] -you two : [u'will'] -, returning : [u'to', u'by', u'at'] -have dropped : [u'some'] -, year : [u'in', u'out'] -what that : [u'surly'] -bar and : [u'ordered'] -greater distance : [u'to'] -see all : [u'the', u'these', u'that'] -the pay : [u"?'", u'munificent', u'is'] -both before : [u'and'] -the clang : [u'of'] -Between nine : [u'and'] -Get back : [u'into'] -was carried : [u'out'] -The chances : [u'are'] -own province : [u'."'] -and closing : [u'his'] -eliminated everything : [u'from'] -gale and : [u'now', u'the'] -light coloured : [u'gaiters'] -and return : [u'to', u'or'] -quite as : [u'much', u'valuable', u'prompt'] -Holmes suavely : [u'. "', u', "'] -ways he : [u'has'] -my uncle : [u'Ned', u'Elias', u'returned', u", '", u',', u"'", u'burned', u'here'] -a boarding : [u'school'] -to influence : [u'him'] -Besides, : [u'remember', u'we', u'I', u'it', u'there', u'she', u'what'] -am Dr : [u'.'] -gather together : [u'that'] -shadow, : [u'and'] -way there : [u'every'] -disturbance in : [u'my'] -sister returned : [u'and'] -Serpentine plays : [u'no'] -west. : [u'The', u'In'] -afford to : [u'buy'] -of Gold : [u','] -an accurate : [u'description'] -license and : [u'intellectual'] -for many : [u'years'] -than others : [u','] -attend to : [u'the', u'.', u'my'] -good friend : [u'whose'] -honour to : [u'address', u'wish', u'ask', u'bear'] -lady loves : [u'her'] -rocket into : [u'the'] -test tubes : [u','] -laws of : [u'the', u'your'] -have confided : [u'my'] -dreadful vigil : [u'?'] -cocked pistol : [u'in'] -the few : [u'acres'] -how do : [u'you'] -nature when : [u'some'] -the number : [u'of', u'.'] -one having : [u'a'] -of March : [u','] -100 pounds : [u'down', u'a'] -should become : [u'the'] -week he : [u'hurled', u'had'] -passed along : [u'the'] -all gossip : [u'upon'] -are proof : [u'positive'] -impatiently at : [u'his'] -very fat : [u'and'] -death in : [u'that'] -taste than : [u'Italian'] -very far : [u'from', u'in'] -young girl : [u'."'] -pounds apiece : [u'an', u'.'] -meet you : [u".'", u'with'] -have caused : [u'the'] -disgust is : [u'too'] -remedied, : [u'and'] -black vizard : [u'mask'] -very own : [u'writing'] -and test : [u'tubes'] -Francis Prosper : [u'."'] -of doubting : [u'."'] -problem promises : [u'to'] -conveyed her : [u'by'] -still lay : [u'heavy', u'deep', u'as'] -One mistake : [u'had'] -asleep; : [u'your'] -." With : [u'a'] -cannot as : [u'yet'] -all might : [u'have'] -problems help : [u'me'] -William Crowder : [u','] -did so : [u','] -chap then : [u','] -asleep, : [u'and', u'with'] -asleep. : ['PP'] -ANY DISTRIBUTOR : [u'UNDER'] -I may : [u'want', u'trust', u'confess', u'have', u'add', u'sketch', u'be', u'possibly', u'place', u'take', u'arrive', u'say', u'give', u'draw', u'call', u'tell'] -A certain : [u'selection'] -, fluttered : [u'out'] -this German : [u'who'] -rings as : [u'they'] -the noble : [u'lord', u'houses', u'bachelor'] -pauper; : [u'but'] -coming up : [u'to'] -engineer had : [u'been'] -minutely examined : [u'."'] -name to : [u'be', u'the'] -in couples : [u'again'] -feet and : [u'clutched', u'ran', u'the'] -the proprietor : [u',', u'a'] -a thief : [u'?'] -a tomboy : [u','] -more featureless : [u'and'] -country that : [u'she'] -compelled to : [u'listen', u'open', u'eat', u'stop', u'sell'] -sight. : [u'The'] -little romper : [u'just'] -sight, : [u'he', u'Mr'] -its outrages : [u'were'] -dear daughter : [u'Alice'] -our future : [u'lives'] -without question : [u','] -' Put : [u'the'] -!" whispered : [u'Holmes'] -gazed about : [u'him'] -. Have : [u'the', u'you', u'your'] -and laid : [u'it', u'out', u'a', u'some'] -son saw : [u'that'] -strain no : [u'longer'] -lateral columns : [u'of'] -artist had : [u'brought'] -the thud : [u'of'] -that Neville : [u'St', u'is'] -us this : [u'evening'] -active member : [u'of'] -late he : [u'had'] -metal bars : [u'that'] -was dated : [u'at', u'from'] -small deal : [u'box'] -. Heavy : [u'bands'] -Continental Gazetteer : [u'."'] -else to : [u'enter', u'do', u'think'] -so dramatic : [u'in'] -anonymous Project : [u'Gutenberg'] -the vague : [u'feeling'] -carrying it : [u'at'] -." ADVENTURE : [u'III', u'IV', u'VI'] -too much : [u'.', u'to', u'imagination', u',', u'."', u'not', u'for', u'so', u'secrecy', u',"', u'then'] -tailless, : [u'but'] -could plainly : [u'see'] -will confine : [u'my'] -( 3rd : [u'floor'] -pocket, : [u'and', u'was', u'all', u'you'] -at Briony : [u'Lodge'] -single fact : [u'in'] -a visitor : [u'.'] -brim for : [u'a'] -impossibility of : [u'the'] -draught of : [u'water'] -torn away : [u'.'] -injustice to : [u'hesitate'] -inside a : [u'hansom'] -very grave : [u'face'] -current of : [u'his'] -disguises, : [u'I'] -inspector with : [u'a'] -might prove : [u'useful'] -really!" : [u'he'] -before your : [u'time', u'own'] -." Both : [u'Miss'] -of marble : [u'.'] -reached her : [u'he', u'yesterday'] -practice had : [u'steadily'] -his manners : [u','] -itself was : [u'locked'] -while the : [u'deep', u'clergyman', u'footpaths', u'other', u'lady', u'brass', u'inspector', u'marks', u'roof', u'plaster', u'fourth'] -find you : [u'cannot', u'there', u'."'] -From that : [u'appointment'] -loungers, : [u'and'] -for solution : [u'during'] -glance. : ['PP'] -his dress : [u'or', u',', u'and'] -a distinctly : [u'Australian'] -his ring : [u'finger'] -known eccentricity : [u','] -eye which : [u'could', u'made'] -get over : [u'this'] -a doubt : [u'upon', u'as', u'that'] -a loud : [u'and', u'hubbub'] -out. : ['PP', u'He', u'When', u'We', u'"', u'This', u'I', u'How'] -was newly : [u'come'] -with crates : [u'and'] -Always. : ['PP'] -and knocked : [u'.'] -for something : [u'passing', u'more'] -little close : [u".'"] -looked round : [u'for', u'and'] -those of : [u'Holmes', u'a', u'some'] -particular shade : [u'of'] -banks. : [u'Mr'] -the consulting : [u'room'] -mole, : [u'but'] -You provide : [u'a', u','] -seized my : [u'hair', u'coat'] -, " she : [u'seems'] -seized me : [u','] -shall just : [u'treat', u'have', u'be'] -well convinced : [u'that'] -s ingenious : [u'mind'] -But for : [u'the'] -small like : [u'himself'] -walking up : [u'and'] -bright looking : [u','] -fascinating daughter : [u'of'] -: Some : [u'five'] -had my : [u'note', u'rubber', u'purple', u'girl', u'man'] -go in : [u'and', u'it', u'for', u'without'] -marriage may : [u'mean'] -compared with : [u'the'] -McCauley cleared : [u'.'] -us!" : [u'said'] -go if : [u'a'] -coachman, : [u'to'] -and silent : [u'man'] -buttons entered : [u'to'] -Lestrade showed : [u'us'] -my takings : [u'.'] -the contrary : [u',', u',"', u'are', u",'"] -a welcome : [u'for'] -obtained an : [u'advance'] -room to : [u'wait', u'day', u'be'] -nerve in : [u'a'] -wanted so : [u'much'] -s Wharf : [u','] -most dangerous : [u'men'] -little clearer : [u'both'] -have her : [u'way'] -, doubled : [u'it'] -blue sky : [u','] -duly paid : [u','] -across it : [u'from', u'.'] -and lived : [u'generally', u'in'] -mind is : [u'made'] -during that : [u'time'] -what occurred : [u'in'] -Prendergast about : [u'my'] -immense rpertoire : [u','] -landlady. : [u'The'] -I travelled : [u'in', u','] -been loading : [u'their'] -you rest : [u'it'] -much angry : [u'as'] -landlady' : [u's'] -letter editions : [u'.'] -received.' : [u'A'] -About sunset : [u','] -that on : [u'the'] -clothes I : [u'can'] -Surrey, : [u'and'] -almost womanly : [u'hand'] -that of : [u'a', u'the', u'other', u'their', u'Hatherley', u'all', u'late', u'your', u'his', u'Mr', u'Colonel', u'none', u'one'] -works provided : [u'that'] -pieces he : [u'squeezed'] -large room : [u','] -with permission : [u'of'] -but she : [u'has', u'was', u'could', u'stood', u'is', u'paused', u'threw', u'glanced'] -of vital : [u'importance'] -long and : [u'very', u'earnestly', u'complex'] -like gravel : [u'from'] -, ' Singular : [u'Occurrence'] -t let : [u'me'] -us a : [u'visit', u'very', u'chance'] -did your : [u'mother', u'wife'] -were there : [u'before', u'.', u'the'] -word that : [u'I'] -ajar. : [u'Beside'] -I began : [u'to', u'as'] -who notifies : [u''] -You do : [u'not'] -capable of : [u'having', u'preserving', u'exercising', u'heroic'] -alternate format : [u'must'] -was waiting : [u'for', u'outside'] -certain, : [u'therefore', u'from', u'too'] -truly yours : [u','] -this planet : [u'.'] -threw her : [u'arms'] -itself, : [u'which', u'and', u'for'] -itself. : [u'What', u'The'] -very strong : [u'language', u'reason', u'piece'] -she stabbed : [u'with'] -cylinders and : [u'iron'] -the earth : [u'into', u'one'] -that had : [u'occurred', u'passed', u'been'] -very woman : [u'afterwards'] -and under : [u'the', u'strange'] -have bled : [u'considerably'] -cried Holmes : [u',', u'; "', u'with'] -, ( b : [u')'] -daughter may : [u'come'] -, online : [u'payments'] -we swung : [u'through'] -still to : [u'solve'] -suspicions were : [u'all'] -colonel to : [u'let'] -left ran : [u'a'] -matters will : [u'come'] -laden and : [u'uncongenial'] -the Scotland : [u'Yard'] -that imbecile : [u'Lestrade'] -even to : [u'you', u'discuss'] -looks upon : [u'all', u'as'] -The body : [u'exhibited'] -hall onto : [u'the'] -hungrily on : [u'the'] -controlled it : [u','] -persistence of : [u'Mr'] -Holmes to : [u'draw'] -upon which : [u'it', u'I', u'you', u'the', u'a', u'he', u'to', u'we'] -north, : [u'south', u'and'] -fiver, : [u'for'] -its brains : [u'out'] -Eyford, : [u'in', u'and', u'that'] -Eyford. : ['PP'] -order." : [u'Holmes'] -, saturated : [u'with'] -flood of : [u'light'] -down Threadneedle : [u'Street'] -were what : [u'I'] -expression, : [u'his'] -highest at : [u'the'] -never calls : [u'less'] -lamp above : [u'the'] -pavement with : [u'his', u'my'] -you before : [u'he', u'.', u'I'] -1 with : [u'active'] -the terrorising : [u'of'] -injured expression : [u'upon'] -quietly slipped : [u'into'] -were ready : [u'.'] -headings under : [u'this'] -drives me : [u'half'] -ll throw : [u'you'] -night probably : [u'with'] -detailed to : [u'us'] -am endeavouring : [u'to'] -then Mr : [u'.'] -not where : [u'the'] -the pawnbroker : [u"'"] -roughly judge : [u'from'] -by its : [u'ragged', u'contraction'] -of ground : [u','] -art for : [u'its'] -yell of : [u'pain'] -mere chance : [u'that'] -quiet; : [u'on'] -smoking his : [u'before'] -. Another : [u','] -thread, : [u'no'] -quiet. : ['PP'] -a pair : [u'of'] -quiet, : [u'little'] -last seen : [u','] -him father : [u','] -which so : [u'many'] -in last : [u'Saturday'] -thing under : [u'a'] -the connivance : [u'and'] -round we : [u'saw'] -hat upon : [u'the', u'his'] -sprang in : [u','] -quite weary : [u'.'] -sofa. : [u'This'] -dignity and : [u'power'] -, moonshine : [u'is'] -creature, : [u'Mr', u'or'] -One tallow : [u'stain'] -creature. : [u'He', 'PP'] -firmly into : [u'the'] -Cedars. : ['PP'] -Cedars, : [u'and'] -heads thrown : [u'back'] -his signature : [u'if', u','] -he exchanged : [u'a'] -relapsed into : [u'a'] -. Clearly : [u'such'] -I continue : [u'to'] -called about : [u'that'] -, " for : [u'they', u'you'] -arrest of : [u'Horner', u'the'] -lounging up : [u'and'] -papers diligently : [u'of'] -yellow light : [u'from', u'which', u'twinkling', u'between'] -am descending : [u'."'] -narrow belt : [u'of'] -us what : [u'you', u'is', u'has'] -Pool is : [u'a', u'thickly'] -occasionally even : [u'persuaded'] -, shouted : [u'to'] -went, : [u'and', u'mother', u'this', u'at'] -was made : [u'in', u'at'] -conviction that : [u'when', u'every'] -steam escaping : [u'continually'] -precious treasure : [u'which'] -BOHEMIA I : [u'.'] -with my : [u'wooing', u'assistant', u'writings', u'nerves', u'stick', u'things', u'hands', u'valise', u'back', u'claim', u'money', u'friend', u'stepfather', u'affairs', u'knowledge', u'new', u'nails', u'hand', u'wedding', u'miserable', u'own', u'lens', u'story', u'linen', u'charge'] -one left : [u'in'] -is young : [u'John', u'and'] -pray go : [u'on'] -paying 4 : [u'1'] -hand thrust : [u'into'] -engaged," : [u'said'] -an experience : [u'which'] -face onto : [u'his'] -America. : [u'Some', u'Men', u'As', u'You'] -this: ' : [u'You'] -well dressed : [u'young', u'and', u',', u'man'] -resolute she : [u'was'] -fly at : [u'his'] -with me : [u'.', u'in', u',', u'for', u'on', u'."', u'now', u'that', u'as', u'a', u'over', u'?"'] -great kindness : [u'to'] -lady, : [u'who', u'but', u'so', u'otherwise', u'and', u'clad', u'I', u'even'] -dried orange : [u'pips'] -needle work : [u'down'] -a porch : [u'which'] -muttered exclamation : [u'in'] -lady' : [u's'] -lady! : [u'my'] -shape of : [u'this', u'loans', u'a'] -matters." : [u'We'] -an afternoon : [u'stroll'] -lady? : [u'There'] -observing machine : [u'that'] -lady; : [u'but'] -me prick : [u'up'] -and outstanding : [u','] -taken advantage : [u'of'] -theories to : [u'suit', u'the'] -by someone : [u'who'] -the steady : [u','] -I retain : [u'the'] -police inspector : [u'suggested'] -the bedroom : [u',', u'window', u'.', u'that'] -and lit : [u'up', u'the'] -" Imitated : [u'."'] -contrary, : [u'for', u'my', u'you', u'he', u'Watson', u'this', u'your'] -She listened : [u'for'] -absolutely true : [u',', u'."'] -- If : [u'you'] -other idler : [u'who'] -. " Someone : [u'has'] -heavily timbered : [u'park'] -twinkled like : [u'an'] -, " is : [u'John', u'why', u'Dr', u'probably', u'it'] -grown goose : [u'."'] -remarkable episode : [u'.'] -shook hands : [u'with'] -correspondent, : [u'and'] -continued resistance : [u'of'] -private matter : [u','] -tack. : [u'Here'] -ever we : [u'came'] -Lascar, : [u'but', u'was', u'entreated'] -there must : [u'be'] -to caution : [u'.'] -thick and : [u'heavy'] -making inquiries : [u',"'] -hear all : [u'this'] -And brought : [u'Miss'] -noble houses : [u'of'] -Even after : [u'I'] -scene that : [u'she'] -rooms open : [u'out', u'.'] -had ever : [u'met', u'heard', u'done', u'seen', u'before', u'been'] -stormy, : [u'so'] -terrified woman : [u'.'] -outstretched hands : [u'and'] -gloom to : [u'guide'] -: of : [u'his'] -crust of : [u'metallic'] -, " here : [u'is', u"'"] -had even : [u'smoked'] -ledgers and : [u'sees'] -bosom of : [u'his'] -They spoke : [u'of'] -introduced to : [u'me'] -your brandy : [u'and'] -What can : [u'this', u'it', u'I', u'you', u'he'] -upon evil : [u'days'] -being right : [u'across'] -can read : [u'for', u'it'] -have added : [u'opium', u'to'] -in paragraph : [u'1'] -Holmes suddenly : [u'bent'] -the bond : [u'?'] -change not : [u'only'] -to father : [u'at'] -as right : [u'as'] -see you : [u'have', u'?"', u'at', u',"', u',', u'.', u'trying'] -seeds or : [u'orange'] -s egg : [u','] -that you : [u'have', u'intended', u'had', u'are', u'were', u'share', u'should', u'won', u'inquired', u'might', u'will', u'would', u'alternately', u'wished', u'could', u'may', u'imagine', u'can', u'also', u'did', u'keep', u'saw', u'wish', u'disliked', u'do', u'at', u'remarked', u'heard', u'give', u'place', u'went'] -apology, : [u'and', u'Mrs'] -list at : [u'present'] -days after : [u'my'] -ring?" : [u'I'] -black frock : [u'coat'] -trace remained : [u'of'] -limp to : [u'get'] -their League : [u'offices'] -sport and : [u'were'] -it short : [u'and'] -cannot call : [u'to'] -taken in : [u'Gordon'] -back to : [u'the', u'me', u'business', u'our', u'fetch', u'Europe', u'her', u'my', u'his', u'town', u'Lord', u'claim', u'pa', u'that', u'Winchester'] -her eyes : [u'fixed', u'glancing', u'were'] -two little : [u'turns', u'scores', u'dark', u'shining'] -waving his : [u'arms', u'long'] -thanking me : [u'on'] -act, : [u'man', u'and'] -a cool : [u'and'] -act. : ['PP', u'How'] -No good : [u'news'] -least in : [u'the'] -need, : [u'so'] -uncovered as : [u'the'] -an actress : [u'myself'] -threatened an : [u'occupant'] -online payments : [u'and'] -foreign stamp : [u'lay'] -Times every : [u'day'] -given orders : [u'that'] -even a : [u'touch'] -hurrying behind : [u'us'] -knocked. : [u'It'] -own person : [u'.'] -baffled until : [u'you'] -plantation at : [u'the'] -chamber which : [u'had'] -transferred to : [u'it'] -and chalk : [u'mixture'] -the disjecta : [u'membra'] -unsystematic, : [u'sensational'] -there every : [u'man'] -hail. : ['PP'] -thoroughly earning : [u'my'] -inform me : [u'whether', u'where'] -been submitted : [u'to'] -note books : [u'bearing'] -commence at : [u'100'] -closed my : [u'door'] -Getting a : [u'vacancy'] -thing like : [u'that', u'a'] -sprig of : [u'oak'] -through 1 : [u'.'] -not with : [u'the'] -army revolver : [u'in'] -have found : [u'that', u'to', u'myself'] -long light : [u'ladder'] -one the : [u'management', u'old'] -seen my : [u'friend'] -resentment, : [u'for'] -red in : [u'his', u'nose'] -having turned : [u'down'] -of sleeves : [u','] -as Gustave : [u'Flaubert'] -good gentleman : [u','] -site includes : [u'information'] -engaged for : [u'the', u'us'] -it open : [u'and'] -manner for : [u'the'] -of evidence : [u'to'] -fished about : [u'with'] -been hacked : [u'or'] -looking person : [u'in', u'.'] -. " Mr : [u'.'] -throw into : [u'the'] -., there : [u'is'] -rush tumultuously : [u'in'] -another with : [u'a'] -hope that : [u'I', u'by', u'you', u'this', u'the'] -hours might : [u'have'] -clatter upon : [u'the'] -the carpet : [u'bag'] -unique things : [u'are'] -concerning men : [u'and'] -heavy fur : [u'boa'] -herself at : [u'exactly', u'the'] -the depression : [u'of'] -case book : [u','] -Now do : [u'try'] -, filled : [u'for'] -saturated with : [u'the'] -definite end : [u'.'] -drove in : [u'silence'] -this forty : [u'grain'] -was speaking : [u'only'] -were suddenly : [u'cut'] -and smooth : [u'skinned'] -Passing down : [u'the'] -hearted in : [u'her'] -reply to : [u'any'] -examine its : [u'crop'] -shopping, : [u'proceeded'] -, bald : [u'enough'] -discovering a : [u'newly'] -is spent : [u'in'] -had seen : [u'little', u'what', u',', u'him', u'his', u'upon', u'it', u'a', u'in', u'her'] -bearing and : [u'deportment'] -fiver on : [u'it'] -gone through : [u'in', u'under'] -none would : [u'be'] -and everyone : [u'had'] -came upon : [u'him', u'the', u'her'] -noble families : [u'to'] -The second : [u'is'] -always ready : [u'to'] -body and : [u'mind', u'of', u'plucked'] -of confining : [u'yourself'] -with only : [u'a'] -single gentleman : [u'whose'] -reveal something : [u'to'] -Having done : [u'that', u'this'] -was looking : [u'at', u'earnestly'] -and keeps : [u'the', u'off'] -it closely : [u'from'] -dowry will : [u'run'] -this offhand : [u'fashion'] -Now then : [u','] -He unwound : [u'the'] -feel it : [u'closing', u'give'] -clock the : [u'light', u'next'] -X. : [u'The', u'THE'] -wrong we : [u'shall'] -Frankly, : [u'now', u'then'] -the ultimate : [u'destiny'] -treasure trove : [u'indeed'] -any rate : [u',', u".'"] -The third : [u'on'] -brimmed straw : [u'hat'] -no ordinary : [u'merit', u'one'] -the private : [u'park', u'bar'] -quarrels, : [u'and'] -" Her : [u'banker', u'father'] -man out : [u'on', u'of'] -nothing a : [u'few'] -her and : [u',', u'threw', u'choked', u'soon', u'went'] -conclusions before : [u'ever'] -and fronts : [u'of'] -we climbed : [u'the'] -concerning tax : [u'treatment'] -lower vault : [u'of'] -observe it : [u'at'] -he bade : [u'me'] -the neighbouring : [u'English', u'landowner', u'fields'] -his heel : [u','] -displayed upon : [u'the'] -need not : [u'interfere', u'point', u'tell', u'say', u','] -observe if : [u'there'] -Valley is : [u'a'] -A husband : [u"'"] -was rather : [u'unusual', u'severe', u'above'] -the amalgam : [u'which'] -in machine : [u'readable'] -many who : [u'had', u'will'] -One child : [u'one'] -dignity. : [u'The'] -stopped and : [u'looked'] -talk as : [u'to'] -Winchester this : [u'morning'] -flushed and : [u'struggling', u'darkened'] -for how : [u'could'] -protruding, : [u'his'] -had regained : [u'their'] -egg, : [u'and'] -tempted to : [u'give'] -the ashes : [u'of', u'were'] -rush, : [u'a'] -s inquiry : [u'.'] -episodes which : [u'have'] -would you : [u'please', u'have'] -I wrote : [u'them', u'to', u'my'] -the letter : [u'."', u'was', u'A', u'came', u'K', u',', u'my', u'.', u'had', u'and', u'the', u'which'] -concert I : [u'called'] -richer by : [u'some'] -I hear : [u'you', u'the', u'it', u'that', u'his', u'now'] -question as : [u'to'] -facts, : [u'together', u'Holmes', u'I', u'looking', u'but'] -facts. : [u'But', 'PP', u'You', u'Since'] -200 pounds : [u"?'"] -refinement and : [u'delicacy'] -large and : [u'comfortable'] -frequently gained : [u'my'] -had foreseen : [u'the'] -dearly. : [u'Large'] -had laid : [u'down', u'beside'] -observation in : [u'following'] -dying words : [u'.'] -brooch which : [u'consisted'] -every way : [u'.', u'in', u'to', u'that'] -holes. : [u'And'] -matter all : [u'day'] -the anxiety : [u'in', u'all'] -been several : [u'in', u'times'] -descending the : [u'stairs'] -her fingers : [u'fidgeted'] -bridegroom for : [u'some'] -coming along : [u'wonderfully', u'.'] -pipes. : [u'The'] -interest myself : [u'in'] -on you : [u'."', u'until'] -excited face : [u'.'] -danger if : [u'we'] -autumn of : [u'last'] -baying of : [u'a'] -widened gradually : [u','] -danger is : [u'over'] -whereabouts of : [u'the'] -danger it : [u'would'] -without ever : [u'having'] -product, : [u'and'] -upstairs together : [u','] -Off I : [u'set'] -India he : [u'married'] -, hydraulic : [u'engineer'] -never yet : [u'borne'] -fronts of : [u'his'] -had caused : [u'the'] -Ah, : [u'he', u'of', u'thereby', u'Bradstreet', u'yes', u'Watson', u'but', u'and', u'me', u'here', u'you', u'very', u'I', u'miss'] -the door : [u'.', u'opened', u'with', u'when', u'of', u'in', u'behind', u'mat', u'as', u'was', u'?"', u'and', u',', u',"', u'. "', u', "', u'."', u'locked', u'open', u'I', u'flew', u'saluted', u'had', u'to', u'tightly', u'slammed', u". '", u';', u'myself', u'that', u'lest', u'step'] -varied by : [u'silver'] -without even : [u'giving'] -twice read : [u'over'] -pray tell : [u'me'] -IDENTITY" : [u'My'] -they both : [u'said'] -this crate : [u','] -fainting. : [u'I'] -My own : [u'complete', u'seal'] -carried off : [u'both'] -lower one : [u'locked'] -so far : [u'that', u'forgotten', u'?"', u'as', u'grasped'] -rattled up : [u'to'] -" 4th : [u'.'] -an accountant : [u'living'] -had passed : [u'away', u'some', u'during', u'after', u'out', u'the'] -a dull : [u'pain'] -grounds for : [u'the', u'hope'] -more natural : [u'than'] -the vilest : [u'murder', u'antecedents'] -have interrupted : [u'you'] -commission, : [u'and'] -a white : [u'splash', u',', u'goose'] -gesture, : [u'and', u'that'] -the pockets : [u'?"', u'to', u'of'] -three miles : [u'off'] -, gaunt : [u'figure', u'woman'] -be complete : [u'without'] -snigger. " : [u'Well'] -gown, : [u'and', u'a', u'his', u'reading', u'looking'] -cases of : [u'greater', u'this'] -unnecessary footmarks : [u'might'] -mates, : [u'are'] -might come : [u',', u'by', u'from'] -sum, : [u'for', u'and'] -little souvenir : [u'from'] -course obvious : [u'upon'] -or sorry : [u'to'] -his injuries : [u'.'] -The idea : [u'of'] -paperwork and : [u'many'] -of one : [u'of', u'who'] -important as : [u'trifles'] -to withdraw : [u'when'] -lie undoubtedly : [u'in'] -words he : [u'sketched'] -, slim : [u','] -great beech : [u','] -You surprise : [u'me'] -fellow," : [u'said', u'answered'] -times from : [u'Serpentine'] -little detour : [u'into'] -expense of : [u'six', u'purchasing'] -clothes would : [u'have'] -aspect. : [u'Here'] -and mortar : [u','] -chins pointing : [u'upward'] -Roylott entirely : [u'while'] -she retorted : [u'upon'] -himself like : [u'a'] -lit dining : [u'room'] -some apparent : [u'surprise'] -paid the : [u'man', u'debt', u'fee'] -individuality of : [u'the'] -twelve mile : [u'drive'] -this morning : [u'in', u'with', u',', u'.', u',"', u'?"', u'."', u'had', u'marks'] -the Camberwell : [u'poisoning'] -stripped body : [u'had'] -a lobster : [u'if'] -diving down : [u'into'] -changing her : [u'seat'] -went home : [u'with', u'to'] -wife knew : [u'that'] -three figures : [u'?'] -a trout : [u'in'] -summons was : [u'a'] -unsolicited donations : [u'from'] -graceful figure : [u'and'] -Ha!" : [u'cried', u'said'] -built out : [u'in'] -prizes which : [u'have'] -plucking at : [u'my'] -sense would : [u'suggest'] -and chatted : [u'with'] -acquaintance upon : [u'the'] -exceedingly remarkable : [u'one'] -each candidate : [u'as'] -I retired : [u'to'] -and sickness : [u'came'] -Europe and : [u'took', u'America'] -father having : [u'signalled'] -said just : [u'now'] -the mere : [u'sight'] -been fortunate : [u'enough'] -not live : [u'there'] -shave by : [u'the'] -carelessly. " : [u'If'] -it need : [u'not'] -promoting the : [u'free'] -put this : [u'piece'] -do take : [u'my'] -benevolent curiosity : [u'were'] -sentinel sent : [u'a'] -then,' : [u'said', u'I'] -s watch : [u','] -remarkable to : [u'which'] -never beaten : [u'."'] -then," : [u'said', u'he'] -in red : [u'ink'] -where all : [u'is', u'traces'] -must act : [u','] -should prefer : [u'not', u'to'] -been found : [u','] -ulster ready : [u'.'] -after theories : [u'and'] -So accustomed : [u'was'] -who my : [u'friend'] -has actually : [u'been'] -wrenching at : [u'it'] -women that : [u'I'] -Information About : [u'Project'] -recovered. : ['PP', u'It'] -copied or : [u'distributed'] -guess you : [u'have'] -tapping the : [u'safe'] -States copyright : [u'in'] -in Leadenhall : [u'Street'] -, broken : [u'only'] -! We : [u'will', u'shall'] -marriage celebrated : [u'so'] -was always : [u'glad', u'oppressed', u'well', u'to', u'less', u'the', u'as', u'a'] -He only : [u','] -hundred to : [u'morrow'] -again just : [u'sending'] -opulence which : [u'was'] -further. : [u'Above'] -lens and : [u'lay', u'a'] -one from : [u'?'] -has got : [u'out', u'worse', u'beyond'] -knew he : [u'was'] -large animal : [u'moving'] -the cable : [u'will'] -strip, : [u'which'] -this John : [u'Openshaw'] -smearing them : [u'with'] -readers of : [u'the'] -been arrested : [u',', u'.'] -a hideous : [u'outcry', u'and'] -Out there : [u'fell'] -hearted to : [u'hurt'] -remarkable talent : [u'in'] -throughout numerous : [u'locations'] -s intentions : [u'and'] -Local aid : [u'is'] -made one : [u'of'] -some 14 : [u','] -overpowering excitement : [u'and'] -tug. : ['PP'] -fountain?" : [u'he'] -stairs I : [u'saw'] -was conscious : [u'of'] -is room : [u'for'] -exceptional violence : [u'.'] -INCIDENTAL DAMAGES : [u'EVEN'] -phrase" : [u'Project'] -returns. : ['PP', u'Royalty'] -swept market : [u'place'] -of Baker : [u'Street'] -cases were : [u'seldom'] -city to : [u'answer'] -s dress : [u'.', u'with', u'and'] -unlocked, : [u'and'] -unlocked. : [u'Within'] -his suspicious : [u'looks'] -It would : [u'be', u'break', u'of', u'only', u'cease'] -sounds quite : [u'hollow'] -your bandage : [u','] -small business : [u'matters'] -None. : ['PP', u'Neville'] -met so : [u'fascinating', u'utterly'] -write every : [u'day'] -a colonel : [u'.'] -buildings. : [u'Of'] -small sliding : [u'shutter'] -door opened : [u',', u'at', u'and'] -my inspection : [u'.'] -he knew : [u'who', u'that', u',', u'nothing', u'so'] -his blow : [u'fell'] -known him : [u'to', u'in'] -money through : [u'my'] -objection to : [u'the', u'your'] -his legs : [u'in', u'stretched', u'.'] -gazing at : [u'it', u'Holmes', u'the'] -smoke rocket : [u',', u'from'] -his brows : [u'knitted'] -write two : [u'letters'] -took sides : [u'with'] -Roylott returned : [u'and'] -of desperation : [u','] -But when : [u'I'] -least throw : [u'a'] -be cooped : [u'up'] -has followed : [u'me'] -my wit : [u"'"] -as fast : [u'as'] -' tailless : [u','] -My sister : [u'asked', u'had', u'thinks', u'Julia', u'and'] -monotonous occupation : [u'."'] -sharp instrument : [u'."'] -! But : [u','] -tradesmen' : [u's'] -also aware : [u'of'] -tradesmen, : [u'the'] -An examination : [u'showed'] -he raised : [u'his'] -as Holmes : [u'shot', u'had'] -follow from : [u'it'] -very fortunate : [u','] -letter my : [u'father'] -as such : [u'I', u'and'] -extraordinary narrative : [u'.'] -dummy bell : [u'ropes'] -River in : [u'southern'] -and attempted : [u','] -married right : [u'away'] -all open : [u'out'] -strong impression : [u'that'] -tobacco with : [u'laudanum'] -bed within : [u'that'] -you done : [u'?"'] -has something : [u'which'] -who has : [u'very', u'dropped', u'made', u'done', u'thoroughly', u'been', u'satisfied', u'worn', u'a', u'shown', u'carried', u'had', u'gone', u'evidently'] -in recognising : [u'Lestrade'] -treated you : [u'real'] -to Kilburn : [u',', u'.'] -driven through : [u'the'] -Clair. : [u'Out', u'His', u'Those'] -he not : [u'write', u'advertise', u'say', u'invent', u'explain', u'a'] -client was : [u'anxious'] -he now : [u'has', u','] -to who : [u'our', u'this'] -you dare : [u'to'] -Clair, : [u'with', u'which', u'the', u'of', u'then', u'I'] -yet to : [u'learn'] -results which : [u'would', u'the'] -The evidence : [u'against'] -just did : [u'it'] -and clutched : [u'the', u'at'] -a fair : [u'sum', u'proportion'] -wished to : [u'ask', u'see', u'be', u'have', u'speak'] -a fait : [u'accompli'] -anywhere at : [u'no'] -pass twice : [u'in'] -enabled him : [u'to'] -head sunk : [u'upon', u'forward', u'in'] -Evidently there : [u'was'] -dangerously slippery : [u','] -cloud in : [u'the'] -as passionate : [u'as'] -cannot blame : [u'you'] -matters to : [u'attend'] -patentee of : [u'the'] -deserted. : [u'As'] -Hullo! : [u'Here', u'Colonel'] -great financier : [u'.'] -of people : [u'.', u'of', u'who', u','] -straighten it : [u'?"', u'when'] -drop. : [u'I'] -had listened : [u'to', u'with', u'.', u'spellbound'] -stated, : [u'and'] -makes the : [u'danger', u'matter'] -an Eastern : [u'training'] -founder of : [u'the'] -deserved little : [u'enough'] -second floor : [u'window', u'of', u'.'] -any reply : [u'from'] -rope in : [u'his'] -punishment. : ['PP'] -visitor collapsed : [u'into'] -an axiom : [u'of'] -the title : [u'by'] -Cooee!' : [u'before', u'then', u'was'] -Major General : [u'Stoner'] -Cooee!" : [u'which'] -might or : [u'might'] -now thirty : [u'seven'] -know anything : [u'about', u'of'] -As it : [u'pulled', u'was', u'happens', u'is', u'emerged'] -marriage rather : [u'simplifies'] -it possible : [u'you', u'that', u'for', u'?"'] -feed him : [u'once'] -supposed suicide : [u'."'] -profound gravity : [u'upon'] -this to : [u'see'] -objections are : [u'fatal'] -exclaimed in : [u'unfeigned'] -minute grind : [u'me'] -those months : [u'.'] -over tender : [u'of'] -sat in : [u'the', u'silence', u'his'] -the sun : [u'was', u','] -her death : [u',', u'that'] -devote the : [u'same'] -had always : [u'laughed', u'been'] -noticed, : [u'and', u'with'] -what an : [u'observant'] -cabinet size : [u'.'] -was open : [u','] -performances and : [u'research'] -of talking : [u'to', u','] -and warm : [u'hearted'] -assisted the : [u'woman'] -arrived a : [u'confectioner'] -though no : [u'doubt'] -. Visited : [u'Paramore'] -because we : [u'expected'] -turned the : [u'handle', u'key'] -unavenged. : [u'Why'] -hopes. : ['PP'] -it went : [u'against', u'to'] -Pacific slope : [u'."'] -I must : [u'be', u'begin', u'discuss', u'insist', u'wire', u'really', u'compliment', u'go', u'pack', u'press', u'still', u'owe', u'confess', u'spend', u'have', u'use', u'turn', u'leave', u'raise', u'try', u'not', u'fly', u'remain', u'look'] -resolution pushed : [u'to'] -caused if : [u'any'] -damaged disk : [u'or'] -of Mississippi : [u'and'] -sleeper half : [u'turned'] -eyes as : [u'he'] -engagement lasting : [u'any'] -his instructions : [u'when'] -which presented : [u'such', u'more'] -lead to : [u'other'] -Three gilt : [u'balls'] -writing lately : [u','] -and stately : [u'business'] -sit contains : [u'2'] -had married : [u'me', u'a', u',', u'Lord', u'my'] -and illegal : [u'constraint'] -succeeded. : ['PP'] -our heads : [u'and'] -been wasted : [u','] -banker. : ['PP'] -' What : [u'will'] -interesting than : [u'her', u'it'] -to make : [u'my', u'it', u'a', u'merry', u'me', u'up', u'anything', u'sure', u'him', u'myself', u'the', u'in', u'donations'] -dried and : [u'collected'] -driver looked : [u'twice'] -am inclined : [u'to'] -sinking back : [u'in'] -, shrugged : [u'his'] -traced them : [u'as'] -user, : [u'provide'] -subtle are : [u'the'] -enable us : [u'to'] -. Between : [u'a', u'the'] -and wholesome : [u'the'] -laid out : [u'in', u'the', u', "', u'upon', u'all'] -the parents : [u'.'] -the robbery : [u'in', u',', u'."'] -custom when : [u'in'] -little reward : [u','] -the manager : [u'.', u'came'] -rapidly threw : [u'on'] -husband lies : [u'snoring'] -the sly : [u','] -Farrington Street : [u'.'] -sure that : [u'she', u'I', u'he', u'you', u'the', u'this', u'my', u'everything'] -danger for : [u'him'] -Deserted you : [u'?"'] -the strain : [u'would'] -Warsaw, : [u'I'] -broadened. : ['PP'] -happy, : [u'and'] -couch. : [u'I'] -happy. : ['PP'] -conceit," : [u'said'] -said she : [u'.', u'would', u'. "', u',', u", '", u". '", u', "', u'sharply', u'; "'] -a healthy : [u'mind'] -the daytime : [u'.'] -hoard, : [u'where'] -talking something : [u'or'] -than thirty : [u'.', u'feet', u','] -snuff. " : [u'Pray'] -simple problem : [u'presented'] -got off : [u','] -, nearing : [u'the'] -soul.' : [u'He'] -horrible worrying : [u'sound'] -first signs : [u'that', u'of'] -analysis and : [u'deduction'] -his life : [u'is', u'abroad', u'appeared'] -a verdict : [u'of'] -suggestive in : [u'fact'] -he folded : [u'up'] -very new : [u'and'] -weeks was : [u'at'] -OF THIS : [u'PROJECT'] -BACHELOR The : [u'Lord'] -with?" : [u'he'] -proceedings, : [u'fainted'] -years ago : [u',', u'to', u'in', u'."', u'.', u'and'] -go armed : [u'?'] -derived from : [u'the'] -without another : [u'word'] -morning upon : [u'the'] -sceptic," : [u'he'] -drawing out : [u'a'] -a glance : [u'that', u'as'] -understand by : [u'that'] -know at : [u'what'] -to blend : [u'with'] -beautifully situated : [u','] -respects you : [u'would'] -particular that : [u'had'] -have our : [u'web', u'own'] -humoured face : [u'. "'] -calmly. " : [u'You'] -anything dishonourable : [u'would'] -me uneasy : [u'.'] -blanche to : [u'act'] -became known : [u'that'] -safe, : [u'and', u'the', u'which', u'for'] -safe. : [u'I', 'PP'] -problems which : [u'were', u'have'] -inconvenience which : [u'our'] -best in : [u'the'] -offered of : [u'1000'] -though not : [u'the'] -dazed face : [u'the'] -indicate that : [u'you'] -beast. : [u'His'] -, his : [u'attitude', u'friend', u'baggy', u'white', u'sympathetic', u'manner', u'very', u'legs', u'reply', u'tall', u'house', u'shoulders', u'lips', u'eyes', u'skin', u'wrinkles', u'wife', u'socks', u'hat', u'lodger', u'arms', u'huge', u'bare', u'step', u'father', u'shiny', u'red', u'keys', u'brow', u'hands'] -door. " : [u'I'] -my disguise : [u'.', u'as'] -door. ' : [u'I'] -Proceed, : [u'then'] -saved. : ['PP'] -awaiting him : [u','] -another person : [u'has'] -saved! : [u'I'] -one knee : [u'rested'] -over Miss : [u'Sutherland'] -Does not : [u'that'] -in Southampton : [u'the'] -, James : [u'Windibank'] -is often : [u'compensated'] -a pipe : [u'for', u'rack', u'and'] -my life : [u',', u'than', u'.', u'would', u'have', u'has', u'."', u'was'] -the landlady : [u"'"] -. Public : [u'disgrace'] -fellows there : [u'in'] -yawn and : [u'glances'] -river, : [u'and'] -horrible scandal : [u'would'] -river. : ['PP'] -of Holder : [u'&'] -within two : [u'hours'] -You quite : [u'follow'] -stop here : [u','] -villainy here : [u',"'] -some little : [u'pride', u'danger', u'use', u'slurring', u'attention', u'time', u'sketch', u'trouble', u'nervous'] -do copyright : [u'research'] -bitten off : [u','] -which abound : [u'in'] -been upon : [u'me', u'him'] -friend once : [u'called'] -in tears : [u'.'] -These articles : [u','] -Good heavens : [u'!', u'!"'] -the hour : [u'when', u'you', u'of', u'that'] -singular chance : [u'has'] -little blue : [u'egg'] -native born : [u'Americans'] -the bridge : [u'of'] -that fellow : [u',"'] -prize, : [u'but'] -folding up : [u'the'] -the Sholto : [u'murder'] -know faddy : [u'but'] -was partly : [u'caved'] -else save : [u'the'] -head solemnly : [u','] -he like : [u','] -five, : [u'and', u'I'] -features which : [u'were'] -agreement shall : [u'be', u'not'] -excellent for : [u'drawing'] -direction in : [u'which'] -wonder at : [u'that', u'Lestrade'] -he suffered : [u'a'] -. Sometimes : [u'Holmes', u'I'] -, Paramore : [u','] -. Or : [u'should'] -whether any : [u'positive'] -see Holmes : [u'again', u'as'] -be third : [u'.'] -cases between : [u'the'] -didn' : [u't'] -. Of : [u'her', u'course', u'these', u'all'] -must go : [u'to', u'back', u'home', u'.', u'now'] -lens in : [u'his'] -: That : [u'is'] -you she : [u'would'] -. On : [u'the', u'entering', u'following', u'my', u'receiving', u'examination', u'returning', u'examining', u'ascertaining'] -cannot!' : [u'I'] -. Oh : [u',', u'!'] -expect us : [u'early', u'to'] -risers were : [u'just'] -post brought : [u'me'] -speak about : [u'it'] -the Noble : [u'Bachelor'] -Republican policy : [u'in'] -had drawn : [u'my'] -but gave : [u'it'] -with anyone : [u'.'] -ever chance : [u'to'] -took off : [u'his'] -quite short : [u'before'] -remove Miss : [u'Stoner'] -down all : [u'would'] -quite right : [u'to'] -is easily : [u'got', u'done'] -! That : [u'is', u'left', u'represents'] -scar and : [u'fixed'] -us talk : [u'it', u'about'] -look back : [u'at'] -, worn : [u'hollow'] -, worm : [u'eaten'] -. There : [u"'", u'has', u'is', u'was', u'will', u'you', u'were', u'are', u'I', u'he', u'can', u'must', u'the', u'have', u'it', u'would', u'could', u'cannot', u'only'] -of nickel : [u'and'] -warmly. : [u'"', 'PP'] -quartering of : [u'the'] -slight defect : [u'in'] -never doubted : [u'that', u'for'] -the posterior : [u'third'] -not in : [u'the', u'front', u'sitting', u'anger', u'darkness'] -very completely : [u'.'] -deadly pale : [u'and'] -he in : [u'favour', u'a'] -be next : [u'Monday'] -he is : [u'a', u'willing', u'satisfied', u'admirably', u'at', u'only', u'indeed', u'quite', u'mistaken', u'too', u'innocent', u'right', u'young', u'as', u'in', u'now', u'likely', u'acting', u'ever', u'dead', u'middle', u'sure', u'on', u'violent', u'the', u',', u',"', u'coming', u'one', u'always'] -bright pawnbroker : [u'out'] -high, : [u'until', u'thin', u'ringing', u'but'] -tray I : [u'will'] -remarked my : [u'friend'] -frost had : [u'set'] -upon begging : [u'in'] -his supporters : [u','] -place no : [u'limit'] -most determined : [u'attempts'] -were sold : [u'by'] -assailants; : [u'but'] -opposing windows : [u'loomed'] -the four : [u'wheeler'] -represents the : [u'last'] -further of : [u'the'] -solution. : [u'I', u'Mr'] -terms with : [u'this'] -honeymoon; : [u'but'] -sealed. : [u'But'] -old drama : [u'.'] -are fatigued : [u'with'] -mouth than : [u'the'] -low room : [u','] -idea who : [u'you'] -be all : [u'anxiety', u'right'] -was publicly : [u'proclaimed'] -story was : [u'so', u'written'] -I put : [u'ideas', u'my', u'the', u'on'] -lodgings he : [u'had'] -ashes enables : [u'me'] -his," : [u'said'] -should value : [u'even', u'your'] -other mortals : [u'.'] -he hears : [u'that'] -of meditation : [u','] -two crimes : [u'which'] -then blotted : [u','] -with ink : [u'.', u','] -he heard : [u'in', u'the', u'a'] -ran off : [u'as'] -Eastern divan : [u','] -, whenever : [u'he'] -been eight : [u'or'] -must stop : [u'here'] -applicant. : ['PP'] -?" To : [u'my'] -best pleased : [u','] -a Republican : [u'lady'] -cried and : [u'sobbed'] -their breakfasts : [u'at'] -to bed : [u'within', u'?"', u'again', u'after'] -I leave : [u'a', u'him', u'."', u'my', u'it'] -uncle and : [u'passed'] -they look : [u'upon'] -harm done : [u',', u'save'] -have we : [u'here'] -grave against : [u'the'] -its youth : [u','] -way out : [u'of', u'I', u'to'] -about, : [u'however'] -him hastening : [u'from'] -and pressed : [u'down'] -What papers : [u'?'] -marriage might : [u'have'] -gun or : [u'his'] -a holder : [u'.'] -my intimate : [u'friend'] -am very : [u'much', u'stupid', u'angry', u'sorry', u'anxious'] -neatness which : [u'characterises'] -men with : [u'long'] -succinct description : [u','] -the direct : [u'line'] -. Eight : [u'shillings'] -believe it : [u'."', u'!"'] -my clients : [u','] -your shoulder : [u'to'] -Your husband : [u','] -tide this : [u'morning'] -the huge : [u'crest', u'famished'] -case into : [u'your', u'my'] -perfectly trivial : [u'one'] -even attached : [u'to'] -Great Britain : [u'is'] -quiet pipe : [u'and'] -," whispered : [u'the', u'Holmes'] -believe in : [u'my', u'his', u'hard'] -Evidence of : [u'a'] -Then dress : [u'.'] -amplifying this : [u'in'] -, land : [u','] -heard to : [u'cry'] -with care : [u','] -entirely lost : [u'his'] -wit, : [u'for'] -always carry : [u'the'] -were Colonel : [u'Lysander'] -of silence : [u','] -my conduct : [u'would'] -the smile : [u'fade', u'hardened'] -I meant : [u'it'] -loss of : [u'it', u'a', u'the', u'power'] -Cusack, : [u'maid'] -will o : [u"'-"] -a heading : [u'which'] -across to : [u'the', u'me'] -compass breastpin : [u'."'] -" Dirty : [u'?"'] -backward, : [u'cocked', u'slammed'] -backward. : [u'For'] -can it : [u'mean'] -past belief : [u'that'] -more feeble : [u'than'] -yours who : [u'first'] -had her : [u'lunch', u'own'] -of German : [u'music', u'I'] -interest in : [u'this', u'it', u'preventing', u'those', u'her'] -wondered what : [u'it'] -, beside : [u'which', u'myself'] -name associated : [u'with'] -answered. ' : [u'You', u'He'] -waxed or : [u'waned'] -beyond it : [u','] -answered. " : [u'It', u'Your', u'The', u'But', u'I', u'Oh', u'And'] -sound that : [u'there'] -, varied : [u'by'] -. Only : [u'one'] -he must : [u'have', u'hurry', u'apparently', u'get', u'be', u'adapt', u'recall'] -ready traveller : [u'.'] -, Major : [u'Freebody'] -Twice she : [u'has'] -particular state : [u'visit'] -bang of : [u'a'] -one in : [u'it', u'these', u'the'] -and granted : [u'tax'] -little problem : [u',"', u',', u'upon', u'will', u'of', u'which', u'promises'] -gaping hole : [u','] -coloured gaiters : [u'.'] -drawn over : [u'his'] -one is : [u'stirring'] -that such : [u'a'] -bell ropes : [u','] -them back : [u'."'] -which in : [u'miners'] -of question : [u'in'] -waiting maid : [u'.', u','] -baby; : [u'an'] -and forward : [u',', u'with', u'against'] -seaman should : [u'be'] -the west : [u'of', u'country', u'.', u'wing'] -absorbed as : [u'ever'] -ever have : [u'accepted'] -pa was : [u'working', u'very'] -when your : [u'wife', u'stepfather', u'master'] -to describe : [u'.', u'it'] -which it : [u'was', u'gives', u'is', u'left', u'had', u'would', u'may', u'rose', u'took', u'worked', u'entailed'] -which is : [u'the', u'always', u'just', u'rather', u'in', u'a', u'upon', u'used', u'likely', u'given', u'dry', u'familiar', u'less', u',', u'about', u'itself', u'opposite', u'mature', u'enough', u'really', u'quite'] -to wake : [u'up', u'a'] -it formed : [u'a'] -portion and : [u'two'] -mostly of : [u'a'] -turn like : [u'mine'] -doubt indirectly : [u'responsible'] -married about : [u'seven'] -not dispose : [u'of'] -forgot all : [u'about'] -his trembling : [u'hand'] -incisive reasoning : [u',', u'.'] -their wardrobe : [u".'"] -NEGLIGENCE, : [u'STRICT'] -strange idea : [u'!"'] -cheery fire : [u'in'] -little heed : [u'to'] -wiser. : [u'Had'] -title by : [u'which'] -recorded, : [u'still'] -instantly gave : [u'the', u'rise'] -statement she : [u'said'] -heartily. " : [u'Your', u'No'] -All this : [u'is'] -The front : [u'room'] -there on : [u'foot'] -search was : [u'made'] -, alas : [u'!'] -wrapped a : [u'shawl'] -was panelled : [u'.'] -house won : [u"'"] -her end : [u'.'] -The other : [u'dived', u'was', u'clothes', u'is'] -hat and : [u'a', u'come', u'oppressively', u'the', u'goose', u'all', u'cloak'] -retiring disposition : [u'.'] -little expenses : [u'of'] -scintillating blue : [u'stone'] -very noblest : [u'in'] -the boots : [u'which'] -much older : [u'than'] -really ask : [u'you'] -postmark. : ['PP'] -fire spinning : [u'fine'] -flaming head : [u'. "'] -?'"' : [u'Well', u'Is', u'Certainly', u'Yes', u'Oh', u'No', u'A', u'About', u'Put', u'From', u'That', u'Breckinridge', u'Never', u'Because', u'Undoubtedly', u'I', u'The', u'To', u'We', u'Entirely', u'One', u'Ample', u'Quite', u'Stolen', u'You', u'My'] -shall call : [u'with', u'upon', u'a', u'for', u'at'] -fuss that : [u'is'] -is better : [u',"', u'to', u'that'] -There cannot : [u'be'] -flagged passage : [u','] -This Web : [u'site'] -may conceal : [u'what'] -this coronet : [u'with'] -be something : [u'out', u'grey', u'of'] -twelve miles : [u'over'] -looking, : [u'clean', u'was', u'I'] -different man : [u'to'] -looking. : ['PP'] -Sutherland, : [u'that', u'while', u'and', u'the'] -workmen at : [u'the'] -Sutherland. : ['PP'] -is Friday : [u','] -Sutherland' : [u's'] -is dated : [u'from'] -in to : [u'help', u'night', u'me'] -alternating from : [u'week'] -at present : [u'.', u',', u'."', u'than', u'see', u'in', u'make'] -What I : [u'expected', u'cannot'] -rather die : [u'under'] -I tossed : [u'my', u'them'] -occasionally allowed : [u'to'] -mustard. : [u'Toller'] -is this : [u',', u'written', u'K', u'Captain', u'infernal', u'extraordinary'] -Rucastle are : [u'going'] -the low : [u'whistle'] -are Finns : [u'and'] -corner and : [u'glancing', u'sat', u'helped'] -the lot : [u'at', u'of'] -concern. : ['PP'] -the various : [u'keys'] -What a : [u'queen', u'woman', u'time', u'tissue', u'week', u'shrimp', u'strange'] -new to : [u'me', u'him'] -What d : [u"'"] -preserve this : [u'coronet'] -donate royalties : [u'under'] -and compass : [u'breastpin'] -game, : [u'like'] -not conceal : [u'its'] -serenely. : [u'He', 'PP'] -reputation, : [u'such'] -abstracted it : [u'from'] -head to : [u'be', u'look'] -near each : [u'other'] -and thin : [u'upon'] -bags? : [u'Great'] -the vessel : [u'in'] -miss?' : [u'he'] -heavily barred : [u','] -prepare( : [u'or'] -cheetah was : [u'indeed'] -left this : [u'morning', u'door'] -sensational, : [u'I'] -How would : [u'fifty'] -that both : [u'glove'] -names in : [u'England'] -most interesting : [u'character', u'statement', u'which', u'one'] -red feather : [u'in'] -pocket of : [u'his'] -chuckled the : [u'inspector'] -had pursued : [u'the'] -some illness : [u'through'] -security unless : [u'our'] -miss, : [u'it'] -colonel. ' : [u'By'] -to it : [u'as', u',', u'."', u'also', u'.', u'but', u'from', u'that', u'?"', u'we', u'would'] -commonplaces of : [u'existence'] -this ground : [u'.'] -private note : [u'paper'] -was placed : [u','] -none commonplace : [u';'] -slipped into : [u'her'] -suggest no : [u'explanation'] -has at : [u'some', u'this'] -Twice my : [u'boy'] -fingertips still : [u'pressed'] -slope, : [u'thickening'] -sleepily from : [u'their'] -the whistle : [u'.'] -I cudgelled : [u'my'] -peeped a : [u'clean'] -Every morning : [u'I'] -became wealthy : [u'men'] -in considering : [u'this'] -the country : [u'looking', u'was', u',', u'of', u'.', u'folk', u'side', u'is', u'surgeon'] -goes to : [u'the', u'my'] -You villain : [u'!"'] -on me : [u'in', u'."'] -in public : [u'.'] -wall of : [u'the'] -He takes : [u'the'] -secret sorrow : [u','] -us care : [u'for'] -Afghanistan had : [u'at'] -of victory : [u'in'] -!' was : [u'meant'] -on my : [u'watch', u'part', u'level', u'success', u'face', u'best', u'word', u'pigments', u'slippers', u'clothes', u'things', u'guard', u'bed', u'hat'] -my spine : [u','] -assisting. : ['PP'] -How shall : [u'I'] -was larger : [u'than'] -graver issues : [u'hang'] -McCarthy the : [u'elder'] -entirely devoid : [u'of'] -was coincident : [u'with'] -dim veil : [u'which'] -despair in : [u'his'] -woods grew : [u'very'] -I rely : [u'upon'] -mere sight : [u'of'] -exclaimed. : ['PP'] -shone out : [u'from', u'like', u'right'] -such matter : [u'before'] -the corner : [u'.', u'of', u'dashed', u',', u'from', u'and', u'which', u'. "'] -I sleep : [u'more'] -quite cleared : [u'up'] -s neck : [u',', u'he'] -fearless in : [u'carrying'] -around the : [u'man'] -any expense : [u'which'] -hurry back : [u'to'] -opposed to : [u'its'] -both of : [u'us', u'them'] -! As : [u'if'] -dual nature : [u'alternately'] -reply from : [u'within'] -posted to : [u'day'] -deserve to : [u'be'] -. ADVENTURE : [u'II', u'V'] -. " Did : [u'I'] -no vice : [u'in'] -every afternoon : [u'I'] -two police : [u'fellows'] -why could : [u'he'] -want into : [u'the'] -typewrite them : [u','] -heels hardly : [u'visible'] -Such as : [u'they'] -. Disregarding : [u'my'] -We cannot : [u'spare'] -thrust her : [u'back'] -perfect day : [u','] -rattling of : [u'a'] -there stood : [u'a'] -much hurt : [u'?"'] -threw myself : [u',', u'through'] -, granting : [u'the'] -searching fashion : [u','] -rather have : [u'my', u'that'] -Give him : [u'an', u'a'] -of astonishment : [u'.'] -from time : [u'to'] -as described : [u'by'] -no result : [u'."'] -than for : [u'winter', u'the'] -search for : [u'him', u'me'] -could pass : [u'these'] -and down : [u'the', u'near', u',', u'in', u'with', u'.', u'into', u'a', u'on'] -his departure : [u','] -same position : [u'.', u'when'] -instinct which : [u'gave'] -the stable : [u'boy', u'lane'] -of Europe : [u'have', u'.'] -a lure : [u'which'] -some obstacle : [u'in'] -exchanging visits : [u'with'] -layers of : [u'lead'] -table and : [u'chair', u'went', u'glanced', u'tore', u'wondering', u'waiting'] -were absolutely : [u'true', u'ignorant'] -which tend : [u'to'] -he disguised : [u'himself'] -camera when : [u'he'] -the dollars : [u'won'] -Sold to : [u'Mr'] -With the : [u'connivance', u'result'] -from Charing : [u'Cross'] -master. : ['PP'] -pick up : [u'an'] -have but : [u'to', u'one'] -this page : [u'are'] -sister. : ['PP'] -He has : [u'every', u'his', u'one', u'written', u'taken', u'not', u'little', u'been', u',', u'a', u'nerve', u'died', u'seen', u'come'] -that Lady : [u'St'] -that double : [u'possibility'] -to sally : [u'out'] -furnished, : [u'with'] -furnished. : [u'A'] -occurred to : [u'separate', u'him', u'me'] -sister; : [u'but'] -wealth, : [u'he'] -third my : [u'own'] -In Victoria : [u'!'] -for ourselves : [u'."', u'.'] -up before : [u'she'] -I didn : [u"'"] -while busy : [u'with'] -thinking of : [u'leaving', u'turning'] -features as : [u'the', u'inscrutable'] -town the : [u'earliest'] -luxuries, : [u'my'] -lady dressed : [u'in'] -dashed into : [u'the'] -he unpacked : [u'with'] -travellers. : [u'I'] -then never : [u'go'] -was behind : [u'me'] -write from : [u'here'] -and read : [u'as', u',', u'it', u'the'] -will give : [u'a'] -Nor running : [u'a'] -, free : [u'life', u'handed'] -poor little : [u'reputation', u'Kate'] -If there : [u"'"] -. Snapping : [u'away'] -are anxious : [u'about'] -a lunatic : [u','] -a garden : [u'at', u'and'] -none more : [u'fantastic'] -the rich : [u'landowner'] -girt sheet : [u'of'] -forgetfulness; : [u'turn'] -her interests : [u'.'] -her secret : [u'."', u'the'] -as not : [u'to', u'quite'] -by such : [u'words'] -slighter evidence : [u',"'] -Her boots : [u'I'] -what conclusions : [u'did'] -a crime : [u'is', u'of'] -On my : [u'way'] -succession of : [u'sombre', u'papers'] -precisely I : [u'was'] -companions, : [u'but', u'took', u'who'] -! that : [u'was', u'is'] -nails, : [u'or'] -," explained : [u'the'] -past about : [u'a'] -remained in : [u'our', u'the'] -he with : [u'an', u'his', u'a'] -we lurched : [u'and'] -and daughter : [u'may'] -through an : [u'endless'] -bushes. : ['PP'] -absolutely refused : [u'to'] -respectable self : [u'."'] -then: ' : [u'Found'] -near Waterloo : [u'Bridge'] -rush to : [u'the', u'secure'] -a lane : [u'which'] -familiar to : [u'you', u'me', u'her', u'every', u'your'] -someone who : [u'has', u'had'] -plaid perhaps : [u'.'] -Stroud Valley : [u','] -afraid so : [u'.'] -that were : [u'true', u'he'] -noble bachelor : [u','] -month ago : [u','] -was dreadful : [u'hard', u'to'] -solved. : ['PP'] -and tossed : [u'them'] -they will : [u'not', u'have', u'soon'] -could earn : [u'as', u'700'] -Down the : [u'centre'] -! What : [u'a', u'have', u'can', u'an', u'danger'] -the opium : [u'den'] -strong woman : [u'with'] -he thought : [u'of', u'best'] -astonished at : [u'his'] -may add : [u',', u'that'] -filled with : [u'horror'] -for by : [u'exceptional'] -bouquet over : [u'to'] -famous in : [u'the'] -China, : [u'and'] -shrunk so : [u'as'] -China. : ['PP', u'I', u'When'] -an ornament : [u'.'] -acted otherwise : [u','] -the ugly : [u'wound'] -King took : [u'a'] -are none : [u'."', u'missing'] -all important : [u'.', u'it'] -sitting up : [u'in'] -soon learn : [u'all'] -some extent : [u'in'] -weakness in : [u'one'] -kindly eye : [u','] -well?" : [u'And'] -, invested : [u'it'] -your pal : [u'again'] -, exceedingly : [u'dusty'] -! capital : [u"!'"] -results. : [u'Grit', 'PP', u'The'] -strange adjective : [u'which'] -results, : [u'it', u'you'] -became his : [u'tenant', u'calling', u'tool'] -looked keenly : [u'about'] -fashion until : [u'his'] -Gutenberg Literary : [u'Archive'] -diversity of : [u'opinion'] -court," : [u'said'] -having touched : [u'the'] -Study in : [u'Scarlet'] -rushed up : [u'with'] -unlocking it : [u','] -the wedding : [u'."', u'.', u',', u'had', u'breakfast', u'?"', u'in', u'ceremony'] -were standing : [u'at'] -rack within : [u'his'] -office behind : [u'me'] -Turner. : [u'Both', u'You', 'PP', u'On', u'Above'] -Turner, : [u'who', u'the', u'of', u'should'] -there at : [u'ten', u'Christmas', u'about', u'all'] -shaking hands : [u'with'] -Presently he : [u'emerged', u'came'] -there as : [u'well', u'a'] -like our : [u"'"] -still screamed : [u'and'] -. Recently : [u'he'] -the deceased : [u',', u'had', u'wife'] -that some : [u'unforeseen', u'foul', u'terrible', u'little', u'good'] -two fists : [u','] -smaller than : [u'a'] -. Three : [u'gilt', u'of', u'thousand'] -happen, : [u'while'] -trifling experiences : [u','] -than random : [u'tracks'] -would finally : [u'secure'] -uncle?' : [u'I'] -and yesterday : [u'evening'] -, quick : [u'face', u','] -which extended : [u'halfway'] -The prisoner : [u'lay', u'turned'] -confused memory : [u','] -!" said : [u'Holmes', u'he', u'Mr', u'she', u'I', u'the', u'my'] -, retained : [u'some'] -the charred : [u'stump'] -Wimpole Street : [u','] -home to : [u'Saxe', u'my', u'visit', u'the'] -surprise her : [u'."'] -or might : [u'fly', u'not'] -only hope : [u'of', u'that'] -You don : [u"'"] -the IRS : [u'.'] -happened but : [u'what'] -throwing out : [u'two', u'their'] -dashed away : [u'through'] -her lunch : [u','] -cabman got : [u'down'] -approach of : [u'Peterson'] -the pit : [u'which'] -of hydraulics : [u','] -hardly avoid : [u'publicity'] -half asleep : [u','] -thought with : [u'a'] -nut for : [u'you'] -weapon now : [u'.'] -huge brown : [u'hands'] -is what : [u'began', u'he', u'we', u'Mr', u'appears', u'makes'] -strange talk : [u'for'] -but when : [u'I', u'Mr', u'they', u'my', u'there'] -and laughed : [u'heartily', u'again', u'in', u'.', u'his'] -other trace : [u'.'] -entering his : [u'room'] -danger threatened : [u'an'] -not remain : [u'clear'] -sunk, : [u'and'] -both good : [u'night'] -hour I : [u'sat'] -their explanations : [u'founded'] -crude. : ['PP'] -no constable : [u'was'] -extraordinary combinations : [u'we'] -theory tenable : [u'?"'] -find me : [u'at', u'ready', u'ungrateful'] -cause and : [u'effect'] -character in : [u'the'] -should make : [u'their'] -shall no : [u'doubt'] -Windibank running : [u'at'] -slipped on : [u'some'] -of probability : [u'.'] -find my : [u'friend'] -One by : [u'one'] -rooms than : [u'was'] -I understood : [u'that'] -and walked : [u'quietly', u'down', u'over', u'slowly'] -fixed it : [u'all'] -Why do : [u'you'] -man that : [u'I', u'he', u'it'] -safe upon : [u'its'] -fixed in : [u'a'] -man than : [u'he'] -said a : [u'woman', u'few', u'word'] -occasionally during : [u'the'] -prepare for : [u'the'] -in person : [u'on', u'to'] -I hold : [u'in', u'to'] -, brightest : [u'little'] -quiet nature : [u'.'] -are engaged : [u',"'] -the Study : [u'in'] -as governess : [u'.'] -had pretty : [u'nearly'] -a lie : [u'?'] -it very : [u'nicely', u'well', u'carefully', u'slow', u'hard', u'unlikely'] -said I : [u', "', u", '", u'; "', u'.', u". '", u'as', u',', u"; '", u'. "', u'ruefully'] -his glasses : [u'a', u'more'] -at every : [u'turn', u'chink'] -form of : [u'society', u'poison'] -since that : [u'date'] -money should : [u'be'] -now learn : [u'to'] -not venture : [u'to'] -your roof : [u','] -she slowly : [u'sank'] -returned on : [u'hearing'] -solder the : [u'second'] -Evening News : [u','] -her money : [u',"', u'.'] -to crime : [u'.', u'until', u'it'] -Holder," : [u'said'] -finally, : [u'with', u'the', u'where', u'at'] -rather unusual : [u'.'] -manner one : [u'of'] -observed, : [u'taking', u'to'] -would claim : [u'his'] -of Henry : [u'Bakers'] -tune under : [u'my'] -and inquire : [u'as', u'whether'] -in time : [u'to', u'for'] -beautifully. : [u'The'] -fifty 1000 : [u'pound'] -cut was : [u'not'] -news. : ['PP'] -news, : [u'and'] -tones which : [u'he'] -presence could : [u'be'] -his companion : [u','] -any influence : [u'.', u'with'] -sweat was : [u'pouring'] -a sound : [u',', u'which'] -s lodge : [u'keeper'] -the port : [u'of'] -committed to : [u'complying'] -wrong with : [u'it'] -in Gravesend : [u'by'] -loaf he : [u'devoured'] -laid some : [u'terrible'] -myself by : [u'the', u'a', u'examining'] -: there : [u'has'] -had staggered : [u'and'] -alley of : [u'human'] -much secrecy : [u'over'] -Holmes clapped : [u'his', u'the'] -was escorted : [u'home'] -grey travelling : [u'cloak'] -heard him : [u'mention', u'do', u'yourselves'] -frank acceptance : [u'of'] -attention was : [u'speedily'] -t like : [u'anything'] -it just : [u'as'] -if possible : [u'.'] -being himself : [u'not'] -coaxing. : [u'He'] -seen now : [u'all'] -you refuse : [u'the'] -not know : [u'her', u'how', u'whether', u'what', u'where', u'.', u'when', u'that', u'at', u".'"] -indicated a : [u'spirit'] -, changing : [u'her'] -companion. " : [u'We', u'I'] -with whatever : [u'interest'] -companion. ' : [u'Pon'] -took the : [u'smoke', u'liberty', u'paper', u'advice', u'letters', u'tattered', u'bell', u'lamp', u'precious', u'more'] -has consoled : [u'young'] -announce Miss : [u'Mary'] -Your news : [u'of'] -you comply : [u'with'] -his successors : [u'.'] -day is : [u'Saturday'] -possible getting : [u'out'] -day it : [u'was'] -which touched : [u'at'] -was before : [u'your'] -less striking : [u'when'] -real and : [u'imminent'] -just show : [u'you'] -would recognise : [u'even'] -Without a : [u'word'] -day in : [u'the', u'Gravesend', u'which'] -of existence : [u'.'] -have fled : [u'from'] -more flurried : [u'than'] -surprised and : [u'interested', u','] -significant allusion : [u'to'] -shoulders, : [u'and', u'bent', u'a'] -news and : [u'the'] -thirty seven : [u'years'] -the problems : [u'which'] -The doctor : [u'?"'] -postmark and : [u'with'] -evening papers : [u'.', u'."'] -records. : [u'Among', 'PP'] -records, : [u'and'] -A pair : [u','] -museum. : ['PP'] -dressed men : [u'smoking'] -clear upon : [u'that', u'the'] -aged, : [u'has', u'that'] -leave, : [u'you', u'as', u'I'] -leave. : ['PP', u'Some', u'Outside'] -indifferent and : [u'contemptuous'] -summonses which : [u'call'] -the table : [u'.', u'and', u',', u'. "', u'with', u'in', u'he', u'of', u'stood', u'waiting', u'ten', u'had'] -my gun : [u'and'] -have mercy : [u'!"'] -shaven young : [u'fellow'] -pavement beside : [u'him'] -faults, : [u'too'] -taking the : [u'paper', u'final'] -no active : [u'enemies'] -heavily. " : [u'Well'] -same with : [u'the'] -broke into : [u'a'] -little weaknesses : [u'on'] -am convinced : [u'now', u'that', u'from'] -often do : [u'from'] -of causing : [u'it', u'some'] -scraped, : [u'but'] -pink tinted : [u'note'] -in braving : [u'it'] -will begin : [u'it', u'another'] -easy at : [u'night'] -and tucked : [u'his'] -vanishes among : [u'the'] -him but : [u'that', u'I'] -now it : [u'is'] -If that : [u'were'] -of view : [u',', u'a', u'that', u'until'] -now is : [u'precious', u'rather'] -have failed : [u'to'] -Wilhelm Gottsreich : [u'Sigismond'] -drops of : [u'blood'] -had once : [u'been'] -pen. " : [u'Name'] -now if : [u'I'] -coat only : [u'half'] -insufficient data : [u'.'] -the acquirement : [u'of'] -to clearing : [u'James'] -occasionally good : [u'enough'] -salary, : [u'the'] -we progress : [u'."'] -now in : [u'the', u'custody', u'which', u'Philadelphia'] -reply. : [u'Swiftly'] -reply, : [u'when'] -unenforceability of : [u'any'] -t cut : [u'your'] -ve got : [u'mixed', u'him'] -press has : [u'not'] -and west : [u'every', u'.'] -which brought : [u'the', u'a'] -sad faced : [u'man', u','] -vizard mask : [u','] -at work : [u'again', u'upon', u'.', u',"', u','] -if rumour : [u'is'] -If his : [u'purpose', u'motives'] -they give : [u'you'] -engaged. : ['PP', u'My'] -off; : [u'but'] -clock she : [u'rose'] -lack lustre : [u'eye'] -remarked to : [u'you', u'your'] -809 North : [u'1500'] -nerves were : [u'worked'] -I paid : [u'the'] -print, : [u'but'] -it again : [u'.'] -Where, : [u'indeed', u'then'] -nothing yourself : [u'last'] -the grip : [u'of'] -an anonymous : [u'Project'] -sat frequently : [u'for'] -mind at : [u'rest'] -wheeler which : [u'was'] -mind as : [u'well', u'I'] -never bring : [u'you'] -a royal : [u'duke'] -cut to : [u'the'] -barometric pressure : [u'."'] -him before : [u'."', u'seeing', u'as'] -the grim : [u'and'] -set a : [u'price'] -was inclined : [u'to'] -was weighted : [u'by'] -chair!" : [u'said'] -abandons himself : [u'to'] -catch a : [u'glimpse'] -rest he : [u'can'] -There were : [u'several', u'meetings', u'six', u'no', u'thirty', u',', u'none', u'four', u'Sherlock', u'a'] -the utter : [u'stillness'] -finally of : [u'the'] -carried are : [u'obviously'] -, Mrs : [u'.'] -you budge : [u'from'] -the 11 : [u':'] -but silence : [u'that'] -damages. : [u'If'] -this unpleasant : [u'interruption'] -the fringe : [u'of'] -Foundation are : [u'tax'] -t make : [u'bricks', u'no'] -prior claim : [u'to'] -you go : [u'at', u'?"', u'into', u'back', u'out', u'to'] -to hunt : [u'down'] -Lodge. : [u'It', u'As', 'PP'] -case for : [u'the', u'you'] -little above : [u'the'] -assistance. : [u'I', 'PP', u'The'] -both, : [u'or'] -assistance, : [u'either', u'to'] -both; : [u'but'] -breakfast 2s : [u'.'] -sea waves : [u'.'] -inspector and : [u'two', u'a', u'gave'] -imposing, : [u'with'] -applicable state : [u'law'] -solve anything : [u'."'] -letter was : [u'superscribed'] -them are : [u'so'] -the early : [u'hours', u"'", u'days', u'tide', u'spring'] -her bedroom : [u','] -t bring : [u'it'] -boards round : [u'and'] -fingers in : [u'time'] -there she : [u'saw'] -saviour and : [u'the'] -the Pacific : [u'slope'] -had apparently : [u'adjusted'] -with tinted : [u'glasses'] -a kettle : [u'.'] -down, ' : [u'can'] -little passage : [u'in'] -known. : ['PP'] -whistled. : ['PP'] -None at : [u'all'] -disease. : ['PP'] -disease, : [u'was', u'for'] -your papers : [u'for'] -bodies lying : [u'in'] -five now : [u'.'] -conscience. : ['PP', u'Your'] -d have : [u'done'] -is walking : [u'."'] -been away : [u'from', u'five'] -had sold : [u'the'] -being placed : [u'upon'] -' H : [u'.'] -the clank : [u'of'] -me without : [u'pa', u'a'] -as death : [u'.'] -between my : [u'father', u'pride', u'saviour'] -am tempted : [u'to'] -over in : [u'his', u'the', u'cool', u'despair'] -but stop : [u'when'] -woman might : [u','] -trap drove : [u'on'] -woman.' : [u'There'] -over it : [u'all', u'.', u'and', u'. "'] -again to : [u'the', u'come'] -he half : [u'opened'] -bundle of : [u'papers', u'paper', u'them'] -you last : [u','] -house nor : [u'garden'] -a witness : [u'of', u','] -hold myself : [u'absolved'] -where the : [u'firelight', u'letters', u'company', u'typewritist', u'party', u'stable', u'lady', u'family', u'little', u'poison', u'thumb', u'security', u'beryls', u'snow', u'wet'] -surmise than : [u'on'] -other weapon : [u'."'] -' A : [u'little'] -theory certainly : [u'presents'] -of winding : [u'stone', u'up'] -parallel cases : [u','] -was coming : [u'down', u'save'] -a fancy : [u'to'] -main facts : [u'of'] -was Neville : [u'St'] -the ominous : [u'words', u'bloodstains'] -with straining : [u'ears'] -all to : [u'know', u'be', u'go'] -servants and : [u'with'] -the hanging : [u'lamp'] -elder using : [u'very'] -doctor says : [u'it'] -is easier : [u'to'] -cried breathlessly : [u". '"] -the tassel : [u'actually'] -picture does : [u'to'] -down once : [u'more'] -a confession : [u',"'] -then glanced : [u'at'] -caseful of : [u'cigarettes'] -day; : [u'so'] -sprang at : [u'a'] -momentary gleam : [u'of'] -so interested : [u'in'] -reached it : [u'we', u'.'] -instructions when : [u'she'] -the foresight : [u'and', u',"'] -marked up : [u','] -day. : [u'My', u'It', 'PP', u'I', u'Supposing', u'By', u'His'] -day, : [u'and', u'just', u'complimented', u'Mr', u'as', u'glisten', u'or', u'you', u'would', u'with', u'from', u'for', u'I', u'Lord', u'that', u'a', u'however'] -' Frisco : [u'.', u','] -and blunt : [u'weapon'] -!" muttered : [u'Holmes'] -day' : [u's'] -it hurriedly : [u','] -budge from : [u'the'] -the winds : [u','] -call in : [u'England'] -went; : [u'but'] -he needed : [u'it'] -only could : [u'show'] -marked face : [u'and'] -and marked : [u'with'] -obvious from : [u'the'] -no official : [u'agent'] -factor which : [u'might'] -wax which : [u'would'] -morning marks : [u'my'] -call it : [u'conclusive', u'cruel', u'.', u','] -trick in : [u'a'] -dangerous company : [u'which'] -After an : [u'hour'] -it points : [u'to'] -evolved from : [u'his'] -glancing keenly : [u'at'] -oily clay : [u'pipe'] -out what : [u'had'] -suddenly springing : [u'to'] -to touch : [u'the'] -"' Well : [u",'", u','] -within its : [u'own'] -odd ones : [u';'] -became suspicious : [u','] -a mind : [u'with'] -more heavily : [u'than'] -movement and : [u'an'] -copied and : [u'distributed'] -shouting of : [u'two'] -morning I : [u'determined', u'was'] -invaders. : [u'Lord'] -Holmes remarked : [u'as'] -the Surrey : [u'side'] -has. : ['PP'] -s better : [u'!"'] -value than : [u'if'] -meshes which : [u'held'] -unusual in : [u'a'] -I quite : [u'follow', u'committed'] -really quite : [u'as'] -an outbreak : [u'?"'] -blue paper : [u','] -the smell : [u'of', u'grew'] -all enterprise : [u'and'] -vanishing into : [u'the'] -their habits : [u'and'] -strong character : [u','] -by her : [u'stepfather', u'society'] -a regurgitation : [u'of'] -a thousand : [u'details', u'wrinkles'] -Your duties : [u','] -ever on : [u'any'] -disown it : [u'.'] -he soon : [u'saw'] -jewel box : [u'.'] -has endeavoured : [u'to'] -included. : [u'Thus'] -last on : [u'the'] -off and : [u'that', u'return'] -reason of : [u'his'] -it takes : [u'a'] -putting a : [u'new'] -gown. : [u'When'] -part is : [u'a'] -height; : [u'strongly'] -carre, : [u'you'] -"' Do : [u'you'] -height, : [u'with', u'slim', u'figure'] -waited by : [u'the'] -conclusions did : [u'the'] -lady in : [u'the'] -part in : [u'it', u'opposing', u'the'] -and their : [u'more', u'wardrobe'] -two barred : [u'tailed'] -. Logic : [u'is'] -. Apply : [u'in'] -little Mary : [u','] -deserted there : [u'."'] -his two : [u'fists', u'forefingers'] -to two : [u".'", u'points', u'large'] -ascended the : [u'stair'] -the pistol : [u'clinked'] -scrawl, : [u'telling'] -waiting in : [u'the'] -drew up : [u'in', u'his', u'the'] -laid an : [u'egg'] -from public : [u'domain'] -if McCarthy : [u'is'] -grass was : [u'growing'] -them some : [u'paternal'] -talking excitedly : [u','] -miserable secret : [u'as'] -as relics : [u'of'] -single lurid : [u'spark'] -leaps and : [u'bounds'] -can go : [u'elsewhere'] -confess at : [u'once'] -must yourself : [u'have'] -sings. : [u'Has'] -of quarrel : [u'which'] -want to : [u'find', u'introspect', u'go', u'do', u'frighten', u'test', u'know', u'see', u'get'] -a nurse : [u'girl'] -there for : [u'one'] -no maker : [u"'"] -my honour : [u'but', u','] -world I : [u'adopted'] -hunted animal : [u'.'] -could even : [u'dimly', u'tell'] -career of : [u'every'] -live a : [u'month'] -this smooth : [u'faced'] -insult your : [u'intelligence'] -evening he : [u'was'] -Southampton Road : [u','] -the flock : [u".'"] -the directors : [u'have'] -editions. : [u'Then'] -editions, : [u'all'] -little livid : [u'spots'] -was presumably : [u'well'] -All is : [u'lost'] -self reproach : [u'and'] -gather about : [u'the'] -pray not : [u','] -of wishing : [u'him'] -, ' to : [u'witness', u'advance'] -help and : [u'a', u'advice'] -notice, : [u'but'] -I concealed : [u'a'] -his new : [u'premises', u'offices', u'client'] -Why that : [u"?'"] -what the : [u'object', u'motive', u'lad', u'county', u'exact', u'girl', u'fellow', u'law', u'meaning'] -any dislike : [u'to'] -here had : [u'a'] -associated) : [u'is'] -bled considerably : [u'."'] -now explore : [u'the'] -catching a : [u'train'] -of replacement : [u'or'] -lime cream : [u'.', u','] -importance of : [u'sleeves'] -anger, : [u'however', u'that', u'and'] -here has : [u'been'] -anger. : ['PP', u'Mary'] -childish. : [u'She'] -close thing : [u','] -to occur : [u'.', u'to', u': ('] -his room : [u'I', u'.', u',', u'was', u'early', u'in', u'and'] -Windibank wished : [u'Miss'] -Lord St : [u'.'] -would commence : [u'at'] -for father : [u'to'] -about' : [u'jumping'] -attacked it : [u'.', u'."'] -he consulted : [u'.'] -been my : [u'partner', u'escape'] -about. : [u'In', 'PP'] -crop of : [u'a'] -shy man : [u','] -? No : [u'one', u'reference', u','] -bear"-- : [u'he'] -Ryder stood : [u'glaring'] -have any : [u'grievance', u'visitors', u'news', u'influence', u'practice', u'other', u'bearing'] -finished speaking : [u'to'] -" Stop : [u'it'] -the cut : [u'was'] -a quiet : [u'neighbourhood', u'and', u'air', u'word', u'pipe', u',', u'nature'] -later he : [u'was'] -help of : [u'the', u'several', u'a'] -situation. : ['PP', u'My', u'I'] -situation, : [u'and', u'miss'] -and bonnet : [u','] -half clad : [u'stable'] -cashier, : [u'I'] -new, : [u'no'] -with everything : [u'which'] -herself in : [u'evening'] -of sensationalism : [u'which', u','] -little past : [u'six'] -enter into : [u'my'] -had half : [u'risen'] -some foolish : [u'freak'] -and explained : [u'that'] -the advance : [u'was'] -Road. : [u'Half', 'PP', u'A', u'In', u'The', u'My'] -Road, : [u'and', u'egg', u'to', u'where', u'a'] -unless it : [u'were', u'is'] -to in : [u'your', u'the'] -above suspicion : [u'.'] -the fourth : [u'smartest', u'day', u'a', u'was'] -one goes : [u'into'] -him do : [u'it'] -a particularly : [u'malignant', u'unpleasant'] -and made : [u'my', u'me', u'our', u'a', u'for'] -kindly attend : [u'to'] -put so : [u'nice'] -crippled wretch : [u'of'] -of vanishing : [u'into'] -seat as : [u'requested'] -into Hyde : [u'Park'] -tracks, : [u'which'] -star or : [u'two'] -youth in : [u'an'] -find your : [u'own'] -Holmes had : [u'not', u'sat', u'sprung', u'been', u'brought', u'foretold', u'remarked', u'opened', u'a'] -arms about : [u'my'] -in forming : [u'his', u'an'] -know you : [u'well', u','] -. Who : [u'could', u'would', u'were', u'do'] -this relentless : [u'persecution'] -flap, : [u'just'] -" Lady : [u'St'] -steps by : [u'which'] -excellent company : [u'for'] -The skylight : [u'above'] -this four : [u'year'] -get the : [u'tickets', u'end', u'facts', u'money', u'address'] -gather from : [u'that', u'this'] -a headache : [u','] -antics of : [u'this'] -of being : [u'an', u'fairly', u'right', u'identified', u'bitten', u'placed', u'excellent', u'discovered'] -a demon : [u"--'"] -days and : [u'nights'] -a suicide : [u','] -thoughts and : [u'paying'] -overjoyed to : [u'see'] -are screening : [u'your'] -HOLMES:-- : [u'Lord', u'I'] -a while : [u'he'] -appears. : ['PP'] -appears, : [u'been', u'or'] -looked me : [u'over'] -may think : [u','] -sundial in : [u'the'] -have something : [u'better', u'in'] -I looked : [u'up', u'back', u'round', u'out', u'at', u'again', u'in', u'through'] -, limp : [u'and'] -he sprang : [u'to'] -devised a : [u'means'] -lying empty : [u'upon'] -, alleging : [u'that'] -poker, : [u'and'] -save to : [u'indulge'] -footfalls rang : [u'out'] -Highness to : [u'the'] -beg pardon : [u'."', u'.'] -doctor bandaged : [u'me'] -intensified by : [u'his'] -then withdraw : [u'quietly'] -bordered on : [u'the'] -move into : [u'the'] -less weight : [u'upon'] -was grizzled : [u'round'] -and due : [u'to'] -seen everything : [u','] -standing, : [u'fully', u'rapt'] -warmest thanks : [u'.'] -" Without : [u','] -joke,' : [u'said'] -Gutenberg EBook : [u'of'] -steamed off : [u'again'] -grave face : [u'he', u'.'] -. Had : [u'he', u'I', u'she', u'this'] -would suggest : [u','] -a steely : [u'glitter'] -pocket book : [u'and'] -warehouse, : [u'of'] -your family : [u'is', u'circle'] -very shiny : [u'for', u'hat'] -not worry : [u'about'] -prevent anyone : [u'from'] -deduce all : [u'that'] -. Has : [u'only', u'a'] -question in : [u'my', u'his'] -Think of : [u'my', u'the'] -which sent : [u'a', u'my'] -a bachelor : [u".'", u'."', u',', u'and'] -' t : [u'imagine', u'know', u"'", u'pulled', u'think', u'be', u'mind', u'been', u'lie', u'insult', u'it', u'comply', u'miss', u'speak', u'best', u'near', u'wish', u'like', u'have', u'quite', u'want', u'sleep', u'observe', u'do', u',"', u'you', u'refuse', u'allow', u'say', u'frighten', u'get', u'he', u'look', u'tell', u'believe', u'wonder', u'bring', u'!"', u'a', u'keep', u'slip', u'all', u'fall', u'hear', u'throw', u'we', u'claim', u'command', u'drop', u'forgive', u'shake', u'wait', u'cut', u'make', u'let', u','] -A CASE : [u'OF'] -' r : [u".'", u"'"] -' s : [u'The', u'Thumb', u'motives', u'processes', u'money', u'address', u'Wood', u'amazing', u'quite', u'heads', u'chambers', u'in', u'smoke', u'dress', u'life', u'a', u'purse', u'breathing', u'arm', u'plan', u'business', u'photograph', u'wit', u'check', u'as', u'carpenter', u'Court', u'not', u'hard', u'no', u'all', u'another', u'worth', u'other', u'orange', u'wax', u'only', u'work', u'before', u".'", u'never', u'Hall', u',', u'assistant', u'country', u'carriage', u'time', u'adventure', u'preparations', u'notice', u'wrist', u'quicker', u'ingenious', u'hair', u'fondness', u'premises', u'presence', u'cruelty', u'death', u'face', u'friends', u'the', u'Cross', u'Chronicle', u'place', u'appearance', u'sleeve', u'incisive', u'stepfather', u'subtle', u'handwriting', u"'", u'right', u'short', u'attentions', u'affections', u'mind', u'gun', u'jury', u'own', u'lodge', u'dying', u'favour', u'quick', u'story', u'deposition', u'opinion', u'innocence', u'daughter', u'dwelling', u'feet', u'narrative', u'ear', u'statement', u'at', u'two', u'always', u'words', u'watch', u'fine', u'."', u'army', u'curiosity', u'plate', u'last', u'warning', u'registers', u'description', u'neck', u'advice', u'about', u'trouble', u'medical', u'Watson', u'bill', u'purchase', u'Wharf', u'house', u'half', u'plenty', u'office', u'bricks', u'clothes', u'assertion', u'coat', u'sinking', u'head', u'writing', u'hand', u'.', u'end', u'grace', u'eyes', u'fire', u'hat', u'left', u'name', u'accumulation', u'affection', u'leg', u'excited', u'more', u'blue', u'jewel', u'cry', u'pet', u'your', u'have', u'town', u'nothing', u'merely', u'up', u'?"', u'waiting', u'room', u'knees', u'sake', u'bird', u'twenty', u"?'", u're', u'case', u'maiden', u'voice', u'door', u'side', u'conduct', u'knee', u'marriage', u'No', u'acquaintance', u'chamber', u'cigar', u'inquiry', u'lap', u'length', u'thumb', u'madness', u'better', u'affairs', u'would', u'earth', u'cleaver', u'good', u'entreaties', u'it', u'noble', u'forty', u'arrows', u'character', u'delay', u'example', u'wreath', u'body', u'man', u'camp', u'manner', u'self', u'guilt', u'closing', u'son', u'entrance', u'path', u'instincts', u'remarks', u'expressive', u'dressing', u'art', u'perplexity', u'singular', u'egg', u'amusement', u'laughter', u'prediction', u'energy', u'blow', u'preserves', u'young', u'instinct', u'disposition', u'intentions', u'gone', u'throat', u'police', u'friend', u'hands', u'past', u'goals', u'EIN', u'laws', u'principal', u'web'] -s carpenter : [u'."'] -' m : [u'not', u'in', u'always', u'sure'] -partie carre : [u','] -to right : [u','] -' d : [u'had', u'be', u'give', u'rather', u'bring', u'have'] -' e : [u",'", u"'"] -question is : [u','] -populous neighbourhood : [u'."'] -few particulars : [u'as'] -dad. : ['PP'] -work your : [u'own'] -pierced in : [u'the'] -found how : [u'I'] -and careless : [u'servant'] -will throw : [u'into'] -' S : [u'THUMB'] -, Miss : [u'Turner', u'Honoria', u'Stoner', u'Holder', u'Hunter', u'Stoper', u'Alice'] -silence when : [u'the'] -Save, : [u'perhaps'] -' I : [u'should'] -held a : [u'luxurious', u'candle'] -' G : [u"'"] -was written : [u'.', u'in'] -was drifting : [u'slowly'] -pipe, " : [u'I'] -it while : [u'I'] -give me : [u'a', u'one', u'an', u'the', u'hopes', u'carte'] -agent it : [u'would'] -fixed full : [u'upon'] -may put : [u'our'] -is simplicity : [u'itself'] -will postpone : [u'it'] -dank air : [u'of'] -to cocaine : [u'injections'] -photograph to : [u'his'] -agent in : [u'Europe'] -. Ordering : [u'my'] -to carry : [u'your', u'it', u'out'] -Herefordshire paper : [u','] -s thumb : [u','] -glance is : [u'always'] -you once : [u'more'] -made him : [u'throw', u'mad', u'keep', u'a'] -the child : [u"'", u'is', u'.', u'was', u'."'] -cheeks and : [u'a', u'the'] -it break : [u'out'] -clouds lighten : [u','] -hardly listened : [u'to'] -colour they : [u'were'] -convenience until : [u'his'] -complex story : [u'was'] -blinds had : [u'not'] -made his : [u'money', u'way', u'home'] -made their : [u'way'] -not heard : [u'him', u'the', u'?'] -afraid, : [u'not', u'Holmes'] -be breaking : [u'above'] -you intended : [u'to'] -found either : [u'upon'] -with passion : [u'.'] -this blue : [u'stone'] -saving a : [u'soul'] -The head : [u'had'] -could fathom : [u'."'] -were traced : [u'home'] -early spring : [u','] -repugnant to : [u'her'] -Our friend : [u'here'] -league. : [u'On'] -who sold : [u'you'] -shamefully treated : [u',"'] -throws it : [u'out'] -footsteps moving : [u'softly'] -Puzzle as : [u'I'] -say so : [u'."', u',', u',"', u'?"', u'.', u'!'] -He picked : [u'out', u'it', u'a'] -mansion. : ['PP'] -foot, : [u'for'] -foot. : ['PP', u'Then'] -rise up : [u'around'] -reason to : [u'believe', u'know'] -the families : [u'.'] -do but : [u'get'] -is a : [u'capital', u'customary', u'German', u'man', u'wonderful', u'bijou', u'Mr', u'very', u'comfortable', u'perfectly', u'Freemason', u'little', u'fact', u'most', u'good', u'time', u'hobby', u'bank', u'field', u'broken', u'love', u'date', u'useless', u'curious', u'subject', u'murder', u'country', u'small', u'quarter', u'wreck', u'brighter', u'distinctly', u'strong', u'map', u'question', u'serious', u'hereditary', u'page', u'somewhat', u'sailing', u'petty', u'vile', u'friend', u'trap', u'double', u'great', u'narrow', u'professional', u'piteous', u'cripple', u'different', u'fierce', u'huge', u'clever', u'dirty', u'hat', u'sign', u'distinct', u'nucleus', u'woodcock', u'cold', u'matter', u'list', u'member', u'hard', u'decided', u'cheetah', u'nice', u'swamp', u'terrible', u'train', u'drive', u'valuable', u'mere', u'likely', u'foreigner', u'curt', u'common', u'suggestive', u'ring', u'fait', u'possible', u'strange', u'detail', u'pocket', u'card', u'note', u'myth', u'madman', u'household', u'pure', u'sunbeam', u'noiseless', u'pen', u'well', u'pity', u'lunatic', u'feeling', u'large', u'rough', u'registered', u'non'] -at Boscombe : [u'Pool'] -The husband : [u'was'] -and pays : [u'it'] -Coronet XII : [u'.'] -if God : [u'sends'] -third day : [u'after'] -banking firm : [u'of'] -the Agra : [u'treasure'] -seven separate : [u'explanations'] -, took : [u'to', u'a', u'out'] -asked her : [u'to'] -is K : [u'.'] -stupidity in : [u'my'] -few drops : [u'of'] -the lining : [u'of', u'.'] -any. : ['PP'] -come down : [u'the', u'in'] -whispered something : [u'in', u'to'] -any) : [u'you'] -Salt Lake : [u'City'] -a dazed : [u'face'] -pheasant, : [u'a'] -and fears : [u','] -experience that : [u'railway'] -should step : [u'into'] -his baggy : [u'trousers'] -unwound the : [u'handkerchief'] -I see : [u'it', u'a', u'that', u',"', u'you', u'.', u'your', u'my', u'no', u'the', u'."', u'upon', u'her', u'many', u'nothing'] -years that : [u'I', u'he'] -attempt at : [u'recovering'] -indoors in : [u'the'] -I set : [u'myself', u'a', u'to'] -died just : [u'two'] -into convulsive : [u'sobbing'] -were ordered : [u'to'] -deeper, : [u'heavier', u'but'] -time stated : [u'I'] -a lens : [u'and'] -precise fashion : [u'."'] -an exclamation : [u'from'] -taking his : [u'heavy'] -5. : [u'Do', u'Some', u'General'] -his Lascar : [u'confederate'] -attack. : ['PP'] -human body : [u'is'] -at Trincomalee : [u','] -sole in : [u'order'] -yourselves in : [u'at'] -can attain : [u'to'] -has disturbed : [u'you'] -April in : [u'the'] -:// gutenberg : [u'.'] -bank director : [u',', u'.'] -only put : [u'there'] -bedrooms the : [u'first'] -out his : [u'legs', u'chest', u'false', u'snuffbox', u'story', u'long', u'own', u'hand', u'existence'] -a thin : [u'line'] -reeds which : [u'lined'] -NO REMEDIES : [u'FOR'] -will rejoin : [u'you'] -hush the : [u'matter'] -One is : [u'to', u'that'] -was ascertaining : [u'whether'] -encyclopaedias, : [u'is'] -in places : [u'over'] -it across : [u'the', u',', u'from', u'to'] -" Perfectly : [u'so'] -anything had : [u'turned'] -double line : [u'a', u'of', u'which'] -the moonless : [u'nights'] -has very : [u'carelessly', u'kindly'] -I hastened : [u'here'] -action without : [u'a'] -I ran : [u'forward', u'off', u'down', u'to', u','] -points a : [u'singular'] -not void : [u'the'] -the mention : [u'of'] -average story : [u'teller'] -appointment with : [u'me', u'someone', u'.'] -little dried : [u'orange'] -photography. : [u'Snapping'] -photography, : [u'and'] -whole animal : [u'by'] -lying senseless : [u','] -charges. : [u'If'] -first impression : [u'.'] -villain!" : [u'said'] -had picked : [u'up'] -was naturally : [u'my', u'of', u'annoyed'] -watch me : [u','] -were within : [u'a', u'that'] -he lost : [u'his'] -, knowing : [u'that'] -from an : [u'envelope', u'old', u'afternoon'] -were surprised : [u'to'] -from at : [u'ease'] -similar cases : [u'which', u','] -chat with : [u'me'] -to produce : [u'the'] -the Rucastles : [u'as', u'go', u'went'] -to Scotland : [u'Yard'] -donate, : [u'please'] -donate. : ['PP'] -shade of : [u'red', u'colour', u'blue', u'electric'] -cocked upward : [u'and'] -in others : [u'.'] -and could : [u'go', u'therefore'] -prospecting in : [u'Arizona'] -murmured, " : [u'when'] -beaten. : ['PP'] -AS IS : [u"'"] -turn our : [u'dinner', u'minds'] -under. : ['PP'] -deceased had : [u'gone', u'been'] -McCarthy is : [u'condemned'] -against you : [u'months', u','] -bound tightly : [u'round'] -of despair : [u'. "'] -writhed his : [u'face'] -dark coat : [u','] -eye down : [u'it'] -long cherry : [u'wood'] -those hysterical : [u'outbursts'] -man with : [u'a', u'such', u'the', u'so', u'rounded', u'whiskers', u'naked'] -was possessed : [u'of'] -door had : [u'been'] -in begging : [u'in'] -see more : [u'than'] -to Europe : [u'and'] -door has : [u'given'] -night for : [u'seven', u'a'] -no time : [u'for', u'!', u'to'] -lost lead : [u'pencils'] -supper, : [u'drove', u'then'] -has worn : [u'this'] -deduction to : [u'say'] -grasp, : [u'he'] -As low : [u'as'] -upward and : [u'his'] -very quiet : [u'and', u'one', u';'] -shutters, : [u'moved'] -another vacancy : [u'open', u'on'] -moustache; : [u'tinted'] -And help : [u'."'] -it without : [u'further', u'charge'] -camp bed : [u','] -blood were : [u'to'] -belongs. : ['PP'] -several voices : [u'.'] -planning the : [u'capture'] -last interview : [u','] -as clearly : [u'as'] -been famous : [u'in'] -from all : [u'quarters', u'gossip', u'liability'] -m not : [u'rich'] -the streets : [u'in', u'of', u'.', u'which'] -risen and : [u'tucked'] -train to : [u'Hereford', u'Waterloo', u'the', u'Eyford'] -suspicion. : [u'But', u'Another'] -dark, : [u'handsome', u'aquiline', u'earth', u'lack', u'shapeless'] -dark. : ['PP'] -imbedded in : [u'soft'] -night?" : [u'I'] -Yet his : [u'actions'] -always send : [u'their'] -repented of : [u'it'] -little huffed : [u". '"] -painful and : [u'lingering', u'prolonged'] -paper, : [u'but', u'I', u'and', u'which', u'while', u'he', u'scrawled', u'so'] -is drawn : [u'at'] -paper. : ['PP', u'It', u'Now'] -the smiling : [u'and'] -his right : [u'forefinger', u'hand', u'foot', u'shirt', u'little'] -as brother : [u'and'] -a telephone : [u'projecting'] -and settled : [u'upon'] -Continent. : ['PP'] -be exaggerated : [u'.'] -near Boscombe : [u'Pool'] -Not yet : [u'."'] -was comparatively : [u'modern'] -THE ADVENTURES : [u'OF'] -remarked how : [u'worn'] -and empty : [u'beside'] -which met : [u'the', u'our'] -finds it : [u'difficult'] -was deeply : [u'moved'] -FITNESS FOR : [u'ANY'] -long time : [u'he', u'in', u'we', u'.', u','] -poses, : [u'bowed'] -engineers coming : [u'to'] -A dull : [u'wrack'] -her over : [u'in', u'with', u'for'] -he swept : [u'off', u'the'] -hurried away : [u'.'] -did what : [u'he', u'she', u'I'] -already managed : [u'several'] -post. : [u'But'] -to defend : [u'himself'] -face sharpened : [u'away'] -SEND DONATIONS : [u'or'] -background which : [u'would'] -dnouement of : [u'the'] -as matters : [u'stand'] -nearly fifteen : [u'years'] -cushions from : [u'the'] -! come : [u"!'"] -of treachery : [u'never'] -married, : [u'too', u'without', u'with', u'this', u'and', u'by'] -. ' We : [u'are'] -married. : ['PP'] -end may : [u'have'] -best. : ['PP', u'And', u'Take'] -average commonplace : [u'British'] -best, : [u'with'] -provided to : [u'you'] -, paused : [u'immediately'] -determination. : [u'Their'] -" Absolutely : [u'none', u'?"'] -with compunction : [u'at'] -How did : [u'that', u'you', u'he', u'your'] -and dried : [u'sticks'] -window when : [u'the', u'out'] -smoke," : [u'he'] -We travelled : [u'by'] -business in : [u'my', u'the'] -man cast : [u'his'] -had plush : [u'upon'] -Three gone : [u'before'] -nervous disturbance : [u'in'] -a policeman : [u'within', u',', u'or'] -solid gold : [u'.'] -business is : [u'mostly'] -wooing, : [u'and'] -' fancies : [u',', u'must'] -Yet when : [u'I'] -identify, : [u'do'] -causing it : [u'to'] -consults her : [u'ledgers'] -are eligible : [u'.', u'yourself'] -." Never : [u'in'] -which leads : [u'on', u'into'] -read Holmes : [u'.'] -aristocratic pauper : [u';'] -my skirt : [u','] -to know : [u'how', u'.', u'so', u'anything', u'things', u'what', u',', u'."', u'that', u'which', u'its', u'now', u'who', u'before', u'a'] -Had there : [u'been'] -has always : [u'fallen', u'answered', u'given'] -I interrupt : [u'you'] -sudden effort : [u','] -my knowledge : [u'that'] -intimate friend : [u'and'] -my confidence : [u'.', u'now'] -should ask : [u'his'] -, soothing : [u'sound', u'tones'] -afterwards, : [u'and'] -being fully : [u'dressed'] -opening the : [u'door'] -away you : [u'may'] -get farther : [u'back'] -him with : [u'a', u'this', u'sleepy', u'the', u'theft', u'my'] -was what : [u'they', u'the', u'use'] -surprised if : [u'they', u'that', u'this'] -male relatives : [u'.'] -chest, : [u'fighting'] -this mask : [u',"'] -that note : [u','] -deadly. : [u'What'] -moonshine I : [u'saw'] -the Amoy : [u'River'] -muzzle buried : [u'in'] -had sprung : [u'out', u'from'] -certainly the : [u'last', u'charm'] -both instantly : [u','] -bowing in : [u'a'] -clean cut : [u',', u'by'] -beautiful, : [u'a'] -examined and : [u'retained'] -sat as : [u'I'] -come and : [u'visit'] -property infringement : [u','] -case, : [u'Watson', u'and', u'not', u'however', u'made', u'we', u'raised', u'you', u'I', u'every', u'but', u'although', u'also', u'Miss'] -case. : ['PP', u'In', u'All', u'Nothing', u'The', u'It', u'I', u'What'] -must leave : [u'that', u'you'] -the lawn : [u'.', u',', u'."', u'into', u'in', u'and'] -spent some : [u'time'] -stout official : [u'had'] -These, : [u'we'] -case; : [u'it', u'to'] -have recourse : [u'to'] -the laws : [u'of', u'regulating'] -, catch : [u'him'] -companion with : [u'despair'] -exclaimed at : [u'last'] -lovers by : [u'making'] -fatigued with : [u'your'] -Mister Sherlock : [u'Holmes'] -as will : [u'carry'] -, unburned : [u'margins'] -profession has : [u'brought'] -dark place : [u','] -were beginning : [u'to'] -hot headed : [u'and'] -amateur that : [u'I'] -broad and : [u'massive'] -Freemason, : [u'that'] -following out : [u'those'] -was shown : [u'up', u'by', u'into', u'out'] -asked this : [u'apparition'] -and take : [u'him', u'it'] -that deadly : [u'black'] -pressing my : [u'hand'] -Holmes chuckled : [u'and', u'heartily'] -plainer it : [u'becomes'] -the sheets : [u','] -" ARAT : [u',"'] -my ear : [u',', u'.', u'again'] -when will : [u'you'] -to name : [u'a', u'it'] -Lee. : [u'It', 'PP'] -Language: : [u'English'] -Lee, : [u'in'] -and, : [u'even', u'making', u'plunging', u'turning', u'if', u'having', u'as', u'following', u'with', u'observing', u'leaning', u'looking', u'I', u'indeed', u'above', u'drawing', u'by', u'aided', u'rushing', u'swinging', u'for', u'unlocking', u'finally', u'carrying', u'should', u'to', u'sitting', u'at'] -are windows : [u'in'] -and. : ['PP'] -my peculiar : [u'experiences'] -joy was : [u'as'] -knot of : [u'flushed', u'roughs'] -must sit : [u'.', u'without'] -legal fees : [u'.', u','] -missed his : [u'path'] -and' : [u'please', u'90', u'Letters', u'Who', u'What'] -wrote hurriedly : [u'.'] -your services : [u','] -he was : [u'employing', u'glad', u'obliged', u'borne', u'seized', u'playing', u'watching', u'young', u'handy', u'a', u'never', u'running', u'remarkable', u'very', u'alive', u'of', u'.', u'quite', u'only', u'saying', u'on', u'not', u'going', u'in', u'delirious', u'averse', u'face', u'hot', u'walking', u'within', u'lame', u'possessed', u'able', u'reported', u'angry', u'sober', u'less', u'afraid', u',', u'farther', u'away', u'deeply', u'at', u'to', u'known', u'allowed', u'pulled', u'now', u'left', u'fairly', u'bringing', u'carrying', u'doing', u'unable', u'exceedingly', u'looking', u'still', u'writing', u'all', u'soon', u'keeping', u'gone', u'too', u'removed', u'dissatisfied', u'so', u'off', u'with', u'safe', u'joking', u'the', u'convinced'] -Rucastle survived : [u','] -before they : [u'came', u'discovered'] -missed him : [u','] -can then : [u'remove'] -instantly put : [u'themselves'] -an instep : [u'where'] -hurt?" : [u'she'] -carriage the : [u'night'] -railed in : [u'enclosure'] -large square : [u'block'] -our actions : [u'.'] -they made : [u'their'] -" Yesterday : [u'."', u',', u'morning'] -girl who : [u'waited', u'is'] -tweed suited : [u'and'] -personally interested : [u'in'] -lie down : [u'there'] -tree until : [u'he'] -vagabond in : [u'the'] -developed into : [u'a'] -without betraying : [u'one'] -Ten to : [u'two'] -drawers, : [u'as'] -coming together : [u','] -but each : [u'time'] -any part : [u'of'] -unheeded upon : [u'his'] -constructed a : [u'sort'] -the black : [u'cloud', u'shadows', u'ceiling'] -homely ways : [u'and'] -struggle and : [u'was'] -news of : [u'the', u'her', u'this'] -fire to : [u'the', u'go'] -find out : [u'?"', u'about', u'.'] -. txt : [u'or'] -gained out : [u'of'] -shall fear : [u'that'] -away with : [u'a', u'me', u'the', u'him', u'Mr', u'them', u'you'] -the jewels : [u'which'] -rather useless : [u','] -for dad : [u'is'] -his clinched : [u'fists'] -a minute : [u',', u'or', u'grind'] -Street with : [u'hardly'] -with whoever : [u'might'] -to observe : [u'that', u'it', u'if', u','] -his bills : [u'were'] -fell upon : [u'his'] -Nights, : [u'with'] -of metal : [u'dangling', u'had', u','] -secure on : [u'account'] -Heaven bless : [u'you'] -Cuvier could : [u'correctly'] -up into : [u'the'] -thing very : [u'completely'] -system is : [u'shattered'] -gained the : [u'trifling', u'cover'] -clear that : [u'the', u'that', u'there', u'she', u'Mrs'] -cripple who : [u'lives'] -lovely young : [u'women'] -the whole : [u'of', u'crowd', u'he', u'country', u'time', u'affair', u'thing', u'business', u'success', u'matter', u'incident', u'property', u'day', u'riverside', u'place', u',', u'case', u'situation', u'house', u'story', u'way', u'transaction', u'machinery', u'they'] -knew his : [u'every'] -features and : [u'figure'] -permission, : [u'I', u'Miss', u'Mr'] -permission. : [u'If'] -for starting : [u'a'] -reasoning by : [u'which'] -remarkable in : [u'its', u'having'] -the brisk : [u'manner'] -newspaper story : [u'about'] -the pleasant : [u'smell'] -still remembered : [u'in'] -weather. : [u'You', u'There'] -May I : [u'see', u'ask'] -of Hugh : [u'Boone'] -mouth of : [u'a'] -support to : [u'provide'] -Section 4 : [u', "', u'.'] -Section 5 : [u'.'] -show very : [u'clearly'] -Section 1 : [u'.'] -Section 3 : [u'below', u'.'] -invent. : [u'We'] -lawyer took : [u'it'] -"' Tut : [u','] -a fringe : [u'of'] -was enough : [u'.', u'for', u'to'] -the stroke : [u'of'] -be for : [u'you'] -," cried : [u'several', u'the', u'our', u'Holmes', u'Mr'] -Where is : [u'your', u'it'] -visible from : [u'there'] -you shift : [u'your'] -yet there : [u'was', u'never', u'are'] -black side : [u'whiskers'] -been employed : [u'in'] -open which : [u'entitles'] -been reabsorbed : [u'by'] -preventing her : [u'from'] -a small : [u'"', u'street', u'sliding', u'study', u'pawnbroker', u'man', u'railed', u'corridor', u'one', u'lake', u'factory', u'estate', u'brass', u'brazier', u'parcel', u'deal', u'bedroom', u'trade', u'angle', u'rain', u',', u'slip', u'cut', u'card', u'public', u'thin', u'case', u'wooden', u'saucer', u'dog', u'opening', u'jet', u'place', u'panel', u'clump', u'portion', u'bearded', u'outhouse', u'table'] -amethyst in : [u'the'] -little paradoxical : [u'."'] -copyright status : [u'of'] -Hopkins, : [u'of', u'who'] -Alas!" : [u'replied'] -one always : [u'appeared'] -What has : [u'she'] -ran a : [u'lane'] -know something : [u'of'] -s coat : [u','] -grime which : [u'covered'] -Stoner," : [u'observed', u'said'] -two upper : [u'ones'] -vagueness to : [u'the'] -and no : [u'one', u'doubt', u'precautions', u'harm', u'signs', u'confession'] -' est : [u'rien', u'tout'] -The landlord : [u'of'] -amid the : [u'short', u'ashes', u'mad', u'common', u'labyrinth', u'dangers', u'branches', u'white', u'light'] -both come : [u'.'] -very horror : [u'of'] -heads than : [u'yours'] -they doing : [u'living'] -use of : [u'anyone', u'disguises', u'the', u'an', u'our', u'Project', u'and'] -A fair : [u'dowry'] -a tide : [u'waiter'] -the little : [u'man', u'newspaper', u'area', u'that', u'things', u'printed', u'mystery', u'girl', u'town', u'disc', u'fellow', u'opening', u'figure', u'dim', u'door', u'Berkshire', u'problem', u'god', u'I', u'glimpse', u'money', u'office', u'red', u'slit'] -once before : [u'ever', u'our'] -breathing in : [u'the'] -and puzzled : [u'now'] -mortar, : [u'its'] -Hunter not : [u'been'] -with diligence : [u'that'] -fancy of : [u'my'] -had 4 : [u'pounds'] -After that : [u'came'] -also come : [u'into'] -brownish speckles : [u','] -not agree : [u'to'] -lamp post : [u'and'] -maid who : [u'opened', u'has'] -IN PARAGRAPH : [u'1'] -money settled : [u'on'] -had I : [u'known', u'been', u'set', u'the'] -Stark had : [u'said'] -sharply across : [u'at'] -named Hosmer : [u'Angel'] -obeyed to : [u'the'] -that for : [u'strange', u'you', u'ten', u'the'] -never happy : [u'at'] -here he : [u'comes'] -seriously compromise : [u'one'] -, blockaded : [u'the'] -who entered : [u'was', u'.'] -importance, : [u'but'] -had a : [u'country', u'particularly', u'little', u'great', u'shade', u'dozen', u'slate', u'considerable', u'feeling', u'very', u'wild', u'small', u'garden', u'single', u'long', u'writ', u'friend', u'good', u'mere', u'peculiar', u'handkerchief', u'slight', u'claim', u'decline', u'talk', u'wooden', u'fear', u'mirror', u'pretty'] -heavier,' : [u'said'] -down for : [u'ten'] -the equinoctial : [u'gales'] -note I : [u'had'] -time the : [u'matter', u'circumstances', u'influence', u'whole'] -proprietor a : [u'horsey'] -tension, : [u'and'] -a flaw : [u','] -more heinous : [u'.'] -.!' he : [u'shrieked'] -for Winchester : [u'to'] -Clair was : [u'doing'] -service in : [u'the'] -are pierced : [u'for'] -moment later : [u'the', u'we'] -roof tree : [u'of'] -light glimmered : [u'dimly'] -with wooden : [u'berths', u'boards'] -scene he : [u'could'] -an inquiry : [u'on'] -Wednesday last : [u'there'] -valuable gem : [u'known'] -that have : [u'ever'] -can for : [u'him'] -, ' Pondicherry : [u'postmark'] -before now : [u'.', u'for', u',', u'if'] -must on : [u'no'] -" This : [u'is', u'Godfrey', u'was', u'photograph', u'went', u'concluded', u'may', u'discovery', u'hat', u',', u'has', u'time', u'gentleman', u'matter', u'aroused'] -her superb : [u'figure'] -address?" : [u'he'] -think so : [u'.', u','] -unnecessary to : [u'put'] -had cleared : [u'in', u'it'] -angry glance : [u'at'] -them has : [u'the'] -upon me : [u'this', u'.', u'now', u'these', u',', u'for', u'?', u'at', u'with'] -upon my : [u'friend', u'companion', u'doing', u'own', u'uncle', u'father', u'ear', u'wrist', u'conscience', u'books', u'peculiar', u'professional', u'two', u'spine', u'approaching', u'hand', u'accompanying', u'literary', u'face', u'experience'] -newly come : [u'back'] -since we : [u'were', u'know', u'see'] -to side : [u'.'] -her approaching : [u'wedding'] -some skirmishes : [u','] -them had : [u'wives'] -brain fever : [u','] -self sacrifice : [u'and'] -and distorted : [u'child'] -winding track : [u'which'] -then remove : [u'Miss'] -so easy : [u'when', u'."'] -a metallic : [u'clang'] -us makes : [u'the'] -basis with : [u'which'] -them better : [u'than'] -until seven : [u'o'] -reverie. : ['PP'] -, had : [u'you', u'hurried', u'no', u'grown', u'much', u'his', u'anything', u'been', u'I', u'assisted', u'sat', u'the', u'escaped', u'left', u','] -is shattered : [u'.'] -miners' : [u'camp', u'parlance'] -Englishman, : [u'and', u'being'] -, has : [u'been', u'come', u'referred', u'thrown', u'turned', u'grizzled', u'done', u'got', u'now', u'actually', u'only', u'deserted', u'lost'] -paused immediately : [u'outside'] -and bowing : [u'. "', u'in'] -a consideration : [u'of'] -and easy : [u'demeanour'] -retire upon : [u'a'] -pain and : [u'fear'] -high roof : [u'tree'] -staying in : [u'lodgings'] -crystals. " : [u'I'] -throbbing painfully : [u','] -face fell : [u'immediately'] -! Helen : [u'!'] -confession could : [u'make'] -? Too : [u'little'] -! Sit : [u'down'] -it but : [u'also'] -been there : [u',', u'when'] -minutes during : [u'which'] -barbaric opulence : [u'which'] -Ballarat was : [u'the'] -are mad : [u','] -part with : [u'half', u'poor'] -yet it : [u'would', u'appeared'] -sum should : [u'be'] -, incomplete : [u','] -" Arthur : [u'does'] -are two : [u'points'] -he throw : [u'no'] -the Duke : [u'of', u'say'] -late, : [u'but', u'have'] -briar pipe : [u'between'] -late. : [u'And', 'PP', u'It'] -no very : [u'great', u'good', u'sweet'] -go through : [u'."'] -to themselves : [u','] -, shining : [u'hat'] -and his : [u'hands', u'keen', u'tie', u'black', u'languid', u'extreme', u'trick', u'eyes', u'gaze', u'son', u'right', u'singular', u'father', u'mind', u'enormous', u'long', u'business', u'reason', u'dislike', u'successors', u'family', u'elbows', u'watch', u'hideous', u'face', u'lank', u'arms', u'force', u'head', u'breadth', u'high', u'chin', u'feet', u'bearing', u'age', u'wedding', u'hand', u'hat', u'features', u'worn', u'opponent', u'finger', u'wife'] -only known : [u'the'] -and searched : [u'.', u','] -which bordered : [u'our'] -my fifty : [u'guinea'] -perform myself : [u'that'] -their deficiencies : [u'.'] -hundred in : [u'notes'] -" Cooee : [u'!"'] -Have they : [u'thought'] -' stands : [u'for'] -these very : [u'carefully', u'gipsies'] -it flashed : [u'through'] -listening to : [u'this'] -have trained : [u'myself'] -1869 or : [u'1870'] -science, : [u'the'] -84 when : [u'my'] -windows would : [u'be'] -hear it : [u'is', u',"', u',', u'also', u'for'] -London, : [u'and', u'the', u'you', u'then'] -the home : [u'centred'] -London. : [u'There', u'He', u'It', 'PP', u'What', u'One', u'By'] -. Local : [u'aid'] -note only : [u'reached'] -I motioned : [u'for'] -. Private : [u'affliction'] -off upon : [u'the', u'his', u'her'] -JABEZ WILSON : [u'"'] -You shut : [u'up'] -That was : [u'last', u'to', u'the', u'always', u'it', u'what', u'a'] -I happened : [u'to'] -matter to : [u'an', u'know', u'the', u'me', u'your'] -a right : [u'to', u'angle'] -one occasion : [u','] -dealing with : [u'a'] -saying that : [u'there', u'the'] -Madame, : [u'rather'] -NOBLE. : ['PP'] -enter upon : [u'your'] -By Jove : [u'!"', u','] -your stepfather : [u',', u'."', u'?"', u'comes'] -up; : [u'and'] -its numerous : [u'glass'] -table so : [u'that'] -his deep : [u'set'] -been attacked : [u'by'] -upon seeing : [u'me'] -I remembered : [u'that'] -of astrakhan : [u'were'] -OR INCIDENTAL : [u'DAMAGES'] -Blue Carbuncle : [u'VIII'] -behind her : [u'landau', u',', u'.'] -awakened by : [u'the', u'some'] -hoped, : [u'the'] -, yours : [u'had'] -note into : [u'my'] -then run : [u'down'] -will fly : [u','] -and nearly : [u'fallen'] -at his : [u'gigantic', u'new', u'skirts', u'face', u'wife', u'black', u'business', u'own', u'very', u'rooms', u'courage', u'time', u'desk', u'accuser', u'approach', u'visitor', u'heels', u'hair', u'hands', u'long', u'words', u'temples'] -coloured houses : [u','] -dead body : [u'stretched', u'of'] -a word : [u'spoken', u'.', u'of', u'with', u'became', u',', u'to', u'he', u'as', u'the', u'without', u'or', u'about'] -should settle : [u'the'] -The larger : [u'crimes'] -a work : [u'with', u'or'] -positive that : [u'the'] -really takes : [u'the'] -clang heard : [u'by'] -for worlds : [u'.'] -bureau had : [u'been'] -have planned : [u'the'] -moments afterwards : [u'the'] -at him : [u'in', u'as', u'by', u'.', u'again'] -affectionate and : [u'warm'] -for ten : [u'years', u'minutes'] -make myself : [u'as', u'plain', u'useful'] -other matters : [u'."'] -do yourself : [u'?"'] -relief. : ['PP'] -its extreme : [u'limits'] -relief, : [u'that'] -not Hatherley : [u'Farm'] -camp life : [u'in'] -statement which : [u'had'] -outbreak. : ['PP'] -of where : [u'we'] -more upon : [u'his'] -instant among : [u'the'] -turn out : [u'to'] -of sport : [u'and'] -the pensioners : [u'upon'] -will question : [u'me'] -of horses : [u"'"] -what time : [u'?"'] -reward offered : [u'of'] -, pompous : [u','] -Mansions, : [u'written'] -course! : [u'Well', u'Very'] -exceptional advantages : [u'in'] -and sitting : [u'still', u'room'] -when his : [u'father', u'blow'] -three days : [u'yet', u'at', u'in'] -pounds standing : [u'to'] -certain implied : [u'warranties'] -your friends : [u'of'] -To speak : [u'plainly'] -A twitch : [u'brought'] -what were : [u'we', u'they'] -, closing : [u'the'] -travelling cloak : [u'and'] -wooing and : [u'wedding'] -and seeing : [u'an'] -forth the : [u'wild'] -its value : [u'can', u"?'"] -an affair : [u'when', u'which'] -his bloodless : [u'cheeks'] -I laughed : [u'until', u'very'] -the prisoner : [u"'", u'.', u'passionately', u',', u'gone'] -the brute : [u'broke'] -7 or : [u'obtain'] -columns of : [u'water', u'a'] -all safe : [u',', u'and'] -repeat to : [u'day'] -job to : [u'pay'] -had held : [u'out'] -petty way : [u'as'] -chimney are : [u'impassable'] -were guilty : [u','] -of turning : [u'in'] -Then something : [u'suddenly'] -. ' What : [u'have'] -be improving : [u'his'] -knowledge of : [u'London', u'the', u'tobacco', u'your', u'pre'] -ran right : [u'across'] -. Thrust : [u'away'] -So I : [u'have', u'am', u'see', u'heard', u'think'] -, deposes : [u'that'] -worn hollow : [u'in'] -That represents : [u'the'] -a common : [u'experience', u'signal', u'thing', u'enough', u'subject', u'looking', u'loafer'] -, deposed : [u'to'] -aid is : [u'always'] -He took : [u'down', u'a', u'two', u'an', u'off', u'up', u'the'] -holding up : [u'a'] -discrepancy about : [u'his'] -the rug : [u'and'] -a field : [u'for', u'which'] -marks of : [u'many', u'moisture', u'any', u'four'] -and fell : [u'into'] -knew that : [u'my', u'you', u'his', u'the', u'I', u'she', u'this', u'he', u'some', u'it', u'we', u'none', u'Arthur', u'so'] -win in : [u'the'] -and felt : [u'that'] -regular prison : [u'bath'] -" Holmes : [u',"', u'!"', u','] -The name : [u'of', u'is', u',', u'was'] -. Fresh : [u'scandals'] -was lying : [u'among', u'senseless', u'empty'] -is alive : [u'?"', u'and'] -lay to : [u'his'] -poor devil : [u'who'] -together beneath : [u'the'] -clearly. : [u'You'] -disappeared, : [u'that', u'and', u'Mr'] -newer than : [u'the'] -single bright : [u'light'] -full sailed : [u'merchant'] -you are : [u'interested', u'good', u'one', u'.', u'to', u'eligible', u'personally', u',', u'a', u'brought', u'coming', u'not', u'so', u'always', u'bound', u'never', u'lost', u'threatened', u'too', u'well', u'sure', u'now', u'found', u'joking', u'unable', u", '", u'the', u'shivering', u'perfectly', u'at', u'ready', u'likely', u'hinting', u'tired', u'both', u'going', u',"', u'and', u'in', u'like', u'nearing', u'trivial', u'impressed', u'right', u'located', u'outside', u'redistributing'] -not the : [u'point', u'nature', u'pair', u'first', u'wife', u'gritty', u'only', u'bearing', u'sole', u'situation'] -streamed up : [u'from'] -to complying : [u'with'] -riverside, : [u'and'] -. Take : [u'a', u'your'] -your deductions : [u'and'] -Bank. : [u'There'] -Bank, : [u'the'] -human heart : [u'.'] -set myself : [u'to'] -very instructive : [u'in'] -tips, : [u'one'] -Just before : [u'nine'] -lap lay : [u'the'] -me remark : [u'that'] -From time : [u'to'] -. George : [u"'"] -see." : [u'He'] -her baby : [u';'] -my bouquet : [u'over'] -lining had : [u'been'] -Red headed : [u'League', u'Men'] -curling up : [u'from'] -, struggling : [u'to'] -I begged : [u'a'] -eighteen, : [u'and'] -Clair is : [u'now'] -I said : [u'.', u'. "', u'yesterday', u', "', u'then', u'no', u'nothing'] -your commonplace : [u','] -any little : [u'problem', u'expenses', u'commands', u'inconvenience'] -with extraordinary : [u'luck'] -scraping at : [u'this'] -open the : [u'door', u'window', u'shutters'] -The marks : [u'are'] -. Ferguson : [u'.', u'and', u'appeared', u'remained'] -the light : [u'."', u'was', u'of', u'.', u'brown', u'shining', u'. "', u'among', u'I', u'and', u'shone', u',', u'duties', u'green'] -some glimpse : [u'of'] -my daughter : [u'with', u'.'] -floating near : [u'the'] -boy in : [u'buttons'] -will without : [u'hindrance'] -was pale : [u'and'] -shutters. : ['PP'] -Hare alone : [u'could'] -his summons : [u'to'] -other characteristics : [u',', u'to', u'with'] -Lestrade. " : [u'You'] -crumpled letter : [u'across'] -a chronicler : [u'still'] -one as : [u'would', u'in'] -play will : [u'be'] -peeped through : [u'the'] -touch me : [u'with'] -more readily : [u'upon'] -thickly wooded : [u'round'] -with some : [u'apparent', u'warmth', u'great', u'details', u'bitterness', u'misgivings', u'coldness'] -say his : [u'age'] -held information : [u'in'] -confidence in : [u'Mr'] -of crystallised : [u'charcoal'] -almost gone : [u'and'] -black bar : [u'across'] -volume from : [u'his', u'a'] -died of : [u',', u'pure'] -," read : [u'Holmes'] -methods would : [u'look'] -Peculiar that : [u'is'] -to break : [u'in', u'the', u'away', u'it'] -Jabez Wilson : [u'here', u'started', u'laughed', u',', u",'", u'. "', u"'"] -undid my : [u'trunk'] -campaign throbbed : [u'with'] -is necessary : [u'that', u'to'] -I cannot : [u'recall', u'see', u'confide', u'do', u'say', u'waste', u'now', u'admire', u'imagine', u'tell', u'think', u'as', u'possibly', u'understand', u'call', u'allow', u'persuade', u'swear', u"!'", u',', u'find', u'quite', u'blame'] -action likely : [u'to'] -Man, : [u'or'] -your foot : [u'over'] -happiness. : ['PP'] -happiness, : [u'and', u'gently'] -Full Project : [u'Gutenberg'] -European history : [u'."'] -dog is : [u'let'] -was lit : [u'in', u'and'] -. Astonishment : [u'at'] -A formidable : [u'array'] -die under : [u'my'] -in buttons : [u'entered'] -face inside : [u'the'] -probably by : [u'the'] -the salt : [u'that'] -the beginning : [u'of'] -DIRECT, : [u'INDIRECT'] -, drives : [u'out'] -, those : [u'quarters'] -looked across : [u'at'] -is water : [u'in'] -' ingenuity : [u'failed'] -fire and : [u'looked', u'laughed', u'favour', u'grinning', u'composed'] -bed trembling : [u'all'] -metallic sound : [u'?'] -probably be : [u'some'] -fainted at : [u'the'] -official looking : [u'person'] -, whitewashed : [u','] -was followed : [u'by'] -riser, : [u'as'] -the discoloured : [u'patches'] -could grasp : [u'it'] -hurried glimpse : [u'of'] -vain. : [u'Good'] -handy and : [u'would'] -little awkward : [u','] -locked your : [u'doors'] -, pray : [u'consult', u'tell', u','] -preposterous English : [u'window'] -meant to : [u'attract'] -Round one : [u'of'] -Stop it : [u'!"'] -out to : [u'him', u'you', u'the', u'me', u'Calcutta', u'my', u'them', u'night', u'see', u'tell', u'Streatham', u'be'] -up any : [u'."'] -more fantastic : [u'than'] -not to : [u'have', u'interfere', u'see', u'wash', u'answer', u'be', u'abuse', u'know', u'propound', u'marry', u'disturb', u'me', u'miss'] -restore lost : [u'property'] -, down : [u'they', u'Endell', u'the'] -Christmas dinner : [u'."'] -Did he : [u'make', u'not'] -of pennies : [u','] -. LIMITED : [u'WARRANTY', u'RIGHT'] -suddenly collapsed : [u','] -sense, : [u'at'] -the moonshine : [u'I'] -the Freemasonry : [u'?"'] -You appeared : [u'to'] -skill can : [u'inform'] -kept you : [u'waiting'] -conjecture which : [u'seemed'] -story seemed : [u'to'] -. Most : [u'of', u'people'] -pledge was : [u'given'] -miles, : [u'and', u'but', u'I'] -face into : [u'his', u'the'] -in coming : [u'from', u'in'] -pool midway : [u'between'] -fall in : [u'agricultural'] -and kept : [u'on'] -prove useful : [u','] -an eye : [u'on', u'.'] -advertisement columns : [u'of'] -assist at : [u'the'] -went prospecting : [u'in'] -YOU AGREE : [u'THAT'] -bent, : [u'her'] -the celebrated : [u'Mr'] -what to : [u'do', u'say', u'think'] -came here : [u'.', u'."'] -strong factor : [u'in'] -by that : [u'right', u'single', u'?', u'note', u'time'] -and that : [u'one', u'woman', u'you', u'of', u'my', u'he', u'his', u'the', u'it', u'even', u'I', u'they', u'she', u'there', u'in', u'all', u'was', u'therefore', u'this', u'is', u',', u'slip', u'suspicion', u'a', u'anything', u'Frank', u'we', u'if', u'your'] -her advice : [u'.'] -me of : [u'it', u'my', u'poor'] -undoubtedly alone : [u'when'] -earth smelling : [u'passage'] -judge Lord : [u'St'] -for communication : [u'.'] -lord has : [u'had'] -sly looking : [u','] -good husband : [u','] -matter of : [u'the', u'fact', u'no', u'fowls', u'yours', u'less', u'business', u'form'] -gravely set : [u','] -Astonishment at : [u'the'] -extraordinary luck : [u'during'] -old maxim : [u'of'] -anything in : [u'the'] -a decline : [u'and'] -want you : [u'to'] -satisfied. : ['PP'] -satisfied, : [u'why'] -maintaining tax : [u'exempt'] -parts, : [u'melon'] -have only : [u'just', u'half', u'been', u'to'] -Openshaw carried : [u'are'] -the Bengal : [u'Artillery'] -your power : [u','] -steps upon : [u'the'] -lady?" : [u'I'] -and metal : [u','] -keep a : [u'roof', u'cat', u'secret'] -was mottled : [u'all'] -my theory : [u'certainly', u'all'] -except of : [u'my'] -it?" : [u'said', u'I', u'He', u'he', u'asked'] -Obviously something : [u'had'] -and flattened : [u'it'] -instrument. : ['PP'] -it?' : [u'asked', u'He'] -instrument, : [u'or'] -us early : [u'in'] -halfway up : [u'his'] -in particular : [u'.'] -, surely : [u','] -The Black : [u'Swan'] -an unfortunate : [u'one', u'accident'] -, leaves : [u'a'] -has helped : [u'him'] -know so : [u'much'] -Nearly eleven : [u'."'] -, Kate : [u'!'] -seen the : [u'steps', u'police', u'deed', u'will', u'machine', u'man'] -him and : [u'read', u'any', u'returned', u'he', u'occasionally', u'tried', u'tore', u'for'] -grinning face : [u'at'] -the spreading : [u'out'] -may possibly : [u'have'] -blunt weapon : [u'.'] -and sensible : [u'girl'] -so glad : [u'that'] -that there : [u'are', u'is', u'was', u'had', u'should', u'can', u'must', u'may', u'were', u'might', u'would', u'you'] -affect the : [u'kingdom'] -Name the : [u'sum'] -visitor gave : [u'a'] -suspicion of : [u'treachery'] -was flight : [u','] -pillow. : ['PP'] -space of : [u'a'] -. All : [u'emotions', u'red', u'the', u'he', u'this', u'was', u'these', u'day', u'well', u'right', u'will', u'my', u'we', u'over'] -his serving : [u'man'] -stages. : ['PP'] -once saw : [u'him'] -was brought : [u'up', u'in'] -director, : [u'and'] -director. : [u'From'] -clutched at : [u'his', u'my'] -return I : [u'heard'] -were observed : [u'to'] -passage gazing : [u'at'] -table in : [u'front', u'the'] -Lascar stoutly : [u'swore'] -the defending : [u'counsel'] -another sound : [u'became'] -may charge : [u'a'] -his opponent : [u'at', u'.'] -meet an : [u'American'] -and coldly : [u'grasped'] -high spirits : [u'. "'] -he does : [u'something'] -. Send : [u'him'] -meet at : [u'the'] -forehead; " : [u'I'] -your lodgings : [u'.'] -that feeling : [u'away', u'.'] -and send : [u'down'] -rose. : ['PP'] -tend to : [u'make'] -rose, : [u'and'] -he smoothed : [u'one'] -leather is : [u'scored'] -After all : [u','] -observed there : [u'came'] -it never : [u'to', u'really'] -letters who : [u'had'] -bill at : [u'one'] -somewhere in : [u'the'] -, throwing : [u'his', u'back', u'out', u'a', u'open'] -murky river : [u'flowing'] -she bequeathed : [u'to'] -the barmaid : [u','] -; ' my : [u'time'] -paper label : [u','] -are next : [u'to'] -contortions. : ['PP'] -a patient : [u'(', u','] -gone years : [u'will'] -entirely cleared : [u'up'] -! See : [u'what', u'here'] -of human : [u'plans', u'experience'] -having cleared : [u'from', u'the'] -waved his : [u'hand', u'hands'] -dusty, : [u'and'] -" Can : [u'I'] -shots. : [u'Our'] -. Among : [u'these', u'my'] -little faster : [u'and'] -. Several : [u'times'] -to blows : [u','] -decision. : [u'My'] -whole of : [u'her', u'next', u'that'] -This fellow : [u'Merryweather', u'is', u',', u'will'] -mind when : [u'a', u','] -spirits again : [u';'] -forward to : [u'open', u'protect', u'seeing', u'meet'] -what will : [u'you'] -called away : [u'.'] -Voil tout : [u'!"'] -of 1100 : [u'pounds'] -not wonder : [u'at', u'that'] -his habits : [u'.'] -my grip : [u',"', u'was', u'loosened'] -features than : [u'that'] -will you : [u'look', u'call', u'take', u'do', u'say'] -shining waterproof : [u'told'] -reveal what : [u'you'] -to any : [u'man', u'of', u'piece', u'one', u'such', u'chance', u'expense', u'creature', u'Project'] -not sat : [u'again'] -to and : [u'fro', u'accept', u'distribute'] -empty beside : [u'it'] -features that : [u'it'] -say," : [u'he', u'returned'] -rushed towards : [u'it'] -not say : [u'so', u'a', u'upon', u'that', u'another'] -signalled to : [u'him'] -soon as : [u'their', u'it'] -" is : [u'a', u'associated'] -), which : [u'would'] -the tobacconist : [u','] -hour he : [u'came'] -. Watson : [u',', u'has', u'.'] -clattered upon : [u'his'] -" in : [u'white'] -slammed overhead : [u','] -this prank : [u'if'] -freely, : [u'and'] -Good bye : [u',', u'.', u';'] -to single : [u'out'] -been trivial : [u'in'] -like the : [u'devil', u'bill', u'mouth', u'forecastle', u'neighbourhood', u'bark', u'claws', u'genii', u'buzz'] -call upon : [u'you', u'me', u'a'] -father and : [u'myself', u'son'] -cannot spare : [u'time'] -more important : [u'and'] -his Christmas : [u'dinner'] -his thoughts : [u'.', u'before'] -footsteps was : [u'heard'] -" Proceed : [u','] -correctly describe : [u'a'] -had experience : [u'of'] -, smasher : [u','] -rather suddenly : [u'collapsed'] -when, : [u'for', u'drawn', u'with', u'after', u'however', u'just'] -whenever she : [u'might'] -created dreams : [u'and'] -, smashed : [u'the'] -To be : [u'left'] -one wing : [u'is', u','] -kept on : [u'saying', u'worrying'] -, between : [u'ourselves', u'Lord'] -and be : [u'raising', u'in', u'brave'] -agreement and : [u'help'] -, EXPRESS : [u'OR'] -jesting tone : [u','] -, ' actually : [u'within'] -Six out : [u'and'] -and by : [u'the', u'evening', u'hearing', u'its', u'him', u'rearranging'] -of hours : [u'every', u'."'] -must, : [u'then', u'at'] -animated conversation : [u'with'] -companion by : [u'the'] -produced by : [u'cocking'] -assistants, : [u'but'] -startling in : [u'its'] -at Swindon : [u','] -and upon : [u'the'] -would come : [u'cheap', u'here', u'upon', u'of'] -thing clear : [u'to'] -the requirements : [u'of'] -When did : [u'it', u'she', u'you'] -every subject : [u'which'] -speaking only : [u'half'] -peculiar qualities : [u'which'] -horse' : [u's'] -presume. : ['PP'] -presume, : [u'indicated', u'contains', u'took'] -the colonel : [u"'", u',', u'himself', u'answered', u'fumbled', u". '", u'first', u'ushered', u'looking', u'to', u'needed', u'was', u'received'] -never to : [u'mind', u'speak', u'receive', u'leave', u'learn'] -no precautions : [u'can'] -witness, : [u'if'] -does this : [u'mean'] -very particularly : [u'to'] -of Upper : [u'Swandam'] -foot was : [u'always'] -have its : [u'way'] -the sobered : [u'Toller'] -good article : [u'there'] -care for : [u'it'] -fastened for : [u'the'] -Wigmore Street : [u'into'] -Finally he : [u'returned', u'walked', u'took'] -own room : [u','] -hall behind : [u'her'] -already formed : [u'your'] -" Awake : [u','] -to step : [u'into', u'in', u'out', u'up'] -because I : [u'have', u'heard', u'was', u'felt', u'need'] -might cross : [u'his'] -was surely : [u'the'] -half of : [u'the', u'a'] -clever and : [u'ruthless', u'dangerous'] -.' I : [u'see', u'answered', u'kissed'] -am to : [u'be', u'remain', u'go', u'do'] -burrowing for : [u'.'] -injuries. : [u'He', u'There'] -faithfully, : [u'ST', u'"', u'JEPHRO'] -, loose : [u'lipped'] -towards him : [u','] -their last : [u'interview'] -the chisel : [u'and'] -footing for : [u'some'] -opal tiara : [u'.'] -Pentonville. : [u'One'] -txt or : [u'1661'] -Too large : [u'for'] -but you : [u'do', u'understand', u'have', u'did', u'will', u'can', u'were', u'thought', u'are', u'know', u'would', u'remember', u'shall'] -troubled by : [u'the'] -a sigh : [u'of'] -going right : [u'on'] -own services : [u','] -a sign : [u'that', u'of'] -than never : [u'to'] -visitor bore : [u'every'] -trap should : [u'be'] -details," : [u'said', u'remarked'] -beryls,' : [u'said'] -excellent explanation : [u'why'] -hardly knowing : [u'what'] -dropped them : [u'away'] -With that : [u'he'] -A thing : [u'like'] -to day : [u'had', u'.', u'being', u',', u'that', u'."', u'in', u'at', u'upon'] -massive masonry : [u'. "'] -Which is : [u'it'] -the bank : [u'director', u'can', u'to', u'directors', u',', u'."', u'when'] -are infinitely : [u'the'] -a cleaver : [u',"'] -It becomes : [u'a'] -little square : [u'of'] -, sir : [u'."', u'.', u',', u';', u',"', u'!', u'!"', u'?', u'?"', u",'", u".'", u"?'"] -the bang : [u'of'] -shooting them : [u'down'] -my direction : [u'.'] -with half : [u'her', u'frightened'] -water within : [u'his'] -plunged at : [u'once'] -an antagonist : [u';'] -official detective : [u'force', u'was'] -makings of : [u'a'] -face he : [u'appeared', u'lit'] -he always : [u'managed', u'felt', u'glided'] -, " perhaps : [u'you'] -a soul : [u'of', u'there', u'.', u".'"] -fancy. : ['PP', u'Have', u'Read'] -fancy, : [u'Watson', u'nearing', u'of', u'is'] -scattered papers : [u'and'] -and look : [u'up'] -Westphail, : [u'who'] -, John : [u",'", u'Clay', u"?'", u';'] -a sour : [u'face'] -clerks are : [u'sometimes'] -my stepfather : [u'.', u',', u"'"] -young lady : [u',', u"'", u'was', u'has', u'as', u'came', u'?"', u'entered', u",'", u'."', u'who', u'waiting', u'.', u'we', u'!', u"!'--", u"?'"] -handsome, : [u'and'] -It arrived : [u'upon'] -stairs as : [u'hard'] -pinch of : [u'snuff'] -a misfortune : [u'this'] -up together : [u'to'] -fourteenth, : [u'a'] -as Openshaw : [u'did'] -Very well : [u'.', u',', u",'"] -and Jose : [u'Menendez'] -CONAN. : ['PP'] -what part : [u'he'] -' and : [u"'"] -three minutes : [u','] -bedtime I : [u'had'] -dress is : [u'a'] -again'-- : [u'here'] -highly," : [u'said'] -firemen had : [u'been'] -Balmoral has : [u'been'] -nostrils seemed : [u'to'] -the den : [u'of'] -startled. " : [u'I'] -been cleared : [u',', u'yet'] -Californian heiress : [u'is'] -what may : [u'.', u'be'] -a cave : [u','] -individual must : [u'be'] -shown in : [u'one'] -Showing that : [u'she'] -already, : [u'I'] -already. : [u'For', u'When'] -were four : [u'protruding', u'of'] -instant of : [u'wife'] -a door : [u',', u'opened', u'slammed', u'which'] -Dane, : [u'who'] -elemental forces : [u'which'] -is sure : [u'to'] -the moment : [u',', u'when', u'of', u'as', u'that'] -, certainly : [u'."', u'.', u',', u',"', u'that'] -than 750 : [u'pounds'] -isn' : [u't'] -, walked : [u'into'] -rose as : [u'we', u'he'] -sheet upon : [u'the'] -bank when : [u'a'] -son in : [u'one'] -to steal : [u'over'] -Also, : [u'by'] -proclaimed. : [u'That'] -' hunting : [u'crop'] -day at : [u'Gravesend'] -was fulfilled : [u'.'] -very useful : [u'they'] -avert it : [u'all'] -a cell : [u','] -A lean : [u','] -how to : [u'look', u'turn', u'get', u'walk', u'while', u'employ', u'make', u'help', u'subscribe'] -gallows and : [u'the'] -payments should : [u'be'] -may assume : [u'as'] -the woman : [u'.', u'in', u"'", u'to', u'who', u'whom', u'had', u','] -me back : [u'into'] -so continually : [u'from'] -disposal, : [u'and'] -dead away : [u','] -a defective : [u'or'] -of work : [u',', u'.'] -slept on : [u'the'] -roof, : [u'and', u'suppressing'] -endless labyrinth : [u'of'] -very possibility : [u'of'] -Majesty all : [u'fear'] -bottom my : [u'own'] -and observing : [u'machine'] -Beside this : [u'table'] -night just : [u'as'] -any of : [u'the', u'their', u'its', u'Sherlock', u'these', u'them'] -was fortunate : [u'enough'] -the holes : [u'.'] -we do : [u'nothing', u'not'] -elaborate a : [u'story'] -his problems : [u','] -what hellish : [u'thing'] -any on : [u'hand'] -dark again : [u'save'] -sober he : [u'used'] -money for : [u'a'] -settle down : [u'they', u'to'] -look after : [u'that', u'the'] -1000 pound : [u'notes'] -the charm : [u'to', u'of'] -I blew : [u'its'] -colonel answered : [u'only'] -or French : [u'.'] -far away : [u'from'] -easy in : [u'my'] -always answered : [u'me'] -such tricks : [u'with'] -Most admirably : [u".'"] -would certainly : [u'have', u'be'] -unless some : [u'way'] -My gross : [u'takings'] -understand the : [u'situation'] -' sake : [u'let', u'don'] -new case : [u','] -not already : [u'done', u'arrived'] -days yet : [u',"'] -Hall I : [u'felt'] -were turned : [u'in'] -our ulsters : [u'and'] -aloud to : [u'him'] -a wife : [u"'", u'as'] -his chin : [u'waiting', u'upon', u'sunk', u'in'] -white cheeks : [u'of'] -his process : [u'of'] -door itself : [u'was'] -means which : [u'he'] -kept all : [u'the'] -had covered : [u'their'] -gone so : [u'far'] -whole transaction : [u'which'] -had surrounded : [u'myself'] -little slurring : [u'over'] -waist high : [u','] -boot lace : [u'.'] -case we : [u'had', u'should'] -Holmes rushed : [u'at'] -fetch the : [u'cloak'] -at Bordeaux : [u','] -landau, : [u'the'] -in despair : [u';', u'and', u'.'] -introduce a : [u'distracting'] -homesteads. : ['PP'] -This may : [u'interest', u'account'] -very tightly : [u'round'] -train of : [u'circumstances'] -mumbling out : [u'his'] -little brougham : [u'and'] -the gesture : [u'of'] -India, : [u'I'] -with every : [u'fresh', u'nerve', u'evil', u'possible', u'confidence'] -immediately. : ['PP'] -, Mr : [u'.'] -into mine : [u','] -wash his : [u'hands'] -' protruding : [u'out'] -was lounging : [u'upon'] -is little : [u'which', u'accustomed'] -perpetual smell : [u'of'] -was the : [u'late', u'sharp', u'relation', u'gentleman', u'most', u'thought', u'centre', u'very', u'same', u'end', u'amount', u'bisulphate', u'chain', u'stepfather', u'point', u'only', u'peculiar', u'ground', u'criminal', u'fact', u'word', u'name', u'beginning', u'organisation', u'case', u'toy', u'coarse', u'horrid', u'children', u'keeper', u'matter', u'fattest', u'band', u'dreadful', u'cause', u'momentary', u'means', u'place', u'merest', u'clank', u'third', u'first', u'more', u'girl', u'man', u'daughter', u'disposition', u'appearance', u'key', u'huge', u'one'] -temptation. : ['PP'] -plainly, : [u'the'] -a peasant : [u'had'] -Suburban Bank : [u',', u'abutted'] -interview, : [u'was', u'but'] -wound of : [u'mine'] -smooth faced : [u'pawnbroker'] -strongly it : [u'bears'] -" Just : [u'one', u'look'] -for obtaining : [u'a'] -you on : [u'one'] -apologise to : [u'him'] -bed after : [u'his'] -smallest sample : [u'of'] -income of : [u'about', u'250'] -also my : [u'custom'] -vanished immediately : [u','] -Bohemia, : [u'not', u'when', u'and', u'the'] -hopes which : [u'you'] -Bohemia. : ['PP'] -idiot do : [u'but'] -glove and : [u'finger'] -hearing the : [u'very', u'cry'] -scoundrel of : [u'whom'] -you or : [u'repay', u'to', u'the', u'have'] -the Southampton : [u'highroad', u'Road'] -paper where : [u'Mr'] -account of : [u'his', u'you', u'the', u'it', u'who'] -the doctor : [u'won', u"'", u'kept', u'has', u'affected', u'met', u'was', u'bandaged'] -dealer' : [u's'] -great pleasure : [u'in'] -finger planted : [u'halfway'] -and vulgar : [u'enough'] -. Hosmer : [u'Angel', u'Mr', u'came'] -were too : [u'excited'] -double breasted : [u'coat'] -every requirement : [u'.'] -statement of : [u'what'] -lids now : [u'and'] -the swish : [u'of'] -redistributing or : [u'providing'] -he putting : [u'his'] -creating the : [u'Project'] -an emigrant : [u'ship'] -turn over : [u'these'] -me to : [u'an', u'be', u'study', u'say', u'step', u'do', u'the', u'solve', u'run', u'tell', u'hide', u'pronounce', u'judge', u'come', u'approach', u'morrow', u'have', u'night', u'bring', u'wake', u'explain', u'believe', u'ask', u'get', u'this', u'a', u'go', u'introduce', u'leave', u'half', u'join', u'think', u'give', u'my', u'cut', u'observe', u'refuse', u'read', u'cease'] -client of : [u'the'] -tongue. : [u'I', 'PP'] -drug, : [u'and', u'an', u'beckoning'] -Singular Occurrence : [u'at'] -richer I : [u'grew'] -. Young : [u'McCarthy', u'Openshaw'] -merchant man : [u'behind'] -yard and : [u'smoked'] -would of : [u'course'] -If this : [u'young', u'man', u'fail'] -now as : [u'safe', u'absorbed', u'to'] -Flaubert wrote : [u'to'] -, pacing : [u'up'] -others overlook : [u'.'] -laughing stock : [u'of'] -position which : [u'you'] -followed me : [u'so', u',', u'there', u'to'] -possible I : [u'made'] -evening of : [u'the'] -court to : [u'decide'] -followed my : [u'remarks'] -this curt : [u'announcement'] -three hours : [u'or'] -stop the : [u'night', u'service'] -fine big : [u'one'] -at Gravesend : [u'.'] -equally valid : [u'.'] -yellow blotches : [u'of'] -with fiery : [u'red'] -and printed : [u'and'] -me congratulate : [u'you'] -OF. : ['PP'] -unlikely. : ['PP'] -buy the : [u'geese', u'neighbouring'] -were dismissed : [u','] -row of : [u'sleepers'] -like advice : [u','] -chuckled and : [u'wriggled'] -advantages, : [u'and'] -What do : [u'you'] -very unusual : [u'thing'] -quite time : [u'that'] -the firelight : [u'strikes'] -still flatter : [u'himself'] -But have : [u'you'] -over an : [u'angle'] -My private : [u'note'] -crime with : [u'these'] -tenant but : [u'still'] -and kindliness : [u'with'] -a highway : [u'robber'] -any reason : [u'that'] -gravity upon : [u'his'] -From north : [u','] -eyes shone : [u'out'] -whole house : [u'resounded', u'was', u'in'] -contemptuous, : [u'while'] -joined us : [u'in'] -fathomed it : [u'or'] -shows you : [u".'"] -city. : [u'Sherlock'] -city, : [u'gently', u'ostensibly'] -Britannica.' : [u'Vincent'] -Britannica." : [u'There'] -need certainly : [u'to'] -still sharing : [u'rooms'] -who wrote : [u'it', u'the'] -remember aright : [u','] -the verge : [u'of'] -field for : [u'the', u'those', u'an'] -foresight and : [u'no', u'the'] -hair would : [u'only'] -but will : [u'not'] -prominently whenever : [u'any'] -Flora decoyed : [u'my'] -was transformed : [u'when'] -and entered : [u','] -in attempting : [u'to'] -Her violet : [u'eyes'] -ten days : [u'I'] -chin which : [u'rolled'] -mother and : [u'I', u'all'] -threw them : [u'down'] -any investigation : [u'which'] -chamber. : ['PP', u'That'] -but on : [u'the'] -well upon : [u'our'] -" Which : [u'are', u'were', u'surely', u'of', u'key'] -of note : [u'paper', u'taking'] -but of : [u'course', u'such', u'an', u'his'] -nipper? : [u'I'] -swiftly and : [u'in'] -weeks on : [u'end'] -ever gone : [u'against'] -strange and : [u'bizarre', u'impressive', u'interesting', u'unforeseen', u'painful'] -The habit : [u'grew'] -have erred : [u',', u'perhaps'] -hook and : [u'will'] -a crack : [u'in'] -avert another : [u'public'] -wink at : [u'night'] -a horsey : [u'looking'] -me angry : [u'to'] -him very : [u'much', u'well'] -one point : [u'on', u'which'] -bowed solemnly : [u'to'] -the point : [u'.', u'upon', u'of', u'."', u'from', u',"', u','] -however. : [u'I', 'PP', u'He', u'This'] -however, : [u'which', u'with', u'they', u'by', u'I', u'and', u'was', u'that', u'there', u'half', u'when', u'for', u'gave', u'before', u'have', u'one', u'he', u'allowed', u'to', u'in', u'she', u'we', u'who', u'retained', u'four', u'caused', u'an', u'a', u'so', u'see', u'it', u'just', u'the', u'as', u'their', u'nothing', u'may', u'at', u'seeing', u'go'] -circumstantial evidence : [u'pointed'] -remarkable narrative : [u'of'] -no prosecution : [u'.'] -neither alone : [u'could'] -.' Heaven : [u'forgive'] -combinations we : [u'must'] -though whether : [u'a'] -your husband : [u"'", u'is', u'until'] -face, ' : [u'to'] -house any : [u'more'] -, ' his : [u'name'] -your oil : [u'lamp'] -an American : [u'millionaire', u'origin', u'and', u',', u'.', u'gentleman'] -house and : [u'tear', u'seldom'] -seven when : [u'we'] -afforded a : [u'finer'] -daily seat : [u','] -drawn face : [u','] -a reply : [u'to'] -a third : [u'door', u'point'] -rubbing down : [u'their'] -met him : [u'first', u'that', u'twice', u'in', u'coming', u'hastening'] -met his : [u'fate', u'death', u'end'] -girls had : [u'married'] -nodding myself : [u','] -less cheerful : [u'frame'] -! Three : [u'gone'] -friend. " : [u'But'] -conundrums. : ['PP'] -stay," : [u'said'] -Lady St : [u'.'] -to announce : [u'Miss', u'that'] -net round : [u'this'] -In heaven : [u"'"] -acetones, : [u'as'] -his powers : [u'so'] -which rolled : [u'down'] -. " Sir : [u','] -gushes, : [u'and'] -he picked : [u'up'] -old friend : [u'of', u'and'] -and never : [u'had', u'would', u'come', u'see'] -was too : [u'good', u'crowded', u'much', u'shaken', u'far', u'trivial', u'late', u'hardened'] -better time : [u','] -some slight : [u'indication', u'difficulty'] -among horsey : [u'men'] -threw aside : [u'her'] -it hadn : [u"'"] -beauty, : [u'isn'] -You had : [u'my', u'heard'] -few more : [u'of'] -The same : [u'post', u'porter'] -honour of : [u'addressing'] -He chucked : [u'it'] -a fragment : [u'in'] -UT 84116 : [u', ('] -whether we : [u'should', u'cannot'] -. Knowing : [u'that'] -your new : [u'duties'] -I recognised : [u'as'] -typewritten and : [u'revealed'] -his top : [u'hat'] -over utterly : [u'had', u'and'] -Our reserve : [u'of'] -swear that : [u'the'] -The dear : [u'fellow'] -away. : ['PP', u'On', u'But', u'There', u'I'] -away, : [u'and', u'was', u'like', u'then', u'or', u'but'] -little more : [u'.', u'quiet', u'of', u'human', u'clearly', u'closely', u'reasonable', u'before'] -may place : [u'considerable', u'implicit'] -Munro, : [u'but'] -wife find : [u'something'] -Munro. : ['PP'] -dressing table : [u'.', u'on', u'."'] -take when : [u'you'] -clear and : [u'concise'] -scream of : [u'a', u'agony'] -the chances : [u'being'] -examination of : [u'the'] -smoked there : [u'.'] -wayward, : [u'and'] -many tragic : [u','] -Tell Mary : [u'that'] -first with : [u'the'] -shape a : [u'sprig'] -own affairs : [u'have'] -A jagged : [u'stone'] -was handling : [u'just'] -amusement, : [u'but', u'and'] -me keenly : [u'.'] -had disappeared : [u','] -sake," : [u'remarked'] -lash, : [u'however'] -lash. : [u'But'] -daughter, : [u'who', u'but', u'Miss'] -trespasser whom : [u'he'] -my sister : [u"'", u'to', u'returned', u'was', u'described', u'appear', u'died'] -thing you : [u'owe'] -spoiled him : [u'.'] -considerably astonished : [u'at'] -the Tollers : [u'opened'] -and implore : [u'me'] -so deep : [u'an'] -Jump, : [u'Archie'] -chestnut. : ['PP', u'It'] -to devouring : [u'energy'] -were identical : [u'.'] -must make : [u'the', u'allowance'] -upon any : [u'other', u'of', u'point'] -of footsteps : [u'moving'] -and improbabilities : [u'the'] -where there : [u'is'] -left Lestrade : [u'at'] -or dead : [u','] -she seems : [u'indeed', u'to'] -sat at : [u'my', u'her'] -considerable self : [u'restraint'] -a great : [u'blue', u'hurry', u'scandal', u'sympathy', u'amethyst', u'benefactor', u'beech', u'deal', u'many', u'thing', u'greasy', u'widespread', u'public', u'heavy', u'convenience', u'coil'] -Clay," : [u'said'] -cardboard about : [u'the'] -prices, : [u'not'] -your life : [u'."', u'is'] -a faded : [u'brown'] -a plover : [u"'"] -, poor : [u'fellow'] -Theories are : [u'all'] -blow was : [u'struck'] -, pooh : [u'!'] -criminal agent : [u','] -entirely a : [u'question'] -had ceased : [u'to', u'ere'] -through and : [u'was'] -offices, : [u'but'] -offices. : [u'He'] -their beat : [u'.'] -erred, : [u'perhaps'] -slavey. : [u'As'] -question, : [u'land', u'sir', u'and'] -as either : [u'an'] -question. : [u'The', u'How', u'That', 'PP', u'"'] -good might : [u'come'] -s attentions : [u','] -cut at : [u'me'] -never have : [u'been', u'."', u'any', u'occurred', u'had'] -anyone who : [u'really'] -the way : [u',', u'for', u'.', u'in', u'there', u'to', u'."', u'of', u'down', u'place', u'out', u",'"] -minds for : [u'the', u'a'] -the war : [u'he', u'time'] -. Information : [u'about'] -smile broadened : [u'.'] -else of : [u'interest'] -singular which : [u'I'] -, rose : [u'as'] -should ever : [u'have'] -waiting at : [u'the'] -other format : [u'used'] -very bad : [u'!', u'compliment', u',', u'effect', u'day'] -waiting an : [u'instant'] -B, : [u'and'] -were weak : [u','] -me introduce : [u'you'] -very suggestive : [u'in'] -undue impression : [u'of'] -laid it : [u'on', u'out', u'upon'] -brings our : [u'vegetables'] -but real : [u'bright'] -That note : [u'only'] -refuse. : ['PP'] -wreaths spinning : [u'up'] -bandy words : [u'with'] -I searched : [u'the'] -him first : [u'at'] -me live : [u'with'] -and since : [u'you'] -like all : [u'such', u'Europe'] -most horrible : [u'cry'] -very essential : [u',', u'to'] -fortunately I : [u'spend'] -few days : [u'.', u'I', u','] -you share : [u'my', u'it'] -when young : [u'Mr', u'ladies'] -cross questioning : [u'.'] -" We : [u'were', u'have', u'must', u'shall', u'both', u"'", u'are', u'do', u'went', u'could'] -rude if : [u'I'] -advise her : [u'at'] -the magistrate : [u'than', u'refused'] -to an : [u'armchair', u'agent', u'end', u'advertisement', u'observer', u'investigation', u'action', u'empty', u'abominable', u'acquaintance', u'entirely', u'asylum'] -violin, : [u'for'] -grasped my : [u'arm'] -to hush : [u'this', u'the'] -OR USE : [u'THIS'] -morning waiting : [u'in'] -no account : [u'lose'] -are continually : [u'gaining'] -stones were : [u'the'] -from people : [u'in'] -goose club : [u',', u'."'] -question or : [u'remark', u'two'] -so much : [u'about', u'angry', u'typewriting', u'as', u',', u'faith', u'public', u'that', u'influence', u'to', u'annoyance', u'stronger', u'of'] -Fleet Street : [u'."', u'was'] -her papers : [u'without'] -requirements, : [u'we'] -agitated. : [u'He'] -requirements. : [u'We'] -make such : [u'a', u'reparation'] -every facet : [u'may'] -screams, : [u'he'] -cleared it : [u'all'] -The shutters : [u'cut'] -, unhealthy : [u'blotches'] -boxes. : ['PP'] -my plans : [u'very'] -coat of : [u'some'] -the repairs : [u','] -my notes : [u'and', u',', u'of'] -here." : [u'He', u'It'] -been one : [u'.'] -imperilled the : [u'whole'] -, already : [u'formed'] -but some : [u'two', u'muttered'] -By no : [u'means'] -he shut : [u'himself'] -him there : [u'.'] -recognise the : [u'presence', u'symptoms'] -the dreadful : [u'end', u'position'] -but must : [u'get'] -ashen face : [u'.'] -in failing : [u'health'] -three long : [u'windows'] -" Hum : [u'!"', u'!'] -But that : [u'was', u'my', u'is'] -looked up : [u','] -landscape. : ['PP'] -16A, : [u'Victoria'] -side she : [u'was'] -threw up : [u'reporting', u'my', u'her'] -not unlink : [u'or'] -cab humming : [u'the'] -, " so : [u'I'] -past him : [u'into'] -accumulated the : [u'fruits'] -ways and : [u'simple'] -moss, : [u'and'] -slammed the : [u'little'] -quote this : [u'as'] -red silk : [u','] -keeping her : [u'at'] -talked of : [u'marrying'] -of no : [u'importance', u'ordinary', u'man', u'help', u'use', u'great', u'prohibition'] -for anyone : [u'to'] -duty a : [u'feeling'] -. His : [u'rooms', u'manner', u'dress', u'broad', u'expression', u'grandfather', u'brain', u'knees', u'frank', u'face', u'brows', u'nostrils', u'boots', u'slow', u'tangled', u'grip', u'cry', u'lip', u'death', u'orders', u'extreme', u'form', u'defence', u'name', u'appearance', u'signet', u'rusty', u'costume', u'hand', u'chin', u'whole', u'hair', u'features', u'letters', u'eyes', u'footmarks', u'wicked', u'wife', u'cheeks'] -white as : [u'when'] -that one : [u'particularly', u'I', u'of'] -or hypertext : [u'form'] ---" I : [u'have'] -and bundles : [u'as'] -not,' : [u'I'] -data which : [u'may'] -will readily : [u'see'] -Bradstreet would : [u','] -and Redistributing : [u'Project'] -a specialist : [u'in'] -the horrid : [u'scar'] -and much : [u'the', u'less'] -circle to : [u'begin'] -I answer : [u','] -etc. : [u'Ha'] -hardly resist : [u'the'] -row. : ['PP'] -have acted : [u'before', u'otherwise', u'all'] -you already : [u'use'] -comes close : [u'upon'] -FOUNDATION, : [u'THE'] -sprang to : [u'his', u'the', u'my'] -Colonel Stark : [u'went', u'laid'] -staggered to : [u'his', u'my'] -snarl in : [u'reply'] -loving,-- : [u'MARY'] -sight of : [u'the', u'them', u'his', u'you', u'these', u'him'] -his forehead : [u'; "', u'."', u'three', u'.'] -it bodes : [u'evil'] -peering at : [u'us'] -a suit : [u'of'] -and without : [u'either', u'the', u'paying'] -its curious : [u'termination'] -something was : [u'there', u'amiss', u'moving'] -this were : [u'he'] -your relations : [u'to'] -the somewhat : [u'vacuous'] -it does : [u'.', u'so', u'not'] -still in : [u'the', u'there'] -great deduction : [u'to'] -telegram from : [u'the'] -, deduce : [u'from'] -to poor : [u'folk'] -returned and : [u'offered', u'saw'] -have certainly : [u'been', u'cleared'] -black lace : [u'which'] -a deposit : [u'of'] -secret very : [u'jealously'] -his search : [u','] -can claim : [u'an'] -felt hat : [u',', u'.'] -madam. : ['PP'] -you ever : [u'observed', u'heard', u'see', u'on', u'put'] -not think : [u'of', u'that', u'so', u'Flora', u'very', u',', u'1000', u'me', u'you'] -We should : [u'have', u'be'] -when all : [u'father', u'is'] -lamp which : [u','] -it within : [u'a'] -machine. : ['PP'] -is upon : [u'the'] -purposes, : [u'how', u'the', u'principally', u'and'] -has placed : [u'in'] -disappoint? : [u'I'] -chance you : [u'came'] -When these : [u'hot'] -back. : ['PP', u'It', u'He', u'We', u'You', u'Then', u'I', u'Nothing', u'So', u'Don', u'At'] -harshly. : ['PP'] -back, : [u'limp', u'but', u'white', u'twitching', u'and', u'like', u'closed'] -the bureau : [u'had', u'of', u'first', u'.'] -there your : [u'bird'] -taking part : [u'in'] -away into : [u'the', u'nose'] -dark and : [u'stormy', u'sinister'] -filled. : [u'A'] -in case : [u'of', u'we', u'I'] -dearest old : [u'country'] -ball and : [u'tossed'] -own opinion : [u'is'] -great creases : [u'of'] -strange side : [u'alley'] -side to : [u'side'] -very high : [u',"'] -Your reasoning : [u'is'] -from Bristol : [u'?'] -someone passing : [u'said'] -cheeks of : [u'the'] -! Colonel : [u'!'] -then what : [u'hellish'] -impressions on : [u'one'] -that armchair : [u','] -toast and : [u'coffee'] -his foot : [u'.'] -, Egria : [u'.'] -me," : [u'returned', u'I', u'said', u'he', u'broke'] -. " Project : [u'Gutenberg'] -is practically : [u'finished'] -me,' : [u'said', u'I'] -turned hungrily : [u'on'] -which conveyed : [u'the'] -wind. : ['PP', u'But'] -wind, : [u'and'] -are absolutely : [u'safe'] -on December : [u'22nd'] -the clue : [u'which'] -, cleaned : [u'it'] -mean by : [u'that'] -may convert : [u'to'] -, among : [u'the'] -feared by : [u'the'] -match box : [u'."'] -which chanced : [u'to'] -before them : [u'when'] -ll go : [u'home'] -lingering disease : [u','] -a park : [u'keeper'] -chin suggestive : [u'of'] -sherry pointed : [u'to'] -not another : [u'word'] -a part : [u'of'] -shook his : [u'head', u'clenched', u'clinched'] -up those : [u'mysteries'] -mantelpiece. " : [u'Here'] -It it : [u"'"] -It is : [u'true', u'simplicity', u'a', u'peculiarly', u'not', u'in', u'the', u'both', u'quite', u'nearly', u'nothing', u'an', u'most', u'cabinet', u'her', u'all', u'The', u'exceedingly', u'your', u'introspective', u'past', u'our', u'so', u'possible', u'just', u'really', u',', u'entirely', u'no', u'of', u'said', u'solved', u'wonderful', u'obvious', u'founded', u'K', u'there', u'probable', u'conjectured', u'well', u'Wednesday', u'very', u'unthinkable', u'to', u'his', u'perhaps', u'absolutely', u'straight', u'clear', u'my', u'always', u'fear', u'terror', u'easy', u'certain', u'precisely', u'evident', u'evidently', u'high', u'fortunate', u'dated', u'three', u'headed', u'impossible', u'thought', u'one', u'this', u'likely', u'locked', u'unfortunately', u'equally', u'pleasant', u'half', u'also', u'due', u'only', u'for'] -thrown him : [u'over'] -veil as : [u'she'] -on worrying : [u'her'] -felt any : [u'emotion'] -secret was : [u'safe', u'a'] -means, : [u'and'] -powerful an : [u'engine'] -distributed. : ['PP'] -handle, : [u'but'] -my hardened : [u'nerves'] -Mendicant Society : [u','] -disturbed, ' : [u'did'] -a left : [u'handed'] -shapeless pulp : [u'.'] -by now : [u'."'] -veins. : [u'Have'] -than are : [u'set'] -proof. : [u'I', u'Was'] -work within : [u'90'] -quarrel with : [u'his'] -suggest, : [u'to'] -so ridiculously : [u'simple'] -notices which : [u'appeared'] -large. : [u'His'] -will contradict : [u'me'] -publicly proclaimed : [u'.'] -care about : [u'the'] -large" : [u'E', u'G'] -, because : [u'I', u'such', u'in'] -drop you : [u'a'] -Anything else : [u'?"'] -your shaving : [u'is'] -Simon is : [u'a'] -maker' : [u's'] -" Wedlock : [u'suits'] -is open : [u'."'] -consultations and : [u'one'] -Simon in : [u'particular'] -the shelf : [u'for', u'beside', u'one'] -trust her : [u'own'] -afraid," : [u'said'] -fly to : [u'my'] -fell into : [u'talk', u'the'] -arranged what : [u'is'] -ones, : [u'all', u'both', u'and'] -little finger : [u',"'] -ones. : [u'Too', u'On'] -and collected : [u'on'] -could incriminate : [u'him'] -will." : [u'Holmes'] -informing him : [u'that'] -somewhere where : [u'no'] -ones; : [u'the'] -Pray what : [u'steps', u'is'] -whisky and : [u'soda'] -heard an : [u'ejaculation'] -of barbaric : [u'opulence'] -waggled his : [u'head'] -REMEDIES FOR : [u'NEGLIGENCE'] -an open : [u'secret'] -just a : [u'little', u'fringe', u'baby', u'big'] -so delicately : [u'and'] -glowing eyes : [u','] -collection are : [u'in'] -ask for : [u'the', u'assistance', u'it', u'anything', u'all'] -the practice : [u'is'] -an indiscretion : [u'."'] -of 140 : [u'different'] -have known : [u'something', u'each', u'for'] -tied so : [u'as'] -Boscombe Valley : [u'Mystery', u'tragedy', u'is', u'.', u'estate'] -hard, : [u'deep', u'as', u'and', u'rough', u'with'] -from it : [u'.', u'?"', u'than', u'which', u'not', u'to'] -two children : [u'.'] -that again : [u','] -one has : [u'data'] -cubic capacity : [u',"'] -second window : [u'is'] -wood until : [u'he'] -little stately : [u'cough'] -bitterly. : ['PP'] -and pledged : [u'myself'] -match seller : [u'but'] -choose to : [u'call', u'give'] -fro, : [u'droning'] -this in : [u'itself', u'one', u'it'] -hardly have : [u'been', u'allowed'] -before me : [u'.', u'in'] -was even : [u'redder', u'fonder', u'a', u'more'] -these luxuries : [u','] -date contact : [u'information'] -- You : [u'pay', u'provide', u'comply', u'agree'] -change all : [u'their'] -go very : [u'far'] -on one : [u'side', u'occasion', u'corner'] -lip from : [u'time'] -days. : [u'It', 'PP', u'There', u'Does', u'I', u'He', u'Quick'] -this is : [u'too', u'a', u'one', u'amusing', u'not', u'the', u'your', u'treasure'] -the scuffle : [u'without', u'downstairs', u','] -of other : [u'similar', u'mortals', u'matters', u'ways'] -and others : [u'have', u'talked'] -nails at : [u'the'] -s always : [u'a'] -To determine : [u'its'] -own account : [u'of'] -you scoundrel : [u'!'] -explained that : [u'the', u'any'] -the senders : [u'to'] -crumbly band : [u'by'] -most pitiable : [u'pass'] -man Breckinridge : [u';'] -lay before : [u'us'] -King. : [u'Why'] -gratitude which : [u'she'] -villa, : [u'with', u'laid'] -King' : [u's'] -, subsided : [u'into'] -alive. : ['PP', u'It'] -"' Not : [u'so', u'at'] -been senseless : [u'for'] -maid will : [u'bring'] -banker recoiled : [u'in'] -books in : [u'which'] -It surprised : [u'me'] -, glanced : [u'at'] -extinguished, : [u'and'] -Australia. : ['PP'] -, chuckling : [u'.'] -taken from : [u'him'] -dear?" : [u'said'] -evidence is : [u'a', u'so', u'occasionally'] -. " Theories : [u'are'] -pleasure is : [u'to'] -obvious fact : [u',"', u'that'] -silence from : [u'which'] -struggle. : [u'How'] -struggle, : [u'so', u'and'] -may carry : [u'that'] -pleasure in : [u'our'] -writhed as : [u'one'] -were enough : [u'to'] -a steamer : [u'they'] -bundles as : [u'would'] -London season : [u'.'] -evil influence : [u','] -the circumstances : [u'were', u',', u'made', u'you'] -incident be : [u'a'] -mistress told : [u'me'] -and terraced : [u'with'] -His conduct : [u'was'] -Baxter' : [u's'] -times; : [u'but'] -carries a : [u'blunt'] -wrong by : [u'opening'] -supply their : [u'deficiencies'] -pavement at : [u'the'] -him like : [u'a'] -loved by : [u'a'] -the banking : [u'firm'] -worked. : [u'Having', u'This'] -visitors had : [u'left'] -make your : [u'guilt'] -harness were : [u'sticking'] -of five : [u','] -see something : [u'of'] -essential that : [u'they'] -apparently given : [u'up'] -books upon : [u'the'] -everything from : [u'it'] -, monotonous : [u'voice'] -landing. : [u'If'] -or anyone : [u'else'] -At first : [u'it', u'I', u','] -our word : [u'."', u','] -.'; and : [u'then'] -the grate : [u'there', u','] -our work : [u','] -corner seats : [u'I'] -with Colonel : [u'Spence'] -dear Arthur : [u'in'] -Your wedding : [u'was'] -Farm house : [u'to'] -excitedly, : [u'and'] -crowd. : ['PP'] -strong object : [u'for'] -was helping : [u'a'] -master wore : [u'at'] -Bohemian soul : [u','] -and given : [u'away'] -had yet : [u'to'] -the exclusion : [u'or'] -same effects : [u'.'] -a typewriter : [u'has'] -always been : [u'confined', u'his'] -choose and : [u'which'] -and gazing : [u'down'] -this mysterious : [u'assistant'] -rolled in : [u'Rotterdam'] -marry her : [u'at'] -to those : [u'letters', u'details', u'incidents'] -which have : [u'happened', u'baffled', u'come', u'to', u'been', u'taken', u'given'] -must adapt : [u'himself'] -true the : [u'murderer'] -conclusive proof : [u'.'] -small place : [u'a', u'within'] -been leaning : [u'back'] -frequent the : [u'Alpha'] -fog rolled : [u'down'] -maid that : [u'he', u'she'] -, winking : [u'at'] -, brother : [u'of'] -claim the : [u'merit'] -the boards : [u'.', u','] -little dim : [u'lit'] -sleeves, : [u'the', u'which'] -sleeves. : [u'Her'] -the tiger : [u'cub'] -pet baits : [u'.'] -.' Now : [u'for', u'my'] -pity by : [u'my'] -winding gravel : [u'drive'] -surprised at : [u'his', u'seeing', u'the'] -selections. : ['PP'] -have clearer : [u'proofs'] -leave the : [u'room', u'papers', u'country', u'house'] -settle the : [u'matter'] -be degenerating : [u'into'] -up indoors : [u'most'] -photograph at : [u'once'] -your revolver : [u'into'] -the fund : [u'left'] -crack in : [u'one'] -been trying : [u'to'] -continue your : [u'very', u'narrative', u'most'] -be here : [u'at', u'."', u'in'] -screen over : [u'that'] -) distribution : [u'of'] -dine at : [u'seven'] -the cupboard : [u',', u'of'] -her whole : [u'figure'] -examining with : [u'his'] -a lengthy : [u'visit'] -down upon : [u'the', u'one', u'his', u'my', u'me'] -most dark : [u'and'] -a commonplace : [u'face'] -walls. : [u'The'] -The band : [u'!'] -walls, : [u'and', u'though'] -organized under : [u'the'] -plenty of : [u'thread', u'money', u'time'] -" Last : [u'Monday', u'week'] -upon details : [u'.'] -of flushed : [u'and'] -. ' Perhaps : [u'we'] -peace which : [u'you'] -them from : [u'the', u'?"'] -remember rightly : [u','] -funny stories : [u'of'] -the change : [u'would', u'in', u'which'] -were burrowing : [u'for'] -on McCauley : [u','] -faint, : [u'as'] -you what : [u'is'] -And is : [u'that'] -And it : [u'did', u'is'] -those geese : [u'?"'] -mother carried : [u'on'] -her positive : [u'intention'] -humour, : [u'never'] -before anyone : [u'could'] -above where : [u'the'] -She heard : [u'Mr'] -he ought : [u'to'] -minutes I : [u'had'] -enough. : ['PP', u'We', u'I', u'Suppose', u'When'] -And if : [u'it', u'you'] -enough, : [u'Mr', u'and', u'certainly', u'but'] -ground to : [u'the', u'think'] -carrying out : [u'our', u'her'] -And in : [u'practice', u'this'] -lost my : [u'thumb', u'honour'] -rejoiced to : [u'find'] -of assistance : [u'to', u'?"'] -murder and : [u'the'] -very real : [u'and'] -the impulse : [u'which'] -Angel was : [u'a'] -reaction of : [u'so', u'joy'] -to exert : [u'ourselves'] -crop swinging : [u'in'] -For Mrs : [u'.'] -cab came : [u'through'] -the reason : [u'why', u'of', u'alone', u'is'] -two neat : [u'hedges'] -obtaining a : [u'note', u'copy'] -gone before : [u'you'] -pound a : [u'week'] -our very : [u'window'] -sit there : [u','] -himself to : [u'hunt', u'his', u'the', u'tell', u'and', u'a', u'be', u'listen'] -warren which : [u'is'] -pacing the : [u'room'] -s Chronicle : [u',"'] -much perturbed : [u'at'] -patients from : [u'among'] -open to : [u'an', u'a'] -scaffolding had : [u'been'] -seen inside : [u','] -surly fellow : [u'said'] -that suggest : [u'anything'] -with enthusiasm : [u'. "'] -have why : [u','] -having a : [u'slightly', u'violent', u'suspicion', u'black', u'witness'] -despair and : [u'set'] -1846.' : [u'He'] -sat opposite : [u'to'] -handled them : [u'ever'] -we shut : [u'the'] -to wear : [u'it', u',', u'any', u'such'] -person who : [u'employs', u'had'] -2002 Language : [u':'] -and chuckled : [u'.'] -fields round : [u'his'] -sedentary life : [u','] -works from : [u'public'] -produce the : [u'same'] -yards from : [u'the'] -chucked it : [u'down'] -? Can : [u'you'] -many were : [u'waiting'] -possible case : [u'against'] -by rearranging : [u'my'] -with offers : [u'to'] -notion as : [u'to'] -be obstinate : [u'."'] -paid, : [u'and'] -concluded he : [u'settled'] -"' Breckinridge : [u','] -suspected. : [u'It', u'There'] -" we : [u"'"] -gripping hard : [u'at'] -clear this : [u'horrible'] -own bureau : [u".'"] -wrung his : [u'hands'] -My pence : [u'were'] -seeking employment : [u'wait'] -my reason : [u','] -s in : [u'Regent', u'here'] -Then if : [u'it'] -her heart : [u'it', u'when'] -people who : [u'have', u'lounged', u'live', u'agree'] -s it : [u'!"'] -getting leave : [u'to'] -vacantly upon : [u'the'] -' quarter : [u','] -Then it : [u'was', u'lengthened', u'flashed'] -Burnwell, : [u'was'] -finger upon : [u'the'] -Burnwell. : [u'I'] -and planked : [u'down'] -sharing rooms : [u'as', u'with'] -cub, : [u'and'] -have frequently : [u'seen', u'gained'] -here can : [u'witness'] -lustre eye : [u'turned'] -intention that : [u'he'] -plenty. : [u'Then'] -Farintosh, : [u'whom'] -I beg : [u'that', u'pardon'] -why she : [u'should', u'shrieked', u'had'] -their flight : [u','] -understand them : [u','] -some stiffness : [u'in'] -and rushed : [u'into', u'off'] -. Wait : [u'in'] -little face : [u'of'] -saw Dr : [u'.'] -I reached : [u'this', u'the', u'it'] -will interest : [u'you'] -fate was : [u'sealed'] -though little : [u'used'] -her way : [u'."', u',', u'into', u'back', u'up', u'in', u'.'] -chair as : [u'if'] -many? : [u'I'] -wood work : [u'with', u','] -sweetness and : [u'delicacy'] -another thing : [u';'] -, dank : [u'grasp'] -chapter, : [u'and'] -please, : [u'sir', u'and', u'Mr', u'Miss'] -please. : ['PP'] -, cross : [u'legged'] -to nothing : [u'.'] -here as : [u'architects'] -opened envelope : [u'in'] -education has : [u'come'] -short time : [u'a', u'.'] -Road 249 : [u',"'] -cloud wreaths : [u'spinning'] -New Jersey : [u'in'] -self evident : [u'a'] -you without : [u'a'] -ashes, : [u'as'] -parallel instance : [u'in'] -expense to : [u'the'] -This looks : [u'like'] -his favour : [u'from', u'and'] -advertisement of : [u'the'] -west country : [u','] -handkerchief round : [u'it'] -your name : [u'to'] -caught the : [u'glint', u'son', u'last', u'name', u'clink'] -weather, : [u'and'] -. Which : [u'was'] -good sized : [u'square'] -lipped senility : [u'.'] -may rely : [u'upon'] -saved began : [u'to'] -the platitudes : [u'of'] -is near : [u'Horsham'] -ground, : [u'with', u'as', u'that', u'and', u'shimmering'] -ground. : [u'One', u'On', u'Then', u'She', u'I', u'Running'] -a beggar : [u'.', u','] -General Information : [u'About'] -Deeply as : [u'I'] -person whom : [u'McCarthy'] -four fingers : [u'and'] -sweating rank : [u'sweating'] -fancy we : [u'may'] -am unable : [u'to'] -beneath it : [u'that'] -. Round : [u'his', u'one', u'this'] -Hampshire border : [u'he'] -1858. : [u'Contralto'] -and wrinkled : [u'newspaper'] -depends. : [u'And'] -one half : [u'raised'] -I won : [u"'"] -hanging gold : [u'earrings'] -eyes, : [u'very', u'as', u'which', u'like', u'and', u'sunk'] -, for : [u'his', u',', u'I', u'a', u'this', u'otherwise', u'example', u'you', u'the', u'we', u'it', u'days', u'he', u'she', u'how', u'people', u'my', u'dad', u'Lestrade', u'there', u'at', u'such', u'their', u'they', u'everyone', u'all', u'every', u'Dr', u'pity', u'if', u'unrepaired', u'solution', u'those', u'from', u'something', u'within', u'her', u'instance', u'God', u'that', u'who', u'out', u'here', u'falling', u'two', u'Mr'] -has knowledge : [u'.'] -breaking above : [u'us'] -of Major : [u'General'] -Wooden leg : [u'had'] -remarkable as : [u'your'] -HOLMES. : ['PP'] -of ink : [u',', u'upon'] -spoken now : [u'had'] -Quincey' : [u's'] -be exposed : [u'to'] -least four : [u'and'] -wreck and : [u'that', u'ruin'] -lunch 2s : [u'.'] -two will : [u'take'] -my kicks : [u'and'] -of power : [u','] -lies snoring : [u'on'] -neutral. : ['PP'] -neutral, : [u'to'] -. Lady : [u'St'] -" That : [u'is', u'also', u'will', u"'", u'sounds', u'McCarthy', u'clay', u'you', u'hurts', u'note', u'was', u'Miss', u'which', u'would'] -"' Perhaps : [u'you'] -fro in : [u'front'] -pledged to : [u'him'] -an acute : [u'reasoner', u'and'] -my request : [u','] -subjected to : [u'such'] -by young : [u'McCarthy'] -of Scandinavia : [u'.', u'."'] -cried my : [u'patient'] -into glass : [u'as'] -against a : [u'smoke', u'man'] -firm upon : [u'this'] -then retire : [u','] -across your : [u'shoulders'] -man stood : [u'glancing'] -Let me : [u'see', u'introduce', u'have', u'explain', u'out', u'pass', u'know'] -claim.' : [u'She'] -common one : [u','] -cruelly used : [u',"'] -empire,' : [u'said'] -sent down : [u'from'] -learn what : [u'this'] -of whom : [u'I', u'we', u'had', u'you'] -was inside : [u'a'] -wife died : [u'young', u'I'] -world wide : [u'country'] -months have : [u'elapsed'] -Lestrade shrugged : [u'his'] -probably some : [u'more'] -lies in : [u'London', u'the'] -. ' By : [u'the'] -just five : [u'days'] -meeting in : [u'the'] -inconsequential narrative : [u','] -compunction than : [u'if'] -He wished : [u'us'] -be somewhere : [u'near'] -handkerchief and : [u'held', u'glanced'] -rather imprudently : [u','] -never saw : [u'a'] -be dust : [u'into'] -City to : [u'the'] -facing round : [u'to'] -books?' : [u'she'] -yet as : [u'clearly', u'tender'] -in Bristol : [u'and', u',', u'.'] -usually in : [u'unimportant', u'some'] -my adventures : [u'started', u','] -" Thank : [u'you', u'God'] -His name : [u'is'] -For you : [u','] -matters as : [u'described'] -hour ago : [u'to'] -Holmes sat : [u'up', u'silent', u'moodily', u'for', u'down', u'in'] -your applying : [u'if'] -Cooee' : [u'was', u'is'] -, with : [u'his', u'a', u'the', u'an', u'long', u'dismantled', u'all', u'this', u'instructions', u'my', u'its', u'fear', u'what', u'Mr', u'me', u'black', u'brown', u'intervals', u'just', u'great', u'something', u'news', u',', u'yellow', u'here', u'every', u'eager', u'her', u'your', u'restless', u'two', u'brownish', u'corridors', u'high', u'expectancies', u'confederates', u'no', u'occasional', u'whatever', u'three', u'such', u'dark', u'immense', u'you', u'knitted', u'grizzled', u'hanging', u'their', u'Toller', u'active'] -and has : [u'seen', u'written', u'had', u'not', u'just', u'always', u'attracted', u'carried'] -sent them : [u'to'] -The cases : [u'which'] -announced our : [u'page'] -her devotedly : [u','] -charge against : [u'him'] -the bearing : [u'and'] -force the : [u'shutter'] -feet up : [u'on'] -might spend : [u'the'] -my virtues : [u'and'] -Alice' : [u's'] -always instructive : [u'.'] -was dissatisfied : [u'with'] -carriage rattle : [u'off'] -deeply distrusted : [u'.'] -six inches : [u'in'] -small brazier : [u'of'] -was himself : [u'red'] -breakfast has : [u'completed'] -got my : [u'money'] -get hold : [u'of'] -recourse to : [u'other'] -has ceased : [u'to'] -got me : [u'through'] -I shan : [u"'"] -fists fiercely : [u'at'] -my Boswell : [u'.'] -pity you : [u'didn'] -our happiness : [u'.'] -work which : [u'was'] -were sharing : [u'rooms'] -never!" : [u'said'] -Then, : [u'how', u'with', u'pray', u'as', u'good', u'when', u'come', u'again', u'suddenly', u'glancing', u'what', u'for', u'after'] -sad news : [u'to'] -only, : [u'as'] -" See : [u'here', u'that'] -silently for : [u'whatever'] -of law : [u'to'] -my double : [u'deduction'] -that three : [u'teeth'] -BE LIABLE : [u'TO'] -I would : [u'call', u'give', u',', u'have', u'not', u'rather', u'go', u'always', u'find', u'do', u'send', u'respond', u'take', u'carry', u'just', u'wish', u'pay', u'leave'] -alone than : [u'from'] -remained when : [u'the'] -breakfast had : [u'been'] -host, : [u'Windigate'] -the Internal : [u'Revenue'] -mining camp : [u'and'] -roused its : [u'snakish'] -with business : [u'matters'] -the clerks : [u'.'] -observant young : [u'lady'] -came. : [u'Same', u'I'] -do this : [u',', u'.'] -came, : [u'but', u'and'] -terror of : [u'the'] -have changed : [u'my', u'his'] -immense scandal : [u'and'] -see everything : [u'.'] -catastrophe has : [u'occurred'] -kindness to : [u'recommence', u'him', u'get', u'go', u'wait'] -trademark as : [u'set'] -entered was : [u'a', u'young'] -goes much : [u'to'] -her veil : [u', "', u'as'] -quite bashful : [u'.'] -Be it : [u'so'] -extreme languor : [u'to'] -servants who : [u'have'] -only five : [u'years'] -are small : [u'lateral'] -an orange : [u'from'] -I pointed : [u'it'] -result when : [u'viewed'] -panel had : [u'closed'] -Be in : [u'your'] -civil practice : [u'),', u'and'] -sat over : [u'a'] -address. ' : [u'May'] -in this : [u'."', u'case', u'object', u'way', u'age', u'fashion', u'mystery', u'cellar', u'note', u'season', u'chair', u'den', u'letter', u'Gladstone', u'manner', u'city', u'little', u'matter', u'wind', u'weather', u'wing', u'room', u'strange', u'crowd', u'new', u'public', u'country', u'direction', u'offhand', u'dim', u'chamber', u'agreement', u'electronic'] -the quinsy : [u'and'] -and carries : [u'a'] -you tell : [u'that', u'him', u'me'] -EBook# : [u'1661'] -aware of : [u'it', u'that'] -past, : [u'and', u'his'] -past. : [u'All', 'PP', u'Man'] -flash a : [u'light'] -All we : [u'wish'] -avoided to : [u'avert'] -year which : [u'is'] -.' It : [u'is', u'was'] -ash, : [u'I'] -A shock : [u'of'] -her from : [u'injuring', u'looking', u'a'] -American. : [u'Then'] -American, : [u'Mr'] -sake, : [u'have', u'don', u'tell', u'what', u'and'] -influence might : [u'be'] -conceal some : [u'of'] -out save : [u'to'] -arrangements, : [u'when'] -arrangements. : ['PP'] -who they : [u'are'] -I thrust : [u'the'] -fire in : [u'his', u'my', u'the'] -in less : [u'than'] -footfalls from : [u'the'] -guilt of : [u'the'] -friend Sherlock : [u'Holmes'] -She smiled : [u'back', u','] -rickety door : [u'and'] -, Holmes : [u'."', u'the', u',"', u',', u'desired', u'still', u'more', u'took', u'sprang'] -attired in : [u'a'] -From under : [u'this'] -his allowance : [u','] -of ancient : [u'and'] -might be : [u'.', u'brought', u'a', u'presented', u'fatal', u'I', u'coming', u'made', u'discovered', u'removed', u'some', u'summoned', u'too', u',', u'worth', u'told', u'which', u'met', u'useful', u'invaluable', u'of', u'caused', u'the', u'loose'] -are getting : [u'100'] -those symptoms : [u'before'] -rushing towards : [u'him'] -of humanity : [u','] -own thoughts : [u'and', u'are'] -matter becomes : [u'even'] -how all : [u'this', u'important'] -come incognito : [u'from'] -hair ends : [u','] -and carried : [u'him'] -echoes of : [u'it'] -this earth : [u'would'] -to retain : [u'the'] -most daring : [u'criminals'] -I. " : [u'There', u'What'] -I. ' : [u'And', u'The'] -a tidy : [u'business'] -been revealed : [u'to'] -best escort : [u'Miss'] -or slippers : [u'on'] -facts upon : [u'which'] -never hope : [u'to'] -must hurry : [u','] -holding my : [u'breath', u'tongue'] -living the : [u'horrible', u'life'] -I urged : [u'young'] -in India : [u'he', u'.'] -clay and : [u'chalk'] -her up : [u'in'] -miss it : [u'."', u'for'] -our locus : [u'standi'] -With my : [u'body'] -himself seems : [u'to'] -, INCLUDING : [u'BUT'] -we will : [u'begin', u'take', u'soon', u'see', u'enter', u'talk', u'set'] -party proceeded : [u'afterwards'] -not obvious : [u'to'] -given her : [u'notice', u'the'] -client could : [u'not'] -clients, : [u'or'] -have avoided : [u'the'] -had nothing : [u'in', u'fit', u'since', u'else', u'a', u'on'] -identified as : [u'Mr', u'her'] -We had : [u'reached', u'occasion', u'the', u'driven', u'pulled', u',', u'no', u'walked', u'hardly'] -his soothing : [u'answers'] -occurred between : [u'the'] -a stream : [u'of', u','] -white wrist : [u'.'] -HEADED LEAGUE : [u':'] -nothing whatever : [u'.', u'about'] -result in : [u'a'] -people. : [u'You', u'I'] -residence is : [u'near'] -headed, " : [u'March'] -which were : [u'trimmed', u'associated', u'whispered', u'new', u'brought', u'upon', u'received', u'reported', u'the', u'sold', u'waddling', u'submitted', u'secured', u'hollowed', u'quite', u'not', u'simply', u'open'] -t all : [u'be'] -, droning : [u'to'] -Up to : [u'a'] -blandly. " : [u'You', u'Pray'] -off through : [u'the'] -kind. : [u'Where', 'PP', u'My', u'I', u'It'] -kind, : [u'Mr', u'good'] -result is : [u','] -laid down : [u'his', u'upon', u'the'] -she sharply : [u". '"] -she; " : [u'and'] -its advantages : [u'and'] -I let : [u'you'] -absurdly simple : [u','] -see by : [u'his', u'the'] -Colony of : [u'Victoria'] -desires to : [u'consult', u'keep'] -tail?' : [u'I'] -a pit : [u".'"] -in Section : [u'4', u'3'] -and such : [u'an', u'a'] -waistcoat pocket : [u'.'] -noble client : [u'?"', u'.'] -Assizes. : [u'Those', 'PP', u'I', u'Horner'] -coming down : [u'with', u'upon'] -Assizes, : [u'so'] -and McFarlane : [u"'"] -was then : [u'much', u'called', u'beginning'] -yet done : [u'what'] -dishonoured man : [u",'"] -, mother : [u'is', u'and'] -, Mary : [u'!', u','] -besides Mr : [u'.'] -coffee. : ['PP'] -coffee, : [u'and', u'for', u'had'] -the altar : [u'.', u'faced', u',', u'."', u'with', u'rails'] -had assisted : [u'the'] -the Black : [u'Swan'] -general shriek : [u'of'] -there and : [u'make', u'annoyance'] -running a : [u'chance', u'tunnel'] -We neither : [u'of'] -Holmes changed : [u'his'] -Clara St : [u'.'] -was absolutely : [u'determined'] -may assist : [u'you'] -me reveal : [u'what'] -not change : [u'all'] -indistinguishable. : [u'Just'] -that side : [u'is', u'.'] -also put : [u'in'] -be solved : [u'in', u'what', u','] -rate that : [u'we'] -a splash : [u'in'] -us put : [u'it', u'their'] -beauty has : [u'guessed'] -heart at : [u'the'] -for drawing : [u'the'] -five o : [u"'"] -you see : [u',', u'my', u'?"', u',"', u'that', u'nothing', u'the', u'K', u'.', u'?', u'a', u'it', u'Miss', u"?'"] -, second : [u'daughter', u'son'] -IX. : [u'The', u'THE'] -inheritance. : [u'You'] -my sins : [u'have'] -Now her : [u'marriage'] -been considered : [u'artistic'] -dog at : [u'you'] -with occasional : [u'little'] -he added : [u','] -My Mary : [u'?'] -old briar : [u'pipe'] -and window : [u','] -good look : [u'at'] -me and : [u'got', u'asked', u'my', u'a', u'making', u'tugged', u'then', u'implore'] -started in : [u'the'] -moonlight, : [u'and'] -The vanishing : [u'of'] -passionately devoted : [u'both'] -fairly well : [u'to'] -fingers. : [u'I', u'"'] -fingers, : [u'and', u'protruded', u'it'] -much afraid : [u'that'] -writing, : [u'and', u'madam'] -writing. : ['PP'] -pounds since : [u'I'] -intimate terms : [u'with'] -hesitation in : [u'bringing'] -required to : [u'prepare'] -years older : [u'than'] -face lengthened : [u'at'] -the compliments : [u'of'] -office he : [u'would'] -rooms being : [u'in'] -back now : [u'from'] -apply for : [u'particulars', u'it', u'."'] -We passed : [u'across', u'up'] -reproach and : [u'contrition'] -from Nature : [u'rather'] -spoken, : [u'but', u'who', u'free'] -already been : [u'made', u'engaged', u'minutely'] -two deaths : [u'in'] -the League : [u'to', u',', u'of', u'has', u'was', u".'"] -newspapers," : [u'he'] -bears out : [u'his'] -hold the : [u'Foundation'] -petulance about : [u'the'] -braced it : [u'up'] -her notice : [u','] -her words : [u'.'] -escaped, : [u'came'] -than twenty : [u','] -fairly to : [u'work'] -I crouched : [u'.'] -but kind : [u'hearted'] -beautiful woman : [u','] -was extremely : [u'dark'] -the great : [u'House', u'kindness', u'claret', u'issues', u'city', u'town', u'goodness', u'financier', u'unobservant', u'cases', u'creases'] -much upon : [u'the'] -work again : [u'.'] -reached Leatherhead : [u'at'] -years been : [u'known'] -married man : [u','] -turned it : [u'every', u'over'] -glass? : [u'Twenty'] -other times : [u','] -up, : [u'I', u'one', u'so', u'and', u'but', u'with', u'for', u'like', u'there', u'Ryder', u'man', u'Watson', u'she', u'though', u'then', u'as', u'his', u'that', u'nonproprietary'] -dragged with : [u'my'] -turning white : [u'to'] -which spoke : [u'her'] -glass, : [u'and'] -seal and : [u'glanced'] -turned in : [u'an'] -t claim : [u'to'] -value," : [u'said'] -smoking and : [u'laughing'] -be freely : [u'distributed', u'shared'] -the Amateur : [u'Mendicant'] -by this : [u'German', u'lady'] -the flowers : [u'.'] -eight years : [u'studied', u'ago'] -Hatherley side : [u'of'] -was beating : [u'and'] -solemn oaths : [u'which'] -, dear : [u'!', u'Mr', u'me', u'?"'] -shall drive : [u'out'] -' Commons : [u','] -DEAREST UNCLE : [u':--'] -Scala, : [u'hum'] -whistles at : [u'night'] -a definite : [u'end'] -asked Bradstreet : [u'as'] -fancier, : [u'and'] -Paris to : [u'morrow'] -of immense : [u'strength'] -the blood : [u'running', u'upon', u'was'] -serious accident : [u'during'] -tiptoes! : [u'Square'] -not ascend : [u'.'] -we drew : [u'up', u'on'] -not listen : [u'to'] -womanhood had : [u','] -We descended : [u'and'] -now let : [u'us'] -fifth. : [u'Now'] -, " life : [u'is'] -are others : [u'besides'] -skill. : [u'I'] -' ball : [u',"', u'you'] -lengthen out : [u'into'] -hideous face : [u'is'] -gallows. : [u'The'] -lived for : [u'seven'] -hurried past : [u'me'] -The invalidity : [u'or'] -in Regent : [u'Street'] -lounged up : [u'the'] -ever believed : [u'it'] -to coming : [u'in'] -could distinguish : [u'the'] -middle one : [u'."'] -the bosom : [u'of'] -answered our : [u'visitor'] -Professor Michael : [u'S'] -he do : [u'then'] -asked, ' : [u'the', u'are'] -asked, " : [u'does', u'formed'] -was fear : [u'of'] -60 days : [u'following'] -It means : [u'that'] -your lips : [u'.'] -been returned : [u'at'] -m in : [u'such'] -would happen : [u'if'] -affairs; : [u'so'] -If so : [u','] -correct can : [u'only'] -or token : [u'before'] -ACTUAL, : [u'DIRECT'] -can be : [u'indicated', u'a', u'no', u'of', u'little', u'served', u'the', u'copied', u'found', u'freely'] -got away : [u'with'] -first yawn : [u'and'] -your deadliest : [u'enemy'] -regained their : [u'fire'] -kindly given : [u'me'] -Can you : [u'not', u'remember', u'suggest'] -chamber in : [u'which'] -waters," : [u'said'] -wet lately : [u','] -beggarman, : [u'Boone'] -chamber is : [u'really'] -meet it : [u'.'] -hurry quickly : [u'through'] -waited until : [u'midnight'] -staircases, : [u'and'] -James off : [u'to'] -you explain : [u'your', u'this'] -importance; : [u'but'] -the copper : [u'beeches'] -newsletter to : [u'hear'] -cuttings. : ['PP'] -you who : [u'are', u'had'] -who agrees : [u'with'] -sworn to : [u'have'] -helper to : [u'everybody'] -, padlocked : [u'at'] -line of : [u'fine', u'doors', u'investigation', u'yellow', u'books', u'tracks'] -has secreted : [u'his'] -, still : [u',', u'looking', u'puffing', u'gesticulating'] -and prosperous : [u'man'] -old woman : [u','] -artificial knee : [u'caps'] -point on : [u'which'] -t command : [u'our'] -logical basis : [u'with'] -I attempt : [u'to'] -point of : [u'view'] -considerably more : [u'value'] -she know : [u'where'] -retort and : [u'a'] -Murdered. : ['PP'] -seen you : [u'for'] -constables at : [u'the'] -And she : [u'will', u'was', u'would'] -and wrapped : [u'cravats'] -Perhaps it : [u'would', u'was'] -facts are : [u'briefly', u',', u'so', u'these', u'quite'] -your sister : [u'dressed', u"'"] -rug and : [u'looking', u'clutched'] -fair personal : [u'advantages'] -keenly down : [u'at'] -take it : [u',', u'amiss', u'that', u'as', u'."', u'into', u'now', u'with'] -wing runs : [u'the'] -died. : ['PP'] -died, : [u'and'] -the Bar : [u'of'] -been obliged : [u'to'] -MR. : [u'SHERLOCK', u'HOLMES'] -take in : [u'the'] -closed, : [u'and'] -ready, : [u'we'] -ready. : [u'He', u'Come', u'I', 'PP'] -wooded round : [u','] -are spies : [u'in'] -droning to : [u'himself'] -waited for : [u'him'] -new discovery : [u'furnishes'] -nerve to : [u'lie'] -as your : [u'advertisement', u'geese', u'life'] -man was : [u'much', u'instantly', u'heard', u'highly', u'intellectual', u'either'] -Here I : [u'had'] -rearing of : [u'a'] -the weighted : [u'coat'] -that also : [u'may'] -coat and : [u'umbrella', u'waistcoat'] -as would : [u'be', u'occur'] -days," : [u'said'] -engage in : [u'an'] -not sit : [u'gossiping'] -brow so : [u'dark'] -master had : [u'not', u'cut', u'gone'] -slip and : [u'here'] -rather an : [u'early'] -is to : [u'know', u'occur', u'its', u'be', u'say', u'a', u'the', u'bring', u'remove', u'clear', u'do', u'him', u'reason', u'recompense', u'examine', u'blame', u'see', u'that', u'keep'] -room you : [u'and'] -purse,' : [u'said'] -All over : [u'the'] -, reopening : [u'by'] -best quality : [u'.'] -no use : [u'your', u',', u'denying', u'to'] -the pleasure : [u'of'] -I jumped : [u'in', u'from'] -has she : [u'been', u'ever'] -have noticed : [u','] -I usually : [u'leave'] -been until : [u'lately'] -guineas, : [u'and'] -been done : [u'in', u'to', u',"'] -by no : [u'means'] -Turner," : [u'said', u'cried'] -completed by : [u'a'] -iota from : [u'your'] -a whistle : [u'. "'] -raised my : [u'voice'] -!' I : [u'yelled', u'answered', u'cried', u'screamed', u'shouted', u'roared', u'soon', u'panted'] -shown your : [u'relish'] -it helps : [u'us'] -him who : [u'Mr', u'taketh'] -double deduction : [u'that'] -landau which : [u'rattled'] -friends and : [u'relatives', u'exchanging'] -five miles : [u'through', u'on', u'of'] -the disagreeable : [u'persistence'] -against me : [u','] -highway robber : [u'.'] -the servant : [u'and'] -I could : [u'not', u'easily', u'desire', u'catch', u'see', u'fathom', u'tell', u'distinguish', u'look', u'think', u'do', u'hardly', u'only', u'plainly', u'produce', u'but', u'suffer', u'manage', u'get', u'earn', u'every', u'be', u'possibly', u'beat', u'never', u'gather', u',', u'make', u'feel', u'run', u'lay', u'even', u'at', u'ask', u'to', u'ha', u'learn'] -came he : [u'made'] -heavy, : [u'like', u'regular'] -richness which : [u'would'] -not observe : [u'.'] -been difficult : [u','] -card, : [u'but', u'too'] -than coffee : [u'colour'] -Sections 3 : [u'and'] -returned Holmes : [u',', u', "'] -pulled on : [u'those'] -Roylott," : [u'remarked'] -is enough : [u'to', u'."'] -. Twice : [u'burglars', u'she', u'he', u'my', u'since'] -in paragraphs : [u'1'] -does that : [u'bell'] -he plunged : [u'forward', u'at'] -into Winchester : [u'this'] -done him : [u'.'] -allusion to : [u'a', u'claim'] -volunteers associated : [u'with'] -coldly in : [u'a'] -piece of : [u'white', u'discoloured', u'paper', u'chaff', u'evidence', u'jewellery', u'gold', u'the'] -! Kindly : [u'turn'] -twisted himself : [u'round'] -possess all : [u'knowledge'] -saw a : [u'large', u'tall', u'little', u'sudden', u'thin', u'more', u'gigantic', u'shadow'] -by Sherlock : [u'Holmes'] -of thick : [u','] -matches and : [u'the', u'muttering'] -the Foundation : [u'(', u'"', u'as', u',', u'web', u"'"] -a place : [u'without', u'whence', u'and'] -going through : [u'the', u'all'] -her I : [u'could', u'cannot'] -The Duke : [u','] -nothing was : [u'to'] -paint in : [u'the'] -very fashionable : [u'epistle'] -behind into : [u'the'] -to gather : [u'about'] -just treat : [u'myself'] -hideous outcry : [u'behind'] -warned against : [u'you'] -saw I : [u'was'] -sure, : [u'excuse', u'was', u'forgive', u'make', u'Mr', u'wish', u'left', u'dad'] -sure. : ['PP'] -went her : [u'way'] -goose upon : [u'the'] -was; : [u'but'] -A and : [u'B'] -forts upon : [u'Portsdown'] -some details : [u'as'] -was? : [u'Would', u'Was'] -me over : [u'in', u'my', u'his'] -be fortunate : [u'enough'] -gained publicity : [u'through'] -They must : [u'be', u'have'] -? Where : [u'were'] -s have : [u'it'] -warning sent : [u'to'] -slight indication : [u'of'] -was, : [u'I', u'of', u'by', u'sitting', u'as', u'he', u'indeed', u'in', u'who', u'such', u'and', u'that'] -was. : ['PP', u'He', u'Even', u'Then', u'I', u'Mark', u'She', u'It'] -was! : [u'I'] -upstairs there : [u'was'] -' camp : [u'had'] -when summoned : [u'.'] -leg, : [u'wears', u'and'] -when suddenly : [u'there'] -leg. : [u'I', 'PP'] -Gordon Square : [u',', u';'] -papers?" : [u'asked'] -until it : [u'became', u'becomes', u'is'] -one direction : [u'and'] -have spun : [u'the'] -share of : [u'that'] -vex us : [u'with'] -den my : [u'life'] -my neighbours : [u',', u'.'] -is spattered : [u'with'] -as Mrs : [u'.'] -and urgent : [u'one'] -first sight : [u'appear', u'seems'] -result for : [u'C'] -a succession : [u'of'] -gates which : [u'closed'] -fly from : [u'the'] -, saw : [u'that', u'the'] -the year : [u'1858', u'1878', u'1869', u"'", u',"', u'after'] -an amiable : [u'and'] -some evidence : [u'implicating'] -of expectancy : [u','] -let them : [u'go'] -you alternately : [u'give'] -fascination of : [u'his'] -, sad : [u'faced'] -cleared along : [u'those'] -threat and : [u'its'] -scream, : [u'fell'] -tinker' : [u's'] -atone for : [u'it'] -put forward : [u'with'] -clay pipe : [u'thrusting', u',', u', "'] -high power : [u'lenses'] -Star" : [u'of'] -What' : [u's'] -ordinary clothes : [u'on'] -What! : [u'where', u'You', u'a', u'Had'] -steps did : [u'you'] -What. : ['PP'] -these he : [u'rummaged', u'took', u'constructed'] -What, : [u'the', u'then', u'sir', u'you'] -fled from : [u'the'] -degraded what : [u'should'] -swiftly from : [u'the'] -Angel. : ['PP', u'About'] -heart had : [u'turned'] -Angel, : [u'save', u'and'] -Angel' : [u's', u'at'] -Angel? : [u'Did'] -little girl : [u'whose'] -surely he : [u'restored'] -thing come : [u'from'] -the distant : [u'parsonage'] -half buttoned : [u','] -difficulties, : [u'if'] -difficulties. : ['PP', u'No'] -not mere : [u'curiosity'] -it once : [u'became', u'more'] -the suggestiveness : [u'of'] -there lies : [u'the', u'your'] -her throat : [u'and'] -When it : [u'was'] -breaking up : [u'of'] -of passion : [u'and'] -in here : [u'?"', u"!'"] -the moist : [u'earth'] -is alone : [u'than'] -up which : [u'might'] -particularly malignant : [u'boot'] -a brickish : [u'red'] -shall stand : [u'behind'] -coming in : [u'only', u'gushes', u'.'] -coming forward : [u','] -data yet : [u'.'] -seemed! : [u'From'] -pavement opposite : [u'there'] -submit to : [u'me'] -the goodwill : [u'and'] -to cover : [u'my'] -crumpled morning : [u'papers'] -a best : [u'man'] -saved the : [u'bridegroom'] -as great : [u'a'] -realistic effect : [u',"'] -the hearty : [u','] -comes in : [u'person'] -his fate : [u',', u'.', u'as', u'while'] -, their : [u'conversation', u'efforts', u'united'] -do which : [u'will', u'I'] -Lord that : [u'I'] -traces in : [u'a', u'the'] -. Never : [u'trust', u'let'] -Peterson!" : [u'said'] -better at : [u'last'] -looking as : [u'merry'] -looking at : [u'her', u'himself', u'it', u'the', u'me'] -day did : [u'he'] -for which : [u'he', u'this', u'I', u'it'] -of air : [u'.'] -five inches : [u','] -rose in : [u'his'] -t, : [u'from'] -as some : [u'city'] -dashed her : [u'to'] -his art : [u'than'] -without opening : [u'his'] -thousand pounds : [u'!'] -it give : [u'a'] -upon Neville : [u'St'] -The best : [u'possible'] -To smoke : [u',"'] -listened. : [u'Let', 'PP', u'It', u'I'] -treat of : [u'crime'] -about young : [u'McCarthy'] -the occupant : [u','] -sharp frost : [u'had'] -with yellow : [u','] -purveyor to : [u'the'] -telegram. : [u'It'] -and stalked : [u'out'] -men; : [u'so'] -drifted us : [u'away'] -sometimes losing : [u','] -men, : [u'who', u'so', u'one', u'and'] -men. : [u'Rather', u'Be', u'This', 'PP', u'When'] -has happened : [u'since', u'to', u'."'] -I fully : [u'share'] -them. : [u'They', u'Getting', 'PP', u'Of', u'It', u'The', u'I', u'He', u'Having', u'A', u'Then', u'There', u'Which', u'But', u'Mr'] -men' : [u's'] -With this : [u'intention'] -so familiar : [u'to'] -Winchester. : [u'It', u'"\'', u'Let'] -worked up : [u'to'] -Winchester, : [u'I', u'as'] -fulfil the : [u'ultimate'] -sweet of : [u'you'] -path between : [u'two'] -LIMITED RIGHT : [u'OF'] -she fattened : [u'fowls'] -Hunter screamed : [u'and'] -that your : [u'assistant', u'refusal', u'circulation', u'hat', u'experience', u'breakfast', u'son', u'circle', u'little', u'pains', u'interests', u'good'] -goose we : [u'retained'] -considerations in : [u'the'] -only some : [u'three'] -strong smell : [u'of'] -, transcription : [u'errors'] -box there : [u','] -furtive and : [u'sly'] -quest. : ['PP'] -as my : [u'business', u'finger', u'feet', u'sister', u'friend', u'security', u'daughter', u'companion', u'fears'] -traced, : [u'and'] -a loathsome : [u'serpent'] -house last : [u'night'] -have chosen : [u'to'] -adventure. : ['PP', u'Upper', u'Sherlock'] -adventure, : [u'and'] -lighting. : [u'Your'] -revolved slowly : [u'upon'] -dejected; : [u'but'] -, which : [u'I', u'must', u'had', u'he', u'made', u'was', u'is', u'are', u'ended', u'terminated', u'felt', u'looked', u'to', u',', u'mother', u'wasn', u'happened', u'seemed', u'will', u'should', u'would', u'both', u'caused', u'contained', u'my', u'chanced', u'pattered', u'lay', u'no', u'showed', u'could', u'widened', u'branches', u'she', u'present', u'has', u'shows', u'can', u'improved', u'shone', u'makes', u'might', u'enabled', u'wander', u'were', u'at', u'told', u'boomed', u'vanished', u'of', u'it', u'allowed', u'broadened', u'proved', u'may', u'gave', u'interests', u'led', u'appeared', u'set', u'curves', u'struck', u'turned'] -business has : [u'not', u'had'] -official inquiry : [u'came'] -improbabilities the : [u'whole'] -suit them : [u'better', u'.'] -determined is : [u'whether'] -quitted. : ['PP'] -was alone : [u'once'] -no beryls : [u'in'] -happy couple : [u'.'] -paper could : [u'not'] -heavier in : [u'breath'] -point." : [u'He'] -ladies. : ['PP'] -A clump : [u'of'] -grass beside : [u'the'] -Foundation was : [u'created'] -Court, : [u'Fleet'] -Court. : ['PP'] -threw open : [u'the', u'a'] -heels of : [u'another'] -open that : [u'door'] -shabbily dressed : [u'men'] -could so : [u'readily'] -opium den : [u'in', u',', u'when'] -looking earnestly : [u'up'] -someone had : [u'passed', u'brought'] -the window : [u'. "', u',', u'.', u'and', u'we', u'is', u'so', u'he', u'not', u'when', u'open', u'or', u'of', u'?"', u'at', u'which', u'rapidly', u';'] -Holmes moved : [u'the'] -convinced himself : [u'that'] -your rubber : [u'after'] -a shorter : [u'walk'] -ladies' : [u'fancies'] -Kate poor : [u'little'] -money. : ['PP', u'If', u'He', u'I', u'But', u'When'] -half their : [u'salary'] -money, : [u'and', u'or', u'to', u'houses', u'but', u'for', u'Mr'] -good drive : [u'in', u'."'] -hypertext form : [u'.'] -be compelled : [u'to'] -as pestered : [u'as'] -even greater : [u'perils'] -smoke curled : [u'through'] -The gentleman : [u'I', u','] -have royal : [u'blood'] -an office : [u'in'] -he hugged : [u'his'] -came like : [u'a'] -that away : [u'down'] -the dignity : [u'of'] -hundred before : [u'her'] -you bet : [u','] -for dead : [u'.', u'and'] -He laughed : [u',', u'until', u'very'] -a bad : [u'fellow'] -and shaken : [u'than'] -among the : [u'most', u'crowd', u'reeds', u'moss', u'attics', u'others', u'dregs', u'ruffians', u'trees', u'richest', u'crash', u'heads', u'officials', u'bushes', u'rose', u'killed', u'Apaches', u'number', u'neighbours'] -the wandering : [u'gipsies'] -send me : [u'on'] -looks as : [u'if'] -now here : [u'is'] -true to : [u'him', u'Hosmer', u'me'] -looks at : [u'me'] -. " I : [u'think', u'told', u'have', u'am', u'know', u'thought', u'really', u'fancy', u'can', u'met', u'found', u'cannot', u'let', u'knew', u'do', u'find', u'wired', u'shall', u'pray', u'trust', u'say', u'confess', u'wish', u'had', u'would', u'suppose', u'daresay', u'will', u'started', u'regret', u'believe', u'may', u'should', u'feel', u'only'] -this prisoner : [u'is'] -half afraid : [u'that'] -held, : [u'that'] -. " A : [u'nice', u'thousand'] -these details : [u','] -are briefly : [u'these'] -have so : [u'homely', u'far'] -Peterson that : [u'he'] -angry, : [u'and', u'Robert', u'for'] -is in : [u'a', u'need', u'contemplation', u'many', u'New', u'serious', u'command', u'Fresno', u'perfectly', u'terrible', u'itself', u'the', u'your', u'no', u'their'] -by Apache : [u'Indians'] -shadow pass : [u'over', u'backward'] -" DEAR : [u'MR'] -is it : [u'?"', u'you', u',', u'possible', u'."', u'?', u'.', u'not', u'on'] -secreted his : [u'stethoscope'] -A considerable : [u'crime'] -this part : [u'of'] -foresight now : [u'than'] -and jolted : [u'terribly'] -sure about : [u'this'] -of more : [u'interest'] -crouched. : [u'Holmes'] -To Sherlock : [u'Holmes'] -my slippers : [u'before'] -energy in : [u'action'] -light. : ['PP', u'And', u'For', u'He', u'Now'] -slipped out : [u',', u'of'] -stiff, : [u'for'] -stiff. : ['PP'] -riveted, : [u'and'] -Turner made : [u'his'] -flashed upon : [u'the'] -facts slowly : [u'evolve'] -but Spaulding : [u'would'] -a decided : [u'draught'] -lived at : [u'Horsham'] -said, : [u'taking', u'there', u'"', u'what', u'raising', u'extremely', u'Mr', u'very', u'and', u'rubbing', u'but', u'beautifully'] -from coming : [u'up'] -said. : ['PP', u'He'] -I picked : [u'up', u'myself'] -dummy," : [u'said'] -on hand : [u',', u'just', u'and'] -his reverie : [u'.'] -' fears : [u'came'] -, pasty : [u'face'] -walk that : [u'we'] -the bottom : [u'.', u'of', u".'", u'."', u'my'] -and prolonged : [u'scene'] -three legged : [u'wooden'] -probably result : [u'in'] -Which are : [u'?"'] -he bent : [u'her'] -sullenly with : [u'his'] -fate as : [u'Openshaw'] -people are : [u'improved'] -passed since : [u'then'] -would go : [u'from', u';', u'if', u'for', u",'", u'.', u'and'] -so vague : [u',', u'that'] -two points : [u'in', u'.', u'about'] -On examination : [u'traces'] -alas! : [u'it'] -which; : [u'but'] -attempted, : [u'when'] -which. : [u'They'] -which, : [u'you', u'by', u'of', u'granting', u'even', u'when', u'as', u'sir', u'on', u'also'] -' having : [u'been'] -are ready : [u','] -?" For : [u'answer'] -locus standi : [u'now'] -4 1 : [u'/'] -calf, : [u'tawny'] -story linked : [u'on'] -to London : [u'by', u', "', u','] -pull there : [u'.'] -whole success : [u'of'] -a cascade : [u'of'] -the permission : [u'of'] -perceive upon : [u'the'] -something which : [u'I', u'took', u'drove', u'brought'] -manner to : [u'something'] -being Saturday : [u'rather'] -Holmes from : [u'within'] -of St : [u'.'] -of Scotland : [u'Yard'] -clothes off : [u'and'] -is fairly : [u'clear'] -a really : [u'hard'] -Do you : [u'note', u'mean', u'not', u'understand', u'think', u'know', u'feel', u'promise', u'receive', u'go', u'tell', u'desire', u'see'] -little green : [u'scummed'] -step, : [u'which'] -have bordered : [u'on'] -you tales : [u'of'] -partner in : [u'the'] -employer, : [u'who', u'laughing'] -then quick : [u'steps'] -a delight : [u'at'] -complex. : [u'Consider'] -Cocksure," : [u'said'] -palm of : [u'my', u'his', u'the', u'your'] -Lord, : [u'Mr'] -yet if : [u'it'] -would disqualify : [u'them'] -clay." : [u'And'] -went then : [u','] -the murdering : [u'and'] -bright red : [u'hair'] -these newcomers : [u'our'] -business met : [u'with'] -candidate as : [u'he'] -The lining : [u'had'] -outstanding bones : [u'.'] -a glimpse : [u'of'] -opinion! : [u'Come'] -New Zealand : [u'stock'] -drowned my : [u'cries'] -opinion. : ['PP', u'We', u'I'] -instructions to : [u'apply'] -opinion, : [u'though', u'and'] -rushing to : [u'my', u'the'] -my cry : [u'he'] -construction of : [u'the'] -an absolutely : [u'innocent', u'quiet', u'desperate'] -collection. : [u'Despite'] -Breckinridge is : [u'his'] -me the : [u'advertisement', u'address', u'whole', u'advertised', u'books', u'honour', u'impression', u'results', u'flowers', u'story'] -or appearing : [u'on'] -passed down : [u'a', u'the'] -for she : [u'would', u'had', u'slowly', u'has'] -up so : [u'early', u'nicely'] -the Roylotts : [u'of'] -coming here : [u',"'] -increased by : [u'the'] -whose eccentric : [u'conduct'] -official agent : [u'.'] -gesticulating, : [u'but'] -word all : [u'over'] -the fanciful : [u'resemblance'] -his huge : [u'brown', u'form'] -motive was : [u'?"'] -which aroused : [u'your'] -left, : [u'you'] -crinkled with : [u'anger'] -left. : [u'You', 'PP', u'He', u'Turning'] -withdraw quietly : [u'with'] -geese which : [u'you', u'were'] -with despair : [u'in'] -manner that : [u'it', u'he'] -positive virtue : [u'.'] -managed by : [u'Miss'] -the mystery : [u'!"', u'?"', u'and', u'may', u'clears', u'."', u'of'] -, instantly : [u'gave', u'put'] -loosened, : [u'and'] -as little : [u'regard', u'of'] -vice in : [u'him'] -small lake : [u'formed'] -forever! : [u'Where'] -first two : [u'with'] -bureau of : [u'my'] -forever. : [u'The', u'She', u'These', u'Do'] -upon young : [u'McCarthy'] -unnoticed, : [u'Watson'] -good purpose : [u'can'] -hard to : [u'think', u'say', u'tackle', u'resist'] -in company : [u'with'] -to reaching : [u'Project'] -second morning : [u'after'] -as trifles : [u'.'] -took five : [u'and'] -opening for : [u'the', u'you'] -pounds a : [u'week', u'year', u'month', u'quarter'] -bow to : [u'the'] -focus of : [u'crime'] -serpent. : ['PP'] -jumping a : [u'claim'] -, copied : [u'or'] -assurance while : [u'Holmes'] -dress which : [u'we', u'I'] -of poor : [u'Mary'] -roofed, : [u'with'] -books of : [u'reference'] -to unseat : [u'my'] -" Murdered : [u'?"'] -arms round : [u'her', u'him'] -that threaten : [u'you'] -several singular : [u'points'] -details have : [u'drawn'] -the confidence : [u'which'] -be laughed : [u'at'] -creature against : [u'whom'] -eight o : [u"'"] -in different : [u'directions', u'parts'] -fresh rashers : [u'and'] -fastened like : [u'that'] -badge of : [u'a'] -monogram, : [u'rather'] -submit it : [u'to'] -ever I : [u'thought', u'had'] -went off : [u'to'] -The inspector : [u'and', u'sat'] -clever, : [u'but'] -any others : [u'that'] -his former : [u'ways'] -lay. : [u'That'] -and land : [u'on'] -rose to : [u'go', u'be', u'leave', u'put', u'greet'] -time later : [u','] -, pointing : [u'to', u'at'] -promising him : [u'that'] -some parts : [u','] -, proves : [u'nothing'] -departure, : [u'and', u'to'] -scattered houses : [u','] -tear about : [u'the'] -for nearly : [u'any'] -a quartering : [u'of'] -me laughing : [u'just'] -he gives : [u'no'] -, receipts : [u','] -the oldest : [u'Saxon'] -. INDEMNITY : [u'-'] -too well : [u'to'] -person you : [u'received'] -brute, : [u'its'] -Miss Flora : [u'Millar'] -thickness. : [u'But'] -by special : [u'license'] -singular sight : [u'which'] -of thumb : [u'nails'] -much paperwork : [u'and'] -right. : ['PP', u'Now', u'Oh', u'James', u'But', u'When', u'It', u'He'] -any misfortune : [u'should'] -hall, : [u'looking', u'so', u'which'] -away from : [u'each', u'the', u'home', u'himself', u'you', u'here', u'death', u'her', u'this', u'me'] -says four : [u'o'] -whence it : [u'had', u'will'] -am prepared : [u'to'] -sobbing, : [u'with'] -itself implies : [u','] -to fill : [u'a', u'the'] -site of : [u'the'] -the lustrous : [u'black'] -the case : [u'of', u'and', u'in', u'for', u'?"', u'to', u'as', u'looks', u'depends', u'.', u',', u'before', u'clearly', u'from', u'has', u'complete', u'must', u';', u'with', u'was', u'into', u'."', u'backward', u'is'] -so dreadful : [u'to'] -Artillery. : [u'My'] -in he : [u'gave'] -bent his : [u'head', u'strength'] -Patience Moran : [u','] -grew higher : [u'and'] -suavely. " : [u'There'] -this piece : [u'of'] -though the : [u'matter', u'boots', u'weight', u'sensation', u'future', u'smell', u'floor'] -purely animal : [u'lust'] -Bristol. : ['PP', u'It'] -Bristol, : [u'and'] -need cause : [u'you'] -woodcock, : [u'I', u'a'] -a house : [u'in', u','] -The landlady : [u'informed'] -our return : [u'to'] -blood enough : [u'to'] -the curtain : [u'near', u'.'] -. B : [u".'", u'."', u'. "'] -BREACH OF : [u'WARRANTY', u'CONTRACT'] -was bright : [u','] -the draught : [u".'"] -"), you : [u'agree'] -Holmes severely : [u'. "'] -patience.-- : [u'NEVILLE'] -coincident with : [u'the'] -trivial in : [u'themselves'] -crystallised charcoal : [u'.'] -Holmes glanced : [u'sharply'] -cannot do : [u'that'] -after he : [u'had'] -the bowls : [u'of'] -receipt upon : [u'a'] -unseat my : [u'reason'] -The woman : [u'was'] -of glasses : [u'on'] -standing smiling : [u'on'] -facts might : [u'be'] -friend insisted : [u'upon'] -benefactor. : [u'Are'] -partner with : [u'his'] -wish it : [u'."'] -cadaverous face : [u'of'] -his son : [u',', u"'", u'was', u'had', u'to', u'only', u';'] -Vanilla ASCII : [u'"'] -replace it : [u','] -lay another : [u'dull'] -are interesting : [u'ourselves'] -ignorant of : [u'his'] -it won : [u"'"] -to starting : [u'for'] -is ever : [u'a', u'ready', u'so'] -was twenty : [u'five', u'before'] -and being : [u'satisfied', u'fortunate'] -been remarked : [u'upon'] -be relevant : [u'or'] -word became : [u'what'] -secret marriage : [u'?"'] -explained the : [u'matter', u'presence', u'American'] -grabs at : [u'her'] -cleanly smell : [u'of'] -Boots had : [u'worn', u'faced', u'then'] -Pooh, : [u'pooh'] -of Clark : [u'Russell'] -explore the : [u'parts'] -because such : [u'surprise'] -of Lady : [u'St'] -my little : [u'difficulties', u'problems', u'den', u'Mary'] -all round : [u'with', u',', u'the', u'are'] -German music : [u'on'] -fresh heart : [u'at'] -mask from : [u'his'] -newly opened : [u'envelope'] -tea. : ['PP'] -the colonies : [u',', u'in'] -, sighing : [u'note'] -My wants : [u'were'] -settee," : [u'said'] -separated, : [u'he'] -he ever : [u'spoken', u'showed'] -put yourself : [u'out'] -with Boscombe : [u'Valley'] -to indicate : [u'some'] -say and : [u'for'] -, be : [u'looked', u'something', u'the', u'an', u'a', u'incapable'] -Wight. : ['PP'] -which fringed : [u'the'] -cellar something : [u'which'] -s wrist : [u','] -, by : [u'Arthur', u'the', u'my', u'winding', u'man', u'whom', u'rare', u'Mrs', u'its', u'a', u'which', u'him', u'his', u'Mr', u'telling', u'special', u'using'] -apparent surprise : [u'at'] -s perplexity : [u'."'] -A short : [u'railway'] -, " where : [u"'"] -most absolute : [u'fools'] -ghastly face : [u'and'] -injunction as : [u'to'] -as every : [u'fresh'] -pay day : [u';'] -the plain : [u'clothes'] -remarked with : [u'some'] -and free : [u','] -22nd inst : [u'.,'] -a guilty : [u'one'] -her child : [u'which'] -whim. : [u'Heh'] -steps which : [u'lead', u'he', u'led', u'I'] -) agreement : [u'.'] -to employ : [u'.'] -latter days : [u'of'] -and ascertaining : [u'what'] -high tide : [u'with'] -not had : [u'my', u'very'] -buzzing in : [u'my'] -swamp adder : [u'!"'] -whence she : [u'had'] -to fail : [u','] -carpet, : [u'a'] -thank you : [u'or', u',"', u','] -hundred year : [u'old'] -., U : [u'.'] -? Might : [u'not'] -sprang forward : [u'and'] -and dates : [u','] -massive, : [u'strongly'] -bushes made : [u'a'] -run away : [u'and'] -profession is : [u'its'] -little villages : [u'up'] -nothing by : [u'them'] -brown volume : [u'from'] -and Florida : [u'.'] -tickets. : ['PP'] -arm' : [u's'] -pretty little : [u'problem', u'country'] -nearly five : [u'now'] -sister is : [u'dead'] -a loop : [u'of'] -why it : [u'should'] -overpowering terror : [u'?'] -disappearing bridegroom : [u'of'] -malignant boot : [u'slitting'] -finished his : [u'speech'] -be gained : [u'out'] -mental results : [u'.'] -nothing about : [u'it'] -only Carlo : [u','] -why in : [u'hopes'] -I took : [u'the', u'a', u'up', u'two', u'advantage', u'my', u'out', u'in', u'it', u'to', u'next'] -little in : [u'the'] -But this : [u'time', u'one', u'maid'] -, ' the : [u'objection', u'gentleman', u'same'] -swash of : [u'the'] -my patron : [u'had'] -carriage go : [u'up'] -of addressing : [u'Miss'] -any point : [u'which'] -. " Besides : [u','] -He turned : [u'and'] -country in : [u'Bohemia', u'addition'] -the other : [u'of', u',', u'side', u'day', u'answered', u'block', u'was', u'rogue', u'woman', u'clerks', u'a', u'at', u'is', u'.', u'hand', u'one', u'papers', u'ones', u'little', u'clothes', u'garments', u'led', u'characteristics', u'things', u'end', u'way', u'from', u'unusually', u'."', u'that', u'thirty', u'had', u'with'] -his time : [u'he', u'of', u'in'] -, geology : [u'profound'] -placed a : [u'pillow'] -value, : [u'but', u'you'] -driving back : [u'to'] -His cry : [u'brought'] -believe, : [u'been', u'Mr', u'however'] -The money : [u'which'] -believe. : [u'By'] -him throw : [u'his'] -country is : [u'England', u'more'] -keeping this : [u'work'] -of arrest : [u'?"'] -than an : [u'obvious', u'accessory', u'hour'] -foreseen conclusions : [u'most'] -ancient and : [u'cobwebby'] -repeated visits : [u'?'] -chamois leather : [u'bag'] -unfortunate that : [u'you'] -the folly : [u'of'] -the gentle : [u'breathing'] -blood. : [u'On'] -his trap : [u'in'] -blood, : [u'far'] -for here : [u','] -at mankind : [u'through'] -sign a : [u'paper'] -him to : [u'be', u'hospital', u'put', u'step', u'do', u'fail', u'night', u'say', u'receive', u'come', u'day', u'throw', u'prevent', u'drop', u'see', u'his', u'gaol', u'take', u'a', u'forgo', u'the', u'pay', u'my', u'remember', u'go'] -that Colonel : [u'Openshaw'] -this wound : [u'of'] -imagination. : ['PP'] -the fancies : [u'of'] -the wisp : [u','] -sister was : [u'troubled', u'quite'] -great city : [u',', u'.'] -carried his : [u'victim'] -; " my : [u'eyes'] -butted until : [u'he'] -the household : [u'who'] -Your Majesty : [u'had', u',', u'has', u'must', u'will'] -much ado : [u'to'] -small expense : [u'over'] -I come : [u". '", u'back', u'to'] -American Encyclopaedia : [u"'"] -to tear : [u'off'] -had crossed : [u'the', u'them'] -her using : [u'it'] -carpet in : [u'the'] -I rose : [u'to', u',', u'from'] -scent, : [u'and', u'so'] -scent. : [u'The', u'I'] -with them : [u'.', u',', u'sometimes', u'he'] -red heads : [u'as'] -sequel was : [u'rather'] -I only : [u'caught', u'keep', u'wished', u'quote', u'trust', u'wish', u'wonder', u'doubt', u'looked', u'hope'] -into talk : [u'about'] -distinct proof : [u'of'] -benefactor to : [u'him'] -cold blood : [u','] -40 pounds : [u'?'] -Grosvenor Mansions : [u','] -They always : [u'fill'] -, " the : [u'thing', u'more', u'very'] -playing this : [u'prank'] -newspaper selections : [u'."'] -box stood : [u'open'] -about fowls : [u'than'] -room cupboard : [u".'"] -look it : [u'over', u'up'] -his bag : [u'as'] -a ladder : [u'should'] -I observe : [u'.', u'that', u'the'] -are over : [u','] -in just : [u'now'] -have led : [u'retired', u'a'] -well that : [u'he', u'we', u'it', u'the'] -Papier.' : [u'Now'] -does the : [u'idiot', u'thing', u'smiling'] -sallow skinned : [u','] -must pay : [u'.'] -its methods : [u','] -his heavy : [u'hunting', u'breathing', u'weapon'] -parlance means : [u'taking'] -His slow : [u','] -have let : [u'the'] -Watson that : [u'though'] -was last : [u'Friday'] -shot him : [u'then'] -several miles : [u','] -their license : [u','] -would see : [u'to', u'no', u'it', u'that'] -so small : [u'that'] -no importance : [u'.', u';'] -Adler photograph : [u';'] -tiger cub : [u','] -. Fowler : [u'at', u'."', u'being', u'was', u'and'] -record, : [u'even'] -the thing : [u'always', u'which', u'very', u'clear', u'come', u'up', u'."', u'obtruded'] -been chewing : [u'tobacco'] -an intellectual : [u'problem'] -narrow wing : [u'runs'] -very interesting : [u'statement', u'study', u'.'] -gaiters over : [u'elastic'] -windows reaching : [u'down'] -his asking : [u'to'] -cigars, : [u'and', u'uses'] -this extraordinary : [u'league', u'narrative', u'mystery', u'performance', u'story'] -now out : [u'of'] -Depend upon : [u'it'] -do from : [u'fifteen'] -whipcord in : [u'his'] -legal sense : [u','] -hence it : [u'is'] -in Auckland : [u'.'] -profound as : [u'regards'] -tapping of : [u'Sherlock'] -communication between : [u'them', u'the'] -wife laid : [u'her'] -certainly do : [u'as', u'so'] -My niece : [u','] -frightened,' : [u'said'] -and there : [u'was', u'is', u'he', u'are', u'were', u'it', u"'", u'they', u'can', u'a', u',', u'through', u'has', u'your', u'would', u'seemed', u'reared', u'isn', u'never', u'I', u'we', u'may'] -experience of : [u'camp', u'such', u'my', u'Miss'] -boxed the : [u'compass'] -record before : [u','] -"' Ku : [u'Klux'] -to affect : [u'the', u'your'] -tell Mrs : [u'.'] -sudden pluck : [u'at'] -reasons to : [u'believe', u'know'] -which they : [u'have', u'had', u'may'] -is absurd : [u'to'] -round to : [u'me', u'my', u'the', u'him', u'us', u'his', u'you'] -to embellish : [u'so', u','] -? Have : [u'you', u'just'] -fully dressed : [u'.', u','] -not mine : [u'be'] -not mind : [u'you'] -as their : [u'letter', u'master'] -relics of : [u'my'] -anything about : [u'it'] -for repairs : [u'at'] -For thirty : [u'years'] -greatest interest : [u'to'] -same innocent : [u'category'] -planted halfway : [u'down'] -honeymoon would : [u'be'] -the phrase : [u'"'] -Place, : [u'Camberwell'] -? Your : [u'salary'] -over his : [u'shoulders', u'high', u'shoulder', u'eyes', u'head', u'parched', u'grounds', u'outstanding', u'forehead', u'brow', u'business', u'throat', u'face'] -Architecture and : [u'Attica'] -to stand : [u'erect'] -and general : [u'look'] -nothing from : [u'me'] -continually from : [u'the', u'a', u'one'] -. unless : [u'a'] -disguise. : [u'In', u'But'] -disguise, : [u'as'] -web they : [u'may'] -explain afterwards : [u'.'] -spend more : [u'money'] -guardsmen, : [u'who'] -one for : [u'your', u'Christmas', u'you', u'us'] -a Roylott : [u'of'] -the sign : [u'when', u'to'] -caltrops in : [u'chief'] -' Company : [u".'"] -and laughing : [u'in'] -see out : [u'of'] -lay between : [u'that'] -you?" : [u'A', u'screamed', u'said', u'As'] -Windibank sprang : [u'out'] -you?' : [u'he'] -are more : [u'developed', u'vacancies'] -Horner some : [u'little'] -.' Vincent : [u'Spaulding'] -grain weight : [u'of'] -Wilson!' : [u'said'] -battered hat : [u'and'] -wish to : [u'make', u'the', u'lose', u'lay', u'be', u'do', u'see', u'spare', u'speak', u'hear', u'have', u'know', u'follow', u'determine', u'commit', u'go', u'."', u'charge'] -crumpled envelope : [u','] -slide across : [u'the'] -as science : [u'lost'] -need for : [u'father', u'repairs'] -representative both : [u'with'] -she extended : [u'to'] -so terrible : [u'is'] -, bile : [u'shot'] -stranger with : [u'deference'] -her return : [u'by'] -small street : [u'in'] -cultured face : [u','] -rough surface : [u'.'] -, none : [u'would'] -and talked : [u'to', u'with'] -sooner out : [u'of'] -of cheating : [u'at'] -vehicle save : [u'a'] -a speckled : [u'band'] -copy upon : [u'request'] -the metal : [u'pipes'] -. Fairbanks : [u','] -newspapers, : [u'glancing', u'but'] -unknown man : [u','] -our prisoner : [u'as'] -complete without : [u'some'] -strong and : [u'stiff'] -this tangled : [u'clue'] -tapped his : [u'forehead'] -hand over : [u'his', u'part'] -where no : [u'one'] -returned upon : [u'the'] -readily assume : [u'. "'] -and gentle : [u'as'] -profession but : [u'is'] -fallen, : [u'his', u'but', u'to'] -fallen. : [u'As'] -not strike : [u'you'] -much, : [u'however', u'as', u'if', u'for'] -her to : [u'show', u'seek', u'this', u'one', u'make', u'be', u'take', u'say', u'change', u'marry', u'his', u'sign'] -much. : [u'You', 'PP', u'Do', u'I', u'How', u'Let'] -remarked. "' : [u'L'] -this as : [u'a', u'likely'] -nearly fell : [u'from'] -the colour : [u'of', u'began', u'?"'] -, Bradstreet : [u',', u'."'] -, seen : [u'everything'] -folly of : [u'a'] -cared no : [u'longer'] -he quiet : [u'?"'] -are widespread : [u'rumours'] -before us : [u'.', u',"', u'no', u'."', u'everything'] -our smiles : [u'were'] -denial that : [u'the'] -was dark : [u'again', u'in'] -the belief : [u'that'] -no surprise : [u'.'] -or six : [u'weeks'] -s money : [u'in'] -its details : [u'and', u'that'] -Dockyard, : [u'so'] -give way : [u'and'] -low spirits : [u'again'] -work can : [u'be'] -had stooped : [u'and'] -Francis Hay : [u'Moulton'] -coroner, : [u'indeed'] -" Pray : [u'take', u'do', u'sit', u'continue', u'be', u'let', u'make', u'compose', u'tell'] -Black Swan : [u'Hotel', u'is'] -stay in : [u'London', u'the'] -to interest : [u'myself', u'yourself'] -coroner' : [u's'] -sudden fright : [u'."'] -fifty guineas : [u'apiece', u'for', u','] -Gutenberg License : [u'included'] -which ran : [u'through'] -my medical : [u'instincts'] -blunders in : [u'as'] -have doubtless : [u'heard'] -middle of : [u'the', u'a'] -his neighbour : [u'.'] -times up : [u'and'] -bad! : [u'Your'] -eBook or : [u'online'] -bad. : ['PP'] -bad, : [u'and'] -is satisfied : [u','] -About two : [u'in'] -North 1500 : [u'West'] -Armitage, : [u'of'] -are joking : [u'.'] -. Anybody : [u'bringing'] -taste. : [u'Heavy'] -an angle : [u'of'] -and after : [u'that', u'.', u'?', u'much'] -windfall or : [u'of'] -a pretty : [u'little', u'expensive', u'business', u'good'] -upon our : [u'toast', u'visitor', u'course', u'shoulders', u'humble', u'being', u'increasing', u'way'] -, smiling : [u'.', u'. "', u', "', u'in', u", '"] -City. : [u'It', u'Just', u'Hitherto', u'He', u'All', u'She'] -blue cloak : [u'which'] -what happened : [u'when', u'to'] -my groom : [u','] -years proof : [u'against'] -Now we : [u'can', u'shall'] -was following : [u'him', u'my'] -were exposed : [u'in'] -, gathering : [u'up'] -clock ticking : [u'loudly'] -old English : [u'capital'] -every portion : [u'of'] -linen of : [u'the'] -was during : [u'the'] -ruse enough : [u',"'] -signs that : [u',', u'I'] -McCarthy had : [u'one'] -envelope had : [u'to'] -no capital : [u'by'] -vote to : [u'?"'] -to sob : [u'heavily', u'in'] -of many : [u'feet', u'tons'] -it bore : [u'you', u'unmistakable'] -official version : [u'posted'] -north side : [u'of'] -appearance of : [u'some', u'decrepitude', u'Peterson'] -on hearing : [u'the'] -may interest : [u'you'] -which surrounds : [u'me'] -tinted glasses : [u'against', u','] -lie at : [u'the'] -had wives : [u'living'] -exhibited no : [u'traces'] -faded brown : [u'overcoat'] -ruin that : [u','] -astonishment upon : [u'her'] -you give : [u'your', u'me', u'Lucy'] -in sight : [u'at'] -, agree : [u'to'] -live to : [u'the'] -there save : [u'the'] -usual, : [u'remarking', u'but'] -rather that : [u'I'] -usual. : [u'Indeed', u'About'] -those bulky : [u'boxes'] -you round : [u'to'] -white to : [u'his', u'the'] -faith of : [u'our'] -wrinkles, : [u'burned'] -open. : [u'Behind', u'You', 'PP', u'There', u'He', u'The', u'They'] -waddling about : [u'round'] -tales of : [u'cobbler', u'what'] -appeared to : [u'be', u'come', u'me', u'read', u'have', u'you'] -shall speedily : [u'supply'] -on promising : [u'him'] -this way : [u':', u'you', u'down', u'.', u',', u'I', u'we', u'he'] -contain the : [u'vital'] -said Lord : [u'St'] -succeeded in : [u'braving'] -figure in : [u'the'] -hardly yet : [u'be'] -his greatcoat : [u'.'] -And who : [u'is', u'could'] -pronounce him : [u'to'] -ll swear : [u'it'] -And why : [u'?"', u'in', u'could', u'did'] -He appeared : [u'to'] -poison fangs : [u'had'] -admirable opportunity : [u'.'] -jet. : [u'Are'] -went to : [u'my', u'the', u'visit', u'search', u'?"', u'her', u'see', u'bed'] -Is Toller : [u'still'] -easier for : [u'the'] -crudest of : [u'writers'] -gas laid : [u'on'] -letter which : [u'I'] -Violet Hunter : [u','] -Your beer : [u'should'] -was visible : [u'to'] -very well : [u'.', u'that', u'to', u",'", u'justified', u'indeed', u'have', u',', u'see', u'."', u';', u'able'] -" Sarasate : [u'plays'] -so extremely : [u'difficult'] -bringing home : [u'the'] -richest in : [u'England'] -close to : [u'that', u'mine', u'where', u'the'] -the class : [u'.'] -. The : [u'Red', u'Boscombe', u'Five', u'Man', u'Adventure', u'distinction', u"'", u'name', u'landlady', u'driver', u'cab', u'bride', u'stage', u'house', u'photograph', u'chances', u'lamps', u'alarm', u'smoke', u'door', u'furniture', u'King', u'fund', u'will', u'table', u'roadway', u'swing', u'crate', u'smell', u'other', u'light', u'method', u'4', u'man', u'cellar', u'only', u'crudest', u'husband', u'larger', u'double', u'sewing', u'point', u'daughter', u'thing', u'case', u'same', u'more', u'largest', u'men', u'game', u'head', u'injuries', u'self', u'puny', u'second', u'drawn', u'son', u'possession', u'blow', u'tip', u'culprit', u'year', u'streaming', u'fire', u'singular', u'matter', u'writing', u'first', u'streets', u'night', u'body', u'bridge', u'others', u'habit', u'most', u'window', u'inspector', u'rooms', u'front', u'bedroom', u'Lascar', u'envelope', u'rest', u'ring', u'pipe', u'prisoner', u'sleeper', u'facts', u'roughs', u'goose', u'lining', u'lens', u'evidence', u'salesman', u'small', u'bird', u'events', u'marks', u'last', u'money', u'manor', u'bedrooms', u'wind', u'walls', u'chimney', u'lady', u'total', u'trees', u'central', u'boards', u'lash', u'boy', u'trap', u'shutters', u'instant', u'little', u'presence', u'discovery', u'idea', u'rapidity', u'sight', u'metallic', u'story', u'passage', u'country', u'woman', u'ceiling', u'machine', u'lamp', u'next', u'panel', u'latter', u'thought', u'smarting', u'place', u'road', u'firemen', u'letter', u'Duke', u'ceremony', u'whole', u'incident', u'richer', u'initials', u'grey', u'very', u'lowest', u'police', u'banker', u'devil', u'question', u'gentleman', u'Copper', u'unusual', u'telegram', u'summons', u'sun', u'pressure', u'one', u'centre', u'Rucastles', u'dog', u'group', u'skylight', u'Project', u'copyright', u'Foundation', u'following', u'fee', u'person', u'invalidity'] -son knew : [u'the'] -locked as : [u'well'] -Mary and : [u'Arthur', u'I'] -enable her : [u'to'] -had 1000 : [u'pounds'] -not always : [u'so'] -Among these : [u'he'] -knees, : [u'heads', u'staring', u'as'] -talked together : [u'in'] -not pleasant : [u'to'] -of ours : [u','] -pains," : [u'said'] -receiver who : [u'had'] -intimate of : [u'a'] -rage, : [u'and'] -the wine : [u'cellar'] -their journey : [u'and'] -foliage. : ['PP'] -you foresee : [u'?"'] -the languid : [u','] -advance upon : [u'his'] -m always : [u'ready'] -nor business : [u'nor'] -Volunteers and : [u'financial'] -Street that : [u'night'] -without success : [u'."', u'.', u'I'] -out all : [u'these'] -permission for : [u'the'] -scuffle without : [u'taking'] -, bent : [u'knees', u'with'] -herd of : [u'buffalo'] -swept from : [u'her'] -I mentioned : [u'to', u'it'] -for if : [u'Dr', u'you'] -speckled band : [u"!'", u'?"', u'!"'] -own good : [u'fortune', u'sense'] -, McCarthy : [u'left', u'.'] -sinister door : [u'and'] -had discovered : [u'him'] -was recommended : [u'to'] -for it : [u',', u'by', u",'", u'cost', u'!"', u'made', u'was', u'last', u'and', u'.', u'seemed', u"'", u'."', u'is', u'would', u'in', u'that', u'will'] -monograph upon : [u'the'] -returning from : [u'a', u'Fareham', u'some'] -further steps : [u'may'] -at seeing : [u'me'] -And an : [u'exceedingly'] -Oakshott to : [u'night'] -minutes later : [u'we', u'I'] -baby her : [u'wee'] -saved him : [u'in'] -a parapet : [u'into'] -upon him : [u',', u'.', u'eight', u'and'] -instant his : [u'strange'] -by daubing : [u'them'] -go and : [u'inquire', u'make'] -photograph is : [u'in', u'now'] -about one : [u'of'] -acting, : [u'but'] -must speak : [u'to'] -fold upon : [u'fold'] -brazier of : [u'burning'] -never dared : [u'to'] -a commission : [u'as'] -Street?" : [u'I'] -any feature : [u'of'] -honour but : [u'that'] -occasional little : [u'springs'] -was ejected : [u'by'] -serious extent : [u'.'] -about here : [u'speaks'] -tell some : [u'strange'] -two minor : [u'points'] -many scattered : [u'papers'] -from outside : [u'the'] -violin and : [u'let'] -probably wish : [u'to'] -is time : [u'that'] -his uneasiness : [u'about'] -a row : [u'broke', u'."', u','] -hardened nerves : [u'a'] -terrible injury : [u'.'] -important business : [u'.'] -either me : [u'or'] -Fordham shows : [u'you'] -murmured Holmes : [u',', u'. "', u'without'] -moral retrogression : [u',', u'?"'] -whether I : [u'should', u'shall', u'were', u'had'] -clang, : [u'which'] -tropics. : [u'A'] -, ostensibly : [u'as'] -distributing this : [u'work'] -permission I : [u'will'] -skin the : [u'colour'] -is mistaken : [u'in'] -private purse : [u",'"] -be removed : [u'.'] -papers until : [u'at'] -test if : [u'we'] -jot down : [u'the'] -thief; : [u'had'] -risen from : [u'his'] -train, : [u'so'] -danger also : [u'for'] -train. : ['PP', u'There', u'Yours'] -cost, : [u'fee'] -whether a : [u'fad'] -thief, : [u'smasher', u'without'] -soon pushed : [u'her'] -reaction against : [u'the'] -flock. : ['PP'] -to forget : [u'for'] -language to : [u'his'] -gravely, ' : [u'that'] -attached full : [u'Project'] -thief! : [u'How'] -waited behind : [u'a'] -would like : [u'advice', u'to', u'my', u'you'] -Within are : [u'the'] -yet even : [u'here'] ---' and : [u'what'] -jaw resting : [u'upon'] -light the : [u'fire'] -it the : [u'plainer', u'folk', u'long'] -amid all : [u'the'] -Then at : [u'the'] -our little : [u'plans', u'problem', u'deductions', u'friend', u'place', u'house', u'whim'] -mysterious end : [u'."'] -at Coburg : [u'Square'] -limbs showed : [u'that'] -be a : [u'pity', u'man', u'satisfaction', u'bachelor', u'little', u'burden', u'sealed', u'strange', u'marriage', u'colonel', u'doubt', u'slave', u'powerful', u'search', u'purveyor', u'policeman', u'most', u'communication', u'small', u'hideous', u'sharp', u'monomaniac', u'morose', u'particularly', u'subject', u'call', u'scandal', u'quartering', u'lover', u'husband', u'thoroughly', u'private', u'simple', u'noise', u'strong', u'mere', u'very', u'nice', u'danger', u'young', u'silent', u'happy'] -am delighted : [u'to'] -s as : [u'true', u'well', u'much'] -solve is : [u'the', u'how'] -s at : [u'the', u'Harrow'] -made your : [u'position', u'statement'] -be I : [u'could'] -two plain : [u'questions'] -could only : [u'have', u'say', u'catch', u'be', u'bring'] -License terms : [u'from'] -M.' : [u'Now'] -the bargain : [u','] -The streets : [u'will'] -his self : [u'respect'] -. ' You : [u"'", u'see', u'will', u'can', u'shall', u'have'] -page indicated : [u'. "'] -shirt sleeve : [u','] -over here : [u'a', u'."', u'is', u'again'] -from Ballarat : [u'with', u'to'] -pale face : [u'and', u'.', u'disfigured'] -insight that : [u'I'] -"' Ten : [u'to'] -out now : [u'!"'] -front or : [u'behind'] -my tea : [u'when'] -in Andover : [u'in'] -gleam of : [u'the', u'a'] -you managed : [u'that', u'it'] -its very : [u'highest'] -front of : [u'the', u'Briony', u'it', u'a', u'his', u'him', u'me', u'Peterson', u'us'] -inviolate. : [u'The'] -90 days : [u'', u'of'] -were you : [u'doing'] -particularly, : [u'were'] -are rolled : [u'in'] -particularly. : ['PP'] -chair in : [u'considerable', u'his'] -leaving me : [u'?', u'palpitating'] -Market. : [u'One'] -took him : [u'from'] -a subdued : [u'brightness'] -own strength : [u'."'] -strengthen his : [u'conviction'] -have three : [u'days', u'maid'] -process. : [u'And', u'We'] -rely on : [u'you', u'me'] -Roylott has : [u'gone'] -rules is : [u'very'] -hand block : [u'was'] -in debt : [u'to'] -escort Miss : [u'Hunter'] -seemed likely : [u'enough'] -trousers, : [u'his', u'a', u'with', u'was'] -a protestation : [u'of'] -trousers. : ['PP', u'Yet'] -6/ : [u'6', u'1661'] -took his : [u'leave', u'children'] -Menendez Updated : [u'editions'] -traced home : [u'to'] -by Flora : [u'Millar'] -attempt to : [u'conceal', u'secure', u'night', u'see', u'explain', u'produce', u'recover', u'hide'] -more question : [u'.'] -sure of : [u'it', u'the', u'you'] -can ask : [u'the'] -devoted wife : [u'.'] -of Colonel : [u'Warburton', u'Lysander', u'Spence'] -the charming : [u'climate'] -Pondicherry, : [u'the', u'seven'] -sent my : [u'heart'] -voice and : [u'a', u'saw'] -a gulp : [u','] -stop when : [u'you'] -mine yet : [u'."'] -knife could : [u'be'] -glow of : [u'the'] -better man : [u'than'] -keyhole, : [u'but'] -, sticking : [u'up'] -attempting to : [u'put'] -Heaven!' : [u'she'] -train at : [u'half'] -the five : [u'dried', u'miles'] -might appear : [u'to'] -hydraulic stamping : [u'machine'] -A search : [u'was'] -wind is : [u'easterly'] -not unravel : [u'.'] -think. : [u'I', 'PP', u'It', u'You'] -think, : [u'to', u'Watson', u'perhaps', u'with', u'sound', u'the', u'were', u'Doctor', u'if', u'much', u'all', u'at', u'from', u'sir', u'you', u'and', u'then', u'Miss', u'fit', u'while'] -loudly somewhere : [u'in'] -William Morris : [u'.', u'or'] -which at : [u'the', u'first'] -deduce something : [u'from'] -think? : [u'It'] -answered; " : [u'I'] -Circumstantial evidence : [u'is'] -answered; ' : [u'but'] -standing question : [u'.'] -this information : [u',"'] -three bills : [u'upon'] -to suit : [u'theories', u'facts'] -meet and : [u'keep'] -temper approaching : [u'to'] -the shutters : [u'for', u'.', u'falling', u'of', u',', u'up'] -membra of : [u'my'] -and position : [u'.'] -being criminal : [u'.'] -placing upon : [u'record'] -The warning : [u'was'] -events of : [u'the'] -agreement before : [u'downloading'] -announcement and : [u'the'] -plumped down : [u'into'] -" Two : [u'years', u'days'] -to think : [u'over', u'of', u'neither', u'.', u'evil', u',', u'that', u'at', u'it', u'?'] -and congratulated : [u'me'] -crocuses promise : [u'well'] -her alone : [u'in'] -her along : [u'the'] -these nocturnal : [u'whistles'] -than Sherlock : [u'Holmes'] -business premises : [u'that'] -right,' : [u'said'] -gaol now : [u','] -convince the : [u'police'] -right," : [u'he', u'said'] -hand were : [u'behind'] -mere commonplaces : [u'of'] -at its : [u'very'] -?" She : [u'raised', u'smiled'] -evidently been : [u'carried'] -stuffed with : [u'pennies'] -coffee colour : [u','] -child which : [u'weighed'] -remainder of : [u'your', u'the'] -, astronomy : [u','] -wide country : [u'under'] -I examined : [u'every', u'the', u','] -lies at : [u'the'] -Twice since : [u'I'] -as mustard : [u'.'] -another. : ['PP', u'Let', u'My'] -arrest did : [u'not'] -another, : [u'as', u'that', u'and', u'I'] -gloves were : [u'greyish'] -senders to : [u'travel'] -glancing back : [u','] -which shone : [u'out'] -seldom was : [u';'] -door and : [u'into', u'knocked', u'bowed', u'lock', u'glanced', u'looked', u'which', u'ushered', u'pulled', u'walked', u'hurried', u'wondering', u'gave'] -spongy surface : [u'where'] -, drawing : [u'out'] -exactly 4 : [u':'] -a rush : [u'of', u','] -three fire : [u'engines'] -nice little : [u'brougham', u'crib'] -copying, : [u'distributing', u'displaying'] -nor tail : [u'of'] -commence the : [u'duties'] -Therein lies : [u'my'] -pity, : [u'because', u'especially'] -pity. : [u'For'] -pity' : [u's'] -London for : [u'the'] -astrakhan were : [u'slashed'] -cold sneer : [u'upon'] -brilliant beam : [u'of'] -bitterly regretted : [u'the'] -of characters : [u'.'] -Lothman von : [u'Saxe'] -delicacy in : [u'his'] -never show : [u'my'] -over part : [u'of'] -surrounds me : [u'?'] -of forgiveness : [u'.'] -my note : [u'?"', u','] -your most : [u'interesting'] -scored over : [u'you'] -silent man : [u','] -geese off : [u'you'] -I nodded : [u'to', u'again'] -square of : [u'cardboard', u'Wilton'] -most happy : [u'to'] -of deduction : [u'. "', u'and'] -blood I : [u'was'] -oh, : [u'what'] -misfortune might : [u'never'] -a" : [u'P'] -. Catherine : [u'Cusack'] -I spoke : [u'to', u',', u'.'] -and coffee : [u'in'] -his appearance : [u',', u'.'] -suddenly remarked : [u'that'] -The gas : [u'was'] -lane a : [u'very'] -message: ' : [u'K'] -She sits : [u'in'] -her within : [u'their'] -scattered about : [u'in'] -rather sternly : [u'.'] -fault if : [u'we'] -our quest : [u','] -now about : [u'to'] -fault in : [u'them'] -could tell : [u'you', u'me', u'some'] -, against : [u'the'] -Mary that : [u'I'] -instituted a : [u'goose'] -days on : [u'end', u'the'] -Good God : [u'!"', u'!'] -cheekbones, : [u'a'] -that put : [u'us'] -about how : [u'a'] -hardest for : [u'me'] -and surprise : [u'. "'] -rushed down : [u'the', u','] -inarticulate cry : [u'?"'] -were typewritten : [u'he'] -to back : [u'my', u'it'] -he winced : [u'from'] -person it : [u'saw'] -have drawn : [u'a', u'my', u'the', u'him'] -. Finally : [u',', u'he'] -person in : [u'uniform', u'question'] -" down : [u'to'] -mean to : [u'wear', u'have'] -daytime. : [u'Then'] -dusk, : [u'and'] -both with : [u'the'] -Supposing that : [u'this'] -duty, : [u'I'] -began walking : [u'into'] -good cause : [u'."'] -Very sorry : [u'to'] -worst of : [u'it', u'all'] -knees as : [u'he'] -protruded, : [u'with'] -do that : [u'.'] -Paddington as : [u'to'] -though my : [u'wife'] -Alicia Whittington : [u'.'] -is. : ['PP', u'This', u'They', u'I', u'It'] -instinct; : [u'perhaps'] -jet ornaments : [u'.'] -advertised description : [u'of'] -gone down : [u'in'] -have equalled : [u'.'] -than I : [u'should', u'expected', u'am', u'was', u'could', u'had', u'to', u',', u'can', u'cared', u'."'] -were Sherlock : [u'Holmes'] -he answered : [u',', u'with', u". '", u'. "', u'.', u'; "'] -herald of : [u'her'] -Were it : [u'not'] -in gushes : [u','] -this stone : [u'?"'] -train together : [u','] -quite exceptional : [u'woman'] -trade in : [u'wax'] -way led : [u'me'] -some time : [u'.', u'done', u'to', u'in', u'ago', u'later', u',', u'that', u'before'] -in society : [u'?"'] -than a : [u'strong', u'bean', u'precious', u'meditative'] -t keep : [u'a'] -so impossible : [u','] -paced up : [u'and'] -of copper : [u'beeches'] -broken, : [u'so'] -America to : [u'hear'] -pounds was : [u'the'] -, ' did : [u'you'] -advancing money : [u".'"] -to muster : [u'all'] -; yet : [u'my'] -hour' : [u's'] -your wishes : [u'.'] -had gently : [u'closed'] -are perfectly : [u'fresh', u'correct'] -be summoned : [u'.'] -hour. : ['PP', u'But', u'How', u'Colonel', u'The'] -hour, : [u'and'] -high," : [u'he'] -it shall : [u'never'] -she glanced : [u'at'] -other motive : [u','] -woman in : [u'a'] -throat sat : [u'at'] -thoughtless of : [u'me'] -!" Our : [u'visitor'] -meetings, : [u'and'] -the sad : [u'tragedy', u'news'] -, Cal : [u'.,'] -bars that : [u'secured'] -most searching : [u'gaze'] -drawn quite : [u'tense'] -. Professor : [u'Michael'] -particular paper : [u'edition'] -fire at : [u'every'] -confirmed by : [u'his'] -she listened : [u'.'] -papers that : [u'he'] -too deep : [u'.', u'for'] -mind rather : [u'than'] -ten I : [u'shall'] -Birchmoor, : [u'it'] -an empty : [u'berth', u'room'] -handed, : [u'limps'] -a windfall : [u'or'] -my conjecture : [u'into', u'became'] -gloom behind : [u'her'] -and showed : [u'that', u'us'] -offices of : [u'the'] -four letters : [u'from', u'which'] -beard growing : [u'out'] -have treated : [u'you'] -avenue. : [u'It'] -well furnished : [u','] -poor Frank : [u'here', u'.'] -the rattle : [u'of'] -no knowledge : [u'as'] -yourself, : [u'sir', u'your', u'in', u'and'] -yourself. : ['PP'] -attracted admirers : [u'who'] -father thought : [u'it'] -the loving : [u'couple'] -be bought : [u'under', u'."'] -answered by : [u'a'] -the cover : [u'of', u'was'] -on any : [u'criminal', u'pretext'] -seen very : [u'little'] -Breckinridge, : [u'the', u'by', u'of'] -miles from : [u'Eyford', u'the'] -spirits and : [u'feeling'] -the south : [u'west', u','] -:// pglaf : [u'.'] -s favour : [u'.'] -out I : [u'dropped'] -hardly out : [u'of'] -lure which : [u'must'] -he say : [u'when'] -he saw : [u'clearly', u'you', u'his', u'me', u','] -he sat : [u'with', u'in', u'down', u'now', u'as', u'when', u'staring', u'frequently'] -"' Never : [u".'", u'mind', u",'"] -his homely : [u'ways'] -husband coming : [u'forward'] -platitudes of : [u'the'] -leave your : [u'case', u'bag', u'house'] -favour from : [u'the'] -more obvious : [u',', u'."'] -I gather : [u','] -the red : [u'heads', u'headed', u',', u'glow'] -85, : [u'that', u'my'] -85. : [u'On'] -complicates matters : [u'.'] -always far : [u'more'] -called Mr : [u'.'] -My dear : [u'Holmes', u'doctor', u'fellow', u'madam', u'wife', u'young', u'Watson'] -marriage; : [u'but'] -advertisement column : [u','] -were abhorrent : [u'to'] -protruding beneath : [u','] -box which : [u'you', u'lay'] -single lady : [u'can'] -get these : [u'disreputable'] -marriage, : [u'the', u'that', u'and', u'during'] -legs in : [u'front'] -seeing perhaps : [u'the'] -thoughts rather : [u'than'] -the human : [u'heart'] -is coming : [u'here', u'to'] -! Here : [u'is'] -such men : [u'.'] -away in : [u'different', u'a', u'the'] -soon had : [u'a'] -guilt more : [u'heinous'] -if the : [u'pair', u'lady', u'King', u'inside', u'facts', u'clothes', u'door', u'missing'] -at ten : [u',', u'o', u'."'] -of six : [u'shillings'] -due to : [u'no', u'me'] -dust of : [u'the'] -The Copper : [u'Beeches'] -in that : [u'armchair', u'part', u'press', u'business', u'way', u'den', u'?"', u'chair', u'."'] -was no : [u'sooner', u'doubt', u'other', u'harm', u'use', u'need', u'one', u'more', u'rain', u'sign', u'shaking', u'rest', u'great', u'wonder', u'maker', u'place', u'slit', u'good', u'answering', u'uncommon', u'truth', u'idle', u'jest', u'furniture'] -caught him : [u'!"', u','] -arrangements which : [u'they'] -and tied : [u'so'] -prefer to : [u'communicate', u'have', u'make'] -lot of : [u'every', u'things'] -conspiring, : [u'or'] -. Upper : [u'Swandam'] -reasoned myself : [u'out'] -his dislike : [u'of'] -but whose : [u'biographies'] -"' Because : [u'during'] -address where : [u'you'] -get round : [u'the'] -the tools : [u'with'] -in absurd : [u'contrast'] -have me : [u'in', u'leave', u'arrested'] -have my : [u'bracelets', u'hand', u'dooties', u'wound', u'share', u'revolver'] -not very : [u'communicative', u'vulnerable', u'far', u'encouraging', u'much', u'scrupulous', u'good', u'practical', u'gracious', u'exacting', u'long'] -tons upon : [u'this'] -is how : [u'to', u'he'] -sides. : [u'All'] -curled at : [u'the'] -state' : [u's'] -you put : [u'to', u'it'] -was deep : [u'in'] -standing by : [u'the'] -state, : [u'I'] -about looking : [u'for'] -ran as : [u'though'] -engaged in : [u'clearing', u'my'] -highway, : [u'and'] -the snuff : [u','] -easy demeanour : [u'with'] -suddenly rolled : [u'them'] -brown. : [u'A'] -off he : [u'stopped', u'went'] -brown, : [u'rather', u'worm'] -grey house : [u'on'] -Perhaps the : [u'villain'] -tempered, : [u'very'] -read suspicion : [u'there'] -a point : [u'in', u'.'] -were six : [u'of', u'troopers'] -Therefore he : [u'used'] -concerning the : [u'copyright'] -is complete : [u',"'] -grey walls : [u'.'] -future for : [u'Project'] -nearly any : [u'purpose'] -A fierce : [u'quarrel'] -action and : [u'reaction'] -tap at : [u'the'] -could reach : [u'.'] -clearly what : [u'it'] -startled as : [u'I'] -waistcoat. : [u'But'] -elderly woman : [u'stood'] -the act : [u'of', u','] -the east : [u'of'] -letters when : [u'she'] -cried the : [u'King', u'hotel', u'inspector', u'prisoner', u'little', u'banker'] -branches there : [u'jutted'] -sleeps, : [u'and'] -the easy : [u'courtesy', u'way', u'air', u'and', u'chair', u','] -let myself : [u'go'] -bond? : [u'I'] -the ease : [u'with'] -his tattered : [u'coat'] -pennies 421 : [u'pennies'] -claim full : [u'justice'] -Indian animals : [u','] -repartee, : [u'which'] -passionately. " : [u'I'] -accept a : [u'situation'] -my due : [u'?'] -well thought : [u'of'] -with her : [u'.', u'."', u'superb', u'husband', u'glove', u'fair', u',', u'figure', u'eyes', u'finger', u'fate', u'hands', u'left', u'along', u'maid', u'initials', u'wooden', u'papers', u'father', u';', u'beautiful'] -junior and : [u'that'] -for whoso : [u'snatches'] -slept. : [u'Imagine'] -think very : [u'meanly'] -still stood : [u'upon'] -stepped, : [u'as'] -the feeling : [u'that'] -. " Pray : [u'continue', u'give', u'take', u','] -was down : [u'again'] -Toller hurrying : [u'behind'] -at Horsham : [u','] -thinker and : [u'logician'] -was speedily : [u'drawn'] -understood one : [u'link'] -that evening : [u'to', u','] -be aware : [u'that'] -breathing slowly : [u'and'] -this would : [u'be'] -deed. : [u'What', u'This'] -A lady : [u'dressed'] -On June : [u'3rd'] -.,' said : [u'I'] -double edged : [u'weapon'] -Your niece : [u'knew', u','] -also not : [u'unnatural'] -question that : [u'it'] -whole affair : [u'must'] -village. : [u'There', u'The'] -house where : [u'he'] -, rather : [u'."', u',', u'imprudently', u'against', u'darker', u'to', u'than', u'smaller'] -dense a : [u'swarm'] -! it : [u"'", u'is'] -worn. : [u'He'] -you drove : [u'home'] -worn, : [u'wrinkled'] -family resided : [u'.'] -name will : [u'cause'] -before father : [u'came'] -frightened of : [u'the'] -was strange : [u'to'] -anyone offer : [u'so'] -having gone : [u'to'] -turned at : [u'a'] -very violent : [u'temper'] -" After : [u'all'] -easier. : [u'A'] -t observe : [u'.'] -thoroughly into : [u'the'] -***** This : [u'file', u'and'] -into such : [u'a'] -and less : [u'complete', u'innocent'] -lifted the : [u'unopened'] -bouquet, : [u'of'] -to master : [u'the'] -such success : [u'that'] -little bend : [u'of'] -before six : [u','] -banks of : [u'the'] -the royal : [u'houses', u'brougham'] -meets me : [u'at'] -my ghastly : [u'face'] -couple, : [u'but'] -tobacconist, : [u'the'] -what do : [u'you', u'the'] -attention, : [u'while', u'and', u'since', u'madam'] -would put : [u'it', u'the'] -attention. : ['PP', u'I'] -the avenue : [u'.', u'gate'] -s character : [u'?"'] -old hands : [u'.'] -custom to : [u'smoke', u'discuss'] -from eye : [u'to'] -Rucastles go : [u'out'] -must be : [u'dull', u'recovered', u'bought', u'on', u'at', u'where', u'in', u'prompt', u'some', u'silent', u'to', u'confessed', u'used', u'the', u'got', u'those', u'done', u'more', u'cunning', u'made', u'weary', u'alive', u'no', u'brought', u'so', u'a', u'somewhere', u'someone', u'probed', u'avoided', u'consulted', u'quick', u'when', u'back', u'circumspect', u'paid'] -silk, : [u'black', u'but', u'a'] -frequently in : [u'its'] -Lysander Stark : [u"'", u'had', u'sprang', u'and', u'stopped', u'rushing', u'.'] -orange barrow : [u'.'] -heart it : [u'will'] -heart is : [u'lightened'] -Lord Southerton : [u"'"] -preserving a : [u'secret'] -ruin. : [u'The'] -west wing : [u'of'] -the purest : [u'accident'] -and carrying : [u'a', u'out'] -off under : [u'the'] -might make : [u'his'] -hurled it : [u'upon', u'out'] -my commission : [u','] -were unacquainted : [u'with'] -be sharp : [u'enough'] -circumspect, : [u'for'] -bad weather : [u'.'] -all went : [u'as'] -remember. : [u'Botany'] -remember, : [u'and', u'Monday', u'the'] -way he : [u'managed'] -present than : [u'is'] -white with : [u'chagrin'] -uttered the : [u'words'] -viewing, : [u'displaying'] -was Wednesday : [u'.'] -Holmes more : [u'depressed'] -boat was : [u'seen'] -very little : [u'to', u'of', u'difficulty', u'exercise'] -the chamber : [u'which', u'in', u'was', u'door'] -passenger who : [u'got'] -had remained : [u'when', u'with', u'I', u'indoors'] -amid his : [u'improvisations', u'newspapers'] -frightened!' : [u'I'] -than have : [u'left'] -, care : [u'about'] -showed that : [u'he', u'the', u'this', u'one', u'they', u'it'] -not do : [u'well', u'it'] -this young : [u'person', u'man', u'lady'] -hung about : [u'the'] -glancing about : [u'him', u'in'] -She writhed : [u'as'] -pips on : [u'McCauley'] -, gripping : [u'hard'] -by hearing : [u'the'] -vanished amid : [u'the'] -or destroy : [u'his', u'all'] -our good : [u'host'] -a glass : [u'of'] -last extremity : [u'to'] -are your : [u'lodgings'] -I actually : [u'saw'] -skill and : [u'his'] -head. : ['PP', u'In', u'Clearly', u'So', u'We', u'It', u'As', u'There'] -head, : [u'and', u'smashed', u'pushing', u'she'] -gross takings : [u'amount'] -sometimes stop : [u'dead'] -drive before : [u'us'] -all!' : [u'said'] -his question : [u'was'] -rough scenes : [u'and'] -for the : [u'use', u'observer', u'trained', u'reigning', u"'", u'purpose', u'present', u'new', u'coming', u'part', u'evening', u'lady', u'key', u'Continent', u'Temple', u'business', u'sake', u'day', u'address', u'propagation', u'world', u'sooner', u'observation', u'quick', u'bigger', u'goodwill', u'time', u'Friday', u'interim', u'assured', u'facts', u'help', u'court', u'weekly', u'older', u'barmaid', u'chase', u'cloak', u'son', u'pool', u'way', u'past', u'thought', u'grace', u'instant', u'lonely', u'terrorising', u'manager', u'rest', u'best', u'City', u'house', u'tide', u'presence', u'Lascar', u'sinister', u'obvious', u'police', u'geese', u'market', u'love', u'acquirement', u'wedding', u'ventilator', u'night', u'moment', u'convincing', u'fee', u'last', u'crisp', u'first', u'moon', u'ugly', u'country', u'soft', u'remainder', u'weather', u'colonies', u'future', u'fall', u'door', u'only', u'cabs', u'next', u'servants', u'woman', u'lad', u'stones', u'three', u'wrong', u'table', u'days', u'rearing', u'loss', u'most', u'poor', u'dog', u'eBooks', u'"', u'limited'] -you know : [u'?"', u'how', u',', u'all', u'Mr', u'father', u'.', u'what', u'more', u'anything', u'the', u';', u'where', u'him', u'that', u'faddy', u'now'] -s motives : [u'and'] -lust of : [u'the'] -her into : [u'an', u'the'] -England suggests : [u'the'] -state all : [u'the'] -rent in : [u'his'] -He tried : [u'more'] -a night : [u'when', u',', u'bird', u'journey', u"'"] -little scores : [u'of'] -. org : [u'/', u'.'] -which serves : [u'me'] -dank grasp : [u','] -very meanly : [u'of'] -to mark : [u'the'] -The Rucastles : [u'will'] -causes.' : [u'Carefully'] -half column : [u'of'] -belief that : [u'anyone', u'she', u','] -we reached : [u'the', u'it'] -as upon : [u'our'] -is usually : [u'kept', u'in'] -military neatness : [u'which'] -furnished with : [u'a'] -agitated over : [u'this'] -remark that : [u'the', u'she'] -metallic clang : [u',', u'heard'] -or refund : [u'set'] -that- : [u'You'] -trimmed at : [u'the'] -' Eg : [u".'"] -your friend : [u',', u'.'] -fight. : [u'She'] -liver, : [u'clay'] -entered it : [u'never'] -plans so : [u'completely'] -. Francis : [u'Hay'] -school treat : [u'.'] -; " he : [u"'"] -quite out : [u'in'] -brandy brought : [u'a'] -was John : [u'Openshaw'] -were sticking : [u'out'] -criminals of : [u'London'] -after what : [u'I'] -silver. : ['PP'] -bloodstains upon : [u'the'] -contents, : [u'and'] -no part : [u'in'] -hydrochloric acid : [u','] -take an : [u'immediate', u'interest'] -being conveyed : [u'into'] -no disease : [u','] -man sprang : [u'from'] -church is : [u'open'] -is innocent : [u'?"', u',', u'.', u'of'] -swing for : [u'it'] -smile fade : [u'even'] -down on : [u'the'] -all practical : [u'jokes'] -to England : [u'just', u'without', u'a', u'my', u','] -his eager : [u'face'] -fumes of : [u'the'] -lay as : [u'white'] -lay at : [u'the', u'present'] -striking and : [u'bizarre'] -"' Yes : [u".'", u','] -her he : [u'gave'] -with almost : [u'no'] -the wealth : [u'for'] -couch and : [u'patted'] -nothing could : [u'be'] -clerks. : [u'I'] -set ourselves : [u'very'] -remained there : [u','] -motionless, : [u'with'] -Millar in : [u'the'] -was once : [u'confined'] -Certainly not : [u'.', u".'"] -Pending the : [u'alterations'] -old Persian : [u'saying'] -sort which : [u'made'] -golden eyeglasses : [u'.'] -conjecture became : [u'a'] -one yellow : [u'light'] -more cheerful : [u'."'] -Whose house : [u'is'] -have followed : [u',', u'recent'] -I buy : [u'.', u'the'] -exactness and : [u'astuteness'] -west every : [u'man'] -You took : [u'me'] -Does that : [u'suggest'] -napoleons from : [u'the'] -they would : [u'pay', u'make', u'inform', u'have', u'be'] -cigarette tobacco : [u'.'] -. Whom : [u'have'] -clumps of : [u'faded'] -made in : [u'Bohemia', u'not'] -relevant or : [u'not'] -either confirm : [u'or'] -wharves. : [u'Between'] -someone to : [u'talk'] -me mad : [u',', u'to', u'?"'] -am Alexander : [u'Holder'] -of sacrificing : [u'it'] -, laid : [u'out'] -fine shops : [u'and'] -what society : [u'?"'] -must compliment : [u'you'] -looks newer : [u'than'] -stronger. : [u'For'] -excited in : [u'the'] -something else : [u'which', u'to'] -shoulders gave : [u'the'] -splash of : [u'acid', u'the'] -ran through : [u'the'] -I promised : [u'her', u'to'] -the breakfast : [u'table', u'room'] -already feel : [u'it'] -one side : [u'and', u',', u'.', u'of', u'showed'] -remember in : [u'her'] -busy at : [u'the'] -come out : [u'of', u'.', u'alone'] -in white : [u'letters'] -small slip : [u'of'] -Fowler at : [u'a'] -pushed to : [u'the', u'its'] -from without : [u'seemed'] -way we : [u'should'] -cut near : [u'the'] -her waylaid : [u'and'] -cap at : [u'either'] -determine the : [u'status'] -all theories : [u'to'] -your hand : [u'!'] -safe from : [u'him', u'eavesdroppers', u'my'] -rolled into : [u'Eyford'] -been suspended : [u'in'] -away without : [u'observing', u'having'] -door without : [u'any'] -lamps had : [u'been'] -his trick : [u'of'] -some belated : [u'party'] -lady was : [u'very'] -to want : [u'into'] -Can I : [u'be'] -visible. : [u'That'] -savage creature : [u','] -not long : [u'remain', u'before', u'after'] -motives and : [u'actions'] -have seen : [u'.', u'of', u'anything', u'."', u'those', u'young', u'his', u'the', u'--"', u'too', u'inside', u'enough', u'an', u'now'] -old mansion : [u'.'] -joy. " : [u'I'] -doubt depicted : [u'to'] -shelf one : [u'of'] -a lucky : [u'chance'] -happened between : [u'."'] -looked in : [u'the', u'some', u'as', u'upon'] -shiny, : [u'seedy'] -cried Hatherley : [u','] -franchise to : [u'them'] -town, : [u'finally', u'chemistry', u'and'] -town. : ['PP', u'He', u'His', u'This', u'But'] -dropped into : [u'a'] -sombre yet : [u'rich'] -has no : [u'property'] -to help : [u'me', u'the', u'him', u'us', u'produce'] -Come. : ['PP'] -he waved : [u'me'] -up about : [u'the'] -single article : [u'of'] -' homme : [u'c'] -warning was : [u'no'] -his pew : [u'on'] -bade me : [u'good'] -more respectable : [u'figure'] -hundred other : [u'ways'] -incriminate him : [u'.'] -during those : [u'months', u'dreadful'] -a pointed : [u'beard'] -opened and : [u'a', u'made'] -I invited : [u'them'] -volume of : [u'it'] -floor where : [u'I'] -disentangled the : [u'most'] -evening than : [u'in'] -a communication : [u'between'] -his wedding : [u'?"', u'.'] -Park in : [u'company'] -arrived at : [u'the'] -?" shouted : [u'Mr'] -the employ : [u'of'] -asserted itself : [u','] -flush stole : [u'over'] -can witness : [u'it'] -" Entirely : [u'."'] -agent, : [u'as', u'while'] -must look : [u'at', u'after'] -largest tree : [u'in'] -until at : [u'last'] -met this : [u'Lascar'] -both bent : [u'over'] -her overpowering : [u'excitement'] -be having : [u'a'] -boy sleeps : [u','] -walked over : [u'the', u'to'] -fund left : [u'by'] -twisted cylinders : [u'and'] -yesterday evening : [u',"', u'he'] -sure whether : [u'he'] -down with : [u'cigars', u'no', u'some', u'an', u'a', u'his', u'the'] -the farther : [u'side', u'end'] -talked with : [u'a'] -cup, " : [u'I'] -own fault : [u'if'] -lost your : [u'fiver'] -such intrusions : [u'into'] -we would : [u'give'] -indicated that : [u'of'] -I read : [u'that', u'.', u',', u'nothing', u'for', u'suspicion'] -level. : ['PP'] -clouds. : [u'However', u'Holmes'] -once confined : [u'in'] -least there : [u'was'] -very word : [u',"'] -saved England : [u'from'] -and painful : [u'episodes'] -is different : [u'."'] -better fit : [u'if'] -'-- that : [u'is'] -and chins : [u'pointing'] -all tracks : [u'for'] -chronicle one : [u'or'] -about fifty : [u','] -which appeared : [u'before', u'to', u'not'] -opponent at : [u'the'] -burned paper : [u','] -she read : [u'the'] -was someone : [u'who'] -" Subtle : [u'enough'] -so before : [u'now'] -was black : [u',', u'and'] -sturdy, : [u'middle'] -owe, : [u'Watson', u'Mr'] -or some : [u'other'] -observed a : [u'carriage'] -suspicious remark : [u'."'] -swag. : [u'I'] -good hundred : [u'miles'] -utter stillness : [u','] -, remained : [u'in'] -last survivor : [u'of'] -ledger. : [u'Now', 'PP'] -straight chin : [u'suggestive'] -which enabled : [u'him'] -the older : [u'man'] -the vessels : [u'which'] -suddenly losing : [u'her'] -When an : [u'actor'] -action. : [u'Miss', u'I', u'We', u'Yet'] -maid. : [u'Well', 'PP'] -maid, : [u'at', u'Alice', u'who', u'and', u'has', u'leave'] -towns, : [u'were'] -of France : [u'.'] -whispered in : [u'my'] -burst into : [u'a', u'convulsive'] -writes upon : [u'Bohemian'] -correct than : [u'the'] -to honour : [u'my'] -stole over : [u'Miss'] -very shape : [u'in'] -still with : [u'you'] -wished you : [u'good'] -Hercules. : [u'His'] -questions which : [u'have', u'you'] -mirror had : [u'been'] -victim. : [u'He', 'PP'] -keen a : [u'sympathy'] -prevent him : [u'from'] -the inner : [u'flap', u'side', u'apartment'] -us have : [u'a', u'it', u'everything'] -earth would : [u'ever'] -explain it : [u'in'] -my errand : [u'.'] -object was : [u'in'] -He walked : [u'swiftly', u'up'] -.' That : [u'is'] -no connection : [u'with'] -limited right : [u'of'] -zest to : [u'our'] -his fall : [u'the'] -questions as : [u'to'] -pulling up : [u'her'] -pool I : [u'heard'] -rather shamefaced : [u'laugh'] -have almost : [u'gone', u'every'] -its crop : [u'!"', u'."', u'.'] -and five : [u'dried'] -. Her : [u'jacket', u'dress', u'gloves', u'boots', u'violet', u'features', u'prolonged', u'young', u'lips', u'bed', u'light'] -stand this : [u'strain'] -apply the : [u'interest'] -her word : [u'is', u'.'] -gold mines : [u','] -limited one : [u'.'] -but partially : [u'cleared'] -terrible misfortune : [u'might'] -case I : [u'found', u'think', u'shall', u'should'] -ever drove : [u'faster'] -not hear : [u'of', u'it', u'a', u'from'] -my average : [u'takings'] -sound which : [u'sent', u'it'] -pierced for : [u'earrings'] -with grief : [u'and'] -all they : [u'had'] -the eye : [u'.'] -tradesman, : [u'obese'] -replaced it : [u','] -any change : [u'in'] -mornings. : [u'Besides'] -rapidity with : [u'which'] -ejaculation had : [u'been'] -portly, : [u'and'] -the central : [u'block', u'window'] -returned with : [u'the'] -we to : [u'find', u'do'] -ever so : [u'close'] -his which : [u'you'] -Reading to : [u'the'] -retained these : [u'things'] -arrived almost : [u'as'] -certainly needs : [u'a'] -Just one : [u'hint'] -a heaving : [u'chest'] -went there : [u'at'] -are Holmes : [u','] -" Alas : [u'!"'] -? That : [u'is'] -block of : [u'the', u'a'] -card upon : [u'the'] -the disturbance : [u','] -and struggled : [u','] -egg and : [u'poultry'] -. " Read : [u'it'] -imagine how : [u'you', u'maddening', u'hard', u'comical'] -to hurry : [u'quickly'] -easy for : [u'me'] -bird to : [u'be'] -all plain : [u"?'"] -suspicion became : [u'a'] -worlds. : [u'But'] -three standing : [u'in'] -rooms with : [u'Holmes'] -life appeared : [u'to'] -travelling in : [u'the'] -the guardsmen : [u'took'] -valuable still : [u'was'] -voices, : [u'one'] -voices. : ['PP'] -your sleep : [u"?'", u'?"'] -Nova Scotia : [u','] -beside myself : [u'with'] -will kindly : [u'explain'] -Come this : [u'way'] -your experience : [u',', u'has'] -of Bohemia : [u'."', u'rushed', u',', u'in', u'and'] -did not : [u'tell', u'know', u'gain', u'seem', u'come', u'wish', u'apparently', u'mind', u'take', u'go', u'wonder', u'want', u'disturb', u'dispose', u'like', u'see', u'advertise', u'care', u'tend', u'hear', u'give', u'scorn', u'notice', u'appear', u'overhear', u'."', u'say', u'himself', u'breathe', u'wake', u'call', u'think'] -settling down : [u'to'] -down to : [u'the', u'observe', u'tell', u'a', u'Fordham', u'Horsham', u'catch', u'arduous', u'Doctors', u'Scotland', u'breakfast', u'Streatham', u'your', u'Hampshire', u'one'] -Sarasate plays : [u'at'] -, developed : [u'into'] -or bending : [u'it'] -money to : [u'build'] -Simon. : [u'I', u'It', 'PP'] -living but : [u'horribly'] -towards Hatherley : [u'Farm'] -long did : [u'she'] -have met : [u','] -prompt. : [u'My'] -tall, : [u'spare', u'gaunt', u'thin', u'stout', u'portly'] -full purport : [u'of'] -supplementing before : [u'anyone'] -" Nay : [u','] -slip of : [u'paper', u'flesh'] -to Philadelphia : [u'.'] -from both : [u'the'] -take 2 : [u'pounds'] -your only : [u'hope', u'chance'] -of buffalo : [u'and'] -there were : [u'so', u'not', u'two', u'one', u'quarrels', u'marks', u'no', u'signs', u'several', u'only', u'fewer', u'any'] -a compositor : [u'by'] -niece, : [u'Mary', u'when'] -My experience : [u'of'] -not succeed : [u'in'] -of pre : [u'existing'] -, caused : [u'by'] -only where : [u'we'] -fresh and : [u'glossy', u'trim', u'beautiful'] -room without : [u'another'] -a scheming : [u'man'] -enough to : [u'chronicle', u'help', u'call', u'shake', u'gain', u'give', u'know', u'tackle', u'aid', u'explain', u'lose', u'go', u'finally', u'discover', u'bring', u'solve', u'find', u'unseat', u'draw', u'do', u'tell'] -interested, : [u'but', u'as'] -this chain : [u','] -the Engineer : [u"'"] -this chair : [u'and', u'by'] -of unofficial : [u'adviser'] -orders to : [u'the'] -particular colour : [u'.'] -abandoned as : [u'hopeless'] -a big : [u'cat'] -limbs of : [u'a'] -little door : [u','] -he hurled : [u'the'] -pillows from : [u'his'] -measured these : [u'very'] -is at : [u'once', u'the', u'least', u'her'] -is as : [u'it', u'cunning', u'brave', u'much', u'plain', u'puzzled', u'black', u'good'] -with John : [u'Cobb'] -dress indoors : [u'in'] -is an : [u'ordinary', u'old', u'instance', u'accountant', u'exceedingly', u'unfortunate', u'absolutely', u'excellent', u'advertisement', u'Englishman', u'only', u'open', u'American', u'impersonal', u'inn', u'important', u'impertinent'] -in hopes : [u'that', u'?"'] -ever circumstantial : [u'evidence'] -panel was : [u'pushed'] -pitch darkness : [u'such'] -take a : [u'seat', u'considerable', u'train', u'medical', u'glance', u'lenient', u'look'] -equally hot : [u'upon'] -side. : [u'A', u'Now', u'On', u'Sometimes', u'Passing', 'PP', u'It', u'In', u'Some', u'Without', u'The', u'Ha', u'That'] -grace and : [u'kindliness'] -bed about : [u'two'] -an accomplice : [u'.'] -Hafiz as : [u'in'] -my fears : [u'are', u'.'] -doors were : [u'locked'] -furniture in : [u'the'] -side? : [u'You'] -most exalted : [u'names'] -crushed under : [u'a'] -his recovered : [u'gems'] -lived in : [u'Brixton'] -very highest : [u'at'] -rescue. : [u'The'] -formerly been : [u'in'] -a dense : [u'tobacco'] -) alteration : [u','] -or political : [u'influence'] -sentence--' : [u'This'] -emotion during : [u'the'] -situation which : [u'has', u'I'] -not having : [u'the'] -lamps were : [u'just'] -not move : [u'her'] -there be : [u'in'] -something better : [u'before'] -curiosity were : [u'such'] -to spring : [u'into'] -aproned landlord : [u'.'] -Owe!" : [u'He'] -have referred : [u'the', u'to'] -sun shining : [u'into'] -a clergyman : [u'all'] -Balmoral, : [u'and', u'Lord'] -" American : [u'slang'] -Park, : [u'and'] -Park. : ['PP', u'I'] -We have : [u'tried', u'at', u'had', u'in', u'known', u'still', u'got', u'come', u'not', u'already', u'a', u'touched', u'retained', u'judged', u'boxed', u'been', u'done', u'certainly'] -plush at : [u'the'] -regard for : [u'what'] -wander freely : [u'over'] -and up : [u'and', u'to'] -them up : [u'onto', u'and'] -eye was : [u'that', u'a', u'bright'] -felt when : [u','] -nothing happened : [u'to'] -typewriter has : [u'really'] -our stars : [u'that'] -copy it : [u','] -actor, : [u'even'] -no possible : [u'getting', u'case', u'bearing', u'reason'] -immense a : [u'social'] -my secretary : [u'and'] -copy in : [u'lieu'] -fresh fact : [u'seemed'] -had again : [u'and'] -ground--" : [u'let'] -regain it : [u'with'] -upon all : [u'his', u'that'] -ill service : [u'to'] -extended to : [u'him'] -iron gates : [u',', u'which'] -was but : [u'one', u'an', u'a', u'momentary', u'two', u'thirty'] -really accidents : [u','] -scummed pool : [u','] -were scattered : [u'.'] -than does : [u'the'] -remarkable that : [u'no'] -fastening upon : [u'my'] -eyed, : [u'within'] -Jack,' : [u'says'] -were secured : [u'every'] -Holmes cut : [u'the'] -the purpose : [u'of'] -only at : [u'the'] -using and : [u'return'] -He tossed : [u'a'] -with dismantled : [u'shelves'] -Charles McCarthy : [u','] -perhaps he : [u'has', u'hardly', u'was'] -breath to : [u'keep'] -surprise me : [u'."'] -, complimented : [u'me'] -darting like : [u'lightning'] -using any : [u'part'] -he turned : [u'hungrily', u'his', u'down', u'the', u'to'] -inference. : [u'Therein'] -staining the : [u'fishes'] -obstacle in : [u'the'] -chance came : [u'.'] -, returns : [u'from'] -result. : ['PP', u'Let', u'I', u'The'] -killing cockroaches : [u'with'] -spared him : [u','] -. Lestrade : [u',', u'.', u'would', u'and', u'showed', u'of'] -hardly spoke : [u'a'] -thoughtfully, : [u'tossing'] -Thrust away : [u'behind'] -, reading : [u'the'] -, jerking : [u'his'] -finish you : [u"'"] -by means : [u'which', u'of'] -sleeves without : [u'a'] -outward, : [u'while'] -me satisfaction : [u'.'] -my habits : [u'.'] -intimacy, : [u'there'] -gentleman anything : [u'which'] -two which : [u'I'] -twins, : [u'and'] -the compass : [u'among'] -bowed her : [u'into'] -audible a : [u'very'] -so complete : [u'a'] -there can : [u'be'] -drawers stood : [u'in'] -Backwater' : [u's'] -hellish cruelty : [u','] -comply with : [u'the', u'all', u'both', u'paragraph'] -. Therein : [u'lies'] -change in : [u'her', u'my', u'the'] -forbidden door : [u'.'] -clearly the : [u'cause'] -a police : [u'station'] -ejaculated. : ['PP'] -inexorable evil : [u','] -be designed : [u'for'] -better that : [u'I'] -dustcoat and : [u'leather'] -better than : [u'laugh', u'any', u'to', u'myself'] -Openshaw from : [u'America'] -only once : [u'of'] -miles. : [u'Amid'] -of cards : [u'in'] -past seven : [u','] -profits you : [u'derive'] -investments with : [u'which'] -learned by : [u'an'] -can stand : [u'this'] -and threw : [u'open', u'himself', u'it', u'my'] -Look out : [u'for'] -for breach : [u'of'] -must insist : [u'.', u'that'] -dropping of : [u'a'] -flaring stalls : [u','] -and three : [u','] -nothing stranger : [u'than'] -removed to : [u'a'] -sight appear : [u'."'] -firm, : [u'but', u'with', u'of', u'then'] -firm. : [u'I', u'McCarthy'] -three when : [u'we'] -a hobby : [u'of'] -never was : [u'a'] -: ' There : [u'will'] -have reasons : [u'to'] -finally dispel : [u'any'] -that will : [u'simplify'] -and tried : [u'to'] -more daring : [u'than', u'criminals'] -to match : [u'these'] -shapeless blurs : [u'through'] -jeweller' : [u's'] -He sprang : [u'from', u'round'] -already arranged : [u'what'] -of eighteen : [u','] -. Old : [u'as', u'Turner'] -jagged stone : [u'was'] -he constructed : [u'a'] -may turn : [u'out'] -gained my : [u'first'] -explain to : [u'you'] -wrote her : [u'some'] -not necessarily : [u'keep'] -cobwebby bottles : [u'.'] -insist. : [u'You'] -comes to : [u'me'] -turned, : [u'and'] -said the : [u'police', u'stranger', u'folk', u'words', u'old', u'young', u'lady', u'inspector', u'salesman', u'woman', u'driver', u'colonel', u'station', u'banker'] -shake my : [u'very'] -the rose : [u'bushes'] -saw the : [u'beautiful', u'City', u'latter', u'fury', u'ventilator', u'cadaverous', u'lean', u'name', u'man', u'coronet', u'door'] -box. : [u'Now', 'PP', u'This'] -both the : [u'McCarthys', u'Project'] -sir' : [u'and'] -how in : [u'the'] -sir. : [u'Your', 'PP', u'He', u'And', u'I', u'But', u'There', u'It', u'Then'] -sir, : [u'the', u'march', u'because', u'but', u'I', u'whether', u'that', u'for', u'them', u'you', u'do', u'Dr', u'though', u'a', u'if', u'may', u'just'] -dirty face : [u'.'] -how it : [u'is', u'came', u'glints'] -how is : [u'she'] -summarily with : [u'the'] -Holmes again : [u','] -had been : [u'abandoned', u'out', u'lying', u'heard', u'no', u'some', u'lit', u'of', u'warned', u'told', u'given', u'lounging', u'alive', u'called', u'talking', u'beaten', u'away', u'on', u'shattered', u'found', u'left', u'taken', u'in', u'cut', u'drawn', u'wound', u'eight', u'always', u'destroyed', u'sent', u'woven', u'the', u'upon', u'expecting', u'plucked', u'deluded', u'made', u'to', u'observed', u'sucked', u'detailing', u'whirling', u'laid', u'galvanised', u'written', u'chewing', u'placed', u'famous', u'suspended', u'forced', u'delayed', u'driven', u'said', u'concerned', u'arrested', u'upset', u'sitting', u'perpetrated', u'fixed', u'leaning', u'fastened', u'suddenly', u'erected', u'broken', u'hacked', u'intrusted', u'my', u'there', u'much', u'conveyed', u'prepared', u'offered', u'paid', u'attacked', u'a', u'quite', u'ploughed', u'cleaned', u'everywhere', u'presented', u'torn', u',', u'twisted', u'disturbed', u'hurt', u'cleared', u'overseen', u'silent', u'watching', u'buried', u'measured'] -sir; : [u'I', u'for', u'but'] -other engagement : [u'at'] -in serious : [u'trouble'] -Is to : [u'copy'] -nor necktie : [u'.'] -your use : [u'and'] -could send : [u'her'] -floor)." : [u'That'] -curled up : [u'in'] -organisation flourished : [u'in'] -At the : [u'church', u'same', u'time', u'farther', u'foot', u'moment', u'wedding', u'sight', u'second'] -little sharp : [u'.'] -night Police : [u'Constable'] -capital sentence : [u'.'] -of Great : [u'Britain'] -out about : [u'them', u'that'] -my town : [u'suppliers'] -used for : [u'political'] -taken with : [u'the'] -preceded by : [u'a'] -now taken : [u'up'] -the poetic : [u'and'] -the chair : [u'.', u'from', u'suggested'] -little exercise : [u'.'] -pleasant lot : [u'it'] -was very : [u'peculiar', u'willing', u'new', u'superior', u'annoyed', u'good', u'independent', u'decidedly', u'nice', u'anxious', u'kind', u'sweet', u'weak', u'much', u'sick', u'pleased', u'angry', u'quiet', u'drunk'] -not actionable : [u',"'] -block. : [u'And'] -marked the : [u'spot', u'site'] -doubtless, : [u'as'] -the chain : [u'of'] -DONATIONS or : [u'determine'] -both thought : [u'the'] -my roof : [u','] -intellectual. : ['PP'] -cloudless sky : [u','] -may choose : [u'to'] -other thing : [u'you'] -with Mr : [u'.'] -which lay : [u'at', u'to', u'amid', u'upon', u'uncovered'] -bent upon : [u'the'] -feet heavy : [u'with'] -License must : [u'appear'] -in practice : [u'again', u'in'] -importers of : [u'Fenchurch'] -business a : [u'dreary'] -He entered : [u'with'] -present see : [u'in'] -free. : ['PP', u'I'] -class. : ['PP'] -implored the : [u'colonel'] -gave little : [u'promise'] -have touched : [u'on', u'bottom'] -human being : [u'whose', u'that'] -shutters with : [u'broad'] -upon Bohemian : [u'paper'] -a sealed : [u'book'] -way you : [u'see'] -eyes,' : [u'said'] -s opinion : [u','] -my data : [u'.'] -"' I : [u'wish', u'should', u'suppose', u'have', u'beg', u'say', u'shall', u'quite', u'would', u'had', u'am', u'was'] -do anything : [u'on', u'like', u'that', u'with'] -dignity after : [u'a'] -whiskers and : [u'moustache'] -150 yards : [u','] -swept away : [u'by'] -myself go : [u','] -having abstracted : [u'it'] -sailed merchant : [u'man'] -s registers : [u'and'] -first stage : [u'of'] -cheating at : [u'cards'] -an all : [u'night'] -the 22nd : [u'inst'] -knew what : [u'.', u'the'] -his improvisations : [u'and'] -which can : [u'hardly', u'only'] -seen Mr : [u'.'] -Snapping away : [u'with'] -room above : [u'the'] -stare at : [u'the', u'me'] -that came : [u'a'] -eerie in : [u'this'] -evening came : [u'I'] -He rummaged : [u'in', u'amid'] -itself is : [u'so'] -voice--" : [u'have'] -his possession : [u'.'] -huge ledger : [u'upon'] -find myself : [u'!'] -such commands : [u'as'] -Turner has : [u'brought'] -accompany my : [u'friend'] -California with : [u'her'] -leaves shining : [u'like'] -tea. " : [u'I'] -And have : [u'you'] -was opened : [u','] -neighbouring English : [u'families'] -is headed : [u", '"] -so truly : [u'formidable'] -companion quietly : [u'.'] -and cracked : [u'in'] -worth an : [u'effort', u'hour'] -foolish, : [u'and'] -. " You : [u'see', u'may', u'are', u'have', u"'", u'hear', u'work', u'had', u'must', u'can', u'would', u'look', u'really'] -sat together : [u'at', u'in'] -states after : [u'the'] -admiration of : [u'her'] -has evidently : [u'no'] -She stood : [u'with', u'smiling'] -thousand details : [u'which'] -found within : [u','] -growing out : [u'of'] -is past : [u'ten'] -need you : [u'.'] -spoke. ' : [u'I'] -the swimmer : [u'who'] -of intuition : [u','] -conjectured, : [u'but'] -himself red : [u'headed'] -inspector realise : [u'that'] -more one : [u'goes'] -including outdated : [u'equipment'] -done wisely : [u',"'] -his valet : [u','] -being fortunate : [u'enough'] -was alive : [u',', u'.'] -than was : [u'visible'] -as flattered : [u'as'] -actually lying : [u'upon'] -stepdaughter' : [u's'] -pavement had : [u'been'] -liking to : [u'break'] -than her : [u'little', u'husband'] -his hand : [u',', u'was', u'over', u'and', u'.', u'as', u'for', u'a', u'upon', u'thrust', u'?"', u'when'] -you inquired : [u'your'] -and prosperity : [u'to'] -have grasped : [u'one'] -his tenant : [u'but'] -used a : [u'holder'] -knowledge that : [u'the'] -he should : [u'be', u'go', u'come', u'reach', u'succeed', u'return', u'retain'] -he sketched : [u'out'] -Alice Rucastle : [u','] -club in : [u'the'] -and whiskers : [u','] -real bright : [u','] -remarkable save : [u'the'] -out," : [u'replied'] -several of : [u'my'] -surely very : [u'clear'] -, 000 : [u'pounds', u'napoleons', u')'] -Leave Paddington : [u'by'] -Merryweather perched : [u'himself'] -some small : [u'unpleasantness', u'expense', u'points', u'jollification', u'job', u'business'] -violence upon : [u'any', u'her'] -HOLMES,-- : [u'You'] -already deeply : [u'interested'] -favour. : [u'Don'] -whole story : [u'and'] -My geese : [u'!"'] -lines at : [u'Munich'] -to attempt : [u'to'] -had he : [u'been', u'to', u'known', u'stood'] -changed my : [u'clothes', u'dress'] -could trust : [u'her'] -lines. : ['PP'] -to finally : [u'dispel'] -my carriage : [u'but'] -a manufactory : [u'of'] -and went : [u'her', u'into', u'out', u'up'] -wait for : [u'the', u'it', u'him'] -again in : [u'a', u'the'] -words. " : [u'It', u'If'] -have neither : [u'of'] -particulars of : [u'my'] -anyone. : [u'Here', u'For'] -its den : [u','] -clue as : [u'to'] -Simon shrugged : [u'his'] -really are : [u'very'] -coachman had : [u'come'] -It lay : [u'between'] -an electronic : [u'work'] -country as : [u'were'] -foolish thing : [u'.'] -days when : [u'I'] -vessels which : [u'lay'] -that be : [u'unless', u'the'] -last Monday : [u','] -for yourselves : [u','] -an undue : [u'impression'] -you 120 : [u'pounds'] -and she : [u'to', u'picked', u'is', u'saw', u'distinctly', u'was', u'fell', u'stabbed', u'shot', u'could', u'had', u'endeavoured'] -the mornings : [u'.'] -that by : [u'Monday', u'the', u'means', u'considering'] -naturally not : [u'.'] -colleague, : [u'Dr'] -and must : [u'have'] -colleague. : [u'I'] -strength with : [u'a'] -blow, : [u'the', u'does'] -our increasing : [u'our'] -lad slipped : [u'on'] -B cleared : [u','] -than is : [u'usually', u'usual', u'necessary'] -Recently he : [u'has'] -be definite : [u','] -than in : [u'the', u'a', u'this', u'following'] -it appears : [u',', u'from', u'."', u'to'] -than if : [u'he', u'it'] -of days : [u'to'] -Counties Bank : [u'.'] -in vile : [u'weather'] -paused and : [u'refreshed'] -hidden wickedness : [u'which'] -your haste : [u'.'] -the rolling : [u'hills'] -distribution must : [u'comply'] -I pray : [u'that', u'not'] -you be : [u'able', u'ready', u'alive', u'fortunate'] -same week : [u'.'] -the marks : [u'of'] -entered into : [u'possession'] -her abrupt : [u'method'] -you by : [u'beating'] -hoax or : [u'fraud'] -business office : [u'is'] -walked down : [u'to', u'the'] -interested on : [u'glancing'] -always awkward : [u'doing'] -she did : [u'not'] -and round : [u'and', u'the'] -GUTENBERG LICENSE : [u'PLEASE'] -whistle and : [u'metallic'] -addressing Miss : [u'Mary'] -bird gave : [u'a'] -quiet word : [u'with'] -, instituted : [u'a'] -in New : [u'Jersey', u'Zealand'] -withdraw when : [u'Holmes'] -complete silence : [u'before'] -his big : [u'armchair'] -stained with : [u'violet', u'fresh'] -justice for : [u'my'] -our rooms : [u'once'] -so harshly : [u'."'] -loving, : [u'beautiful'] -my circle : [u','] -, straight : [u'chin'] -interests which : [u'rise'] -loud hubbub : [u'which'] -Her features : [u'and'] -look at : [u'the', u'it', u'a', u'and', u'that', u'this', u'him', u'everything', u'these', u'them'] -look as : [u'I'] -the Assizes : [u'."', u',', u'.', u'on'] -together that : [u'I'] -Rucastle. : [u'It'] -ribbed silk : [u'and'] -stood glancing : [u'from'] -a danseuse : [u'at'] -ever having : [u'touched'] -asked him : [u'if', u'who', u'to'] -sort from : [u'whom'] -struck me : [u'as', u'at', u'that'] -were slashed : [u'across'] -Serpentine mews : [u','] -seven and : [u'a', u'twenty'] -about eleven : [u'.'] -his emotion : [u'.'] -the crash : [u'of'] -freak when : [u'he'] -Of these : [u'he', u',', u'bedrooms', u'the'] -exceptional woman : [u'."'] -its own : [u'.', u'grounds', u'reward', u'sake', u'fields'] -they come : [u'again', u'from', u','] -carrying with : [u'him'] -sobered Toller : [u'to'] -Hers had : [u'been'] -catlike whine : [u','] -document. : [u'Philosophy'] -is dead : [u',"', u'?"', u','] -In front : [u'of'] -three separate : [u'tracks'] -Atlantic a : [u'shattered'] -Domain in : [u'the'] -quickly round : [u','] -Arthur had : [u'discovered'] -your fuller : [u"'"] -discovered by : [u'any'] -bills upon : [u'the'] -assault and : [u'illegal'] -cried Lestrade : [u'with'] -Beeches. : [u'It'] -at our : [u'Continental', u'windows', u'disposal', u'very', u'door', u'bell', u'best', u'Web'] -house which : [u'could'] -stuck to : [u'her'] -his stride : [u'.'] -not possibly : [u'have', u'whistle', u'be'] -Waterloo Station : [u','] -is nearly : [u'five'] -sprang into : [u'view'] -boots and : [u'a', u'retained'] -grinned at : [u'the'] -pointing in : [u'an'] -my attainments : [u'.'] -was keenly : [u'on'] -Bengal Artillery : [u'.'] -small trade : [u'in'] -. " Alas : [u'!'] -mouthed when : [u'he'] -light red : [u','] -done well : [u'indeed'] -Is it : [u'not', u'possible'] -gave a : [u'cry', u'bob', u'violent', u'rather', u'gulp', u'last', u'little'] -intense excitement : [u'. "'] -mills.' : [u'Ha'] -noticed his : [u'appearance'] -said, " : [u'a', u'that', u'on', u'you', u'I', u'and', u'but'] -yellow gloves : [u','] -the jaw : [u','] -after you : [u'to'] -and figures : [u'.'] -best possible : [u'."', u'solution'] -lawn, : [u'I', u'neither', u'crossed', u'stretched'] -so common : [u','] -, beginnings : [u'without'] -cut pearl : [u'grey'] -experience which : [u'is', u'looked'] -s plate : [u'.'] -reached you : [u','] -were carefully : [u'examined', u'sounded'] -knew one : [u'or'] -last been : [u'seen'] -to lecture : [u'me'] -mirror in : [u'my'] -red heelless : [u'Turkish'] -real opinion : [u'."'] -rather, : [u'returns', u'I'] -rather. : ['PP'] -his safe : [u'upon'] -figure. : [u'His', 'PP', u'He'] -figure, : [u'and'] -The 4 : [u'pounds'] -taken to : [u'quench', u'his', u'the', u'an'] -I consider : [u'that'] -Danger! : [u'What'] -entreaties when : [u'a'] -told inimitably : [u'.'] -his wardrobe : [u'.'] -1887, : [u'email'] -your train : [u'.'] -the invention : [u'of'] -into any : [u'mischief', u'little'] -those whom : [u'he'] -trivial to : [u'another', u'relate'] -like it : [u',"'] -Then they : [u'carried', u'will'] -I you : [u',"'] -Lord Eustace : [u'and'] -baffled all : [u'those'] -small outhouse : [u'which'] -address that : [u'was'] -got back : [u'to', u'I'] -hardly flashed : [u'through'] -rooms without : [u'the'] -Theological College : [u'of'] -garden at : [u'the'] -sleeve were : [u'observed'] -swiftly across : [u'the'] -the Temple : [u'.', u',', u'to'] -common enough : [u'lash'] -and massive : [u'boxes', u'mould'] -and every : [u'precaution', u'afternoon'] -had hydraulic : [u'engineers'] -Whom have : [u'I'] -dark dress : [u'I'] -the routine : [u'of'] -anything better : [u'than', u'.'] -hung on : [u'one'] -the sooner : [u'they'] -measured for : [u'it'] -saw scrawled : [u'in'] -station with : [u'them'] -will accept : [u'it'] -crop handy : [u','] -been lit : [u','] -Lestrade' : [u's'] -which line : [u'the'] -Lestrade! : [u'Good', u'You'] -fully share : [u'your'] -Lestrade. : [u'You', u'"\''] -a youth : [u',', u'whom'] -? Ah : [u',', u'!'] -since I : [u'saw', u'was', u'have'] -? At : [u'present'] -been no : [u'doubt', u'result', u'crime', u'common'] -keep her : [u'jewel'] -I say : [u',', u'that', u'of', u'now', u'it', u'is', u'a', u"!'", u'east'] -s path : [u','] -only to : [u'safeguard', u'day', u'put', u'be'] -c) : [u'any'] -streets in : [u'search'] -was hanging : [u'him', u'by'] -not find : [u'the', u',"', u'me'] -ask myself : [u'whether'] -door of : [u'Briony', u'the', u'a', u'our', u'his', u'which', u'my'] -A client : [u','] -skylight. : [u'We', 'PP'] -out who : [u'have'] -slate roofed : [u','] -side alley : [u'of'] -only Crown : [u'Prince'] -closing the : [u'door'] -about him : [u'.', u'like', u'anxiously', u'!"', u'with', u';'] -where is : [u'he', u'it'] -where it : [u'is', u'went', u'would', u'came'] -punctures which : [u'would'] -for better : [u'men'] -quietly dressed : [u'in'] -Gutenberg volunteers : [u'and'] -quick analysis : [u'of'] -presently," : [u'said'] -course he : [u'is', u'must'] -reported to : [u'have', u'you'] -tie my : [u'handkerchief'] -about his : [u'deserts', u'father', u'quarrel', u'sitting', u'club'] -and received : [u'in'] -strange features : [u'which'] -though asking : [u'a'] -glanced with : [u'some'] -inclined for : [u'any'] -evident confusion : [u'which'] -fellow should : [u'think'] -hot metal : [u'remained'] -first been : [u'overjoyed'] -which boomed : [u'out'] -incapable. : [u'There'] -, thick : [u'and'] -only all : [u'the'] -to half : [u'the'] -driving it : [u'through'] -sank and : [u'died'] -I glance : [u'over'] -so important : [u',', u'as'] -has blasted : [u'my'] -great personal : [u'beauty'] -of employing : [u','] -that more : [u'from'] -at exactly : [u'4'] -I bought : [u'a', u'this'] -respect," : [u'he'] -false position : [u'.'] -enough," : [u'observed', u'said'] -nervous system : [u'is'] -least clue : [u'as'] -soon managed : [u'to'] -4000 pounds : [u'."'] -enough,' : [u'said'] -erected a : [u'hydraulic'] -Middlesex, : [u'passing'] -blow does : [u'not'] -single advertisement : [u'.'] -disgrace I : [u'might'] -never denied : [u'him'] -ruin was : [u'eventually'] -who Mr : [u'.'] -I placed : [u'my'] -limits of : [u'his'] -A double : [u'carriage'] -window we : [u'could'] -passion was : [u'becoming'] -inquire more : [u'deeply'] -glare. : ['PP'] -at twenty : [u'past'] -were three : [u'doors'] -distaff side : [u'.'] -and deserted : [u'streets'] -which set : [u'an'] -gloves, : [u'patent'] -, ' we : [u"'", u'have', u'are'] -observed Holmes : [u'as', u'. "', u','] -it disappeared : [u'before', u'into'] -have five : [u'hundred'] -she picked : [u'nervously'] -transparent a : [u'device'] -and stagnant : [u'square'] -as in : [u'that', u'Horace', u'another', u'the', u'feature'] -you that : [u'I', u'he', u'there', u'it', u'your', u'.', u'my', u'the', u'just', u'they', u'in', u',', u',"'] -fashion at : [u'our'] -well how : [u'to'] -boots which : [u'she', u'her'] -number merely : [u'strange'] -lie in : [u'the'] -neat and : [u'plain'] -clock. : ['PP', u'I', u'It', u'At'] -innocent. : ['PP', u'You', u'Let'] -innocent, : [u'who', u'why'] -Oh, : [u'dear', u'then', u'she', u'the', u'he', u'merely', u'never', u'at', u'yes', u'if', u'indeed', u'Mr', u'no', u'well', u'it', u'that', u'Anstruther', u'tut', u'how', u'I', u'a', u'you', u'come', u'in', u'certainly', u'sir', u'don', u'just', u'very', u'Heaven', u'my', u'fresh', u'do', u'we', u'really', u'any', u'what', u'but', u'to', u'so', u'let'] -epicurean little : [u'cold'] -hour last : [u'night'] -I suppose : [u'that', u',"', u',', u'you', u'?"', u'there', u".'"] -to mother : [u',', u'.'] -will enable : [u'her'] -a twist : [u'by'] -of an : [u'importance', u'amiable', u'evening', u'Australian', u'ashen', u'English', u'individual', u'unfortunate', u'opium', u'emigrant', u'analytical', u'hour', u'aristocratic', u'old', u'exceeding', u'affair', u'instep', u'iron'] -whim at : [u'first'] -tackle facts : [u','] -it there : [u'was', u'.'] -spinster, : [u'to'] -the milk : [u'which', u','] -was sufficient : [u'to'] -had deserved : [u'your'] -rights, : [u'and'] -man ordered : [u'one'] -fled at : [u'the'] -moment. : [u'Your', u'I', u'They'] -directly by : [u'questioning'] -moment, : [u'for', u'but', u'as'] -moment' : [u's'] -ascertaining whether : [u'the'] -perplexity, " : [u'my'] -pipe thrusting : [u'out'] -an enemy : [u"'", u'."'] -so foolishly : [u'rejected'] -propriety obey : [u'.'] -somewhat to : [u'embellish'] -even now : [u','] -Ten will : [u'be'] -gold with : [u'three'] -him if : [u'he'] -she seen : [u'someone'] -him in : [u'the', u',', u'amazement', u'deep', u'last', u'my', u'prison', u'Regent', u'his', u'Swandam', u'turn', u'safety', u'some', u'astonishment', u'California', u'cold'] -marriage was : [u'arranged'] -my clothes : [u'I', u',', u'and', u'.'] -off you : [u'go', u'?"'] -ushering in : [u'a'] -acted in : [u'my'] -was young : [u'.', u',', u'he'] -, stretching : [u'his', u'along'] -such deadly : [u'paleness'] -for 25 : [u'pounds'] -show them : [u'that'] -founded upon : [u'the', u'all', u'my'] -upon small : [u'points'] -will be : [u'of', u'next', u'good', u'visible', u'taken', u'shown', u'early', u'more', u'some', u'the', u',', u'dry', u'crowded', u'presented', u'away', u'back', u'done', u'here', u'silent', u'sorry', u'entirely', u'fruitless', u'altogether', u'gone', u'found', u'renamed', u'linked'] -King without : [u'delay'] -convulsive sobbing : [u','] -You interest : [u'me'] -brought me : [u'a', u'.'] -very quick : [u'in', u'witted'] -she repeated : [u','] -while theirs : [u'is'] -Better make : [u'it'] -grown up : [u','] -for recovering : [u'lost'] -The august : [u'person'] -surveyed this : [u'curt'] -mystery which : [u'he'] -" Half : [u'dazed'] -said cordially : [u'.'] -box out : [u'upon'] -for an : [u'instant', u'immense', u'all', u'acute'] -doors at : [u'night'] -he stuck : [u'to'] -the edges : [u'of', u'and'] -the stone : [u'pavement', u'floor', u'which', u'flagged', u'could', u';', u'came', u'.', u'and', u'into', u'at', u'in', u'down', u'pass', u',', u'work'] -passed away : [u'like', u'without', u'from'] -for at : [u'the', u'least'] -lay her : [u'hands'] -murder, : [u'of', u'then'] -the Sholtos : [u'."'] -spectacles and : [u'the'] -for keeping : [u'the'] -reclaim it : [u'.'] -had spread : [u'an'] -court business : [u'over'] -bless you : [u'!"', u'!'] -and effective : [u'."'] -[ EBook : [u'#'] -my eye : [u'over', u'caught'] -respect with : [u'that'] -remarkably handsome : [u'man'] -horse with : [u'his'] -away a : [u'couple'] -murder' : [u'having'] -Allegro, : [u'and'] -Allegro. : [u'I'] -the hours : [u"?'"] -before very : [u'long', u'many'] -extended over : [u'the'] -would but : [u'tell'] -registered trademark : [u',', u'.'] -a clue : [u'.', u'?"', u'in'] -course would : [u'be'] -we here : [u'?'] -the steps : [u'which', u';', u'.', u'of', u',', u'for', u'by'] -good deal : [u'of', u'in', u'upon', u'discoloured', u'to', u'.'] -doing with : [u'that'] -? Twenty : [u'nine'] -you were : [u'likely', u'engaged', u'good', u'within', u'when', u'surprised', u'as', u'all', u'interested', u'not', u'unconscious', u'on', u'seated', u'asked', u'at', u'planning'] -keep your : [u'confession', u'eyes'] -was shuttered : [u'up'] -a family : [u"?'", u'misfortune', u'to', u'blot'] -once became : [u'known'] -) any : [u'Defect'] -discourage me : [u','] -who followed : [u'my'] -slipped in : [u'in'] -." XII : [u'.'] -prejudice your : [u'case'] -shrieked out : [u'in'] -furniture above : [u'the'] -hours we : [u'must'] -, Patience : [u'Moran'] -Air and : [u'scenery'] -was wondering : [u'what'] -could fly : [u'out'] -this K : [u'.'] -the wiser : [u'.'] -this I : [u'have', u'drove', u'was'] -thought the : [u'best'] -whether Mr : [u'.'] -actionable," : [u'he'] -feeling something : [u'was'] -replace them : [u'.'] -his lodger : [u','] -remaining point : [u'was'] -possible for : [u'me', u'us'] -your client : [u'--"', u'may'] -foot in : [u'the'] -her packet : [u','] -his handkerchief : [u'over'] -s re : [u'marriage'] -was buttoned : [u'only', u'up', u'right'] -Kate. : [u'Give'] -Nothing but : [u'energy'] -been intensified : [u'by'] -do nothing : [u'whatever', u'more', u'better', u'and', u'until', u'for', u'of', u'with'] -Kate! : [u'I'] -The old : [u'man'] -acquitted at : [u'the'] -quiet for : [u'fear'] -lazily from : [u'his'] -outside in : [u'the'] -anyone when : [u'she'] -, are : [u'eligible', u'as', u'all', u'very'] -s only : [u'four', u'Carlo'] -with public : [u'domain'] -and having : [u'turned', u'also', u'dispatched', u'met'] -effective. : ['PP'] -how subtle : [u'are'] -upper attendant : [u'at'] -asked me : [u'rather', u'what', u'at', u'whether'] -very cocksure : [u'manner'] -of lichen : [u'upon'] -about having : [u'letters'] -nest empty : [u'when'] -! From : [u'comparing'] -instant." : [u'I'] -m sure : [u'I'] -be served : [u'by'] -the agricultural : [u','] -that time : [u'the', u".'", u'a', u'I', u'."', u',', u'she', u'is'] -arrive at : [u'my', u'through'] -and cheery : [u'sitting'] -the size : [u'of'] -would wish : [u'to'] -whole examination : [u'served'] -violates the : [u'law'] -mind tended : [u','] -told their : [u'own'] -the interest : [u'to', u'."', u'which', u'of'] -until with : [u'another'] -these the : [u'latter'] -more singular : [u'features'] -Through the : [u'gloom', u'skylight'] -would depend : [u'very'] -entirely free : [u'of'] -by bedtime : [u'I'] -noticed during : [u'the'] -bushy, : [u'black'] -my page : [u'sleep'] -own guardianship : [u','] -doubted for : [u'a'] -She responded : [u'beautifully'] -D., : [u'Principal'] -writers could : [u'invent'] -servitude unless : [u'we'] -became a : [u'specialist', u'piteous', u'yellow', u'planter', u'certainty', u'reporter', u'rich', u'member', u'little'] -Alice grew : [u'up'] -largest private : [u'banking'] -a contrast : [u'to'] -fireplace, : [u'after'] -party, : [u'alleging'] -little which : [u'you', u'I'] -talk I : [u"'"] -radius of : [u'ten'] -monosyllables, : [u'and'] -public slight : [u',"'] -The following : [u'sentence'] -berths, : [u'like'] -ten miles : [u'of', u'or', u'from', u','] -elbowed away : [u'by'] -him that : [u'afternoon', u'night', u'is', u'he', u'I', u'a', u'his', u'it', u'this', u'my', u'we', u'there', u'all', u'evening'] -Such are : [u'the'] -young he : [u'became'] -little Edward : [u'in'] -." All : [u'day'] -The solemn : [u'Mr'] -yelled. ' : [u'Hullo'] -Those, : [u'I'] -life itself : [u','] -all have : [u'been'] -him than : [u'on', u'I'] -ADVENTURE V : [u'.'] -Posted to : [u'day'] -not averse : [u'to'] -galvanised. : ['PP'] -I regretted : [u'the'] -each in : [u'its'] -a less : [u'cheerful'] -the Darlington : [u'substitution'] -return once : [u'more'] -sudden light : [u'spring'] -ADVENTURE I : [u'.'] -to abide : [u'by'] -labour and : [u'an'] -also may : [u'not'] -heard some : [u'vague', u'slight'] -marriage is : [u'a'] -best resource : [u'was'] -the merest : [u'moonshine', u'chance', u'fabrication'] -sad tragedy : [u'which'] -been delayed : [u'at'] -printed upon : [u'a', u'the'] -ill usage : [u'at'] -no suggestive : [u'detail'] -others, : [u'and', u'but'] -as unlike : [u'those'] -others. : [u'On', 'PP'] -; an : [u'unmarried'] -binary, : [u'compressed'] -quietly. " : [u'I', u'Hold'] -, following : [u'the'] -are shivering : [u'."'] -my thoughts : [u'rather', u'turning'] -particular. : [u'I'] -railway journey : [u'and'] -yards off : [u'he'] -but unfortunately : [u'I'] -a brave : [u'fellow', u'soldier'] -stepped into : [u'the'] -nearer forty : [u'than'] -the examination : [u'of'] -we still : [u'have'] -all worn : [u'to'] -the negro : [u'voters'] -you follow : [u'the'] -commonplace, : [u'featureless'] -am I : [u'charged'] -little singular : [u'that'] -wooden boards : [u','] -commonplace. : ['PP', u'Absolutely'] -metal floor : [u'.'] -estimate would : [u'put'] -Or should : [u'you'] -action that : [u'I'] -journey and : [u'a', u'their'] -very happy : [u'to'] -sit without : [u'light'] -for every : [u'poor', u'event'] -listening. : [u'And'] -his masterly : [u'grasp'] -out yesterday : [u".'"] -my rooms : [u'smelling', u'."'] -formed some : [u'conclusion', u'opinion'] -gentleman' : [u's'] -coronet with : [u'every'] -thought, : [u'we', u'the', u'why', u'while', u'at', u'a', u'gone', u'however', u'with'] -s assistant : [u'counts', u'was'] -gentleman, : [u'your', u'Mr', u'Neville', u'"', u'had', u'however'] -treasure was : [u'safe'] -thought. : ['PP', u'Suddenly', u'Our'] -medical profession : [u'."'] -Scotland Yard : [u'?', u'and', u'.', u'."', u'Jack', u'at', u','] -. Listen : [u'to'] -easy air : [u'of'] -a lover : [u'he', u';', u'or', u'extinguishes'] -service a : [u'few'] -not seem : [u'to'] -too timid : [u'in'] -take wiser : [u'heads'] -and discontinue : [u'all'] -SHERLOCK. : ['PP'] -to civil : [u'practice'] -and chronic : [u'disease'] -black letter : [u'editions'] -appeared at : [u'the'] -examined the : [u'writing', u'seat', u'machine'] -amid even : [u'greater'] -strongly built : [u','] -perhaps write : [u'a'] -knew so : [u'well'] -Toller knows : [u'more'] -thieves! : [u'Spies', u'I'] -to Holmes : [u'to', u"'", u'she', u','] -you think : [u',', u'they', u'that', u'you', u'of', u'me', u'it', u'necessary', u'would', u'.', u"?'"] -The grey : [u'pavement'] -arranged, : [u'then', u'and'] -stammered. : ['PP'] -has completed : [u'the'] -bowed and : [u'left'] -JEPHRO RUCASTLE : [u".'"] -coil at : [u'the'] -Halifax, : [u'in'] -stepped briskly : [u'into'] -Even though : [u'he'] -room one : [u'of'] -scales of : [u'a'] -my new : [u'acquaintance'] -ashes of : [u'140'] -his end : [u','] -had trained : [u'it'] -his custom : [u'when', u'to'] -the horrible : [u'life'] -these people : [u'had'] -glisten with : [u'moisture'] -running down : [u'."'] -were open : [u'.'] -his finger : [u'and', u'.', u'tips', u'upon', u'in', u'to'] -went in : [u'the'] -net This : [u'Web'] -small side : [u'door'] -pockets to : [u'make'] -either signature : [u'or'] -the disappearance : [u'of', u'."'] -, helpless : [u'worms'] -loop of : [u'the', u'whipcord'] -her sins : [u'are'] -her ungenerously : [u','] -had saved : [u'began'] -ring--" : [u'He'] -am exceptionally : [u'strong'] -only two : [u'years', u'which', u','] -only man : [u'who', u'alive'] -slowly across : [u'the'] -of England : [u'in'] -deduction that : [u'you'] -bonnet is : [u'fitted'] -fault at : [u'all'] -whole day : [u',"'] -her instinct : [u'is'] -every link : [u'rings', u'in'] -active enemies : [u'.'] -I used : [u'to'] -wing is : [u'now'] -headed clients : [u'to'] -the effects : [u'.'] -thick, : [u'pink', u'hanging', u'and'] -metal pipes : [u'.'] -, slipped : [u'down'] -touch the : [u'interest', u'scoundrel', u'bell'] -sweetheart, : [u'and', u'of'] -protested his : [u'innocence'] -the' : [u'Eg', u'Encyclopaedia', u'e', u'r', u'American', u'Lone', u'Pink'] -tender of : [u'heart'] -in church : [u'?"'] -the" : [u'Encyclopaedia', u'Lone', u'Right'] -all palpitating : [u'with'] -day for : [u'months'] -speaks of : [u'Irene', u'his'] -Oxfordshire, : [u'and'] -can give : [u'them'] -decidedly carried : [u'away'] -usual writing : [u','] -ears, : [u'for', u'or', u'and'] -ears. : [u'If', u'Then', u'I', u'Suddenly', u'As'] -your deed : [u'at'] -water jug : [u','] -part that : [u'he'] -must try : [u'the', u'other'] -call him : [u'father', u'a', u'mine'] -wooden chairs : [u'and'] -his power : [u'.'] -made friends : [u'in'] -her biography : [u'sandwiched'] -room again : [u','] -harsh voice : [u'and'] -:-- Lord : [u'Backwater'] -quite unforeseen : [u'occurred'] -and simple : [u'minded', u'life', u','] -vanish, : [u'then'] -the murdered : [u'man'] -his enormous : [u'fortune', u'limbs'] -same lines : [u'at'] -been too : [u'busy'] -boots. : [u'Known', 'PP'] -boots, : [u'half', u'too', u'his', u'he'] -himself at : [u'his'] -himself as : [u'he'] -the murderer : [u',', u'must', u'?"'] -station and : [u'asked'] -mere oversight : [u','] -general public : [u',', u'were', u'and'] -delighted that : [u'you'] -a murder : [u','] -are too : [u'late', u'timid'] -in return : [u'for', u'the', u'you'] -our lady : [u'of'] -sent John : [u','] -this case : [u',', u'I', u'."', u'from', u'until', u'there', u'of'] -the questions : [u'which'] -sure by : [u'buying'] -of rooms : [u'which'] -stepped himself : [u'into'] -The lady : [u'gave', u'coloured', u'could', u',', u'had'] -goodness' : [u'sake'] -matter struck : [u'me'] -donna Imperial : [u'Opera'] -forget how : [u'many'] -systematic its : [u'methods'] -deep chalk : [u'pits'] -goodness, : [u'also', u'she'] -I take : [u'it', u'a'] -edge of : [u'the', u'one', u'his'] -Hatherley?' : [u'said'] -same next : [u'week'] -they go : [u','] -Because he : [u'was', u'limped'] -appointment. : ['PP'] -depot. : [u'That'] -thinking over : [u'her'] -wax vestas : [u'.'] -t throw : [u'up'] -remain freely : [u'available'] -and scraped : [u','] -And pray : [u'what'] -some irresistible : [u'force'] -over the : [u'cleverness', u'extraordinary', u'door', u'matter', u'case', u'somewhat', u'course', u'broad', u'ground', u'place', u'leaves', u'Horsham', u'sheet', u'great', u'edge', u'lamp', u'river', u'forehead', u'dates', u'borders', u'meadows', u'fields', u'middle', u'landscape', u'contents', u'six', u'entries', u'earth', u'outside', u'eye', u'depression', u'countryside', u'threshold'] -of paper : [u'before', u',', u'which', u'from', u'in', u'.'] -, muttered : [u'some'] -admirably. : ['PP'] -the six : [u'figures'] -the humbler : [u'are'] -pass him : [u'without'] -finished. : [u'I', 'PP'] -me why : [u'I'] -quick and : [u'resolute'] -Across his : [u'lap'] -wrong before : [u'!'] -police report : [u','] -and inexplicable : [u'chain'] -, facing : [u'round'] -deduction! : [u'But'] -tm concept : [u'and', u'of'] -the sudden : [u'gloom', u'breaking', u'glare'] -the fact : [u'that', u','] -think how : [u'caressing'] -window he : [u'must'] -ruin all : [u'."'] -Come on : [u','] -fewer passengers : [u'than'] -gain very : [u'much'] -the face : [u'he', u'of', u'with', u'!', u'and'] -of leaving : [u",'", u'the'] -crime, : [u'and', u'while', u'but', u'in'] -crime. : ['PP', u'It', u'The', u'His', u'Every'] -, uncouth : [u'man'] -playing for : [u'thousands'] -hardly take : [u'any'] -instance I : [u'am'] -and contemptuous : [u','] -which curves : [u'past'] -dense tobacco : [u'haze'] -the strange : [u'coincidences', u'train', u'adjective', u'pets', u'story', u'antics', u'arrangements', u'and', u'rumours', u'disappearance', u'gentleman', u'hair'] -with interest : [u'.', u',"'] -War. : [u'It'] -War, : [u'and'] -will happen : [u'when'] -you remember : [u'any', u',', u'that'] -nothing further : [u'of'] -be interesting : [u'.'] -his crackling : [u'fire'] -. ' This : [u'is'] -suspicions when : [u'you'] -verify them : [u'?"'] -play heavily : [u'at'] -broad wheal : [u'from'] -eager eyes : [u'and'] -stored, : [u'may'] -and trimly : [u'clad'] -I presume : [u'?"', u'that', u','] -conclusion that : [u'he', u'the'] -two steps : [u'forward'] -latch and : [u'made'] -light twinkling : [u'in'] -for life : [u'.'] -I sent : [u'John', u'it', u'James', u'him', u'the'] -What are : [u'you', u'they'] -reaching down : [u'to'] -remarkably animated : [u'.'] -right bell : [u'pull'] -maiden herself : [u'was'] -prompted you : [u'to'] -the cracks : [u'between'] -and secretly : [u'work'] -pound heavier : [u",'"] -blood running : [u'freely'] -whole property : [u'.'] -the breath : [u'of'] -myself whether : [u'I'] -tweed trousers : [u','] -I call : [u'them', u'him', u'to', u'it', u'you'] -blinds you : [u'as'] -accomplished so : [u'delicately'] -stairs which : [u'led'] -wisely," : [u'said'] -hand for : [u'his'] -remark about : [u'his'] -Britain is : [u'passing'] -go upstairs : [u',"'] -a peculiar : [u'mixture', u'yellow', u'shade'] -away as : [u'each'] -a slut : [u'from'] -air, : [u'they', u'but', u'which'] -air. : [u'A', 'PP', u'"'] -they thought : [u'of'] -young Mr : [u'.'] -without my : [u'Boswell'] -card was : [u'brought'] -try the : [u'simplest'] -!" The : [u'word', u'King', u'man', u'commissionaire', u'ejaculation', u'object', u'reaction'] -fourth left : [u',"'] -longer oscillates : [u','] -to considerably : [u'over'] -a week : [u'for', u".'", u'."', u'was', u',', u'when', u'she', u"'", u'he', u'in', u'ago'] -or his : [u'monogram', u'mistress', u'hat', u'brow'] -inside throws : [u'any'] -go into : [u'harness', u'the', u'court', u'your'] -during the : [u'long', u'interview', u'reconstruction', u'afternoon', u'proceedings', u'day', u'last', u'years', u'night', u'seven', u'days', u'honeymoon', u'morning', u'month'] -be traced : [u','] -moustached evidently : [u'the'] -the attic : [u',', u'save'] -to himself : [u'and', u',', u'than', u'as', u'once', u'like'] -meet Miss : [u'Hatty'] -the gun : [u'as'] -wash," : [u'remarked'] -your memory : [u','] -messenger reached : [u'you'] -last squire : [u'dragged'] -Every good : [u'stone'] -limb is : [u'often'] -back alive : [u'.'] -English, ' : [u'remember'] -which suits : [u'you'] -me rude : [u'if'] -arc and : [u'compass'] -little room : [u','] -that Turner : [u'himself'] -and ventilators : [u'which'] -before still : [u'lay'] -our funds : [u'as'] -also quite : [u'modern'] -threatened. : [u'I', 'PP'] -movement rather : [u'suddenly'] -footfall of : [u'the'] -Foreign Affairs : [u'.'] -ran in : [u'this'] -save that : [u'the', u'he', u'it'] -story were : [u'absolutely'] -register and : [u'diary'] -of whistles : [u'at'] -strange tangle : [u'indeed'] -we seemed : [u'to'] -and despair : [u'in'] -Peterson do : [u'?"'] -She knows : [u'that'] -somewhere downstairs : [u'. "'] -society papers : [u'of'] -if you : [u'are', u'do', u'reach', u'care', u'wish', u'will', u'cared', u'budge', u'say', u'consult', u'shift', u'consider', u'have', u'please', u'had', u'saw', u'convince', u'were', u'would', u'want', u'feel', u'prefer', u'could', u'ever', u'charge', u'follow', u'provide'] -be entangled : [u'in'] -encircled eyes : [u'.'] -he stammered : [u'.'] -d' : [u'you'] -dryly. : ['PP'] -pretty villain : [u'in'] -be named : [u'1661'] -born Americans : [u'in'] -more highly : [u',"'] -strength, : [u'and'] -providing it : [u'to'] -making his : [u'professional', u'way'] -strode out : [u'of'] -most vital : [u'use'] -morning was : [u'breaking'] -Francis H : [u'.'] -or behind : [u'.'] -jewel robbery : [u'at'] -know whether : [u'he', u'the'] -Beeches by : [u'seven'] -general look : [u'of'] -the nail : [u','] -blind fool : [u'I'] -ADVENTURE OF : [u'THE'] -221B, : [u'Baker'] -a ventilator : [u'into', u'before', u'."'] -own inner : [u'consciousness'] -left everything : [u'in'] -so had : [u'my'] -may read : [u'it'] -sky. : [u'I'] -64 6221541 : [u'.'] -aroused your : [u'suspicions', u'curiosity'] -spare time : [u'even'] -family of : [u'Holland', u'the', u'Lord', u'Colonel'] -could come : [u'to', u'with'] -and who : [u'they', u'have', u'was', u'had', u'may'] -chances are : [u'that'] -before marriage : [u'also'] -t know : [u'."', u'that', u'much', u'his', u'what', u'quite', u'this', u'why', u'him'] -it away : [u'or', u'at', u'with'] -to violin : [u'land'] -and why : [u'should', u'does', u'I'] -And they : [u'were'] -to wish : [u'you'] -request, : [u'showed', u'made', u'for', u'of'] -mystery were : [u'it'] -her fortune : [u'if'] -s appearance : [u'?', u'at'] -our research : [u'must'] -laid her : [u'little', u'needle'] -under his : [u'cloak', u'ear', u'arm', u'breath'] -native butler : [u'to'] -eBook is : [u'for'] -choked her : [u'words'] -were gone : [u','] -. He : [u'was', u'never', u'had', u'carried', u'is', u'appeared', u'walked', u'used', u'wore', u'and', u'said', u'started', u'answered', u'moved', u'did', u'could', u'told', u"'", u'has', u'made', u'shrugged', u'would', u'laughed', u'wouldn', u'shall', u'shot', u'thought', u'calls', u'came', u'ran', u'mumbled', u'put', u'asked', u'stretched', u'looked', u'drank', u'begged', u'rummaged', u'will', u'found', u'took', u'waved', u'denied', u'rushes', u'throws', u'spoke', u'drew', u'sprang', u'does', u'held', u'lay', u'received', u'brought', u'sat', u'advanced', u'beckoned', u'learned', u'tried', u'followed', u'might', u'hardly', u'wished', u'hurried', u'chucked', u'hastened', u'entered', u'saw', u'rushed', u'opened', u'locked', u'overdid', u'knew', u'wanted'] -might roughly : [u'judge'] -in height : [u',', u';'] -talking all : [u'the'] -form looming : [u'up'] -grounds, : [u'for'] -grounds. : [u'A'] -leaves the : [u'bank'] -" Our : [u'quest'] -it best : [u'that'] -go none : [u'."'] -contained a : [u'verbatim'] -nothing had : [u'transpired'] -s half : [u'a'] -grasp and : [u'turned'] -" appears : [u','] -puffed neck : [u'of'] -to sign : [u'a'] -morning to : [u'find'] -urged young : [u'Openshaw'] -Of all : [u'these', u'the'] -Goodge Street : [u','] -like,' : [u'said'] -. " Certainly : [u','] -my consulting : [u'room'] -glared down : [u'at'] -it up : [u'to', u'in', u'.', u", '", u'and', u'with', u';', u','] -quite solid : [u'all'] -clear him : [u','] -and finding : [u'that'] -once see : [u'that'] -pride so : [u'far'] -been compelled : [u'to'] -them two : [u'and', u'days'] -yourself seriously : [u'."'] -strongest points : [u'in'] -one was : [u'stirring', u'coming'] -it. " : [u'One', u'This', u'Mr', u'Yes', u'Data'] -. Making : [u'our'] -the crop : [u'of'] -himself for : [u'her', u'over'] -in love : [u'with'] -cab drove : [u'up'] -devoured it : [u'voraciously'] -Windibank came : [u'he', u'back'] -bell rope : [u'which', u'in', u'?"', u','] -Prague for : [u'the'] -the Morning : [u'Post'] -!' There : [u'was'] -possessed of : [u'unusual'] -One morning : [u','] -Easier the : [u'other'] -me warmly : [u'on'] -possess; : [u'and'] -on when : [u'you'] -, does : [u'his', u'he', u'not'] -John Robinson : [u',"'] -"' Here : [u'we'] -such surprise : [u'or'] -troubling you : [u','] -and Counties : [u'Bank'] -twenty at : [u'the'] -you did : [u'very', u'not', u'also'] -been sitting : [u'in'] -this new : [u'case', u'quest', u'investigation'] -he to : [u'prevent', u'whom'] -This observation : [u'of'] -singular experience : [u'of'] -a devil : [u'incarnate'] -in search : [u'of', u'.'] -not explain : [u'them', u'the'] -dozen. : ['PP'] -and failed : [u'."'] -bracelets on : [u'him'] -feel a : [u'new'] -chimney. : [u'Sherlock'] -its writhing : [u'fingers'] -fear not : [u'."'] -an alternation : [u'between'] -a turn : [u'like'] -impression of : [u'barbaric', u'his', u'a', u'age'] -, stands : [u'for'] -fits of : [u'passion'] -akin to : [u'love', u'bad', u'fear'] -hundreds of : [u'times', u'Henry', u'volunteers'] -realised, : [u'for'] -a rabbit : [u'into'] -been had : [u'I'] -keen and : [u'eager'] -, maid : [u'to'] -easily give : [u'you'] -ruin of : [u'a', u'us'] -Half dazed : [u','] -blame. : [u'I', u'People'] -smile hardened : [u'into'] -which Miss : [u'Stoner', u'Hunter'] -sort of : [u'fantastic', u'society', u'drunken', u'light', u'Eastern', u'traditions', u'beige'] -country houses : [u'.'] -camp, : [u'near'] -effect that : [u'a', u'he'] -SIR ARTHUR : [u'CONAN'] -this machine : [u'at'] -expressions towards : [u'my'] -hurried across : [u'the'] -the noose : [u'round'] -should quietly : [u'and'] -observed. " : [u'I', u'It'] -let loose : [u'at'] -provisions. : ['PP'] -cord which : [u'was', u'held'] -run down : [u'to', u'the'] -pavement. : ['PP', u'Then'] -is quite : [u'a', u'peculiar', u'separate', u'too', u'incapable', u'distinctive', u'clear', u'certain', u'settled', u'correct', u'essential', u'out', u'cleared', u'above', u'impossible', u'disproportionately'] -knowing what : [u'to', u'was'] -my analysis : [u'."', u'of'] -occurred which : [u'has', u'I'] -he will : [u'without', u'be', u'explain', u'have'] -such attractions : [u'and'] -it and : [u'examined', u'stepped', u'was', u'attacked', u'to', u'turned', u'addressed', u'take', u'in', u'pulled'] -incomplete. : ['PP'] -the task : [u'of'] -my experience : [u'."', u'which', u','] -That is : [u'just', u'very', u'excellent', u'his', u'back', u'better', u'as', u'for', u'important', u'interesting', u'the', u'easily', u'not', u'well', u'The', u'possible', u'clear', u'also', u'quite', u'our', u'why', u'all', u'what', u'a', u'unusual', u'it', u'enough', u'obvious', u'Mrs', u'how'] -incomplete, : [u'inaccurate'] -plate. : [u'It', u'I', 'PP'] -, Serpentine : [u'Avenue'] -his false : [u'teeth'] -mention of : [u'pips'] -senses might : [u'have'] -frequently brought : [u'him'] -different parts : [u'of'] -such remarkable : [u'results'] -that only : [u'half'] -were behind : [u'me'] -dragged the : [u'basin'] -McCarthy pass : [u'he'] -)( 3 : [u')'] -your goose : [u'club'] -price for : [u'the'] -promised Mr : [u'.'] -all your : [u'experience'] -lay in : [u'wait'] -open window : [u'."', u'.', u','] -passing said : [u':'] -the greeting : [u'appeared'] -?" interjected : [u'Holmes'] -cap, : [u'and'] -of solitude : [u'in'] -cap. : ['PP'] -pipe which : [u'was'] -so enwrapped : [u'in'] -upon six : [u'o'] -moved the : [u'lamp'] -neighbourhood of : [u'his'] -, 8d : [u".'"] -Photography is : [u'one'] -The blow : [u'was', u'has'] -when fagged : [u'by'] -against that : [u'laugh'] -not too : [u'much', u'delicate', u'late'] -art than : [u'for'] -second waiting : [u'maid'] -you lose : [u'your'] -detail from : [u'your'] -occasionally very : [u'convincing'] -fortune in : [u'the'] -is Dr : [u'.'] -fortune if : [u'she'] -next moment : [u'I'] -brazen it : [u'out'] -in discovering : [u'Mr'] -Street it : [u'had'] -the sweat : [u'was'] -upon anyone : [u'.'] -if both : [u'girls'] -indicated, : [u'that'] -seven sheets : [u'of'] -innocent one : [u'.'] -know; : [u'you'] -REFUND- : [u'If'] -and lay : [u'back', u'down', u'half', u'listless', u'awake'] -the heart : [u'of'] -foul plot : [u'had'] -boarding schools : [u'.'] -s check : [u'trousers'] -often take : [u'advantage'] -or you : [u'lose', u'are', u"'"] -no forgetfulness : [u';'] -or with : [u'which'] -as fresh : [u'and'] -must stay : [u','] -are only : [u'just', u'two'] -made at : [u'the', u'once'] -all day : [u',', u'."'] -chewing tobacco : [u'.'] -violence a : [u'small'] -made an : [u'admirable', u'appointment', u'unpleasant'] -his attempts : [u'to'] -WITH THE : [u'TWISTED'] -frill of : [u'black'] -hill, : [u'and'] -of assisting : [u'."'] -groping for : [u'help'] -see it : [u',', u'is', u'?"', u'through', u'."'] -talk all : [u'that'] -, signed : [u'with'] -long purses : [u'and'] -Now keep : [u'your'] -With making : [u'away'] -see if : [u'the'] -these wings : [u'the'] -orphan and : [u'a'] -way of : [u'managing', u'the', u'anything', u'proof', u'his', u'danger', u'talking'] -proofs before : [u'I'] -which made : [u'it', u'him', u'me'] -the butler : [u'and'] -upon her : [u'broad', u'which', u'sleeves', u'rights', u'cheeks', u'shoulder', u'."', u'dark', u'eager', u'ever', u'face', u'way', u'mind', u',', u'tresses'] -been beaten : [u'in', u'four'] -I rang : [u'the'] -Stolen, : [u'then'] -Stolen. : ['PP'] -get on : [u'to', u'very'] -in uncontrollable : [u'agitation'] -nothing remained : [u'of'] -horse. : ['PP'] -chaffed by : [u'all'] -, concealed : [u'three'] -him just : [u'as'] -horse, : [u'into'] -men and : [u'things'] -to whiten : [u','] -satisfaction. : [u'For', u'She'] -production, : [u'promotion'] -been looking : [u'a', u'through'] -something from : [u'that'] -compliment you : [u'."'] -was such : [u'a'] -draw him : [u',', u'by', u'back'] -in waiting : [u','] -midway between : [u'our'] -"' Look : [u'here', u'in'] -in action : [u'that'] -containing a : [u'part'] -When you : [u'raise', u'drove', u'see', u'combine', u'go'] -He told : [u'me'] -comment, : [u'her'] -note before : [u'leaving'] -her arms : [u'about', u'round'] -wreath and : [u'veil'] -sweet promise : [u'of'] -the common : [u'crowd', u'lot', u'."'] -uncertain as : [u'to'] -year I : [u'heard'] -sure is : [u'the'] -little trouble : [u'was'] -. Well : [u','] -sinister house : [u'with'] -likely story : [u'!'] -assistance in : [u'the'] -of wealth : [u','] -on its : [u'way'] -secrets of : [u'making'] -analysis. : ['PP'] -style, : [u'and', u'in'] -was apparently : [u'the'] -health landlord : [u','] -been twisted : [u'in'] -grating wheels : [u'against'] -temporary convenience : [u'until'] -ENGINEER' : [u'S'] -undated, : [u'and'] -of justice : [u'.', u'is'] -my weary : [u'eyes'] -be following : [u'a'] -Cal., : [u'U'] -already spoken : [u'to'] -! Good : [u'afternoon'] -signal which : [u'was'] -words I : [u'regretted'] -said my : [u'assistant', u'wife', u'uncle', u'companion', u'friend', u'say', u'patient', u'employer'] -The men : [u'had'] -Men?' : [u'he'] -March 10 : [u','] -Montana, : [u'and'] -pay. : [u'It', 'PP'] -. Altogether : [u','] -Stars and : [u'Stripes'] -still dangerously : [u'slippery'] -in so : [u'high', u'unprecedented', u'frightful'] -and Director : [u''] -handkerchief very : [u'tightly'] -big one : [u','] -eye took : [u'in'] -and humdrum : [u'routine'] -Nearly all : [u'the'] -direction and : [u'the', u'wondering'] -on those : [u'of'] -into character : [u'.'] -insist that : [u','] -park stretched : [u'up'] -about once : [u'a'] -associate him : [u'with'] -he felt : [u'any', u'that'] -question occurred : [u'in'] -whatsoever. : [u'You'] -If they : [u'fire', u'had'] -a friendly : [u'footing', u'supper'] -placed my : [u'revolver'] -had lost : [u'a'] -the windows : [u'of', u',', u'.', u'were', u'on', u'to', u'and', u'?"'] -found a : [u'gentleman'] -or anything : [u'but', u'of'] -handkerchief wrapped : [u','] -heavy brown : [u'volume'] -Bankers' : [u'safes'] -fresh life : [u'and'] -Twenty four : [u'geese'] -with its : [u'writhing', u'conventionalities', u'inward', u'back', u'keen', u'attached'] -hurry, : [u'shouted', u'as'] -hurry. : ['PP'] -why they : [u'should'] -said there : [u'was'] -staggered, : [u'sir', u'and'] -beckoned to : [u'me'] -Shortly after : [u'my', u'our'] -and Hampshire : [u'in'] -. ' Why : [u','] -. Volunteers : [u'and'] -of awaiting : [u'him'] -pocket he : [u'started'] -be stopped : [u".'"] -expectancies for : [u'the'] -An Eley : [u"'"] -ll never : [u'persuade'] -been able : [u'to'] -you there : [u'."', u'at'] -, thief : [u',', u"!'"] -box room : [u'cupboard'] -whom he : [u'has', u'had', u'now', u'might', u'loved', u'lays'] -ours, : [u'it'] -that many : [u'have'] -been heard : [u'upon', u'of', u'either'] -fine to : [u'me'] -heavy iron : [u'gates'] -Frank had : [u'been'] -fell quite : [u'distinctly'] -Gazetteer." : [u'He'] -perturbed expression : [u'upon'] -few years : [u'older', u',', u'ago'] -cluster of : [u'roofs'] -good about : [u'it'] -correct this : [u'article'] -the Isle : [u'of'] -The lamp : [u'still'] -laughed heartily : [u'for', u'. "', u'.'] -little inconvenience : [u'which'] -pin point : [u'pupils'] -when starting : [u'upon'] -treated her : [u'ungenerously'] -very red : [u'hair'] -had called : [u'upon'] -Redistributing Project : [u'Gutenberg'] -sure your : [u'good'] -and feeling : [u'that'] -beforehand, : [u'so'] -active links : [u'to', u'or'] -settled," : [u'said'] -is wide : [u','] -done at : [u'once'] -bore you : [u'with', u'to'] -unlike his : [u'usual'] -striking in : [u'her'] -turned upon : [u'my', u'the'] -Your presence : [u'might'] -and find : [u'him'] -The manor : [u'house'] -your coat : [u'and'] -was daylight : [u'I'] -" Texas : [u','] -all thought : [u'of'] -kindled at : [u'the'] -to breakfast : [u'with', u'in'] -by blew : [u'out'] -The night : [u','] -yet this : [u'John'] -extent in : [u'favour'] -perfectly fresh : [u',', u'.'] -creditable to : [u'his'] -shining hat : [u','] -loose and : [u'fluttered'] -whose step : [u'I'] -hum! : [u'La', u'Prima'] -considerable sum : [u',', u'of'] -appear. : ['PP'] -sill and : [u'framework'] -thing as : [u'that', u'a'] -Do come : [u'!'] -rubber. : [u'It', 'PP'] -clothes might : [u'betray'] -twist steel : [u'pokers'] -beneath. : [u'These', u'My', u'He'] -me long : [u'to'] -Do I : [u'make'] -can help : [u','] -When we : [u'were'] -circle is : [u'drawn'] -carpets and : [u'no'] -stranger from : [u'his'] -fitted neither : [u'to'] -lighter as : [u'we'] -lost all : [u'enterprise'] -helper in : [u'many'] -paragraph. : ['PP'] -deserts. : [u'This'] -deserts, : [u'it'] -every event : [u'of'] -in their : [u'mouths', u'position', u'investigations', u'order', u'expedition', u'place', u'power'] -and desperate : [u'man'] -her freedom : [u'."'] -us thrust : [u'this'] -little glimpse : [u'of'] -blue and : [u'would'] -, bachelor : [u'.'] -surely, : [u'since', u'it'] -his gigantic : [u'client'] -when we : [u'left', u'found', u'had', u'went', u'heard', u'at', u'were', u'turned', u'reached'] -me explain : [u'.'] -s before : [u'very'] -broad balustraded : [u'bridge'] -he stumbled : [u'slowly'] -the appointment : [u'with', u'."'] -, every : [u'possible', u'moment', u'man', u'businesslike'] -interrupt you : [u'."'] -interest yourself : [u'in'] -very good : [u'morning', u'about', u'of', u'in', u'night', u'result', u'thing'] -felt, : [u'however'] -joy our : [u'client'] -felt. : ['PP'] -the premises : [u'."', u',', u'in'] -been laid : [u'out'] -so pleased : [u'at'] -conveyed from : [u'the'] -problem will : [u'be'] -throwing the : [u'noose'] -seamed it : [u'across'] -had gone : [u'.', u'up', u'to', u'out', u',', u'through', u'twelve', u'off', u'away'] -the yellow : [u'light', u'envelope'] -aunt at : [u'Harrow'] -ingenious mind : [u'by'] -eleven. : ['PP', u'Give'] -to ask : [u'you', u'if', u'about', u'for', u'Mrs', u'my', u'me', u'myself'] -incident, : [u'as'] -gather, : [u'to'] -to her : [u'own', u'than', u'photograph', u'that', u'mother', u'?', u',', u'from', u'the', u'and', u'assistance', u'room', u'chamber', u'."', u'again', u'of', u'maid', u'confidential', u'in', u'also', u'uncle', u'last', u'lover', u'story', u'stepmother', u'husband', u'little', u'as'] -marry him : [u','] -Stoner and : [u'I'] -murderous than : [u'his'] -, UT : [u'84116'] -the funny : [u'stories'] -great elemental : [u'forces'] -suicide, : [u'and'] -suicide. : ['PP'] -retire, : [u'for'] -the district : [u','] -driven from : [u'his'] -you told : [u'me'] -was scattered : [u'about'] -hardly tell : [u'a'] -Born in : [u'New', u'1846'] -.' Let : [u'us'] -up,' : [u'I'] -crisp smoothness : [u'of'] -frightened, : [u'half'] -divined in : [u'the'] -eleven, : [u'a'] -eccentric, : [u'anatomy'] -cat in : [u'it'] -curt announcement : [u'and', u'that'] -John,' : [u'she', u'said'] -as father : [u'could'] -would have : [u'placed', u'had', u'made', u'the', u'a', u'been', u'given', u'her', u'noted', u'your', u'thrown', u'failed', u'spoken', u'arrived', u'done', u'endured', u'followed', u'joined', u'believed', u'ever', u'told'] -, rushing : [u'to'] -smiling face : [u'and'] -he seemed : [u'to', u'a'] -is abnormally : [u'cruel'] -time as : [u'the', u'possible'] -official had : [u'come'] -board with : [u'"'] -Nonconformist clergyman : [u'.'] -in which : [u'I', u'we', u'Mr', u'you', u'the', u'direction', u'all', u'it', u'any', u'she', u',', u'my', u'Miss', u'her', u'he'] -be correct : [u','] -busy to : [u'think'] -satisfied with : [u'such'] -up her : [u'mind', u'veil', u'hands'] -To my : [u'surprise'] -, entered : [u'the'] -naturally of : [u'a'] -To me : [u',', u'at', u'it'] -without light : [u'.'] -is Miss : [u'Stoner'] -send their : [u'singular'] -chair had : [u'been'] -propose to : [u'do', u'Miss'] -still wanted : [u'ten'] -and me : [u'."', u'to'] -very life : [u'may'] -from insufficient : [u'data'] -bleeding, : [u'so'] -thoughtful look : [u'.'] -Your French : [u'gold'] -late forever : [u'too'] -silent once : [u'more'] -, march : [u'upstairs'] -candle. : [u'Then'] -produce our : [u'new'] -the continued : [u'resistance'] -way,' : [u'said'] -and my : [u'wife', u'poor', u'hearing', u'son', u'girl', u'father', u'room', u'suspicions', u'life', u'bedroom', u'coat', u'legs', u'ulster', u'page', u'unhappy', u'mind', u'own'] -and close : [u'fitting', u'by'] -given against : [u'the'] -"' Pooh : [u"!'"] -less foresight : [u'now'] -complete," : [u'said'] -failed me : [u'suddenly'] -designed for : [u'so'] -fortune, : [u'did', u'met', u'and'] -fortune. : ['PP', u'I'] -yet her : [u'hair'] -also govern : [u'what'] -which several : [u'German'] -some company : [u'dropping'] -good natured : [u'man'] -lounging about : [u'his'] -indicated the : [u'nature'] -remained to : [u'assure'] -give us : [u'your', u'the', u'a'] -from boarding : [u'schools'] -long day : [u'."'] -drew out : [u'a'] -chalk pits : [u'which'] -scene in : [u'the'] -lens. " : [u'Now'] -any hesitation : [u'.'] -stretch a : [u'point'] -father didn : [u"'"] -running feet : [u'and'] -And Mademoiselle : [u"'"] -innocence in : [u'the'] -the garden : [u'.', u'with', u'looked', u'below', u'in', u'to', u'behind', u'without'] -scrupulous in : [u'the'] -and got : [u'my'] -announcement that : [u'the'] -That second : [u'window'] -it may : [u'have', u'not', u'be', u'.', u'take', u'prove', u'help', u'grow'] -, sit : [u'down'] -the message : [u','] -the lodge : [u'keeper', u'to', u'.'] -." Then : [u',', u'he'] -could afford : [u'to'] -He conceives : [u'an'] -would emerge : [u'in'] -could produce : [u'your'] -A dozen : [u'yards'] -one wall : [u'of'] -being satisfied : [u'with', u'.'] -together and : [u'his', u'chuckled'] -How often : [u'?"'] -a size : [u'larger'] -and venomous : [u'beast'] -won' : [u't'] -sent James : [u'off'] -DISSOLVED. : ['PP'] -trite one : [u'.'] -trap out : [u'."'] -attics, : [u'which'] -out until : [u'it'] -in anything : [u','] -bird. : [u'I', u'Then'] -direct his : [u'attention'] -bird, : [u'we', u'so', u'I', u'Jem', u'rushed', u'and'] -and ordered : [u'two'] -everyone had : [u'given'] -bird' : [u's'] -Pray make : [u'no'] -indeed!" : [u'said', u'cried'] -At such : [u'times'] -be immensely : [u'obliged'] -Becher' : [u's'] -horse on : [u'into'] -neighbourhood. : [u'McCarthy', u'Holmes', 'PP'] -*** END : [u'OF'] -neighbourhood, : [u'it', u'however', u'and'] -using my : [u'room'] -of Hatherley : [u','] -should need : [u'it'] -And you : [u'did', u'are', u'don', u'have', u'were', u'thought', u'can', u'may', u'think', u'know'] -Yard and : [u'upon'] -our search : [u'."'] -Coroner: : [u'Did', u'What', u'I', u'That', u'How'] -keenest for : [u'such'] -feat? : [u'I'] -termination, : [u'have'] -darkness he : [u'missed'] -somehow I : [u'can'] -it cost : [u'them'] -rushed into : [u'the'] -concerned with : [u'politics', u'an'] -very simple : [u'problem', u'test'] -I wonder : [u'who', u'at', u'that', u'I'] -: On : [u'account'] -arms my : [u'uncle'] -father fatally : [u'injured'] -s left : [u'leg'] -much against : [u'the'] -there seemed : [u'to'] -to crack : [u','] -fluffy brown : [u'dust'] -assuredly gone : [u'down'] -an inspector : [u'and', u','] -use this : [u'eBook'] -of crumpled : [u'morning'] -local blacksmith : [u'over'] -at Lancaster : [u'Gate'] -rapid deductions : [u','] -more he : [u'was'] -commence with : [u'the'] -sat a : [u'small', u'tall'] -the real : [u'vivid', u'name', u'person'] -had completed : [u'their'] -wheeler, : [u'which'] -laughed softly : [u'to'] -her temper : [u'was'] -e' : [u's'] -deepest impression : [u'upon'] -fire, : [u'however', u'it', u'and', u'her', u'I', u'Watson', u'for', u'Mr', u'"'] -fire. : [u'You', 'PP', u'Then', u'The', u'Pray'] -machinery which : [u'had'] -moistened his : [u'sponge'] -all such : [u'narratives'] -stage, : [u'and'] -to disregard : [u'what'] -common thing : [u'for'] -that everything : [u'was', u'is'] -out alone : [u'."'] -see for : [u'yourself', u'yourselves'] -rapt in : [u'the'] -doing business : [u'with'] -central portion : [u'and', u'was'] -a sweetheart : [u'?'] -lectures into : [u'a'] -s presence : [u'in'] -not hysterical : [u','] -International donations : [u'are'] -the keeping : [u'of'] -yet abstracted : [u'fashion'] -Flora Millar : [u',', u'in', u'."'] -" But : [u'your', u'you', u'a', u'how', u'what', u'it', u'she', u'to', u',', u'he', u'if', u'the', u'who', u'his', u'I', u'they', u'have', u'of', u'not', u'why', u'without', u'we', u'this', u'with', u'perhaps', u'Mr'] -and insects : [u'.'] -heirs were : [u'of'] -find anything : [u'which'] -!" For : [u'a'] -overseen by : [u'your'] -that with : [u'your', u'her'] -day by : [u'smearing'] -." Tottering : [u'and'] -Majesty will : [u','] -me half : [u'mad'] -deduction. " : [u'When'] -concentrated upon : [u'the'] -is strange : [u'and'] -circumstances which : [u'I'] -hat. " : [u'I'] -be so : [u'ridiculously', u'bound', u',', u'.', u'with', u'warm', u'secluded', u'severely', u'in', u'good'] -confirm or : [u'destroy'] -kings of : [u'Bohemia'] -pen in : [u'his'] -does fate : [u'play'] -the end : [u'of', u'had', u'wall'] -greeting he : [u'seated'] -be accused : [u'in'] -violence, : [u'and', u'no'] -evil days : [u'.'] -violence. : [u'All'] -cruelty to : [u'his'] -the Union : [u'."', u'Jack'] -almost to : [u'the', u'blows'] -possible to : [u'conceive', u'confirm'] -clutched it : [u'up'] -With his : [u'collar'] -of 250 : [u'pounds'] -premature grey : [u','] -face peeled : [u'off'] -alter the : [u'matter'] -but with : [u'a', u'the', u'my', u'so'] -household. : [u'What'] -household, : [u'and', u'some', u'Mr'] -the town : [u'.', u'what'] -forth in : [u'a', u'the', u'paragraph', u'paragraphs', u'this', u'Section'] -and followed : [u'him'] -later this : [u'same'] -Monday he : [u'made'] -whole country : [u'as'] -270 half : [u'pennies'] -hand at : [u'anything', u'the'] -open it : [u'?"', u'.'] -at cards : [u'."', u'and'] -reached Baker : [u'Street'] -unconscious. : ['PP'] -lay there : [u','] -husband until : [u'I'] -should marry : [u'another', u'before'] -this thought : [u'in'] -the Civil : [u'War'] -Alice had : [u'rights'] -John Swain : [u',', u'cleared'] -On entering : [u'his', u'the'] -bushy whiskers : [u',', u'.'] -which lie : [u'behind', u'at'] -royal brougham : [u'rolled'] -connected with : [u'the', u'his'] -pocket and : [u'looked', u'flattened', u'threw', u'made'] -our persuasions : [u'and'] -was scraping : [u'at'] -Hosmer was : [u'very'] -successfully for : [u'the'] -answer to : [u'an', u'everything', u'our'] -have the : [u'photograph', u'honour', u'great', u'vacancy', u'pleasure', u'goodness', u'use', u'opportunity', u'keeping', u'date', u'effect', u'others', u'trap', u'key', u'same', u'feathers', u'pick', u'other', u'advantage', u'kindness', u'details'] -the people : [u'who'] -did bang : [u'out'] -ever lived : [u'.'] -overwhelmed by : [u'the'] -allow disclaimers : [u'of'] -choked, : [u'and'] -stables, : [u'and'] -two lower : [u'buttons'] -the strangest : [u'and'] -gives a : [u'meaning'] -bloc in : [u'a'] -their conversation : [u'coming', u'I'] -breathing and : [u'by'] -German accent : [u'. "', u'.'] -types of : [u'damages'] -" You : [u'had', u'may', u'will', u'have', u'are', u'don', u'must', u'see', u'did', u'could', u'want', u"'", u'reasoned', u'interest', u'appeared', u'know', u'were', u'didn', u'fill', u'forget', u'think', u'?', u'can', u'speak', u'saw', u'horrify', u'dragged', u'seem', u'heard', u'shut', u'would', u'then', u'villain'] -impossible. : [u'It'] -impossible, : [u'however', u'whatever', u'but'] -the miserable : [u'weather'] -this poor : [u'Horner', u'girl', u'creature'] -the stables : [u','] -the keeper : [u'of'] -wander about : [u'the'] -tangible cause : [u'.'] -visitors. : ['PP'] -quarters! : [u'Twelve'] -mind and : [u'above', u'put', u'prevent', u'fairly', u'fearless'] -a hat : [u'securer', u'of', u'three'] -slit of : [u'dim'] -. John : [u"'", u'Hare', u'Clay', u'Turner', u'Swain', u'Horner'] -stream, : [u'and'] -honour. : [u'He'] -honour, : [u'my'] -money in : [u'this', u'Australia', u'a', u'some'] -and thieves : [u'!'] -instruction. : ['PP'] -details which : [u'were', u'I', u'seem'] -provide this : [u'table'] -pride. : [u'It'] -money is : [u'in'] -of revenge : [u','] -dash it : [u'all'] -ploughed into : [u'a'] -open in : [u'this'] -invited, : [u'and'] -few seconds : [u'sufficed', u'of'] -chin waiting : [u'outside'] -have learned : [u'that', u'something'] -making the : [u'doctor'] -own special : [u'subject'] -it when : [u'fagged', u'examining', u'you'] -anyone had : [u'we'] -From Hatherley : [u'Farm'] -owe you : [u'an'] -little item : [u'in'] -yawning. " : [u'Alas'] -fastened upon : [u'the'] -we presume : [u','] -not gain : [u'very'] -injury to : [u'it'] -from some : [u'private', u'foolish', u'small', u'sudden', u'strong'] -wear it : [u'on'] -keys in : [u'his', u'the'] -nights on : [u'end'] -or access : [u'to'] -our debts : [u','] -receiving it : [u','] -drawn a : [u'net'] -The question : [u'was', u'for', u'now'] -present save : [u'the'] -Anderson", : [u'of'] -A.' : [u'That'] -A., : [u'there'] -next. : [u'I'] -please visit : [u':'] -at and : [u','] -determine." : [u'He'] -nature.' : [u'He'] -we at : [u'last'] -at any : [u'rate', u'moment', u'risks', u'time'] -eager enough : [u'to'] -his curious : [u'conduct'] -classes of : [u'the'] -Hugh Boone : [u',', u'had', u'."'] -and Pope : [u"'"] -else would : [u'do', u'follow'] -Experience," : [u'said'] -exposure of : [u'the'] -thick soled : [u'shooting'] -dismissed, : [u'and'] -lightning across : [u'the'] -Quite so : [u',"', u'!', u';', u'.', u'."'] -dreadful, : [u'rigid'] -villa which : [u'stood'] -come, : [u'only', u'and', u'so', u'at', u'Watson', u'they', u'will', u'you', u'he', u'it', u'for'] -come. : [u'I', 'PP', u'Hence', u'He', u'Now', u'What', u'In'] -Far away : [u'we'] -pay munificent : [u".'"] -, left : [u'handed', u'the'] -come! : [u'I'] -grew broader : [u','] -the motive : [u'was', u'.'] -Stark stopped : [u'at'] -fate of : [u'the'] -exempt status : [u'by', u'with'] -though they : [u'hardly'] -I clapped : [u'a'] -soon asleep : [u'.'] -rejected. : ['PP'] -It exists : [u'because'] -, patted : [u'his'] -methods by : [u'which'] -groaned, : [u'for'] -. ' A : [u'husband'] -has ever : [u'been'] -, ostlers : [u','] -. ' I : [u'shall', u'perceive', u'know', u'was', u'have', u'could'] -morrow." : [u'With'] -I panted : [u'.'] -are four : [u'letters'] -towards me : [u'.', u'again'] -incident gives : [u'zest'] -particularly unpleasant : [u'thing'] -the neat : [u'little'] -your warmest : [u'thanks'] -solved what : [u'Neville'] -sofa is : [u'very'] -are removed : [u'.'] -But' : [u'Cooee'] -frequently indulged : [u'in'] -the works : [u'from', u'possessed'] -For heaven : [u"'"] -huge famished : [u'brute'] -But, : [u'you', u'after', u'surely', u'as', u'madam', u'indeed', u'dear'] -be difficult : [u'to'] -absolute pallor : [u'of'] -it should : [u'be', u'not'] -( with : [u'considerable'] -our fare : [u','] -your order : [u','] -sofa in : [u'a'] -he glared : [u'at', u'down'] -doing anything : [u'so'] -sealed it : [u'and'] -for purely : [u'nominal'] -10s., : [u'while'] -over by : [u'my'] -located also : [u'govern'] -)." That : [u'was'] -which neither : [u'alone'] -observer, : [u'but'] -wound, : [u'cleaned'] -wound. : [u'I'] -clue in : [u'them', u'the'] -, weak : [u'and'] -brims curled : [u'at'] -belonging to : [u'the', u'my'] -yet rich : [u'style'] -my remark : [u'.'] -such singular : [u'features'] -kind spoken : [u','] -unexpected turn : [u'of'] -bowed shoulders : [u'gave', u','] -upon fact : [u'on'] -my Bradshaw : [u'. "'] -sat down : [u'beside', u'.', u'at', u'to', u'for'] -patent facts : [u'which'] -a soft : [u'cloth', u'tread'] -the management : [u'of'] -lane came : [u'a'] -you when : [u'they'] -room here : [u'."'] -Court looked : [u'like'] -narrow white : [u'counterpaned'] -onto his : [u'arms'] -obstacle to : [u'our'] -is unimpeachable : [u'.'] -salary may : [u'recompense'] -furnished little : [u'chamber'] -and puffed : [u'neck'] -retained some : [u'degree'] -the forts : [u'upon'] -to Brixton : [u'Road'] -detained. : ['PP'] -stairs together : [u'.'] -natured man : [u'.'] -" Or : [u'rather'] -was attired : [u'in'] -road stood : [u'our'] -performance was : [u'gone'] -danger, : [u'so', u'or'] -. Project : [u'Gutenberg'] -danger. : [u'How', 'PP', u'You', u'Still'] -firmly. : ['PP'] -instituted. : ['PP'] -and arrange : [u'the'] -" Of : [u'what', u'Friday', u'course'] -" Oh : [u',', u'!'] -" On : [u'the', u'June', u'Monday', u'your', u'entering'] -READ THIS : [u'BEFORE'] -, winding : [u'gravel'] -and spent : [u'the', u'some'] -your business : [u'been', u','] -to east : [u'.'] -repelled by : [u'the'] -links and : [u'up'] -Camberwell. : ['PP'] -she waited : [u'upon'] -of cigarettes : [u'here'] -Gravesend postmark : [u'and'] -he sees : [u'no'] -but by : [u'bedtime'] -the idea : [u',', u'.', u'of', u'that'] -be invited : [u','] -red circles : [u'of'] -of something : [u'happening', u'akin', u'of'] -gentleman named : [u'Hosmer'] -who made : [u'his'] -more so : [u'than', u'.', u'by', u'as'] -ordered me : [u'to'] -, mister : [u',"'] -solemnly he : [u'was'] -, obviously : [u'it'] -so suspicious : [u'and'] -is founded : [u'upon'] -trap. : ['PP'] -trap, : [u'with', u'his'] -way when : [u'you'] -place clean : [u'that'] -I gave : [u'to', u'him', u'a', u'the', u'it'] -jacket and : [u'taking', u'cravat'] -broad bars : [u'of'] -heel, : [u'and'] -pounds down : [u'in'] -gravity was : [u'engaging'] -my death : [u'would'] -covered volume : [u'from'] -house resounded : [u'with'] -is one : [u'of', u'remarkable', u'thing', u'which', u'point', u'who', u'other'] -all carefully : [u'dried'] -mere curiosity : [u','] -unpack the : [u'money'] -then turned : [u'upon'] -rose at : [u'once'] -chance. : ['PP', u'Here'] -nobleman. : [u'I'] -how worn : [u','] -are coming : [u'along'] -to strike : [u'his', u'him', u'deeper', u'and'] -prolonged scene : [u'that'] -any pleasure : [u'."'] -trim side : [u'whiskers'] -morning drive : [u'?"'] -shot eyes : [u','] -all its : [u'advantages', u'disadvantages', u'bearings'] -anxious ears : [u'have'] -scattered knots : [u'of'] -There would : [u'be'] -few hurried : [u'words'] -wrinkled velvet : [u'collar'] -Waterloo. : ['PP', u'Sir', u'I'] -marks him : [u'as'] -looking in : [u'my'] -lad, : [u'and', u'but', u'your'] -the strict : [u'principles', u'rules'] -lad. : ['PP'] -cardboard hammered : [u'on'] -a supply : [u'of'] -presume?" : [u'said'] -distinctly saw : [u'his'] -knowledge was : [u'not'] -staff commander : [u'who'] -very unexpected : [u'turn'] -with impunity : [u',', u'.'] -weedy grass : [u'and'] -his murderer : [u'.'] -deep toe : [u'and'] -the proceedings : [u'from', u','] -of thirty : [u'.', u','] -really have : [u'made', u'done'] -in connection : [u'with'] -had fixed : [u'it'] -has her : [u'freedom'] -thought. " : [u'He'] -latter. : ['PP'] -latter, : [u'it', u'as'] -supplier. : ['PP'] -eastern division : [u'.'] -of cold : [u'woodcock'] -quite mad : [u'if'] -pointing at : [u'the'] -His height : [u'I'] -yet twenty : [u'years'] -a struggle : [u',', u'between'] -man sent : [u'for'] -still there : [u','] -rather for : [u'the'] -mendicants and : [u'so'] -a cup : [u'of'] -my pistol : [u'to'] -it back : [u'to'] -obliged to : [u'lie', u'work', u'you'] -still share : [u'my'] -them they : [u'seemed'] -headed folk : [u','] -which makes : [u'one', u'me', u'the'] -of Threadneedle : [u'Street'] -about Project : [u'Gutenberg'] -evidence implicating : [u'Flora'] -, Jem : [u"?'", u".'", u';'] -for openness : [u','] -laying them : [u'out'] -attendant had : [u'hurried'] -, Alice : [u','] -rumours of : [u'foul'] -wore tinted : [u'glasses'] -he wrote : [u'"', u'the', u'hurriedly'] -At two : [u'o'] -very independent : [u'about', u'in'] -your absence : [u'?"'] -so well : [u',', u'.', u'how'] -my employer : [u',', u'had'] -true character : [u'of'] -to save : [u'young'] -But will : [u'he'] -might avert : [u'it'] -am staying : [u'with', u'there'] -to raise : [u'the', u'his', u'our', u'a'] -Saxe Coburg : [u'Square'] -revellers. : [u'A'] -rising. " : [u'I', u'Sir'] -he and : [u'his', u'the'] -hair on : [u'his'] -safely trust : [u'him'] -seeing an : [u'official'] -object. ' : [u'The'] -undoubtedly some : [u'friend'] -cart dashed : [u'up'] -and discoloured : [u'that'] -as any : [u'man', u'young'] -are usually : [u'the', u'people'] -charm of : [u'variety'] -mixture of : [u'the'] -lady gave : [u'a'] -had fallen : [u',', u'over', u'.', u'in', u'since'] -did as : [u'he', u'I'] -on seven : [u'and'] -paint, : [u'laying'] -the ill : [u'trimmed'] -crying. : [u'As'] -showing that : [u'it'] -positive one : [u','] -letters," : [u'he'] -extra tumbler : [u'upon'] -Archive. : ['PP'] -suspicion that : [u'the'] -and Michael : [u'Hart'] -, ordered : [u'fresh'] -cost them : [u'two'] -so terrified : [u'that'] -like an : [u'accurate', u'electric', u'immense'] -my leaving : [u'it'] -and straight : [u'into'] -knowing it : [u','] -tell heavily : [u'against'] -, bound : [u'from'] -. " Why : [u',', u'should', u'does', u',"'] -fit of : [u'laughter', u'anger'] -The portly : [u'client'] -turn things : [u'are'] -and cheerless : [u','] -and sister : [u';', u'of'] -witness my : [u'will'] -seems indeed : [u'to'] -Updated editions : [u'will'] -La Scala : [u','] -. Hers : [u'had'] -cover was : [u'a'] -appointment he : [u'never'] -their beds : [u',', u'.'] -rather ruefully : [u'.'] -uproar. : [u'He'] -morrow," : [u'it'] -From the : [u'lower', u'time', u'first'] -I made : [u'the', u'my', u'inquiries', u'a', u'for', u'up', u'him'] -occasionally hung : [u'about'] -the tell : [u'tale'] -snapped, : [u'and'] -( and : [u'you'] -, on : [u'the', u'Monday', u'duty', u'which', u'December', u'consideration', u'pretence', u'Wednesday', u'our', u'promising'] -his brains : [u'to'] -patch near : [u'the'] -hesitate,' : [u'said'] -? It : [u'was', u'could', u'is', u'seems', u'would', u'might', u'appeared'] -, of : [u'dubious', u'his', u'course', u'Miss', u'the', u'Lebanon', u'Scotland', u'Fenchurch', u'Ballarat', u'all', u'which', u'St', u'Lee', u'Brixton', u'that', u'this', u'Covent', u'Crane', u'these', u'Stoke', u'how', u'Greenwich', u'my', u'having', u'so', u'her', u'Threadneedle', u'whom'] -? Is : [u'it'] -committed myself : [u'.'] -and little : [u'low'] -people had : [u'strange'] -experience has : [u'been'] -which encompass : [u'me'] -builder must : [u'be'] -comic, : [u'a'] -? If : [u'the', u'she', u'so', u'his'] -as long : [u'as'] -, or : [u'a', u'none', u'what', u'his', u'turn', u'whether', u'it', u'Madame', u'the', u'when', u'dark', u'anything', u'at', u'you', u'that', u'I', u'grieved', u'else', u'if', u'even', u'feigned', u',', u'stopping', u'in', u'might', u'left', u'rather', u'on', u'west', u'plate', u'bending', u'perhaps', u'sit', u'120', u'amusing', u'who', u'from', u'other', u'with', u'any', u'computer', u'additions'] -company once : [u'more'] -flames, : [u'but'] -appearance saved : [u'the'] -he shrieked : [u',', u'.', u', "'] -I spared : [u'him'] -yonder. : [u'There'] -letters in : [u'in'] -dreadful time : [u'is'] -in unravelling : [u'the'] -you pick : [u'him'] -mask to : [u'showing'] -stretched himself : [u'out'] -least to : [u'my'] -, fighting : [u'against'] -quietly as : [u'possible'] -an analytical : [u'reasoner'] -make our : [u'way'] -, everything : [u'was'] -high gaiters : [u','] -be more : [u'disturbing', u'successful', u'exciting', u'than', u'valuable', u'natural'] -observant, : [u'as'] -like you : [u'to'] -brought round : [u'both', u'a'] -driving at : [u'?'] -Miss Alice : [u'Rucastle', u"'", u'wasn', u'had'] -were a : [u'gang', u'partie', u'slut', u'couple', u'philanthropist'] -anxiety all : [u'swept'] -keep out : [u'the'] -has saved : [u'England'] -banker, : [u'rising'] -Heavy bands : [u'of'] -borne the : [u'repute'] -the evident : [u'confusion'] -They did : [u'not'] -only when : [u'you'] -a receipt : [u'upon'] -we listened : [u'in'] -opinion upon : [u'the'] -obliging youth : [u'?"'] -eyebrows. " : [u'What'] -remember every : [u'feature'] -tended, : [u'no'] -myself absolved : [u'from'] -more value : [u'than'] -deeply attracted : [u'by'] -and new : [u'computers'] -pale as : [u'death'] -And many : [u'men'] -a hook : [u'just'] -distributed in : [u'machine'] -equal light : [u'and'] -secure your : [u'co'] -the United : [u'States'] -fourth a : [u'field'] -energetic agent : [u'in'] -knock the : [u'snow'] -already since : [u'I'] -much easier : [u'.'] -burgled during : [u'the'] -should succeed : [u'me'] -known as : [u'a', u'the'] -called and : [u'gave'] -evening, : [u'Mr', u'which', u'though', u'and', u'after', u'so'] -stump of : [u'a'] -evening. : [u'By', 'PP', u'It', u'But'] -sofa to : [u'get'] -tm collection : [u'.', u'will'] -and complimentary : [u'of'] -Sholto murder : [u'and'] -wearisome journey : [u','] -prints, : [u'nothing'] -" Mrs : [u'.'] -library, : [u'where'] -you nor : [u'your'] -stock with : [u'the'] -compose yourself : [u','] -pips. : [u'What', 'PP'] -. " Have : [u'you'] -pips, : [u'which', u'I'] -market place : [u',"'] -candid. : [u'Can'] -, " to : [u'single', u'Mr', u'the'] -; yesterday : [u'morning'] -with flushed : [u'cheeks'] -writing is : [u'undoubtedly'] -exchanged a : [u'few'] -Majesty say : [u'so'] -much the : [u'worse', u'same'] -his object : [u'in'] -eastward in : [u'a'] -of it : [u',"', u'?"', u'. "', u'that', u'.', u'as', u'in', u',', u'all', u'with', u'farthest', u'would', u"?'", u'."', u'?', u'into', u'had', u'recalled', u'within', u'!'] -pipe for : [u'me'] -/ fundraising : [u'.'] -, examining : [u'minutely', u'the'] -and brushed : [u'past'] -conclusions from : [u'the'] -aquiline features : [u'.'] -him an : [u'arm', u'advance'] -the summer : [u'sun', u'of'] -will draw : [u'your'] -under our : [u'roof'] -, smokes : [u'Indian'] -examined it : [u'closely', u'intently', u'.'] -nearly always : [u'some'] -him as : [u'the', u'on', u'a', u'he', u'either', u'to'] -this grey : [u'house'] -how very : [u'useful'] -mousseline de : [u'soie'] -typewritten letter : [u'is'] -him at : [u'every', u'the', u'Boscombe', u'once'] -ulster. : [u'After'] -, plunging : [u'in'] -That sounds : [u'a'] -terrible trap : [u'for'] -t wonder : [u'that'] -into my : [u'rooms', u'chair', u'head', u'walking', u'inheritance', u'hand', u'room', u'confidence', u'memory', u'ear', u'weary', u'mouth', u'hands', u'mind'] -to weaken : [u'the'] -emerald snake : [u'ring'] -never spoke : [u'of'] -strikes even : [u'deeper'] -also the : [u'allusions'] -sunk in : [u'a', u'the'] -with hardly : [u'a'] -recalled in : [u'an'] -in danger : [u'it', u'--"'] -detailing this : [u'singular'] -result," : [u'I'] -asked Arthur : [u'.'] -danger do : [u'you'] -low whistle : [u',', u'which'] -leaving America : [u'.'] -results that : [u'I'] -answer, : [u'because'] -answer. : ['PP'] -our luncheon : [u'.'] -make up : [u'for'] -obsolete, : [u'old'] -me professionally : [u'.'] -use was : [u'my'] -the sundial : [u",'", u'.\'"', u','] -general air : [u'of'] -actual ill : [u'treatment'] -four large : [u'staples'] -suffer from : [u'her'] -What sundial : [u"?'"] -the Horsham : [u'lawyer', u'property'] -elsewhere. : ['PP'] -Wellington Street : [u'wheeled'] -. Step : [u'into'] -little boy : [u'home'] -had now : [u'returned'] -recovered her : [u'consciousness'] -is out : [u'of'] -unhappy father : [u','] -is our : [u'French', u'signal', u'task'] -fair dowry : [u'.'] -have called : [u'to', u'me'] -upon so : [u'much'] -stalls, : [u'my'] -and ushered : [u'in'] -had not : [u'spoken', u'yet', u'been', u'a', u'.', u'seen', u'got', u'gone', u'already', u'come', u'an', u'he', u'retired', u'recognised', u'forgotten', u'finished', u'I', u'done'] -works on : [u'different'] -spotted my : [u'man'] -this brute : [u'to'] -George and : [u'cut'] -not look : [u'."'] -lady. " : [u'Frank'] -entirely erroneous : [u'conclusion'] -of fine : [u'shops'] -yourself doubt : [u'upon'] -villain in : [u'you'] -follow," : [u'he'] -surprise and : [u'delight'] -shriek of : [u'"', u'joy'] -jump it : [u".'"] -Dundee,' : [u'I'] -drawer which : [u'they'] -verge of : [u'a', u'foppishness'] -married woman : [u'grabs'] -how could : [u'you', u'any'] -whishing sound : [u'that'] -cringe and : [u'crawl'] -the Regency : [u'.'] -confessed that : [u'they'] -tension in : [u'which'] -feared as : [u'much'] -face towards : [u'us'] -indulge in : [u'ferocious'] -the voice : [u'of', u','] -is why : [u'I', u'they'] -of grey : [u','] -as Reading : [u','] -a corner : [u',', u'house', u'and', u'holding'] -be many : [u'who'] -hours or : [u'so'] -, beckoning : [u'me', u'to'] -ll do : [u'.', u'better'] -work upon : [u'your', u'him', u'it'] -sweep, : [u'with'] -senseless, : [u'with'] -hours of : [u'the', u'burrowing'] -in hard : [u'work'] -Simon marriage : [u',', u'case'] -eBooks, : [u'unless', u'and'] -morning emerge : [u'as'] -eBooks. : [u'Redistribution'] -black cloud : [u'which'] -comes under : [u'the'] -glance that : [u'he', u'she', u'the'] -s gone : [u'for'] -has most : [u'kindly'] -than mine : [u'.'] -t shake : [u'hands'] -our boys : [u'were'] -are destroyed : [u".'"] -they can : [u'hardly', u".'", u'at'] -just my : [u'point'] -feet six : [u'inches'] -for another : [u'.'] -feet out : [u'towards'] -question," : [u'said'] -me!" : [u'he', u'He'] -at you : [u'.'] -me!' : [u'he'] -local branches : [u'in'] -my mother : [u'!', u',', u"'", u'died', u'had'] -best for : [u'me'] -depicted to : [u'him'] -face half : [u'round'] -bean in : [u'size'] -agony column : [u'of', u'.'] -hair to : [u'me', u'night', u'the'] -up forever : [u'.'] -and dottles : [u'left'] -Tragedy Near : [u'Waterloo'] -clock on : [u'Christmas', u'the'] -try not : [u'to'] -records unique : [u','] -but momentary : [u'.'] -a duty : [u'which'] -both put : [u'our'] -also thoroughly : [u'examined'] -upon Lord : [u'St'] -edged thing : [u','] -ones empty : [u'and'] -Constable Cook : [u','] -once or : [u'twice'] -he lived : [u'at', u',', u'.'] -bread, : [u'and'] -colonel' : [u's'] -array of : [u'bottles', u'equipment'] -practice at : [u'all'] -arm; ' : [u'we'] -colonel. : [u'When'] -" Sherlock : [u'Holmes'] -by some : [u'30', u'ex', u'irresistible', u'robberies', u'sound'] -They will : [u'be', u'see'] -make them : [u'less'] -small eyes : [u','] -deposes that : [u'she'] -once of : [u'a'] -husband by : [u'the'] -as suddenly : [u'as', u'and'] -surprise that : [u'I'] -strolled round : [u'to'] -beautiful Stroud : [u'Valley'] -solve the : [u'mystery'] -think 1000 : [u'pounds'] -lounging upon : [u'the'] -the houses : [u'.', u'here', u'."'] -Percy Armitage : [u'the'] -from your : [u'lips', u'watch', u'memory', u'life', u'sleep', u'appearance', u'laughter', u'gesture'] -which weighed : [u'upon'] -as follows : [u':', u": '"] -royalties under : [u'this'] -met there : [u'a'] -green shoots : [u','] -not Arthur : [u'who'] -healthy mind : [u'rather'] -door just : [u'after'] -this manner : [u'for'] -foresee, : [u'one', u'a'] -humours her : [u'fancies'] -keeper in : [u'the'] -given prominence : [u'not'] -the resemblance : [u'to'] -deranged. : ['PP'] -large flat : [u'box'] -jutted out : [u'the'] -each new : [u'discovery'] -hysterical outbursts : [u'which'] -her broad : [u','] -them present : [u'such'] -unconscious I : [u'cannot'] -yet nine : [u'.'] -Horsham property : [u','] -he ordered : [u',', u'me'] -could think : [u'of'] -and concise : [u'."'] -visits at : [u'this'] -this seems : [u'to'] -little cold : [u'for', u'supper'] -this cellar : [u'at'] -hair quite : [u'short'] -this no : [u'word'] -pipe with : [u'the'] -justice is : [u'ever'] -our unfortunate : [u'acquaintance'] -You remember : [u'in', u'that'] -when you : [u'call', u'found', u'address', u'see', u'have', u'said', u'returned', u'came', u'consider', u'sit', u'hear', u'are', u'were', u'got', u'find', u'saw', u'admitted', u'had', u'appeared', u'share'] -her bouquet : [u'as'] -I cried : [u'out', u'.', u'. "', u', "', u'; "', u',', u'half', u'with'] -master laughed : [u'heartily'] -none other : [u'than'] -a shattered : [u'skull', u'stern'] -going well : [u'when'] -a compilation : [u'copyright'] -, Mister : [u'Sherlock'] -, STRICT : [u'LIABILITY'] -An enemy : [u'?"'] -plunged forward : [u','] -to Gravesend : [u'and'] -fine, : [u'law'] -first notice : [u'which'] -varieties of : [u'pipe'] -Several times : [u'during'] -back yard : [u'and', u'.'] -interest you : [u',', u',"', u'think'] -great care : [u','] -she half : [u'drew'] -only come : [u'up'] -only keep : [u'one'] -moves. : [u'Fresh'] -labour, : [u'that'] -labour. : [u'It'] -donations can : [u'help'] -which stands : [u'upon', u'near'] -can assure : [u'you'] -past Reading : [u'.'] -had begun : [u'to'] -ever a : [u'flaw'] -A lover : [u'evidently'] -at five : [u'every', u'as'] -other at : [u'the'] -thirty, : [u'but', u'I'] -little thing : [u','] -energy. : ['PP', u'The', u'All'] -other as : [u'possible', u'brother'] -occasional bright : [u'blur'] -understand a : [u'little'] -. " Listen : [u'to'] -s name : [u';', u',', u'among'] -handsome man : [u','] -energy; : [u'and'] -Charing Cross : [u'for', u'.'] -egg after : [u'it'] -how narrow : [u'had'] -place within : [u'ten'] -as, : [u'rather', u'by', u'but'] -pleasure to : [u'me', u'look'] -say yourself : [u'that'] -going way : [u'."'] -neighbouring landowner : [u','] -brightly between : [u'puckered'] -bushes where : [u'I'] -then?" : [u'asked', u'I'] -time they : [u'will'] -off shoes : [u'.'] -once were : [u',"'] -bachelor, : [u'residing', u'were'] -beggar in : [u'the'] -Catherine Cusack : [u',', u'who'] -so unprecedented : [u'a'] -uttered, : [u'and'] -., abstracted : [u'from'] -to Saxe : [u'Coburg'] -the housekeeper : [u"'"] -the wonderful : [u'chains'] -the murky : [u'river'] -the states : [u'of'] -be kicked : [u'from'] -the bird : [u"'", u'which', u'.', u',', u'I', u'all'] -quarrelling he : [u'was'] -with two : [u'men', u'small', u'windows'] -waited outside : [u'the'] -villain was : [u'softened'] ---" said : [u'Sherlock'] -dear! : [u'That'] -Road at : [u'the'] -commissions to : [u'perform'] -rift which : [u'I'] -during, : [u'and'] -which come : [u'to', u'upon'] -distribute it : [u'in'] -dear, : [u'kind'] -fire looks : [u'very'] -Indians, : [u'and'] -from here : [u'to', u'before'] -Not at : [u'all'] -live at : [u'home', u'Horsham', u'no'] -grounds with : [u'my'] -easily acquired : [u'was'] -done single : [u'handed'] -cheeks was : [u'drawn'] -closely. : ['PP'] -does to : [u'the'] -presented such : [u'difficulties'] -Let us : [u'glance', u'now', u'follow', u'thrust', u'have'] -120 pounds : [u'a'] -Bohemia," : [u'I'] -own memory : [u'."'] -dear friend : [u','] -collection of : [u'old', u'Project'] -been fastened : [u'upon', u'by', u'one'] -clinched fists : [u'at'] -sum?' : [u'I'] -He hardly : [u'spoke'] -observation and : [u'inference'] -the observation : [u',', u'of'] -; ' but : [u'the', u'if', u'you'] -Spaulding did : [u'what'] -roots. : ['PP'] -dreaming. : [u'He'] -together with : [u'many', u'a'] -recall the : [u'case', u'snake'] -arm in : [u'mine'] -suffered a : [u'long'] -married her : [u'."'] -cold which : [u'makes'] -definite conception : [u'of', u'as'] -Your narrative : [u'promises'] -choosing his : [u'words'] -heartily ashamed : [u'of'] -never sold : [u'upon'] -senseless for : [u'a'] -cherry wood : [u'pipe'] -be brought : [u'to', u'into'] -reading me : [u'the'] -steps below : [u','] -, half : [u'buttoned', u'afraid', u'asleep', u'hopeful'] -unless we : [u'are', u'can'] -; in : [u'fact'] -, forgive : [u'anything'] -property, : [u'he'] -a weary : [u'day', u'man'] -parietal bone : [u'and'] -its back : [u'turned'] -from cause : [u'to'] -me wishes : [u'his'] -corner were : [u'three'] -s fondness : [u'for'] -time enough : [u',"'] -; it : [u'has', u'is', u'was', u'struck', u'might'] -He swung : [u'himself'] -very wisely : [u',"'] -possess so : [u'much'] -any action : [u'without'] -Special rules : [u','] -town what : [u'the'] -, window : [u','] -large practice : [u'.'] -fraud, : [u'though'] -clearly never : [u'meant'] -be terribly : [u'anxious'] -which transmit : [u'and'] -Simon( : [u'the'] -" Very : [u',', u'truly', u'good', u'well', u'likely', u'much', u'.', u'glad', u'naturally', u'sorry', u'strange', u'murderous'] -panel with : [u'a'] -light up : [u'in'] -s acquaintance : [u',"'] -grasp it : [u'there'] -though both : [u'the'] -brilliantly scintillating : [u'blue'] -ask the : [u'King'] -presently. : ['PP', u'You', u'Jump'] -presently, : [u'to'] -Holmes shook : [u'his'] -good for : [u'some', u'you'] -right foot : [u'was'] -strength of : [u'body', u'a', u'mind'] -more reasonable : [u'.'] -, " that : [u'I', u'you', u'with', u'when', u'a', u'the', u'was', u'on', u'of', u',', u'she', u'it'] -defect in : [u'the', u'this'] -I tell : [u'you', u'her', u'him'] -found yourself : [u'deprived'] -unlink or : [u'detach'] -conceivable hypothesis : [u',"'] -fattened fowls : [u'for'] -to witness : [u'my'] -the exalted : [u'station'] -lady coloured : [u'deeply'] -madly, : [u'insanely'] -Suddenly my : [u'eyes'] -furiously. : ['PP'] -five and : [u'thrust', u'twenty'] -good style : [u'.'] -all works : [u'posted'] -30 this : [u'evening'] -itself crushed : [u'under'] -my ears : [u',', u'.'] -disturbed and : [u'excited'] -immediately, : [u'but'] -a detective : [u'in', u';'] -lodge keeper : [u'of', u'.', u',', u'came', u'brought'] -Lee a : [u'gentleman'] -tree. : [u'Gone'] -should have : [u'thought', u'suspected', u'looked', u'acted', u'the', u'been', u'aroused', u'asked', u'heard', u'spared', u'spoken', u'gone', u'50', u'its', u'him', u'no'] -enemy. : [u'I', 'PP'] -, hesitating : [u'fashion'] -." VIII : [u'.'] -doing what : [u'he', u'you'] -cripple him : [u'to'] -with, : [u'and', u'I'] -found us : [u'is'] -with. : [u'But', 'PP'] -Five Orange : [u'Pips'] -so old : [u'and'] -the feathers : [u','] -curious to : [u'learn'] -save with : [u'a'] -with" : [u'JABEZ'] -the chairs : [u'into'] -slipped behind : [u'the'] -business behind : [u'him'] -To carry : [u'the'] -friends into : [u'the'] -behind this : [u'crate', u'I'] -so high : [u'a'] -little cry : [u'of'] -fire was : [u'admirably', u'burning'] -heavy chin : [u'which'] -written about : [u'Abbots'] -hardly get : [u'there', u'at'] -bringing in : [u'a'] -twenty five : [u'minutes'] -was new : [u'to'] -not merely : [u'that', u'because'] -finding that : [u'he'] -blew its : [u'brains'] -come from : [u'a', u'me', u'the', u'?"', u"?'", u'Pondicherry', u'Paddington', u'Nature', u'my'] -birds, : [u'and'] -was undated : [u','] -this gang : [u'.', u'."'] -dragged up : [u'to'] -accomplishments, : [u'sir'] -accomplishments. : ['PP'] -with one : [u'of', u"'"] -his upper : [u'lip'] -Bank of : [u'France'] -mood--" : [u'you'] -watch all : [u'were'] -not talk : [u'about'] -his home : [u'there'] -relieve his : [u'pain'] -should do : [u'business', u'so', u'in', u',', u',"', u'."', u'.'] -his calling : [u','] -providing access : [u'to'] -He held : [u'up', u'out', u'in'] -black hair : [u','] -precious to : [u'her'] -grew upon : [u'him'] -lights when : [u'I'] -by using : [u'or'] -touch you : [u',"'] -seated by : [u'the'] -oscillated backward : [u'and'] -sake let : [u'us'] -rumble of : [u'wheels'] -asking me : [u'to'] -merely because : [u'my'] -butler and : [u'the'] -the angle : [u'of'] -steps forward : [u'and'] -his princess : [u'.'] -exalted circles : [u'in'] -to lodge : [u'in'] -description. : [u'I'] -description, : [u'but'] -troubled to : [u'replace'] -yourself out : [u'of'] -my wedding : [u'.', u'clothes'] -flung it : [u'across'] -quite what : [u'to'] -first who : [u'have'] -own complete : [u'happiness'] -assistant. : [u'But'] -ash of : [u'a'] -assistant, : [u'Mr', u'hardly'] -by exceptional : [u'strength'] -There isn : [u"'"] -over upon : [u'its'] -assistant' : [u's'] -at 11 : [u':'] -time in : [u'the', u'silence', u'begging', u'Pentonville', u'staring', u'this'] -lidded expression : [u'which'] -time is : [u'seared', u'of'] -dramatic, : [u'in'] -time it : [u'seemed'] -the sky : [u'.', u','] -dazed, : [u'I'] -shot an : [u'angry'] -your geese : [u',"'] -self restraint : [u'and', u'.'] -intuitions, : [u'and'] -good one : [u','] -only been : [u'here', u'freed', u'in', u'to'] -some lodgings : [u'he'] -tide might : [u'afford'] -MY DEAREST : [u'UNCLE'] -and across : [u'the'] -fear and : [u'astonishment', u'nervous', u'anger'] -to quote : [u'Thoreau'] -cunning man : [u'.'] -of intense : [u'emotion'] -assumed. : [u'The'] -moment from : [u'his'] -Stark went : [u'up'] -left," : [u'answered'] -Don' : [u't'] -pushed forward : [u'for'] -his desk : [u'.', u'and', u','] -we must : [u'be', u'go', u'stretch', u'put', u'choose', u'set', u'try', u'have', u'make', u'leave'] -him motion : [u'like'] -the diggings : [u'.'] -already had : [u'experience'] -most genial : [u'fashion'] -success. : ['PP', u'There', u'At', u'No'] -copyright research : [u'on'] -like, : [u'this', u'but', u'however'] -stared from : [u'one'] -something noble : [u'in'] -examined each : [u'and'] -inquest on : [u'Tuesday'] -, therefore : [u','] -conceive the : [u'things'] -are hungry : [u',"'] -the single : [u'lurid', u'gentleman'] -describe. : ['PP'] -Roylott clad : [u'in'] -full of : [u'forebodings', u'a', u'the', u'books', u'papers'] -50, : [u'000'] -six weeks : [u'I', u'was'] -s side : [u'she'] -pain to : [u'any'] -hurts my : [u'pride'] -not feel : [u'easy'] -seems to : [u'me', u'indicate', u'be', u'slip', u'have'] -use. : ['PP'] -alone swamp : [u'our'] -use, : [u'John', u'and'] -is wanted : [u'by'] -a housekeeper : [u'now'] -hardly believe : [u'that', u'my'] -an ulster : [u'who', u'and'] -group of : [u'shabbily', u'ancient', u'trees', u'works'] -is discovered : [u'and'] -do practically : [u'ANYTHING'] -You would : [u'certainly', u'have', u'not'] -clear. : [u'For', 'PP', u'We', u'She', u'The'] -clear, : [u'and'] -he retired : [u'to'] -our whims : [u'so'] -man worked : [u'.'] -chronicle, : [u'and'] -into their : [u'heads', u'hands'] -for weeks : [u'on', u'.'] -End of : [u'the'] -delighted to : [u'hear', u'see'] -. Suppose : [u'that'] -easy going : [u'way'] -fresh from : [u'a', u'the'] -serious as : [u'its'] -windows and : [u'doors'] -cannot risk : [u'the'] -a provision : [u'that'] -habits and : [u'exchange'] -for them : [u',', u'?"'] -GUTENBERG EBOOK : [u'THE'] -the strong : [u'probability', u'Indian'] -socks, : [u'his'] -his case : [u'of', u'has', u'.'] -for they : [u'can', u'were', u'had'] -down holes : [u'than'] -his cast : [u'off'] -our respect : [u'.'] -better first : [u'to'] -discontinue all : [u'use'] -and thrusting : [u'this'] -Chance has : [u'put'] -him back : [u'into', u'to', u'.', u'again'] -be liberated : [u','] -or from : [u'his'] -sombre errand : [u'.'] -CARBUNCLE I : [u'had'] -could invent : [u'.', u'nothing'] -which you : [u'may', u'have', u'can', u'made', u'and', u'could', u'are', u'seem', u'found', u'might', u'supplied', u'put', u'would', u'were', u'need', u'used', u'desire', u'think', u'', u'do'] -longer without : [u'some'] -robbery that : [u'have'] -and eventually : [u'married', u'got'] -in ignorance : [u'of'] -key upon : [u'her'] -discuss my : [u'results', u'most'] -Use and : [u'Redistributing'] -the chairman : [u'of'] -could make : [u'such', u'of', u'out', u'your', u'nothing'] -Finns and : [u'Germans'] -London we : [u'were'] -staring into : [u'the'] -defray whatever : [u'expenses'] -reasoning power : [u'would'] -When shall : [u'you'] -and ladies : [u'sitting', u"'"] -? How : [u'could'] -her fate : [u'.'] -into town : [u'as', u'rather', u'to', u'this'] -enterprise and : [u'originality'] -another room : [u','] -past nine : [u'when', u',"'] -has every : [u'requirement'] -thousand five : [u'hundred'] -caused the : [u'arrest', u'original', u'disturbance'] -exalted names : [u'in'] -clothes man : [u',', u'. "'] -of geniality : [u'which'] -for assistance : [u'.'] -a British : [u'peeress'] -she does : [u'not', u'."'] -faster, : [u'but'] -at Lord : [u'Backwater'] -was exceedingly : [u'pale'] -dirt that : [u'the'] -but energy : [u'can'] -quarter, : [u'yet', u'Wimpole', u'or'] -of nitrate : [u'of'] -gentleman himself : [u'.'] -cannot guard : [u'yourself'] -secure tying : [u'up'] -then made : [u'my'] -my impatience : [u'.'] -distance. : [u'But'] -distance, : [u'followed'] -James didn : [u"'"] -" And : [u'I', u'Irene', u'why', u'for', u'Mademoiselle', u'what', u'when', u'how', u'now', u'the', u'you', u'has', u'sit', u'yet', u'have', u'your', u'Miss', u'that', u'leave', u'one', u'help', u'who', u'it', u'on', u'they', u'where', u'so', u'also', u'then', u'from', u'is', u'an', u'this', u'did', u'she', u'very', u'over', u',', u'he', u'brought', u'in'] -voice that : [u'the'] -daylight, : [u'for'] -red glow : [u'of'] -nobody can : [u'find'] -ll remember : [u'that'] -might veil : [u','] -throat, : [u'and', u'while'] -throat. : ['PP'] -as Sir : [u'George'] -hubbub of : [u'the'] -come round : [u'to'] -or obtain : [u'permission'] -clouded over : [u'.'] -boiling passion : [u". '"] -or that : [u'they'] -concluding remarks : [u'was'] -s energy : [u'.'] -hopeless by : [u'the'] -Arthur were : [u'much'] -is just : [u'my', u'as', u'before', u'possible', u'a'] -is important : [u'."', u'.', u'also'] -prominence not : [u'so'] -lake. : [u'Lestrade'] -The letter : [u'arrived', u'which'] -bottle of : [u'ink'] -: ( a : [u')'] -examination through : [u'the'] -week between : [u'cocaine'] -a shriek : [u'of'] -sensations, : [u'he'] -See here : [u',', u'."'] -homely as : [u'it'] -point upon : [u'which', u'it'] -Horner up : [u'to'] -have lost : [u'four', u'nothing', u'my', u'a'] -impression upon : [u'the', u'me'] -only that : [u',', u'this', u'I'] -status with : [u'the'] -happened since : [u'gives'] -Jewel Robbery : [u'.'] -7. : [u'Do'] -,' he : [u'shouted', u'cried', u'answered'] -more implacable : [u'spirits'] -remark appear : [u'to'] -spring day : [u','] -instead of : [u'theories', u'my', u'being', u'quietly', u'ruby', u'confining'] -His dress : [u'was'] -seen his : [u'son', u'face'] -of battle : [u','] -, Archie : [u','] -verdict of : [u"'"] -last place : [u'with'] -tremor of : [u'his'] -not offered : [u'a'] -suggests the : [u'idea'] -" Certainly : [u'.', u',"', u'."', u','] -corners, : [u'with'] -the fat : [u'manager'] -had faced : [u'round'] -fear had : [u'begun'] -the ash : [u'of', u','] -tapping his : [u'fingers'] -be adhesive : [u','] -everything which : [u'you', u'puzzled'] -think he : [u'is'] -. Same : [u'old'] -alive solely : [u'through'] -a complete : [u'change'] -of poison : [u'which'] -the flames : [u'under', u','] -I fell : [u'into', u'in'] -, Arthur : [u'.', u','] -for people : [u'in'] -: Arthur : [u'Conan'] -suspect, : [u'or'] -doctor kept : [u'a'] -I felt : [u'quite', u'that', u'a', u',', u'the', u'easier', u'angry', u'all', u'when', u'as'] -pretended journeys : [u'to'] -you need : [u'tell'] -bare throat : [u'."'] -theory. : ['PP', u'You'] -will fit : [u'that'] -theory, : [u'not'] -Wilson. : ['PP', u'This', u'I'] -quietly with : [u'everything'] -Wilson, : [u'has', u'you', u'off', u'mopping', u'that', u'and'] -upset by : [u'the'] -feature about : [u'the'] -Wilson' : [u's'] -immensely. : ['PP'] -Wilson? : [u'Have'] -regretted having : [u'ever'] -glanced in : [u'his'] -their mission : [u'.'] -were town : [u'bred'] -bright and : [u'cloudless'] -the extracts : [u'in'] -you suggest : [u'."', u'no'] -black against : [u'him'] -Cosmopolitan Jewel : [u'Robbery'] -did wish : [u'us'] -yet be : [u'ignorant', u'safe'] -, ' remember : [u'your'] -, heavier : [u'in'] -stuffs all : [u'the'] -It took : [u'all'] -should secure : [u'your'] -no sign : [u'of'] -whoever might : [u'cross'] -to water : [u','] -two constables : [u'at'] -plain as : [u'a'] -baboon. : [u'We', 'PP'] -been locked : [u'in'] -brought there : [u'to'] -Which surely : [u'he'] -the farthest : [u'east'] -with whiskers : [u'of'] -marriage between : [u'us'] -with human : [u'nature'] -it even : [u'to'] -physical medium : [u'', u','] -been his : [u'son', u'friend'] -visit: : [u'http'] -ceiling of : [u'this'] -your medical : [u'views', u'experience'] -stranger. " : [u'Well'] -visit, : [u'and'] -differently this : [u'terrible'] -visit. : [u'Holmes'] -listened to : [u'all', u'for', u'.', u'in', u'his', u'a', u'my'] -the docks : [u','] -insinuating whisper : [u','] -that stood : [u'your'] -been brushed : [u'for'] -Windibank did : [u'not'] -a careful : [u'examination'] -child whose : [u'grief'] -protect the : [u'lady', u'stranger', u'PROJECT', u'Project'] -second one : [u'which'] -I can : [u"'", u'reward', u'wait', u'deduce', u'make', u'go', u'quite', u'only', u'do', u'often', u'never', u'thoroughly', u'at', u'assure', u'."', u'afterwards', u'understand', u'see', u'be', u'get', u'very', u'discuss', u'hardly', u'stand', u'read', u'imagine', u'give', u'find', u'think', u'.', u'serve', u'to'] -opened into : [u'this'] -sleeve was : [u'drenched'] -royal houses : [u'of'] -have this : [u'put', u'money', u'matter'] -might at : [u'first', u'any'] -first consideration : [u'is'] -bodies. : ['PP'] -of throwing : [u'it'] -bodies, : [u'Watson'] -of marines : [u','] -certainly presents : [u'some'] -, shocked : [u'at'] -so vile : [u'that'] -does, : [u'in'] -does. : ['PP', u'Your', u'Mary'] -have four : [u'million'] -his shiny : [u'top', u','] -, thoroughfare : [u'.'] -lonely woman : [u'had'] -" Unless : [u'this'] -information about : [u'Project'] -does; : [u'but'] -no reason : [u'why', u','] -being lighted : [u'as'] -taking in : [u'every'] -anyone providing : [u'copies'] -civilised land : [u'here'] -Gustave Flaubert : [u'wrote'] -in without : [u'you'] -reasoner," : [u'he'] -a vice : [u'upon'] -a practical : [u'test', u'man'] -much with : [u'one'] -him mine : [u','] -against this : [u'extraordinary'] -hypothesis," : [u'said'] -bitter sneer : [u'upon'] -will run : [u'to'] -, pulled : [u'out', u'on', u'me'] -open another : [u'door'] -confused and : [u'grotesque'] -father did : [u'not'] -say that : [u'it', u'.', u'if', u'once', u'a', u'she', u'I', u'he', u'the', u'all', u'you', u'we', u'my', u'away', u'there'] -title of : [u'the'] -you thieves : [u'!'] -hands with : [u'us', u'a'] -little fancy : [u'of'] -cells. : ['PP'] -cells, : [u'does'] -Street at : [u'ten'] -get near : [u'the'] -a chase : [u'.'] -, answering : [u'the', u','] -squatted down : [u'in'] -reliability is : [u'quite'] -returning home : [u'.'] -becomes a : [u'double', u'personal'] -soul there : [u'save'] -to anything : [u'that', u'without'] -He never : [u'spoke', u'did'] -slip away : [u'.'] -OF THE : [u'BLUE', u'SPECKLED', u'ENGINEER', u'NOBLE', u'BERYL', u'COPPER', u'POSSIBILITY'] -bullion might : [u'be'] -more? : [u'I'] -sitting room : [u'on', u',', u'window', u'.', u'to', u'behind', u'and', u'at', u'in'] -were about : [u'to'] -you rifled : [u'the'] -almost too : [u'good'] -more, : [u'I', u'and', u'subsided', u'though', u'very', u'so', u'however'] -more. : [u'Just', 'PP', u'They', u'If', u'But', u'As', u'I', u'It', u'He'] -aside until : [u'night'] -a trick : [u'in'] -upon Scotland : [u'Yard'] -hearted. : [u'If'] -skirt of : [u'my'] -my highly : [u'respectable'] -I fished : [u'about'] -! did : [u'I'] -net 1 : [u'.'] -buzz of : [u'a'] -not treat : [u'of'] -down over : [u'his'] -train for : [u'Leatherhead'] -temples with : [u'passion'] -toy which : [u'he'] -the chemical : [u'work'] -chair. " : [u'It', u'You'] -On glancing : [u'over'] -should not : [u'do', u'wish', u'have', u'think', u'rain', u'venture', u'tell', u'stay', u'be', u'dream', u'mine', u'accept', u'ask'] -should now : [u'come'] -keep on : [u'piling'] -next Monday : [u'."'] -passed slowly : [u'away'] -of you : [u'we', u'from', u'to', u',"', u',', u'might', u'and', u'is', u'before', u'."', u';', u'.', u'any', u'both', u'if'] -John?' : [u'he'] -a pink : [u'flush'] -frayed top : [u'hat'] -glass factories : [u'and'] -inside, : [u'but', u'then'] -she comes : [u'she', u'in'] -wreaths. : [u'Our'] -a slate : [u'coloured'] -of mastery : [u'.'] -Ah! : [u'who', u'yes', u'I', u'that', u'this'] -from within : [u'assuring', u'.', u','] -was highly : [u'intellectual'] -angry that : [u'you'] -product. : [u'One'] -custom,' : [u'said'] -steps may : [u'be'] -Ah. : ['PP'] -always a : [u'policeman', u'joy', u'broken'] -lived a : [u'few'] -entered to : [u'announce', u'say'] -have scored : [u'over'] -unreasoning terror : [u'rose'] -notice is : [u'included'] -and patient : [u','] -flung open : [u'the'] -some definite : [u'result', u'business'] -, Maggie : [u",'", u"?'"] -mischief. : [u'I'] -very nice : [u'and'] -those words : [u'."'] -done?" : [u'asked', u'He'] -which do : [u'not'] -how came : [u'the'] -a gallows : [u'.'] -muttered some : [u'words'] -the ledger : [u'."'] -Lane. : [u'But', 'PP'] -at bank : [u'robbery'] -heel marks : [u','] -a pikestaff : [u','] -limbs were : [u'weary', u'dreadfully'] -Lane, : [u'where', u'she'] -relentless persecution : [u'?"'] -those birds : [u'that'] -air of : [u'a', u'the', u'being', u'dignity', u'mastery', u'geniality'] -is also : [u'true', u'quite', u'discreet', u'a', u'my', u'defective'] -had adopted : [u'a'] -been that : [u'Lady'] -his filial : [u'duty'] -a passing : [u'light'] -who had : [u'been', u'written', u'rushed', u'stepped', u'watched', u'hurried', u'a', u'the', u'known', u'done', u'only', u'charge', u'shown', u'no', u'had', u'risen', u'at', u'crossed', u'fortunately', u'caused', u'already', u'brought', u'stood', u'them', u'any'] -old trunks : [u'and'] -reaches for : [u'her'] -strode off : [u'upon'] -Holmes left : [u'me', u'us'] -more hurry : [u'back'] -a trivial : [u'example'] -Clair' : [u's'] -woven. : [u'The'] -nerves. : ['PP'] -, drawn : [u'back'] -government appointment : [u'in'] -s bill : [u','] -How do : [u'I', u'you'] -a twig : [u'."'] -our windows : [u','] -fact seemed : [u'to'] -the rack : [u'.', u'the'] -claret importers : [u'of'] -three caltrops : [u'in'] -the race : [u',"', u'meetings'] -was succeeded : [u'by'] -glanced over : [u'the', u'it'] -lane which : [u'runs', u'led'] -her, " : [u'but'] -: Nothing : [u'definite'] -" Irene : [u'Adler', u"'"] -record that : [u'severe'] -my pride : [u',', u'.', u'and', u'so'] -passed to : [u'raise'] -thus was : [u'solved'] -moment now : [u'is'] -seconds sufficed : [u'to'] -Same old : [u'platform'] -ne ADLER : [u'."'] -great cases : [u'are'] -affair which : [u'at'] -passed his : [u'tongue', u'hand', u'pew', u'handkerchief'] -his client : [u'gave', u',', u'paused'] -see an : [u'advertisement'] -chagrin and : [u'surprise', u'discontent'] -is committed : [u'to'] -path over : [u'the'] -very serious : [u'one', u'indeed', u'case', u'extent', u'accident'] -the Atlantic : [u'a', u'.'] -limbs and : [u'then'] -other medium : [u','] -within ten : [u'seconds', u'miles'] -see at : [u'a'] -the assured : [u'and'] -you quite : [u'invaluable'] -Ross took : [u'to'] -I finish : [u'you'] -a false : [u'position', u'alarm'] -!' before : [u'he', u'seeing'] -saw with : [u'delight'] -the bushes : [u'as'] -she went : [u'on', u'to', u'straight'] -weighing upon : [u'his'] -for Alice : [u'.'] -light among : [u'the'] -looking defiantly : [u'at'] -naturally observant : [u','] -her chamber : [u'for'] -have long : [u'ceased'] -figures? : [u'Your'] -dashed up : [u'through'] -powerful magnifying : [u'lens'] -usually kept : [u'in'] -struck her : [u'quick'] -249," : [u'read'] -go now : [u','] -figures, : [u'and', u'with'] -a United : [u'States'] -figures. : ['PP'] -politics, : [u'for'] -right to : [u'make', u'look', u'charge', u'prevent'] -things which : [u'are', u'I', u'met'] -to protect : [u'the'] -chin upon : [u'his'] -excitable, : [u'impulsive'] -good enough : [u'to', u','] -short a : [u'time'] -obeyed. : [u'His'] -Boswell. : [u'And'] -escape, : [u'and'] -escape. : [u'We', u'For', 'PP'] -Esq. : [u'To'] -the sake : [u'of'] -although it : [u'was'] -He knew : [u'he'] -perform one : [u'more'] -face protruded : [u','] -. Save : [u','] -two coming : [u'together'] -a one : [u'as'] -putting his : [u'fingertips', u'finger', u'lens'] -the island : [u'of'] -myself lying : [u'upon', u'on'] -a short : [u'walk', u'time', u'thick', u'greeting'] -show him : [u'that'] -hand type : [u','] -alone in : [u'lodgings', u'London', u'the'] -latter was : [u'your'] -should dwell : [u'.'] -! here : [u'is'] -recoil upon : [u'the'] -drunken feet : [u';'] -we stepped : [u'from'] -probed to : [u'the'] -through which : [u'streamed', u'we', u'he', u'a', u'she'] -watching the : [u'habits', u'huge'] -and visit : [u'us'] -I stop : [u'the'] -all laid : [u'before'] -done in : [u'an', u'the', u'China'] -left half : [u'of'] -pool. : [u'The', u'He'] -pool, : [u'and', u'which'] -clock Sherlock : [u'Holmes'] -Mall, : [u'St'] -cunning, : [u'grinning'] -our disposal : [u','] -very clearly : [u'.', u'perceive', u'and', u'how'] -their hearts : [u'.'] -done it : [u'for', u'."', u'and', u'?"', u'.'] -unhealthy blotches : [u'.'] -gas is : [u'not'] -" IRENE : [u'NORTON'] -a woodcock : [u','] -hers possibly : [u'her'] -had transpired : [u'as'] -, Heaven : [u'bless'] -walking in : [u'this'] -offence, : [u'but'] -' quick : [u'eye'] -his giant : [u'frame'] -of Uffa : [u','] -secrecy was : [u'made'] -then settled : [u'down'] -sister could : [u'smell'] -not fresh : [u'and'] -most certainly : [u'do', u'repay'] -the supper : [u','] -were protruding : [u','] -frenzy of : [u'this'] -her slipping : [u'in'] -the tree : [u'as'] -mews in : [u'a'] -twentieth of : [u'March'] -region within : [u'fifty'] -the family : [u',', u'ruin', u'estate', u'resided', u'has', u'of'] -my gravity : [u'."'] -a shelf : [u'with'] -me this : [u'morning'] -example and : [u'slipping'] -the States : [u',', u'?"'] -also but : [u'I'] -then had : [u'.', u'gone'] -laws regulating : [u'charities'] -the aperture : [u',', u'.'] -cravats about : [u'our'] -It certainly : [u'sounds'] -lies my : [u'mtier'] -January and : [u'February'] -your short : [u'sight'] -me seemed : [u'to'] -adventures of : [u'the'] -watched the : [u'scuffle', u'blue', u'fellow'] -charitable donations : [u'in'] -call." : [u'He'] -just had : [u'time'] -blue carbuncle : [u'!"', u'.', u','] -disappointed man : [u'.'] -a bell : [u'pull'] -return and : [u'to'] -was unfortunate : [u'.'] -the clergyman : [u'beamed', u'absolutely', u'were'] -and forestalling : [u'it'] -it cruel : [u'."'] -devil incarnate : [u'.'] -THE POSSIBILITY : [u'OF'] -Avenue, : [u'St', u'I'] -into nose : [u'and'] -Avenue. : [u'It', 'PP'] -Bow Street : [u'.', u'cells'] -first Saturday : [u'night'] -myself regular : [u'in'] -I ended : [u'by'] -now wish : [u'you'] -perspired very : [u'freely'] -way back : [u'to', u'and'] -of chaff : [u'which'] -many in : [u'the', u'London'] -Mary was : [u'the'] -soon have : [u'some', u'to', u'the'] -the dress : [u'is'] -a computer : [u'virus'] -good people : [u'were'] -downloading, : [u'copying'] -a pocket : [u'.', u'book'] -Edward in : [u'the'] -likely not : [u'.'] -having come : [u'for'] -house, " : [u'this'] -prospect that : [u'the'] -be met : [u'speciously'] -next I : [u'heard'] -house was : [u'just', u'none', u'astir', u'silvered'] -of Stoke : [u'Moran'] -this strain : [u'no'] -pacing up : [u'and'] -the meddler : [u'."'] -became as : [u'to'] -at 2 : [u'pounds'] -observer who : [u'has'] -at 6 : [u':'] -to twist : [u'facts'] -entered her : [u'mind'] -be. : [u'I', u'But', u'It', 'PP', u'She', u'They'] -be, : [u'once', u'the', u'he', u'as', u'entirely', u'you', u'and', u'blockaded'] -Alice wasn : [u"'"] -into Eyford : [u'Station'] -good turn : [u'.'] -or conceit : [u',"'] -be; : [u'quite'] -hardly be : [u'exaggerated', u'worth', u'in', u'expected', u'open', u'less'] -be? : [u'I', u'Might', u'She', u'If'] -her knees : [u'seemed'] -to Reading : [u'in'] -a cushion : [u','] -never see : [u'any', u'them'] -smiling father : [u','] -go wrong : [u'."', u'again', u'he'] -know nothing : [u'further', u'about', u'of'] -at a : [u'quarter', u'better', u'disadvantage', u'moment', u'remarkable', u'shilling', u'woman', u'disguise', u'boarding', u'registry', u'glance', u'higher', u'small', u'case', u'loss', u'little', u'radius', u'Fashionable', u'right', u'wayside', u'side', u'friend'] -husband you : [u'found'] -can see : [u'for', u'him', u'a', u'nothing', u'everything', u'deeply', u'now'] -novel about : [u'some'] -clearing up : [u'those', u'of', u'some', u'the'] -man I : [u'met'] -someone at : [u'the'] -a lonely : [u'and'] -every case : [u'there'] -place, : [u'where', u'we', u'and', u'two', u'I', u'both', u'between', u'near', u'concealed'] -In mining : [u'.'] -can set : [u'it'] -blazing, : [u'fiery'] -is four : [u'and'] -some unforeseen : [u'catastrophe'] -In short : [u','] -Adler is : [u'married'] -wrists. : [u'"', u'She'] -thing is : [u'the'] -whatever interest : [u'you'] -fell. : [u'Still', u'I', u'The'] -out beautifully : [u',"'] -theirs is : [u'already'] -thing in : [u'the', u'it'] -man a : [u'man'] -was ready : [u'in'] -want?" : [u'he'] -hangs over : [u'the'] -could feel : [u'its'] -at Lestrade : [u'. "', u"'"] -a mass : [u'of'] -North. : ['PP'] -come up : [u'from', u'to'] -a mask : [u'."', u'to'] -no business : [u'there'] -the service : [u'and'] -, never : [u'calls', u'mind', u'so'] -to our : [u'luncheon', u'hotel', u'visitor', u'advertisement', u'happiness', u'investigation', u'plans', u'hearts', u'little', u'email'] -powers of : [u'observation', u'reasoning'] -showing his : [u'face'] -breakfast room : [u'."'] -drawn catlike : [u'whine'] -with mud : [u'in'] -over for : [u'a', u'this'] -advertised, : [u'and'] -heard a : [u'heavy', u'cry', u'hideous', u'low', u'metallic', u'gentle', u'muttered', u'sound', u'ring', u'soft'] -of yellow : [u'light'] -useful to : [u'him', u'me'] -you warmly : [u'."'] -give my : [u'fortune'] -there first : [u'?"'] -leave it : [u'to', u'more', u'here', u'with', u'a', u'in'] -deep game : [u'.'] -encourage visitors : [u'."'] -many noble : [u'families'] -it becomes : [u'positively', u'.'] -an ending : [u','] -bore unmistakable : [u'signs'] -villain! : [u'you'] -how your : [u'efforts'] -leave in : [u'our'] -villain, : [u'a', u'it'] -she shot : [u'out', u'a'] -remove the : [u'roofs', u'pressing', u'full'] -do well : [u'to'] -a personal : [u'matter'] -purpose 30 : [u','] -effect of : [u'making', u'removing', u'calling', u'the', u'causing'] -midnight of : [u'the'] -no news : [u'of'] -and rubbed : [u'his'] -issues that : [u'may'] -sample of : [u'it', u'the'] -Majesty has : [u'indeed', u'something'] -He opened : [u'the', u'a', u'his'] -so expensive : [u'a'] -the veil : [u'from'] -from Waterloo : [u'."', u'Station'] -Scotch bonnet : [u'with', u'is'] -They considered : [u'that'] -has sworn : [u'to'] -gratefully accepted : [u','] -lined it : [u'upon'] -produce her : [u'letters'] -tidy business : [u'behind'] -this trifling : [u'cause'] -our intimacy : [u','] -pull at : [u'the'] -your Highness : [u'to'] -slow, : [u'but', u'limping'] -saw her : [u'in', u'return', u'stealthily'] -slow. : [u'He'] -interest every : [u'quarter'] -my armchair : [u'and'] -fait accompli : [u'?"'] -haggard. : [u'Sherlock'] -haggard, : [u'and'] -ignorance of : [u'the', u'German'] -monotonous," : [u'said'] -woman was : [u'the', u'standing'] -chamber and : [u'was'] -knows I : [u'have'] -. Capital : [u'!'] -slippers before : [u'we'] -wheels and : [u'the'] -the matter : [u'will', u'implicates', u'was', u'to', u'.', u'in', u'becomes', u'I', u'all', u'aside', u'is', u'?"', u'again', u'rest', u',', u'should', u'until', u".'", u'before', u'out', u'stands', u'up', u'here', u'even', u'."', u'shortly', u'at', u'struck', u'first', u'with', u'but', u'now', u",'", u'must', u'drop', u'between', u',"', u'quiet', u'away', u'fairly'] -new computers : [u'.'] -himself into : [u'a'] -horrible man : [u'confessed'] -" Captain : [u'James'] -in bewilderment : [u'at'] -postpone it : [u','] -written that : [u'.'] -of wooden : [u'chairs'] -had, : [u'I', u'as', u'when', u'of', u'however', u'it'] -had. : [u'Having'] -by an : [u'anonymous', u'American', u'alliance', u'inspection'] -a notice : [u'indicating'] -so now : [u','] -gutenberg. : [u'net', u'org'] -afraid of : [u'her', u'no'] -Kindly sign : [u'the'] -agency and : [u'have', u'inquire'] -rude meal : [u'into'] -goes. : ['PP'] -you heard : [u'anything', u'nothing'] -. See : [u'the', u'that', u'paragraph'] -Merryweather gloomily : [u'.'] -thumb used : [u'to'] -much then : [u','] -fear for : [u'her'] -of public : [u'opinion', u'domain'] -. Set : [u'the'] -face so : [u'grim'] -poor Horner : [u'in'] -spare. : ['PP'] -vestige of : [u'colour'] -"' Most : [u'admirably'] -John Hare : [u'alone'] -Clark Russell : [u"'"] -, heiress : [u'to'] -a customary : [u'contraction'] -last there : [u'is'] -and met : [u'there'] -been men : [u'of'] -study, : [u'that', u'Mr'] -/ 1661 : [u'/'] -and quiet : [u'and'] -forbidding her : [u'to'] -like fear : [u'sprang'] -and chimney : [u'are'] -the solution : [u'of'] -running footfalls : [u'from'] -six ships : [u'of'] -colonel fumbled : [u'about'] -with Horner : [u'some'] -police have : [u'watched', u'caused', u'openly'] -near as : [u'much'] -near at : [u'hand'] -any signs : [u'of'] -body was : [u'eventually'] -to Odessa : [u'in'] -mankind through : [u'the'] -heard as : [u'if'] -been waiting : [u'this', u'so'] -1890. : [u'Just', 'PP'] -paper at : [u'all'] -our children : [u'from'] -much like : [u'to'] -paper as : [u'directed'] -pain, : [u'and', u'my'] -a perfectly : [u'overpowering', u'trivial'] -be useful : [u'to'] -for Leatherhead : [u','] -hand so : [u'you'] -had hurried : [u'up', u'by', u'forward'] -London Road : [u'.'] -the hardihood : [u'to'] -dispel any : [u'doubts'] -moonlight night : [u','] -own brother : [u'.'] -recall when : [u'I'] -less you : [u'must'] -say what : [u'it', u'turn'] -whistle from : [u'the'] -go there : [u'first'] -snuffbox of : [u'old'] -smiling and : [u'beautiful'] -only quote : [u'this'] -named Norton : [u'."'] -near the : [u'window', u'elbow', u'City', u'corner', u'nail', u'Museum', u'borders', u'margin', u'Rockies', u'kitchen'] -minutes before : [u'we', u'I'] -little time : [u',', u'to', u'ago', u'after'] -Turner. " : [u'I'] -beautiful face : [u'.'] -own, : [u'and'] -nocturnal whistles : [u','] -own. : ['PP', u'Indeed', u'There'] -going to : [u'do', u'a', u'fight', u'take', u'be', u'Stoke', u'Eyford'] -shutters of : [u'your'] -the cake : [u'."'] -whose disgust : [u'is'] -. Slipping : [u'through'] -a trap : [u'.', u'door', u'at'] -no wonder : [u'that'] -to draw : [u'back', u'out', u'him', u'up'] -note as : [u'the'] -diggings. : [u'I', u'Black'] -beasts in : [u'a'] -remaining where : [u'I'] -Walk past : [u'me'] -way for : [u'the', u'a', u'it', u'some'] -thoughtful a : [u'man'] -watch from : [u'his'] -banker made : [u'out'] -tools with : [u'me'] -in another : [u'.', u',', u'of'] -, maybe : [u','] -his old : [u'books'] -hands on : [u'the'] -a registry : [u'office'] -hands of : [u'trustees', u'fortune', u'justice', u'our', u'the'] -in little : [u'better', u'matters'] -at other : [u'times'] -the back : [u',', u'.', u'of', u'hung', u'yard', u'door'] -excuse this : [u'mask'] -got if : [u'he'] -With a : [u'nod', u'rending', u'boy', u'comical', u'grave', u'stout', u'short', u'dazed', u'shriek', u'few'] -very jealously : [u','] -own roof : [u'than'] -s affairs : [u'.'] -are nearly : [u'always'] -which covered : [u'his'] -they separated : [u','] -That which : [u'my'] -however; : [u'yesterday'] -limited to : [u','] -? Was : [u'she', u'it'] -crackling voice : [u'.'] -justice. : [u'As'] -left the : [u'house', u'two', u'breakfast', u'country', u'bird', u'room'] -you engaged : [u'to'] -; " but : [u'since', u'if', u','] -clergyman. : [u'His', u'But'] -Email contact : [u'links'] -clergyman, : [u'who'] -announced the : [u'place'] -could trace : [u'it'] -Monday Mr : [u'.'] -the difference : [u'between'] -its centre : [u'.'] -so severely : [u'tried'] -nosed and : [u'pale'] -the lawyer : [u'arrived', u'took'] -and files : [u'of'] -finds himself : [u'master', u'in'] -Australian cry : [u','] -nature. ' : [u'If'] -creeping up : [u'to'] -been told : [u'that', u'more'] -who runs : [u'it'] -this Project : [u'Gutenberg'] -renewed your : [u'acquaintance'] -, Lestrade : [u',"', u'!'] -" Stoke : [u'Moran'] -not aware : [u'in'] -disk or : [u'other'] -ordinary one : [u'."'] -had stood : [u'behind', u'sullenly', u'and'] -until this : [u'morning'] -in Victoria : [u'."', u'Street'] -each side : [u'.'] -Inspector Bradstreet : [u',', u'would'] -its light : [u'I'] -us who : [u'frequent'] -visitor glanced : [u'with'] -propagation and : [u'spread'] -figure swaying : [u'to'] -she do : [u'?', u'on'] -court than : [u'the'] -objections which : [u'had'] -, passages : [u','] -useful. : ['PP'] -, completed : [u'the'] -grounds round : [u'it'] -, richer : [u'by'] -how they : [u'are', u'could', u'should'] -have missed : [u'everything', u'it'] -barmaid wife : [u'that'] -other way : [u','] -delighted. : ['PP'] -other was : [u'a', u'away', u'William', u'his', u'deep', u'so'] -had cured : [u'of'] -hung, : [u'and'] -escorted me : [u'here'] -size, : [u'no', u'but'] -size. : [u'Too'] -ejected by : [u'the'] -in Bohemia : [u'', u',', u',"'] -obvious facts : [u'that', u'which'] -escape every : [u'night'] -in excellent : [u'spirits'] -matters that : [u'there'] -26, : [u'plumber'] -some mystery : [u'and'] -was growing : [u'under'] -suddenly assumed : [u'a'] -hope so : [u'.'] -gracious either : [u','] -his tooth : [u'or'] -the numbers : [u'after', u'of'] -spots, : [u'the'] -a human : [u'body', u'being'] -be wrenching : [u'at'] -. Merryweather : [u',', u'gloomily', u'stopped', u'perched', u'is', u'as'] -, fierce : [u'and'] -the high : [u'wharves', u','] -without finding : [u'anything'] -two voices : [u','] -and patted : [u'him'] -absolute logical : [u'proof'] -, turning : [u'away', u'white', u'over', u'it', u'his', u'to'] -had exceptional : [u'advantages'] -yourself look : [u'upon'] -press in : [u'excavating'] -would be : [u'a', u'as', u'the', u'millions', u'injustice', u'all', u'difficult', u'safer', u'chaffed', u'here', u',', u'in', u'expected', u'of', u'terribly', u'well', u'best', u'safe', u'true', u'another', u'nothing', u'visible', u'fatal', u'necessary', u'nearer', u'no', u'to', u'good', u'absurd', u'one', u'complete', u'an', u'at', u'invited', u'passed', u'repugnant', u'better', u'rather', u'caused', u'almost', u'impossible', u'unnecessary', u'for', u'kind', u".'", u'so'] -way?" : [u'asked'] -notorious in : [u'the'] -curious conditions : [u','] -,' etc : [u'.,'] -way over : [u'to'] -dispatched the : [u'sobered'] -press it : [u'.'] -to them : [u',', u'.', u'in', u'that', u'to'] -be absolutely : [u'impossible', u'clear'] -Eyford at : [u'11'] -entailed upon : [u'me'] -before, : [u'and', u'for', u'but', u'all', u'during', u'which'] -. Jeremiah : [u'Hayling'] -before. : [u'As', 'PP', u'I', u'You', u'Did', u'It'] -in: : [u''] -be used : [u'in', u'if', u'on'] -towards us : [u',', u'.'] -before! : [u'I'] -inferences which : [u'are'] -so strange : [u'in'] -Please check : [u'the'] -and pity : [u'to', u'.'] -find there : [u'?'] -interest than : [u'you'] -had only : [u'just', u'known', u'lain', u'come', u'picked'] -our sombre : [u'errand'] -passed during : [u'those'] -tiara. : [u'I'] -poison would : [u'take'] -Yet this : [u'emaciation'] -my arrival : [u',', u'at'] -to without : [u'success'] -and put : [u'his', u'forward', u'on', u'the'] -a bloody : [u'deed'] -in 1887 : [u'he'] -been tricked : [u'by'] -gravel from : [u'a'] -presents any : [u'features'] -five pillows : [u'and'] -I conduct : [u'the'] -us on : [u'the', u'our'] -were seldom : [u'trivial'] -stand behind : [u'this'] -can reward : [u'you'] -us of : [u'her', u'a'] -eyes rested : [u'upon'] -One would : [u'think'] -been minutely : [u'examined'] -And into : [u'her'] -enough what : [u'was'] -ten seconds : [u'of'] -linoleum. : [u'Our'] -low tide : [u'but'] -draw your : [u'chair'] -never really : [u'became'] -And when : [u'I', u'will', u'he'] -checkmate them : [u'still'] -of opinion : [u'.'] -enclosure is : [u'."'] -Swiftly I : [u'threw'] -the stricken : [u'man'] -obligations to : [u'Turner'] -But his : [u'lameness', u'left', u'wife', u'voice'] -building of : [u'the'] -s sake : [u','] -injury as : [u'recorded'] -only just : [u'left', u'for', u'returned', u'had', u'in', u'heard'] -risks I : [u'was'] -duty which : [u'I'] -metropolis at : [u'this'] -yellow with : [u'the'] -at either : [u'end', u'side'] -whoever addressed : [u'the'] -perform, : [u'and', u'distribute'] -broad, : [u'white', u'good', u'intelligent'] -Inspector Barton : [u','] -you seem : [u'to'] -start. : ['PP'] -there may : [u'be', u'prove'] -Hereford and : [u'see'] -." For : [u'all'] -glaring with : [u'a'] -still talk : [u'of'] -dream of : [u'going', u'doing', u'trying', u'sacrificing'] -Duke, : [u'his'] -my former : [u'friend'] -company is : [u'in'] -fur boa : [u'round'] -master the : [u'particulars'] -the company : [u'has', u'of', u'once', u'is', u"'", u'.'] -, obtained : [u'an'] -quiet neighbourhood : [u','] -wrapped, : [u'which'] -had diabetes : [u'for'] -the concert : [u'I'] -also he : [u'carefully'] -"' December : [u'22nd'] -who approach : [u'us'] -more quiet : [u'!"'] -Orange Pips : [u''] -notice. : [u'To', 'PP'] -. Charles : [u'McCarthy'] -offensive to : [u'you'] -:-- Miss : [u'Stoper'] -in and : [u'planked', u'have', u'Holmes'] -had more : [u'than'] -height I : [u'know'] -in any : [u'way', u'future', u'case', u'other', u'manner', u'country', u'binary'] -, Irish : [u'setter'] -596 1887 : [u','] -eyes. : ['PP', u'For', u'That', u'He', u'But', u'On', u'It'] -always so : [u'interested', u'easy', u'exceedingly'] -He threw : [u'over', u'himself'] -which stood : [u'within', u'on'] -introducing you : [u'to'] -, either : [u'.', u'to', u'in'] -my nails : [u'at'] -foolish enough : [u'to'] -bottles. : [u'Having'] -the readers : [u'of'] -indiscretion. : ['PP'] -Egria. : [u'It'] -guinea if : [u'you'] -Chamber, : [u'of'] -ten times : [u'over'] -fifty miles : [u'an', u'of'] -quite secure : [u','] -boarding school : [u','] -bet," : [u'said'] -will await : [u'him'] -would also : [u','] -" Dark : [u'enough'] -Holmes as : [u'he', u'his', u'we', u'the'] -life may : [u'depend'] -pass along : [u'its'] -the valuable : [u'gem'] -the look : [u'rather', u'which', u'of'] -dress and : [u'features', u'go', u'were'] -profit 501 : [u'('] -biography sandwiched : [u'in'] -figured but : [u'rather'] -What an : [u'exposure'] -we waited : [u'for', u'in'] -handkerchief up : [u'to'] -a fess : [u'sable'] -the wearer : [u'perspired'] -play in : [u'the'] -was shaking : [u'his'] -closed and : [u'his', u'fastened'] -Lestrade called : [u'for'] -horrible doubt : [u'came'] -the loop : [u'of'] -of mysteries : [u'and'] -former ways : [u','] -Arms: : [u'Azure'] -hurry on : [u','] -headed, ' : [u'Singular'] -Friday, : [u'Mr', u'June', u'man'] -so pitiful : [u'a'] -Friday. : [u'Was'] -outweigh the : [u'love'] -love with : [u'her'] -forward stoop : [u'and'] -I extend : [u'to'] -beads sewn : [u'upon'] -the ebbing : [u'tide'] -you pain : [u','] -howling outside : [u','] -seen a : [u'paper', u'better', u'lady'] -leave until : [u'I'] -once furnish : [u'information'] -devoted some : [u'little', u'attention'] -which throws : [u'up'] -and took : [u'the', u'a', u'his', u'out', u'us', u'professional', u'me', u'down'] -doctors examined : [u'her'] -be stained : [u'with'] -up. : ['PP', u'You', u'We', u'I', u'With', u'They'] -round and : [u'discovered', u'the', u'round', u'up', u'examined', u'motion', u'wave'] -suffering from : [u'some'] -felony, : [u'but'] -, yawning : [u'. "', u'.'] -some shopping : [u','] -fad or : [u'a'] -/ copyright : [u')'] -be innocent : [u'."'] -incisive reasoner : [u'and'] -young women : [u'that'] -, crisp : [u'February'] -chairs into : [u'a'] -once that : [u'the', u'there'] -was convinced : [u'from'] -." When : [u'the'] -certainly that : [u'is'] -Eh? : [u'What'] -straw, : [u'lemon'] -with anger : [u','] -deal summarily : [u'with'] -glided away : [u'to'] -brightest rift : [u'which'] -leaped back : [u'.'] -been presented : [u'to'] -the gross : [u'profits'] -solution during : [u'the'] -of writers : [u'could'] -beauty. : [u'Yet', u'I', 'PP'] -a bonny : [u'thing'] -many which : [u'present'] -front, : [u'and', u'with', u'down'] -the season : [u'.', u'of'] -front. : [u'It', u'Then'] -are improved : [u'by'] -the injured : [u'man'] -from week : [u'to'] -be discovered : [u',', u'by'] -like mine : [u'that'] -alliance which : [u'will'] -can discuss : [u'my'] -times I : [u'have'] -some geese : [u'which'] -exacting, : [u'after'] -that tree : [u'during'] -wife as : [u'an', u'it'] -the someone : [u'could'] -seemed, : [u'than', u'those'] -after my : [u'return', u'night', u'marriage', u'arrival'] -father to : [u'know', u'let'] -gold. : ['PP', u'That'] -preceding night : [u'and'] -gold, : [u'with', u'became', u'invested'] -and discontent : [u'upon'] -after me : [u'.'] -vacancy in : [u'the'] -ask about : [u'father'] -and hereditary : [u'King'] -of San : [u'Francisco'] -settling himself : [u'down'] -play then : [u','] -Dundee it : [u'was'] -return the : [u'hospitality', u'medium'] -murder trap : [u'on'] -a certain : [u'ball', u'amount', u'annual', u'horror'] -faced with : [u'silk'] -in many : [u'of', u'ways'] -sent a : [u'chill'] -date of : [u'the', u'his', u'that'] -crime," : [u'said'] -nodded his : [u'head'] -has entered : [u'it'] -following Holmes : [u'in', u"'"] -of Trafalgar : [u'Square'] -eyes once : [u'more'] -position must : [u'have'] -young she : [u'left'] -You just : [u'read'] -more interest : [u'than'] -whereabouts. : ['PP'] -not waste : [u'the'] -! tut : [u'!"'] -much individuality : [u'as'] -more disturbing : [u'than'] -perfectly obvious : [u'from'] -, go : [u'to'] -these things : [u'for', u'in', u'from'] -a tinge : [u'of'] -grip has : [u'been'] -most stale : [u'and'] -s accumulation : [u'of'] -steps within : [u'the'] -Information about : [u'donations', u'the', u'Donations'] -the heaped : [u'up'] -too heavy : [u'a'] -father followed : [u'her'] -his lodgings : [u'at'] -civilisation, : [u'like'] -right! : [u'Sit', u'very', u'I'] -right, : [u'fourth', u'though', u'besides', u'and', u'John', u'I', u'were', u'who', u'Mr'] -which gives : [u'the'] -sun and : [u'a'] -most excellent : [u'offers'] -that Henry : [u'Baker'] -morning sunshine : [u'.'] -occupy. : [u'I'] -every mark : [u'of'] -upon five : [u'pillows'] -soon know : [u'which'] -was kneeling : [u'with'] -as Public : [u'Domain'] -seemed funny : [u'that'] -saw that : [u'everyone', u'on', u'my', u'the', u'there', u'he', u'she', u'they', u'a'] -sufferer over : [u'whom'] -a look : [u'at', u'of', u'on', u'.'] -quietly and : [u'secretly'] -strike his : [u'father'] -room and : [u'out', u'closed', u'I', u'gave', u'led', u'bar', u'found', u'of', u'waited', u'by', u'saw'] -Briony Lodge : [u',', u'.', u'once', u'to', u'and', u'was'] -proved to : [u'be'] -strike him : [u'.', u'that'] -Send him : [u'to'] -Slowly and : [u'solemnly'] -he even : [u'knew', u'thinks', u'broke'] -must confine : [u'yourself'] -of grizzled : [u'brown'] -plays at : [u'the'] -day," : [u'said'] -laid, : [u'perhaps'] -the dropping : [u'of'] -the clothes : [u'of', u'in', u'might', u'were'] -Contralto hum : [u'!'] -purple dressing : [u'gown'] -shown a : [u'single'] -home but : [u'after'] -convincing you : [u'that'] -cut off : [u',', u'the', u'and', u'my', u';'] -start for : [u'Winchester'] -blows of : [u'some', u'my'] -the labyrinth : [u'of'] -led to : [u'the', u'high', u'Boscombe', u'another'] -the servants : [u'and', u'.', u"'", u','] -actor I : [u'had'] -little pride : [u'and'] -mice, : [u'little'] -discovering the : [u'robbery'] -back and : [u'an', u',', u'leave', u'saw', u'done'] -of since : [u'.'] -hands and : [u'turned', u'quivering', u'stared', u'shall', u'looked'] -feeling that : [u'I', u'some'] -signed with : [u'her'] -Breckinridge upon : [u'it'] -. Peterson : [u'had'] -them all : [u'into', u'aside'] -the landing : [u'.'] -attainments. : [u'I'] -the bullion : [u'might'] -my way : [u'led', u'to', u'across', u'I', u'into', u'for'] -returning, : [u'he'] -axiom of : [u'mine'] -after being : [u'fully'] -screamed the : [u'old'] -your successes : [u'?"'] -retiring and : [u'gentlemanly'] -and pushed : [u'me', u'his'] -family circle : [u'.'] -about such : [u'nonsense'] -trade principle : [u'appears'] -smelling passage : [u','] -from amid : [u'the'] -as unconcerned : [u'an'] -swift as : [u'intuitions'] -whispered the : [u'director'] -May we : [u'bring'] -round her : [u'neck', u','] -end he : [u'would'] -some flaw : [u'?'] -his profession : [u',', u'.', u'but'] -Come with : [u'me'] -great anxiety : [u'.'] -one shaking : [u'finger'] -still confused : [u'and'] -attractions and : [u'accomplishments'] -drawer, : [u'and'] -still, : [u'as', u'the', u'with'] -, narrow : [u'winding'] -still. : [u'It', u'But', u'A', u'Then'] -heard the : [u'opening', u'sound', u'sharp', u'wheels', u'door', u'scuffle', u'rush', u'hoarse', u'creature', u'facts', u'slam', u'baying'] -Frank said : [u'that'] -either side : [u'of', u'.', u'were', u',', u'and'] -been referred : [u'to'] -all fastened : [u'this'] -worked with : [u'it'] -that is : [u'the', u'bizarre', u'very', u'strange', u',', u'only', u'to', u'--"', u'it', u'all', u'Mr', u'clear', u'undoubtedly', u'made', u'a', u'where', u'suggestive', u'absolutely', u'in', u'also', u'why', u'provided', u'her', u'quite', u'his'] -this singular : [u'series'] -admirably suited : [u'for'] -perplexity. : ['PP'] -too shaken : [u'to'] -laying my : [u'cap'] -have informed : [u'the'] -, protruded : [u'out'] -found save : [u'a'] -dull pain : [u','] -was missing : [u'.'] -that up : [u'in'] -and smoking : [u'his'] -glimmered in : [u'the'] -silent all : [u'the'] -the wind : [u'.', u'had', u'cried', u'still', u'is'] -music at : [u'St'] -by calling : [u'him'] -disreputable clothes : [u',', u'off'] -instantly with : [u'the'] -my mind : [u'with', u'when', u'without', u'was', u'to', u',', u'that', u'before', u'is', u'tended', u'now', u'about', u'as'] -about ten : [u'minutes'] -so outr : [u'as'] -are no : [u'lengths', u'red', u'hills', u'further', u'beryls'] -firm steps : [u'descending'] -3rd floor : [u')."'] -royalty fee : [u'of'] -some warmth : [u'.'] -small bedroom : [u','] -, black : [u'hair', u'side', u'waistcoat', u'haired', u'frock', u'morocco', u'muzzle'] -anxiety in : [u'my'] -soon see : [u'the', u'how'] -some way : [u'dependent', u'be', u','] -to do : [u',"', u'with', u'their', u".'", u'the', u'.', u'of', u',', u'to', u'which', u'?', u'so', u'anything', u'in', u'was', u'it', u'a', u'his', u'?"', u'what', u'within', u'yourself', u'now', u'is', u'."', u'just'] -managed it : [u'?"', u'."'] -yourself aware : [u'that'] -the franchise : [u'to'] -the reigning : [u'family', u'families'] -my estate : [u','] -he hardly : [u'knows'] -soon set : [u'matters', u'it'] -Garden Market : [u'.'] -preliminary to : [u'starting'] -but tell : [u'me'] -not I : [u'can', u'thought', u'alone'] -de Vere : [u'St'] -servants a : [u'man'] -for west : [u',"'] -acute reasoner : [u','] -Now and : [u'then'] -. Give : [u'me', u'her', u'him'] -bitter in : [u'me'] -animal moving : [u'about'] -not a : [u'soul', u'suspicion', u'pity', u'very', u'common', u'red', u'claim', u'bad', u'popular', u'cloud', u'dozen', u'clean', u'bird', u'moment', u'word', u'trace', u'photograph', u'beauty'] -Simon was : [u'decoyed'] -other consideration : [u'that'] -guessed Miss : [u'Hunter'] -the Serpentine : [u'mews', u'."', u'plays', u'?"'] -make my : [u'own'] -and you : [u'will', u'had', u'can', u'have', u'are', u'against', u'may', u'managed', u'make', u'know', u'in', u'renewed', u'!)', u'do'] -later that : [u'is'] -failing health : [u'for'] -Convinced that : [u'something'] -89 there : [u'came'] -assembled round : [u'him'] -?" screamed : [u'the'] -make me : [u'swear', u'his', u'even', u'certain'] -magnificent piece : [u'of'] -little reed : [u'girt'] -a request : [u'that'] -cellar, : [u'which'] -cellar. : [u'The', 'PP', u'If'] -relish for : [u'it'] -cellar! : [u'There'] -garden looked : [u'in'] -Bradstreet as : [u'the'] -them could : [u'be'] -s death : [u',', u'was', u'."'] -message, : [u'threw'] -shattered skull : [u'.'] -positive crime : [u'has'] -is, : [u'Where', u'will', u'and', u'if', u'in', u'it', u'of', u'my', u'then', u'the', u'on', u'I', u'presumably', u'however', u'sent', u'as', u'indeed', u'to', u'where', u'all', u'have'] -the speckled : [u'band'] -he sank : [u'his'] -catch the : [u'man', u'last', u'most'] -misgivings of : [u'the'] -from one : [u'to', u'whom', u'who'] -I told : [u'you', u'her', u'my', u'Arthur', u'it', u'him'] -perhaps," : [u'he'] -leaving you : [u'?"'] -another note : [u'in'] -inquiry came : [u'to'] -It ran : [u'in', u','] -has played : [u'in'] -a newly : [u'opened', u'severed'] -org. : ['PP', u'Email'] -. Charming : [u'rural'] -tower of : [u'the'] -me just : [u'run'] -of red : [u'headed', u'in', u'silk'] -sight sent : [u'a'] -began, : [u'and'] -experience among : [u'employers'] -interest," : [u'he', u'said'] -recall any : [u'case', u'which'] -only geese : [u'in'] -and unclasping : [u'of'] -MYSTERY We : [u'were'] -Coburg Square : [u',', u'.', u'presented', u'is'] -conjecture, : [u'however'] -waistcoat, : [u'gold', u'put', u'yellow'] -radiance that : [u'it'] -, egg : [u'and'] -set on : [u'going'] -s laughter : [u'made'] -of slums : [u'to'] -of simple : [u'cooking'] -he explained : [u'his', u'in', u'that'] -treachery never : [u'for'] -with brown : [u'gaiters'] -no jest : [u'in', u'.'] -Your windows : [u'would'] -autumnal evenings : [u'."'] -your strength : [u'with'] -mind anything : [u'quite'] -I ought : [u'to'] -giving your : [u'address'] -photograph was : [u'of'] -Southerton' : [u's'] -the imagination : [u'."', u'of'] -curiosity and : [u'sympathy'] -Rucastles will : [u'be'] -represent at : [u'least'] -closed again : [u'behind'] -watched my : [u'friend'] -acquaintance so : [u'dearly'] -of endeavouring : [u'to'] -As evening : [u'drew'] -pockets. : ['PP'] -agent to : [u'be'] -closely from : [u'every'] -shall leave : [u'all', u'it'] -formidable man : [u'a'] -were tinged : [u'with'] -execution, : [u'rather'] -ejaculated after : [u'I'] -and thoughtful : [u'look'] -fat hands : [u'out'] -the left : [u'one', u'arm', u'side', u'of', u'parietal', u'half', u'."', u'hand', u'; "', u'ran'] -exposure, : [u'he'] -exposure. : [u'He'] -and vilest : [u'alleys'] -exposure! : [u'What'] -for there : [u'came', u'lies', u'was', u'is', u'are'] -beautiful of : [u'women'] -girl. : ['PP', u'Turner', u'It'] -the grating : [u'.'] -girl, : [u'and', u'as', u'how', u'no', u'placed', u'the', u'Miss'] -it done : [u'?"'] -, however : [u',', u'long', u'.', u'."', u';', u',"', u'improbable'] -girl' : [u's'] -day before : [u'me', u',', u'the', u'still'] -throws any : [u'light'] -And for : [u'present'] -girl! : [u'Both'] -Come, : [u'man', u'now'] -evidence," : [u'I'] -lounged round : [u'the'] -to safeguard : [u'myself'] -making up : [u',', u'her'] -while her : [u'body'] -Come! : [u'Come', u'come'] -pit which : [u'he'] -Refund" : [u'described'] -chuckling. : [u'"'] -wrist, : [u'and', u'where'] -wrist. : ['PP'] -up there : [u'."', u',', u'.'] -of doing : [u'it', u'so'] -s closing : [u'his'] -of money : [u'.', u'not', u'through'] -that could : [u'have', u'answer', u'be'] -point, : [u'and', u'however', u'but', u'I'] -point. : [u'Now', u'You', u'However', u'Of', u'We', u'It', u'In', 'PP', u'From', u'I'] -much may : [u'have'] -vague impression : [u'that'] -no inquiries : [u'on'] -was an : [u'accomplice', u'enthusiastic', u'old', u'Indian', u'exceedingly', u'excuse', u'hour', u'end', u'excellent', u'ideal', u'exhilarating'] -fashion over : [u'her'] -as being : [u'the', u'terribly', u'a'] -expedition, : [u'and', u'which'] -Warm! : [u'You'] -expedition. : [u'Might', 'PP'] -with naked : [u'feet'] -characters. : [u'Pray'] -garden to : [u'the'] -no limit : [u'on'] -by old : [u'fashioned'] -surprised her : [u'in'] -strangers having : [u'been'] -he roused : [u'himself'] -her jewel : [u'box', u','] -piston, : [u'and'] -the thick : [u'blue'] -as though : [u'the', u'his', u'to', u'it', u'asking', u'a', u'there', u'some'] -widow of : [u'Major'] -whose pleasant : [u'lot'] -locket and : [u'showed', u'handed'] -curiosity was : [u'almost'] -Cosmopolitan," : [u'I'] -and filled : [u'with'] -Why did : [u'you'] -all access : [u'to'] -is passing : [u'into'] -time," : [u'he'] -Pancras Hotel : [u'.'] -maid to : [u'the'] -terminated at : [u'another'] -only as : [u'a'] -London street : [u'.'] -him killing : [u'cockroaches'] -tell tale : [u'garments'] -weak health : [u','] -been so : [u'carried', u'plentiful', u'persistently', u'unfortunately', u'kind', u',"'] -as tenacious : [u'as'] -It might : [u'be', u'or', u'have'] -the chimneys : [u','] -whose husband : [u'you'] -my accompanying : [u'them'] -There must : [u'have', u'be'] -lucky appearance : [u'saved'] -be well : [u'that', u'.'] -keenly interested : [u','] -, loudly : [u'protesting'] -I shall : [u'drop', u'be', u'drive', u'want', u'call', u'keep', u'stand', u'expect', u'glance', u'write', u'just', u'get', u'take', u'either', u'approach', u'use', u'reconsider', u'only', u'work', u'live', u'jot', u'not', u'certainly', u'set', u'see', u'seek', u'commence', u'have', u'go', u'fear', u'determine', u'continue', u'come', u'soon', u'order', u'never', u'return', u'look', u'walk', u'most', u'start', u'communicate', u'speedily', u'then', u'probably', u'now', u'meet', u'try'] -quietly off : [u'in'] -had earned : [u'it'] -the body : [u'.', u"?'", u'had', u'was', u'be', u'of', u'would'] -field. : [u'Besides'] -a disadvantage : [u','] -possessed in : [u'so', u'a'] -of hearts : [u','] -insufficient. : [u'It'] -third. : [u'I'] -third, : [u'and', u'Mrs'] -can you : [u'tell', u'gather', u'let', u'not'] -gentleman and : [u'ascertaining'] -without revealing : [u'what'] -easily think : [u'that'] -broken man : [u','] -that yet : [u'.'] -my work : [u'at', u'as', u'during', u'.'] -my word : [u',', u'that', u".'", u'for'] -consciousness anything : [u'so'] -were weary : [u'and'] -identical. : [u'Was'] -streaked with : [u'damp'] -thought was : [u'in'] -There only : [u'remains'] -his visitor : [u'with', u'.'] -at no : [u'cost', u'very', u'distance', u'additional'] -narrow for : [u'anyone'] -Holmes," : [u'said', u'answered', u'she', u'he', u'I', u'cried'] -forestalling it : [u'if'] -debt. : ['PP'] -, found : [u'ourselves', u'that'] -habit of : [u'winding', u'standing', u'advancing', u'seeing'] -clock train : [u','] -judge, : [u'would'] -called upon : [u'my', u'Scotland', u'to'] -last the : [u'little'] -and forgotten : [u".'"] -face set : [u'hard'] -on behind : [u'my'] -our visitors : [u'had'] -plain. : ['PP'] -fat goose : [u','] -I unlocked : [u'my'] -? The : [u'Embankment'] -somewhat vacuous : [u'face'] -narrative which : [u'promises', u'struck', u'has'] -head like : [u'a'] -was sober : [u'he'] -It proved : [u'to'] -seven in : [u'.'] -question provoked : [u'a'] -points upon : [u'which'] -himself round : [u'upon'] -stairs, : [u'got', u'the', u'however', u'and'] -stairs. : ['PP', u'She'] -the agreement : [u'shall'] -your secret : [u',', u'lies'] -meet him : [u'at', u'here'] -meet his : [u'death'] -prove that : [u'it'] -grounds very : [u'nicely'] -are rumours : [u'of'] -apiece. : [u'There', u'That', u'Then'] -several German : [u'books'] -laying down : [u'the', u'his'] -; at : [u'the'] -was quickly : [u'between'] -tied to : [u'the'] -threw himself : [u'down'] -mind dwell : [u'upon'] -just walk : [u'in'] -from India : [u','] -the gloom : [u'one', u',', u'to', u'behind', u'."'] -Dearest do : [u'not'] -happened in : [u'my'] -ambitious, : [u'took'] -done nothing : [u'actionable'] -sort, : [u'and', u'or', u'at', u'sir'] -sort. : [u'He', 'PP', u'And'] -Yard, : [u'a', u'is', u'looks'] -Yard. : [u'With', 'PP'] -thirty pounds : [u'."'] -DEAR MISS : [u'HUNTER'] -no," : [u'cried'] -full facts : [u'have'] -snap. : [u'Easier'] -against his : [u'emotion'] -colourless in : [u'mind'] -Yard? : [u'Let'] -perplexed, : [u'or'] -But perhaps : [u'it'] -, tut : [u',', u'!', u"!'"] -suggest that : [u'we'] -he; " : [u'my', u'I', u'a', u'pray', u'that', u'but'] -and buried : [u'in'] -he; ' : [u'I'] -, mopping : [u'his'] -had hoped : [u',"'] -top of : [u'the', u'his', u'such', u'it', u'a'] -; perhaps : [u'we', u'it'] -address specified : [u'in'] -drove on : [u','] -night I : [u'met'] -up entirely : [u'to'] -be called : [u'monotonous'] -dizziness and : [u'sickness'] -directly or : [u'indirectly'] -girl in : [u'every'] -the reckless : [u'air'] -matter that : [u'you'] -spring. : [u'Two'] -spring, : [u'and'] -administration. : [u'The'] -only picked : [u'it'] -best of : [u'my', u'his', u'training'] -have traced : [u'her'] -own method : [u','] -not offended : [u". '"] -matter than : [u'anyone'] -lane. : [u'So', u'This', u'His', u'I'] -train this : [u'morning'] -A nice : [u'little'] -be caused : [u'if', u'by'] -rather disconnected : [u','] -vital essence : [u'of'] -be precise : [u'as'] -other in : [u'the', u'one'] -from her : [u'drive', u'carriage', u'in', u'that', u'imprudence', u'hand', u". '", u'maid', u'and', u'chair', u'face', u'before'] -animal lust : [u'for'] -, stupefying : [u'fumes'] -a stout : [u'bearing'] -contrast between : [u'the'] -of society : [u'with', u'.', u'."'] -he stood : [u'before', u'at', u'beside', u'there', u'hid'] -other is : [u'to', u'a', u'there'] -for Mr : [u'.'] -every cause : [u'to'] -eyeglasses. : ['PP'] -larger at : [u'present'] -the fuss : [u'that'] -bad taste : [u'.'] -of large : [u'sums'] -Holmes gravely : [u'.', u'. "'] -your shutters : [u'?"'] -investigation, : [u'in', u'however'] -choose our : [u'positions'] -distinct than : [u'his'] -last human : [u'being'] -Holborn. : [u'Holmes'] -And my : [u'son', u'duties'] -search, : [u'he'] -He broke : [u'the'] -and forbidding : [u'her', u'in'] -' death : [u'from'] -detour into : [u'the'] -our doubts : [u'."', u'will'] -practice, : [u'if', u'it'] -marrying within : [u'the'] -practice. : [u'In'] -French gold : [u',"', u'?"'] -s marriage : [u','] -stately cough : [u'--"'] -camp and : [u'wandered'] -, " this : [u'is', u'marriage'] -man when : [u'you'] -steps for : [u'the'] -Retired from : [u'operatic'] -up Wellington : [u'Street'] -was hot : [u'upon'] -was how : [u'a'] -ransacked her : [u'house'] -When a : [u'woman', u'doctor'] -and turning : [u'the', u'to'] -severed human : [u'thumb'] -cried Mr : [u'.'] -one reaches : [u'for'] -ceiling were : [u'of'] -live in : [u'Winchester'] -the dense : [u'darkness'] -Not in : [u'the', u'a'] -When I : [u'hear', u'had', u'cried', u'saw', u'rose', u'went', u'glance', u'have', u'see', u'pay', u'came', u'passed', u'got', u'was', u'arrived', u'remembered'] -glided from : [u'the'] -no luck : [u'with'] -man and : [u'hurried', u'endeavoured', u'a', u'became', u'touched', u'who', u'his'] -and unprofitable : [u'."'] -tricks with : [u'poor'] -that suite : [u'of'] -first called : [u'your'] -are attained : [u'?"'] -other topic : [u','] -in Swandam : [u'Lane'] -! Fritz : [u"!'"] -this woman : [u'had', u'.'] -was acted : [u'in'] -purpose such : [u'as'] -Michael Hart : [u','] -really wouldn : [u"'"] -not sent : [u'it'] -walk with : [u'me'] -advance it : [u'without'] -Project Gutenberg : [u"'", u'License', u'volunteer', u'EBook', u'tm', u'is', u'"),', u'"', u'Literary', u'are', u':', u'volunteers', u'Web'] -terrible occupant : [u'.'] -conventionalities and : [u'foreseen'] -wife," : [u'said'] -Coburg branch : [u'of'] -" Pending : [u'the'] -who should : [u'be'] -made neither : [u'sound'] -of yourself : [u'in', u'!"'] -Holmes still : [u'carrying'] -finding this : [u'gentleman', u'lady'] -we both : [u'burst', u'bent', u'rushed'] -form accessible : [u'by'] -number is : [u'64'] -fact. : ['PP'] -fact, : [u'gentlemen', u'we', u'that', u'he', u'seven', u'in', u'as'] -when some : [u'great'] -. " My : [u'name'] -be probed : [u'to'] -and metallic : [u'sound'] -of innocence : [u'."'] -or cause : [u'to'] -and thrust : [u'them'] -by post : [u'.'] -this door : [u'shut', u',', u"?'"] -, apply : [u'to'] -states, : [u'and'] -up, ' : [u'Pondicherry'] -in gold : [u'and'] -brute broke : [u'loose'] -instinct is : [u'at'] -the policeman : [u','] -is true : [u'that', u'.', u','] -gold mine : [u'.'] -would guess : [u'.'] -on a : [u'couch', u'very', u'man', u'point', u'gallows', u'visit', u'cold', u'strange', u'three', u'large', u'matter', u'wager', u'Bible', u'logical', u'late', u'professional', u'friendly', u'bonnet', u'level', u'piece', u'physical'] -my being : [u'conveyed'] -quite settles : [u'the'] -sounding the : [u'planking'] -to comply : [u'with'] -of wonderfully : [u'sharp'] -and returns : [u'at'] -so trifling : [u'a'] -dining room : [u',', u'rushed', u'and'] -coldness, : [u'for'] -you reach : [u'it', u'your'] -metal remained : [u'to'] -weed in : [u'a'] -an excellent : [u'education', u'argument', u'character', u'explanation'] -thickening into : [u'a'] -sounded ominous : [u'.'] -blur of : [u'a'] -upper part : [u'of'] -claspings and : [u'unclaspings'] -has deprived : [u'me'] -vacancy did : [u'not'] -throwing himself : [u'down'] -, distributing : [u',', u'or'] -knee of : [u'the'] -will set : [u'off'] -instant. " : [u'My'] -us until : [u'the'] -to mania : [u'has'] -the fierce : [u'energy', u'weather'] -without unnecessary : [u'delay'] -dressed hurriedly : [u','] -self lighting : [u'.'] -little creature : [u'.'] -dock for : [u'a'] -about in : [u'every', u'the'] -mind reading : [u'me'] -never able : [u'to'] -a catastrophe : [u'.'] -the Thames : [u'.'] -light ladder : [u'against'] -prolonged absence : [u'having'] -me health : [u','] -free trade : [u'principle'] -is Sherlock : [u'Holmes'] -Rucastle told : [u'me'] -secret it : [u'might'] -about it : [u",'", u'that', u'.', u',', u'to', u'presently', u'."', u'for', u'in', u'as', u',"'] -Holmes gently : [u'. "'] -while indiscreetly : [u'playing'] -exceedingly definite : [u','] -for. : ['PP', u'I', u'He', u'Then'] -for, : [u'though', u'working'] -for' : [u'Gesellschaft', u'Company', u'Papier'] -Openshaw were : [u'never'] -look upon : [u'it', u'these', u'this', u'her'] -my head : [u'.', u'. "', u'which', u',', u'and', u'by'] -for; : [u'and'] -salesman in : [u'Covent'] -He burst : [u'into'] -landing stages : [u'."'] -continued to : [u'be'] -our client : [u'is', u',', u'came', u'had', u'has', u'clutched', u'. "'] -worst. : [u'We'] -its being : [u'seen'] -data!" : [u'he'] -damp, : [u'marshy'] -in amazement : [u'.'] -marry anyone : [u'else'] -peeping over : [u'his'] -envelope," : [u'he'] -gently remove : [u'the'] -single child : [u"?'"] -running at : [u'the'] -I traced : [u'her'] -throwing open : [u'the', u'another'] -finger into : [u'the'] -heavy footfall : [u'in'] -paid by : [u'me', u'a'] -backed a : [u'bill'] -most painful : [u'matter'] -more exciting : [u'.'] -a whole : [u'animal'] -impression as : [u'to'] -word he : [u'grasped'] -had cost : [u'our'] -sudden and : [u'so'] -highly respectable : [u'self'] -see anyone : [u'else', u'of'] -her story : [u'.'] -Pondicherry in : [u'a', u'January'] -rich pocket : [u'and'] -to forgo : [u'his'] -he looked : [u'her', u'very', u'at'] -called next : [u'day'] -D' : [u'you'] -what you : [u'wanted', u'have', u'earn', u'would', u'see', u'are', u'can', u'advise', u'say', u'advance', u'had', u'tell', u'were'] -. " Just : [u'tell', u'see'] -and distributed : [u'to', u'Project'] -saved an : [u'innocent'] -grateful words : [u'to'] -the spot : [u'upon', u'where'] -the Brixton : [u'Road'] -very positive : [u'one'] -an angry : [u'glance'] -them occasionally : [u','] -the bequest : [u'of'] -Twisted Lip : [u'VII'] -beneath them : [u'with'] -that day : [u'to'] -I believe : [u'that', u'?"', u'."', u'.', u',"', u',', u'in', u'I'] -sold my : [u'character'] -is Kate : [u'Whitney'] -pool can : [u'only'] -safely in : [u'bed'] -herself loomed : [u'behind'] -and these : [u'lie'] -mistaken. : ['PP', u'Boots'] -else while : [u'he'] -mistaken, : [u'to', u'for', u'is'] -I braved : [u'him'] -how about : [u'Mr', u'the'] -Stoner heard : [u'a'] -commencement of : [u'the'] -stirring. : [u'It'] -stirring, : [u'bearing'] -our friend : [u"'", u'says', u'the'] -worth your : [u'while'] -slop shop : [u'and'] -these lonely : [u'houses'] -elbow where : [u'you'] -, ' My : [u'God'] -stick. : [u'I'] -was running : [u'a', u'hard'] -interesting statement : [u'."'] -attention has : [u'now'] -long been : [u'an', u'notorious'] -his seat : [u'and'] -lad of : [u'eighteen'] -sufficient. : ['PP'] -brightly in : [u'the'] -would disgust : [u'you'] -even two : [u','] -and are : [u'feared', u'residing', u'then'] -Where to : [u"?'", u'?"'] -alone. : ['PP', u'The', u'But', u'I', u'She', u'He', u'A'] -one link : [u'in'] -ll have : [u'to', u'a', u'the'] -we should : [u'marry', u'do', u'go', u'reserve', u'find', u'need', u'quietly', u'earn', u'have', u'be', u'both'] -your lot : [u'with'] -My friend : [u'tore', u'was', u'smiled', u'rose', u'insisted'] -windows loomed : [u'like'] -doubt they : [u'were'] -10th. : [u'John'] -his red : [u'cravat'] -federal tax : [u'identification'] -noticed my : [u'questioning'] -absolutely all : [u'that'] -Odessa in : [u'the'] -vacancy, : [u'and'] -black clay : [u'pipe'] -animal by : [u'the'] -upon myself : [u'in'] -. ' It : [u'is', u"'"] -travel. : ['PP'] -and fantastic : [u','] -sodden with : [u'dew'] -would unfailingly : [u'come'] -Horner had : [u'disappeared', u'been'] -. ' If : [u'you'] -to 27 : [u'pounds'] -land which : [u'represent'] -but upon : [u'so'] -recovering lost : [u'lead'] -get rid : [u'of'] -he told : [u'me', u'us', u'inimitably'] -a gush : [u'of'] -imprisonment and : [u'afterwards'] -Co.' ' : [u'P'] -the gem : [u'."'] -of anyone : [u'anywhere'] -He chuckled : [u'to'] -a grey : [u'cloak', u'garment', u'carpet', u'suit'] -to show : [u'where', u'me', u'that', u'us', u'him', u'very'] -can I : [u'do'] -not pronounce : [u'him'] -pistol in : [u'my'] -that weakness : [u'in'] -inconvenience that : [u'we'] -mark, : [u'but'] -met in : [u'Fresno', u"'"] -mark. : [u'Hum', u'I'] -watching me : [u'narrowly', u',', u'eagerly'] -outr as : [u'a'] -met it : [u'.'] -must choose : [u'our'] -. Hudson : [u'came', u'to', u'has'] -; to : [u'me'] -swimming, : [u'for'] -may as : [u'well'] -afterwards from : [u'your'] -only say : [u'that', u','] -our humble : [u'lodging'] -lady we : [u'have'] -?" remarked : [u'Holmes'] -will again : [u'.'] -useful they : [u'would'] -Wharf, : [u'which'] -woman with : [u'a'] -doings of : [u'Hugh'] -villains who : [u'seemed'] -snake instantly : [u'occurred'] -concept and : [u'trademark'] -since he : [u'went'] -interesting character : [u'dummy'] -or plate : [u'.'] -sufficient to : [u'absorb', u'put', u'explain', u'mark'] -paper upon : [u'which'] -," returned : [u'the', u'Holmes'] -is obvious : [u'.', u'that'] -yards of : [u'it', u'your'] -house sweet : [u','] -rich landowner : [u"'"] -the fit : [u'was'] -a registered : [u'trademark'] -is half : [u'a', u'past'] -fortnight of : [u'the'] -cuts. : [u'Obviously'] -desperate villain : [u','] -visitors if : [u'he'] -yards or : [u'so', u'more'] -in wines : [u'.'] -being identified : [u'as'] -after father : [u"'"] -. Their : [u'papers'] -states do : [u'not'] -here? : [u'Tiptoes'] -Having no : [u'mother'] -, stout : [u'built', u'official'] -our companion : [u'in'] -glimpse of : [u'her', u'rushing', u'it', u'bodies', u'by', u'the', u'hope'] -the commissionaire : [u'?"', u',', u'had'] -Which were : [u'very'] -In two : [u'hours'] -the building : [u',', u'.'] -are likely : [u'to'] -hears that : [u'I', u'one'] -here. : [u'It', u'As', 'PP', u'All', u'Mrs', u'I', u'There'] -dying allusion : [u'to'] -here, : [u'and', u'Watson', u'Mr', u'I', u'however', u'sir', u'dad', u'but', u'unless', u'or'] -a bouquet : [u','] -here' : [u's'] -That would : [u'suit', u'be'] -minutes was : [u'rejoiced', u'inside'] -"' Precisely : [u'so', u".'"] -From amid : [u'the'] -The Church : [u'of'] -points about : [u'young', u'which', u'this', u'the'] -surface. : [u'Then'] -not interfere : [u',', u'very'] -have put : [u'on'] -tallish man : [u','] -was that : [u'advertisement', u'the', u'he', u'although', u'frightened', u'I', u'?"', u'of', u'she'] -ourselves as : [u'we'] -Foundation Project : [u'Gutenberg'] -ourselves at : [u'the'] -him anxiously : [u'in'] -was furnished : [u'with'] -as perplexed : [u','] -file or : [u'online'] -memory with : [u'a'] -received from : [u'outside'] -A prodigiously : [u'stout'] -we broke : [u'the'] -sweating!' : [u'he'] -it happens : [u','] -inimitably. : [u'Then'] -with paragraph : [u'1'] -a fact : [u',', u'that'] -Perhaps because : [u'he'] -nothing with : [u'him'] -cab with : [u'my'] -communicate. : [u'Should'] -consult you : [u'upon', u'in', u'as'] -having been : [u'returned', u'seen', u'there', u'given', u'tricked', u'lifted', u'worn'] -think that : [u'I', u'that', u'it', u'what', u'this', u'was', u'the', u'he', u'we', u'there', u'those', u'money', u'Neville', u'so', u',', u'you', u'your', u'his', u'they', u'likely', u'with', u'if', u'she', u'perhaps', u'any'] -station inn : [u'and'] -a face : [u'that', u'which'] -outdoor work : [u',"'] -was obvious : [u'to', u'.', u'that', u'from', u'at'] -orange pips : [u',', u'in', u'.', u'which'] -armchair. : [u'A'] -armchair, : [u'threw', u'Doctor', u'he'] -crime records : [u'unique'] -in error : [u'.', u','] -his glass : [u'in'] -matter but : [u','] -were dreadfully : [u'convulsed'] -. Did : [u'you', u'she'] -come what : [u'may'] -valise, : [u'rattling'] -within fifty : [u'miles'] -people don : [u"'"] -be tied : [u'."'] -as might : [u'very'] -do business : [u'with'] -of books : [u',', u'of'] -clothes and : [u'was', u'things', u'waited'] -my treasure : [u'was'] -furnished as : [u'a'] -address which : [u'she'] -. Until : [u'after'] -tin were : [u'discovered'] -a medical : [u'degree', u'man'] -new visitor : [u','] -quarrels with : [u'whoever'] -refund of : [u'any', u'the'] -to gain : [u".'", u'the'] -other clothes : [u'were', u'would'] -" She : [u'will', u'showed', u'was', u'told', u'died', u'brought', u'walked', u'is'] -jewels every : [u'facet'] -acres of : [u'ground', u'bramble'] -He mumbled : [u'a', u'several'] -for conversation : [u'.'] -A name : [u'derived'] -unrepaired breaches : [u'gaped'] -indeed been : [u'of', u'torn'] -thirty at : [u'the'] -, merely : [u'a', u'for'] -zigzag of : [u'slums'] -were beaten : [u'by'] -room while : [u'you'] -conclusion which : [u'shows'] -taking an : [u'obvious'] -incarnate. : [u'I'] -on save : [u'only'] -he opened : [u'for', u'and'] -Brixton Road : [u'249', u',', u',"', u'.'] -s another : [u'vacancy'] -Very strange : [u'!"'] -a driving : [u'rod'] -because in : [u'other'] -Majesty had : [u'not'] -though he : [u"'", u'poured', u'bit', u'knew', u'little'] -my spirits : [u'and'] -because it : [u'serves', u'is'] -provoked a : [u'quick', u'burst'] -room save : [u'for'] -almost invariably : [u'a'] -be indeed : [u'happy'] -your connection : [u'with'] -are particularly : [u'important'] -set him : [u'free'] -s arrows : [u','] -am living : [u'with'] -cruel. : ['PP'] -cruel, : [u'merely'] -stout built : [u','] -be bored : [u'or'] -Frank wouldn : [u"'"] -you!) : [u'can'] -double bedded : [u'one', u'room'] -mine has : [u'."'] -favourably impressed : [u'by'] -are sometimes : [u'curious'] -photograph a : [u'cabinet'] -wrinkles were : [u'gone'] -gong upon : [u'the'] -Her lips : [u','] -an iron : [u'bed'] -amount that : [u'I'] -secrecy for : [u'two'] -one near : [u'my'] -pince nez : [u'at', u'to'] -distinctive. : ['PP'] -s plenty : [u'of'] -table with : [u'his'] -cut, : [u'boyish', u'and'] -mud in : [u'no', u'that'] -the gang : [u'.', u'of'] -trap for : [u'her'] -can imagine : [u'how', u'from', u'."'] -search of : [u'a', u'are', u'the'] -my art : [u','] -smoke curling : [u'up'] -my arm : [u'and'] -the spotted : [u'handkerchiefs'] -his eagerness : [u','] -jury, : [u'having'] -Here it : [u'is'] -jury. : ['PP', u'There'] -Here is : [u'the', u'where', u'my', u'something', u'an', u'a'] -suddenly that : [u'it'] -investigate the : [u'cause'] -grey dressing : [u'gown'] -aware, : [u'more'] -Hitherto his : [u'orgies'] -her ring : [u'."'] -, finding : [u'from', u'that'] -jury; : [u'too'] -the barque : [u"'"] -such absolute : [u'ruin'] -determined, : [u'therefore'] -standing on : [u'it'] -frightened her : [u'I'] -from extreme : [u'languor'] -delicate point : [u','] -found Sherlock : [u'Holmes'] -filled out : [u','] -a sleepless : [u'night'] -three consultations : [u'and'] -t tell : [u'you', u'us'] -in absolute : [u'darkness'] -processes. " : [u'Such'] -Sometimes Holmes : [u'would'] -his address : [u'?"'] -amiable person : [u',"'] -sunlight; : [u'but'] -give his : [u'very'] -out with : [u'his'] -Public disgrace : [u'I'] -was myself : [u'regular', u'.'] -over yonder : [u'.'] -money just : [u'while'] -had still : [u'much'] -intensity. : [u'The'] -The events : [u'in'] -Adventure of : [u'the'] -(" the : [u'Foundation'] -checks, : [u'online'] -was advised : [u'by'] -has formed : [u'the'] -He relapsed : [u'into'] -not entirely : [u'devoid', u'lost'] -our threats : [u'.'] -far slighter : [u'evidence'] -1500 West : [u','] -Warburton' : [u's'] -lucrative means : [u'of'] -Mary my : [u'experience'] -few minutes : [u'in', u'until', u'he', u'with', u'of', u"'", u'I', u'during', u'after', u'to', u'while', u'later', u",'", u'.', u',', u'dressed'] -avoid the : [u'police'] -streets, : [u'which'] -"' Photography : [u'is'] -should she : [u'hand', u'come'] -show you : [u'how', u'what', u'the'] -; for : [u'I', u'what', u'he', u'having', u',', u'goodness'] -'-- here : [u'in'] -blazing red : [u'head'] -a swarm : [u'of'] -inquirer flitted : [u'away'] -The others : [u'are'] -quite close : [u'to'] -bell. " : [u'I'] -drawing your : [u'inferences'] -started to : [u'England', u'town', u'go'] -grasped that : [u'which'] -his waistcoat : [u'a'] -we rattled : [u'along'] -dummy, : [u'and'] -to tell : [u',', u'him', u'you', u'.', u'me', u'a', u'what', u'my', u'heavily', u'the', u'your', u'his', u'her', u'."', u'us'] -a month : [u'then', u'.', u'or', u'in'] -park keeper : [u'.'] -Westaway was : [u'the'] -public attention : [u'has'] -facts came : [u'out'] -cooking and : [u'keeps'] -farther, : [u'he', u'who', u'for'] -mind," : [u'said'] -crack, : [u'Master'] -wee hand : [u'seemed'] -opening a : [u'third', u'drawer'] -' attention : [u'to'] -good in : [u'that', u'making'] -him Hatherley : [u'Farm'] -broad gleaming : [u'Severn'] -from eavesdroppers : [u"?'"] -was at : [u'work', u'Baker', u'least', u'home', u'college', u'its', u'the', u'my', u'one', u'which', u'stake', u'once', u'death'] -manifold wickedness : [u'of'] -, Sir : [u'George'] -was as : [u'right', u'cruel', u'much', u'plainly', u'we', u'bright', u'well', u'passionate', u'amiable'] -They inherit : [u'Plantagenet'] -me twopence : [u'a'] -against him : [u'.', u'at', u'was', u'will', u','] -Mortimer' : [u's'] -I left : [u'the', u'at', u'him', u'this'] -previous one : [u'the'] -a full : [u'sailed', u'refund'] -know which : [u'to', u'it'] -although he : [u'wore', u'has'] -envelope and : [u'examining', u'saw'] -have no : [u'data', u'doubt', u'compunction', u'chance', u'notion', u'idea', u'time', u'further', u'news', u'connection', u'one', u'wish', u'possible', u'parents', u'business', u'want'] -plain, : [u'but'] -Hunter?' : [u'he'] -XII. : [u'The', u'THE'] -will explain : [u'to', u'the'] -antecedents, : [u'but'] -shall keep : [u'on', u'the'] -side were : [u'as'] -can guard : [u'against'] -some fresh : [u'clue'] -her clothes : [u','] -the study : [u'of', u'which'] -elastic sided : [u'boots', u'boot'] -manifested no : [u'further'] -he broke : [u'into'] -His brows : [u'were'] -. Man : [u','] -doctors' : [u'quarter'] -look three : [u'times'] -Holborn, : [u'down'] -If Horner : [u'were'] -investigation. : [u'The', 'PP', u'We', u'You', u'It'] -counties in : [u'our'] -little disc : [u'and'] -are daring : [u'men'] -me quite : [u'a'] -glint of : [u'a'] -that Holmes : [u'changed', u'was'] -and tobacco : [u'.'] -sternly. " : [u'It'] -nights I : [u'have'] -how will : [u'you'] -" Showing : [u'that'] -true story : [u','] -, bless : [u'my'] -you disliked : [u'the'] -refund, : [u'but'] -might give : [u',', u'you', u'the'] -refund. : [u'If'] -that explains : [u'what'] -slowly upon : [u'its'] -are cigars : [u'in'] -some half : [u'dozen'] -said Holmes : [u'. "', u'.', u'dryly', u',', u'with', u'coldly', u', "', u'when', u'severely', u'blandly', u'quietly', u'suavely', u'demurely', u'gently', u'gravely', u'as', u'after', u'thoughtfully', u'carelessly', u'sweetly', u'cheerily', u'sternly', u'; "', u'laying'] -brain must : [u'have'] -of refinement : [u'and'] -far from : [u'Carlsbad', u'Ross', u'the', u'at', u'a', u'being'] -ball," : [u'she'] -the lovely : [u'Surrey'] -be brave : [u','] -, Evening : [u'News'] -expressly for : [u'you'] -instincts are : [u'.'] -will fall : [u'into'] -hurried me : [u'into'] -and poultry : [u'supplier'] -held above : [u'her'] -curiosity I : [u'have'] -companies and : [u'went'] -an investment : [u','] -" 7th : [u'.'] -alone, : [u'however', u'for', u'and', u'at'] -much company : [u'?"'] -matter until : [u'he', u','] -tubes, : [u'with'] -get them : [u'from'] -drawled Holmes : [u'before'] -introspect. : [u'Come'] -six years : [u'old'] -pursued the : [u'thief'] -NEVILLE.' : [u'Written'] -adviser and : [u'helper'] -felt more : [u'heartily'] -lens he : [u'tested'] -I then : [u'lounged', u'glanced', u'took', u'hurried', u'looked', u'inquired'] -his senses : [u'might'] -little matter : [u'over', u',', u'of'] -were any : [u'traces'] -readily see : [u','] -beyond words : [u'.'] -My hand : [u'mirror'] -My cabby : [u'drove'] -already woven : [u'.'] -deductions, : [u'as'] -stands for : [u"'"] -pounds 10s : [u'.,', u'.'] -not pierce : [u'so'] -not go : [u'none', u'to', u'for', u'there', u'wrong', u'very', u'asleep'] -out in : [u'vile', u'front', u'the', u'such', u'a', u'our'] -it recalled : [u'in'] -were and : [u'from'] -you cared : [u'to'] -out if : [u'it'] -oppressed with : [u'a'] -lad should : [u'step'] -into possession : [u'of'] -you live : [u','] -my soul : [u'!'] -As well : [u'as'] -Three thousand : [u'will'] -prolong a : [u'narrative'] -visited in : [u'Northumberland'] -Having found : [u'the'] -pack away : [u'I'] -essential facts : [u'from'] -florid faced : [u','] -not discourage : [u'me'] -outer side : [u'of'] -holder of : [u'them', u'a'] -read to : [u'you'] -streets. : [u'It'] -to distinguish : [u'the'] -little difficulty : [u'in'] -person should : [u'produce'] -I distinctly : [u'saw'] -last century : [u','] -which would : [u',', u'disqualify', u'disgust', u'lead', u'finally', u'give', u'follow', u'show', u'induce', u'bring', u'buy', u'enable', u'convulse', u'suit', u'cover'] -of trees : [u'in', u','] -some claim : [u'upon'] -same good : [u'friend'] -ridiculously simple : [u'that'] -grey pavement : [u'had'] -individual works : [u'in'] -get a : [u'cab', u'fairer', u'smear', u'few'] -servant girl : [u'?"'] -holder, : [u'and', u'your'] -unobserved. : [u'Probably'] -holder. : ['PP', u'The', u'Additional'] -than you : [u'have', u".'", u'think', u'imagine'] -new conditions : [u','] -perch and : [u','] -make nothing : [u'of', u'at'] -cannot say : [u'that', u'what'] -to--" : [u'He'] -aged twenty : [u'six'] -rolled down : [u'the', u'between', u'in'] -date, : [u'you', u'but'] -tricky thing : [u',"'] -date. : ['PP'] -right ourselves : [u'.'] -shining into : [u'the'] -doing. : ['PP'] -the repute : [u'of'] -country which : [u'makes'] -side lanterns : [u'. "'] -Threadneedle Street : [u',', u'."'] -of petulance : [u'about'] -your work : [u'for', u'knowing'] -never felt : [u'more'] -check. : [u'Holmes'] -and distributing : [u'Project'] -he foresaw : [u'some', u'happened'] -row, : [u'three'] -attracted my : [u'attention'] -ashen white : [u','] -this den : [u'?"'] -necessary in : [u'order'] -our email : [u'newsletter'] -little accustomed : [u'to'] -me even : [u'less'] -, marshy : [u'ground'] -heard anything : [u'since', u'of'] -out two : [u'deaths', u'golden'] -being fairly : [u'well'] -so strong : [u'that'] -visit us : [u'.'] -foretold, : [u'and'] -stair I : [u'met'] -softened by : [u'the'] -I am : [u'baffled', u'not', u'lost', u'the', u'but', u'about', u'sure', u'following', u'likely', u'your', u'to', u'inclined', u'still', u'all', u'in', u'Mr', u'sorry', u'glad', u'immensely', u'.', u'able', u'forced', u'so', u'a', u'myself', u'going', u'afraid', u'amply', u'much', u'staying', u'delighted', u'very', u'boasting', u'ashamed', u'convinced', u'arrested', u'no', u'acting', u'faced', u'tempted', u'armed', u'an', u'illegally', u'unable', u'at', u'somewhat', u'right', u'commuting', u'saving', u'living', u'Dr', u'safe', u'now', u'for', u'descending', u'ready', u'surprised', u'one', u'Alexander', u'prepared', u'giving', u'endeavouring', u'exceptionally', u'left', u'ever', u'saved', u'bound', u'naturally'] -the eaves : [u'.'] -your nerves : [u'."'] -someone in : [u'the'] -hardened into : [u'a'] -own before : [u'marriage'] -crusted mud : [u'from'] -Street to : [u'Baker'] -machine readable : [u'form'] -opened the : [u'door', u'Gladstone', u'goose', u'case', u'bureau', u'window', u'yellow'] -pressed right : [u'through'] -never know : [u'where', u'when'] -yet was : [u'upon'] -interest of : [u'his'] -but absolute : [u'secrecy'] -another public : [u'exposure'] -s Cross : [u','] -may find : [u'neither', u'it', u'that'] -us hurry : [u'to'] -too terribly : [u'frightened'] -standing back : [u'a'] -no human : [u'eye'] -, just : [u'where', u'before', u'as', u'a', u'above', u'five', u'buy', u'to', u'at', u'the'] -The roadway : [u'was'] -brassy Albert : [u'chain'] -me than : [u'to', u'the'] -theft. : [u'I'] -breast, : [u'like', u'and', u'buried'] -are fourteen : [u'other'] -any purpose : [u'such'] -thought little : [u'more', u'enough', u'of'] -singular point : [u'which'] -, devoted : [u'some'] -far too : [u'generous'] -little knew : [u'what', u'for'] -stout gentleman : [u'half'] -gate, : [u'and', u'however'] -brandy and : [u'smoked', u'your', u'water'] -me that : [u'you', u'on', u'he', u'our', u'if', u'a', u'the', u',', u'there', u'it', u'whatever', u'I', u'her', u'all', u'my', u'feeling'] -come my : [u'way'] -or convinced : [u'himself'] -stoop and : [u'a'] -cocksure manner : [u','] -CONTRACT EXCEPT : [u'THOSE'] -sooner they : [u'do'] -My mind : [u'was'] -this last : [u'London'] -The cabman : [u'said'] -King; " : [u'nothing'] -Stoner was : [u'now', u'obviously'] -or at : [u'least'] -donations from : [u'people', u'donors'] -than your : [u'left'] -lumber room : [u'up', u'of', u'."'] -deepest thought : [u'.'] -this rambling : [u'and'] -lives quietly : [u','] -receipt that : [u's'] -this happened : [u'within'] -The central : [u'portion'] -came my : [u'sister'] -me think : [u'that'] -small wooden : [u'shelf', u'thicket'] -hinders.' : [u'And'] -a last : [u'long', u'hurried'] -Bradstreet had : [u'spread'] -delicately and : [u'successfully'] -s breathing : [u'now'] -see dimly : [u'what'] -to recognise : [u'him', u'the'] -' Where : [u'are'] -stronger reasons : [u'for'] -lashed furiously : [u'with'] -I care : [u'.'] -shutting his : [u'eyes'] -hubbub which : [u'broke'] -been. : ['PP', u'It'] -been, : [u'and', u'any'] -late one : [u'night'] -element of : [u'danger'] -a hand : [u'in', u'appeared', u'on'] -who pursued : [u'me'] -Beyond the : [u'obvious', u'mention'] -bath; : [u'and'] -is any : [u'reason', u'humiliation'] -a rather : [u'painful', u'shamefaced', u'peculiar'] -That will : [u'be', u'do', u'just', u'await'] -her of : [u'the'] -of fantastic : [u'talk'] -brother died : [u'five'] -be derived : [u'.'] -serious difference : [u'.'] -her on : [u'my'] -poor creature : [u'."'] -saw us : [u'our'] -in thought : [u'with', u','] -men who : [u'were', u'are', u'would'] -resemblance to : [u'the', u'a'] -fortunate, : [u'as', u'for'] -feeling which : [u'was'] -for fear : [u'she'] -by the : [u'study', u'official', u'last', u'sound', u'wrist', u'two', u'scissors', u'window', u'5', u'King', u'enthusiasm', u'thousands', u'Underground', u'collar', u'colour', u'machine', u'way', u'gentleman', u'loudly', u'old', u'incident', u'11', u'spreading', u'lake', u'butt', u'sunlight', u'maid', u'pool', u'fall', u'evening', u'farm', u'estate', u'nature', u'surgeon', u'time', u'contemplation', u'aid', u'early', u'ceaseless', u'light', u'brazier', u'fire', u'cabman', u'rattle', u'heavy', u'merest', u'passers', u'police', u'tide', u'question', u'coppers', u'most', u'approach', u'idea', u'swinging', u'jewel', u'measured', u'untimely', u'side', u'first', u'villagers', u'smell', u'twelve', u'fact', u'foot', u'morning', u'poor', u'use', u'table', u'generations', u'whishing', u'hands', u'highroad', u'woman', u'thousand', u'strange', u'butler', u'traffic', u'honour', u'back', u'shoulder', u'story', u'garden', u'kitchen', u'change', u'deep', u'egotism', u'manner', u'page', u'day', u'fresh', u'glimmer', u'terms', u'copyright', u'applicable', u'widest', u'Internal'] -Ample. : ['PP'] -He calls : [u'attention'] -nights. : ['PP'] -do it : [u'myself', u'.', u'in', u'of', u'when', u'again', u'."', u','] -would ensue : [u'if'] -can make : [u'out', u'neither'] -devouring. : ['PP'] -previous husband : [u'the'] -battered billycock : [u'but'] -what a : [u'woman', u'fool', u'blind'] -dock. : [u'But'] -and drawing : [u"--'"] -weeks I : [u'shall'] -flirting with : [u'a'] -do in : [u'a', u'our', u'the', u'these'] -what o : [u"'"] -or redistribute : [u'this'] -robber. : [u'There'] -your promise : [u'after'] -alone would : [u'imply'] -fancies in : [u'every'] -I just : [u'ordered', u'on', u'didn', u'made'] -squire dragged : [u'out'] -not bear : [u'to', u'the'] -pack of : [u'cards'] -what I : [u'ended', u'give', u'have', u'am', u'asked', u'wished', u'earn', u'gained', u'gather', u'was', u'liked', u'owe', u'should', u'had', u'say', u'came', u'want', u'felt', u'could', u'feel', u'can', u'may', u'did', u'know'] -his cigarette : [u'.', u'into'] -wife, : [u'which', u'looking', u'pulling', u'and', u'I'] -chimney is : [u'wide'] -wife. : ['PP', u'Remember', u'Toller', u'They'] -these papers : [u'to', u'and'] -can copy : [u'and'] -aroused my : [u'curiosity'] -wife' : [u's'] -of white : [u'cardboard', u'satin', u'stone'] -creation of : [u'derivative'] -case upon : [u'record'] -driving from : [u'the'] -gang. : [u'That', u'I', 'PP'] -came away : [u'in'] -gang, : [u'and'] -, THE : [u'TRADEMARK'] -all typewritten : [u'.'] -had locked : [u'.'] -colour of : [u'his', u'putty', u'your'] -large scale : [u','] -moon had : [u'sunk'] -been generally : [u'successful'] -of mice : [u','] -belonged to : [u'the', u'a'] -fields. : [u'There', u'On', u'This'] -like one : [u'who', u'of', u''] -few hours : [u'?"', u',', u'to', u'."'] -he refers : [u'to'] -move, : [u'and'] -ended with : [u'the'] -provided always : [u'that'] -sharply to : [u'the'] -little that : [u'I', u'he'] -trembling hands : [u'I'] -gives who : [u'is'] -pink flush : [u'upon'] -second. : ['PP'] -second, : [u'that'] -my magnifying : [u'lens'] -write in : [u'the'] -little town : [u','] -more depressed : [u'and'] -in unfeigned : [u'admiration'] -criminals. : [u'He'] -actually within : [u'the'] -the freedom : [u'which'] -, beautiful : [u','] -these sots : [u','] -has two : [u'children'] -intelligent face : [u','] -showing traces : [u'.'] -the danger : [u'would', u'is', u'.'] -station! : [u'What'] -was stated : [u'that'] -work( : [u'or', u'any'] -station, : [u'while', u'but', u'and'] -station. : ['PP', u'The', u'Have', u'However'] -whom we : [u'now', u'are', u'have'] -quest might : [u'be'] -the maximum : [u'disclaimer'] -back towards : [u'it'] -am somewhat : [u'of', u'headstrong'] -had hardly : [u'said', u'spoken', u'finished', u'flashed', u'shut', u'listened', u'reached'] -" Quite : [u'so', u'an'] -am in : [u'hopes', u'the', u'this', u'town', u'your'] -servant will : [u'call'] -to hear : [u'your', u'you', u'it', u'the', u'a', u':', u'about'] -in black : [u'frock', u'and'] -card which : [u'was'] -have sinned : [u','] -the unfortunate : [u'young', u'bridegroom'] -makes it : [u'a'] -both said : [u'never'] -reception by : [u'your'] -your patience : [u','] -at Miss : [u'Hunter'] -trouble was : [u'caused'] -was leaning : [u'against'] -lodging house : [u'mahogany'] -which consisted : [u'of'] -opposite there : [u'stood'] -carry the : [u'art', u'case'] -placed in : [u'our', u'so', u'coming'] -English counties : [u'in'] -be there : [u'.', u'in', u".'"] -Openshaw to : [u'caution'] -s daughter : [u','] -the knowledge : [u'of'] -some repairs : [u'were'] -the intention : [u'of', u'to'] -better able : [u'to'] -the commencement : [u',', u'of'] -morning' : [u's'] -morning, : [u'or', u'and', u'so', u'but', u'my', u'homeward', u'returning', u'in', u'Peterson', u'knowing', u'when', u'madam', u'I', u'heard', u'at', u'then', u'however', u'dipping', u'though'] -for self : [u'restraint'] -morning. : [u'I', u'She', 'PP', u'It', u'Our', u'Then', u'Mrs', u'You', u'He'] -they led : [u'to'] -been enough : [u'to'] -papers must : [u'be'] -trophy belongs : [u'."'] -you met : [u','] -A thick : [u'fog'] -became the : [u'terror'] -question was : [u'hardly', u'already'] -shall start : [u'at'] -in safety : [u'.', u'?', u".'", u'and'] -? Puzzle : [u'as'] -a search : [u'in'] -events may : [u'be'] -of exporting : [u'a'] -saw all : [u'that'] -know what : [u'to', u'has', u'you', u'other', u'became', u'was', u'is', u'women', u'I', u'woman', u'they'] -goes readily : [u'enough'] -PUNITIVE OR : [u'INCIDENTAL'] -to insult : [u'me'] -he entered : [u'.', u','] -rings into : [u'the'] -its French : [u'offices'] -of course : [u',', u'it', u'he', u'that', u'.', u'there', u'instantly', u'you', u'obvious', u'I', u'?"', u'!', u'would', u'we', u'the'] -land, : [u'where', u'money'] -which charge : [u'at'] -itself and : [u'tied'] -James Calhoun : [u','] -The propriety : [u'of'] -most probable : [u'that', u'one'] -incidents which : [u'will', u'may'] -have hoped : [u'to'] -fate. : [u'But', u'It'] -fate, : [u'that', u'I'] -, did : [u'you', u'some', u'Peterson', u'the'] -other dived : [u'down'] -that nobody : [u'can'] -have hopes : [u'?"', u'."'] -as Mr : [u'.'] -offices that : [u'was'] -all matters : [u'which'] -my hair : [u'would', u'is', u'until', u'in', u'to', u'have'] -Very retiring : [u'and'] -the poor : [u'gentleman', u'girl'] ---" Ryder : [u'threw'] -to form : [u'the', u'an'] -the pool : [u'.', u'I', u',', u'the', u'for', u'can', u'midway'] -quest is : [u'practically'] -interesting ourselves : [u'in'] -is something : [u'very', u'interesting', u'in', u'distinctly'] -, while : [u'Holmes', u'the', u'he', u'all', u'a', u'I', u'his', u'to', u'her', u'others', u'theirs', u'Breckinridge', u'even', u'she', u'in', u'poor', u'Wooden'] -of Reading : [u'.', u','] -excitement of : [u'this'] -no vehicle : [u'save'] -abominable crime : [u'.'] -Portsdown Hill : [u'.'] -they mean : [u'to'] -you like : [u",'"] -Hampshire quite : [u'easy'] -turn came : [u'the'] -started early : [u','] -a piece : [u'of', u'from'] -nature of : [u'the', u'a', u'this'] -works calculated : [u'using'] -Oscillation upon : [u'the'] -puzzled us : [u'.'] -but had : [u'finally', u'refused', u'listened', u'become', u'left'] -St.-- : [u'Oh'] -evil, : [u'however', u'which'] -very communicative : [u'during'] -officers waiting : [u'at'] -by them : [u'."', u'once'] -the conduct : [u'complained'] -draughts with : [u'me'] -the glamour : [u'of'] -the flooring : [u'was', u'and'] -to approach : [u'him'] -wore across : [u'the'] -steel pokers : [u'into'] -necessary to : [u'reach'] -suggestive," : [u'said'] -and deduction : [u'!'] -to stop : [u'it', u'the'] -; " perhaps : [u'I'] -his mental : [u'results'] -, brought : [u'in'] -opened it : [u'myself'] -doctors in : [u"'"] -And one : [u'who'] -she thought : [u','] -the receiver : [u'who'] -list of : [u'the', u'my'] -says he : [u", '", u','] -one there : [u'!'] -done what : [u'I'] -silent. : ['PP'] -have noted : [u'even'] -silent, : [u'but', u'motionless', u'while', u'and', u'then', u'pale'] -their senses : [u'.'] -expressive sometimes : [u'.'] -sometimes. : [u'And'] -to vary : [u'with'] -silent! : [u'Oh'] -lying among : [u'the'] -struggling men : [u','] -little eyes : [u'.', u'fixed'] -was cleared : [u'"'] -a Hercules : [u'.'] -?" The : [u'King', u'solemn', u'question', u'station', u'nobleman', u'fat'] -already met : [u'."'] -by either : [u'shoulder'] -up with : [u'the', u'a', u'these'] -mother' : [u's'] -mother! : [u'It'] -is no : [u'doubt', u'reason', u'more', u'use', u'great', u'law', u'possible', u'time', u'sign', u'easy', u'ordinary', u'other', u'wonder', u'human', u'mystery', u'vehicle', u'communication', u'good', u'lane'] -mother. : [u'Mr', u'Then'] -case against : [u'the', u'you'] -afterwards to : [u'the'] -has one : [u'positive'] -thinking it : [u'over'] -talk. : [u'We'] -allowance. : [u'I'] -talk, : [u'Mr'] -Any injury : [u'to'] -You hear : [u'!'] -All day : [u'the', u'I', u'a'] -coming save : [u'the'] -machine had : [u'come'] -Putting his : [u'hands'] -Wilson here : [u'has'] -,' Savannah : [u','] -of dread : [u'which'] -he started : [u'that', u',', u'off'] -a hydraulic : [u'engineer', u'stamping', u'press'] -What could : [u'it', u'that', u'be', u'he', u'have', u'she'] -look her : [u'up'] -earshot. : [u'The'] -right away : [u'with', u'to', u',"', u',', u'round'] -tissue of : [u'mysteries'] -my presence : [u'here', u','] -exact meaning : [u'I'] -the idiot : [u'do'] -see such : [u'a'] -quick little : [u'questioning'] -located at : [u'4557', u'809'] -stage lost : [u'a'] -the copyright : [u'status', u'holder'] -Nothing definite : [u'.'] -soon clear : [u'up'] -reasoner to : [u'admit'] -the rain : [u'had', u'to', u'splashed', u'was'] -milk, : [u'and', u'to'] -name I : [u'went'] -Describe it : [u'."'] -are coiners : [u'on'] -that can : [u'touch', u'be'] -, ladies : [u"'"] -client. " : [u'A'] -so thoughtful : [u'a'] -s web : [u'site'] -remained of : [u'the'] -were married : [u','] -conjectured to : [u'be'] -she consults : [u'her'] -anything which : [u'you', u'the', u'could', u'threw', u'would'] -is fortunate : [u','] -of material : [u'assistance'] -practice and : [u'made', u'had'] -men before : [u'you'] -led him : [u'out'] -' sir : [u"'"] -and smoked : [u'very', u'a'] -slippers on : [u'when'] -little low : [u'doors'] -Holmes refused : [u'to'] -little area : [u'of'] -much obliged : [u'if', u'to'] -noble lad : [u','] -the desire : [u'to'] -than myself : [u'."', u','] -sweet little : [u'problem'] -the market : [u',', u'price', u'.', u".'"] -art, : [u'however', u'and', u'it'] -older man : [u'might'] -a cripple : [u'!"', u'in'] -seems a : [u'very'] -a paper : [u'for', u'label', u',"', u','] -at midday : [u'to'] -deaths of : [u'my'] -, " yet : [u'there'] -spotted in : [u'several'] -The injuries : [u'were'] -no opposition : [u'to'] -hills around : [u'Aldershot'] -It seldom : [u'was'] -of rage : [u','] -a will : [u',', u'o'] -," snapped : [u'the'] -had set : [u'himself', u'in', u'the'] -No excuse : [u'will'] -discovered the : [u'stump'] -at Streatham : [u','] -were signs : [u'that'] -me his : [u'representative'] -fact on : [u'you'] -not accustomed : [u'to'] -John Horner : [u','] -fingers and : [u'a'] -was rich : [u'with'] -her ear : [u'.', u','] -Indeed," : [u'said'] -wandering gipsies : [u','] -the sailing : [u'vessel', u'ship'] -our stepfather : [u'about'] -No friend : [u'of'] -flat brims : [u'curled'] -she died : [u'of', u'from'] -clock this : [u'morning'] -openly confessed : [u'that'] -glance as : [u'to'] -crisis. : ['PP'] -You shall : [u'not', u'leave', u'learn'] -Proosia, : [u'for'] -little rat : [u'faced'] -much not : [u'to'] -locations where : [u'we'] -! Now : [u'he'] -immediately above : [u'your'] -how comical : [u'he'] -poor Mary : [u','] -me at : [u'the', u'a', u'least', u'last', u'my', u'once'] -Impossible. : ['PP'] -absent from : [u'home'] -that although : [u'he'] -me as : [u'the', u'a', u'they', u'relics', u'to', u'I', u'Mr', u'remarkable', u'being', u'possible', u'governess'] -This file : [u'should'] -she describes : [u'as'] -me an : [u'introduction'] -Visited Paramore : [u'.'] -the drowsiness : [u'of'] -ways including : [u'including'] -stone pass : [u'along'] -instantly opened : [u'by'] -surprised that : [u'Lord'] -some sudden : [u'fright'] -rod had : [u'shrunk'] -? Perhaps : [u'because'] -quarter past : [u'six', u'nine', u'seven'] -joke at : [u'first'] -complete happiness : [u','] -or nine : [u'years'] -who gave : [u'me'] -how interested : [u'I'] -throw a : [u'doubt', u'little'] -implied warranties : [u'or'] -begged me : [u'to'] -for governesses : [u'in'] -; plenty : [u'.'] -letter K : [u'three', u'of'] -heavy one : [u'.'] -sold upon : [u'hats'] -between layers : [u'of'] -letter A : [u',', u'.'] -Holmes in : [u'animated', u'his', u'Baker'] -is whether : [u'we'] -it time : [u'to'] -are all : [u'typewritten', u',', u'very', u'practical', u'seaports', u'as', u'to', u'wrong', u'the'] -the club : [u'again'] -quarter and : [u'pays'] -A camp : [u'bed'] -It corresponds : [u'with'] -What is : [u'it', u'the', u'he', u'this'] -soon made : [u'up'] -English*** : [u'START'] -that any : [u'beggar', u'unnecessary', u'burglar'] -chatting about : [u'her'] -might either : [u'openly'] -Good has : [u'come'] -gems to : [u'his'] -few words : [u'to', u'.', u',', u'he', u'with', u'in'] -and( : [u'c'] -an observant : [u'young'] -himself once : [u'more'] -poker and : [u','] -shall do : [u'exactly'] -never been : [u'strong', u'prosecuted', u'revealed'] -States. : ['PP', u'If', u'Compliance', u'U'] -not rain : [u'before'] -continue my : [u'work', u'professional', u'investigations'] -will avail : [u",'"] -October 9 : [u','] -uneasiness about : [u'his'] -Clair went : [u'into'] -fixed on : [u'my'] -turned not : [u'a'] -having regard : [u'to'] -wall. : [u'Here', u'The', 'PP', u'Finally', u'Making', u'I'] -his haste : [u'and'] -the particulars : [u'.', u'of'] -this inquiry : [u','] -he may : [u'have', u'find'] -her good : [u'aunt'] -could run : [u','] -at rest : [u'about'] -is splendid : [u'pay'] -felt quite : [u'bashful'] -passage lamp : [u'your'] -who sat : [u'by'] -living in : [u'this'] -unlikely that : [u'she', u'he'] -dear little : [u'Alice', u'woman', u'thing', u'romper'] -those preposterous : [u'English'] -found that : [u'he', u'I', u'it', u'that', u'the', u'she', u'Horner', u'this', u'Miss'] -or repay : [u'you'] -game keeper : [u'in', u'adds', u','] -back into : [u'my', u'the', u'Ross', u'his', u'your', u'its'] -retained Lestrade : [u','] -poison waxed : [u'or'] -orphanage in : [u'Cornwall'] -call Holmes : [u"'"] -convoy came : [u'down'] -conclusions most : [u'stale'] -may submit : [u'to'] -thinking, : [u'for'] -held him : [u'in'] -until lately : [u'lonelier'] -lay your : [u'hands'] -stain. : [u'Private'] -night which : [u'seemed'] -stain, : [u'or'] -held his : [u'golden'] -so fascinating : [u'and'] -returned at : [u'the'] -a register : [u"'"] -slammed heavily : [u'behind'] -neither of : [u'them', u'us', u'you'] -the furnished : [u'house'] -Saturday would : [u'suit'] -also. : ['PP', u'He', u'No', u'By'] -also, : [u'when', u'that', u'from', u'and', u'or'] -rather above : [u'the'] -was hardly : [u'out'] -the help : [u'of'] -pen, : [u'and', u'by'] -her mysterious : [u'end'] -movement, : [u'and'] -prompt and : [u'energetic', u'ready'] -States and : [u'you'] -my beginning : [u'without'] -be kind : [u'enough'] -grew worse : [u'as'] -Henry Baker : [u"'", u',', u'can', u'is', u',"'] -and confronted : [u'him'] -they subdued : [u'the'] -voice in : [u'my'] -cab outside : [u'."'] -political purposes : [u','] -in Sussex : [u','] -I hardened : [u'my'] -present moment : [u','] -were back : [u'in'] -having dispatched : [u'the'] -was essential : [u'that'] -appear to : [u'have', u'be', u'me'] -nodding approvingly : [u'; "'] -chisel and : [u'the'] -Contact the : [u'Foundation'] -exalted station : [u'of'] -Inn. : [u'They'] -Inn, : [u'near', u'which'] -constitution has : [u'been'] -formidable array : [u'of'] -at Ross : [u','] -exchange twopence : [u','] -been wired : [u'for'] -lady leave : [u'the'] -shiny hat : [u'and'] -I the : [u'honour', u'nerve'] -III. : [u'A', 'PP'] -a questioning : [u'and', u'glance'] -small bearded : [u'man'] -heavily behind : [u'us'] -but really : [u'as', u'old'] -day of : [u'his', u'the'] -senseless on : [u'the'] -threshold again : [u"'--"] -do the : [u'old', u'running', u'public'] -a liar : [u'as'] -block was : [u'comparatively'] -entire front : [u'of'] -Take your : [u'pistol'] -grandfather was : [u'a'] -day or : [u'two', u'night'] -how caressing : [u'and'] -have tattooed : [u'immediately'] -remarkable. : [u'I'] -him when : [u'he', u'there', u'summoned', u'Holmes', u'the'] -remarkable, : [u'save', u'and'] -handsome competence : [u'.'] -if he : [u'is', u'could', u'won', u'gets', u'had', u'would', u'evolved', u'wants', u'were'] -deal discoloured : [u'.'] -regained our : [u'cab'] -Holmes unlocked : [u'his'] -what their : [u'object'] -very expressive : [u'sometimes'] -were well : [u'within', u'upon'] -gems are : [u'found'] -Were there : [u'gipsies'] -been! : [u'And'] -shades of : [u'analysis'] -men if : [u'we'] -give you : [u'to', u'an', u'my', u'such', u'these', u'the', u'a', u'any', u',', u'120'] -brougham is : [u'waiting'] -soft mould : [u','] -very slow : [u','] -men in : [u'the', u'England'] -scene, : [u'when'] -a movement : [u'and'] -into her : [u'sitting', u'hand'] -all right : [u'."', u'.', u',"', u',', u'with', u",'"] -definite business : [u'.'] -four million : [u'human'] -broke out : [u',', u'between', u'from'] -rich men : [u'if'] -the barber : [u'.'] -cool and : [u'desperate'] -land contained : [u'that'] -unbuttoned in : [u'the'] -the Grosvenor : [u'Square'] -!' then : [u'?"'] -inside the : [u'envelope', u'bedroom', u'house', u'club'] -see your : [u'pal', u'father'] -thank our : [u'stars'] -note which : [u'was'] -the Red : [u'headed'] -His manner : [u'was'] -I struck : [u'him'] -so like : [u'her'] -natural manner : [u'. "'] -anxious look : [u'upon'] -down their : [u'horses'] -was settling : [u'down'] -laughing. " : [u'The', u'Besides', u'But', u'It', u'Only', u'I', u'Indirectly', u'You'] -to absolute : [u'secrecy'] -pain. : [u'We'] -nearly ten : [u'o'] -simple the : [u'explanation'] -IF YOU : [u'GIVE'] -daintiest thing : [u'under'] -probably drink : [u','] -so gently : [u'that'] -as we : [u'paced', u'stepped', u'could', u'entered', u'walked', u'turned', u'looked', u'emerged', u'were', u'followed', u'sat', u'get', u'might', u'have', u'drove', u'can', u'swung', u'came', u'filed', u'climbed', u'had', u'travelled', u'reached', u'took', u'went', u'go', u'heard', u'may', u'know'] -word without : [u'compromising'] -Holmes laughed : [u'. "', u'softly'] -issues hang : [u'from'] -, gave : [u'it', u'an', u'his', u'evidence', u'him'] -lately lonelier : [u'than'] -now so : [u'far'] -leg had : [u'waited'] -for colour : [u'.'] -the making : [u'of'] -One singular : [u'point'] -happens, : [u'I', u'he'] -not met : [u'the'] -at zero : [u','] -, Louisiana : [u','] -with any : [u'other', u'investigation', u'particular'] -as when : [u',', u'seen', u'you', u'it'] -all drawn : [u'and'] -together to : [u'Holmes'] -, bearing : [u'in'] -every prospect : [u'that'] -"' She : [u'came'] -window or : [u'the'] -shared with : [u'all', u'anyone'] -sympathy were : [u'deeply'] -probable in : [u'your'] -flitted away : [u'into'] -of Balmoral : [u".'", u',', u'has'] -Klan. : ['PP', u'A'] -costs and : [u'expenses'] -Holmes with : [u'a', u'his', u'enthusiasm'] -McCarthy came : [u'running'] -His boots : [u','] -go on : [u'to', u'with', u','] -cover my : [u'face'] -traditions. : [u'She'] -explained his : [u'process'] -fact connected : [u'with'] -quite beside : [u'the'] -, tapping : [u'the', u'his'] -Two years : [u'have', u'ago'] -He will : [u'find', u'be'] -, reports : [u','] -having apparently : [u'given'] -swift in : [u'making'] -is precisely : [u'for'] -YOU DISTRIBUTE : [u'OR'] -avenue gate : [u','] -slipped down : [u',', u'and'] -umbrella," : [u'said'] -been paid : [u'for'] -a victim : [u'.'] -pa. : [u'So', 'PP'] -but since : [u'your', u',', u'then'] -my position : [u';', u'I', u'when', u'you'] -invent nothing : [u'more'] -an evil : [u'time', u'dream'] -path. : [u'Violence'] -path, : [u'and', u'but'] -, taking : [u'a', u'the', u'in', u'up'] -his tiny : [u'stock'] -is interesting : [u',"'] -all sodden : [u'with'] -twenty paces : [u'across'] -suggest. : ['PP'] -hellish thing : [u','] -cunning than : [u'himself'] -few things : [u'packed', u'that'] -quiet streets : [u'which'] -s innocence : [u'.'] -the driver : [u'."', u'.', u','] -centre door : [u'was'] -! Retired : [u'from'] -shade. : [u'This'] -you an : [u'opinion', u'order', u'apology', u'idea'] -before myself : [u'.'] -you at : [u'the', u'Horsham', u'least'] -you as : [u'a', u'to', u'shortly', u'my'] -the commonplace : [u'."'] -out!" : [u'said'] -compensated for : [u'by'] -his words : [u'it', u',', u'with', u'out', u'alone', u'.'] -approached by : [u'the', u'a'] -the Friday : [u'.'] -dog. : [u'It'] -every form : [u'of'] -had considerable : [u'experience'] -scattered throughout : [u'numerous'] -severe were : [u'the'] -cunning that : [u'I'] -assured and : [u'easy'] -daughter. : [u'She', 'PP'] -"' Don : [u"'"] -completed their : [u'tunnel'] -his first : [u'yawn', u'independent'] -a fairer : [u'view'] -must collapse : [u'.'] -some opinion : [u'?"'] -expressive black : [u'eyes'] -the whereabouts : [u'of'] -gently waving : [u'his'] -might lead : [u'to'] -moment of : [u'the', u'our'] -other page : [u'in'] -work, ( : [u'b'] -George' : [u's'] -from jealousy : [u'or'] -and soda : [u'in', u'and'] -architects, : [u'or'] -freedom. : ['PP'] -knows best : [u'what'] -hard headed : [u'British'] -ex Australian : [u'.'] -to death : [u'in', u'and'] -very cunning : [u'man'] -informed that : [u'you'] -on day : [u'after'] -me suddenly : [u','] -make yourself : [u'absolutely'] -maker, : [u'no'] -window could : [u'be'] -, ' There : [u'is'] -Only once : [u','] -near your : [u'door'] -bell pull : [u'.', u',', u'there', u'."'] -much more : [u'favourable', u'respectable', u'important', u'likely', u'feeble'] -needs a : [u'wash', u'great'] -be injustice : [u'to'] -for its : [u'numerous', u'centre', u'own'] -hours?' : [u'I'] -excavating fuller : [u"'"] -my wound : [u'.', u'dressed'] -having her : [u'waylaid'] -slow process : [u'of'] -his breath : [u'.'] -hungry, : [u'Watson'] -afterwards at : [u'the'] -not one : [u'word', u'of'] -from off : [u'the'] -about Donations : [u'to'] -word was : [u'no'] -Ross, : [u'at', u'and', u'in', u'who', u'Holmes'] -my voice : [u'in'] -Ross. : ['PP', u'A'] -Nothing was : [u'left'] -many pointed : [u'radiance'] -be long : [u'before'] -time when : [u'William', u'he', u'I'] -a shade : [u'of', u'whiter'] -are badly : [u'wanted'] -. Unless : [u'they', u'you'] -merest moonshine : [u'."'] -He came : [u'back'] -line the : [u'north'] -, went : [u',', u'off', u'to', u'down'] -envelope, : [u'and'] -envelope. : ['PP', u'On'] -map. " : [u'What'] -different terms : [u'than'] -over of : [u'the'] -further parley : [u'from'] -its volunteers : [u'and'] -deeply and : [u'covered'] -were unapproachable : [u'from'] -that my : [u'eyes', u'lucky', u'hair', u'assistant', u'pal', u'colleague', u'own', u'girl', u'grandfather', u'mind', u'poor', u'companion', u'secret', u'wife', u'fears', u'sister', u'grip', u'profession', u'thumb', u'first', u'client', u'treasure', u'cousin'] -BOSCOMBE VALLEY : [u'MYSTERY'] -undoing the : [u'heavy'] -price. : [u'It', 'PP'] -feel easy : [u'until'] -a page : [u'from'] -either Mr : [u'.'] -revolver, : [u'cocked', u'but'] -misfortune this : [u'would'] -explain them : [u'?"'] -permission we : [u'shall'] -help gone : [u'to'] -first person : [u'it'] -experience to : [u'tell'] -promised her : [u'on'] -eye caught : [u'the', u'something'] -. ' Omne : [u'ignotum'] -"' No : [u'excuse', u',', u",'", u'friend'] -this double : [u'point'] -thick black : [u'veil'] -my young : [u'ladies'] -plover' : [u's'] -exercise, : [u'though'] -learn all : [u'that'] -wretched gipsies : [u'in'] -round it : [u'and', u',', u'to'] -fellow Merryweather : [u'is'] -disturb it : [u'.'] -eventually got : [u'to'] -she could : [u'not', u'but', u'see', u'hardly', u'do'] -round in : [u'the'] -key of : [u'the'] -writhing fingers : [u','] -hideous aspect : [u','] -to sleep : [u',', u'in'] -white creases : [u'of'] -evil time : [u'might'] -cheery sitting : [u'room'] -left at : [u'two'] -hurried glance : [u'around'] -Botany variable : [u','] -and follow : [u'up'] -solitude in : [u'England'] -followed him : [u'.'] -coming back : [u'dejected', u". '"] -excited as : [u'I'] -also a : [u'pair', u'greater', u'bird', u'conceivable'] -left an : [u'impression'] -trough. : [u'By'] -. THE : [u'RED', u'BOSCOMBE', u'FIVE', u'MAN', u'ADVENTURE'] -very old : [u',', u'mansion', u'hands'] -be neutral : [u'?"'] -borders into : [u'Berkshire'] -evening; : [u'but'] -problem which : [u'you'] -smoked a : [u'cigar', u'pipe'] -well known : [u'adventuress', u'to', u'Surrey', u'firm', u'agency'] -been drawn : [u',', u'out', u'from', u'to'] -The Count : [u'shrugged'] -also I : [u'could'] -about 11 : [u':'] -brought up : [u'and', u'upon', u'a'] -some points : [u'a'] -brought us : [u'to'] -from above : [u'.', u',"'] -supply of : [u'the', u'creatures'] -smoke which : [u'streamed'] -her hand : [u'upon', u',', u'.', u'at', u'to', u'over'] -is another : [u'note'] -was pledged : [u'to'] -the measured : [u'tapping'] -, aged : [u'twenty'] -my lady : [u"'"] -paid in : [u'ready'] -is unthinkable : [u'."'] -Rotterdam. : ['PP'] -Mother said : [u'he'] -the eyes : [u'of'] -silence to : [u'the'] -stood listening : [u'.'] -and Toller : [u'will'] -this good : [u'gentleman'] -and focus : [u'of'] -He lay : [u'back'] -colour had : [u'been'] -largest stalls : [u'bore'] -little late : [u','] -yourselves, : [u'that'] -raised to : [u'it'] -come now : [u'out'] -how. : ['PP'] -occur: ( : [u'a'] -were scrawled : [u'upon'] -for Pope : [u"'"] -gras pie : [u'with'] -may suffer : [u'unless'] -The least : [u'sound'] -trusty comrade : [u'is'] -their heels : [u'in'] -while waiting : [u'.'] -.' ' P : [u",'"] -cent. : [u'Two'] -American be : [u','] -two places : [u'in'] -could never : [u'guess', u'tell'] -vault. : ['PP'] -my affairs : [u'.'] -possibly whistle : [u','] -! Spies : [u'and'] -part of : [u'his', u'the', u'my', u'Lord', u'this'] -night dress : [u'.'] -s instincts : [u'are'] -and radiance : [u'that'] -two nights : [u'later'] -several other : [u'indications'] -Backwater tells : [u'me'] -he emerged : [u'in', u','] -A brown : [u'chest'] -bridegroom moves : [u'.'] -EBook of : [u'The'] -coroner and : [u'the'] -word about : [u'this', u'them'] -, when : [u'he', u'the', u'I', u'pursued', u'we', u'our', u'you', u'they', u'she', u'all', u'nothing', u'last', u'compared', u'it', u'once', u'there', u'taken', u'young', u',', u'your', u'my', u'his'] -the colony : [u'as'] -imprudence to : [u'leave'] -had formed : [u'my'] -wife; : [u'it'] -Duchess of : [u'Devonshire', u'Balmoral'] -matter, : [u'after', u'which', u'but', u'though', u'for', u'Mr', u'and', u'Reading', u'she', u'Lord', u'from', u'or', u'then'] -waiting so : [u'eagerly'] -muttered to : [u'themselves'] -? Do : [u'you'] -the handling : [u'of'] -) educational : [u'corporation'] -matter; : [u'so'] -the cabman : [u'to', u'got'] -They each : [u'led'] -That dreadful : [u'sentinel'] -would rest : [u'the'] -husband out : [u'from'] -green grocer : [u'who'] -wonderful chains : [u'of'] -the plugs : [u'and'] -less distinct : [u'than'] -These pretended : [u'journeys'] -the injuries : [u'reveal', u'.'] -On account : [u'of'] -England in : [u'connection'] -huge projecting : [u'bones'] -s sinking : [u'.'] -shall return : [u'by'] -fond of : [u'sport', u'playing', u'a'] -, sinewy : [u'neck'] -Draw up : [u'a'] -to cease : [u'and'] -had come : [u'in', u'to', u'between', u'.', u'upon', u'from', u'back', u'down', u'here', u',', u'over'] -a retort : [u'and'] -ease with : [u'which'] -, Victoria : [u'Street'] -the acting : [u','] -fierce old : [u'bird'] -new wedding : [u'ring'] -the snake : [u'is', u'before'] -destruction. : [u'Beyond'] -Your experience : [u'has'] -my finger : [u'could', u'on'] -trademark, : [u'and', u'but'] -est rien : [u'l'] -tragedy that : [u'had'] -this affair : [u','] -great public : [u'scandal'] -, liver : [u','] -, finished : [u'."'] -made the : [u'acquaintance', u'inspector', u'sign'] -of Pondicherry : [u','] -leaving the : [u'office'] -the Apaches : [u','] -wind up : [u'by'] -granted tax : [u'exempt'] -initials, : [u'is'] -dear madam : [u',"'] -besides the : [u'little'] -you satisfied : [u'?"'] -initials' : [u'H'] -of them : [u',', u'seemed', u'write', u',"', u'had', u'.', u'."', u'present', u'were', u'who', u'held', u'was', u'wear', u'would', u'with', u'again', u'could', u'in', u'has'] -employ. : ['PP'] -initials" : [u'H'] -face that : [u'a', u'I'] -then shown : [u'in'] -and figure : [u'were'] -him loose : [u'every'] -the status : [u'of'] -so prompt : [u'as'] -could meet : [u'us'] -giving advice : [u'to'] -was headed : [u', "'] -disappeared in : [u'an'] -the massive : [u'masonry'] -runs it : [u'has'] -we conveyed : [u'her'] -stall, : [u'was'] -avert scandal : [u','] -leave no : [u'survivor'] -London and : [u'took'] -younger than : [u'herself', u'her'] -found the : [u'card', u'dead', u'ash', u'brass', u'den', u'latch', u'summer', u'charred', u'young'] -dark coloured : [u'stuff'] -the prime : [u'of'] -example. : ['PP', u'We'] -example, : [u'you', u'that', u'how', u'what', u'as'] -I stared : [u'at'] -My attention : [u'was'] -my horror : [u'and', u','] -the toy : [u'which'] -servant maids : [u'joined'] -which make : [u'me'] -until you : [u'explain', u'had', u'have'] -his clay : [u'pipe', u'when'] -inward and : [u'outward'] -soon overtook : [u'Frank'] -of faded : [u'laurel'] -grey eyes : [u'.', u'wandered'] -a quick : [u'little', u'eye', u',', u'step'] -same care : [u'to'] -seen or : [u'heard'] -slight difficulty : [u'in'] -help it : [u','] -which bounded : [u'it'] -vilest antecedents : [u','] -window rapidly : [u'and'] -there?" : [u'cried'] -justice in : [u'the'] -precaution has : [u'to'] -his bright : [u'little'] -seen of : [u'the'] -he were : [u'indeed'] -four or : [u'five'] -night until : [u'it'] -certainly surprised : [u'to'] -my limits : [u'in'] -he pulled : [u'a'] -concerned. : [u'The'] -money matters : [u".'"] -four of : [u'their', u'them'] -, miss : [u"?'", u'.', u','] -some surprise : [u','] -at bottom : [u'a'] -went alone : [u','] -peculiarities of : [u'the'] -cigars in : [u'their', u'the'] -halfway down : [u'the'] -who sleeps : [u'in'] -blotted, : [u'none'] -tugging at : [u'one'] -less private : [u'than'] -the doorway : [u','] -Street( : [u'3rd'] -Street, : [u'buried', u'but', u'and', u'near', u'which', u'half', u'to', u'upon', u'a', u'Harley', u'that', u'at'] -of keys : [u'and'] -Street. : [u'As', 'PP', u'Two', u'Anybody', u'Sherlock', u'In', u'Nothing', u'It', u'A', u'Mrs'] -some remark : [u'to'] -divan, : [u'upon'] -enough of : [u'you', u'it', u'this'] -wonderful man : [u'for'] -As she : [u'spoke', u'swept'] -moment to : [u'lose', u'me'] -, whatever : [u'happened', u'remains'] -angry as : [u'perplexed'] -long grey : [u'travelling', u'dressing'] -no two : [u'of'] -in crime : [u'.'] -noiselessly as : [u'she'] -, watching : [u'the'] -. " By : [u'Jove', u'the'] -darkness. : [u'In', 'PP', u'Evidently'] -patches by : [u'smearing'] -he humours : [u'her'] -absolutely essential : [u'to'] -curled upward : [u','] -reached this : [u'one'] -the margin : [u'by'] -know more : [u'about'] -s chamber : [u'?"', u'was'] -. Baker : [u'.', u'?"', u'with'] -was perfectly : [u'simple', u'obvious', u'happy'] -your ears : [u'.'] -verbs. : [u'It'] -yourself very : [u'wet'] -other large : [u'towns'] -will go : [u'to', u'in', u'when'] -DISTRIBUTE OR : [u'USE'] -ago some : [u'repairs'] -slight frost : [u','] -NORTON, : [u'ne'] -this corner : [u'were'] -But,' : [u'said'] -all references : [u'to'] -she meant : [u'."'] -black hat : [u',', u'of'] -any provision : [u'of'] -, presumably : [u'his', u','] -to search : [u'for', u'me'] -who employs : [u'me'] -my goose : [u'now'] -nice household : [u',"', u'for'] -volcanic, : [u'I'] -two glasses : [u'of'] -pity that : [u'she'] -eye upon : [u'my'] -my illustrious : [u'client'] -, like : [u'he', u'one', u'a', u'untamed', u'those', u'the', u'that', u'all'] -relatives. : [u'And', u'I'] -knows? : [u'Perhaps'] -it off : [u',', u'."'] -of temper : [u'approaching'] -eclipses and : [u'predominates'] -she would : [u'not', u'send', u'be', u'."', u'have', u'make', u'recognise', u'fain', u'need'] -bureau, : [u'made', u'took', u'and'] -a temporary : [u'convenience'] -a household : [u'word', u'.'] -Tell me : [u'all', u',', u',"'] -half pennies : [u'421', u'.'] -is plenty : [u'of'] -mother had : [u'left'] -proportion do : [u'not'] -slabs of : [u'marble', u'metal'] -allow me : [u'to'] -every night : [u'.', u'for', u','] -six or : [u'eight'] -Was dressed : [u',', u'in'] -his Majesty : [u'to'] -old room : [u'at'] -I answered : [u'.', u'that', u'frankly', u'. "', u',', u"; '", u'sharply', u', "', u'advertisements', u'firmly'] -my money : [u',', u'settled'] -been two : [u'murders'] -company with : [u'a', u'Flora'] -befall. : ['PP'] -six of : [u'us', u'them'] -contains the : [u'coronet'] -be among : [u'the'] -meditative mood : [u'--"'] -evil of : [u'such'] -the power : [u'of'] -I did : [u'so', u'not', u'manual', u'at', u'bang', u'it', u'as', u'what', u'to', u'."', u'.', u'break'] -sitting upon : [u'five'] -of flesh : [u'coloured'] -Lake City : [u','] -and giving : [u'advice'] -attention to : [u'the', u'it', u'this'] -common loafer : [u'.'] -intricate matter : [u'which'] -his cousin : [u'walking', u','] -every week : [u','] -Now from : [u'this'] -being some : [u'day'] -breathing now : [u'."'] -lady has : [u'a', u'arrived'] -, " does : [u'it'] -of four : [u'fingers'] -of burned : [u'paper'] -surprised to : [u'hear', u'find', u'see'] -of foul : [u'play'] -mumbled several : [u'words'] -long ceased : [u'to'] -ran along : [u'and'] -You could : [u'not'] -course there : [u'was', u'can', u'is'] -quite unusual : [u'boots'] -successful. : [u'I', 'PP'] -Holmes the : [u'sleuth', u'relentless'] -buffalo and : [u'wallowed'] -same questioning : [u'and'] -her limbs : [u'were'] -by sending : [u'a'] -aged gentlemen : [u'are'] -matter here : [u','] -Trincomalee, : [u'and'] -and innocent : [u'one'] -Tennessee, : [u'Louisiana'] -and hurling : [u'them', u'the'] -cloak which : [u'was', u'I'] -made upon : [u'it'] -it promised : [u'to'] -coroner have : [u'been'] -once by : [u'paint', u'a', u'the'] -to having : [u'been', u'heard', u'rushed'] -the fields : [u'.'] -served them : [u'was'] -after all : [u'."', u',', u'.', u';', u'this', u'those', u'the'] -mingled horror : [u'and'] -he seated : [u'himself'] -so from : [u'Eyford'] -of examination : [u'.'] -abiding country : [u'is'] -coupled it : [u'with'] -burly man : [u','] -round myself : [u';'] -passing through : [u'the'] -smell grew : [u'stronger'] -but very : [u'quietly', u'small'] -swiftly backward : [u'and'] -, here : [u"'", u'on', u'it', u'is'] -. " Bring : [u'me'] -morning with : [u'her', u'the'] -deathbeds, : [u'when'] -we walked : [u'away'] -paper in : [u'his', u'the', u'London', u'a'] -rubbed it : [u'twice'] -last week : [u'.', u'to', u'I'] -the pungent : [u'cleanly'] -then? : [u'He', u'It', u'Has', u'What', u'You', u'If', u'Can'] -entered, : [u'so', u'and', u'looking', u'a', u'I', u'with', u'to'] -garden and : [u'two'] -exactly fitted : [u'the'] -Copper. : ['PP'] -foreman; : [u'but'] -was removed : [u'it', u',', u'to'] -back before : [u'the', u'evening', u'three', u'he'] -remarking its : [u'beauty'] -very strongest : [u'points', u'motives'] -excellent ears : [u'.'] -to sitting : [u'here'] -was left : [u'me', u'in', u'save'] -past the : [u'cheekbones', u'maid', u'servant', u'Goodwins'] -foreman, : [u'and'] -added, : [u'as'] -way home : [u','] -about an : [u'investment'] -good seven : [u'miles'] -not keep : [u'you'] -cried half : [u'mad'] -you make : [u'of', u'him'] -to opium : [u'.'] -glanced across : [u'at'] -dear Holmes : [u',"', u'!"'] -half hopeful : [u'eyes'] -wrongfully hanged : [u'."'] -swamp our : [u'small'] -pitiable as : [u'possible'] -Lascar manager : [u'.'] -would slip : [u'your'] -nodded to : [u'show'] -lodger, : [u'and'] -then turn : [u'the'] -the dying : [u'woman', u'allusion'] -cupboard. : ['PP'] -opening his : [u'eyes'] -coming into : [u'town'] -note." : [u'He'] -prisoner, : [u'he', u'the'] -over there : [u'?"'] -then up : [u'at'] -resolution, : [u'perhaps'] -alarm took : [u'place'] -name. : [u'In', 'PP', u'Just', u'She'] -part which : [u'he', u'I'] -fix the : [u'derbies', u'problem'] -filled for : [u'the'] -and vanished : [u'amid', u'into', u'as'] -the mark : [u'would', u'.'] -seen someone : [u','] -" Farintosh : [u',"'] -, uncertain : [u'whether'] -' was : [u'a', u'there', u'printed'] -receive specific : [u'permission'] -States government : [u'and'] -. " There : [u'is', u'are', u',"'] -peace offering : [u'to'] -run, : [u'for'] -brought before : [u'the'] -clapped my : [u'hand'] -and habit : [u','] -quick intuition : [u','] -pay such : [u'a'] -an examination : [u'of'] -minute or : [u'more'] -roofs some : [u'distance'] -, reached : [u'Leatherhead'] -our hands : [u'.', u'."', u'were'] -very best : [u'and', u'quality'] -exceedingly complex : [u'.'] -present prices : [u'of'] -little out : [u'of'] -have mentioned : [u','] -a whisky : [u'and'] -saved if : [u'I'] -gruff monosyllable : [u'she'] -, regular : [u'footfall'] -, endeavoured : [u'in'] -a proposal : [u'and'] -building, : [u'the', u'two', u'near', u'and', u'which'] -clbres and : [u'sensational'] -building. : ['PP'] -; but : [u'he', u'the', u'just', u'she', u'perhaps', u',', u'Spaulding', u'we', u'after', u'when', u'they', u'I', u'since', u'of', u'his', u'in', u'what', u'it', u'one', u'you', u'this', u'within', u'then', u'now', u'no', u'indeed', u'that'] -our window : [u'we'] -says. : ['PP'] -brown crumbly : [u'band'] -perils than : [u'did'] -always appears : [u'to'] -where any : [u'man'] -in perfectly : [u'black'] -friend was : [u'an'] -One night : [u'it'] -Stark' : [u'engraved'] -. Born : [u'in'] -. for : [u'J'] -writ served : [u'upon'] -so afterwards : [u'we'] -Stark. : [u'The'] -cabs were : [u'dismissed'] -were just : [u'being', u'beginning', u'throwing', u'like', u'two'] -of making : [u'me', u'his', u'up', u'friends', u'the'] -Thank you : [u',"', u'.', u'for', u',', u'!"'] -all fear : [u'of'] -the latch : [u'and'] -Because you : [u'have'] -timid woman : [u','] -grate there : [u'was'] -by your : [u'uncle', u'theory', u'son', u'equipment'] -little den : [u','] -blonde woman : [u'stood'] -am illegally : [u'detained'] -gone. : ['PP', u'We', u'You', u'Presently'] -gone, : [u'the', u'Holmes'] -sat when : [u'a'] -suffer unless : [u'some'] -faster and : [u'stared'] -in darkness : [u'.'] -maddening it : [u'must'] -face which : [u'spoke', u'was', u'made'] -importance. : [u'If', u'At', u'Good', u'Yours', u'The'] -were engaged : [u'upon', u'."', u'after', u'.', u'to'] -lens, : [u'began', u'that', u'and'] -had put : [u'100', u'myself'] -the site : [u'of'] -public prints : [u','] -awoke you : [u'from'] -want, : [u'then'] -hesitated whether : [u'to'] -who have : [u'been', u'referred', u'retained', u'sought', u'ever', u'handled', u'occasionally', u'no'] -."- : [u'You'] -of Replacement : [u'or'] -he breathed : [u'his'] -begins to : [u'twist'] -"' Jephro : [u",'"] -some 30 : [u'pounds', u','] -to some : [u'other', u'extent', u'secret', u'sailor', u'band', u'place', u'lodgings'] -s dwelling : [u'.'] -bringing the : [u'tools'] -rough, : [u'uncouth'] -two persons : [u','] -friend had : [u'on'] -outdated equipment : [u'.'] -stopped. : ['PP'] -most suspicious : [u'remark'] -morning; : [u'but'] -They appear : [u'to'] -have spoken : [u'out', u'now', u',', u'to'] -abuse your : [u'patience'] -well and : [u'good', u'had'] -aside altogether : [u'.'] -and frogged : [u'jacket'] -unclasping of : [u'his'] -few inferences : [u'which'] -Streatham, : [u'carrying'] -l' : [u'oeuvre'] -quite like : [u'that'] -Gesellschaft,' : [u'which'] -least. : ['PP', u'That', u'Is'] -be open : [u'to'] -least, : [u'I'] -little bundle : [u'of'] -As we : [u'approached', u'passed', u'entered', u'rolled'] -masculine face : [u';'] -betray me : [u'.'] -not imagine : [u',', u'.', u'what', u'a'] -interpreted to : [u'make'] -I plied : [u'my'] -home the : [u'goose'] -was turned : [u'from'] -children' : [u's'] -youth whom : [u'he'] -freely as : [u'before'] -a task : [u'.'] -them before : [u'her'] -an investigation : [u'.'] -most. : [u'It'] -most, : [u'only'] -been recommended : [u'to'] -neat little : [u'landau', u"'"] -donations to : [u'', u'carry', u'the'] -never came : [u'back'] -own," : [u'said'] -much prefer : [u'to', u'having'] -James Windibank : [u',"', u'wished', u'running', u'.'] -little incidents : [u'which'] -said Miss : [u'Stoner', u'Hunter'] -cure. : [u'I'] -county out : [u'upon'] -in evening : [u'dress'] -minutes,' : [u'said'] -daughter Alice : [u'('] -Beyond lay : [u'another'] -build an : [u'orphanage'] -families. : [u'Now'] -programme, : [u'which'] -a whitewashed : [u'corridor'] -how a : [u'great', u'miners'] -so delicate : [u'that'] -hanging lip : [u','] -playing with : [u'a'] -intention of : [u'awaiting', u'going', u'visiting', u'wishing', u'remaining'] -rather not : [u'talk'] -obviously it : [u'could'] -s photograph : [u'!"'] -, AK : [u','] -pay for : [u'their'] -constable entered : [u'the'] -electronic. : ['PP'] -eyes are : [u'as'] -lithe and : [u'small'] -how I : [u'employed', u'had', u'read', u'came', u'could', u'trust'] -. Under : [u'these'] -time which : [u'it', u'suits'] -traces which : [u'had'] -letter on : [u'the'] -. Presently : [u'he', u'she'] -turned her : [u'back'] -lips. " : [u'I'] -been the : [u'victim', u'lodger', u'last', u'herald'] -" Let : [u'me', u'you', u'us'] -a dressing : [u'table'] -travel the : [u'distance'] -full and : [u'rich'] -clue seems : [u'to'] -lately. : [u'My', u'I', u'It', u'No'] -be such : [u'a', u'an'] -curious as : [u'to'] -ourselves in : [u'Serpentine', u'the', u'Bow', u'his', u'our', u'front'] -fumbled about : [u'looking'] -and greeting : [u'his'] -position I : [u'could'] -bedside of : [u'the'] -My life : [u'is'] -( trademark : [u'/'] -may get : [u'away'] -water outside : [u'which'] -always glided : [u'away'] -hover over : [u'this'] -and loathing : [u'.'] -position a : [u'little'] -ponderous commonplace : [u'books'] -my penetrating : [u'to'] -business of : [u'the'] -and glancing : [u'along', u'his', u'about'] -for strange : [u'effects'] -we retained : [u'until'] -hours passed : [u'slowly'] -a Bohemian : [u'nobleman'] -evening at : [u'221B', u'the'] -were present : [u','] -heinous. : [u'If'] -the hubbub : [u'of'] -cloud of : [u'newspapers'] -was known : [u'to'] -explanation of : [u'the'] -terrible would : [u'be'] -and wayside : [u'hedges'] -lady of : [u'to'] -fill the : [u'socket'] -sealed book : [u','] -a seat : [u',"', u'."', u','] -companion imperturbably : [u'.'] -imprisonment, : [u'ay'] -imprisonment. : ['PP'] -two servants : [u'a'] -fellow very : [u'kindly'] -indemnify and : [u'hold'] -heavens! : [u'I'] -a slight : [u'bow', u'defect', u'motion', u'stagger', u'tremor', u'shrug', u'leakage', u'forward', u','] -honest fellow : [u','] -all mingled : [u'in'] -hands frantically : [u'to'] -whatever about : [u'the'] -shelves and : [u'open'] -haze, : [u'but'] -Westbury House : [u'festivities'] -this agreement : [u',', u'.', u'and', u'for', u'by', u'before', u'violates', u'shall'] -usual round : [u'shape'] -the stepfather : [u'.'] -of logical : [u'synthesis'] -patient, " : [u'but'] -is sweetness : [u'and'] -, entreated : [u'him'] -answered it : [u'.'] -behind it : [u',', u'."', u'as'] -unthinkable. : ['PP'] -window?" : [u'Holmes'] -patience, : [u'there'] -of gold : [u'with'] -have Jones : [u'with'] -the estates : [u'extended'] -legged wooden : [u'stool'] -roared. : ['PP'] -of peering : [u'and'] -little attention : [u'.'] -a railway : [u'accident'] -this sinister : [u'way', u'quest'] -of advertising : [u'my'] -wait and : [u'breakfast'] -fantastic. : [u'Of'] -presumably his : [u'overcoat'] -fantastic, : [u'but'] -curving wings : [u','] -talking of : [u'what'] -asks. : ['PP'] -to bluster : [u'and'] -weather had : [u'taken'] -have indeed : [u'been'] -stands near : [u'the'] -know quite : [u'what'] -their tunnel : [u'.'] -deep business : [u',"'] -turned towards : [u'it'] -mother take : [u'the'] -the drug : [u','] -Simon came : [u'to'] -who brings : [u'our'] ---" have : [u'you'] -of doors : [u'on'] -. Could : [u'I'] -their names : [u'are'] -lay the : [u'short', u'magnificent'] -old house : [u','] -of two : [u'years', u'voices', u'glowing'] -eyes on : [u'him'] -occupations. : ['PP'] -at the : [u'ease', u'bell', u'neck', u'tops', u'end', u'languid', u'Langham', u'back', u'moment', u'altar', u'same', u'signal', u'corner', u'top', u'open', u'rocket', u'door', u'time', u'man', u'offices', u'St', u'houses', u'line', u'head', u'front', u'side', u'queer', u'fringe', u'gasfitters', u'right', u'first', u'forefinger', u'neat', u'bottom', u'bedside', u'dnouement', u'office', u'other', u'sight', u'race', u'least', u'border', u'inquest', u'pretty', u'mines', u'gold', u'instant', u'pool', u'most', u'boundary', u'Assizes', u'table', u'last', u'diggings', u'outside', u'envelope', u'box', u'roots', u'foot', u'bank', u'breakfast', u'postmark', u'clock', u'Bar', u'address', u'present', u'window', u'harvest', u'opium', u'unexpected', u'appearance', u'edge', u'band', u'Hotel', u'hotel', u'conclusion', u'hour', u'hands', u'Alpha', u'bare', u'cringing', u'devil', u'geese', u'opening', u'inquiry', u'Crown', u'station', u'highest', u'rope', u'coroner', u'stroke', u'ventilator', u'chamber', u'strange', u'books', u'handle', u'lock', u'further', u'Westbury', u'Allegro', u'wrong', u'idea', u'numbers', u'little', u'lower', u'large', u'house', u'news', u'scene', u'far', u'coronet', u'expense', u'ladies', u'nature', u'message', u'Black', u'Copper', u'look', u'funny', u'start', u'farther', u'sinister', u'skirt', u'thought', u'silence', u'beginning', u'', u'Foundation'] -an envelope : [u'and', u'which', u'.'] -eyes of : [u'his'] -heard it : [u'is', u".'", u',', u'all'] -stream of : [u'commerce', u'pennies'] -wired for : [u'from'] -him for : [u'some', u'the'] -the Speckled : [u'Band'] -it well : [u'."', u'to'] -inadequate a : [u'purpose'] -newcomer. : [u'Out'] -suit theories : [u','] -Only one : [u'man', u'of', u'little'] -back: ' : [u'A'] -away by : [u'another', u'the', u'these', u'Flora'] -evening paper : [u'in'] -considerable experience : [u'of'] -what day : [u'?"', u'did'] -news as : [u'to'] -humble lodging : [u'house'] -s friend : [u'too'] -crab, : [u'thrown'] -.' Carefully : [u'as'] -earn at : [u'typewriting'] -ADVENTURE III : [u'.'] -make sure : [u'of'] -warm hearted : [u'in'] -can afterwards : [u'question'] -whined the : [u'little'] -a decrepit : [u'figure'] -the adventure : [u'of'] -here and : [u'there', u'I', u'drove'] -recollect, : [u'were'] -in command : [u'of'] -that those : [u'seven'] -is too : [u'much', u'tender', u'deep', u'terribly', u'serious', u'late', u'heavy'] -and stained : [u'they'] -society and : [u'did'] -weighted by : [u'the'] -it down : [u'with', u'upon', u'into', u','] -paces of : [u'the'] -for out : [u'of'] -for our : [u'funds'] -anything. : [u'James', 'PP'] -loafer, : [u'who'] -great hoax : [u'or'] -the dead : [u'body', u'man', u'of'] -houses had : [u'been'] -years will : [u'not'] -' which : [u'stands'] -anything; : [u'I'] -the sleeves : [u'and'] -better put : [u'my'] -very close : [u'to'] -symptoms before : [u',"'] -evidence pointed : [u'to'] -breakfast in : [u'the'] -takes very : [u'little'] -to commence : [u'the'] -a grievous : [u'disappointment'] -and trademark : [u'.'] -Were you : [u'engaged'] -salesman, : [u'framed'] -salesman. : ['PP'] -! who : [u'?'] -certainly deserved : [u'little'] -. Rucastle : [u'seemed', u'at', u'to', u'.', u'met', u'is', u'told', u'and', u'came', u'expressed', u',', u'suddenly', u'drew', u'took', u'coming', u'were', u'are', u'that', u"'", u'let', u'then', u'survived'] -." He : [u'chuckled', u'threw', u'took', u'looked', u'disappeared', u'pushed', u'bowed', u'held', u'curled', u'waved', u'had', u'picked', u'drew', u'put', u'shook', u'snatched', u'led', u'opened', u'rummaged', u'was', u'stepped', u'squatted', u'unwound', u'placed', u'broke', u'slapped', u'gathered', u'included', u'walked', u'went', u'cut', u'swung'] -ruefully as : [u'we'] -agreement for : [u'keeping', u'free'] -not stand : [u'it'] ---' I : [u"'"] -of news : [u'.', u'has', u'came'] -years back : [u','] -her sore : [u'need'] -vouching for : [u'things'] -his lids : [u'now', u'drooping'] -not destined : [u'to'] -done this : [u','] -which to : [u'address', u'an', u'choose', u'leave', u'base', u'back'] -absolutely impossible : [u'.'] -would call : [u'."', u'your', u'over'] -only wish : [u'I', u'that'] -forgiveness. : [u'Chance'] -gets it : [u','] -side of : [u'his', u'the', u'it', u'her', u'this', u'us', u'my', u'a', u'Winchester'] -had steadily : [u'increased'] -some terrible : [u'mistake', u'trap'] -strange fads : [u'and'] -Rucastle coming : [u'out'] -face forward : [u'and'] -impunity, : [u'or'] -bill, : [u'led', u'which'] -across Holborn : [u','] -was withdrawn : [u'as'] -" Should : [u'you'] -bill. : [u'His'] -kept a : [u'cheetah', u'keen'] -was stepping : [u'into'] -I hoped : [u','] -Yes," : [u'he', u'said', u'I'] -long remain : [u'unavenged'] -in sorrow : [u'and'] -a carriage : [u'came', u',"', u'to', u',', u'the'] -rich with : [u'a'] -of official : [u'inquiry'] -Miss Mary : [u'Sutherland', u'Holder'] -had resolved : [u'to'] -high central : [u'portion'] -gave even : [u'my'] -some building : [u'going'] -brougham and : [u'a'] -the harvest : [u'which'] -use it : [u'under', u'within', u'soon', u'unless', u'.'] -next room : [u'."', u',', u'had', u'.'] -contain a : [u'notice'] -reasoning. : ['PP'] -done, : [u'it', u'that', u'for', u'and'] -reasoning, : [u'which', u'every'] -done. : [u'The', u'Why', u'In', u'Come', 'PP', u'Your'] -arise. : ['PP'] -survive without : [u'wide'] -station master : [u'.', u'laughed', u'had'] -whitewashed corridor : [u'with', u'from'] -should recommend : [u'you'] -WARRANTY OR : [u'BREACH'] -is unfortunately : [u'more'] -made out : [u'here', u'the'] -made our : [u'way'] -yet Well : [u'!'] -carried himself : [u'in'] -acted before : [u'this'] -I smoked : [u'a'] -reduced to : [u'such'] -prefer it : [u'.'] -Moran back : [u'in'] -was it : [u'to', u',', u'done', u',"', u'?"', u'brought'] -absolute darkness : [u'as', u'.'] -suit facts : [u'.'] -two curving : [u'wings'] -good as : [u'yours', u'a', u'your', u'her', u'our', u'to'] -was in : [u'the', u'low', u'playing', u'such', u'dreadful', u'France', u'a', u'one', u'front', u'favour', u'Bristol', u'him', u'March', u'vain', u'error', u'January', u'fear', u'June', u'search', u'India', u'her', u'little', u'time', u'Montana', u'me', u'our', u'his', u'bed'] -My whole : [u'examination'] -paid our : [u'fare'] -I lent : [u'the'] -crossed them : [u'.'] -one particularly : [u','] -persistently floating : [u'about'] -to earn : [u'a'] -sill of : [u'the'] -sideboard. : ['PP'] -sideboard, : [u'and', u'which', u'sandwiched'] -article. : ['PP'] -heard Ryder : [u"'"] -not shake : [u'off'] -even so : [u'self'] -heard from : [u'Major', u'his'] -see them : [u'again'] -unless I : [u'am'] -article, : [u'for'] -we heard : [u'the', u'a', u'it', u'her'] -hesitated to : [u'jump'] -all who : [u'know'] -get quite : [u'mad'] -The boards : [u'round'] -s hair : [u'.'] -the bridal : [u'party'] -the cocked : [u'pistol'] -until after : [u'the', u'she'] -than well : [u','] -sketched out : [u'what'] -Some, : [u'however', u'too'] -business matters : [u'to', u".'"] -statement very : [u'clearly'] -latter raise : [u'up'] -a smear : [u'of'] -confidence which : [u'I'] -thousands of : [u'other', u'Bakers'] -driven over : [u'to', u'by'] -. My : [u'marriage', u'own', u'practice', u'limbs', u'life', u'first', u'suspicions', u'wants', u'father', u'doctor', u'wife', u'room', u'God', u'dear', u'pence', u'sister', u'heart', u'stepfather', u'evidence', u'stepdaughter', u'morning', u'companion', u'attention', u'gross', u'guide', u'clothes', u'whole', u'groom', u'family', u'niece', u'hand', u'overstrung', u'mind', u'friend'] -private bar : [u'and'] -had many : [u'disagreements'] -thrust this : [u'creature'] -who comes : [u'under'] -forwarded to : [u'226'] -editions means : [u'that'] -. Mr : [u'.'] -transcribe and : [u'proofread'] -lake formed : [u'by'] -gain.' : [u'He'] -pistol shots : [u'.'] -splendid pay : [u'and'] -breaking when : [u'I'] -strolled out : [u'in'] -impatient under : [u'this'] -intervals of : [u'note', u'sulking'] -lay heavy : [u'upon'] -. They : [u'were', u'had', u'drove', u'laid', u'spoke', u'are', u'got', u'appear', u'could', u'all', u'say', u'will', u'inherit', u'have', u'talk', u'each', u'still', u'may'] -hold to : [u'have'] -keen eyes : [u'with'] -in clearing : [u'up', u'the'] -long lash : [u'which'] -cap and : [u'frogged'] -. Then : [u'he', u'there', u',', u'I', u'suddenly', u'it', u'they', u'at', u'Mr', u'the', u'here', u'with', u'my', u'when', u'creeping', u'she', u'Sherlock', u'Lord', u'who', u'something', u'perhaps'] -agonies I : [u'had'] -unhappy family : [u'?"'] -Five attempts : [u'have'] -puffed out : [u'his'] -own theory : [u'as'] -of Four : [u',', u'."'] -been used : [u'.'] -little management : [u'to'] -office as : [u'usual'] -this curse : [u'had'] -To day : [u'is'] -grew low : [u'over'] -a cabman : [u'as'] -that suspicion : [u'would'] -certainly get : [u'seven'] -out at : [u'five', u'other', u'the', u'a', u'some', u'me', u'his'] -. Whatever : [u'he'] -derived. : [u'It'] -broad iron : [u'bars'] -Scandal in : [u'Bohemia'] -not of : [u'a'] -are very : [u'often', u'kind', u'commonplace', u'much', u'distinct', u'deep', u'incomplete', u'fine', u'light'] -pro magnifico : [u",'"] -Windibank that : [u'is'] -would condescend : [u'to'] -not on : [u'my', u'the'] -test. : [u'Here'] -a detail : [u'which'] -work, : [u'and', u'so', u'but', u'returning', u'you', u'or', u'without'] -work. : [u'There', 'PP', u'He', u'It', u'Then', u'The', u'You', u'Copyright'] -and February : [u'in'] -a perpetual : [u'snarl', u'smell'] -and heartless : [u'a'] -kind of : [u'you', u'rattled', u'question'] -with long : [u'windows', u'purses'] -will certainly : [u'get'] -commencement, : [u'and'] -oak shutter : [u','] -enough in : [u'the'] -your master : [u'had'] -your daughter : [u'who', u'?"'] -him credit : [u'for'] -announce that : [u'two'] -wait up : [u'for'] -suitor for : [u'some'] -accept all : [u'the'] -the richest : [u'in', u'man'] -ask it : [u'of'] -seat, : [u'cross', u'he', u'Miss'] -seat. : ['PP'] -about some : [u'of'] -crowd, : [u'and'] -risen. " : [u'I'] -about with : [u'her', u'a'] -an end : [u'."', u'?"', u'in', u'of', u'to'] -the true : [u'story', u'facts', u'solution', u'character', u'state'] -invaluable as : [u'a'] -has reaped : [u'in'] -Gutenberg volunteer : [u'and'] -her that : [u'she', u'there', u'he', u'I', u'the'] -the howl : [u'of'] -colonel looking : [u'down'] -unfinished. : ['PP'] -the curb : [u','] -the cure : [u'.'] -Rucastle' : [u's'] -direction of : [u'the', u'Reading'] -what am : [u'I'] -was characteristic : [u'of'] -nor anything : [u'else'] -shown signs : [u'of'] -two tresses : [u'together'] -her than : [u'what'] -was filled : [u'.'] -worth. : ['PP'] -simple, : [u'so', u'and'] -simple. : [u'You', 'PP'] -thrown into : [u'the'] -. Would : [u'you', u'the'] -your example : [u'is', u'."'] -twopence a : [u'sheet'] -neighbours. : [u'These'] -neighbours, : [u'but', u'who', u'and'] -of hydrochloric : [u'acid'] -is dug : [u'out'] -be colourless : [u'in'] -acceptance of : [u'the'] -of hideous : [u'aspect'] -opposite to : [u'him'] -the seventy : [u'odd'] -spoke of : [u'the', u'those', u'coming'] -was crushed : [u'in'] -a criminal : [u'it'] -that question : [u'in'] -more difficult : [u'it', u'.'] -created from : [u'several'] -pleasant, : [u'cultured'] -some weapon : [u'or'] -not forgotten : [u'the'] -OTHER WARRANTIES : [u'OF'] -a brief : [u'and'] -Now turn : [u'that'] -had told : [u'the', u'me'] -them the : [u'photograph'] -returned the : [u'King', u'strange'] -agreement violates : [u'the'] -Holmes interposed : [u', "'] -it he : [u'laid'] -were received : [u'by'] -the fashion : [u'of'] -go back : [u'to', u'?"'] -and expensive : [u'habits'] -and consuming : [u'an'] -ceremony, : [u'and', u'as', u'which', u'the'] -Nor from : [u'below'] -door," : [u'said', u'cried'] -the ceremony : [u',', u'."'] -fleecy clouds : [u'in'] -middle aged : [u'gentlemen', u',', u'and'] -prick up : [u'my'] -strong that : [u'the'] -not tell : [u'me', u'what', u'you', u'a'] -the marriage : [u';', u'market', u'would', u'is', u'celebrated'] -felt like : [u'one'] -I fear : [u'that', u'not', u','] -how fond : [u'he'] -confidential maid : [u','] -tm, : [u'including'] -tm. : ['PP'] -shabby genteel : [u'place'] -their purpose : [u'.'] -they all : [u',', u'open', u'fastened'] -awkward. : [u'Could'] -showed it : [u'was'] -awkward, : [u'for'] -my anger : [u'.'] -business at : [u'Coburg'] -converse is : [u'equally'] -as resembling : [u'her'] -our operations : [u'we'] -" Would : [u'you'] -our positions : [u'.'] -aloud. : ['PP'] -ears are : [u'pierced'] -minute, : [u'for'] -hardly safe : [u'and'] -his representative : [u'both'] -. Men : [u'who', u'at'] -Father was : [u'a'] -a trite : [u'one'] -standing beside : [u'the'] -power was : [u'used'] -suspended in : [u'this'] -seemed to : [u'be', u'vary', u'me', u'know', u'open', u'come', u'think', u'surprise', u'strengthen', u'dilate', u'lead', u'blend', u'have', u'tax', u'her', u'hear', u'give', u'span', u'go', u'us', u'take'] -lost without : [u'my'] -he exclaimed : [u'at'] -stop on : [u'it'] -doesn' : [u't'] -knee caps : [u','] -Square fountain : [u'?"'] -arms folded : [u','] -were burned : [u'by'] -keep eBooks : [u'in'] -, asking : [u'him'] -his beggary : [u','] -are thirty : [u'nine'] -the trail : [u'in'] -the train : [u'together', u'steamed'] -hunting crop : [u'from', u'came', u'handy', u'swinging', u'. "'] -s son : [u'appeared'] -daughter of : [u'the', u'a', u'Aloysius'] -one long : [u'effort'] -to bring : [u'your', u'the', u'it', u'home', u'him', u'me', u'one'] -quite remarkable : [u'talent'] -his invariable : [u'success'] -jolted terribly : [u'.'] -very thoroughly : [u'.'] -sold you : [u'the'] -and strong : [u'woman'] -sacrificed also : [u'.'] -party would : [u'return'] -a marriage : [u'between', u'with', u'was'] -from operatic : [u'stage'] -better," : [u'said'] -his nervous : [u'system'] -glancing over : [u'them', u'the', u'my'] -or it : [u'won', u'may', u'would', u"'"] -to reason : [u'from'] -I turned : [u'over', u'to', u'the', u'and'] -, " whether : [u'they'] -to wait : [u',', u'you', u'.', u'for', u'in', u",'", u'until'] -machinery of : [u'justice'] -strongly recommend : [u'you'] -a bonnet : [u'on', u','] -or if : [u'he', u'they'] -close examination : [u'of'] -been disappointed : [u'in'] -which of : [u'course', u'these'] -first green : [u'shoots'] -This time : [u','] -he left : [u'me', u'a'] -this infernal : [u'St'] -which on : [u'a'] -your letters : [u','] -LEAGUE: : [u'On'] -the poker : [u','] -Two hours : [u'passed'] -a newcomer : [u'must'] -. Stoner : [u','] -Saturday rather : [u'complicates'] -irresistible force : [u'from'] -gets to : [u'the'] -I undid : [u'my'] -Pritchard were : [u'among'] -my poor : [u'little', u'father', u'sister', u'Frank', u'hair'] -country house : [u".'"] -rest for : [u'me'] -we keep : [u'a'] -me time : [u'to'] -The windows : [u'of'] -small card : [u'which'] -concealed three : [u'gems'] -flap has : [u'been'] -other about : [u'Lord'] -colour began : [u'to'] -the man : [u'who', u'of', u'and', u'save', u'upon', u'himself', u"'", u'to', u',', u'that', u'uttered', u'or', u'whom', u'with', u'was', u'sent', u'were', u'in'] -fortune to : [u'any', u'have'] -an extra : [u'couple', u'tumbler'] -the mad : [u'elements'] -s Watson : [u',"'] -you all : [u'the', u'a', u'my'] -away these : [u'bleak'] -loomed behind : [u'his'] -the following : [u'enigmatical', u'paragraph', u'which'] -the map : [u'. "'] -evil passion : [u','] -mouth before : [u'a'] -mostly done : [u'of'] -reason. : [u'Then', u'As'] -mysteries. : [u'So'] -chronic disease : [u'.'] -Restaurant, : [u'and'] -ever, : [u'deeply', u'and', u'very'] -clue could : [u'you'] -ever. : [u'I', u'A', 'PP'] -Then what : [u'has', u'are'] -who loathed : [u'every'] -been making : [u'inquiries', u'a'] -died she : [u'was'] -have remained : [u'in', u'.', u'forever'] -kindly escorted : [u'me'] -guidance of : [u'Mr'] -are right : [u',"', u','] -upstairs at : [u'night'] -he struck : [u'at', u'gold'] -flattered herself : [u'that'] -just made : [u'up'] -citizens of : [u'the', u'London'] -.' said : [u'he'] -show us : [u'what', u'how'] -costume is : [u'nothing'] -If any : [u'disclaimer'] -a couch : [u','] -remarkable one : [u','] -was to : [u'introduce', u'my', u'be', u'him', u'some', u'settle', u'set'] -the trough : [u'of', u'.'] -after him : [u'a', u','] -?' I : [u'asked', u'asks', u'cried'] -"' Hampshire : [u'.'] -seen what : [u'he', u'was'] -When Horner : [u'had'] -see to : [u'anything'] -weary and : [u'stiff', u'haggard', u'pale'] -earn a : [u'little'] -the parts : [u'which'] -hat, : [u'his', u'with', u'and', u'much', u'on', u'but', u'Mr', u'then', u'a', u'was', u'neat'] -hat. : ['PP', u'Also', u'Mr'] -the party : [u'with', u'would'] -heading upon : [u'which'] -after his : [u'departure', u'interview'] -papers here : [u','] -Standard, : [u'Echo'] -looked through : [u'and'] -small fat : [u'encircled'] -problems, : [u'and'] -problems. : ['PP'] -and power : [u'to'] -I wasn : [u"'"] -big ledger : [u'.'] -dozen for : [u'the'] -against the : [u'blind', u'curb', u'lights', u'strict', u'poetic', u'glare', u'table', u'son', u'young', u'windows', u'terror', u'flood', u'wind', u'prisoner', u'light', u'wall', u'end', u'door', u'little', u'absolute', u'railings', u'eaves'] -that appointment : [u'he'] -excuses, : [u'escaped'] -lurking behind : [u'the'] -have surprised : [u'her'] -cried several : [u'voices'] -be unless : [u'it'] -and smoothing : [u'it'] -order you : [u'a'] -not mean : [u'bodies', u'that'] -it only : [u'to'] -house with : [u'me', u'the'] -whom of : [u'all'] -Bristol and : [u'marry'] -decorated toe : [u'cap'] -The fire : [u'was', u'looks'] -by seven : [u'o'] -floor consisted : [u'of'] -tell where : [u'it'] -are flying : [u'westward'] -vessel in : [u'which'] -is utterly : [u'crushed'] -Having left : [u'Lestrade'] -words when : [u'young'] -He locked : [u'the'] -door saluted : [u'him'] -the safe : [u'.', u','] -like dark : [u','] -several times : [u'up', u',', u'lately'] -am at : [u'a', u'my'] -was conspiring : [u','] -fattened it : [u'expressly'] -wedding, : [u'the', u'you'] -wedding. : ['PP', u'James', u'At', u'Mr', u'The'] -a nod : [u'he'] -am sorry : [u'that', u'to'] -passage until : [u'she'] -Is such : [u'as'] -did Peterson : [u'do'] -time rather : [u'to'] -manner suggested : [u'that'] -this remarkable : [u'episode'] -remarks about : [u'the'] -and colleague : [u',', u'.'] -do as : [u'much', u'you'] -visiting the : [u'rabbit'] -was marked : [u'in'] -be connected : [u'with'] -breath, : [u'and', u'for'] -breath. : [u'Suddenly'] -equipment. : ['PP', u'Many'] -seemed strange : [u'talk'] -spinning fine : [u'theories'] -own secreting : [u'.'] -. Boone : [u','] -thrusting out : [u'like'] -. Moulton : [u','] -the folk : [u'all', u'were', u'from', u'that'] -"' To : [u'Eyford'] -shaken than : [u'I'] -lawn in : [u'front'] -morning broke : [u'bright'] -ventilator is : [u'."', u'made'] -rushing figures : [u','] -money," : [u'said'] -alive or : [u'dead'] -it more : [u'.'] -means first : [u','] -not allow : [u'it', u'disclaimers'] -uneasiness began : [u'to'] -extremely dark : [u'and'] -foul mouthed : [u'when'] -, dad : [u",'", u".'", u'?"'] -murderous indeed : [u'."'] -volumes of : [u'poetry'] -the creaking : [u'of'] -feeling, : [u'no'] -mother, : [u'and', u'a', u'Mrs', u'she', u'it'] -the meanwhile : [u','] -they talked : [u'of'] -size of : [u'a'] -, day : [u'or'] -one waiting : [u'."'] -? And : [u'into', u'why', u'then', u'where'] -was drawn : [u'from', u'quite'] -, remarking : [u'before'] -wrists protruded : [u'from'] -House. : [u'At', u'Two'] -prison bath : [u';'] -they listened : [u'to'] -heavily than : [u'you'] -at http : [u'://'] -thinker of : [u'the'] -noted, : [u'in'] -these points : [u'for'] -set off : [u'in', u'for'] -should gain : [u'an'] -nor garden : [u'were'] -rose briskly : [u'from'] -her drive : [u'at'] -time done : [u'manual'] -paid within : [u'60'] -more vigorously : [u'than'] -him over : [u'utterly', u'the'] -the remorseless : [u'clanking'] -King reproachfully : [u'.'] -is remarkable : [u'in'] -me neither : [u'favourably'] -my index : [u','] -laugh was : [u'struck'] -carbuncle!" : [u'I'] -, touch : [u'you'] -him keep : [u'the'] -over and : [u'turning', u'gone', u'to', u'almost'] -could account : [u'for'] -we have : [u'from', u'three', u'to', u'twice', u'never', u'stopped', u'our', u'had', u'seen', u'been', u'it', u'an', u'so', u'at', u'a', u'not', u'every', u'exacted', u'now', u'got', u'already', u'still', u'advanced', u'found', u'when', u'one', u'come'] -loose, : [u'but'] -it!" : [u'he', u'Our', u'I', u'cried', u'He'] -his face : [u'.', u',', u'and', u'with', u'was', u'in', u'into', u'onto', u'half', u'is', u'towards', u'could', u'to', u'buried', u'which', u", '", u'as'] -fireplace he : [u'strode'] -traces. : [u'The', 'PP'] -natural than : [u'the'] -shall ever : [u'know'] -grotesque. : [u'As'] -April 27 : [u','] -" Could : [u'he'] -And off : [u'he'] -private safe : [u'and'] -together!" : [u'and'] -natural that : [u'the'] -week was : [u'a'] -anything on : [u'the'] -laid the : [u'box', u'supper', u'two'] -lead towards : [u'the'] -anything of : [u'the', u'it', u'importance'] -we started : [u'.'] -your bag : [u'."'] -receive much : [u'company'] -salesman just : [u'now'] -In town : [u'the'] -dependent upon : [u'an'] -always was : [u','] -we talked : [u'it'] -writer. : ['PP'] -the individual : [u'must', u'works'] -women are : [u','] -picked up : [u'the', u'his', u'in'] -stupefying fumes : [u'of'] -proof which : [u'was'] -Foundation(" : [u'the'] -reverse. : [u'She'] -been hurrying : [u'down'] -, dusty : [u'and'] -long drawn : [u'catlike'] -that unless : [u'they'] -landlord of : [u'the'] -which shriek : [u'at'] -fair cousins : [u'from'] -suspicion as : [u'to'] -frantic plucking : [u'at'] -throat as : [u'far'] -gained. : ['PP'] -could suffer : [u'.'] -your newspaper : [u'selections'] -lived rent : [u'free'] -own process : [u'.'] -cab my : [u'mission'] -s pet : [u'baits'] -Holmes were : [u'beaten'] -Mark that : [u'point'] -gentleman was : [u'not'] -to assist : [u'at'] -end was : [u'a'] -If my : [u'hair'] -consulting room : [u'.', u'and'] -or detach : [u'or'] -line which : [u'I'] -excellent spirits : [u','] -history. : ['PP', u'There'] -in custody : [u','] -carefully. : [u'It'] -little landau : [u',', u'which'] -extent. : [u'My'] -Fresno Street : [u',', u'a'] -quietly; " : [u'I'] -mind him : [u'.'] -think?' : [u'I'] -a curve : [u'with'] -post and : [u'laughed'] -whip, : [u'but', u'and'] -Jem; : [u'there'] -, silent : [u','] -she must : [u'have', u'fall', u'feel'] -of action : [u'.'] -, white : [u'with', u'stones', u'hands', u'aproned', u',', u'waistcoat'] -, costs : [u'and'] -Jem' : [u's'] -of McCarthy : [u"'"] -Jem. : ['PP'] -or something : [u',', u'which'] -or to : [u'be', u'my', u'disown', u'lie'] -evening I : [u'was', u'would', u'found'] -emerge in : [u'a'] -business over : [u'this'] -Fine birds : [u'they'] -bloodless cheeks : [u'.'] -once spotted : [u'my'] -only posted : [u'to'] -kept in : [u'a'] -form the : [u'amalgam'] -impossible,' : [u'said'] -s Court : [u',', u'looked', u'.'] -and he : [u'sent', u'shook', u"'", u'says', u'had', u'wanted', u'closed', u'is', u'himself', u'will', u'would', u'left', u'called', u'used', u'wore', u'seemed', u'enjoyed', u'rose', u'misses', u'did', u'has', u'was', u'glared', u'lay', u'protested', u'stuffs', u'sat', u',', u'at', u'looks', u'carried', u'gave', u'took', u'saw', u'slipped', u'showed', u'even', u'dropped', u'hugged', u'bent', u'shows', u'stuck'] -THIS. : ['PP'] -he appeared : [u'to', u'surprised'] -hours every : [u'day'] -, pausing : [u'only'] -case until : [u'we'] -appearance which : [u'she'] -another point : [u'.'] -Look here : [u','] -they have : [u'been', u'the', u'established', u'.', u'covered', u'lived', u'decoyed', u'to', u'shown'] -small case : [u'book'] -singular exception : [u','] -/ 1 : [u'/'] -need of : [u'air', u'it'] -wrote those : [u'words'] -leave to : [u'encamp', u'Mary', u'go', u'come'] -hear now : [u'upon'] -stricken look : [u','] -leaves a : [u'similar'] -creditor, : [u'asked'] -Holder. " : [u'Oh'] -the typewriter : [u'and', u','] -fashion,' : [u'said'] -. Left : [u'his'] -their beauty : [u'.'] -and blowing : [u','] -and wait : [u'."'] -party of : [u'revellers'] -does not : [u'carry', u'love', u'commonly', u'say', u'seem', u'go', u'beget', u'contain', u'agree'] -the goodness : [u'to', u','] -to eight : [u'o'] -is pleasant : [u'to'] -go, : [u'Holmes', u'but', u'I', u'they', u'for', u'and', u'weak'] -go. : [u'He', 'PP', u'My', u'I', u'What'] -little light : [u'through'] -heavy a : [u'task'] -so kindly : [u'put', u'take'] -. " That : [u'is', u'fellow', u'circle'] -spread an : [u'ordnance'] -the brightest : [u'rift'] -go; : [u'for'] -fever, : [u'and'] -two fills : [u'of'] -myself," : [u'he'] -before as : [u'being'] -true as : [u'gospel', u'man'] -cried, ' : [u'and'] -a groom : [u'out'] -cried, " : [u'else', u'and', u'you', u'well', u'can', u'he', u'I', u'this', u'here'] -too. : [u'Ah', u'She', u'Never', u'It', u'Now', 'PP'] -dangling his : [u'glasses'] -too, : [u'for', u'quite', u'might', u'and', u'have', u'does', u'was', u'with', u'of', u'as', u'thinks', u'were', u'in', u'that'] -me had : [u'carried'] -and bitter : [u'in'] -holding three : [u'gems'] -a card : [u',', u'case', u'was'] -breaches gaped : [u'in'] -now all : [u'about', u'that'] -that graver : [u'issues'] -the roots : [u'of', u'.'] -to clear : [u'up', u'the', u'this'] -a cigarette : [u','] -lay uncovered : [u'as'] -very earnestly : [u'at'] -alterations, : [u'as'] -ashamed of : [u'myself', u'you', u'yourself', u'their', u'it'] -slipped off : [u'my'] -clock that : [u'I'] -these shutters : [u'if'] -me it : [u'has', u'seems'] -Spaulding seemed : [u'to'] -in Mr : [u'.'] -that this : [u'gentleman', u'smooth', u'typewritten', u'Mr', u'unhappy', u'McCarthy', u'grey', u'curse', u'is', u'register', u'creature', u'man', u'small', u'trophy', u'other', u'unfortunate', u'fellow', u'was', u'deposit', u'order', u'will', u'good', u'matter', u'should', u'might'] -marked German : [u'accent'] -effect," : [u'remarked'] -me if : [u'I', u'you'] -me in : [u'my', u'front', u'.', u'completely', u'what', u'yours', u'any', u'such', u'the', u'his', u'looking', u'several', u'case', u'private'] -at Winchester : [u'.', u'at'] -bloodless, : [u'but'] -FOR ANY : [u'PURPOSE'] -rat could : [u'hardly'] -located in : [u'the'] -clang of : [u'the'] -, perform : [u','] -to copying : [u'and'] -took all : [u'my', u'his'] -left save : [u'a'] -story makes : [u'me'] -precious case : [u'into', u'lying'] -your way : [u'merely', u'back'] -easily get : [u'her'] -exceeding thinness : [u'.'] -, neat : [u'brown'] -grounds at : [u'all'] -would swim : [u'and'] -investigated the : [u'case'] -matter which : [u'has'] -Lascar who : [u'runs'] -the fanlight : [u'.'] -in Chesterfield : [u','] -somewhere near : [u'that'] -few whispered : [u'words'] -they found : [u'the', u'in', u'you'] -week for : [u'purely'] -decoyed my : [u'wife'] -the plaster : [u'was'] -old park : [u'wall'] -had none : [u'more'] -9th. : [u'McCauley'] -have never : [u'set', u'had', u'before', u'seen', u'been', u'denied', u'met'] -treat. : [u'But'] -who took : [u'sides', u'them'] -any definite : [u'conception'] -lovely woman : [u',', u'.'] -small boy : [u'brought'] -s handwriting : [u'.'] -the elder : [u'using'] -Look there : [u'!"'] -Good evening : [u',', u'.'] -private that : [u'the'] -is three : [u'years', u'now'] -.'"" : [u'All', u'What', u'Now', u'Quite', u'Anything', u'And'] -.'"' : [u'Why', u'And', u'But', u'Not', u'What', u'It', u'Oh', u'Where', u'You', u'How', u'Then', u'Pooh', u'I', u'Thank', u'The', u'Never', u'Which', u'No', u'Very', u'Ah', u'Well', u'That', u'If', u'Absolute', u'Precisely', u'There', u'Yes', u'Quite', u'Some', u'On', u'For', u'She', u'Keep', u'As', u'One', u'Or', u'Dear', u'Surely'] -then he : [u'choked', u'always', u'left', u'has', u'must', u'couldn', u'went'] -affairs without : [u'betraying'] -the outline : [u'of'] -see!" : [u'said'] -vital use : [u'to'] -And leave : [u'your'] -chambers. : ['PP'] -a mirror : [u'in'] -all would : [u'be'] -deep waters : [u',"'] -private than : [u'I'] -energetic nature : [u','] -Windibank, : [u'your', u'asking', u'that', u'turning', u'it'] -Windibank. : [u'It', 'PP', u'Voil'] -gazed at : [u'my', u'it', u'him'] -of instruction : [u'."'] -were started : [u'in'] -noticed that : [u'before'] -, good : [u'night', u'bye', u'humoured', u'natured'] -bright semicircle : [u'which'] -look. " : [u'Why'] -ran forward : [u'something', u','] -law abiding : [u'country'] -the select : [u'?"', u'prices'] -room she : [u'attempted', u'impressed'] -slipped an : [u'emerald'] -had read : [u'in'] -a luxurious : [u'club'] -finding from : [u'the'] -greatest importance : [u'in'] -case clearly : [u'and'] -God keep : [u'you'] -and staring : [u'about'] -found this : [u'single', u'in'] -hands upon : [u'it'] -Now let : [u'us'] -Place upon : [u'the'] -But between : [u'ourselves'] -lip which : [u'had'] -or proprietary : [u'form'] -the peculiar : [u'construction', u'nature', u'dying', u'introspective'] -vile alley : [u'lurking'] -released me : [u". '"] -shot. : [u'Do'] -, eagerly : [u','] -injuring another : [u'.'] -park wall : [u'.'] -other ways : [u'he', u'including'] -mine." : [u'Tottering'] -eyes had : [u'regained'] -preserve impressions : [u'.'] -resistance of : [u'the'] -drive past : [u','] -: He : [u'mumbled'] -The bride : [u'gave', u','] -fortunately entered : [u'the'] -copies of : [u'this', u'Project', u'a', u'or', u'the', u''] -that started : [u'me'] -any future : [u'proceedings'] -. Now : [u',', u',"', u'the', u'carry', u'it', u'her', u'for', u'where', u'from', u'let', u'turn', u'we', u'and', u'keep', u'I', u'do'] -returned in : [u'a'] -and haggard : [u'.'] -he roared : [u'.'] -, Henry : [u'Baker'] -the victim : [u'might', u'of', u'.'] -very decidedly : [u'carried'] -her fianc : [u'and'] -, cry : [u"'"] -bored you : [u'.'] -himself out : [u'upon', u'and'] -Bill," : [u'said'] -remove crusted : [u'mud'] -and impressive : [u'figure'] -his grief : [u'had'] -in mind : [u'as'] -Victor Hatherley : [u','] -really became : [u'bad'] -the question : [u'is', u'.', u'provoked', u',"'] -FOR NEGLIGENCE : [u','] -life yet : [u','] -resolution about : [u'going'] -closed their : [u'League'] -s length : [u','] -when in : [u'judicial', u'high'] -seen except : [u'my'] -no inconvenience : [u'.'] -could at : [u'once'] -when it : [u'came', u'would', u'was', u'fell'] -inquiries as : [u'to'] -the reaction : [u'against'] -Wilson laughed : [u'heavily'] -really hard : [u'day'] -an air : [u'of', u'as'] -closing his : [u'eyes', u'bedroom'] -the offices : [u'of', u'round'] -' ve : [u'heard', u'done', u'been', u'had', u'got', u'lost', u'set', u'wasted', u'let'] -a matter : [u'of'] -and secured : [u'at'] -of age : [u','] -Absolute and : [u'complete'] -, tore : [u'back'] -hope a : [u'wild'] -shadow upon : [u'the'] -a system : [u'of'] -King and : [u'myself'] -where was : [u'the'] -wedding had : [u'taken'] -best attention : [u'."'] -no objection : [u'to'] -is both : [u','] -from Reading : [u'to'] -diabetes for : [u'years'] -looked there : [u'was'] -broadened as : [u'a'] -and cannot : [u'survive'] -in agricultural : [u'prices'] -pen to : [u'describe'] -Did you : [u'tell', u'see', u'remark', u'observe', u'ever', u'become', u'fasten'] -this thing : [u'up', u'has'] -Dark enough : [u'and'] -ourselves save : [u'for'] -considered that : [u'it'] -the vacuous : [u'face'] -we saw : [u'a', u'Dr', u','] -we sat : [u'over', u'on', u'together', u'waiting', u'after'] -he almost : [u'instantly'] -to America : [u'when', u'with', u'.'] -inquire whether : [u'the'] -inextricable mysteries : [u'.'] -Elias emigrated : [u'to'] -iron bars : [u','] -bent back : [u'and'] -the Stars : [u'and'] -gentle as : [u'a'] -the inside : [u'of', u'pocket', u',', u'are', u'throws'] -threw over : [u'a'] -the expression : [u'of'] -But Mr : [u'.'] -!" shouted : [u'another'] -to anyone : [u'else', u'who', u'had', u'when', u'in'] -when nothing : [u'else'] -saying so : [u','] -the chalk : [u'pit'] -for observation : [u','] -men at : [u'the'] -what woman : [u"'"] -condescend to : [u'state', u'accept'] -domain print : [u'editions'] -and sobbed : [u'like', u'upon'] -open skylight : [u'.'] -or sleeping : [u'off'] -persuade you : [u'to'] -and Pritchard : [u'were'] -some thousands : [u'of'] -his clenched : [u'hands'] -But with : [u'no'] -but also : [u'because', u'all'] -an obvious : [u'precaution', u'fact'] -, one : [u'of', u'day', u'or', u'rogue', u'can', u',', u'hand', u'half', u'answering', u'who'] -really could : [u'not'] -my lip : [u'in'] -confidence. : [u'He'] -confidence, : [u'and'] -dingy two : [u'storied'] -which controlled : [u'it'] -of Crane : [u'Water'] -, tapped : [u'me', u'on', u'his'] -You pay : [u'a'] -tinted London : [u'street'] -longer, : [u'and'] -rope, : [u'and'] -savagely at : [u'each'] -are still : [u'sounding'] -the City : [u'.', u'first', u'to', u'and', u'branch', u',', u'under', u'of'] -friend possessed : [u'in'] -in with : [u'his', u'exceptional', u'our'] -Flora would : [u'hurt'] -just sit : [u'down'] -your coming : [u'."'] -a basketful : [u'of'] -up I : [u'had'] -rest here : [u'on'] -just six : [u'years'] -square which : [u'we'] -of traditions : [u'.'] -forty grain : [u'weight'] -which proved : [u','] -all trooped : [u'away'] -sight it : [u'is'] -curse had : [u'passed'] -sure we : [u'owe'] -were they : [u'doing'] -gone up : [u'to'] -the curses : [u'of'] -up a : [u'great', u'piece', u'scent', u'station', u'little', u'small', u'long', u'card', u'square', u'pen', u'glowing'] -possibly her : [u'fianc'] -an excuse : [u'to'] -had so : [u'many', u'much', u'foolishly'] -left only : [u'the'] -hour you : [u'have'] -government and : [u'of'] -character dummy : [u'bell'] -are impressed : [u'by'] -hardly spoken : [u'before'] -days are : [u'past'] -into Ross : [u','] -have destroyed : [u'it'] -red ink : [u'upon', u'?'] -merest chance : [u','] -while all : [u'the'] -sound as : [u'of'] -the county : [u'of', u'coroner', u',', u'police', u'out'] -my saying : [u'so'] -Stolen!' : [u'he'] -" Through : [u'the'] -of Brixton : [u'Road'] -illegal constraint : [u'."'] -were waiting : [u',', u'in', u'for'] -laughing just : [u'now'] -and veil : [u','] -the marked : [u'man'] -, we : [u'are', u'must', u"'", u'never', u'passed', u'may', u'can', u'drove', u'presume', u'need', u'shall', u'will', u'had', u'were', u'still', u'have', u'call', u'reached', u'could', u'talked', u'should', u'hope', u'do', u'know'] -treatises on : [u'science'] -hoped with : [u'diligence'] -papers and : [u'note', u'let', u'arrange'] -the cadaverous : [u'face'] -it into : [u'my', u'court', u'their', u'a', u'the', u'words'] -up at : [u'the', u'my', u'him', u'that', u'Miss'] -up as : [u'little', u'though'] -pawnbroker is : [u'safely'] -five as : [u'usual'] -astuteness represented : [u','] -sparkled upon : [u'his'] -band. : ['PP'] -band, : [u'and', u'with'] -up an : [u'ulster', u'acquaintance'] -my face : [u',', u'with', u'before', u'the', u'inside', u'away'] -it widened : [u'the'] -have established : [u'a'] -and averted : [u'eyes'] -you it : [u'just', u'here'] -" Ha : [u'!', u'!"'] -you is : [u'Holmes'] -his explanation : [u'of'] -" He : [u'was', u'is', u"'", u'can', u'slept', u'travels', u'said', u'didn', u'looked', u'might', u'only', u'disappeared', u'certainly', u'!', u'brought', u'has', u'investigated', u'seems', u'must', u'shot', u'says', u'often', u'stood', u'had', u'knows'] -from having : [u'to'] -provision that : [u'a'] -you if : [u'I'] -was bent : [u'downward'] -one bird : [u','] -features. : ['PP', u'So', u'If'] -good day : [u','] -features, : [u'and', u'for'] -already dusk : [u','] -the professional : [u'and'] -A small : [u'side'] -our home : [u'product'] -I fancy : [u',', u'that', u'."', u'we', u'.'] -easy chair : [u'and'] -She has : [u'the', u'heard', u'her'] -to rest : [u','] -he reached : [u'her', u'the', u'my'] -A Frenchman : [u'or'] -devised seven : [u'separate'] -when pursued : [u'by'] -penny bottle : [u'of'] -thing up : [u','] -bright blur : [u'of'] -. Armitage : [u','] -Excellent! : [u'You', u'We'] -that woman : [u'was', u"'"] -, sunk : [u'that', u'in'] -work from : [u'.'] -cruelty' : [u's'] -Street would : [u'have'] -reasoned it : [u'out'] -what other : [u'people', u'is'] -lose an : [u'instant'] -letters were : [u'to'] -incredulity upon : [u'my'] -Give me : [u'your', u'a'] -afterwards if : [u'I'] -landowner, : [u'who'] -shop window : [u'behind'] -the joint : [u'upon'] -landowner' : [u's'] -None of : [u'those'] -afford some : [u'fresh'] -allowance for : [u'this'] -afterwards it : [u'was'] -subsided into : [u'a'] -" with : [u'a'] -, DISCLAIMER : [u'OF'] -more words : [u'.', u'were'] -very right : [u'!'] -PG search : [u'facility'] -goes into : [u'it'] -In spite : [u'of'] -a wild : [u'goose', u'clatter', u',', u'night', u'way'] -Excellent. : [u'We', u'You'] -learn of : [u'the'] -actress myself : [u'.'] -in finding : [u'what'] -gave rise : [u'to'] -see K : [u'.'] -brave and : [u'sensible'] -club, : [u'by', u'of', u'and'] -club. : ['PP'] -was goading : [u'him'] -be dressed : [u'in'] -there arrived : [u'a'] -can readily : [u'understand'] -nearly four : [u'o'] -drooping and : [u'his'] -of analysis : [u'and'] -little," : [u'said'] -incident however : [u','] -carriage," : [u'said'] -the 3rd : [u'.'] -a reasonable : [u'fee'] -flooring and : [u'walls'] -few patients : [u'from'] -may stand : [u'for'] -against our : [u'home'] -book? : [u'Here'] -and disappeared : [u'in'] -Holmes leaned : [u'his', u'back'] -are residing : [u'alone'] -mind breaking : [u'the'] -bricks, : [u'so'] -whether my : [u'own'] -braved him : [u'to'] -it has : [u'twice', u'not', u'nothing', u'been', u'sworn', u'already', u'awakened', u'proved', u'lost', u'got', u'occurred'] -glad to : [u'hear', u'have', u'see', u'know'] -ORANGE. : ['PP'] -saw Whitney : [u','] -requested. : ['PP'] -and determined : [u'to'] -wishes to : [u'hurry'] -escort her : [u'to'] -busy day : [u'before', u'to'] -was nodding : [u'myself'] -occurred. : ['PP', u'I', u'Miss', u'A', u'When'] -occurred, : [u'he'] -would fifty : [u'guineas'] -commuting a : [u'felony'] -left it : [u'upon', u',', u'there'] -to absorb : [u'all'] -every fresh : [u'part', u'fact'] -returned to : [u'civil', u'the', u'France', u'his', u'Baker', u'life', u'England'] -trivial. : ['PP'] -OR IMPLIED : [u','] -bend of : [u'the'] -a penny : [u'bottle'] -This American : [u'had'] -the address : [u'where', u'that', u'.', u'which', u'."', u',', u'of'] -fact," : [u'he'] -but as : [u'a', u'I', u'there', u'long', u',', u'an'] -but at : [u'that', u'either', u'least'] -deductive methods : [u'of'] -but an : [u'hour', u'oak', u'ivory'] -staring at : [u'it'] -, buttoning : [u'up'] -. Botany : [u'variable'] -a force : [u'which'] -keenest pleasure : [u'is'] -it was : [u'on', u'written', u'presumably', u'difficult', u'surrounded', u'indeed', u'less', u'clear', u'the', u'remarkably', u'a', u'of', u'found', u'possible', u'that', u'evident', u'but', u'withdrawn', u'perfectly', u'obvious', u'essential', u'there', u'Leadenhall', u'impossible', u'as', u'equally', u'easy', u'not', u'no', u'followed', u'at', u'also', u'gone', u"?'", u'removed', u'while', u'stated', u'more', u'your', u'I', u'in', u'fear', u'he', u'only', u'quite', u'late', u'reported', u'.', u'to', u'Wednesday', u'considerably', u'cracked', u'dead', u'concerned', u'before', u',', u'his', u'my', u'merely', u'daylight', u'an', u'full', u'when', u'clearly', u'all', u'some', u'done', u'still', u'concluded', u'who', u'used', u'during', u'crushed', u'most', u'careful', u'undoubtedly', u'hard', u'dreadful', u'too', u'twisted', u'thoughtless', u'so', u'time', u'invariably', u'woman', u'you', u'just'] -it serves : [u'to'] -a mile : [u',', u'from'] -of broken : [u'English'] -worth while : [u'to'] -inquired of : [u'him'] -security is : [u'unimpeachable', u'good'] -that another : [u','] -your army : [u'revolver'] -the hoarse : [u'roar'] -, slight : [u'infirmity'] -He cut : [u'a'] -up your : [u'coffee', u'mind', u'strength'] -illegally detained : [u'."'] -the Irene : [u'Adler'] -that compared : [u'with'] -the cheekbones : [u','] -moment the : [u'police'] -present such : [u'singular'] -amuse myself : [u'by'] -ran out : [u'again'] -same thickness : [u'.'] -geniality which : [u'he'] -Post to : [u'say'] -simply want : [u'your'] -for leaving : [u'them', u'America'] -better grown : [u'goose'] -reason is : [u'very'] -NOT LIMITED : [u'TO'] -and intellectual : [u'property'] -the keys : [u'and'] -thoughtfully. " : [u'It', u'Of'] -subject which : [u'comes'] -twisted. : ['PP'] -gravity." : [u'With'] -a ruined : [u'gambler'] -prepared to : [u'leave'] -! my : [u'dear'] -forbidding in : [u'his'] -speedily supply : [u'."'] -remarkable man : [u','] -. Suddenly : [u',', u'my', u'there', u'a'] -can never : [u'bring', u'show'] -ground but : [u'even'] -breakfast one : [u'morning'] -hearty meal : [u'.'] -you indicate : [u'that'] -League was : [u'founded'] -the Metropolitan : [u'Station'] -" Are : [u'you', u'they'] -two windows : [u'in'] -we need : [u'certainly', u'."'] -in shade : [u'instead'] -dark business : [u'which'] -when set : [u'forth'] -his usual : [u'writing'] -as absorbed : [u'as'] -that Frank : [u'was'] -assume. " : [u'Pray'] -laid on : [u'in'] -and one : [u'which', u'for', u'yellow', u'and', u'small', u'of', u'in'] -gentle, : [u'soothing'] -wishes. : [u'I', u'Twice'] -of baryta : [u'."'] -laid of : [u'human'] -is opposite : [u','] -featureless and : [u'commonplace'] -had recovered : [u'something'] -the Grice : [u'Patersons'] -little friend : [u'will'] -see which : [u'.', u'gets'] -tearing sound : [u','] -CAN be : [u'the'] -McCarthy junior : [u'and'] -carried him : [u','] -there might : [u'be'] -actually been : [u'arrested'] -field of : [u'my', u'battle'] -to station : [u'yourself'] -So they : [u'have'] -In view : [u'of'] -playing, : [u'but'] -troubles and : [u'was'] -she was : [u'a', u'?', u'not', u'wearing', u'there', u'afraid', u'just', u'sure', u'walking', u'escorted', u'always', u'indeed', u'killed', u'unconscious', u'in', u'pretty', u'sick', u'ejected', u'formerly', u'afterwards', u'seen', u'out', u'evidently', u'the', u'on', u'gone', u'passionately', u'so', u','] -room during : [u'the'] -it sounds : [u'quite', u'funny'] -the double : [u'row'] -be seen : [u'except', u'by', u'upon', u'there', u'in', u'.'] -paid at : [u'once'] -even had : [u'Miss'] -wife to : [u'say'] -That carries : [u'us'] -it drives : [u'me'] -bulge on : [u'the'] -, brick : [u','] -debt is : [u'not'] -the simplest : [u'means'] -bodes evil : [u'for'] -send a : [u'note'] -lanterns. " : [u'You'] -doing such : [u'business'] -t quite : [u'like'] -Dock and : [u'found'] -rapidly out : [u'of'] -deception could : [u'not'] -over bright : [u'pawnbroker'] -coat as : [u'we'] -be upbraided : [u'for'] -who appeared : [u'to'] -hair, : [u'a', u'and', u'all', u'too', u'the', u'it'] -your mind : [u'dwell', u',"', u'at', u'is'] -hair. : [u'With', 'PP', u'The', u'I', u'Hers'] -to acquire : [u'so'] -offers in : [u'this'] -me pass : [u','] -France he : [u'was'] -he established : [u'a'] -page at : [u'http'] -slightly decorated : [u'toe'] -volunteers and : [u'employees', u'donations'] -many pistol : [u'shots'] -factories and : [u'paper'] -destiny. " : [u'Be'] -visitor half : [u'rose'] -are always : [u'so'] -be striking : [u'and'] -less likely : [u'.'] -good.' : [u'He', u'I'] -delight at : [u'the'] -letter and : [u'the'] -grievous disappointment : [u'.'] -pursue this : [u'unhappy'] -and next : [u'moment'] -make notes : [u'upon'] -some lunch : [u'on'] -this address : [u'.'] -was silvered : [u'over'] -serves to : [u'show'] -us standing : [u'at'] -" Better : [u'close'] -beg that : [u'you'] -away all : [u'day', u'the'] -injections, : [u'and'] -found to : [u'my', u'her'] -gives no : [u'trouble'] -many. : [u'But'] -aright, : [u'at'] -study which : [u'have'] -quarter of : [u'a', u'an'] -been perpetrated : [u'in'] -him by : [u'the', u'a'] -our page : [u'boy'] -some advice : [u'.'] -will simplify : [u'matters'] -to believe : [u'that', u'in', u','] -have you : [u'any', u'solved', u'not', u'done', u',"', u'never', u'succeeded', u'to', u'ever', u'told', u'put', u'or'] -final quarrel : [u'?'] -he found : [u'that', u'it', u'us'] -fonder of : [u'him'] -our visit : [u'.'] -" Still : [u','] -now I : [u'only', u'know', u'will', u'am', u'beg', u'must', u'have'] -twice what : [u'I'] -out our : [u'plans'] -this hat : [u',', u'?"'] -this has : [u'broken'] -!" Sherlock : [u'Holmes'] -redistribution. : ['PP'] -the pips : [u'on', u'to', u'upon'] -me dreadful : [u'letters'] -rooms which : [u'we', u'I'] -above them : [u"?'"] -Jeremiah Hayling : [u','] -family blot : [u'to'] -three. : [u'From', u'I'] -admirably done : [u'.'] -three, : [u'and'] -to squander : [u'money'] -quick insight : [u'into'] -of death : [u',', u'.'] -error which : [u'it'] -absurd contrast : [u'to'] -I knelt : [u'beside'] -roused himself : [u'from'] -a fit : [u'of'] -infinite languor : [u'in'] -proprietary form : [u','] -was playing : [u','] -drawn up : [u'to'] -is associated : [u')'] -wrong. : ['PP'] -Coarse writing : [u',"'] -the opposing : [u'windows'] -explanations, : [u'each'] -. But : [u'for', u'the', u'how', u'I', u'then', u',', u'we', u'there', u'he', u'that', u'to', u'it', u'here', u'this', u'between', u'soon', u'what', u"'", u'as', u'my', u'now', u'you', u'our', u'a', u'come', u'if', u'have', u'since', u'will', u'why', u'never', u'really', u'among', u'when', u'in', u'Holmes', u'look', u'which'] -swiftly round : [u'from'] -all other : [u'loves', u'terms'] -place one : [u"'"] -my gems : [u','] -dislike of : [u'the'] -The roughs : [u'had'] -at college : [u';'] -but characteristic : [u'defects'] -, sensational : [u'literature'] -was hard : [u'to'] -eyes with : [u'tinted', u'the'] -Should I : [u'stop'] -grief and : [u'despair', u'rage'] -a spark : [u'where'] -, hardly : [u'knowing', u'be'] -he cut : [u'himself'] -this dead : [u'man'] -ungrateful if : [u'I'] -this dear : [u'little'] -fowls than : [u'I'] -to the : [u'chamber', u'light', u'length', u'other', u'road', u'door', u'floor', u'gentleman', u'cabman', u'cab', u'Church', u'altar', u'Temple', u'end', u'hour', u'eyes', u'letter', u'ground', u'injured', u'corner', u'thing', u'King', u'celebrated', u'photograph', u'best', u'literature', u'Lord', u'providing', u'steps', u'office', u'window', u'B', u'middle', u'roots', u'landlord', u'advertisement', u'conclusion', u'pawnbroker', u'Strand', u'back', u'north', u'music', u'level', u'visit', u'highest', u'police', u'three', u'most', u'imagination', u'ceiling', u'ball', u'house', u'church', u'doors', u'letters', u'young', u'weird', u'identity', u'whip', u'firm', u'description', u'man', u'old', u'Boscombe', u'lodge', u'next', u'little', u'left', u'discrepancy', u'Hereford', u'usual', u'coroner', u'prison', u'station', u'hotel', u'deep', u'fact', u'estate', u'idea', u'deductions', u'contrary', u'court', u'farther', u'highroad', u'definite', u'personality', u'Hall', u'Assizes', u'bush', u'diggings', u'head', u'west', u'lad', u'defending', u'fire', u'commencement', u'negroes', u'attic', u'room', u'table', u'box', u'person', u'sound', u'marked', u'perpetrators', u'condition', u'sideboard', u'vessels', u'Albert', u'drug', u'east', u'words', u'company', u'fringe', u'effect', u'first', u'villains', u'crime', u'doings', u'City', u'colour', u'horse', u'address', u'sombre', u'metropolis', u'right', u'force', u'grating', u'Bow', u'water', u'face', u'pillow', u'proper', u'stage', u'Lascar', u'singular', u'adventure', u'bird', u'individuality', u'dressing', u'Countess', u'arrest', u'crop', u'advertising', u'gallows', u'excellent', u'bitter', u'south', u'Alpha', u'page', u'salesman', u'white', u'Brixton', u'bad', u'dealer', u'death', u'sitting', u'new', u'marriage', u'match', u'lips', u'rooms', u'main', u'second', u'housekeeper', u'bed', u'ventilator', u'rope', u'terrified', u'care', u'bell', u'suspicion', u'victim', u'proof', u'complete', u'place', u'official', u'strange', u'point', u'matter', u'winds', u'sill', u'nature', u'wooden', u'spot', u'general', u'very', u'list', u'furnished', u'passage', u'whereabouts', u'verge', u'quick', u'affairs', u'disappearance', u'case', u'note', u'bottom', u'whole', u'dignity', u'extreme', u'centre', u'senior', u'side', u'greatest', u'southern', u'kitchen', u'stables', u'awful', u'mat', u'bureau', u'hall', u'many', u'task', u'agency', u'expense', u'rolling', u'Copper', u'Southampton', u'central', u'drawer', u'Rucastles', u'round', u'mastiff', u'tendencies', u'trademark', u'terms', u'Project', u'full', u'user', u'owner', u''] -The rest : [u'is', u'you'] -the largest : [u'tree', u'stalls'] -of violence : [u',', u'upon'] -most countries : [u'are'] -stuck his : [u'feet'] -dishonoured age : [u'.'] -be far : [u'off'] -and defeated : [u'in'] -are reasons : [u'why'] -we separated : [u'them'] -envelope was : [u'a'] -speak. : ['PP', u'On'] -Tell us : [u'the', u'what'] -infringement, : [u'a'] -you departed : [u'.'] -all my : [u'attention', u'self', u'adventures', u'data', u'ears', u'time'] -that sottish : [u'friend'] -requirement. : [u'I'] -humanity, : [u'every'] -roughly what : [u'I'] -and together : [u'they'] -mouth to : [u'reply'] -! Between : [u'your'] -glad if : [u'you', u'he'] -' requests : [u','] -for her : [u'jewel', u'money', u'at', u'."', u'disappearance', u'pleading', u'.', u'until'] -Stark laid : [u'down'] -2nd. : ['PP'] -conversation. : ['PP'] -one knows : [u'a'] -left; " : [u'but'] -earn 700 : [u'pounds'] -minutes are : [u'over'] -spoken before : [u'I', u'there'] -seized with : [u'a', u'compunction'] -child could : [u'open'] -did it : [u'very', u'I', u'.', u',', u'break', u'right', u'."'] -.' And : [u'then'] -very weak : [u','] -accounts a : [u'very'] -That also : [u'I'] -manager,' : [u'said'] -evidently an : [u'important'] -agent or : [u'employee'] -, jerkily : [u','] -His features : [u'were'] -not carry : [u'it'] -a high : [u'treble', u'central', u','] -On returning : [u','] -the nation : [u'.'] -place of : [u'business', u'the', u'shelter', u'silver'] -followed by : [u'a', u'the'] -at breakfast : [u'one', u'when'] -placed before : [u'us'] -coiners on : [u'a'] -him mad : [u'to'] -very humble : [u'apology'] -generous with : [u'you'] -black shadow : [u'wavering'] -tailing off : [u'into'] -tint! : [u'Gone'] -until the : [u'comical', u'good', u'answers', u'howl', u'January', u'last', u'whole', u'gems'] -cry. : ['PP'] -will of : [u'the'] -a copy : [u'of', u',', u'upon'] -dirty, : [u'but', u'while'] -been hung : [u'up'] -last item : [u'. "'] -than one : [u'of'] -swimmer who : [u'leaves'] -eyebrows combined : [u'to'] -locked upon : [u'the'] -finger were : [u'stained'] -one else : [u'does', u'had', u','] -exceptionally so : [u'.'] -of John : [u'Openshaw'] -made quite : [u'a'] -singular and : [u'whimsical'] -diary. : [u'The'] -belongs to : [u'the'] -wish your : [u'advice'] -my walking : [u'clothes'] -coloured stuff : [u','] -process of : [u'deduction', u'official', u'exclusion'] -the Capital : [u'and'] -nearly fallen : [u','] -purchase; : [u'for'] -. Close : [u'at'] -Irish setter : [u','] -fixed for : [u'the'] -including legal : [u'fees'] -The law : [u'cannot'] -and kind : [u'to'] -found his : [u'father'] -far off : [u'."'] -that and : [u'her'] -a salary : [u'of'] -scribble on : [u'a'] -to other : [u'methods', u'ones', u'copies'] -This year : [u'our'] -Yard Jack : [u'in'] -thought he : [u'might', u'was'] -found him : [u'in', u'standing', u'talking', u','] -A married : [u'woman'] -before her : [u'flight', u'father', u','] -just sending : [u'a'] -and finally : [u'of', u'announced', u',', u'that', u'became', u'covered'] -collar lay : [u'upon'] -I already : [u'feel', u'regretted'] -umbrella which : [u'he'] -obtain a : [u'refund'] -END OF : [u'THIS'] -dismay on : [u'discovering'] -brightly. : ['PP'] -brightly, : [u'and'] -be?' : [u'Opening'] -wedding ring : [u'upon'] -very ordinary : [u'black'] -a public : [u'slight', u'one', u','] -The person : [u'or'] -the arrest : [u'of'] -performance could : [u'possibly'] -young face : [u'as'] -twist by : [u'the'] -brown fur : [u','] -was ajar : [u'.'] -temper. : [u'Seeing'] -have been : [u'getting', u'burned', u'caused', u'less', u'made', u'watching', u'too', u'better', u'."', u'trained', u'done', u'telling', u'very', u'fortunate', u'at', u'good', u'?"', u'this', u'employed', u'working', u'so', u'looking', u'able', u'inflicted', u'by', u'hanged', u'wrongfully', u'of', u'struck', u'his', u'under', u'had', u'meant', u'but', u',', u'beaten', u'generally', u'reabsorbed', u'several', u'men', u'sporadic', u'cause', u'hurrying', u'worth', u'weighing', u'more', u'surprised', u'the', u'either', u'a', u'taken', u'written', u'as', u'twenty', u'entirely', u'some', u',"', u'unfortunate', u'two', u'making', u'deceived', u'cruelly', u'undoubtedly', u'obliged', u'waiting', u'remarked', u'submitted', u'.', u'senseless', u'recommended', u'nearer', u'an', u'turning', u'already', u'reading', u'borne', u'concerned', u'cut', u'on', u'dragging', u'identified', u'shamefully', u'difficult', u'enough', u'informed', u'with', u'she', u'far', u'caught', u'trying', u'out', u'well', u'one', u'!', u'he', u'trivial', u'novel', u'married', u'uncomfortable', u'fastened', u'locked', u'brought'] -temper, : [u'so'] -California, : [u'and'] -Afghan campaign : [u'throbbed'] -hat has : [u'not'] -persons, : [u'one'] -some heavy : [u'and'] -a slipper : [u'!'] -disproportionately large : [u'.'] -he tested : [u'the'] -his stethoscope : [u','] -visitor staggered : [u'to'] -has referred : [u'the'] -hurried up : [u'the', u'with'] -hat had : [u'been'] -autumnal winds : [u','] -bricks without : [u'clay'] -acted all : [u'through'] -drive out : [u'in'] -four and : [u'a', u'twenty'] -clock he : [u'bade'] -tell anyone : [u'of'] -even smoked : [u'there'] -Elias Whitney : [u','] -: ' A : [u'marriage'] -Holmes!" : [u'she', u'I'] -known to : [u'be', u'have', u'the', u'us', u'you'] -off with : [u'a'] -: ' I : [u'had'] -for fifty : [u'minutes'] -: ' K : [u'.'] -utmost certainty : [u'that'] -brought Miss : [u'Hunter'] -geese in : [u'the'] -only wished : [u'to'] -as black : [u'as'] -whom she : [u'became'] -could save : [u'himself'] -already offered : [u'a'] -the merit : [u'that'] -my second : [u'wedding'] -be legal : [u".'"] -folk who : [u'were', u'know'] -with corridors : [u','] -husband at : [u'the'] -like those : [u'of', u'out'] -assistant there : [u','] -France were : [u'rather'] -negro voters : [u'and'] -visitor' : [u's'] -fall; : [u'so'] -same the : [u'week'] -visitor. : ['PP'] -left him : [u'.', u'."', u'with', u'then', u'and'] -visitor, : [u'sitting', u'but', u'taking'] -finer shades : [u'of'] -engagement when : [u'my'] -fall. : [u'Yet'] -left his : [u'enormous', u'house'] -breathing of : [u'my', u'our'] -part from : [u'them'] -china and : [u'metal'] -rabbits when : [u'the'] -about George : [u'Meredith'] -paper has : [u'been'] -expensive hotels : [u'.'] -your billet : [u".'"] -twinkled, : [u'and'] -joking, : [u'Holmes'] -soon make : [u'him', u'it'] -Toller lets : [u'him'] -assistant promptly : [u','] -recognised shape : [u'a'] -"' The : [u'Church', u'sundial', u'other', u'work', u'family', u'ceremony', u'firm', u'propriety', u'Copper'] -of pure : [u'fear'] -have looked : [u'upon'] -fewer openings : [u'for'] -small jet : [u'of'] -terribly frightened : [u'.'] -expression of : [u'extreme', u'the'] -stands at : [u'present'] -what shall : [u'I'] -about Lord : [u'St'] -Holmes stepped : [u'briskly'] -t hear : [u'of'] -smelling of : [u'iodoform'] -is worth : [u".'"] -s grace : [u'from'] -charity descends : [u'into'] -daughter was : [u'of'] -my marriage : [u','] -trampled down : [u'and'] -armchair which : [u'I'] -the wild : [u'scream', u'talk'] -include the : [u'full'] -generation. : [u'I'] -upon what : [u'became'] -very superior : [u','] -heads down : [u'in'] -the round : [u','] -, man : [u',', u'.'] -Come at : [u'once'] -feeling of : [u'dread', u'security', u'impending', u'repulsion', u'uneasiness', u'their', u'duty'] -change came : [u'over'] -, may : [u'I', u'open', u'be', u'contain'] -begging as : [u'an'] -and things : [u',', u'and'] -700 pounds : [u'a'] -and fainted : [u'when'] -, dark : [u','] -was their : [u'denial'] -deal box : [u'which'] -mood and : [u'habit'] -threatening her : [u','] -and God : [u'help'] -this file : [u'or'] -others I : [u'have'] -drowsiness of : [u'the'] -yelled with : [u'the'] -bushes as : [u'hard'] -whistled shrilly : [u'a'] -swiftly into : [u'a'] -the missing : [u'man', u'gentleman', u'lady', u'piece', u'gems'] -possible combination : [u'of'] -Letters, : [u'memoranda'] -wall, : [u'and', u'a'] -deep sleep : [u','] -. William : [u'Morris'] -as resolute : [u'as'] -the planking : [u'and'] -made over : [u'them'] -of tin : [u'were'] -felt helpless : [u'.'] -s entrance : [u'.'] -died without : [u'having'] -last time : [u'.', u'that'] -little crib : [u'all'] -marriage has : [u'been'] -bye, : [u'Mr', u'and'] -bye. : [u'I'] -am commuting : [u'a'] -pointed it : [u'out'] -love of : [u'all', u'solitude', u'his', u'Heaven', u'a'] -years to : [u'come'] -Is there : [u'a'] -my old : [u'pals', u'quarters', u'ally'] -pointed in : [u'the'] -service to : [u'me'] -The London : [u'press'] -wheels of : [u'the', u'his', u'her'] -bye; : [u'it'] -and shall : [u'probably', u'do'] -few pence : [u'every'] -, whose : [u'husband', u'name', u'graceful', u'round'] -throat and : [u'sent'] -avoid scandal : [u'."'] -snarl. : [u'A'] -as you : [u'departed', u'might', u'may', u'are', u'keep', u'say', u'know', u'advise', u'will', u'can', u'could', u'said', u'like', u'suggest', u'."', u'see', u'remember', u'wore'] -was one : [u'of', u'singular', u'bird', u'about', u'which', u'wing'] -something of : [u'him', u'Saxe', u'the', u'his', u'refinement', u'a', u'where', u'interest'] -wrong he : [u'is'] -' un : [u"'"] -something on : [u'very'] -t allow : [u'it'] -letter came : [u'back'] -expensive a : [u'hat'] -compliance. : ['PP', u'To'] -station anywhere : [u'near'] -favourably nor : [u'the'] -Within was : [u'a'] -or are : [u'legally'] -is located : [u'at'] -and endeavoured : [u','] -now preparing : [u'for'] -and removed : [u'the'] -daring criminals : [u'of', u'in'] -in deep : [u'conversation', u'thought'] -natural habit : [u','] -have joined : [u'us'] -has gas : [u'laid'] -brothers at : [u'Trincomalee'] -THAT YOU : [u'HAVE'] -a somewhat : [u'rare'] -of iron : [u','] -s case : [u'it'] -when seen : [u'quarrelling'] -weapon. : [u'The', u'I', 'PP'] -be ready : [u'to', u'at'] -bell communicate : [u'with'] -just like : [u'the'] -my pal : [u'is', u'what'] -fail, : [u'in', u'however', u'I'] -was more : [u'likely', u'afraid', u'than', u'a'] -Really, : [u'Mr', u'now'] -it already : [u'.'] -of infinite : [u'languor'] -habit, : [u'his', u'and'] -after breakfast : [u'on', u'and'] -Really! : [u'Does', u'You'] -," our : [u'visitor'] -in from : [u'time'] -of parents : [u'by'] -some new : [u'problem'] -in Kensington : [u'I'] -exporting a : [u'copy'] -shriek. : [u'They'] -a scream : [u'and', u',', u'of'] -," the : [u'other'] -been whirling : [u'through'] -very precise : [u'fashion'] -All emotions : [u','] -named Breckinridge : [u','] -, wrapped : [u'a'] -there that : [u'I'] -are the : [u'more', u"'", u'main', u'crucial', u'merest', u'father', u'very', u'principal', u'first', u'devil', u'geese', u'country', u'links', u'true', u'rose', u'jewels', u'gems', u'duplicates'] -nine o : [u"'"] -went by : [u','] -I instantly : [u'reconsidered', u'lit'] -every confidence : [u','] -not bitten : [u'off'] -, loving : [u','] -up onto : [u'the'] -tossed it : [u'.'] -papers which : [u'Holmes', u'had', u'has', u'Openshaw'] -bring Mrs : [u'.'] -the enthusiasm : [u'which', u'of'] -he really : [u'knew'] -not bite : [u'the'] -by paying : [u'over'] -typewriting, : [u'which'] -typewriting. : ['PP', u'It'] -leaned his : [u'chin'] -merely taking : [u'your'] -instincts rose : [u'up'] -evidently trying : [u'to'] -life; : [u'but'] -manufactory of : [u'artificial'] -introduce you : [u'to', u',"'] -adventure of : [u'the'] -life. : [u'You', 'PP', u'Her', u'I', u'Besides'] -life, : [u'and', u'goes'] -appear against : [u'him'] -Trafalgar Square : [u'fountain'] -Ryder instantly : [u'gave'] -' wilful : [u'murder'] -approvingly; " : [u'I'] -dash of : [u'brandy'] -a gun : [u'under'] -terribly injured : [u'.'] -Toller had : [u'drunk'] -had opened : [u'his'] -comparing notes : [u'afterwards'] -must stretch : [u'a'] -. Singularity : [u'is'] -the condition : [u'of'] -the lantern : [u'and'] -a remark : [u'upon'] -by presuming : [u'that'] -size larger : [u'than'] -glade? : [u'It'] -theory all : [u'along'] -Street was : [u'choked'] -detected and : [u'defeated'] -about to : [u'be', u'withdraw', u'happen', u'issue', u'enter', u'summarise', u'renew', u'say'] -out towards : [u'the'] -wore in : [u'deference'] -it your : [u'custom'] -till called : [u'for'] -scratch and : [u'tell'] -off the : [u'beaten', u'streets', u'vague', u'effects', u'man', u'least', u'walls'] -Mother was : [u'all'] -and maybe : [u'you'] -purity and : [u'radiance'] -vitriol throwing : [u','] -he won : [u"'"] -he leaned : [u'back'] -parish who : [u'has'] -buy. : [u'D'] -exceedingly grave : [u'against'] -outside came : [u'the'] -after five : [u'o'] -passed some : [u'time'] -this allusion : [u'to'] -cigars which : [u'it'] -any workmen : [u'at'] -truth," : [u'he'] -telling my : [u'story'] -afterwards under : [u'Hood'] -be not : [u'very'] -much time : [u'.'] -which widened : [u'gradually'] -jealousy or : [u'some'] -great convenience : [u','] -fashion which : [u'was'] -notable feature : [u'about'] -sent over : [u'to'] -life which : [u'I'] -police to : [u'supply'] -impressions, : [u'my'] -a secret : [u'marriage', u".'", u",'"] -a column : [u'of'] -any positive : [u'crime'] -of security : [u'unless'] -this trip : [u','] -out like : [u'the', u'whipcord', u'a', u'gravel'] -secure me : [u'from'] -what did : [u'you', u'your'] -The station : [u'master'] -. Oakshott : [u',', u'to', u'here', u'for'] -not speak : [u'about', u'of'] -a captured : [u'ship'] -or landlady : [u'.'] -dreadful record : [u'of'] -wheeled sharply : [u'to'] -were peculiar : [u'boots'] -system of : [u'docketing', u'work', u'imprisonment'] -American gentleman : [u','] -where more : [u'stress'] -not deduce : [u'something'] -mud from : [u'it'] -investigations. : [u'Inspector'] -any time : [u','] -"' Some : [u'preposterous', u'little'] -old doctor : [u','] -amply repaid : [u'by'] -like any : [u'other'] -woman, : [u'there', u'with', u'the', u'and', u'for', u'whose', u'make', u'much', u'of'] -woman. : [u'I', 'PP', u'He', u'It', u'She'] -claim or : [u'to'] -were discovered : [u'stored'] -shocked by : [u'the'] -much that : [u'many'] -as were : [u'brought'] -of extreme : [u'chagrin'] -About Project : [u'Gutenberg'] -of articles : [u'upon'] -of its : [u'own', u'occupant', u'outrages', u'youth', u'force'] -, marked : [u'up'] -remembrance," : [u'said'] -these results : [u','] -may recompense : [u'you'] -seldom came : [u'out'] -now bright : [u','] -am ready : [u'to', u'enough'] -the belt : [u'of'] -done that : [u','] -side we : [u'could'] -unravelling the : [u'matter'] -o' : [u'clock'] -world did : [u'you'] -and hung : [u'like'] -separated them : [u'and'] -peering eyes : [u','] -writhed and : [u'screamed'] -competence. : ['PP'] -Hosmer Angel : [u'."', u'could', u'?', u'?"', u'came', u'vanish', u'.', u"'", u',', u'must'] -trust you : [u".'"] -unapproachable from : [u'that'] -woman entered : [u'the'] -first duty : [u'was'] -I seen : [u'such'] -I seem : [u'to'] -should I : [u'attempt', u'put', u'go', u'slink', u'ever'] -wondering what : [u'I', u'strange', u'secret'] -hundred a : [u'year'] -pen. : [u'Better'] -his task : [u'more'] -was something : [u'in', u'depressing', u'noble', u'of', u'terrible', u'else', u'unnatural', u'about'] -broken until : [u'we'] -cried our : [u'client'] -and Peterson : [u','] -cry raised : [u'the'] -cried out : [u'that'] -the violent : [u','] -could that : [u'mean', u'something'] -provide, : [u'in'] -highly intellectual : [u'is'] -as copying : [u'out'] -my association : [u'with'] -was national : [u'property'] -pause before : [u'he'] -and outside : [u'the'] -without affectation : [u','] -flies, : [u'but'] -This Godfrey : [u'Norton'] -The commissionaire : [u'plumped'] -affections from : [u'turning'] -one answering : [u'the'] -clapped his : [u'hands'] -use an : [u'arc'] -not beget : [u'sympathy'] -When about : [u'a'] -the date : [u'."', u'of'] -, little : [u',', u'to', u'birds'] -which both : [u'hinted'] -rushed across : [u'and', u'the'] -your habits : [u'looking'] -footing. : ['PP', u'She'] -having acted : [u'so'] -faced by : [u'so'] -just after : [u'we', u'breakfast'] -was there : [u'in', u'to', u'at', u'I', u'she', u".'", u'another', u'as', u','] -opportunities to : [u'fix'] -pocket." : [u'He'] -promise, : [u'then'] -better to : [u'learn', u'have', u'take'] -had twice : [u'read'] -one day : [u'in', u',', u'father'] -or computer : [u'codes'] -very seasonable : [u'in'] -blow from : [u'a'] -coming at : [u'midnight'] -engaged to : [u'the', u'her', u'each'] -Pray continue : [u'your', u',"'] -facts have : [u'never'] -of 20 : [u'%'] -And underneath : [u'?"'] -man uttered : [u','] -the tags : [u'of'] -concentrate yourself : [u'upon'] -a journey : [u'to'] -high collar : [u','] -shag tobacco : [u',', u'and'] -in looking : [u'into'] -considerable difference : [u'to'] -A heavily : [u'timbered'] -s orange : [u'barrow'] -He and : [u'a', u'the'] -walking. : ['PP'] -walking, : [u'and'] -each led : [u'into'] -the remainder : [u'of'] -resource was : [u'flight'] -the handkerchief : [u'and'] -I drew : [u'the'] -Serpentine. : ['PP'] -been better : [u'.', u'for'] -they closed : [u'their'] -a cabinet : [u'?"'] -Away they : [u'went'] -pointed to : [u'a', u'an', u'his', u'one', u'something'] -she spoke : [u',', u'a'] -bed again : [u','] -month then : [u'."'] -sheer lassitude : [u'from'] -research. : [u'They'] -generally in : [u'good'] -other goose : [u'upon'] -associated files : [u'of'] -Cusack and : [u'you'] -shot back : [u'a'] -skirmishes, : [u'but'] -flapped off : [u'through'] -that within : [u'an', u'a'] -of writing : [u'lately', u'another'] -ominous. : [u'What'] -Private affliction : [u'also'] -poor father : [u'met', u"'"] -man for : [u'starting'] -has already : [u'heard', u'a', u'run', u'been'] -looks exceedingly : [u'grave'] -pulled me : [u'abruptly', u'swiftly'] -good authority : [u'for'] -to credit : [u'that'] -donate Section : [u'5'] -the incoherent : [u'ramblings'] -to Doctors : [u"'"] -large bureau : [u','] -situated at : [u'the'] -the crackling : [u'fire'] -in need : [u'of'] -old bird : [u'of'] -am Mr : [u'.'] -straight to : [u'one', u'you', u'her'] -would accept : [u'in'] -quite hold : [u'myself'] -or night : [u','] -letters come : [u','] -sickness nor : [u'business'] -said Mr : [u'.'] -announcement. : ['PP'] -tore the : [u'mask', u'lid'] -3 and : [u'4'] -many of : [u'my', u'them'] -as sure : [u'a'] -curtain near : [u'your'] -own purposes : [u','] -as safe : [u'as'] -me ready : [u'when'] -cellar with : [u'a'] -very sweet : [u'of', u'little', u'temper'] -Pray tell : [u'me', u'us'] -noble woman : [u'.'] -" What : [u'do', u'is', u'then', u'!"', u'a', u'else', u'on', u'are', u'I', u'office', u'!', u'did', u'of', u'?"', u'have', u'shall', u'steps', u'will', u'can', u',', u'becomes', u'has', u"'", u'could', u'CAN'] -a written : [u'explanation'] -does he : [u'pursue', u'?"', u'not'] -discoloured and : [u'soaked'] -works possessed : [u'in'] -ask my : [u'hand'] -became clear : [u'to'] -if that : [u'were'] -his track : [u'for', u'.'] -the conviction : [u'that'] -was my : [u'sister', u'due', u'Frank', u'true', u'intention', u'hair', u'first', u'coil'] -got tallow : [u'stains'] -point from : [u'which'] -pillows and : [u'consuming'] -people there : [u'.'] -, founded : [u'upon'] -Next Monday : [u'I'] -could dimly : [u'catch'] -not surprised : [u'to'] -path as : [u'nothing'] -my charge : [u','] -seldom trivial : [u','] -young gentleman : [u'whose'] -when William : [u'Crowder'] -I failed : [u'to'] -hour and : [u'a'] -so elaborate : [u'a'] -a sidelong : [u'glance'] -announced her : [u'positive'] -our best : [u'in'] -lust for : [u'the', u'gold'] -seal. : ['PP'] -practice again : [u','] -clue which : [u'will'] -family to : [u'you'] -has taken : [u'to', u'the'] -charge a : [u'fee', u'reasonable'] -open a : [u'ventilator', u'door'] -at anything : [u';'] -least important : [u'and'] -what is : [u'wanted', u'it', u'to', u'really', u'that', u'this', u'wrong', u'a', u'your', u'involved', u'the'] -room was : [u'plainly', u'as', u'full', u'a', u'empty', u'not'] -signet ring : [u'."'] -what it : [u'could', u'was', u'is', u'would', u'meant', u'all'] -receive the : [u'orange', u'force', u'work'] -weak, : [u'just', u'but'] -what in : [u'the'] -no easy : [u'matter'] -received us : [u'in'] -the hook : [u'and'] -no occupation : [u','] -on these : [u'things'] -comprehensive glances : [u'.'] -This concluded : [u'the'] -direction. : ['PP', u'It', u'The'] -and fro : [u'in', u'like', u','] -the birds : [u'a'] -those seven : [u'weeks'] -Australian. : [u'The'] -put me : [u'off', u'upon'] -legs stretched : [u'out'] -two officers : [u'waiting'] -represent the : [u'family'] -cheetah, : [u'too'] -impossible to : [u'effect', u'exclude', u'replace'] -very paper : [u'in'] -, unreasoning : [u'terror'] -then afterwards : [u'they'] -To learn : [u'more'] -Terms of : [u'Use'] -so delighted : [u'that'] -the creditor : [u','] -He gathered : [u'up'] -governesses in : [u'the', u'England'] -become known : [u'that'] -became what : [u'you'] -broke bright : [u'and'] -,' instantly : [u'attracted'] -," he : [u'remarked', u'answered', u'continued', u'cried', u'said', u'added', u'whispered', u'explained', u'asked', u'observed', u'stammered', u'exclaimed', u'shouted', u'snarled', u'murmured', u'gasped', u'shrieked'] -And his : [u'asking'] -and therefore : [u'we'] -haste and : [u'the'] -table. " : [u'This', u'I'] -,' said : [u'I', u'he', u'my', u'Mr', u'she', u'the'] -strike and : [u'was'] -the brougham : [u'.'] -two letters : [u','] -listening with : [u'all'] -the Trepoff : [u'murder'] -of rushing : [u'figures'] -information which : [u'may', u'we'] -level to : [u'your'] -now made : [u'up'] -shortly by : [u'the'] -rat. : ['PP', u'What', u'He'] -rat, : [u'and', u'then'] -smoked very : [u'heavily'] -gun, : [u'which'] -awful consequences : [u'to'] -impatiently, " : [u'when'] -knee. "' : [u'Lord'] -of 1000 : [u'pounds'] -hand seemed : [u'to'] -nine years : [u'in'] -his door : [u'so', u','] -stern post : [u'of'] -and names : [u'.'] -and foolish : [u','] -his cup : [u', "'] -have bored : [u'you'] -wait in : [u'the', u'this', u'an'] -bricks and : [u'mortar'] -agreed to : [u'donate'] -I marked : [u'the'] -his way : [u'along', u'to', u'.', u'homeward', u'past'] -old rickety : [u'door'] -face and : [u'hurled', u'disreputable', u'his', u'a', u'peering', u'filling', u'trim', u'glided', u'manner', u'alert', u'shaking'] -agony, : [u'with'] -home product : [u'.'] -at two : [u'.'] -Bradstreet." : [u'"'] -vague. : [u'The'] -have little : [u'doubt'] -' 83 : [u'.', u'that'] -' 82 : [u'and'] -' 85 : [u'.'] -' 84 : [u'when', u','] -' 87 : [u'furnished'] -receded. : [u'And'] -all," : [u'said'] -, passed : [u'down'] -family estate : [u','] -you received : [u'the'] -all,' : [u'said'] -grown men : [u'.'] -rushing forward : [u'with'] -had borrowed : [u'my'] -was passing : [u'. "', u'the'] -away we : [u'dashed', u'could', u'went', u'drove'] -painful event : [u'which'] -strong motive : [u'for'] -pt de : [u'foie'] -observe any : [u'change'] -Good night : [u',', u'."'] -than herself : [u'.'] -brown hands : [u'.'] -text, : [u'and'] -doubt suggested : [u'to'] -a rough : [u'one', u','] -, understand : [u','] -, marm : [u'?"'] -an insinuating : [u'whisper'] -took an : [u'orange'] -should you : [u'come', u'raise', u'rather', u'have'] -, inaccurate : [u'or'] -FIVE ORANGE : [u'PIPS'] -a noiseless : [u'lock'] -great distance : [u'from'] -give 30 : [u'pounds'] -well paid : [u'by'] -by experience : [u'that'] -" Convinced : [u'that'] -really profited : [u'by'] -on. ' : [u'You'] -or none : [u',"'] -vanish before : [u'the'] -his thumb : [u'in', u'over'] -their place : [u'?'] -she held : [u'above', u'a'] -the week : [u'after', u'.', u','] -looked out : [u'into', u'upon', u'of', u'.'] -smoke still : [u'curled'] -always loved : [u'each'] -shall order : [u'you', u'breakfast'] -client has : [u'rather'] -else can : [u'be'] -bit of : [u'metal', u'simple', u'news'] -this age : [u'.'] -narrow passage : [u'and', u'between'] -wagon driver : [u','] -hiss as : [u'I'] -client had : [u'sprung'] -know a : [u'little'] -to spend : [u'more'] -bull story : [u'about'] -kindly on : [u'the'] -was acquitted : [u'at'] -and submitted : [u'to'] -faced, : [u'elderly', u'refined', u'white', u'although'] -talk this : [u'matter'] -was only : [u'Crown', u'a', u'to', u'some', u'by', u'put', u'seven', u'after', u'one', u'yesterday'] -stepping over : [u'and'] -of incredulity : [u'. "', u'upon'] -looking groom : [u','] -I dressed : [u'I', u',', u'hurriedly'] -of Greenwich : [u'.'] -gold corners : [u','] -long draught : [u'of'] -having served : [u'my'] -tried more : [u'than'] -we returned : [u','] -every feature : [u'.'] -viewed, : [u'for', u'copied'] -stranger than : [u'anything', u'the'] -reasoner and : [u'most'] -head gravely : [u'. "', u'.'] -and struggling : [u'men'] -getting on : [u'?"'] -a pause : [u'before', u','] -Before the : [u'what'] -loves her : [u'husband', u'devotedly'] -do what : [u'he', u'I', u'they'] -over twenty : [u'years'] -there peeped : [u'a'] -cannot understand : [u',"', u'them'] -and had : [u'stopped', u'only', u'borne', u'almost', u'been', u'a', u'paid', u'this', u'finally', u'held', u'always', u'gone', u'come', u'just', u'seen', u'no'] -heavily against : [u'our'] -your loving : [u',--'] -or associated : [u'in'] -much younger : [u'than'] -Ku Klux : [u'Klan'] -," chuckled : [u'the'] -intrusion of : [u'other'] -ships of : [u'fair'] -held most : [u'dear'] -keeps very : [u'high'] -persecution. : ['PP'] -twinkle in : [u'his'] -been novel : [u'and'] -felt easier : [u'in'] -explanation why : [u'he'] -, spinster : [u','] -wasted, : [u'since'] -good to : [u'lose', u'be'] -him wash : [u'his'] -some commission : [u','] -a sedentary : [u'life'] -been sucked : [u'away'] -forgery to : [u'put'] -secretary and : [u'manager'] -scuffle, : [u'your'] -This dress : [u'does'] -attempts have : [u'been'] -that Horner : [u'had'] -know I : [u'ought'] -reserve lost : [u'in'] -vacancies than : [u'there'] -then returned : [u'with', u','] -THE ADVENTURE : [u'OF'] -loungers in : [u'the'] -will the : [u'Duke'] -and Mr : [u'.'] -Thoreau' : [u's'] -t have : [u'any', u'that', u'tomfoolery', u'a'] -us down : [u'a'] -preparations, : [u'and'] -shall communicate : [u'with'] -second son : [u'of'] -of finding : [u'this', u'them'] -Clearly such : [u'a'] -Then comes : [u'our'] -all seaports : [u'.'] -with gentlemen : [u'who'] -your visitor : [u'wear'] -solemnly, : [u'and'] -" Lone : [u'Star'] -to teach : [u'you'] -resembling her : [u'in'] -light spring : [u'up'] -Precisely so : [u'.', u','] -by practice : [u'and'] -), owns : [u'a'] -. Through : [u'the'] -a violent : [u'start', u'quarrel'] -you such : [u'a'] -throw, : [u'and'] -wink!' : [u'He'] -flame coloured : [u'silk', u'tint'] -wild way : [u'of'] -places in : [u'England'] -scraped round : [u'the'] -of appeal : [u'."'] -striking his : [u'stick'] -would agree : [u'with'] -little shed : [u'in'] -Holmes laying : [u'his'] -King stared : [u'at'] -any longer : [u',', u'.'] -sallow complexion : [u','] -up stairs : [u','] -competition in : [u'the'] -having obeyed : [u'to'] -was evidently : [u'an', u'a'] -the negroes : [u','] -very eyes : [u'to'] -an introduction : [u'to'] -Surely it : [u'would'] -Moran to : [u'day'] -ve heard : [u'that', u'about'] -clay when : [u'he'] -pew, : [u'of'] -quite modern : [u',"'] -said he : [u'; "', u'. "', u', "', u'.', u',', u". '", u'as', u", '", u'was', u'with', u'presently', u'putting', u'in', u'soothingly', u'at', u'carelessly', u'"', u"; '"] -frosted glass : [u','] -is capable : [u'of'] -hereditary in : [u'the'] -sheets of : [u'foolscap'] -linen. : [u'The'] -that instead : [u'of'] -ice crystals : [u'. "'] -fee was : [u'at'] -property to : [u'any'] -Norton. : ['PP'] -go over : [u'the', u'them'] -considerably. : [u'The', 'PP'] -less complete : [u'as'] -he denied : [u'everything'] -emerged into : [u'Farrington', u'the'] -They have : [u'but', u',', u'been', u'laid', u'now'] -secrecy which : [u'we', u'I'] -profoundly true : [u'.'] -it meant : [u'.'] -for instance : [u','] -Pink' : [u'un'] -Miss Hunter : [u'.', u".'", u',', u'has', u"?'", u'not', u'had', u"'", u'; "', u'screamed', u'down', u'back'] -had shrunk : [u'so'] -a loafer : [u'to'] -the exquisite : [u'mouth'] -drenched his : [u'tobacco'] -I descended : [u','] -pointed radiance : [u'.'] -right across : [u'the', u'it'] -engaged upon : [u'our'] -had them : [u','] -that which : [u'you', u'is', u'was', u'he', u'she', u'another', u'has', u'it', u'led'] -to get : [u'near', u'away', u'this', u'corroboration', u'hold', u'rid', u'into', u'to', u'the', u'a', u'some', u'over', u'what', u'clear'] -and encyclopaedias : [u','] -neither to : [u'my'] -the herald : [u'of'] -lay down : [u'upon', u'once'] -disputatious rather : [u'than'] -some robberies : [u'which'] -snow in : [u'front'] -fall of : [u'the'] -her under : [u'any'] -arm. " : [u'There'] -and taller : [u'by'] -be better : [u'able', u'in', u'to'] -confide it : [u'to', u'even'] -and peeped : [u'round'] -can lay : [u'her', u'his'] -side cylinders : [u'.'] -thrusting this : [u'rude'] -watch if : [u'it'] -George Burnwell : [u',', u'should', u'has', u'and', u'tried', u'.', u'is'] -views. : [u'Its', 'PP'] -very affectionate : [u'father'] -commission through : [u'my'] -his cold : [u','] -working through : [u'generations'] -about your : [u'connection'] -us our : [u'journey'] -more adapted : [u'for'] -us out : [u'was'] -Your salary : [u'with'] -rich style : [u','] -as became : [u'his'] -no shoes : [u'or'] -cannot waste : [u'time'] -of hundred : [u'a', u'would'] -measure. : [u'Have'] -no good : [u'."', u'for', u'purpose', u'in'] -fast as : [u'the'] -the estate : [u','] -fourth smartest : [u'man'] -now than : [u'formerly'] -" Missing : [u',"'] -, contains : [u'the'] -eye as : [u'we'] -what might : [u'grow'] -I advertised : [u'for', u','] -now that : [u'he', u'the', u'I', u'it', u'this'] -what Neville : [u'St'] -rug. : [u'Here'] -traced his : [u'way'] -she hurried : [u'across'] -later the : [u'voice'] -was foolish : [u'enough'] -domain( : [u'does'] -it emerged : [u'into'] -garden without : [u'seeing'] -except my : [u'own'] -strange!" : [u'muttered'] -I observed : [u'.', u'that', u','] -." Sherlock : [u'Holmes'] -may then : [u'walk'] -Sutherland. " : [u'Yes'] -a harmonium : [u'beside'] -been but : [u'partially'] -more to : [u'be', u'my', u'London'] -security. : ['PP'] -interfere, : [u'come'] -interfere. : ['PP'] -as requested : [u'.'] -are probably : [u'aware'] -A feeling : [u'of'] -climbing down : [u'holes'] ---!" He : [u'sprang'] -work at : [u'Briony', u'2'] -repeated, : [u'standing'] -beard, : [u'grizzled'] -. Any : [u'injury', u'alternate'] -work as : [u'usual', u'that', u'long'] -home for : [u'three', u'two'] -gravely. : ['PP'] -his unhappy : [u'father'] -a danger : [u'if'] -the event : [u'of'] -foot paths : [u'it'] -online at : [u'www', u'http'] -. And : [u'yet', u'in', u'the', u'here', u'this', u'what', u'she', u'good', u'your', u'that', u'when', u'then', u'no', u',', u'now', u'he', u'many', u'about', u'so', u'you', u'underneath', u'which', u'on', u'pray', u'if', u'there', u'let'] -time over : [u'this'] -something terrible : [u'and'] -his absence : [u'every', u'I'] -Kate Whitney : [u'.'] -" Suddenly : [u','] -correspondent could : [u'be'] -Mary Jane : [u','] -may call : [u'it', u'a'] -, from : [u'the', u'what', u'which', u'Horsham', u'some', u'whence', u'his', u'nine', u'jealousy'] -the duplicate : [u'bill'] -Arthur does : [u'.'] -fortnight went : [u'by'] -imagine,' : [u'said'] -Reading in : [u'less'] -interests me : [u'deeply'] -instantly reconsidered : [u'my'] -Why is : [u'he'] -and hurried : [u'into', u'me', u'down', u'away', u'from', u'past'] -stone; : [u'the'] -go about : [u'the'] -does her : [u'stepfather', u'clever'] -chase after : [u'you'] -Over the : [u'edge'] -"' For : [u'how'] -previous night : [u'.'] -remained forever : [u'a'] -other copies : [u'of'] -walk in : [u';', u'the'] -warmth. : ['PP'] -. SHERLOCK : [u'HOLMES'] -stone. : [u'It', 'PP', u'Thank'] -is wonderful : [u'!"'] -stone, : [u'rather', u'and', u'with', u'standing'] -One sorrow : [u'comes'] -Why shouldn : [u"'"] -furnished room : [u','] -first floor : [u'.'] -s more : [u'than'] -fifty minutes : [u'."'] -: ' You : [u'will'] -land may : [u'suffer'] -so long : [u'a', u'as', u'had'] -finished for : [u'the'] -exhilarating nip : [u'in'] -emerge as : [u'a'] -having someone : [u'with'] -heavy mortgage : [u'.'] -expedition of : [u'to'] -God help : [u'you', u'me', u'us', u'the'] -the cripple : [u'showed'] -figure made : [u'even'] -man since : [u'the'] -a lady : [u',', u'who', u'leave', u'and', u'with', u'?', u'might'] -bill of : [u'some'] -many ways : [u'unique'] -1883 a : [u'letter'] -this stile : [u','] -Hence, : [u'you'] -onto the : [u'rack', u'table', u'floor', u'stable', u'roof'] -his grip : [u'upon'] -stretching along : [u'the'] -Farm. : [u'On', u'I'] -along its : [u'gullet'] -will succeed : [u'in'] -and occupied : [u'his'] -say east : [u',"'] -! ' Arms : [u':'] -some informality : [u'about'] -after. : [u'Every', u'We', u'Pa'] -fads may : [u'cause'] -running through : [u'the'] -, whispering : [u'fashion'] -our most : [u'lucrative'] -unlocked my : [u'bureau'] -another investigation : [u','] -. " This : [u'is', u'fellow'] -days, : [u'with', u'and'] -after? : [u'No'] -of humour : [u','] -you renewed : [u'your'] -cumbrous. : [u'The'] -now from : [u'the'] -very excitable : [u','] -been plucked : [u'back'] -were red : [u','] -Foundation web : [u'page'] -the deed : [u'followed', u'.', u'had'] -The metallic : [u'clang'] -approached it : [u'I'] -could gather : [u'together'] -to all : [u'they'] -handwriting was : [u'so'] -sitting in : [u'the'] -" or : [u'PGLAF', u'other'] -more ambitious : [u','] -courtesy, : [u'but'] -turned quickly : [u'to'] -by sitting : [u'upon'] -probable one : [u'.'] -glanced through : [u'.'] -and seriously : [u'compromise'] -of anger : [u'from', u','] -expenses I : [u'may'] -" of : [u'Savannah'] -dragging the : [u'Serpentine'] -attempt might : [u'be'] -inferences. : ['PP', u'You'] -and housekeeper : [u','] -please." : [u'He'] -handy. : ['PP'] -handy, : [u'and'] -information that : [u'of'] -shouted through : [u'it'] -bachelor. : [u'It', 'PP'] -, 1890 : [u'.'] -rushed out : [u'into', u',', u'and'] -at great : [u'risk'] -there! : [u'The'] -and sallow : [u'skinned'] -here comfortably : [u'and'] -death--!" : [u'He'] -here she : [u'comes'] -cleverness of : [u'women'] -that that : [u'made', u'would', u'side', u'bit', u'is', u'also'] -well with : [u'what', u'him'] -double the : [u'sum'] -our researches : [u'into'] -be gone : [u'before', u'."', u'by'] -a quarter : [u'to', u'past', u',', u'of'] -utterly spoiled : [u'and'] -deeper still : [u'.'] -door locked : [u'you', u'upon'] -of matches : [u'on', u'laid', u'and'] -was early : [u'in'] -persuasions and : [u'our'] -He spoke : [u'calmly', u'in'] -own story : [u'.'] -double stream : [u'upon'] -be wanting : [u'in'] -attention wander : [u'so'] -reason, : [u'but', u'to', u'therefore', u'so'] -gave my : [u'friend'] -twinkled dimly : [u'here'] -domain eBooks : [u'.'] -of was : [u'that'] -each case : [u','] -furnished house : [u'at'] -lips. : [u'As', 'PP'] -lips, : [u'a', u'his', u'the', u'too'] -our resources : [u'and', u'.'] -regulating charities : [u'and'] -He made : [u'a'] -walked quietly : [u'off'] -ill natured : [u'a'] -for doing : [u'anything'] -folk from : [u'whom'] -surprised. : ['PP'] -have time : [u'to'] -and glimmer : [u'of'] -bizarre a : [u'thing'] -be conjectured : [u','] -life as : [u'truly'] -." About : [u'nine'] -sly, : [u'so'] -destiny of : [u'a'] -earnest and : [u'made'] -slam of : [u'the'] -long to : [u'tell', u'describe'] -, them : [u"'"] -, then : [u'."', u'we', u'to', u',', u'?"', u"?'", u'what', u'?', u',"', u'!"', u'it', u'all', u'he', u": '", u'!', u'a', u'her', u",'", u'at', u'in', u'I', u'.'] -after the : [u'alarm', u'fashion', u'concert', u'first', u'time', u'return', u'new', u'coming', u'Civil', u'last', u'bridal', u'ceremony', u'Franco', u'other', u'child'] -, they : [u'separated', u'were', u'may', u'have', u'go', u'come', u'made', u'are', u'will'] -to alter : [u'the'] -a hurried : [u'scrawl', u'glimpse'] -a conceivable : [u'hypothesis'] -manners, : [u'but', u'he'] -joy to : [u'meet'] -were sent : [u'to'] -suspicions depend : [u'so'] -of dun : [u'coloured'] -approaching marriage : [u'with'] -disreputable hard : [u'felt'] -lean, : [u'ferret'] -bearing upon : [u'my', u'the'] -brown dust : [u'of'] -I simply : [u'wish', u'want'] -property of : [u'his'] -. Father : [u'was'] -money not : [u'less'] -slight," : [u'said'] -The fee : [u'is'] -was curled : [u'upon'] -share it : [u'without'] -He slapped : [u'it'] -Of my : [u'mother'] -is violent : [u','] -. and : [u'Mrs'] -my memory : [u'.', u'and'] -. " Still : [u','] -and fifth : [u'.'] -Which of : [u'you'] -Becher a : [u'German'] -retired to : [u'his', u'rest', u'her', u'my'] -, into : [u'a', u'the'] -places, : [u'although', u'and'] -the clutches : [u'of'] -Who do : [u'you'] -and fifty : [u'guineas'] -" Seven : [u'!"'] -and those : [u'preposterous'] -used on : [u'or'] -red face : [u'and'] -variety of : [u'computers'] -need are : [u'critical'] -of equipment : [u'including'] -a broad : [u'brimmed', u'balustraded', u'one', u',', u'and'] -pistol shot : [u'.'] -quick face : [u','] -31 Lyon : [u'Place'] -indirect or : [u'political'] -interests. : [u'Young'] -, Windigate : [u'by'] -Holmes when : [u'our', u'he'] -, spouting : [u'fire'] -landing places : [u'for'] -turn my : [u'attention', u'hand', u'conjecture', u'face'] -committed there : [u'."'] -the rent : [u'in'] -hands he : [u'had'] -matter before : [u'him', u','] -right cuff : [u'so'] -our journey : [u'would'] -removed it : [u'was'] -he make : [u'no', u'his'] -hour the : [u'miserable'] -schemer falls : [u'into'] -your conclusions : [u'from'] -are really : [u'puzzling', u'mere'] -county of : [u'Kent'] -window of : [u'which', u'the'] -adviser, : [u'and'] -for anything : [u'."', u'better'] -of any : [u'such', u'of', u'other', u'sort', u'violence', u'assistance', u'legal', u'workmen', u'furniture', u'work', u'money', u'', u'provision'] -write to : [u'Mr'] -gem. : ['PP'] -she mean : [u'by'] -tobacco ashes : [u'enables'] -in cold : [u'blood'] -for a : [u'small', u'few', u'good', u'higher', u'number', u'wedding', u'left', u'little', u'week', u'morning', u'friend', u'holiday', u'dirty', u'sharp', u'hat', u'bloody', u'Scotch', u'crime', u'Christmas', u'long', u'square', u'bell', u'night', u'year', u'moment', u'bed', u'glass', u'minute', u'situation', u'young', u'walk', u'work'] -dissatisfied. : ['PP', u'It'] -including including : [u'checks'] -99712., : [u'but'] -the essential : [u'facts'] -genii of : [u'the'] -jump, : [u'and'] -myself to : [u'see', u'--"', u'do', u'your', u'blame'] -some sailor : [u'customer'] -had never : [u'heard', u'set', u'so', u'seen', u'met'] -some weeks : [u'.', u'before', u'back'] -who certainly : [u'deserved'] -for I : [u'had', u'have', u'will', u'began', u'am', u'thought', u'was', u'feared', u'think', u'do', u'should', u'know', u'did', u'knew', u'observe', u'understood', u'very', u'wish', u'saw', u'would'] -for J : [u'.'] -practically finished : [u'.'] -for C : [u'.'] -sweeping bow : [u'to', u'and'] -or who : [u'would'] -come between : [u'us'] -everything was : [u'as', u'deadly', u'turning'] -we wedged : [u'in'] -looking for : [u'a', u'matches'] -in Covent : [u'Garden'] -one unpleasant : [u'thing'] -red headed : [u'men', u'man', u',', u'folk', u'client', u'clients', u'copier', u'idea'] -addition to : [u'the'] -he could : [u'not', u'object', u'towards', u'better', u'to', u'tell', u'help', u'meet', u'go', u'grasp', u'reach', u'save', u'hardly', u'so', u'possibly', u'see', u'strike', u'use'] -I went : [u'off', u'home', u'to', u'under', u'down', u'about', u'out', u'into', u'first', u';', u'back', u'in', u'and'] -him!" : [u'shouted'] -sofa and : [u'tried', u'armchairs'] -earth do : [u'you'] -an early : [u'appointment'] -smiling on : [u'the'] -For my : [u'part'] -nose. " : [u'It'] -roof over : [u'our'] -Two thousand : [u'five'] -But it : [u'has', u'was', u'is', u'might', u'needs'] -Violence does : [u','] -corroborate your : [u'view'] -my purple : [u'plush'] -forty one : [u'years'] -will always : [u'secure'] -has grizzled : [u'hair'] -have nothing : [u'to', u'but'] -impulsive girl : [u','] -mystery may : [u'be'] -hobbies,' : [u'said'] -all which : [u'we'] -geese!" : [u'The'] -of recent : [u'occurrences'] -curious thing : [u',"'] -sense will : [u'suggest'] -some fault : [u'in'] -the fuller : [u"'"] -coronet and : [u'of'] -extended halfway : [u'up'] -and again : [u'to', u'I'] -coincidences, : [u'the'] -bottom of : [u'the', u'my'] -pressure of : [u'public'] -, off : [u'you'] -freemasonry among : [u'horsey'] -saw then : [u'the'] -fierce weather : [u'through'] -not part : [u'of'] -that clerks : [u'are'] -green of : [u'the'] -my doing : [u'all', u'so'] -is correct : [u'in', u',', u'can'] -including any : [u'word'] -what she : [u'might', u'said', u'meant'] -stood gazing : [u'at'] -lucid. : ['PP'] -ivory miniature : [u','] -mature for : [u'marriage'] -My clothes : [u'were'] -is right : [u'.'] -But in : [u'avoiding', u'any'] -a sneer : [u'.'] -winking at : [u'me'] -could it : [u'be', u'indicate'] -Hereford Arms : [u'where'] -of temperate : [u'habits'] -refrain from : [u'all'] -be rather : [u'a', u'more'] -sight at : [u'the'] -be unknown : [u'to'] -" and : [u'I'] -sight as : [u'that'] -frantically, : [u'and'] -shawl round : [u'me'] -is dazed : [u'with'] -last I : [u'gave'] -service and : [u'make'] -remember your : [u'promise'] -left behind : [u','] -floor of : [u'his', u'the', u'a'] -employer had : [u'an'] -keep people : [u'out'] -Lost, : [u'on'] -tell what : [u'indirect', u'it', u'I'] -were thick : [u'with'] -your household : [u','] -west," : [u'remarked'] -the statement : [u'which'] -inst., : [u'abstracted', u'Mr'] -abide by : [u'all'] -' American : [u'Encyclopaedia'] -shut himself : [u'up'] -known for : [u'many', u'some'] -scattered drops : [u'were'] -last few : [u'days', u'nights', u'years'] -him raise : [u'his'] -suffer. : [u'I'] -not you : [u'who'] -Monday, : [u'at', u'the', u'very'] -a joke : [u'at'] -stronger if : [u'I'] -typewritten he : [u'always'] -, escaped : [u'from'] -exactly my : [u'own'] -imagine from : [u'what'] -been arranged : [u",'"] -drank a : [u'great'] -within hail : [u".'"] -is waiting : [u'."', u'now'] -position very : [u'clear'] -was away : [u',', u'from'] -stock mixed : [u'with'] -have!-- : [u'a'] -should desire : [u'to'] -, motionless : [u','] -at home : [u'.', u'man', u'I', u'and', u'."', u'in', u','] -shaven, : [u'and', u'with'] -made you : [u'promise', u',"'] -eyes were : [u'as', u'weak', u'protruding', u'fixed', u'flushed', u'just'] -be associated : [u'in', u'with'] -salary beforehand : [u','] -had grown : [u'up'] -to condescend : [u'to'] -also of : [u'the'] -s country : [u'.'] -instantly strike : [u'him'] -his exercise : [u','] -s trouble : [u','] -States without : [u'permission', u'paying'] -passed," : [u'said'] -ever know : [u'of'] -account in : [u'any'] -small landing : [u'places'] -sent up : [u'a'] -wheeler drove : [u'up'] -it come : [u'out'] -is singularly : [u'lucid'] -. ' Remarkable : [u'as'] -man sat : [u'huddled', u'for'] -prisoner among : [u'the'] -details are : [u'of'] -so carried : [u'away'] -ship reaches : [u'Savannah'] -man could : [u'invent', u'not', u'afford', u'be'] -and financial : [u'support'] -client is : [u'to', u'a', u'."'] -along with : [u'a'] -will become : [u'you'] -Tired looking : [u'or'] -so large : [u'a'] -stooping over : [u'a'] -too busy : [u'to'] -logical synthesis : [u'which'] -, provided : [u'only', u'always'] -waiter, : [u'opening'] -wore rather : [u'baggy'] -waiter. : ['PP'] -shadow wavering : [u'down'] -not inconvenience : [u'you'] -page from : [u'some'] -the medical : [u'profession'] -peculiar about : [u'that'] -in mine : [u','] -drive?" : [u'gasped'] -untimely death : [u'of'] -will take : [u'some', u'the', u'it', u'you', u'wiser'] -farther end : [u'was', u'.'] -scenery perfect : [u'.'] -were simply : [u'dirty'] -three away : [u'from'] -Yours faithfully : [u','] -handle and : [u'entered'] -decoyed him : [u'down'] -manor house : [u'is'] -dead man : [u',', u"'"] -rather a : [u'trite', u'waste', u'questionable'] -Holmes by : [u'either'] -sex. : [u'It'] -defective work : [u'may'] -over them : [u', "', u'."', u'.'] -balanced mind : [u'.'] -expected obedience : [u'on'] -s purse : [u'and'] -Insensibly one : [u'begins'] -laughing in : [u'a'] -set, : [u'bile', u'but'] -was afraid : [u'that', u'of'] -had much : [u'ado'] -yourself too : [u'closely'] -the opening : [u'part', u','] -hands out : [u'into'] -sound," : [u'said'] -coming of : [u'its', u'the'] -Cross. : [u'But'] -feet down : [u'.'] -Cross, : [u'and'] -singular case : [u',"', u'of'] -determine its : [u'exact'] -pass over : [u'his'] -reasons for : [u'satisfaction', u'their'] -lens not : [u'only'] -and knew : [u'all'] -and set : [u'the'] -as gospel : [u','] -practice), : [u'when'] -copy out : [u'the'] -from among : [u'the', u'his'] -north and : [u'west'] -Pray do : [u'so', u','] -Undoubtedly so : [u'.'] -and see : [u'him', u'what'] -lining of : [u'this'] -his leave : [u',', u'.', u'to'] -up in : [u'my', u'Serpentine', u'his', u'despair', u'hope', u'surprise', u'a', u'the', u'your', u'front', u'me'] -a wish : [u'.'] -beneath were : [u'the'] -proceedings from : [u'my'] -its object : [u'might'] -than to : [u'any', u'us', u'his', u'get', u'be'] -principal office : [u'is'] -intelligence by : [u'telling'] -this article : [u'?"', u','] -, proceeded : [u'to'] -twice at : [u'such'] -for what : [u'right', u'she', u'you', u'purpose'] -slipped his : [u'key'] -coming downstairs : [u','] -The sundial : [u'in'] -You seem : [u'most', u'to'] -pink is : [u'quite'] -me deeply : [u'."'] -by will : [u','] -all copies : [u'of'] -chin was : [u'cocked'] -or shirt : [u'.'] -Then Lord : [u'St'] -Major Freebody : [u','] -So much : [u'for', u'so', u'is'] -the definite : [u'conception'] -unnatural about : [u'the'] -eyes open : [u'.', u'in'] -looking upon : [u'any'] -who probably : [u'know'] -but is : [u'not', u'covered', u'barred', u'also'] -will first : [u'make'] -but it : [u'is', u'was', u'hurts', u'could', u"'", u'may', u'has', u'had', u'bore', u'never'] -might play : [u'a'] -derbies. : ['PP'] -who appears : [u'to'] -library chair : [u'. "'] -but horribly : [u'mangled'] -, can : [u'be'] -Temple. : [u'See', u'It'] -he shows : [u'quite'] -but if : [u'you', u'it', u'he'] -going out : [u'.', u'now'] -glancing out : [u'of'] -but in : [u'other', u'a'] -from each : [u'other'] -wrapped in : [u'the'] -red, : [u'or', u'jutting', u'spongy', u'his'] -turning the : [u'key'] -time for : [u'observation', u'me', u'despair', u'breakfast', u'your', u'the'] -the note : [u'itself', u'is', u'written', u',', u'into'] -sharp clang : [u'of'] -a list : [u'of'] -us. : [u'The', u'We', 'PP', u'Within', u'My', u'That', u'There', u'And', u'James', u'If', u'Beyond', u'Just', u'I', u'He', u'Who', u'Well', u'She'] -struck by : [u'the'] -us, : [u'as', u'and', u'I', u'placed', u'so', u'me', u'she', u'in', u'while', u'spouting', u'but'] -with many : [u'minor'] -may say : [u'before', u'to', u'on', u'that'] -milk which : [u'stood', u'we'] -black shadows : [u'there'] -tax treatment : [u'of'] -of foppishness : [u','] -Three of : [u'our'] -us; : [u'and'] -wish me : [u'to'] -the fascinating : [u'daughter'] -you mean : [u'that', u'?', u'?"', u'the'] -and dragged : [u'with'] -could beat : [u'the'] -could bear : [u'.'] -half, : [u'two'] -mask, : [u'which'] -mask. : ['PP'] -out before : [u'the'] -Ballarat. : ['PP'] -really two : [u'days'] -Just hold : [u'out'] -had dropped : [u'asleep', u'in'] -a packet : [u'.'] -gone more : [u'than'] -vengeance upon : [u'me'] -admit that : [u'the'] -Yet I : [u'have', u'would', u'could'] -more striking : [u'in'] -the road : [u',', u'.', u'to', u'stood', u'was', u'and', u'there', u'."'] -like untamed : [u'beasts'] -old homesteads : [u'?"'] -me how : [u'to', u'I', u'narrow'] -dead in : [u'the'] -tangled clue : [u'.'] -the fourteenth : [u','] -brighter thing : [u'than'] -and probably : [u'never'] -a realistic : [u'effect'] -under my : [u'ulster', u'own', u'disguise', u'breath', u'roof'] -marks are : [u'perfectly'] -yourself together : [u'!"'] -The driver : [u'looked'] -a dying : [u'reference', u'man', u'and'] -employment wait : [u'in'] -ex Confederate : [u'soldiers'] -watched us : [u'with'] -prompt over : [u'this'] -country folk : [u','] -honour my : [u'head'] -THE BOSCOMBE : [u'VALLEY'] -honour me : [u'with'] -He wouldn : [u"'"] -would carry : [u'my', u'me'] -sticking out : [u'of'] -things and : [u'came', u'made'] -had best : [u'inspect', u'escort'] -much deeper : [u'than'] -affection. : ['PP'] -his broad : [u'shoulders'] -Donations are : [u'accepted'] -clad in : [u'some', u'a'] -less and : [u'less'] -time she : [u'ran', u'has'] -unfortunately I : [u'had'] -, flushing : [u'up'] -business and : [u'to'] -means you : [u'used'] -and putting : [u'his'] -where to : [u'find', u'look', u'get'] -best man : [u'.'] -to pack : [u'away'] -his tie : [u'under'] -Eton and : [u'Oxford'] -but could : [u'get'] -heavily, : [u'but'] -heavily. : [u'He'] -been confined : [u'to'] -again before : [u'evening'] -the texture : [u'of'] -and sticks : [u'.'] -POSSIBILITY OF : [u'SUCH'] -day play : [u'a'] -t forgive : [u'me'] -I will : [u'tell', u'make', u'be', u'rejoin', u'not', u'get', u'still', u'follow', u'succeed', u'show', u'explain', u',', u'go', u'keep', u'confine', u'just', u'fly', u'leave', u'do', u'sit', u'take', u'read', u'call', u'feel', u'now', u'put', u'if', u'."', u'pay', u'accept', u'try', u'soon'] -that every : [u'one', u'vestige'] -manageress had : [u'sat'] -France upon : [u'the'] -look. : ['PP'] -look, : [u'and', u'as'] -Arthur blinds : [u'you'] -unfortunate. : [u'Your'] -long fight : [u'between'] -even his : [u'own'] -would then : [u'never'] -lining. : [u'If', u'The'] -among us : [u'.'] -is light : [u'red'] -assistant and : [u'found'] -a flag : [u'which'] -; that : [u'is'] -ship. : ['PP', u'And', u'It', u'I', u'The', u'Well'] -roof than : [u'in'] -statement, : [u'for'] -walking into : [u'Hyde', u'the'] -dramatic manner : [u'that'] -ship' : [u's'] -the brazier : [u'I'] -very items : [u'which'] -minutes he : [u'said'] -and whether : [u'he'] -in explaining : [u". '"] -strong frost : [u'to'] -just balancing : [u'whether'] -My heart : [u'had', u'turned', u'is'] -gone he : [u'realised'] -The Adventure : [u'of'] -feet." : [u'He'] -silence appears : [u'to'] -their accounts : [u'are'] -spies in : [u'an'] -just give : [u'me'] -absolute fools : [u'in'] -the gems : [u';', u'are', u',', u'?"'] -about McCarthy : [u'."'] -assured. : [u'He'] -you real : [u'bad'] -sticking up : [u'a'] -less bold : [u'or'] -affaire de : [u'coeur'] -be realised : [u','] -of tattoo : [u'marks'] -double carriage : [u'sweep'] -searching his : [u'pockets'] -tailed ones : [u','] -to confess : [u',', u'that'] -the signal : [u'to', u'I'] -away after : [u'theories'] -Bohemian habits : [u'so'] -stood glaring : [u'with'] -shoulders was : [u'lined'] -wanted he : [u'must'] -fly leaf : [u'of'] -assure us : [u'that'] -smile in : [u'Holmes'] -shivering. : ['PP'] -enough!" : [u'said'] -after nine : [u'now'] -more dreadful : [u'record'] -his hair : [u'had', u',', u'is', u'the', u'like', u'seemed'] -sharp sound : [u'of'] -silence Holmes : [u"'"] -Stoner nor : [u'myself'] -clearly with : [u'the'] -one man : [u'knew'] -, do : [u'tell', u'you', u'not', u',', u'take', u'copyright'] -Though clear : [u'of'] -common experience : [u'among'] -surrounded myself : [u'with'] -end in : [u'my', u'such'] -Remember, : [u'Watson'] -Morcar the : [u'valuable'] -would apply : [u".'"] -borne into : [u'Briony'] -managed to : [u'find', u'get', u'pick'] -look sleepily : [u'from'] -to go : [u'into', u',', u'to', u'home', u'.', u'anywhere', u'over', u'about', u'back', u'down', u'out', u'upon', u'and', u'in', u'right', u'through', u'for', u'round', u'upstairs', u'away'] -The Boscombe : [u'Valley', u'Pool'] -to Horsham : [u','] -commander who : [u'had'] -missing gentleman : [u"'"] -stone pavement : [u'.'] -to fulfil : [u'the'] -revealing what : [u'they'] -to send : [u'them', u'father', u'a', u'me'] -seat of : [u'the', u'it'] -swear it : [u'.', u'on'] -off by : [u'now', u'main'] -, shall : [u'be', u'I'] -hanging lamp : [u'.'] -colony as : [u'the'] -proved, : [u'upon'] -, standing : [u'at', u'upon', u'back'] -proved. : [u'I'] -Chief Executive : [u'and'] -of London : [u'.', u'should', u'."', u'Bridge', u'could', u'to'] -of your : [u'left', u'reasoning', u'order', u'habits', u'health', u'successes', u'own', u'goose', u'jacket', u'friend', u'stepfather', u'window', u'valuable', u'profession', u'existence', u'newspaper', u'wife', u'bed', u'troubles', u'statements', u'young', u'hair', u'country'] -a tortured : [u'child'] -has attracted : [u'admirers'] -drawn my : [u'circle', u'attention'] -centred interests : [u'which'] -He stretched : [u'out'] -aisle like : [u'any'] -Angel could : [u'not'] -deadly still : [u'.'] -comfort too : [u'soon'] -s blue : [u'carbuncle'] -fee as : [u'set'] -the guilt : [u'of'] -of amusement : [u','] -I very : [u'clearly', u'much'] -too serious : [u'for'] -the younger : [u'brother'] -to submit : [u'the'] -am giving : [u'you'] -implicates the : [u'great'] -the flap : [u'he', u'has'] -gipsies who : [u'are'] -then rubbed : [u'it'] -is Francis : [u'Prosper'] -net), : [u'you'] -was quiet : [u'when'] -he carried : [u'a'] -here," : [u'he', u'said'] -this order : [u'might'] -hundred miles : [u'off'] -took them : [u'?"'] -he pushed : [u'and'] -our shoulders : [u'at'] -pays it : [u'over'] -pennies. : [u'It'] -pennies, : [u'varied'] -King is : [u'capable'] -no feeling : [u'of'] -guide you : [u'in'] -comes. : [u'Sit'] -details and : [u'so'] -comes, : [u'if'] -drawn into : [u'two'] -comes the : [u'country'] -" Evidently : [u',"'] -yet he : [u'sat', u'would'] -equalled. : [u'It'] -this sum : [u"?'"] -rule in : [u'the'] -wrong side : [u'!"'] -a shake : [u'down'] -, dangling : [u'his'] -am loved : [u'by'] -am likely : [u'to'] -, fitted : [u'with'] -her education : [u'has'] -whose graceful : [u'figure'] -. Gone : [u'was'] -My guide : [u'stopped'] -should keep : [u'his'] -talked it : [u'over'] -thrust them : [u'into'] -. How : [u'do', u'he', u'did', u'was', u'you', u'came', u'shall', u'long', u'quiet', u'could', u'our', u'cruelly'] -, heavy : [u'lidded'] -eye for : [u'colour'] -must at : [u'once'] -dozen intimate : [u'friends'] -them sometimes : [u'for'] -Fairbank was : [u'a'] -anything since : [u'then'] -Miss Adler : [u','] -piling fact : [u'upon'] -where they : [u'had', u'are'] -scrawled upon : [u'one'] -power lenses : [u','] -for doubt : [u'whether'] -Hampshire. : [u'Charming'] -American slang : [u'is'] -his father : [u'.', u'dead', u',', u'having', u"'", u'had', u'did', u'on', u'should'] -Hudson came : [u'.'] -Openshaw shall : [u'not'] -right wrist : [u'could'] -responded his : [u'Lordship'] -no. : [u'No', u'This', 'PP'] -break their : [u'hearts'] -of attention : [u'.'] -touched him : [u'upon'] -corner which : [u'I', u'corresponds'] -evidently in : [u'excellent'] -is your : [u'commonplace', u'father', u'husband', u'hat', u'only', u'own'] -spoiled and : [u'so'] -Great heavens : [u'!"'] -drunk himself : [u'into'] -the disappearing : [u'bridegroom'] -best plans : [u'of'] -tall and : [u'strong'] -s cleaver : [u'in'] -square house : [u'of'] -claws of : [u'a'] -as narratives : [u','] -The doctors : [u'examined'] -left to : [u'right', u'a'] -summer of : [u"'"] -in typewriting : [u'his'] -& Matheson : [u','] -you possibly : [u'find'] -make their : [u'attempt', u'position'] -you Jem : [u"'"] -must remain : [u'firm'] -shining like : [u'burnished'] -make no : [u'attempt', u'allowance', u'apology', u'change'] -find them : [u'."', u'.', u'?"', u','] -Where were : [u'we'] -an advocate : [u'here'] -here speaks : [u'of'] -tearing it : [u'to'] -for to : [u'morrow'] -long for : [u'news'] -my share : [u'of'] -League offices : [u'that'] -before I : [u'was', u'knew', u'leave', u'returned', u'finish', u'came', u'decide', u'speak', u'went', u'saw', u'go', u'ever', u'get', u'quite'] -buried in : [u'thought', u'his', u'the', u'Rucastle'] -as inscrutable : [u'as'] -resist. : ['PP'] -partly caved : [u'in'] -remorseless clanking : [u'of'] -coarse one : [u'and'] -of marriage : [u'.'] -no; : [u'it', u'the', u'I'] -weight would : [u'come'] -Street by : [u'the'] -fail to : [u'see', u'follow'] -fine.' : [u'He'] -sewing machine : [u','] -age and : [u'position'] -succeed me : [u'in'] -the stage : [u','] -thirty six : [u'ships', u'into', u'stones'] -before a : [u'low', u'man'] -the schoolmaster : [u'.'] -his extraordinary : [u'powers'] -his notice : [u'that'] -Bristol for : [u'it'] -of are : [u'to'] -specimen of : [u'the'] -you closely : [u',"'] -crime may : [u'be'] -hours before : [u','] -before there : [u'rushed'] -a frowning : [u'brow'] -broken the : [u'window', u'elastic'] -furniture was : [u'scattered'] -a builder : [u'must'] -performer but : [u'a'] -father," : [u'said'] -eyes caught : [u'the'] -to live : [u'happily', u'at', u'with', u'in'] -Crowder, : [u'a', u'the'] -fleshless man : [u'.'] -wager. : [u'Well'] -devil' : [u's'] -to reply : [u','] -and stared : [u'from', u'in', u'into', u'down'] -me say : [u'to'] -, Lord : [u'Backwater', u'Eustace', u'St'] -beside the : [u'fire', u'pool', u'dead', u'bed', u'little', u'door', u'mantelpiece', u'light', u'question'] -what its : [u'object'] -he brought : [u'her'] -woman afterwards : [u'?"'] -looking building : [u','] -welcome for : [u'my'] -to state : [u'your'] -cloudless. : [u'At'] -to guide : [u'myself', u'us'] -We know : [u'something'] -sensible girl : [u','] -eight feet : [u'round'] -the habit : [u'of'] -felt all : [u'the'] -To take : [u'the'] -face. " : [u'You', u'I'] -you have : [u'put', u'been', u'a', u'frequently', u'seen', u'hopes', u'tattooed', u'to', u'told', u'any', u'gained', u'ever', u'divined', u'done', u'got', u'detected', u'no', u'missed', u'hit', u'come', u'read', u'drawn', u'saved', u'given', u'placed', u'shown', u'described', u'thrown', u'favoured', u'had', u'four', u'as', u'mentioned', u'just', u'five', u'not', u'the', u'already', u'felt', u'formed', u'only', u'followed', u'heard', u'every', u'recovered', u'stolen', u'chosen', u'learned', u'excluded', u'so', u'erred', u'why', u'reconsidered', u'yourself', u'certainly', u'removed'] -little after : [u'eight', u'half'] -and authoritative : [u'tap'] -I wish : [u'she', u'to', u'you', u'I'] -( www : [u'.'] -s end : [u'where', u'.', u'as'] -my attempt : [u'to'] -gaunt woman : [u'entered'] -Grand Duke : [u'of'] -swaying to : [u'and'] -but after : [u'thinking', u'that', u'being', u'the', u'we'] -Ryder quivered : [u'with'] -no friends : [u'of', u'at'] -her photograph : [u',', u'?"'] -traffic of : [u'the'] -note was : [u'undated'] -spoken out : [u'if'] -this precaution : [u'against'] -was careful : [u'to'] -analytical skill : [u','] -this object : [u','] -whether they : [u'seem'] -centre one : [u'to'] -] First : [u'Posted'] -agricultural, : [u'having'] -sticks. : [u'Holmes'] -husband is : [u'alive'] -sticks, : [u'gathering'] -something happening : [u'on'] -geese at : [u'7s'] -cool blood : [u'I'] -was surrounded : [u'by'] -poor hair : [u'to'] -their conduct : [u'.'] -me what : [u'had', u'it', u'was', u'he', u'I'] -Gutenberg is : [u'a'] -and deportment : [u'of'] -glad now : [u'to'] -He saw : [u'her'] -The stage : [u'lost'] -secret,' : [u'said'] -answered that : [u'I', u'the', u'it'] -long residence : [u'in'] -most useful : [u'material'] -of either : [u'Mr'] -, led : [u'him'] -a member : [u'of', u'."'] -so late : [u',"'] -However innocent : [u'he'] -missed it : [u'for'] -, let : [u'me', u'us', u'the'] -head with : [u'a'] -is childish : [u'.'] -Running up : [u','] -He pushed : [u'past'] -failing had : [u'ceased'] -almost inexplicable : [u'.'] -his wheel : [u','] -deep black : [u'shade'] -the woods : [u'picking', u'to', u'which', u'grew', u'all'] -acting in : [u'her'] -guineas apiece : [u'.'] -to Sir : [u'George'] -compress it : [u'.'] -balancing the : [u'matter'] -in weak : [u'health'] -would hurt : [u'a'] -their order : [u'of'] -you lying : [u'fainting'] -thrown out : [u'on'] -were marks : [u'of'] -a quite : [u'epicurean', u'exceptional'] -in him : [u'!"', u'."', u'.', u','] -only be : [u'away', u'approached', u'conjectured', u'a', u'determined', u'used'] -only by : [u'the', u'trying', u'his', u'paying'] -in his : [u'singular', u'hand', u'armchair', u'power', u'inquiry', u'masterly', u'chair', u'head', u'ways', u'hair', u'consequential', u'profession', u'pocket', u'house', u'lodgings', u'favour', u'face', u'hands', u'pockets', u'innocence', u'interest', u'remark', u'evidence', u'manners', u'concluding', u'flight', u'long', u'mouth', u'weary', u'conjecture', u'bearing', u'way', u'privacy', u'trembling', u'room', u'coat', u'work', u'haste', u'eagerness', u'tattered', u'bed', u'possession', u'rooms', u'excitement', u'professional', u'anger', u'dressing', u'affairs', u'agitation', u'Baker', u'quietly', u'big', u'direction', u'grey', u'right', u'eye', u'triumph', u'conclusions', u'eyes', u'shirt', u'nature', u'bare', u'searching', u'dog', u'bluff'] -silhouette against : [u'the'] -. ' There : [u'is', u'are'] -They got : [u'4700'] -occurrences, : [u'perhaps'] -s about : [u'Isa'] -an opium : [u'den', u'pipe'] -b) : [u'alteration'] -the hinges : [u','] -may imagine : [u'what', u','] -you solved : [u'it'] -hand upon : [u'this', u'him', u'the', u'my'] -a map : [u'of'] -door at : [u'the'] -unfailingly come : [u'upon'] -sentence set : [u'forth'] -strange story : [u'which'] -door as : [u'we'] -persuade me : [u'to'] -little disturbed : [u", '"] -justice to : [u'my'] -of duty : [u'a'] -after we : [u'had', u'returned'] -a square : [u'pierced', u',', u'of'] -rushed upstairs : [u'instantly', u','] -the conditions : [u'if'] -serve you : [u'best', u'."', u'!"'] -rooms. : [u'Catherine', 'PP', u'It'] -invisible to : [u'me'] -rooms, : [u'we', u'so', u'although', u'and'] -necktie. : ['PP'] -. Beside : [u'the', u'this'] -go where : [u'I'] -used always : [u'to'] -sudden blow : [u'does'] -sorrow comes : [u'close'] -lose, : [u'Watson'] -a royalty : [u'fee'] -lose. : [u'If'] -This terrible : [u'secret'] -coronet. : ['PP', u'We', u'His'] -good humoured : [u'face'] -hat pulled : [u'down'] -bridal party : [u','] -my chair : [u'. "', u',', u'and', u'a'] -said Inspector : [u'Bradstreet'] -quite settled : [u',"'] -is unknown : [u'.'] -best use : [u'of'] -spare Alice : [u'the'] -about seven : [u'years'] -discovering Mr : [u'.'] -commit you : [u'to'] -reasonable. : [u'I'] -Holmes scribbled : [u'a'] -your thinking : [u'so'] -heelless Turkish : [u'slippers'] -just heard : [u'the'] -brilliant reasoning : [u'power', u','] -will remain : [u'freely'] -be still : [u'.'] -is fitted : [u'neither'] -coat to : [u'his'] -lived generally : [u'in'] -be nearer : [u'forty', u'the'] -would occur : [u'to'] -go asleep : [u';'] -not believe : [u'me'] -. Thank : [u'you'] -provincial town : [u'.'] -shaken to : [u'go'] -," suggested : [u'Holmes'] -dear Mr : [u'.'] -smiling. " : [u'The', u'And'] -here who : [u'may'] -police and : [u'everyone', u'put'] -Pray, : [u'lie'] -" The : [u'man', u'name', u'paper', u'circumstances', u'facts', u'fish', u'first', u'knees', u'law', u'London', u'two', u'Coroner', u'doctor', u'glass', u'murder', u'grass', u'gentleman', u'impression', u'letter', u'papers', u'leader', u"'", u'Cedars', u'third', u'police', u'decline', u'further', u'goose', u'landlord', u'fire', u'game', u'family', u'windows', u'doctors', u'matter', u'rest', u'lady', u'least', u'band', u'newcomers', u'instant', u'vanishing', u'King', u'young', u'right', u'best', u'next', u'case', u'gas', u'stable', u'end', u'manageress', u'dress', u'warning'] -form. : [u'Is', u'However', u'Any'] -to sit : [u'down', u'here', u','] -stone down : [u'its'] -a hotel : [u'bill'] -is far : [u'better', u'from'] -schoolmaster. : [u'She'] -as far : [u'as', u'from'] -have advanced : [u'large'] -This matter : [u','] -remained your : [u'niece'] -No servant : [u'would'] -an ivory : [u'miniature'] -my future : [u','] -you forfeit : [u'your'] -devoted both : [u'to'] -deserted me : [u'."'] -might seem : [u'trivial'] -springing to : [u'his'] -a lumber : [u'room'] -How very : [u'absurd', u'impertinent'] -Streatham together : [u','] -the gentleman : [u"'", u'thanking', u'at', u'of', u'with', u'in', u'himself'] -this with : [u'me'] -tm name : [u'associated'] -general appearance : [u'gave'] -will just : [u'show', u'put'] -friend of : [u'McCarthy', u'yours', u'his', u'mine', u'Arthur', u'hers'] -pay our : [u'debts'] -or 1870 : [u'he'] -, try : [u'to'] -limp and : [u'helpless'] -bow window : [u'looking'] -police authorities : [u'that'] -for hope : [u'as'] -hear from : [u'her'] -recollect in : [u'connection'] -Tottering and : [u'shaking'] -mine; : [u'not'] -everybody who : [u'is'] -strange affair : [u'.'] -new premises : [u'were'] -an understanding : [u'between'] -mine. : [u'He', u'And', u'I', u'Naturally'] -and ten : [u'last', u'I'] -mine, : [u'and', u'where', u'I', u'but'] -inner apartment : [u'."'] -and wriggled : [u'in'] -extraordinary performance : [u'could'] -Hatty Doran : [u',', u'?"'] -The total : [u'income'] -she can : [u'lay', u'come', u'get'] -have very : [u'little'] -a bank : [u'director'] -a band : [u'a', u'of', u','] -shan' : [u't'] -like birds : [u'to'] -! Let : [u'me'] -any man : [u'who', u'that', u'succeeded'] -a morose : [u'and'] -foot had : [u'been'] -distinction is : [u'clear'] -peculiar action : [u'in'] -to Hampshire : [u'quite'] -in good : [u'style', u'spirits'] -, learned : [u'all', u'that'] -in yours : [u'also', u'."'] -with our : [u'neighbours', u'whims'] -He drank : [u'a', u'more'] -could catch : [u'glimpses'] -do without : [u'her'] -legged, : [u'with'] -, melon : [u'seeds'] -, transcribe : [u'and'] -had almost : [u'come', u'overcome'] -: 35 : [u'walking'] -preserve it : [u'.'] -pikestaff, : [u'and'] -his ear : [u','] -her manner : [u'had'] -really strikes : [u'very'] -earning my : [u'fifty'] -shut the : [u'business', u'door'] -that threshold : [u'again'] -hands into : [u'his', u'the'] -precaution.' : [u'With'] -and hope : [u'.'] -I want : [u'to', u'you', u'the', u',"'] -immediately implicated : [u'in'] -a teetotaler : [u','] -one night : [u'."', u'.', u'just'] -How about : [u'poison'] -came from : [u'Dundee', u'there', u'the', u'Mr', u'perhaps', u'California', u'somewhere', u'within'] -similar circumstances : [u'.'] -this' : [u'Cooee'] -obvious as : [u'it'] -open market : [u'?'] -without paying : [u'copyright', u'any'] -this, : [u'you', u'Mr', u'and', u'I', u'then', u'but', u'we', u'of'] -For additional : [u'contact'] -this. : [u'Men', u'Could', u'You', 'PP', u'I', u'Pray'] -brother and : [u'sister'] -headstrong by : [u'nature'] -send you : [u'a'] -Except for : [u'the'] -doubt of : [u'it'] -this: : [u"'"] -window hand : [u'in'] -however," : [u'said'] -this? : [u'Ha'] -upward, : [u'with', u'and'] -and and : [u'well'] -evil reputation : [u'among'] -afterwards transpired : [u','] -been conveyed : [u'from'] -freely available : [u'for'] -The crudest : [u'of'] -dreadfully convulsed : [u'.'] -person to : [u'resolve', u'the'] -his master : [u'had'] -solve so : [u'simple'] -and any : [u'letters', u'others', u'additional', u'other', u'volunteers'] -vows to : [u'her'] -fainted when : [u'it', u'she'] -derive from : [u''] -this points : [u'.'] -association with : [u'Holmes'] -I inquired : [u'of'] -strolled up : [u'and'] -opened a : [u'barred', u'locket', u'pocket'] -And on : [u'what', u'Monday', u'the'] -made myself : [u'clear'] -Gutenberg Web : [u'pages'] -last. " : [u'It', u'How', u'There'] -that light : [u'among'] -a speedy : [u'clearing'] -rooms smelling : [u'of'] -Who would : [u'think', u'associate', u'have'] -apiece an : [u'excessive'] -he snarled : [u',', u'.'] -my Baker : [u'Street'] -can have : [u'some', u'the', u'no'] -wore at : [u'the'] -to every : [u'man'] -the Countess : [u'of', u'to', u'was', u','] -gathered that : [u'they'] -was less : [u'likely', u'inclined'] -your wife : [u'to', u'."', u'allows', u"'", u'do', u'hear'] -Museum we : [u'are'] -words which : [u'were'] -evident a : [u'thing'] -At that : [u'hour'] -from perhaps : [u'from'] -had your : [u'chance', u'address', u'revenge'] -fugitives disappeared : [u','] -party with : [u'the'] -mine are : [u','] -Melbourne, : [u'and'] -Bradstreet. " : [u'If', u'Well'] -rare. : [u'Therefore'] -the mouth : [u'of', u','] -struggled, : [u'and'] -all quarters : [u'received'] -solid. : ['PP'] -fairly long : [u'list'] -discloses a : [u'large'] -warmed my : [u'hands'] -the sensational : [u','] -little game : [u','] -fight against : [u'a'] -head which : [u'showed', u'is'] -have talked : [u'so'] -kept alive : [u'solely'] -screaming, : [u'against'] -had time : [u'to'] -for Christmas : [u','] -their profession : [u'.'] -and imposing : [u','] -?' Well : [u','] -but sometimes : [u'he'] -the orange : [u'pips'] -is posted : [u'with', u'at'] -on science : [u','] -passing his : [u'hand'] -side aisle : [u'like'] -Valley estate : [u','] -her sweetheart : [u','] -kitchen window : [u'?"'] -We feed : [u'him'] -may meet : [u'any'] -gentleman whose : [u'name', u'eccentric'] -prank if : [u'it'] -advice. : [u'Light', 'PP', u'I'] -advice, : [u'but', u'my', u'I'] -such elaborate : [u'preparations'] -own statement : [u'of'] -gasogene in : [u'the'] -no clue : [u'in'] -a monotonous : [u'occupation'] -t sleep : [u'a'] -Imitated. : ['PP'] -biographies I : [u'was'] -meadow. : [u'Lestrade'] -am right : [u'.'] -observing the : [u'hand', u'dint'] -chair suggested : [u'that'] -inquired your : [u'way'] -not intruding : [u'.'] -hour there : [u'arrived'] -shall probably : [u'return', u'wish'] -his skin : [u'the'] -Well. : ['PP'] -Found at : [u'the'] -recesses of : [u'his'] -your chance : [u'."'] -shelves. : [u'"'] -Sussex, : [u'near'] -your argument : [u',"'] -myself without : [u'a'] -sure I : [u'beg'] -his bird : [u'.'] -the former : [u','] -concealment about : [u'a'] -communication with : [u'the'] -& Hankey : [u"'"] -offering to : [u'his'] -shelter and : [u'let'] -four hours : [u'a'] -and favour : [u'me'] -to love : [u'for', u'him', u'.'] -But they : [u'listened'] -they may : [u'do', u'take', u'be', u'meet'] -sure a : [u'precursor'] -I swear : [u'it'] -in April : [u'in'] -an exact : [u'knowledge'] -an opinion : [u'upon', u'from', u'."', u'.', u',"', u'as'] -successes. : ['PP'] -be weary : [u','] -Then suddenly : [u'he', u'realising', u'another'] -professional acquaintance : [u','] -my excuses : [u','] -than she : [u'had'] -later a : [u'clanging'] -may contain : [u'"'] -any burglar : [u'could'] -America with : [u'their', u'him'] -seize the : [u'coat'] -business with : [u'the', u'an'] -The puny : [u'plot'] -circumstances the : [u'young'] -Italian or : [u'French'] -later I : [u'heard', u'happened'] -, " when : [u'he', u'I'] -acquired was : [u'too'] -Her light : [u'grey'] -already heard : [u'from'] -you choose : [u'to'] -point," : [u'remarked'] -small unpleasantness : [u'.'] -not make : [u'clear'] -been woven : [u'round'] -take him : [u'into'] -papers for : [u'a'] -silence before : [u','] -been broken : [u'into', u','] -find him : [u"?'", u'in'] -wrapped cravats : [u'about'] -take his : [u'exercise'] -she complained : [u'of'] -not trust : [u'him'] -anywhere near : [u'?'] -knew all : [u'about'] -my lips : [u'at', u'.'] -plunge, : [u'as'] -in thinking : [u'that'] -; we : [u'shall', u'don'] -This he : [u'unpacked', u'opened'] -walk took : [u'us'] -either you : [u'or'] -strength causing : [u'injuries'] -rising from : [u'the', u'his'] -an Englishman : [u','] -in intense : [u'excitement'] -. Petrified : [u'with'] -did tell : [u'me'] -down suddenly : [u'upon'] -opponent. : [u'So'] -quite essential : [u'absolute', u",'"] -public manner : [u'."'] -ran to : [u'her'] -all paragraphs : [u'concerning'] -the shutter : [u'open', u'half'] -the expense : [u'of'] -broke the : [u'sad', u'seal'] -employ of : [u'Mr'] -and plain : [u','] -morning of : [u'the', u'last', u'my'] -imploring me : [u'to'] -open when : [u'I'] -desk, : [u'took'] -and common : [u'transition'] -innocence, : [u'and'] -supply. : ['PP'] -desk. : ['PP'] -Stoper was : [u'not'] -parsonage, : [u'that'] -wonderfully silent : [u'house'] -laughter, : [u'I', u'whenever'] -minutes dressed : [u'as'] -clock," : [u'it'] -this hour : [u'of'] -. " Who : [u'would'] -type, : [u'leaves'] -Eyford for : [u'its'] -and often : [u'twice'] -affair now : [u'."'] -key, : [u'which'] -rubber bands : [u'which'] -. Thus : [u','] -.' Ha : [u','] -the fly : [u'leaf'] -.' He : [u'took', u'stepped', u'bowed', u'suddenly', u'drew', u'rose', u'looked', u"'", u'opened'] -cannot confide : [u'it'] -bore the : [u'name'] -around, : [u'I'] -, sometimes : [u'stop', u'losing', u'finding', u'that'] -is well : [u'.', u'thought', u'with'] -shown extraordinary : [u'energy'] -cigarette. : ['PP'] -cigarette, : [u'and'] -a red : [u'headed', u'head', u'covered', u'face'] -think me : [u'mad', u'rude'] -bridegroom), : [u'and'] -the clues : [u'which'] -they hardly : [u'found'] -the simpler : [u','] -On your : [u'arm'] -! God : [u'help'] -Majesty would : [u'condescend'] -your statement : [u'very', u'is', u'."'] -going mad : [u'.'] -heard something : [u','] -transverse bar : [u'.'] -whatever her : [u'sins'] -terms will : [u'be'] -be thrown : [u'at'] -who assaulted : [u'me'] -Your cases : [u'have'] -beautiful creature : [u'against'] -McCarthys quarrelling : [u'near'] -knew at : [u'once', u'what'] -done their : [u'work'] -friend Dr : [u'.'] -half feet : [u'of'] -Unless you : [u'have'] -a sad : [u','] -school, : [u'what'] -an agent : [u'without', u'it'] -McCarthy must : [u'be'] -possibility of : [u'his', u'something'] -s house : [u'.', u'?"', u'that', u','] -indeed happy : [u'."'] -coquettish Duchess : [u'of'] -is more : [u'likely', u'adapted', u'than', u'deserted', u'interesting'] -to issue : [u'from'] -of fowls : [u','] -this Captain : [u'Calhoun'] -private park : [u'of'] -if this : [u'is', u'were'] -me any : [u'more'] -a stop : [u'on'] -bank can : [u'thank'] -those vows : [u'of'] -time after : [u'listening'] -was quite : [u'too', u'right', u'invisible', u'against', u'master', u'impossible', u'alone', u'as', u'certain', u'secure', u'a', u'beyond', u'weary'] -is there : [u'that', u'?"'] -refused to : [u'marry', u'deal', u'associate', u'examine', u'credit', u'raise'] -of rending : [u'cloth'] -foolishly rejected : [u'.'] -came again : [u'on'] -matters of : [u'importance'] -means an : [u'affaire'] -preparing for : [u'an'] -Oct. : [u'4th'] -is almost : [u'time', u'invariably'] -Jezail bullet : [u'which'] -the afternoon : [u'he', u'.', u'and', u',', u'who'] -chain in : [u'memory'] -recompense you : [u'for'] -has some : [u'deadly'] -, isn : [u"'"] -old clock : [u'ticking'] -I; ' : [u'but', u'my', u'I', u'you'] -crisp rattle : [u'of'] -I; " : [u'and', u'perhaps'] -light of : [u'a', u'the', u'her'] -every nerve : [u'in'] -. Roylott : [u'was', u'entirely', u'then', u"'", u'had', u'has', u'returned'] -fancies. : ['PP'] -feigned indignation : [u'at'] -employers, : [u'and'] -colonel needed : [u'to'] -tried the : [u'various'] -and Watson : [u'here'] -person on : [u'which', u'Monday'] -prisoner as : [u'the'] -so pale : [u';'] -while it : [u'is'] -while in : [u'the'] -fairer view : [u'of'] -person or : [u'persons', u'in', u'entity'] -a drab : [u'waistcoat'] -complaint can : [u'set'] -accidents, : [u'as'] -loud and : [u'authoritative'] -an armchair : [u',', u'. "', u'beside'] -Who knows : [u'?'] -had rushed : [u'up', u'forward'] -as smiled : [u','] -else for : [u'me'] -dropped it : [u'from'] -whatever it : [u'was'] -no tie : [u'between'] -Nothing to : [u'complain'] -no sense : [u'of'] -the more : [u'bizarre', u'daring', u'obvious', u'difficult', u'one', u'strange', u'implacable', u'patent', u'readily', u'worthy', u'ready', u'interesting', u'striking', u'chivalrous', u'so'] -an advance : [u'from', u'upon'] -more heartily : [u'ashamed'] -were made : [u'of'] -brilliant which : [u'sparkled'] -informed the : [u'police'] -inspector sat : [u'down'] -the dimly : [u'lit'] -lost nothing : [u'by'] -Eventually, : [u'in'] -perhaps, : [u'it', u'after', u'upon', u'fluttered', u'the', u'that', u'Mr', u'for', u'to'] -perhaps. : [u'When', 'PP'] -windows were : [u'thick', u'blocked', u'broken'] -you back : [u'all'] -more feat : [u'?'] -, including : [u'any', u'legal', u'how'] -r' : [u's'] -heated metal : [u'.'] -His smile : [u'broadened'] -the honour : [u'to', u'and', u'of'] -perhaps; : [u'and'] -tut!" : [u'cried'] -me very : [u'well'] -away or : [u're'] -of Cassel : [u'Felstein'] -her before : [u'many'] -doubt at : [u'all'] -woman oh : [u','] -doubt as : [u'to'] -, somewhat : [u'to'] -chill to : [u'my'] -restless frightened : [u'eyes'] -way dependent : [u'upon'] -took in : [u'my', u'order'] -Crewe. : [u'Dr'] -angle in : [u'the'] -been either : [u'mad'] -to utter : [u'the'] -his wrists : [u'.'] -his debts : [u'of'] -and delight : [u','] -as everyone : [u'else'] -the game : [u'keeper'] -each mumbling : [u'out'] -it might : [u'be', u'have', u'never', u'veil'] -which will : [u'always', u'take', u'no', u'guide', u'happen', u'interest', u'enable', u'probably'] -took it : [u'all', u'up', u'away'] -easy. : ['PP', u'You'] -it lengthened : [u'out'] -easy, : [u'soothing'] -its gullet : [u'and'] -the tall : [u'man'] -come uppermost : [u'.'] -ingenious," : [u'said'] -most maddening : [u'doubts'] -and comforted : [u'her'] -the holder : [u'of'] -lays his : [u'fangs'] -fills of : [u'shag'] -for one : [u'of', u'rather', u'night'] -DISCLAIMER OF : [u'DAMAGES'] -of Use : [u'part', u'and'] -enigmatical notices : [u':'] -not risk : [u'the'] -considerable dowry : [u'?"'] -were evidently : [u'all'] -Maudsley, : [u'who'] -young wife : [u'.'] -observer contain : [u'the'] -the past : [u'.'] -or cry : [u','] -his cursed : [u'stock'] -as amiable : [u'as'] -conduct would : [u'bring'] -or later : [u'.', u'she'] -air like : [u'a'] -lapse of : [u'two'] -well; : [u'then'] -sought a : [u'solution'] -Good afternoon : [u','] -Plantagenet blood : [u'by'] -, wiry : [u','] -not invent : [u'a'] -well, : [u'that', u'he', u'but', u'sir', u'perhaps', u'and'] -well. : [u'You', 'PP', u'And', u'I', u'At', u'To', u'There', u'It', u'Kill', u'Would', u'The', u'Then', u'Of'] -criminals were : [u'not'] -knowledge as : [u'to'] -We lunch : [u'at'] -splendour was : [u'in'] -his gaze : [u'directed'] -inquiries are : [u'being'] -met with : [u'such', u'her', u'considerable'] -June 3rd : [u','] -vegetables round : [u'.'] -saw me : [u'first', u'without'] -saw my : [u'sister'] -the row : [u'broke'] -and rain : [u'into'] -meal by : [u'taking'] -any beggar : [u'in'] -promotion and : [u'distribution'] -cheeks were : [u'red'] -The first : [u'thing', u'consideration', u'was', u'had'] -had given : [u'him', u'his', u'me', u'the', u". '"] -just for : [u'the'] -circles in : [u'which'] -from Marseilles : [u','] -wrong which : [u'I'] -t imagine : [u'how', u'.'] -enjoy it : [u'in'] -fees. : [u'YOU'] -the charge : [u'of', u'against'] -have one : [u'or', u'waiting', u'to', u'."', u'belonging'] -whiskers was : [u'helping'] -Hosmer Mr : [u'.'] -, also : [u',', u'to', u'a', u'."'] -bustling in : [u','] -tones of : [u'the'] -door, : [u'which', u'however', u'and', u'into', u'when', u'one', u'passed', u'window', u'for', u'pushing', u'I', u'so', u'whence', u'a', u'as', u'his', u'followed'] -door. : [u'Then', u'Large', u'He', 'PP', u'My', u'The', u'It', u'A', u'I', u'This', u'As', u'Recently', u'Mr'] -back her : [u'head'] -wedding ceremony : [u','] -another,' : [u'said'] -his wit : [u','] -have belonged : [u'to'] -door; : [u'no'] -caused by : [u'someone', u'some', u'one', u'her', u'a', u'Arthur'] -me swiftly : [u'into'] -terror? : [u'I'] -result of : [u'a', u'driving', u'causing'] -has brought : [u'in', u'me'] -loose lipped : [u'senility'] -why you : [u'did', u'should'] -a king : [u'."'] -within the : [u'week', u'edge', u'space', u'last', u'hydraulic', u'grounds', u'room'] -ungenerously, : [u'and'] -but these : [u'may'] -, lemon : [u','] -mystery through : [u'which'] -six stones : [u'were'] -s jewel : [u'case'] -rien l : [u"'"] -trees as : [u'the'] -? Because : [u'he'] -blanche. : ['PP'] -whoever it : [u'was'] -. " One : [u'other'] -simplicity itself : [u',"'] -the peaceful : [u'beauty'] -of cubic : [u'capacity'] -and suited : [u'me'] -the nursery : [u'and', u'.'] -to regain : [u'it'] -The drawn : [u'blinds'] -haste. : [u'Pray'] -answered sharply : [u". '"] -way be : [u'found'] -laying his : [u'hand'] -even he : [u'to'] -noble correspondent : [u'could'] -over our : [u'heads', u'stepfather'] -matter. : [u'He', u'I', 'PP', u'Depend', u'One', u'The', u'There', u'Are', u'As', u'It', u'This', u'Lady', u'And'] -thinks my : [u'little'] -*** START : [u'OF', u':'] -thrilling with : [u'horror'] -is his : [u'main', u'very', u',"', u'hat', u'name'] -pulled out : [u'a'] -passed after : [u'the'] -man Boone : [u'had'] -months older : [u'than'] -heard what : [u'he', u'passed'] -by cocking : [u'a'] -my unhappy : [u'boy'] -Such was : [u'the'] -merely a : [u'couple', u'case'] -springs, : [u'such'] -' suicide : [u".'"] -came up : [u',', u'from', u'by'] -three!' : [u'I'] -. Spaulding : [u','] -thrust forward : [u'and'] -Secretary for : [u'the', u'Foreign'] -his fingertips : [u'together', u'still'] -yes,' : [u'said'] -All well : [u'."'] -was dressing : [u'in'] -their pick : [u'for'] -sit on : [u'the'] -up now : [u'though'] -a drawn : [u'face'] -hours if : [u'he'] -This we : [u'have'] -was feeling : [u'which'] -whatever might : [u'befall'] -walk down : [u'to'] -directors, : [u'and', u'with'] -naturally did : [u'not'] -stone floor : [u'.', u'of'] -grief came : [u'to'] -was concerned : [u'in', u'with'] -lives. : [u'I', u'No', 'PP'] -very probable : [u'."'] -draw so : [u'large'] -very soon : [u'I', u'be'] -gentleman I : [u'describe'] -How is : [u'the', u'that'] -ransacked them : [u'before'] -Holmes raved : [u'in'] -some day : [u'citizens', u'play'] -managed several : [u'delicate'] -In search : [u'of'] -lower down : [u'was'] -Gravesend by : [u'a'] -Moran Manor : [u'House'] -Some years : [u'ago'] -vacancies. : ['PP'] -to rectify : [u'.'] -The lowest : [u'estimate'] -this sort : [u'of', u'which', u','] -his triumph : [u'and'] -Peterson had : [u'rushed'] -on seeing : [u'the'] -developed. : ['PP'] -in Europe : [u'.'] -bed dies : [u'.'] -dim light : [u'of', u'which', u'that'] -in southern : [u'China'] -the outstretched : [u'palm'] -hole and : [u'was', u'coming'] -the unopened : [u'newspaper'] -Wednesday. : [u'It', u'What'] -the prison : [u'to', u'?'] -I rapidly : [u'threw'] -pressure. : ['PP', u'When'] -told it : [u'to'] -ever recovered : [u'his'] -spite of : [u'the', u'its', u'my'] -ring, : [u'after'] -his heels : [u',', u'came'] -Hall this : [u'afternoon'] -essence of : [u'the'] -, somehow : [u'I'] -your reason : [u'breaks'] -them apart : [u".'"] -figure like : [u'a'] -away the : [u'tangled', u'dangers'] -ruined gambler : [u','] -some more : [u'tangible', u'convenient'] -those quarters : [u'!'] -! So : [u'much'] -pasty face : [u','] -And there : [u'is'] -the moonlight : [u',', u'.'] -fowl fancier : [u','] -restive, : [u'insisted'] -down a : [u'heavy', u'narrow', u'flight', u'dark', u'passage', u'winding', u'life'] -the darkness : [u'.', u'of'] -this work : [u'(', u'in', u'.', u'or', u',', u'is'] -and accept : [u'all'] -Millar. : ['PP'] -Millar, : [u'the', u'a', u'and'] -dreadful to : [u'think', u'listen'] -seats to : [u'return'] -so,' : [u'said'] -not sure : [u'when', u'that', u'which', u'whether'] -so," : [u'he', u'I', u'said'] -this the : [u'victim'] -how can : [u'that'] -great benefactor : [u'to'] -, sprang : [u'out'] -several footsteps : [u'was'] -glance from : [u'his'] -turned on : [u'his'] -CORONET" : [u'Holmes'] -he grasped : [u'my'] -Very good : [u'.', u".'", u','] -the amount : [u'that', u','] -state law : [u'.'] -box of : [u'bricks', u'matches'] -in America : [u'.', u'they'] -they came : [u'to', u'out', u'like'] -takes snuff : [u','] -, nonproprietary : [u'or'] -mile from : [u'the'] -an alliance : [u'which'] -would stay : [u'with'] -known adventuress : [u','] -bow and : [u'stalked'] -hear the : [u'rumble', u'gentle', u'fuss', u'deep', u'rights'] -my kingdom : [u'to'] -sister must : [u'have'] -account also : [u'for'] -heavy weapon : [u'.'] -very clear : [u'upon', u'to', u'that', u'."'] -thoughts before : [u'he'] -London eastern : [u'division'] -HEADED. : ['PP'] -the noise : [u'which'] -matters which : [u'are'] -and above : [u'the'] -person is : [u'imprisoned'] -passed, : [u'however', u'and'] -your interests : [u'were'] -When the : [u'commissionaire', u'inspector'] -know my : [u'method', u'methods'] -Because during : [u'the'] -so warm : [u'over'] -sleeping off : [u'the'] -goading him : [u'on'] -happened within : [u'a'] -told him : [u'.', u'of', u'that'] -out that : [u'it', u'he', u'business'] -lane and : [u','] -know me : [u'too', u','] -best detective : [u'that'] -constabulary informing : [u'him'] -life abroad : [u','] -of trying : [u',"'] -the corners : [u'of'] -not be : [u'more', u'bought', u'able', u'up', u'aware', u'allowed', u'kept', u'such', u'natural', u'happy', u'delirium', u'difficult', u'shown', u'frightened', u'found', u'called', u'so', u'again', u'wanting', u'far', u'traced', u'very', u'surprised', u'offensive', u'long', u'used'] -done no : [u'harm'] -I forget : [u'how'] -adopted a : [u'system'] -us hear : [u'a', u'it'] -finally covered : [u'it'] -. " But : [u'he', u'if', u'I', u'pray', u'have', u'at'] -out no : [u'longer'] -thought people : [u'would'] -swung through : [u'the'] -younger brother : [u'and'] -made of : [u'solid', u'this', u'frosted'] -his white : [u'tie'] -invalidity or : [u'unenforceability'] -interfere with : [u'your'] -insinuating manner : [u','] -proving, : [u'what'] -follow it : [u'out', u'from'] -cocking a : [u'rifle'] -your coffee : [u'."'] -tobacco and : [u'a'] -not trouble : [u'about'] -paying little : [u'heed'] -Imagine, : [u'then'] -conduct had : [u'long', u'drawn'] -above," : [u'Holmes'] -follow in : [u'the'] -he restored : [u'to'] -one," : [u'remarked', u'chuckled', u'said'] -furniture that : [u'he'] -last successful : [u','] -Had he : [u'appeared', u'ever', u'observed', u'lost'] -the morning : [u'.', u'when', u'I', u'as', u'paper', u',', u'he', u'of', u'at', u'broke', u'upon', u'had', u'train', u'light', u'until', u'waiting', u'papers', u'and', u'there', u'before', u'."'] -, flecked : [u'with'] -sleep, : [u'and', u'breathing', u'the'] -typewritist presses : [u'against'] -sleep. : ['PP'] -that a : [u'man', u'gipsy', u'single', u'woman', u'young', u'typewriter', u'question', u'small', u'certain', u'huge', u'rat', u'clever', u'great', u'conclusive', u'prosecution', u'word', u'ladder'] -Try the : [u'settee'] -brown board : [u'with'] -insolence to : [u'confound'] -shilling of : [u'mine'] -one week : [u','] -large sums : [u'upon', u'of'] -five dried : [u'pips', u'orange'] -, subtle : [u'methods'] -of dates : [u'.'] -held it : [u'out', u'against'] -acting for : [u'the'] -that I : [u'had', u'could', u'would', u'was', u'am', u'bore', u'might', u'have', u'prepare', u'never', u'remarked', u'did', u'make', u'thought', u'got', u'miss', u'may', u'heard', u'cannot', u'can', u'should', u'do', u'felt', u'found', u'will', u'shall', u'must', u'know', u'see', u'at', u'and', u'held', u'spoke', u'sent', u'saw', u"'", u'knew', u'woke', u'tell', u'wish', u'mentioned', u'instantly', u'failed', u'smiled', u'left', u'uttered', u'jumped', u'extend', u'feared', u'need', u'hear', u'recognise', u'still', u'get', u'became', u'understood', u'lock'] -held in : [u'his'] -terrible and : [u'deadly'] -his bedroom : [u'and', u'door'] -that A : [u'and'] -spectacle. : [u'It'] -has its : [u'French'] -written my : [u'note'] -ourselves very : [u'seriously'] -that nothing : [u'should'] -outrages were : [u'usually', u'traced'] -scandal," : [u'said'] -conceives an : [u'idea'] -THE SPECKLED : [u'BAND'] -and came : [u'home', u'down', u'right', u'in', u'into', u'within', u'up', u'from', u'to'] -pitch, : [u'it'] -Monica, : [u'John'] -Perhaps we : [u'had', u'may'] -with or : [u'appearing'] -visitor with : [u'the'] -time before : [u'I'] -caught in : [u'his', u'the'] -down as : [u'an'] -down at : [u'the', u'her', u'him', u'his', u'me', u'my'] -and school : [u'companion'] -caught it : [u','] -positive intention : [u'of'] -soul seemed : [u'to'] -quarrel which : [u'would'] -eight or : [u'nine'] -quite invisible : [u'to'] -station of : [u'his'] -descending. : ['PP'] -keen as : [u'the', u'mustard'] -clasped behind : [u'him'] -Roylott drive : [u'past'] -companion rose : [u'to'] -were chosen : [u','] -fatal to : [u'our'] -to add : [u'the'] -boots. " : [u'I'] -pockets for : [u'the'] -mad?" : [u'said'] -consisted of : [u'a'] -the magistrates : [u'at'] -Rucastle suddenly : [u'remarked'] -woods all : [u'round'] -, furtive : [u'and'] -the hedge : [u'close'] -expend considerable : [u'effort'] -took up : [u'the', u'a'] -past six : [u'when'] -same Monday : [u','] -takings amount : [u'to'] -imprisoned in : [u'this'] -delayed at : [u'a'] -pa, : [u'perhaps'] -one object : [u'of'] -tearing a : [u'piece'] -society of : [u'the'] -all aside : [u'and'] -work it : [u'out'] -clanging sound : [u','] -exceedingly unfortunate : [u'that'] -right had : [u'he'] -work is : [u'slight', u'in', u'derived', u'posted', u'discovered', u'provided'] -agency for : [u'recovering', u'governesses'] -our roof : [u','] -than" : [u'Plain'] -importance that : [u'it'] -as swift : [u'as'] -his destiny : [u'. "'] -our room : [u','] -bird all : [u'the'] -fulfilled. : [u'A'] -so thin : [u',', u'a'] -the gritty : [u','] -extraordinary powers : [u'of', u'.'] -been watching : [u'the', u'me'] -" Colonel : [u'Lysander'] -give them : [u'two', u'are', u'some'] -CONSEQUENTIAL, : [u'PUNITIVE'] -eagerly, : [u'with'] -door flew : [u'open'] -a gale : [u'and'] -have figured : [u'but'] -most pleasant : [u'fashion'] -We heard : [u'the'] -, craggy : [u'features'] -grind me : [u'to'] -inspector, " : [u'it', u'you'] -his knee : [u',', u'. "', u'. "\''] -the wooden : [u'case', u'floor', u'chair', u'walls'] -front door : [u'."', u'.', u',"'] -the chimney : [u'.'] -action for : [u'breach', u'assault'] -1887 he : [u'married'] -so! : [u'You', u'Your'] -many years : [u'he', u','] -formidable letters : [u'which'] -Marbank, : [u'the', u'of'] -at www : [u'.'] -so, : [u'and', u'somewhat', u'something', u'as', u'just', u'Mr', u'after', u'or', u'of', u'it', u'too', u'much', u'on', u'but', u'for', u'she', u'how'] -so. : [u'But', u'I', 'PP', u'Why', u'And', u'Watson', u'That', u'This', u'My', u'Your', u'Now', u'There', u'Head', u'Pray', u'Let', u'During', u'We', u'It', u'Then', u'Of', u'Nothing', u'In', u'She'] -my skill : [u'.'] -had drifted : [u'us', u'into'] -violin land : [u','] -bark from : [u'a'] -Toller, : [u'for', u'my', u'who'] -so; : [u'but', u'at'] -a particular : [u'shade'] -prison to : [u'see'] -Leadenhall Street : [u'and', u'."', u'Post', u'.', u','] -ignorance, : [u'and'] -by train : [u'this'] -common subject : [u'for'] -beside it : [u'.'] -very nicely : [u',', u'upon', u'.'] -or do : [u','] -wait, : [u'and', u'I'] -giant dog : [u','] -wait. : [u'A', 'PP'] -Incredible imbecility : [u'!"'] -waiting now : [u'in'] -by courtesy : [u','] -work appears : [u'to'] -would hardly : [u'be'] -very stout : [u','] -likely to : [u'be', u'call', u'occur', u'use', u'see', u'want', u'weigh', u'find'] -bashful. : [u'Then'] -life is : [u'spent', u'infinitely', u'despaired', u'worth'] -more inexorable : [u'face'] -an equal : [u'light'] -life in : [u'him', u'Afghanistan', u'America'] -formed by : [u'the', u'some'] -shoes or : [u'slippers'] -of whipcord : [u'.', u'were'] -postmark! : [u'What'] -15. : ['PP'] -. Please : [u'check'] -anger by : [u'calling'] -tumbled onto : [u'the'] -colonel ushered : [u'me'] -armchairs. : [u'With'] -real vivid : [u'flame'] -, ' here : [u"'"] -through under : [u'exactly'] -must fly : [u'to'] -Fareham in : [u'the'] -lucky chance : [u'has', u','] -Juryman: : [u'Did'] -do to : [u'day', u'prevent', u'make', u'distinguish'] -arrived on : [u'March'] -duty by : [u'him'] -the scene : [u'of', u'he', u'."', u','] -small round : [u','] -stricken man : [u'.'] -aside and : [u'lay'] -disappeared before : [u'you'] -now married : [u'her'] -the twelve : [u'o', u'mile'] -completely overtopped : [u'every'] -the scent : [u'of'] -manner and : [u'speech'] -but nothing : [u'remained', u'was'] -corner house : [u','] -camp had : [u'been'] -May, : [u'1884'] -not recognised : [u'me'] -too hardened : [u'for'] -possible supposition : [u'."'] -my friends : [u'into', u','] -having rushed : [u'into'] -white aproned : [u'landlord'] -the glimmer : [u'from'] -to Hereford : [u'and'] -seat," : [u'said'] -in terrible : [u'pain'] -precious public : [u'possessions'] -no common : [u'one'] -and striking : [u'face'] -lovely country : [u','] -well able : [u'to'] -this most : [u'pitiable'] -disposition is : [u'abnormally'] -dirty and : [u'wrinkled'] -in size : [u','] -provided. : ['PP'] -little short : [u'of'] -narrowly escaped : [u'a'] -the field : [u'of', u'down'] -his cunning : [u','] -employing, : [u'or'] -up some : [u'small'] -" Deserted : [u'you'] -Andover in : [u"'"] -of frosted : [u'glass'] -drive and : [u'lay'] -to part : [u'with', u'from'] -than when : [u'I', u'the'] -now continue : [u'my'] -clouds drifting : [u'across'] -the Edgeware : [u'Road'] -of purchasing : [u'one'] -Lestrade would : [u'have'] -poor, : [u'helpless'] -Marseilles, : [u'there'] -a smoke : [u'laden'] -casket in : [u'which'] -breasted coat : [u','] -suspicious looks : [u'at'] -and solemnly : [u'he'] -demand during : [u'the'] -in themselves : [u','] -a tap : [u'at'] -, indicated : [u'the'] -her own : [u'house', u'guardianship', u'family', u'circle', u'age', u'death', u'way', u'little', u'by'] -James Ryder : [u',', u'."'] -" woven : [u'into'] -distracting factor : [u'which'] -last before : [u'a'] -Why? : [u'Because', u'What'] -seeing him : [u',', u'.', u'nearly'] -Museum itself : [u'during'] -the opportunity : [u'of'] -removed all : [u'references'] -eye to : [u'chin'] -glasses of : [u'beer'] -goes out : [u'at', u'little'] -too," : [u'said'] -the tracks : [u'."'] -Why, : [u'indeed', u'what', u'I', u'dear', u'all', u'bless', u'Watson', u'it', u'you', u'dash'] -for generations : [u'to'] -and cushions : [u'from'] -money and : [u'never', u'had'] -I pay : [u'good'] -just seven : [u'when'] -traces of : [u'doubt', u'the', u'violence', u'blood', u'Mr'] -day we : [u'were'] -causing injuries : [u'which'] -Frank standing : [u'and'] -sister dressed : [u'?"'] -to apologise : [u'to'] -under this : [u'great', u'rambling', u'one', u'paragraph', u'agreement'] -my laughter : [u','] -room door : [u'.'] -two golden : [u'tunnels'] -seemed surprised : [u'.'] -of wooing : [u'and'] -of remaining : [u'where'] -copper beeches : [u'immediately', u'.', u'in'] -this kind : [u'.'] -be no : [u'question', u'doubt', u'more', u'obstacle', u'chance', u'possible', u'prosecution'] -sherry, : [u'8d'] -ll come : [u'with'] -Gutenberg" : [u'is', u'appears', u'associated'] -been ascertained : [u','] -Gutenberg' : [u's'] ---" He : [u'slipped', u'took'] -done so : [u'.', u'before'] -was gentle : [u'.'] -discover a : [u'defect'] -and open : [u'drawers', u','] -absolutely determined : [u'that'] -Pennsylvania, : [u'U'] -! For : [u'Christ'] -The machine : [u'goes'] -eye. " : [u'You'] -They used : [u'to'] -I strolled : [u'round', u'up'] -gave such : [u'a'] -beauties. : [u'A'] -ill used : [u','] -at St : [u'.'] -I give : [u'you'] -middle window : [u'."'] -spring into : [u'a'] -say now : [u',', u'?"'] -but referred : [u'it'] -particularly important : [u'to'] -came staggering : [u'out'] -their windows : [u'as'] -than 150 : [u'yards'] -or turn : [u'my'] -run out : [u'to'] -commissionaire had : [u'gone'] -and here : [u'are'] -it,' : [u'said', u'the', u'he'] -had walked : [u'several', u'both'] -it," : [u'said', u'I', u'he', u'returned'] -pursued by : [u'so'] -direct line : [u'to'] -so persistently : [u'floating'] -founded rather : [u'upon'] -the windowsill : [u','] -a hound : [u','] -as on : [u'a'] -even execution : [u','] -The stable : [u'lane'] -into frequent : [u'contact'] -to stare : [u'at'] -as of : [u'old', u'the', u'burned', u'a'] -heels in : [u'one'] -and absolutely : [u'uncontrollable'] -," responded : [u'his', u'Holmes'] -drab waistcoat : [u'with'] -more nearly : [u'correct'] -, during : [u'a', u'which', u',', u'the'] -woman whom : [u'he'] -fell unheeded : [u'upon'] -other end : [u'of', u','] -Never,' : [u'said'] -scruples as : [u'to'] -first thing : [u'that'] -the newcomer : [u'.'] -only in : [u'the', u'monosyllables', u'his'] -I started : [u'off', u'from', u'when', u'to'] -utter the : [u'name'] -My God : [u',', u'!', u'!"'] -refuse any : [u'of'] -house maid : [u'for'] -have dated : [u'from'] -some sound : [u'in'] -longer time : [u'they'] -but indeed : [u'I'] -other purposes : [u','] -and patting : [u'her'] -the men : [u"'", u'of'] -not within : [u'a'] -lid. : [u'Its'] -side door : [u',', u'led', u'.'] -beef and : [u'a'] -Jones in : [u'his'] -his devoted : [u'wife'] -need to : [u'detain', u'be'] -of tales : [u'."'] -barrel of : [u'a'] -high treble : [u'key'] -honour and : [u'discretion', u'attempted'] -the untimely : [u'death'] -violent quarrel : [u'.'] -warn you : [u'that'] -but was : [u'elbowed', u'interested', u'a', u'as', u'succeeded', u'still', u'always'] -we get : [u'farther', u'round', u'to'] -about her : [u'approaching', u'when', u'like'] -On Monday : [u'."'] -references to : [u'Project'] -be quick : [u','] -facts that : [u'he'] -secured the : [u'shutters'] -EXPRESS OR : [u'IMPLIED'] -us do : [u'so'] -s/ : [u'he'] -s. : ['PP', u'Well', u'Sir'] -prediction was : [u'fulfilled'] -s, : [u'and', u'the', u'near', u'though', u'was', u'Evening', u'Jem', u'Hanover'] -avail,' : [u'said'] -s' : [u'slurred', u'tailless', u'Where'] -Morning Post : [u',', u'to'] -place and : [u'pluck'] -but before : [u'he', u'I'] -really knew : [u'her'] -own death : [u'.'] -waylaid. : [u'There'] -any legal : [u'crime'] -the station : [u'with', u'.', u',', u'."', u'inn', u'and', u'master'] -tapped me : [u'on'] -the best : [u'resource', u'plans', u'of', u'policy', u'laid', u'.', u'detective', u'use', u'possible'] -My uncle : [u'Elias'] -scandal would : [u'be', u'ensue'] -Threatens to : [u'send'] -the newspapers : [u',"', u','] -that the : [u'world', u'title', u'very', u'passage', u'clergyman', u'King', u'strangest', u'facts', u'trustees', u'League', u'vacancy', u'whole', u'name', u'lust', u'play', u'enemy', u'light', u'night', u'only', u'matter', u'maiden', u'machine', u'little', u'fourteen', u'two', u'one', u'description', u'change', u'case', u'circumstances', u'cry', u'coroner', u'reason', u'posterior', u'murdered', u'someone', u'soles', u'person', u'end', u'son', u'jury', u'same', u'danger', u'inspector', u'letters', u'deaths', u'small', u'reasoner', u'probability', u'writer', u'vessel', u'sudden', u'deceased', u'ship', u'barque', u'practice', u'office', u'bleeding', u'stains', u'presence', u'ebbing', u'weighted', u'police', u'impression', u'boy', u'details', u'clothes', u'hat', u'initials', u'wearer', u'gas', u'individual', u'bureau', u'bird', u'gang', u'doctor', u'door', u'flooring', u'mystery', u'crocuses', u'cheetah', u'bed', u'rope', u'events', u'pledge', u'lamp', u'story', u'black', u'pain', u'blood', u'colonel', u'horse', u'silent', u'full', u'status', u'Duke', u'Californian', u'marriage', u'party', u'wedding', u'honeymoon', u'excitement', u'Serpentine', u'things', u'contents', u'folly', u'lady', u'mere', u'money', u'strain', u'law', u'guilt', u'truth', u'coronet', u'latter', u'pavement', u'keenest', u'affair', u'increased', u'lowest', u'scream', u'chance', u'evening', u'room', u'converse', u'Project'] -ago and : [u'left'] -silently he : [u'made'] -your father : [u'?', u"'", u'make', u'had', u'fatally', u'?"', u'if', u','] -Neville wrote : [u'those'] -The most : [u'lay', u'serious'] -but recover : [u'the'] -no coins : [u'were'] -lighten, : [u'though'] -hands the : [u'value'] -A gentleman : [u'entered'] -and shoves : [u". '"] -, seared : [u'with'] -writhing limbs : [u'and'] -beaten track : [u','] -just run : [u'over'] -himself indicated : [u'that'] -there?' : [u'he'] -no notion : [u'as'] -than did : [u'the'] -had heard : [u'.', u'that', u'what', u',', u'in', u'it', u'of'] -faint right : [u'there'] -another. " : [u'But'] -catch him : [u','] -shaken but : [u'not'] -thick red : [u'finger'] -the Project : [u'Gutenberg'] -wind cried : [u'and'] -preach to : [u'you'] -This gentleman : [u',', u'was', u'?"'] -police know : [u'what'] -the pocket : [u'is'] -eye over : [u'it'] -very pressing : [u'which', u'need'] -received by : [u'himself'] -me by : [u'the', u'my', u'Sherlock', u'one'] -a check : [u'to'] -there he : [u'sat', u'would', u'was'] -furniture of : [u'my'] -it presently : [u'.'] -conversation is : [u'most'] -end when : [u'he'] -first it : [u'was', u'seemed'] -continue with : [u'my'] -longer desired : [u'his'] -one fact : [u'which'] -headed and : [u'devotedly'] -Colonel! : [u'Let'] -a gong : [u'upon'] -two McCarthys : [u'were', u'quarrelling'] -Bordeaux, : [u'where'] -we were : [u'engaged', u'a', u'to', u'past', u'little', u'groping', u'well', u'forced', u'flying', u'shown', u'compelled', u'each', u'in', u'back', u'sharing', u'only', u'occasionally', u'fortunate', u'going', u'out', u'left', u',', u'and', u'all', u'so', u'taking'] -patient. " : [u'Then'] -passions, : [u'save'] -we settle : [u'this'] -wooden case : [u'behind'] -distance from : [u'Paddington', u'the'] -dressed in : [u'a', u'black', u",'"] -through Wigmore : [u'Street'] -copy of : [u'the', u'or', u'a'] -attention very : [u'particularly'] -. God : [u'keep', u'help'] -and so : [u'may', u'necessitate', u'made', u'through', u',', u'at', u'they', u'you', u'uncertain', u'by', u'had', u'startling', u'systematic', u'he', u'on', u'dramatic', u'we', u'terrible', u'round', u'thoughtful', u'ill'] -weighed down : [u'with'] -fallen since : [u'the'] -same world : [u'wide'] -methods of : [u'my', u'reasoning'] -was delirious : [u'.'] -limb, : [u'I'] -concerned, : [u'are'] -clothes on : [u'?"'] -stories that : [u'I'] -clothes of : [u'Mr'] -so do : [u'I'] -gems in : [u'it'] -my window : [u',', u'and'] -the agony : [u'column'] -overhead, : [u'and'] -six cases : [u'which'] -, impulsive : [u'girl'] -ways of : [u'our', u'thieves'] -searched the : [u'Dundee'] -beyond measure : [u'.'] -been abandoned : [u'as'] -interview with : [u'him', u'you'] -but still : [u'I', u'remained'] -weak and : [u'ill'] -can our : [u'actions'] -them held : [u'the'] -friends, : [u'not', u'but'] -, you : [u'see', u'have', u'may', u'made', u'know', u'would', u'use', u'can', u'forfeit', u'are', u'might', u'will', u'understand', u'no', u'remark', u'must', u'on', u'thought', u"'", u'rifled', u'scoundrel', u'could', u'dig', u'mean', u'look', u'found', u'as', u'indicate'] -?' says : [u'she'] -against whom : [u'I'] -with emotion : [u'. "'] -did all : [u'the'] -Many times : [u';'] -no prohibition : [u'against'] -1884 there : [u'came'] -Camberwell poisoning : [u'case'] -when Whitney : [u'was'] -shoulder and : [u'looking'] -have stopped : [u'all'] -sharp pull : [u'at'] -at Stoke : [u'Moran'] -square, : [u'gaping', u'black'] -boa round : [u'her'] -and habits : [u'.'] -head nor : [u'tail'] -window had : [u'gently'] -an enclosure : [u'here'] -to Dr : [u'.'] -the Albert : [u'Dock'] -trust him : [u',', u'in'] -tiny pilot : [u'boat'] -your skill : [u'in', u'can'] -my pursuers : [u'.'] -. " May : [u'I'] -s subtle : [u'powers'] -on the : [u'twentieth', u'inside', u'right', u'day', u'table', u'one', u'other', u'simple', u'scene', u'pavement', u'whole', u'League', u'important', u'ground', u'way', u'programme', u'man', u'contrary', u'premises', u'Testament', u'sly', u'very', u'left', u'side', u'morning', u'next', u'typewriter', u'corner', u'grass', u'top', u'ashes', u'sofa', u'road', u'arm', u'strength', u'hook', u'sundial', u'direct', u'outskirts', u'wrong', u'couch', u'shoulder', u'angle', u'papers', u'stall', u'verge', u'mantelpiece', u'western', u'lawn', u'upper', u'dark', u'wooden', u'bed', u'wood', u'9th', u'distaff', u'previous', u'Pacific', u'subject', u'landing', u'heaped', u'turf', u'dressing', u'sum', u'trail', u'white', u'trivial', u'far', u'most', u'fourth', u'third', u'lookout', u'door', u'kitchen', u'work', u'official'] -again!" : [u'he'] -tiny stock : [u'of'] -the footmen : [u'declared'] -Surrey lanes : [u'.'] -a form : [u'of', u','] -conclusion and : [u'was'] -proper authorities : [u'.'] -chair once : [u'more'] -provided for : [u';'] -coat' : [u's'] -is occasionally : [u'good', u'very'] -asked with : [u'a', u'his', u'interest'] -thought best : [u','] -coat. : ['PP', u'His', u'He'] -coat, : [u'while', u'unbuttoned', u'such', u'and', u'then', u'which', u'white', u'a', u'shining', u'his'] -than forty : [u'five'] -parents or : [u'relations'] -, fell : [u'down'] -well remembered : [u'door'] -but think : [u'with'] -perch behind : [u'her'] -your niece : [u'Mary', u'and'] -the rest : [u',', u'he', u'is'] -exclusion or : [u'limitation'] -hand was : [u'still', u'found'] -a folded : [u'paper'] -uncourteous to : [u'his'] -ve set : [u'yours'] -come into : [u'a', u'town', u'Winchester'] -speak to : [u'me', u'the', u'her', u'you', u'this'] -widower and : [u'never', u'have'] -command of : [u'one'] -. Ryder : [u'instantly', u'.', u'stood'] -applying if : [u'your'] -bit, : [u'Doctor'] -mumbling responses : [u'which'] -has loosed : [u'the'] -as regards : [u'the'] -undoubtedly in : [u'an'] -Cusack who : [u'told'] -was meant : [u'to'] -solution in : [u'fact'] -winter. : [u'Ah'] -that showed : [u'that'] -Ballarat Gang : [u'.'] -they cared : [u'no'] -not but : [u'think'] -1869," : [u'and'] -pencil and : [u'that'] -villain would : [u'see'] -sized square : [u'house'] -must get : [u'home', u'rid', u'these'] -I paced : [u'up'] -fatally injured : [u'?'] -law, : [u'I'] -than Italian : [u'or'] -law. : ['PP', u'But', u'Think', u'The'] -her wee : [u'hand'] -perfectly familiar : [u'to'] -across and : [u'threw', u'down'] -Lloyd' : [u's'] -locations. : [u'Its'] -"' Next : [u'Monday'] -money which : [u'my', u'I', u'would'] -only applicant : [u'?"'] -nocturnal expedition : [u','] -he first : [u'."'] -exaggerated in : [u'its'] -law; : [u'but'] -was standing : [u'between', u'in', u'open', u'beside', u','] -kept upon : [u'the'] -would the : [u'wretched'] -' got : [u'out'] -years have : [u'passed'] -returned home : [u'in'] -obliged if : [u'you'] -in fact : [u'."', u','] -raising his : [u'golden'] -Albert chain : [u','] -spend most : [u'of'] -angry at : [u'having'] -am saved : [u'!', u'!"'] -make anything : [u'of'] -tax exempt : [u'status'] -murdered man : [u'."', u'had', u'was'] -steamer they : [u'would'] -very shamefully : [u'treated'] -a child : [u'could', u'in', u'whose', u'who', u'by'] -her also : [u'."', u'in'] -brown overcoat : [u'with'] -our cab : [u'and'] -a chill : [u'to', u'wind'] -glanced at : [u'the', u'her', u'my', u'it', u'him', u'me', u'Mrs'] -Colonel Spence : [u'Munro'] -twice in : [u'a'] -downward, : [u'his'] -farthing from : [u'me'] -nonentity. : [u'It'] -lawyer named : [u'Norton'] -Eglow, : [u'Eglonitz'] -at No : [u'.'] -memory of : [u'the'] -for God : [u"'"] -dull wilderness : [u'of'] -only three : [u'minutes'] -little house : [u','] -to recompense : [u'you'] -; turn : [u'where'] -to commit : [u'you'] -the trampled : [u'grass'] -your confession : [u'at', u','] -as to : [u'my', u'money', u'learn', u'this', u'join', u'what', u'his', u'bandy', u'the', u'your', u'those', u'their', u'deceive', u'how', u'where', u'details', u'be', u'make', u'taking', u'come', u'remove', u'holding', u'who', u'wake', u'interest', u'whether', u'go', u'recompense', u'sitting', u'cut', u'put'] -a nipper : [u'?'] -possibly leave : [u'until'] -been subjected : [u'to'] -similar whistle : [u'from'] -assured him : [u'that'] -formats will : [u'be'] -eclipsed it : [u','] -received written : [u'confirmation'] -repeated upon : [u'it'] -downstairs when : [u'the'] -appeared when : [u'the'] -would associate : [u'crime'] -tax upon : [u'his'] -to Lee : [u'.', u'a'] -brandy. : [u'So'] -road topped : [u'a'] -the level : [u'of'] -father is : [u'very'] -very limited : [u'one'] -, Fleet : [u'Street'] -"' Fritz : [u'!'] -of exercising : [u'enormous'] -to rain : [u','] -associate himself : [u'with'] -father if : [u'I'] -the lock : [u'."', u',', u'.'] -conducting the : [u'case'] -fourteen other : [u'characteristics'] -room up : [u'among', u'there'] -her sitting : [u'room'] -for marriage : [u'.'] -" May : [u'I'] -was certain : [u'that'] -bricks. : [u'Now', u'It'] -. Angel : [u'was', u"'", u',', u'began'] -crimes which : [u'I', u'are'] -found you : [u'lying'] -as many : [u'minutes'] -. Pa : [u'thought'] -some account : [u'of'] -huge crest : [u'and'] -can infer : [u'from'] -anyone could : [u'make', u'offer', u'have'] -man; : [u'but'] -smile as : [u'he'] -crime to : [u'crime'] -man? : [u'He'] -not familiar : [u'with'] -man' : [u's'] -expression which : [u'veiled'] -laughed his : [u'eyes'] -man, : [u'dark', u'come', u'and', u'Mr', u'with', u'is', u'catch', u'it', u'so', u'or', u'being', u'furtive', u'would', u'I', u'left', u'McCarthy', u'fierce', u'rising', u'however', u'coarsely', u'black', u'walking', u'shocked', u'the', u'who', u'a', u'but', u'clean', u'puffing', u'too', u'without', u'whose', u'has', u'of', u'as', u'kept'] -man. : [u'She', u'The', 'PP', u'Besides', u'Irene', u'And', u'They', u'As', u'His', u'To', u'Though', u'I', u'Your', u'Surely', u'Even', u'During', u'Is', u'We'] -short railway : [u'journey'] -my assistant : [u", '", u'was', u',', u'.'] -thought that : [u'I', u',', u'she', u'he', u'it', u'Flora', u'perhaps', u'if'] -pounds in : [u'gold'] -an exceeding : [u'thinness'] -clambered out : [u'upon'] -couples again : [u','] -his gloves : [u'. "'] -reference to : [u'a', u'the', u'my'] -his person : [u'or', u'but'] -a name : [u'which'] -you came : [u'in', u'upon'] -I opened : [u'my', u'the'] -Captain James : [u'Calhoun'] -have gone : [u'so', u'for', u'on', u'out', u'to'] -sort have : [u'already'] -a possible : [u'supposition', u'solution'] -snake in : [u'India'] -snake is : [u'writhing'] -He drew : [u'out', u'a', u'up'] -take your : [u'advice'] -if on : [u'some'] -site( : [u'www'] -last night : [u'."', u'Police', u'.', u',', u'?"', u'that'] -fell in : [u'the', u'a'] -the temptation : [u'of'] -man strikes : [u'even'] -just returned : [u'upon'] -to act : [u'for'] -can enjoy : [u'it'] -or sit : [u'there'] -into your : [u'snug', u'chair', u'pocket', u'room', u'hands', u'family', u'dressing'] -how have : [u'you'] -their denial : [u'that'] -and framework : [u'of'] -staggered and : [u'nearly'] -admire the : [u'scenery'] -the Twisted : [u'Lip'] -of steps : [u'upon', u'leading', u'below', u'within'] -villagers almost : [u'as'] -peculiar introspective : [u'fashion'] -fresh young : [u'face'] -creature takes : [u'his'] -to let : [u'you', u'Mr', u'me', u'us', u'him'] -000 napoleons : [u'from', u'packed'] -were flying : [u'across'] -window open : [u'?"'] -building depot : [u'.'] -could have : [u'equalled', u'been', u'got', u'happened', u'occurred', u'seen', u'acted', u'drawn', u'effected', u'their', u'done'] -of losing : [u'a'] -pleased at : [u'my'] -one corner : [u',', u'of'] -seaports. : [u'That'] -his gun : [u'or'] -achieved such : [u'remarkable'] -had settled : [u'his'] -a scandal : [u'in', u'which'] -closed. : [u'Mary'] -we meet : [u'signs'] -overcoat with : [u'a'] -brawls took : [u'place'] -my two : [u'companions', u'visitors'] -methods and : [u'addresses'] -a client : [u'.', u'could'] -the Langham : [u'under'] -who opened : [u'the'] -written. : ['PP'] -written, : [u'and'] -the nest : [u'empty'] -added to : [u'my'] -handed me : [u'a'] -the claws : [u'of'] -, " if : [u'it'] -, " in : [u'the'] -step between : [u'the'] -been attended : [u'to'] -passengers than : [u'usual'] -be lost : [u'.', u'in'] -, " it : [u'was', u'is', u'has'] -of using : [u'a'] -planked down : [u'four'] -and hurled : [u'it'] -drinking hard : [u','] -. Can : [u'you'] -His wife : [u'is'] -Southampton the : [u'day'] -of to : [u'day'] -particulars as : [u'to'] -father came : [u'back', u'to'] -mixed with : [u'mine'] -I heard : [u'some', u'no', u'the', u'of', u'a', u'from', u'my', u'.', u'her', u'it', u'faintly', u'as', u'that', u'his'] -. Toller : [u',', u'lets', u'in', u'!"', u'knows', u'serenely', u',"'] -hydraulics, : [u'you'] -there!" : [u'said'] -year after : [u'the'] -volunteered to : [u'supply'] -beautifully," : [u'I'] -cripple showed : [u','] -his age : [u'.', u','] -me off : [u'upon', u','] -sorrow and : [u'not'] -defending counsel : [u'.'] -very encouraging : [u'to'] -that he : [u'felt', u'had', u'assumed', u'will', u'has', u'takes', u'is', u'could', u'might', u'seized', u'would', u'saw', u'was', u'hated', u'foresaw', u'quotes', u'wished', u'must', u'held', u'stood', u'uttered', u'knew', u'gave', u'lived', u'should', u'and', u'may', u'walks', u'needed', u'uses', u'thought', u'knows', u'said', u'did', u'came', u'sees', u'even', u'threatened', u'desires', u'humours', u'sat', u'finds'] -the fruits : [u'of'] -overtook the : [u'little'] -sleep a : [u'wink'] -past four : [u'.'] -complete information : [u'as'] -came round : [u'the', u'to'] -work knowing : [u'it'] -telegram which : [u'we'] -NOTICE OF : [u'THE'] -than usual : [u',', u'.'] -young ladies : [u'wander', u'from', u'half', u".'"] -dress was : [u'rich', u'brown'] -carry your : [u'Highness'] -but only : [u'on', u'for'] -Telegraph, " : [u'it'] -about the : [u'man', u'size', u'signature', u'families', u'country', u'garden', u'colonel', u'room', u'hour', u'foresight', u'bird', u'same', u'matter', u'hotel', u'ways', u'metropolis', u'machine', u'morning', u'mouth', u'place', u'case', u'coronet', u'thing', u'finer', u'whole', u'creature', u'house', u'Mission', u'Project'] -were gravely : [u'set'] -forgotten the : [u'strange', u'warnings'] -on going : [u','] -men had : [u'known', u'come'] -after half : [u'past'] -on foot : [u','] -the reconstruction : [u'of'] -years younger : [u'than'] -, placed : [u'his', u'a', u'in'] -branches out : [u'of'] -hot blooded : [u'and'] -went very : [u'carefully'] -port," : [u'said'] -him yet : [u'."'] -arranged,' : [u'it'] -to accompany : [u'my'] -condemned I : [u'shall'] -aspect, : [u'who'] -scattered villages : [u','] -" About : [u'a', u'sixty'] -ever take : [u'the'] -head again : [u'.'] -My practice : [u'is', u'had'] -combine the : [u'ideas'] -a trouble : [u'which'] -right with : [u'me', u'him'] -about father : [u';', u','] -over her : [u'ear', u'fresh', u'she', u'terrible', u'injured', u'face', u'that', u'?'] -loudly. : [u'I'] -very short : [u'time'] -yourself close : [u'to'] -interested in : [u'these', u'this', u'his', u'the', u'Mr', u'several'] -woman!" : [u'cried'] -clock is : [u'it'] -now there : [u'is'] -time among : [u'the'] -, " your : [u'stepfather', u'statement'] -"-- he : [u'sank', u'jerked', u'gave'] -Having measured : [u'these'] -said that : [u'she', u'it', u'he', u'I', u'if', u'when', u'Mr', u'you', u'there', u'her', u'though', u'the'] -be sorry : [u'for'] -feel so : [u'much'] -that coronet : [u"?'"] -I agree : [u'with'] -by none : [u'of'] -blunt pen : [u'knife'] -two large : [u'iron'] -so round : [u'by'] -there sat : [u'a'] -argue with : [u'him'] -. Easier : [u'the'] -out their : [u'first'] -more affected : [u'than'] -premises in : [u'the'] -metropolis, : [u'but', u'and'] -of dubious : [u'and'] -am your : [u'man'] -A vague : [u'feeling'] -me your : [u'coat', u'hand', u'address'] -and eight : [u'months'] -saving considerable : [u'sums'] -every vestige : [u'of'] -and sweet : [u'and'] -likely. : [u'On', u'And', u'I', 'PP'] -of geese : [u','] -America because : [u'she'] -501( : [u'c'] -s stepfather : [u','] -the gossips : [u'away'] -cast off : [u'shoes'] -and oppressively : [u'respectable'] -Victoria," : [u'he'] -late to : [u'assist', u'alter'] -friend here : [u'is', u','] -about Abbots : [u'and'] -starting in : [u'Middlesex'] -love your : [u'Majesty'] -weaknesses on : [u'which'] -your while : [u'to'] -informed me : [u'that'] -origin. : ['PP'] -formed a : [u'link'] -only change : [u'colour'] -of seeing : [u'a', u'you', u'him'] -pondered over : [u'it'] -passages, : [u'narrow'] -or deletions : [u'to'] -man behind : [u'a'] -four protruding : [u'fingers'] -years I : [u'have', u'may'] -extremely dirty : [u','] -"' My : [u'name', u'accomplishments', u'sole', u'dear'] -set to : [u'work', u'him'] -poky, : [u'little'] -me down : [u'the', u'to'] -, rigid : [u'stare'] -"' Mr : [u'.'] -and eightpence : [u'for'] -maxim of : [u'mine'] -I staggered : [u'to'] -my door : [u',', u'I'] -inside of : [u'your', u'the'] -! Whose : [u','] -once in : [u'the'] -his cynical : [u'speech'] -felt another : [u'man'] -"' MY : [u'DEAR', u'DEAREST'] -Step into : [u'my'] -human eye : [u'which'] -the important : [u'position'] -alive who : [u'had'] -such. : ['PP'] -of silver : [u'upon', u'."'] -heard about : [u'me'] -signature is : [u'typewritten', u'very'] -in producing : [u'a'] -readily enough : [u','] -without anything : [u'being'] -How cruelly : [u'I'] -your attention : [u'to', u'very'] -rose and : [u'sat', u'threw', u','] -place been : [u'reduced'] -much so : [u'."', u',"', u'.'] -her letters : [u'for'] -signature if : [u'an'] -can get : [u'him', u'a', u'on', u'it', u'nothing', u'away'] -at it : [u'earnestly', u'anyhow', u',', u'over', u'from', u'in', u'horror', u'and', u'. "', u'.', u'to', u'before', u'."'] -once taken : [u'advantage'] -demurely; " : [u'you'] -want of : [u'a', u'drink'] -this letter : [u',', u'you', u'from'] -least sound : [u'would'] -twenty before : [u'her'] -Whitney. : [u'How'] -Whitney, : [u'brother', u'D', u'and', u'pale'] -our French : [u'gold'] -I hardly : [u'looked', u'think', u'noticed', u'consider'] -Whitney' : [u's'] -strange experience : [u',', u'to'] -Even his : [u'voice'] -obvious, : [u'as'] -paradoxical. : ['PP'] -obvious. : [u'I', 'PP', u'And', u'The', u'As'] -departed. : ['PP'] -let it : [u'drop'] -tongs and : [u'lighting'] -Undoubtedly. : [u'It'] -therefore we : [u'cannot'] -and credit : [u'card'] -respectable figure : [u'."'] -Harley Street : [u','] -. " Name : [u'the'] -James and : [u'his', u'I'] -little changes : [u'carried'] -"' Which : [u'dealer'] -been with : [u'you', u'me', u'them'] -, unless : [u'I', u'you'] -smoothing it : [u'out'] -raised in : [u'her'] -disclaimers of : [u'certain'] -new year : [u'I'] -slope. : ['PP'] -too trivial : [u'to'] -three read : [u'it', u'this'] -brings me : [u'twopence'] -he' : [u'll', u's'] -he! : [u'You'] -he" : [u'allow'] -have alluded : [u'are'] -he, : [u'laughing', u'showing', u'then', u'touching', u'and', u'at', u'gripping', u'laying', u'chuckling', u'pulling', u'rising', u'with', u'smiling', u'poor', u'scratching', u'coming', u'throwing', u'sitting', u'putting', u'raising', u'glancing', u'thrilling', u'answering', u'turning', u'looking'] -Evidently," : [u'said'] -he. : [u'Here', 'PP', u'With', u'The', u'His', u'He', u'"', u'I'] -his high : [u'white', u','] -no peace : [u','] -all were : [u'there'] -room he : [u'flung'] -a collection : [u'of'] -without being : [u'interesting', u'suspected', u'able', u'criminal'] -tunnels of : [u'yellow'] -senility. : ['PP'] -of years : [u'ago', u'and'] -its hard : [u','] -tied in : [u'the'] -town to : [u'day'] -additions or : [u'deletions'] -that occur : [u'to'] -brazier I : [u'felt'] -same secrecy : [u'which'] -limits in : [u'a'] -wasteful disposition : [u','] -client appeared : [u'to'] -been to : [u'Eton', u'the', u'command'] -all confirmed : [u'by'] -been set : [u'forth'] -a quill : [u'pen'] -WITH NO : [u'OTHER'] -seen by : [u'Mr', u'young', u'mortal'] -adventuress, : [u'Irene'] -deceived by : [u'wigs'] -paper for : [u'some'] -to assure : [u'us'] -bad day : [u'in'] -attacked by : [u'Apache'] -of repartee : [u','] -costume was : [u'a'] -my articles : [u'.', u'and'] -before we : [u'went', u'are', u'regained', u'got', u'get', u'go', u'settle', u'were', u'solve'] -with snow : [u'and'] -still smiling : [u'in'] -who abandons : [u'himself'] -your reasoning : [u'I', u',"'] -let in : [u'light'] -that Toller : [u'had'] -gently closed : [u'somewhere'] -do very : [u'nicely'] -he wants : [u'is', u'it'] -blood was : [u'in', u'pouring'] -reasons I : [u'expected'] -any more : [u'."', u'with'] -only notable : [u'feature'] -seemed a : [u'fine', u'different'] -door in : [u'the'] -Hardy, : [u'the', u'who'] -rising and : [u'pulling', u'putting', u'bowing'] -collected on : [u'the'] -Pray wait : [u'until'] -rain splashed : [u'and'] -her fancies : [u'in'] -to have : [u'that', u'me', u'every', u'a', u'the', u'an', u'Jones', u'done', u'breakfast', u'been', u'avoided', u'led', u'had', u'come', u',', u'vengeance', u'someone', u'plenty', u'trusted', u'clearer', u'interrupted', u'my', u'his', u'made', u'spoken', u'it', u'taken', u'them', u'one', u'quite', u'acted', u'gone', u'your'] -to disappoint : [u'?'] -coloured plaster : [u'.'] -hair have : [u'been'] -to give : [u'him', u'advice', u'you', u'details', u'an', u'some', u'to', u'way', u'us', u'them', u'30'] -my house : [u'in', u'at', u',', u'sweet', u'last'] -mostly concerned : [u'with'] -your statements : [u'instead'] -their owner : [u'?"'] -clad stable : [u'boy'] -one hint : [u'to'] -old days : [u'in'] -fear of : [u'future', u'someone'] -yards across : [u','] -hall beneath : [u'.'] -saluted him : [u'.'] -homeward bound : [u'to'] -have for : [u'their'] -and almost : [u'to', u'as'] -jovial man : [u'to'] -this promises : [u'to'] -us she : [u'can'] -received this : [u'letter'] -doctor has : [u'an'] -not prevent : [u'our'] -He said : [u'a', u'that', u'the', u'too'] -he stepped : [u'up', u'into'] -between Lord : [u'Robert'] -matter passed : [u','] -turn round : [u'and'] -startled look : [u'came'] -Savannah that : [u'these'] -a true : [u'account'] -have more : [u'than'] -story has : [u','] -your right : [u'wrist'] -raised her : [u'veil', u'dark'] -presents some : [u'difficulties'] -was awful : [u'to'] -The Coroner : [u':'] -Now it : [u'was'] -bachelor and : [u'are'] -his pledge : [u'sooner'] -a dreary : [u'experience'] -t. : ['PP'] -becomes even : [u'more'] -my tongue : [u'.'] -me there : [u','] -the smaller : [u'crimes'] -, came : [u'out', u'on', u'round'] -t' : [u'stands'] -by Colonel : [u'Openshaw'] -t" : [u'woven'] -little doubt : [u',', u'that'] -wall with : [u'such'] -to say : [u'that', u'nothing', u'whether', u'his', u'or', u"'", u',', u'to', u'.', u'now', u'there', u'so', u'and'] -shrilly a : [u'signal'] -the tradesmen : [u"'"] -resolve all : [u'our'] -we all : [u'three', u'followed', u'very', u'rushed'] -They seem : [u'to'] -it answered : [u'to'] -to serve : [u'you'] -should interfere : [u'with'] -doddering, : [u'loose'] -my only : [u'companion'] -drop a : [u'line'] -give, : [u'provided'] -yet always : [u'founded'] -the Tottenham : [u'Court'] -been weighing : [u'upon'] -duty well : [u'and'] -pointed over : [u'the'] -corridor from : [u'which'] -wear a : [u'mask'] -its master : [u'at'] -client came : [u'into'] -spirits. " : [u'It'] -faith in : [u'Sherlock', u'Holmes'] -small angle : [u'in'] -. Why : [u'should', u',', u'?'] -and wave : [u'him'] -us now : [u'explore', u'all', u'see', u'to'] -inquire as : [u'to'] -was reported : [u'to', u'as'] -the beryls : [u'in', u'are'] -us nor : [u'the'] -may observe : [u','] -from our : [u'window'] -family has : [u'been'] -it further : [u'.'] -she said : [u'as', u',', u'. "', u', "', u'that', u'earnestly'] -A Scandal : [u'in'] -made a : [u'small', u'hard', u'sweeping', u'serious', u'very', u'careful', u'little', u'slight', u'good', u'deep', u'step', u'disturbance', u'pile', u'bundle', u'mistake'] -bundle in : [u'the'] -her stepmother : [u'.'] -discriminate. : [u'When'] -ascertain, : [u'amount'] -and explain : [u'afterwards'] -been cleaned : [u'and'] -to ourselves : [u'save'] -recorded by : [u'the'] -him of : [u'the'] -Helen,' : [u'said'] -him on : [u'to', u'the'] -long arm : [u'to'] -stranger and : [u'a'] -the cause : [u'is', u'of'] -him or : [u'her'] -heading which : [u'sent'] -quarter to : [u'eight'] -him whether : [u'he'] -his eye : [u'down', u'up', u'was', u'. "', u'which'] -could define : [u'it'] -on or : [u'associated'] -Your life : [u'may'] -people out : [u'who'] -who knew : [u'his', u'how'] -I tied : [u'one'] -hardly served : [u'to'] -or was : [u'a'] -pity to : [u'miss', u'his'] -to Leatherhead : [u',', u'.'] -of form : [u'.'] -guess. : [u'Every'] -doubt whether : [u'any'] -You, : [u'of'] -before breakfast : [u'pipe'] -you may : [u'be', u'say', u'entirely', u'see', u'have', u'find', u'recollect', u'think', u'rest', u'expect', u'absolutely', u'both', u'imagine', u'submit', u'get', u'conceal', u'observe', u'carry', u'do', u'obtain', u'choose', u'demand'] -You' : [u'll', u've', u'd', u're'] -you place : [u'no'] -snatched it : [u'from', u'up'] -, bodies : [u','] -of donations : [u'received'] -You? : [u'Who'] -watch, : [u'to'] -; strongly : [u'built'] -of her : [u'sex', u'family', u'at', u'jacket', u'muff', u'nose', u'own', u'mother', u'natural', u'carriage', u'knowing', u'husband', u'geese', u'sore', u'death', u'using', u'good', u'match', u'resort', u'very', u'skin', u'child'] -under, : [u'and'] -WARRANTY, : [u'DISCLAIMER'] -more compunction : [u'than'] -discreet and : [u'capable', u'to'] -impression behind : [u'it'] -could you : [u'guess', u'tell', u'know', u'possibly', u'have'] -pull. : [u'She', 'PP'] -great coil : [u'at'] -pull, : [u'tore'] -a gesture : [u'of'] -was well : [u'nigh', u'convinced', u'known', u'paid'] -lay with : [u'his'] -of beige : [u','] -will do : [u'it', u',', u',"', u'nothing', u'what', u'so', u",'", u'very'] -his death : [u'from', u',', u'--!"', u'?"'] -mysterious assistant : [u'and'] -This man : [u'has', u'strikes', u','] -preserves. : [u'A'] -obvious upon : [u'the'] -to holding : [u'my'] -The Adventures : [u'of'] -the scream : [u'of'] -into harness : [u'."'] -The only : [u'remaining', u'drawback', u'point'] -identify. : [u'But'] -wandered continually : [u'from'] -rather fantastic : [u'business'] -experiences, : [u'you'] -experiences. : ['PP'] -source that : [u'you'] -hardly pass : [u'through'] -NO OTHER : [u'WARRANTIES'] -wave, : [u'with'] -But not : [u'more'] -But now : [u'the', u','] -back yet : [u'.'] -employed an : [u'agent'] -burning tallow : [u'walks'] -head before : [u'he'] -main PG : [u'search'] -with Eyford : [u'for'] -long term : [u'of'] -little Kate : [u'.'] -of whisky : [u'and'] -not that : [u'he', u'of', u'I', u'strike', u'the'] -struck, : [u'and'] -little deposit : [u'and'] -past ten : [u',', u'to', u'now'] -EBOOK THE : [u'ADVENTURES'] -that man : [u'would'] -no lengths : [u'to'] -now pinched : [u'and'] -? What : [u'sundial', u'of', u'do', u'was'] -into Oxford : [u'Street'] -The decline : [u'of'] -The trap : [u'drove'] -also for : [u'whoso', u'the', u'Indian'] -, crop : [u','] -screening your : [u'stepfather'] -Openshaw seems : [u'to'] -cloud which : [u'rests'] -, Barque : [u"'"] -antagonist; : [u'so'] -And which : [u'king'] -coat was : [u'buttoned'] -an unmarried : [u'one'] -of things : [u'to', u'you'] -. ' Is : [u'he'] -first chosen : [u','] -simply dirty : [u','] -I lowered : [u'my'] -pa knowing : [u'anything'] -It had : [u'only', u'cleared', u'escaped', u'been', u'ceased'] -but China : [u'?"'] -strength in : [u'the'] -facts connected : [u'with'] -the two : [u'crimes', u'whom', u'guardsmen', u'lower', u'men', u'corner', u'McCarthys', u'mates', u'constables', u'dozen', u'hundred', u'rooms', u'little', u'slabs', u'coming', u'may', u'upper', u'tresses'] -It has : [u'become', u'long', u'been'] -A touch : [u'of'] -scoundrel! : [u'I'] -cases. : [u'Whom', 'PP'] -cases, : [u'and', u'save', u'if', u'however', u'though'] -man arrested : [u'.'] -the frosty : [u'air'] -scoundrel. : ['PP'] -the sense : [u'that'] -as usual : [u",'", u'at', u','] -were sitting : [u'there'] -or federal : [u'tax'] -what?" : [u'asked'] -a facility : [u'of'] -thumb nails : [u','] -glancing from : [u'one'] -drew down : [u'the'] -will probably : [u'be', u'result'] -worn," : [u'our'] -turning out : [u'half'] -few others : [u'which'] -but then : [u'one'] -had narrowed : [u'the'] -and grinning : [u'at'] -the tower : [u'of'] -and suddenly : [u'an'] -laughed again : [u'until'] -lady had : [u'hurriedly', u'taken', u'been'] -but they : [u'both', u'all', u'were'] -codes that : [u'damage'] -first heading : [u'upon'] -as keen : [u'as'] -how terrible : [u'would'] -sliding panel : [u'just'] -successful, : [u'and'] -their saddles : [u'at'] -you,' : [u'said'] -. repeated : [u'upon'] -which comes : [u'under', u'to'] -, shaking : [u'hands', u'him'] -and gave : [u'a', u'evidence', u'myself', u'the', u'it', u'me', u'him', u'at'] -a slightly : [u'decorated'] -during a : [u'lengthy'] -my feet : [u',', u'would', u'and', u'with'] -refund set : [u'forth'] -an admirable : [u'queen', u'opportunity'] -lace. : [u'Now'] -And this : [u'promises', u'?', u'stone', u','] -again until : [u'he'] -later than : [u'this'] -most retiring : [u'disposition'] -Chronicle of : [u'April'] -Gutenberg tm : [u'electronic', u'mission', u'License', u'works', u'name', u'work', u'trademark', u'.', u'web', u'', u'collection', u'is', u"'", u'and', u'depends', u'concept', u'eBooks', u','] -Eley' : [u's'] -, folding : [u'up'] -the wheels : [u'of', u'as'] -golden bar : [u'of'] -this Miss : [u'Turner'] -Holmes whistled : [u'.'] -conveyed somewhere : [u'."'] -wilderness of : [u'bricks'] -better himself : [u'and'] -ring finger : [u','] -the drawing : [u'room', u'of'] -weaken the : [u'effect'] -cushion, : [u'but'] -done his : [u'duty'] -so short : [u'a'] -pledge of : [u'secrecy'] -sensitive instrument : [u','] -dress now : [u','] -value can : [u'only'] -smiling in : [u'the'] -quick, : [u'subtle', u'impatient', u'all', u'firm', u'for', u'or'] -quick. : [u'I'] -! Of : [u'my'] -the situation : [u'."', u'marks', u'and', u'.', u'which'] -feel equal : [u'to'] -impression that : [u'as', u'I'] -you lay : [u'yourself'] -remarked before : [u','] -throw his : [u'hands'] -On following : [u'him'] -) is : [u'accessed'] -owner, : [u'any'] -owner. : ['PP'] -words in : [u'a'] -his shoulder : [u',', u'.', u'; "'] -after she : [u'met'] -having put : [u'up'] -trace some : [u'geese'] -situation marks : [u'him'] -is bizarre : [u'and'] -United States : [u'government', u'copyright', u'without', u'.', u'and', u','] -luxuriant, : [u'and'] -be putting : [u'ourselves'] -ll state : [u'the'] -words it : [u'was'] -goose as : [u'a'] -in Afghanistan : [u'had'] -I had : [u'seen', u'now', u'a', u'better', u'to', u'listened', u'heard', u'followed', u'pictured', u'not', u'betrayed', u'been', u'called', u'twice', u'ever', u'quite', u'reasoned', u'written', u'pretty', u'come', u'the', u'brought', u'got', u'solved', u'expected', u'nothing', u'my', u'never', u'had', u'already', u'no', u'so', u'narrowed', u'shot', u'earned', u'gone', u'any', u'gained', u'dropped', u'read', u'begun', u'it', u'influence', u'left', u'hardly', u'an', u',', u'received', u'first', u'exceptional', u'business', u'finished', u'inflicted', u'just', u'put', u'done', u'your', u'forgotten', u'yet', u',"', u'entered', u'returned', u'cured', u'crossed', u'made', u'stooped', u'placed', u'let', u'arrived', u'remained', u'surrounded', u'something', u'foreseen', u'two', u'formed', u'married', u'given', u'hoped', u'taken', u'raised', u'such', u'said', u'acted', u'cleared', u'more', u'this', u'saved', u'4', u'best', u'almost', u'filled', u'still', u'known'] -every little : [u'want'] -breathlessly. ' : [u'They'] -perpetrated in : [u'the'] -twist is : [u'all'] -best land : [u'ever'] -just been : [u'wired', u'looking', u'there', u'serving'] -still curled : [u'upward'] -. Sir : [u',', u'George'] -into money : [u'.'] -was choked : [u'with'] -black, : [u'with', u'fluffy'] -very day : [u'so', u',', u'that'] -discoloured that : [u'it'] -turn that : [u'up'] -attended to : [u'in'] -dangerous it : [u'always'] -BLUE. : ['PP'] -years nor : [u'my'] -reported as : [u'having'] -water. " : [u'There'] -Julia and : [u'I'] -remembered us : [u','] -of thieves : [u','] -finally became : [u'a'] -City under : [u'my'] -bile shot : [u'eyes'] -pistol to : [u'the', u'his'] -cross legged : [u'with', u','] -little problems : [u',', u'help', u'."'] -plainly but : [u'neatly'] -at fault : [u'at'] -was staggered : [u','] -dust upon : [u'your'] -, fee : [u'or'] -hair had : [u'tramped', u'already'] -s preparations : [u'have'] -an enthusiastic : [u'musician'] -Clay serenely : [u'.'] -had ended : [u'with'] -clear enough : [u'what', u','] -our strange : [u'visitor'] -year ago : [u'.', u'."'] -a dash : [u'of'] -anything quite : [u'so'] -is ready : [u'.'] -safely be : [u'trusted'] -find some : [u'fault', u'possible'] -months on : [u'end'] -Hum!" : [u'said'] -hurried to : [u'him', u'his'] -quite exaggerated : [u'in'] -THAT THE : [u'FOUNDATION'] -peeped out : [u'from'] -" Tut : [u'!'] -" Surely : [u'.', u'it'] -public exposure : [u'.'] -a counsellor : [u','] -arrived in : [u'a'] -terrified girl : [u','] -are part : [u'of'] -They had : [u'driven'] -My evidence : [u'showed'] -something to : [u'my', u'her', u'do'] -of spare : [u'rooms'] -and manager : [u",'"] -of what : [u'was', u'had', u'society', u'has', u'they', u'we', u'he', u'it'] -table he : [u'retired', u'shook', u'drew'] -three continents : [u','] -fixed a : [u'look'] -investigation which : [u'my', u'lies', u'has', u'did'] -friend says : [u'that'] -was frightened : [u'and', u'of'] -absolutely puzzled : [u','] -stained they : [u'were'] -lower part : [u'of'] -you advise : [u'."'] -sottish friend : [u'of'] -and unknown : [u'man'] -have reconsidered : [u'your'] -most directly : [u'by'] -close that : [u'a'] -could better : [u'himself'] -this Lascar : [u'scoundrel', u',"'] -a suspicion : [u'.', u'as'] -own stupidity : [u'in'] -a trace : [u'remained'] -principal London : [u'banks'] -about poison : [u'?"'] -, too : [u'.', u',"', u',', u'?"', u';', u"!'"] -over Lloyd : [u"'"] -no allowance : [u'.'] -few fleecy : [u'clouds'] -donations in : [u'all', u'locations'] -Christmas two : [u'years'] -she speak : [u'to'] -and servant : [u'maids'] -sandwich and : [u'a'] -case from : [u'the', u'Baker'] -an ideal : [u'spring'] -drawing a : [u'circle'] -question for : [u'us'] -my literary : [u'shortcomings'] -shelf full : [u'of'] -him coming : [u'down'] -went on : [u'day', u". '"] -probing the : [u'furniture'] -registry office : [u'?'] -started off : [u'once', u'for', u',', u'upon'] -two years : [u';', u'ago', u'and', u'old', u'has', u'I'] -wickedness which : [u'may'] -Baker. : [u'It', 'PP'] -building going : [u'on'] -himself that : [u'he', u'his'] -mixed affair : [u'?'] -email newsletter : [u'to'] -a dream : [u'.'] -expiring upon : [u'the'] -front belongs : [u'to'] -astute a : [u'villain'] -Her banker : [u'or'] -himself than : [u'to'] -daresay that : [u'if'] -already referred : [u'to'] -as recorded : [u'by'] -strange conditions : [u'.'] -England from : [u'a'] -spent in : [u'one', u'rough', u'an'] -tell a : [u'thing', u'human', u'weaver'] -now has : [u'two'] -four golden : [u'sovereigns'] -certain. : [u'Neither'] -now had : [u'it'] -spark which : [u'marked'] -mentioned, : [u'and', u'for'] -few acres : [u'of'] -: Azure : [u','] -ran her : [u'over'] -You say : [u'yourself', u'that', u'so'] -what became : [u'of'] -claim a : [u'right'] -write? : [u'Oh'] -still this : [u'evening'] -few yards : [u'off', u'of'] -suits you : [u',"', u'best'] -shave every : [u'morning'] -shuffled along : [u'with'] -, ' you : [u'can', u'said', u'may', u'shall', u'villain', u'will', u'must'] -two planks : [u". '"] -bonnet on : [u'this'] -vegetables to : [u'the'] -shoots, : [u'and'] -enthusiasm of : [u'a'] -ends on : [u'a'] -being seen : [u'by'] -nigh certain : [u'that'] -future access : [u'to'] -rule, : [u'when', u'bald', u'is', u'and'] -management to : [u'see'] -feeling as : [u'flattered'] -pale faced : [u'woman'] -his inquiry : [u','] -outstretched palm : [u'of'] -enclosure, : [u'where'] -still more : [u'miserable', u'so'] -elbow with : [u'a'] -,' says : [u'he', u'she', u'I'] -of reaction : [u','] -an expression : [u'of'] -a giant : [u'dog'] -companion shook : [u'his'] -you sell : [u'the'] -are lost : [u'.'] -a brighter : [u'thing'] -wanted here : [u'upon'] -all discoloured : [u'and'] -shuttered window : [u'outside'] -as directed : [u',', u'.'] -about our : [u'throats'] -Your red : [u'headed'] -& Marbank : [u','] -though of : [u'course'] -a higher : [u'stake', u'court'] -pistol ready : [u'in', u'."'] -must comply : [u'either', u'with'] -horrid perch : [u'and'] -waited long : [u'for'] -These little : [u'problems'] -, away : [u'to'] -' penal : [u'servitude'] -Replacement or : [u'Refund'] -would facilitate : [u'matters'] -scissors grinder : [u'with', u','] -a skylight : [u'which'] -our secret : [u'very'] -the centre : [u'of', u',', u'by', u'one', u'.'] -daughter told : [u'us'] -The very : [u'noblest', u'first'] -, run : [u'down'] -entered. : [u'From', 'PP', u'"', u'As'] -devil together : [u'.'] -of young : [u'McCarthy', u'Openshaw'] -status by : [u'the'] -to date : [u'contact'] -and dangerous : [u'man'] -Alice. : [u'Even', 'PP'] -Alice, : [u'as'] -be again : [u'.'] -Alice( : [u'now'] -dragged them : [u'from'] -brushed past : [u'the'] -back from : [u'France', u'a'] -is exceedingly : [u'unfortunate'] -listened in : [u'silence'] -anxious, : [u'I'] -diligence that : [u'I'] -." While : [u'Sherlock'] -find the : [u'photograph', u'nest', u'advertisement', u'man', u'loving'] -!" cried : [u'the', u'Sherlock', u'Holmes', u'I', u'my', u'Hatherley', u'Miss'] -t wish : [u'to'] -in bringing : [u'me', u'in', u'help'] -brick houses : [u'looked'] -, sat : [u'Dr'] -," answered : [u'my', u'the', u'Holmes', u'Mr', u'our'] -opened for : [u'us'] -the son : [u'of', u'was', u'."', u"'", u'stood', u'.', u'and'] -Could your : [u'patients'] -the debt : [u'.', u'is'] -finder has : [u'carried'] -top hat : [u'to', u'and', u'upon', u','] -no way : [u'altered'] -loves, : [u'and'] -he laid : [u'it', u'the'] -19th. : ['PP'] -That brought : [u'out'] -The Project : [u'Gutenberg'] -frost, : [u'it'] -winding stair : [u',', u'.'] -two details : [u'which'] -As he : [u'spoke', u'stepped', u'glanced', u'said', u'reached', u'ran', u'loved'] -Monday and : [u'only'] -waste of : [u'energy'] -will wait : [u'outside'] -when Sherlock : [u'Holmes'] -ceases to : [u'be'] -keep that : [u'door'] -fields and : [u'carrying'] -shall use : [u'the'] -cost and : [u'with'] -thin legs : [u'towards', u'out'] -of barometric : [u'pressure'] -reach upon : [u'the'] -wriggled in : [u'his'] -mystery in : [u'the'] -inspector suggested : [u'that'] -remains, : [u'therefore', u'however'] -I asked : [u'.', u'him', u'you', u',', u'with', u'as', u', "', u", '", u'when', u'. "'] -remains. : [u'You', u'Mr'] -agent loftily : [u'. "'] -prisoner is : [u','] -certainly joking : [u','] -Come in : [u'!"'] -, " Information : [u'about'] -Hunter has : [u'to'] -solved in : [u'the'] -of little : [u'black', u'aid'] -shaped roll : [u'from'] -in running : [u'his'] -disturb you : [u'.'] -alternately give : [u'him'] -account lose : [u'another'] -find," : [u'said', u'he'] -being made : [u','] -better repair : [u','] -traced her : [u'.', u'!'] -dimly here : [u'and'] -stiffness in : [u'the'] -stared at : [u'him', u'it'] -So! : [u'Now'] -my security : [u".'"] -ago the : [u'colonel'] -processing or : [u'hypertext'] -oversight, : [u'so'] -examined, : [u'and', u'with', u'as'] -examined. : ['PP'] -to night : [u',', u'."', u"'", u'than', u'.', u'?"', u'?', u'when', u'and', u'by', u"?'"] -use denying : [u'anything'] -for north : [u',"'] -small portion : [u'of'] -it which : [u'could', u'are', u'never'] -drove fast : [u'.'] -A single : [u'man'] -pray consult : [u',"'] -heard no : [u'more'] -meaning of : [u'it', u'this'] -of business : [u'?"', u'and'] -my tradesmen : [u','] -Fordham, : [u'the'] -actually seen : [u'her'] -altar with : [u'him'] -step now : [u'upon'] -human plans : [u','] -gossip upon : [u'the'] -debts at : [u'the'] -doubt if : [u'ever'] -bordered our : [u'field'] -them once : [u'more'] -mother is : [u'alive'] -were black : [u'with'] -eyes closed : [u'and'] -chance young : [u'Openshaw'] -doubt it : [u'is'] -most readily : [u'imagine'] -fears came : [u'to'] -answer your : [u'purpose'] -after dinner : [u','] -; " nothing : [u'could'] -fears to : [u'the'] -an electric : [u'point'] -transformer of : [u'characters'] -everyone else : [u'.'] -reasoning I : [u'am'] -trees in : [u'the'] -read upon : [u'the'] -are typewritten : [u',"'] -the payment : [u'which'] -lover; : [u'it'] -put your : [u'army', u'lamp', u'foot', u'shoulder'] -has known : [u'the'] -know him : [u'to', u'.', u'from', u'?"'] -rain before : [u'we'] -typewriting his : [u'signature'] -decided draught : [u'."'] -you conceal : [u'yourselves'] -know his : [u'address', u'faults'] -soft cloth : [u'cap'] -" JABEZ : [u'WILSON'] -No one : [u'but', u'knows', u'is', u'could', u'else'] -is unwise : [u'to'] -to encamp : [u'upon'] -disposition of : [u'her', u'the'] -included us : [u'all'] -yet afraid : [u'to'] -glowing cinder : [u'with'] -Get out : [u'of', u'!"'] -slipping off : [u'my'] -party distributing : [u'a'] -This child : [u"'"] -turns his : [u'brains'] -the drawer : [u'.', u'open', u'?', u','] -, most : [u'exalted'] -While she : [u'was'] -his excursion : [u'.'] -or unenforceability : [u'of'] -a boiling : [u'passion'] -whole crowd : [u'of'] -quite drunk : [u','] -wore some : [u'dark'] -, shook : [u'his'] -The glass : [u'still'] -conclusion? : [u'Do'] -traveller in : [u'wines'] -unfortunate young : [u'man'] -advertisement. : ['PP', u'Spaulding', u'Fleet', u'Every'] -fat man : [u'cast'] -advertisement, : [u'Mr', u'one'] -as obvious : [u'as'] -and lighting : [u'with'] -which we : [u'had', u'found', u'were', u'all', u'shall', u'are', u'saw', u'have', u'might', u'eventually'] -conclusion. : ['PP'] -he pretends : [u'to'] -most unimpeachable : [u'Christmas'] -next few : [u'days'] -Bank abutted : [u'on'] -landau when : [u'a'] -facts before : [u'you'] -IV. : [u'The', u'THE'] -veins stood : [u'out'] -savage fits : [u'of'] -As you : [u'observe', u'both', u'may'] -nearly all : [u'my'] -wooden leg : [u'?"', u'.'] -the stains : [u'which'] -my side : [u',', u'in'] -. Supposing : [u'that'] -that remains : [u'.'] -. " Indirectly : [u'it'] -it will : [u'be', u'break', u',', u'not', u'take'] -dull neutral : [u'tinted'] -no distance : [u'from'] -always appeared : [u'when'] -electronic works : [u'to', u',', u'in', u'even', u'if', u'.', u'by', u'provided', u'that'] -reckless air : [u'of'] -strain would : [u'be'] -been here : [u'before', u'a', u'.'] -. These : [u'are', u'little', u'pretended', u',', u'flat', u'articles', u'good'] -handwriting. : [u'Unless'] -and its : [u'relation', u'fulfilment', u'value', u'solution', u'curious'] -blotched stone : [u','] -means of : [u'supporting', u'the', u'introducing', u'laying', u'exporting', u'obtaining'] -and waistcoat : [u','] -its hole : [u'to'] -might, : [u'and', u'for'] -might. : ['PP'] -dressed only : [u'in'] -. pglaf : [u'.'] -attic, : [u'in', u'which'] -the press : [u','] -transmit and : [u'multiply'] -the days : [u'of', u'when'] -had probably : [u'transferred'] -to seeing : [u'you'] -curious coincidence : [u'of'] -the threat : [u'and'] -uncle Ned : [u'in'] -passed at : [u'once', u'Lord'] -The object : [u'which'] -lash hung : [u'on'] -deep impression : [u'upon'] -creating derivative : [u'works'] -was speeding : [u'eastward'] -face with : [u'a', u'his'] -little French : [u','] -sternly. : ['PP'] -go round : [u'the'] -persuaded myself : [u'that'] -shoulders. " : [u'Then', u'Well', u'I'] -My first : [u'glance'] -a guinea : [u'if'] -lodgings in : [u'Baker', u'the', u'London'] -gale from : [u'without'] -thoroughly understood : [u'one'] -The official : [u'detective'] -missed by : [u'the'] -flattened it : [u'out'] -him retire : [u'for'] -the engine : [u'at'] -family is : [u'now'] -a pt : [u'de'] -MY DEAR : [u'MR'] -That you : [u'are', u'may'] -beeches in : [u'front'] -banker with : [u'a', u'an'] -his sitting : [u'room'] -covered with : [u'dates'] -sleeper, : [u'and'] -t he : [u'?"'] -dear wife : [u'knew', u'died'] -took from : [u'his'] -surrounded him : [u'?'] -out half : [u'crowns'] -moving under : [u'the'] -keeping. : [u'If'] -keeping, : [u'but'] -your refusal : [u'to'] -pushed his : [u'wet'] -De Quincey : [u"'"] -developments, : [u'but'] -the foremost : [u'citizens'] -suddenly realising : [u'the'] -a sister : [u'of'] -in Holmes : [u"'"] -the entire : [u'front'] -out those : [u'clues'] -the crowd : [u'to', u',', u'.'] -been prepared : [u'.'] -only four : [u'hours'] -. No : [u',', u'wind', u'one', u'doubt', u'crime', u'servant', u'sound'] -, throughout : [u'three'] -monograph on : [u'the'] -mind now : [u'.'] -to recover : [u'the'] -frightful a : [u'form'] -be sacrificed : [u'also'] -I managed : [u'to'] -in proving : [u','] -settled, : [u'he'] -find waiting : [u'for'] -had done : [u'something', u'it', u'his', u',', u'their', u'with', u'in', u'to'] -attracted by : [u'the', u'my'] -have boxed : [u'the'] -!" he : [u'cried', u'remarked', u'continued', u'roared', u'gasped', u'shrieked'] -maid servants : [u'who'] -absolutely concentrated : [u'upon'] -appearance and : [u'conduct'] -towards anyone : [u'else'] -" L : [u'.'] -your machine : [u'if'] -hole, : [u'through', u'and'] -did rather : [u'for'] -name, : [u'as', u'who', u'you', u'and', u'instituted', u'sir', u'style', u'what', u'for', u'is'] -very angry : [u'indeed', u','] -the dangers : [u'which', u'that'] -stored in : [u'an'] -several practical : [u'questions'] -gone out : [u'of', u'to', u'."'] -I remarked : [u', "', u'. "', u',', u'the', u'.', u'as', u'before', u'with'] -you don : [u"'"] -my rocket : [u'into'] -fruits of : [u'his'] -not limited : [u'to'] -both be : [u'extremely'] -He was : [u',', u'still', u'pacing', u'at', u'a', u'in', u'searching', u'himself', u'very', u'doing', u'always', u'too', u'much', u'not', u'an', u'trying', u'urging', u'wrongfully', u'removed', u'brought', u'the', u'lounging', u'clearly', u'quietly', u'young', u'off', u'plainly', u'dressed', u'wild', u'such', u'kind'] -whiten, : [u'even'] -outside which : [u'receive'] -the what : [u'?"'] -could answer : [u'I'] -spoken to : [u'us', u'you', u'Lord', u'anyone', u'me'] -the modest : [u'residence'] -, uttering : [u'very'] -unnatural as : [u'the'] -still live : [u'with'] -bosom. : ['PP'] -as averse : [u'to'] -between nine : [u'and'] -little sketch : [u'of'] -tense over : [u'his'] -a snake : [u'instantly'] -the storm : [u'grew', u'and'] -measured tapping : [u'of'] -instantly, : [u'although', u'as'] -safety.' : [u'He'] -s head : [u',', u'while'] -Sherlock. : ['PP'] -thin breathing : [u'of'] -main points : [u'of'] -the rifts : [u'of'] -pedestrians. : [u'It'] -such obligations : [u'to'] -gleaming Severn : [u','] -then the : [u'incident', u'doctor', u'first', u'whole', u'impossibility'] -took to : [u'their', u'coming', u'drink', u'the', u'his', u'be', u'this'] -one woman : [u'to'] -the assistant : [u'promptly', u'having', u"'", u'answered'] -ere I : [u'was'] -name; : [u'but'] -. Contributions : [u'to'] -be enough : [u'to'] -In answer : [u'to'] -keen, : [u'incisive', u'questioning'] -the stream : [u'which'] -pound notes : [u'.'] -look over : [u'the'] -romper just : [u'six'] -s bird : [u','] -a bean : [u'in'] -Her young : [u'womanhood'] -his quarrel : [u'with'] -were out : [u'on'] -much depend : [u'upon'] -is swift : [u'in'] -sort at : [u'The'] -husband already : [u'in'] -' Co : [u".' '"] -success I : [u'can'] -a match : [u'seller', u',', u'box'] -now have : [u'a'] -it impossible : [u'for'] -been carried : [u'down'] -crimes are : [u'apt'] -paper before : [u'him'] -have quite : [u'a'] -ado to : [u'persuade'] -and hoped : [u'with'] -dressed and : [u'ill'] -and prefers : [u'wearing'] -8d.' : [u'I'] -held out : [u'his', u'her'] -, pens : [u','] -time Secretary : [u'for'] -down it : [u'. "'] -this cross : [u'questioning'] -technical character : [u','] -seen after : [u'the'] -of pain : [u'and'] -dissolute and : [u'wasteful'] -event occurred : [u'which'] -accused of : [u'cheating', u'having'] -down in : [u'that', u'his', u'front', u'the', u'this', u'her', u'my', u'a', u'fold'] -eyed coroner : [u','] -the traces : [u'which'] -want a : [u'fire', u'little'] -desk and : [u','] -a logical : [u'basis'] -window sill : [u'of'] -lay on : [u'my'] -of adventure : [u'.'] -wretched boy : [u'open'] -She was : [u'bound', u'there', u'angry', u'flattered', u'so', u'but', u'about', u'as', u'passing', u'accustomed', u'very', u'quiet', u'rather', u'plainly', u'a', u'never', u'slighted'] -takings. : [u'I'] -license. : ['PP'] -license, : [u'that', u'in', u'apply', u'especially'] -outside the : [u'door', u'conventions', u'house', u'window', u'pale', u'United'] -I ordered : [u'her', u'him'] -everything. : [u'You', u'But', 'PP'] -card donations : [u'.'] -everything, : [u'a', u'Mr'] -see some : [u'loophole'] -be eaten : [u'without'] -everyone in : [u'the'] -on end : [u'without', u',', u'.', u'he', u'when'] -break it : [u'off', u'.', u','] -found lunch : [u'upon'] -can he : [u'hope'] -says that : [u'he'] -reason breaks : [u'down'] -evil dream : [u'.'] -her constraint : [u'and'] -his whip : [u','] -F. : [u'H', u'3', 'PP', u'1', u'2', u'4', u'5', u'6'] -give to : [u'this'] -. What : [u'do', u'was', u'else', u'could', u'does', u'a', u'is', u'd', u'would', u'can', u'did', u'are', u'has', u'will'] -Jane, : [u'she'] -" Give : [u'me'] -Clair by : [u'name'] -Holmes returned : [u'.', u'with', u'from'] -suddenly deranged : [u'?"'] -by Miss : [u'Mary', u'Stoner', u'Stoper'] -maids. : [u'But'] -revenge upon : [u'them'] -girl whose : [u'evidence'] -life and : [u'habits', u'to', u'hope', u'flapped'] -self control : [u',', u'to'] -men have : [u'been'] -. Hence : [u',', u'those'] -professional work : [u','] -splash in : [u'the'] -handcuffs clattered : [u'upon'] -she peeped : [u'up'] -an ill : [u'service', u'dressed'] -that settles : [u'the'] -silence. " : [u'Why'] -the moon : [u'was', u'had'] -woman has : [u'been'] -prompt, : [u'for'] -the clanging : [u'.'] -of honour : [u'and', u'.'] -come by : [u'chance'] -And let : [u'me'] -a sense : [u'of'] -been knocked : [u'up'] -darker against : [u'the'] -woman had : [u'plush', u'stood', u'run', u'strayed'] -little triangular : [u'piece'] -the movement : [u'rather'] -These flat : [u'brims'] -save his : [u'blazing'] -shift your : [u'own'] -distributing Project : [u'Gutenberg'] -you remarked : [u'to'] -now was : [u','] -nights later : [u'I'] -using or : [u'distributing'] -" Third : [u'right'] -spell had : [u'been'] -an unreasoning : [u'aversion'] -at Mrs : [u'.'] -get at : [u'one'] -mistake to : [u'theorize'] -criminal news : [u'and'] -ropes, : [u'and'] -understand it : [u','] -glancing a : [u'little'] -to walk : [u'up', u'amid'] -observed that : [u'his', u'her', u'the', u'he'] -change would : [u'do'] -excursion. : [u'He'] -a late : [u'riser', u'visit', u'administration', u'hour'] -up everything : [u'which'] -"' Stolen : [u"!'"] -" Smart : [u'fellow'] -a married : [u'man'] -perfectly black : [u'ink'] -he returns : [u'?"'] -resources. : [u'Kindly'] -tide inward : [u'and'] -of exclusion : [u','] -of eleven : [u','] -thoroughly. : [u'It'] -help commenting : [u'upon'] -reeds round : [u'the'] -subtle methods : [u'by'] -discoloured, : [u'blue'] -none. : ['PP', u'I'] -contact links : [u'and'] -none, : [u'save', u'as'] -firm of : [u'Holder'] -long building : [u','] -) letter : [u'is'] -George Meredith : [u','] -threshold at : [u'night'] -. " Hum : [u'!', u'!"'] -There was : [u'not', u'a', u'nothing', u'the', u'never', u'no', u'one', u'something', u'little', u'an', u'but', u'only'] -simplifies matters : [u'.'] -. Mrs : [u'.'] -and wrists : [u'.'] -blend with : [u'the'] -iron piping : [u','] -so charming : [u'a'] -had struck : [u'a'] -so nicely : [u','] -old platform : [u'.'] -or rather : [u'of', u'to'] -lady,' : [u'he'] -lines, : [u'while'] -caused some : [u'comment'] -Kensington I : [u'thought'] -peculiar nature : [u'of'] -, five : [u'miles'] -telegram would : [u'bring'] -observer excellent : [u'for'] -so that : [u'it', u'I', u'we', u'the', u'he', u'in', u'there', u'even', u'by', u',', u'none', u'three', u'her', u'you', u'his', u'they', u'whether'] -4 pounds : [u'a'] -sharp and : [u'penetrating'] -left till : [u'called'] -a camera : [u'when'] -passion, : [u'was'] -How could : [u'they', u'she', u'you', u'it', u'I', u'anyone', u'my'] -: November : [u'29'] -so than : [u'I', u'usual'] -liked, : [u'so'] -papers upon : [u'the'] -Your duty : [u'would'] -to deal : [u'with', u'summarily'] -whole, : [u'it', u'with'] -your story : [u','] -this beauty : [u'would', u'has'] -knelt beside : [u'him'] -existence. : [u'These', u'If', u'In', 'PP'] -radius, : [u'so'] -what Mr : [u'.'] -disqualify them : [u'.'] -rush into : [u'my'] -continue to : [u'retain'] -, Boone : [u'the'] -signature, : [u'which'] -entitles a : [u'member'] -. She : [u'is', u'has', u'lives', u'knows', u'was', u'would', u'responded', u'will', u'watched', u'left', u'laid', u'had', u'became', u'states', u'heard', u'stood', u'little', u'writhed', u'spoke', u'held', u'listened', u'kept', u'dropped', u'never', u'used', u'wrote', u'came', u'told', u'passed', u'sits', u'impressed', u'said', u'rose'] -its attached : [u'full'] -hugged his : [u'recovered'] -only thought : [u'which'] -am amply : [u'repaid'] -shock to : [u'her'] -weather and : [u'the'] -the vacancies : [u".'"] -married a : [u'woman', u'man'] -his coat : [u'only', u'tails', u'pocket', u'.', u'and', u'as'] -never noticed : [u'that'] -tm works : [u'in', u'unless', u'calculated', u'.'] -to occupy : [u'.'] -this might : [u'be'] -never be : [u'exposed', u'seen', u'really'] -once into : [u'business'] -, amiable : [u'disposition'] -approaching to : [u'mania'] -you thought : [u'?"', u'he', u'little'] -chose. : ['PP'] -degree, : [u'and'] -throwing his : [u'cigarette', u'fat'] -except when : [u'she'] -remember the : [u'order', u'advice', u'old'] -worn than : [u'others'] -not accept : [u'a'] -Lyon Place : [u','] -his kindness : [u'to'] -steps until : [u'the'] -coroner asked : [u'me'] -household who : [u'had'] -at everything : [u'with'] -" Always : [u'."'] -Gold, : [u'in'] -tell that : [u'they', u'?"'] -How far : [u'from'] -I adopted : [u'her'] -a society : [u'."'] -expecting was : [u'waiting'] -working of : [u'it'] -would show : [u'them', u'me', u'where'] -them' : [u's'] -Roylott' : [u's'] -weeks back : [u": '"] -no crime : [u'has', u'committed'] -fifty, : [u'tall'] -still between : [u'his'] -kindly explain : [u'how'] -ray of : [u'light'] -clear account : [u'of'] -slowly up : [u'the', u'and'] -Surely this : [u'is'] -legal papers : [u'or'] -with black : [u'beads'] -of sulking : [u'.'] -cousin, : [u'however'] -a temptation : [u'."'] -almost as : [u'soon', u'much', u'serious', u'bright', u'strong'] -stepmother. : [u'As'] -be prompt : [u',', u'over'] -until your : [u'reason'] -stall which : [u'we'] -word processing : [u'or'] -man rather : [u'over'] -to implore : [u'you'] -palm a : [u'brilliantly'] -his strange : [u'headgear'] -told the : [u'man'] -so kind : [u'as'] -met. : [u'Vincent', 'PP'] -met, : [u'as', u'on'] -fact upon : [u'fact'] -the affairs : [u'of'] -fellow more : [u'than'] -them, : [u'and', u'for', u'close', u'who', u'like', u'which', u'but', u'however', u'I', u'so', u'your', u'on'] -the truth : [u'.', u',"', u'"--', u',', u'is'] -on no : [u'account'] -way down : [u'Swandam', u'the', u','] -allow it : [u'to', u'."'] -exceedingly pale : [u'and'] -acute that : [u'I'] -wonder I : [u'didn'] -child was : [u'in', u'with'] -, jealousy : [u'is'] -had died : [u'away'] -lower windows : [u'before'] -went back : [u'to'] -Extremely so : [u'.'] -carried this : [u'letter'] -imbecility!" : [u'he'] -world has : [u'seen'] -what harm : [u'can'] -not over : [u'clean', u'bright', u'tender', u'pleasant'] -have already : [u'recorded', u'arranged', u'been', u'imperilled', u'gained', u'a', u',', u'had', u'said', u'made', u'remarked', u'given', u'explained', u'managed', u'learned', u'met', u'arrived', u'offered'] -two hundred : [u'year'] -short, : [u'that', u'and'] -!" Thick : [u'clouds'] -rope. " : [u'There'] -unpacked with : [u'the'] -, masked : [u'the'] -breakfasts at : [u'home'] -my editor : [u'wished'] -The light : [u'flashed'] -extremely obliged : [u".'"] -her eager : [u'and'] -two swift : [u'steps'] -purpose were : [u'innocent'] -carries it : [u'about'] -lighted as : [u'we'] -crack a : [u'crib'] -donors in : [u'such'] -is someone : [u'more'] -, Echo : [u','] -am faced : [u'by'] -consider another : [u'point'] -Ferguson. : ['PP'] -seasonable in : [u'this'] -. Passing : [u'down'] -" Near : [u'Lee'] -. Monica : [u'in', u',', u",'"] -into smoke : [u'like'] -not like : [u'the'] -trifle more : [u','] -call a : [u'cab', u'really'] -on into : [u'a'] -quivering fingers : [u'.'] -hinting at : [u'.'] -the impression : [u'of', u'generally', u'that'] -black jet : [u'ornaments'] -Drink this : [u'."'] -night must : [u'have'] -and typewriting : [u','] -may take : [u'it', u'the', u'some'] -to attract : [u'the'] -liberties. : [u'Still'] -like himself : [u','] -often twice : [u'.'] -she in : [u'good'] -bequeathed to : [u'Dr'] -examine minutely : [u'the'] -small streets : [u'which'] -from beneath : [u'them', u'it'] -. Kindly : [u'tell', u'sign', u'hand', u'turn'] -she is : [u'always', u'incorrigible', u'a', u'not', u'now', u'old', u'capable', u'wherever'] -he unravelled : [u'the'] -to how : [u'it', u'they'] -Christmas present : [u','] -personal column : [u'of'] -what clue : [u'could'] -" Why : [u',', u'did', u'serious', u',"', u'?', u'is'] -very gracious : [u'."', u'either'] -remonstrance. " : [u'He'] -determined was : [u'their'] -lunch, : [u'started'] -some attempt : [u'to'] -your room : [u'and', u'."', u','] -" Who : [u'was', u'is', u'by', u'are', u'ever', u'knows'] -THE ENGINEER : [u"'"] -. For : [u'example', u'many', u'you', u'a', u'all', u'the', u'some', u'two', u'seven', u'half', u'that', u'an', u'my', u'goodness', u'thirty'] -hammered on : [u'to'] -deeply. : ['PP'] -unexpected sight : [u'of'] -only child : [u',', u'by'] -quest, : [u'and'] -it every : [u'way'] -He looked : [u'from', u'across', u'about', u'inside', u'very', u'at', u'her', u'surprised'] -goose in : [u'Tottenham'] -tumbler upon : [u'the'] -inquiry, : [u'for', u'and'] -inquiry. : [u'I', 'PP', u'It'] -Between the : [u'wharf'] -estate, : [u'was', u'and', u'where', u'which', u'with'] -victim might : [u'either'] -Strand. : ['PP'] -Both could : [u'be'] -caps is : [u'quite'] -mean? : [u'It'] -elastic and : [u'has'] -about that : [u',', u'beggarman', u'.', u'time', u'bed', u'suite'] -She showed : [u'me'] -?" Sherlock : [u'Holmes'] -mean, : [u'of', u'John', u'this'] -mean. : ['PP'] -must lock : [u'yourself'] -gainer by : [u'an'] -, PUNITIVE : [u'OR'] -man might : [u'die', u'have'] -empty and : [u'open'] -steps will : [u'you'] -pushed me : [u'back'] -my strong : [u'box', u'impression'] -void the : [u'remaining'] -was--' : [u'and'] -wanted your : [u'help'] -open secret : [u'that'] -man standing : [u'in'] -tide but : [u'is'] -possible precaution : [u'because'] -so dense : [u'a'] -available for : [u'generations'] -someone more : [u'cunning'] -me beyond : [u'measure'] -desire about : [u'Miss'] -he walks : [u'with'] -ran when : [u'he'] -large affair : [u','] -eagerly into : [u'his'] -accepted such : [u'a'] -red finger : [u'planted'] -heavy sleeper : [u','] -dressed as : [u'a'] -Our gas : [u'was'] -and pulling : [u'on'] -keenly about : [u'it'] -is suggestive : [u'.'] -another of : [u'the'] -at half : [u'past'] -pictured it : [u'from'] -nominal services : [u'.'] -, along : [u'heavy'] -no lane : [u'so'] -am acting : [u'in'] -and turn : [u'our'] -it comes : [u'from', u'down'] -' Lost : [u','] -were instituted : [u'."'] -stride. : [u'His'] -curve with : [u'his'] -stride, : [u'had'] -supposition. : ['PP'] -Devonshire fashion : [u'over'] -hand as : [u'if'] -the Beryl : [u'Coronet'] -between ourselves : [u','] -Coronet. : ['PP'] -that Mr : [u'.'] -I still : [u'observed', u'shook', u'share'] -post by : [u'the'] -surprise or : [u'anger'] -fastened one : [u'of'] -end, : [u'he', u'and', u'which', u'I', u'with'] -I tried : [u'to'] -end. : ['PP', u'What', u'Faces', u'He', u'Besides', u'Then', u'HUNTER', u'Round'] -his weary : [u'eyes'] -clapped a : [u'pistol'] -Now," : [u'he'] -which mother : [u'carried'] -most amiable : [u'manner'] -shoves. ' : [u'Hullo'] -, jutting : [u'pinnacles'] -His silence : [u'appears'] -the southern : [u'suburb'] -new man : [u'.'] -lover extinguishes : [u'all'] -to argue : [u'with'] -centre of : [u'a', u'the', u'Baker', u'one'] -d bring : [u'him'] -seek it : [u'."'] -accuser. : ['PP'] -at concerts : [u','] -way place : [u'?'] -dying woman : [u'?"'] -will honour : [u'me'] -In these : [u'cases'] -,' she : [u'cried', u'said', u'went'] -inspector remained : [u'upon'] -distinguish the : [u'deeper', u'words', u'two', u'outline'] -back a : [u'small', u'panel', u'little'] -go when : [u'I'] -this small : [u'matter', u'chamber'] -was shining : [u'with', u'brightly', u'very'] -injury. : [u'It'] -being rather : [u'puzzled'] -of forebodings : [u'.'] -is itself : [u'crushed'] -trifles. : ['PP', u'Let'] -, haggard : [u','] -, fiery : [u'red'] -before you : [u'can', u'went', u';', u'reached', u'go', u'.', u'as', u'could', u'come'] -prevent some : [u'subtle'] -unable to : [u'find', u'see', u'follow', u'stand'] -Twice burglars : [u'in'] -town rather : [u'earlier'] -standpoint. : ['PP'] -threatens you : [u'.'] -And yet : [u'there', u'I', u'you', u'it', u'Well', u'even', u',', u'this', u'if', u',"', u'he', u'she'] -schools. : [u'I'] -Must I : [u'call'] -has indeed : [u'committed', u'exceeded'] -back I : [u'will', u'told'] -receive letters : [u','] -which your : [u'family'] -check to : [u'my'] -step in : [u'.', u'the'] -one easy : [u'chair'] -their expedition : [u','] -flattered by : [u'the'] -fanciful resemblance : [u'to'] -With trembling : [u'hands'] -his parched : [u'lips'] -itself from : [u'among'] -Station, : [u'and', u'I'] -Station. : [u'Sherlock', 'PP'] -special province : [u'."'] -rectify. : [u'Wait'] -the heap : [u'of'] -strange headgear : [u'began'] -everyday life : [u'.'] -advertising agency : [u'and'] -face as : [u'Holmes', u'I'] -face at : [u'my'] -That clay : [u'and'] -lightened already : [u'since'] -" Pshaw : [u'!', u','] -the head : [u'of', u'.'] -the Full : [u'Project'] -loans, : [u'where'] -He' : [u's', u'll', u'd'] -He! : [u'he'] -applying at : [u'6'] -are endeavouring : [u'to'] -never had : [u'any', u'occasion', u','] -only companion : [u'."'] -further inquiries : [u'."'] -have endured : [u'imprisonment'] -looked back : [u'to', u'.'] -no meaning : [u'to'] -tell his : [u'story'] -never has : [u'been'] -ladies who : [u'are', u'entered'] -address me : [u'as', u'always'] -outside. : ['PP'] -outside, : [u'and', u'well', u'I', u'however'] -been a : [u'most', u'little', u'case', u'long', u'very', u'pause', u'cry', u'surgeon', u'pretty', u'prisoner', u'disappointment', u'shock', u'strong', u'struggle', u'course', u'governess', u'better'] -his doings : [u':'] -judicial moods : [u'. "'] -least tell : [u'me'] -ignotum pro : [u'magnifico'] -credit for : [u'having'] -door, " : [u'yet'] -eBook for : [u'nearly'] -well opened : [u'eye'] -shall want : [u'your', u'a', u'you'] -searched, : [u'without', u'and'] -searched. : [u'Two'] -indications which : [u'might'] -long frock : [u'coat'] -do really : [u'it'] -and occasionally : [u',', u'even', u'during'] -very severe : [u'were'] -make him : [u'wash', u'cut', u'a', u'just'] -breakfast afterwards : [u'at'] -, raising : [u'his', u'up'] -I hesitated : [u'whether', u'to'] -must spend : [u'the'] -day he : [u'had'] -which call : [u'upon'] -on March : [u'10'] -" Circumstantial : [u'evidence'] -make his : [u'money', u'pile', u'task'] -headed Men : [u'.', u"?'"] -useless expense : [u','] -pure matter : [u'of'] -breakfast pipe : [u','] -sit, : [u'and'] -sit. : ['PP'] -clean shaven : [u'young', u','] -that advertisement : [u'.'] -how on : [u'earth'] -was charged : [u'with'] -License( : [u'available'] -out pirates : [u'who'] -from its : [u'side', u'horrid'] -Having laid : [u'out'] -purely nominal : [u'services', u".'", u"?'"] -gone twelve : [u'miles'] -the coarse : [u'brown'] -and predominates : [u'the'] -, broad : [u'brimmed'] -inn of : [u'repute'] -his taste : [u',"'] -interesting which : [u'has'] -To Clotilde : [u'Lothman'] -left side : [u',', u'.'] ---"" : [u'Never', u'Was', u'What', u'That', u'My', u'Oh', u'Mr', u'Is', u'Danger'] -doors, : [u'the'] -put the : [u'screen', u'box', u'matter', u'case', u'facts', u'worth', u'investigation'] -and distribute : [u'it', u'this'] -hall to : [u'this'] -church? : [u'I'] -explains what : [u'the'] -iron bed : [u','] -of Bakers : [u','] -considerable effort : [u'to', u','] -Engineer' : [u's'] -and passing : [u'his'] -usage at : [u'the'] -would leave : [u'a', u'him'] -had made : [u'a', u'an', u'it', u'so'] -his dressing : [u'gown'] -selection and : [u'discretion'] -door was : [u'shut', u'opened', u'unlocked', u'closed', u'fastened'] -It walked : [u'slowly'] -any information : [u'which'] -reached the : [u'same', u'corner', u'station', u'lawn', u'little', u'Copper', u'hall'] -Hatherley about : [u'three'] -s past : [u'life'] -, Bill : [u',"'] -at The : [u'Hague', u'Cedars'] -did to : [u'that', u'his'] -of women : [u','] -marked man : [u'in'] -for all : [u'red', u'that', u'I', u'our', u'works'] -chair. : ['PP', u'Will', u'I', u'This', u"'"] -chair, : [u'with', u'as', u'the', u'and', u'Watson', u'sat'] -betraying one : [u'who'] -We went : [u'upstairs'] -in deference : [u'to'] -money( : [u'if'] -I knew : [u'little', u'where', u'nothing', u'that', u'well', u'the', u'your', u'how', u'one', u'by', u',', u'at', u'what', u'my'] -old hat : [u'--"'] -than sufficient : [u'punishment'] -call your : [u'attention'] -and fearless : [u'in'] -deprived in : [u'an'] -room. : ['PP', u'Accustomed', u'There', u'He', u'The', u'Would', u'"', u'Now', u'A', u'I', u'For', u'All', u'An', u'Her', u'She', u'His', u'Sherlock', u'It', u'Petrified'] -room, : [u'pacing', u'while', u'which', u'and', u'followed', u'a', u'leaving', u'with', u'thick', u'upon', u'where', u'therefore', u'perhaps', u'but', u'when', u'on', u'humming', u'in', u'turning', u'covered', u'still', u'however', u'opened', u'slipped', u'passing', u'stretching', u'began', u'the', u'dusty', u'his'] -father at : [u'Bordeaux'] -could do : [u'with', u'which', u'to', u'this', u'without', u'nothing'] -of late : [u'.', u'years', u'he', u','] -, Ryder : [u',"', u','] -, drooping : [u'eyebrows', u'lids'] -affect your : [u'life'] -step daughter : [u','] -room; : [u'but'] -like to : [u'chat', u'do', u'ask', u'see', u'know', u'draw', u'vanish', u'submit'] -day citizens : [u'of'] -finger to : [u'warn', u'his'] -tossed them : [u'up', u'all'] -such skill : [u'that'] -delicacy, : [u'and'] -resided with : [u'him'] -delicacy. : [u'A'] -ship must : [u'have'] -before downloading : [u','] -myself as : [u'pitiable', u'to'] -actions. : [u'But', u'I'] -he called : [u'next', u'my'] -misfortune should : [u'occur'] -, provide : [u'a'] -a dissolute : [u'and'] -story to : [u'the', u'which'] -drooping eyebrows : [u'combined'] -I hurried : [u'to'] -to consult : [u'you', u'me'] -must draw : [u'him'] -the surest : [u'information'] -headed men : [u'who', u';'] -, to : [u'see', u'discover', u'resolve', u'say', u'a', u'my', u'Godfrey', u'get', u'watch', u'the', u'read', u'Duncan', u'be', u'work', u'raise', u'ask', u'make', u'prove', u'come', u'its', u'me', u'think', u'which', u'day', u'fulfil', u'reason', u'hear', u'whom', u'explain', u'this', u'return', u'understand', u'speak', u'call', u'tell', u'quote', u'show', u'cause', u'bring', u'preserve', u'your', u'listen', u'obey', u'turn'] -whistle. : [u'I', u'Of'] -whistle, : [u'yourself', u'such', u'but'] -intended to : [u'go'] -rapidly in : [u'the'] -and strolled : [u'out'] -sister described : [u','] -of prey : [u'.'] -have from : [u'all'] -roads, : [u'before'] -roads. : [u'And', 'PP'] -pull yourself : [u'together'] -man furiously : [u'.'] -pounds at : [u'once'] -misfortune like : [u'this'] -skirt, : [u'and'] -very tricky : [u'thing'] -rose bushes : [u'.', u'where'] -refuse a : [u'lady'] -mystery, : [u'my'] -mystery. : [u'I', 'PP', u'To'] -not uniform : [u'and'] -if we : [u'do', u'had', u'drive', u'have', u'were', u'could'] -awful business : [u'.'] -to open : [u'the', u'and', u'that', u'a', u'it'] -bitten. : [u'Violence'] -burst forth : [u'the'] -a drive : [u','] -Hotel at : [u'Winchester'] -to reclaim : [u'it'] -have seldom : [u'heard', u'seen'] -Streatham and : [u'saw'] -quite above : [u'suspicion'] -There," : [u'said'] -our web : [u'to'] -exacted upon : [u'a'] -thud of : [u'a'] -preceding evening : [u','] -damages, : [u'costs'] -incapable of : [u'employing'] -he rose : [u'from', u'to', u'and'] -put in : [u'the', u'a', u'our'] -always as : [u'good', u'keen'] -my waistcoat : [u'pocket'] -ask if : [u'we'] -always at : [u'a'] -must return : [u'the'] -moment for : [u'the'] -first real : [u'insight'] -also that : [u'whoever', u'he', u'there'] -You shave : [u'every'] -it expressly : [u'for'] -put it : [u'to', u'through', u'into', u"?'", u'on'] -swore that : [u'no', u'the'] -I ate : [u'is'] -composer of : [u'no'] -only point : [u'which'] -now sleeping : [u'in', u','] -and imminent : [u'danger'] -great liberties : [u'.'] -, nothing : [u'.', u'had', u'more', u'of'] -undergo the : [u'wedding'] -your revenge : [u'upon'] -thought there : [u'were', u'might'] -lose your : [u'billet', u'wife'] -of mendicants : [u'and'] -out." : [u'He'] -those clues : [u','] -do all : [u'our'] -got a : [u'knife', u'dog', u'few'] -When evening : [u'came'] -neither. : [u'Women'] -after thinking : [u'it'] -took our : [u'seats'] -shutters cut : [u'off'] -remained with : [u'Horner'] -ready when : [u'he'] -several in : [u'it'] -marks my : [u'zero'] -seller but : [u'really'] -monograph some : [u'of'] -we followed : [u'them'] -of value : [u".'", u',', u',"'] -and well : [u'.', u',', u'nurtured', u'cut'] -Simon has : [u'no', u'been', u'not'] -twenty one : [u'years'] -anger from : [u'the'] -proprietor in : [u'that'] -and slipping : [u'off'] -Armitage Percy : [u'Armitage'] -is conjectured : [u'to', u'that'] -Simon had : [u'by'] -he loves : [u'her'] -fight between : [u'my'] -too!' : [u'I'] -were frequently : [u'together', u'seen'] -singular account : [u'of'] -the letters : [u'are', u'in', u',"', u'"'] -scandal which : [u'would'] -arms. : [u'Of'] -arms, : [u'but'] -she got : [u'brain', u'better'] -a loose : [u'network'] -those details : [u'which'] -his arrest : [u'did'] -be early : [u'enough'] -all up : [u'for', u'so', u'I'] -last long : [u','] -will call : [u'upon', u'a', u'at'] -friendly footing : [u'?"', u'for', u'.'] -me one : [u'for'] -veiled his : [u'keen'] -had that : [u'very'] -custody. : [u'A'] -custody, : [u'and'] -perfectly correct : [u',"'] -Pray let : [u'me', u'us'] -aperture, : [u'drew', u'the'] -aperture. : [u'His'] -Zealand stock : [u','] -given it : [u'up'] -seated myself : [u'in'] -again. : [u'He', 'PP', u'As', u'I', u'Deeply', u'She', u'Then', u'Perhaps', u'Oh'] -cannot tell : [u'."', u'where', u'.'] -again, : [u'and', u'I', u'Mr', u'Doctor', u'then', u'the', u'however', u'where', u'my'] -in; : [u'but'] -moonlight. : [u'Sir'] -yet you : [u'have', u'cannot', u'had'] -in, : [u'marm', u'and', u'the', u'he', u'a', u'uttering', u'dangling', u'but', u'while', u'her', u'when', u'year'] -again; : [u'for', u'he'] -in. : [u'She', u'What', 'PP', u'in', u'You', u'How', u'I'] -clients the : [u'same'] -are so : [u'very', u'extremely', u'obvious', u'vague', u'closely'] -answered frankly : [u'. "'] -accept anything : [u'under'] -in' : [u'77', u'83', u'84', u'Frisco'] -white splash : [u'of'] -restrain me : [u'from'] -which Holmes : [u'had', u'leaned'] -by wigs : [u'and'] -clumsy and : [u'careless'] -In which : [u','] -you do : [u'not', u'it', u'then', u',', u'find', u'?"', u'or'] -him here : [u'?"', u',"', u','] -" Eh : [u'?'] -slumber. : [u'Holmes'] -McCarthy became : [u'his'] -a heavy : [u'brown', u'chamois', u'brassy', u'fur', u'footfall', u'blow', u'one', u'mortgage', u'stick'] -I perceived : [u'that'] -lounged down : [u'the'] -an immense : [u'scandal', u'litter', u'ostrich', u'rpertoire'] -the advantages : [u'of'] -same crowded : [u'thoroughfare'] -to throw : [u',', u'in', u'any', u'up'] -repairs at : [u'that'] -the frill : [u'of'] -, " are : [u'you'] -foolscap paper : [u','] -She could : [u'trust', u'not'] -? With : [u'trembling'] -and indistinguishable : [u'.'] -vows of : [u'fidelity'] -!" And : [u'no'] -were bloodless : [u','] -London press : [u'has'] -, featureless : [u'crimes'] -roll from : [u'his'] -a price : [u'upon', u'for'] -exceptional strength : [u'in'] -never let : [u'it'] -But my : [u'memory'] -speak as : [u'freely'] -done something : [u'clever'] -the lumber : [u'room'] -her carriage : [u'.', u',', u'at', u'rattle'] -for Dr : [u'.'] -, swinging : [u'it', u'an'] -treatment of : [u'donations'] -print than : [u'when'] -of roughs : [u'.', u'who'] -for free : [u''] -man named : [u'Oakshott'] -I caught : [u'a', u'it'] -to quench : [u'what'] -of various : [u'formats'] -From his : [u'hat'] -keenly on : [u'the', u'my'] -individual Project : [u'Gutenberg'] -as blind : [u'as'] -was repelled : [u'by'] -had some : [u'play', u'strong', u'skirmishes', u'very', u'slight', u'claim', u'great', u'secret'] -Pshaw! : [u'They'] -monger and : [u'a'] -Pshaw, : [u'my'] -prank upon : [u'me'] -is lost : [u'."', u'in'] -old key : [u'will'] -the fingers : [u','] -He knows : [u'it'] -. Out : [u'of', u'there'] -friend smiled : [u'.'] -. Our : [u'visitor', u'cabs', u'reserve', u'own', u'footfalls', u'client', u'gas'] -twopence, : [u'a'] -us away : [u'from'] -almost every : [u'link'] -s heads : [u'down'] -His remarks : [u'were'] -Most of : [u'his'] -From my : [u'position'] -the friends : [u'to'] -1870 he : [u'came'] -languid, : [u'lounging', u'dreamy'] -very kindly : [u'escorted', u'given'] -dangerous pet : [u'.'] -was wearing : [u'were'] -sharp cry : [u'of'] -defence was : [u'one'] -claws upon : [u'anyone'] -. Henry : [u'Baker'] -feared to : [u'change', u'find', u'refer'] -mistress? : [u'If'] -then called : [u'and'] -Every clue : [u'seems'] -important commissions : [u'to'] -better men : [u'before'] -celebrated so : [u'quietly'] -or saying : [u'.'] -young man : [u',', u'was', u"'", u'had', u'says', u'come', u'pulled', u'and', u'took', u'would'] -; " the : [u'deadliest', u'ladder'] -are grounds : [u'round'] -mistress, : [u'believing'] -to life : [u'itself', u'and'] -I watched : [u'my'] -voice whispered : [u', "'] -some perplexity : [u', "', u'from'] -ll know : [u'all'] -still we : [u'sat'] -THIS PROJECT : [u'GUTENBERG'] -and cobwebby : [u'bottles'] -eagerly for : [u'you'] -put two : [u'rooms'] -hours I : [u'plied'] -in those : [u'exalted'] -, fastening : [u'upon'] -story which : [u'we', u'our'] -left from : [u'his'] -!" and : [u'I'] -does implicate : [u'Miss'] -, compressed : [u','] -opinion is : [u',', u'in'] -, pressing : [u'my'] -hair until : [u'I'] -banking concern : [u'in'] -small feet : [u'and'] -retrogression. : ['PP'] -then composed : [u'himself'] -took many : [u'hours'] -an alias : [u'."'] -for winter : [u'.'] -fascinating and : [u'so'] -hair as : [u'yours'] -heart began : [u'to'] -it myself : [u',', u'with'] -to listen : [u'to', u'.'] -the method : [u',', u''] -is wherever : [u'Sir'] -not present : [u'a'] -"' Then : [u',', u'if', u'let', u'we', u'the'] -a book : [u'.', u','] -permanent future : [u'for'] -coronet was : [u'national', u'a'] -adventures started : [u'.'] -another piece : [u"?'"] -do pretty : [u'well'] -file should : [u'be'] -slums to : [u'Covent'] -heads might : [u'have'] -"' They : [u'may'] -the preceding : [u'night', u'evening'] -tm trademark : [u'as', u',', u'.'] -establish his : [u'innocence'] -a boot : [u'lace', u'to'] -slept badly : [u'on'] -my bunch : [u'of'] -Foundation( : [u'and'] -Foundation. : [u'Royalty', 'PP'] -Foundation, : [u'the', u'anyone', u'how'] -stains upon : [u'his', u'the'] -Foundation" : [u'or'] -own fate : [u'was'] -Foundation' : [u's'] -the Hatherley : [u'Farm', u'side'] -trace her : [u'.'] -a hopeless : [u'attempt'] -case unfinished : [u'?"'] -a library : [u'of'] -, going : [u'the', u'back'] -this old : [u'battered', u'doctor'] -eight months : [u'have'] -very heavily : [u',', u'upon'] -To morrow : [u'I'] -really managed : [u'by'] -resided. : [u'Some'] -hastened downstairs : [u'.'] -any grievance : [u'against'] -some place : [u'of'] -? Oh : [u','] -others talked : [u'together'] -she disappeared : [u'into'] -.' Hum : [u"! '"] -those faculties : [u'of'] -Rucastle drew : [u'down'] -His expression : [u','] -been worn : [u'before'] -employees are : [u'scattered'] -two syllables : [u'.'] -redistribute this : [u'electronic'] -should feel : [u'so'] -a lad : [u'."', u'of', u','] -factory at : [u'Coventry'] -give him : [u'.', u'credit', u'the', u'a', u'an', u','] -a poison : [u'would'] -kindliness with : [u'which'] -paying copyright : [u'royalties'] -hours a : [u'day'] -business for : [u'myself', u'me'] -in Horace : [u','] -of waiting : [u'.'] -evidently the : [u'man'] -that clue : [u'.'] -each to : [u'receive'] -in extending : [u'the'] -He denied : [u'strenuously'] -shining brightly : [u'between', u'.'] -twenty past : [u','] -fitted the : [u'tracks'] -But since : [u'we'] -she reached : [u'home'] -Was Under : [u'Secretary'] -off my : [u'clothes', u'ring', u'shoes', u'hair'] -temperate habits : [u','] -with little : [u'fleecy'] -wife has : [u'given', u'been', u'ceased'] -very willing : [u'to'] -Countess, : [u'deposed'] -repairs were : [u'started'] -gaiters. : [u'He'] -tied one : [u'end'] -a fly : [u'.', u'."'] -highroad at : [u'the'] -had described : [u'.'] -wife found : [u'in'] -nothing so : [u'unnatural', u'important'] -placed them : [u'upon'] -anyone to : [u'pass', u'acquire'] -fool of : [u'myself'] -above the : [u'right', u'age', u'wrist', u'gum', u'door', u'opium', u'ground', u'middle', u'fireplace'] -alive and : [u'well', u'able'] -Lodge once : [u'more'] -ascend. : [u'Swiftly'] -enough." : [u'She'] -money troubles : [u'have'] -In an : [u'instant'] -the blows : [u'of'] -fain have : [u'said'] -was bringing : [u'home'] -. Windigate : [u'of', u','] -none," : [u'said', u'he'] -should possess : [u'all'] -the advertising : [u'agency'] -may trust : [u'with'] -the plannings : [u','] -, orange : [u','] -lowest and : [u'vilest'] -narrow had : [u'been'] -, whispered : [u'something'] -Thames. : [u'The'] -lately, : [u'and', u'I'] -where their : [u'accounts'] -My opinion : [u'is'] -might solder : [u'the'] -had any : [u'family', u'dislike', u'influence'] -hope to : [u'see', u'get', u'arrive', u'goodness', u'find'] -a crust : [u'of'] -himself cross : [u'legged'] -or distribute : [u'copies', u'a'] -any satisfactory : [u'cause'] -utmost use : [u'to'] -Armitage the : [u'second'] -very moment : [u','] -within me : [u'at'] -shall drop : [u'you'] -its fulfilment : [u','] -written with : [u'a'] -campaign. : ['PP'] -boy had : [u'run', u'some'] -save us : [u'a'] -" Excuse : [u'me'] -within my : [u'experience', u'own'] -boy has : [u'asked'] -of life : [u'yet', u'and', u'do', u'?"', u'.'] -twisted lip : [u'which', u'.', u','] -, gaping : [u'hole'] -that our : [u'landlady', u'lady', u'troubles', u'inquiry', u'door', u'little', u'smiles', u'client', u'hands', u'locus'] -own and : [u'that'] -that out : [u',"'] -reconsider my : [u'resolution'] -been shown : [u'a'] -became absolutely : [u'clear'] -but has : [u'less'] -theory as : [u'to'] -You think : [u'that', u'so'] -my description : [u'of'] -Lodge was : [u'open'] -other obvious : [u'facts'] -seat. " : [u'Both'] -gush of : [u'hope'] -September, : [u'and'] -yourself have : [u'remarked'] -and whispered : [u'something'] -who cares : [u'for'] -blotches. : [u'I'] -ready with : [u'a'] -the city : [u'to', u','] -fools in : [u'Europe'] -to hand : [u','] -stalked out : [u'of'] -than upon : [u'the'] -outbursts which : [u'come'] -name a : [u'subject'] -lay amid : [u'the'] -Endell Street : [u','] -cannot count : [u'upon'] -passage window : [u'could'] -not tend : [u'towards'] -do exactly : [u'what'] -offer seemed : [u'almost'] -had betrayed : [u'myself'] -a purely : [u'animal'] -love. : [u'I'] -may only : [u'be'] -found they : [u'led'] -you presently : [u'."'] -fears, : [u'she'] -of Holmes : [u'lately', u'from', u'the'] -fears. : [u'My'] -anxious to : [u'have', u'leave', u'consult'] -you charge : [u'for'] -answer will : [u'prejudice'] -fairly clear : [u'.', u','] -venture to : [u'say', u'set'] -the villain : [u'was'] -had drenched : [u'his'] -. Chance : [u'has'] -who really : [u'profited', u'knows'] -facilitate matters : [u'immensely'] -of mingled : [u'horror'] -scene. : ['PP'] -FULL PROJECT : [u'GUTENBERG'] -some hundreds : [u'of'] -. Fordham : [u'shows'] -that none : [u'could', u'had'] -lantern in : [u'one'] -bedroom and : [u'returned', u'sitting'] -vanish from : [u'your'] -animated. : [u'There'] -a cosy : [u'room'] -symptom is : [u'a'] -ten to : [u'morrow'] -lonely and : [u'dishonoured', u'eerie'] -other loves : [u','] -revolver," : [u'said'] -.-- Oh : [u','] -assert that : [u'in'] -terms imposed : [u'by'] -At what : [u'time'] -shed in : [u'the'] -ll find : [u'that', u'it'] -four successive : [u'heirs'] -only the : [u'ground', u'day', u'name'] -come upon : [u'him', u'himself', u'my', u'a', u'me', u'.'] -sat now : [u'as'] -Bridge. : [u'Between'] -Bridge, : [u'heard'] -cease and : [u'to'] -distinctly novel : [u'about'] -lunatic, : [u'that'] -is scored : [u'by'] -observation, : [u'not', u'and'] -It brings : [u'me'] -advantage as : [u'well'] -Miss Helen : [u'Stoner'] -full extent : [u'permitted'] -lighting a : [u'cigarette'] -evenings. : ['PP'] -eBooks are : [u'often'] -to too : [u'great'] -foresaw happened : [u'."'] -this maid : [u','] -exercise. : [u'I'] -arduous work : [u'at'] -of our : [u'chase', u'expedition', u'visitor', u'sitting', u'boys', u'lives', u'friendship', u'fellow', u'horse', u'quest', u'new', u'marriage', u'own', u'time', u'visit', u'intimacy', u'fair', u'engagement', u'depositors', u'most', u'dear', u'cases'] -matters like : [u'that'] -you let : [u'me'] -drooping lids : [u','] -my zero : [u'point'] -to cheer : [u'me'] -the machine : [u',', u'had', u".'", u'and', u'very', u'to'] -looked about : [u'him', u'her'] -who soon : [u'pushed'] -middle height : [u','] -seven hundred : [u'in'] -panelled. : [u'Finally'] -other hand : [u','] -minor points : [u'which'] -, told : [u'me', u'him'] -prosecution must : [u'be'] -set an : [u'edge'] -. McCarthy : [u'had', u'kept', u'was', u'pass', u'and', u'the', u'came', u'threatened'] -she cried : [u", '", u', "', u',', u'; "', u'breathlessly', u'in'] -your door : [u','] -were twins : [u','] -suited for : [u'it'] -window was : [u'open', u'a'] -. Someone : [u'in'] -the top : [u'of', u'with', u'.'] -but built : [u'out'] -no traces : [u'of'] -practically accomplished : [u';'] -in Cornwall : [u'the'] -he tore : [u'the'] -Boone the : [u'one'] -shrimp it : [u'is'] -called monotonous : [u',"'] -him; : [u'so', u'they'] -Isa. : [u'He'] -marked in : [u'places'] -real, : [u'real'] -affairs of : [u'my'] -leaves in : [u'some'] -was asked : [u'to'] -, DIRECT : [u','] -you until : [u'your'] -, intelligent : [u'face'] -. " Be : [u'it'] -sudden glare : [u'flashing'] -itself during : [u'the'] -disgraceful brawls : [u'took'] -hazarded some : [u'remark'] -addresses. : [u'Donations'] -could use : [u'her'] -to answer : [u'the', u'.', u'will', u'for'] -heard nothing : [u'yourself', u'of'] -chair very : [u'close'] -:// www : [u'.'] -City and : [u'Suburban'] -aspired to : [u'without'] -slight stagger : [u','] -for Arthur : [u'blinds'] -rattled through : [u'an'] -is some : [u'little', u'building', u'obstacle', u'stiffness'] -reasonable fee : [u'for'] -had thrust : [u'Neville'] -others have : [u'not', u'been'] -rights of : [u'it', u'her'] -and expenses : [u','] -Another, : [u'Lucy'] -in Rotterdam : [u'."'] -of less : [u'moment'] -they need : [u'are'] -small staff : [u'.'] -bush, : [u'and'] -the lamp : [u'away', u',', u'and', u'I', u'was', u'onto', u'nearly', u'in', u'on', u'from'] -many are : [u'there'] -a poky : [u','] -with here : [u'and'] -" Pooh : [u','] -carried on : [u'his', u'with'] -And that : [u'was', u'is'] -bind two : [u'souls'] -instant I : [u'saw', u'could', u'threw'] -The work : [u'appears'] -its complete : [u'loss'] -knots. : [u'That'] -absolutely safe : [u'from'] -sat after : [u'breakfast'] -keeper of : [u'the', u'a'] -of volunteer : [u'support'] -was obliged : [u'to'] -still refused : [u'to'] -a kindly : [u'eye'] -second bar : [u'of'] -to obey : [u'any'] -stepfather. : [u'I', u'Then', 'PP'] -stepfather, : [u'surely', u'returned', u'Mr', u'who', u'seeing', u'and'] -the wicket : [u'gate'] -us and : [u'walked', u'took', u'submit', u'strode'] -hands now : [u'so'] -stepfather' : [u's'] -whole case : [u'is'] -discoloured patches : [u'by'] -was pierced : [u'in'] -pay ransacked : [u'her'] -was exchanged : [u'for'] -beating and : [u'splashing'] -hoofs. : ['PP'] -popular man : [u','] -lady on : [u'the'] -humble apology : [u'to'] -you use : [u'an'] -Morcar' : [u's'] -She raised : [u'her'] -not get : [u'his'] -very shortly : [u'after', u'take'] -were so : [u'many', u'secret', u'like'] -have opened : [u'it'] -upon itself : [u'and'] -thin form : [u'curled'] -same intention : [u'.'] -heavens. : [u'The'] -the sofa : [u'is', u'and', u',"', u'in', u'to', u','] -declared my : [u'intention'] -. Except : [u'for'] -more closely : [u'into'] -the soft : [u'mould'] -satisfactory cause : [u'of'] -we drive : [u'to'] -words as : [u'will', u'we'] -the meadow : [u'.'] -mortal eye : [u';'] -amiss if : [u'your'] -they carried : [u'me'] -poor fellow : [u','] -on our : [u'friend', u'ulsters', u'sombre', u'way'] -sitting round : [u'that'] -his violence : [u'of'] -was just : [u'wondering', u'balancing', u'such', u'a', u'seven'] -asleep," : [u'said'] -wife you : [u'said'] -prosperity to : [u'your'] -each of : [u'us', u'your', u'which'] -from somewhere : [u'downstairs'] -For how : [u'long'] -a gasogene : [u'in'] -has just : [u'been'] -whole they : [u'seemed'] -looked very : [u'scared', u'hard'] -her several : [u'times'] -what passed : [u'between', u'in'] -the whip : [u','] -would lead : [u'up'] -of obstinacy : [u'.'] -the clock : [u'.', u'on', u'makes'] -his tread : [u'was'] -entries against : [u'him'] -several passers : [u'by'] -own right : [u','] -s young : [u'wife'] -. Additional : [u'terms'] -so may : [u'he'] -no mystery : [u','] -fire until : [u'he'] -tangled red : [u'hair'] -A frayed : [u'top'] -have horrors : [u'enough'] -explanation may : [u'be'] -burning brightly : [u','] -harm. : [u'I', 'PP'] -the famous : [u'coronet'] -lit the : [u'lamp', u'light', u'cigar'] -clear to : [u'you', u'me', u'them'] -the bill : [u'of'] -wigs and : [u'once'] -acted differently : [u'this'] -you might : [u'think', u'see', u'have', u'roughly', u'cause', u'tell'] -curses of : [u'a'] -find neither : [u'us'] -I surprised : [u'you'] -following him : [u'.', u'they'] -household word : [u'all'] -shiny for : [u'five'] -openness, : [u'but'] -despair. " : [u'If'] -boxes, : [u'and'] -got her : [u'packet'] -for years : [u'and', u'back', u'.', u'been'] -mad to : [u'think', u'know'] -so with : [u'me'] -find little : [u'credit'] -and within : [u'seven'] -unpleasant couple : [u','] -who struck : [u'savagely'] -marines, : [u'to'] -were thirty : [u'six'] -, octavo : [u'size'] -our faces : [u','] -wonderfully sharp : [u'and'] -upon hats : [u'.'] -they manage : [u'to'] -good Berkshire : [u'beef'] -better before : [u'very'] -wide spread : [u'public'] -as akin : [u'to'] -somewhere. : ['PP', u'I'] -are close : [u'there'] -scar which : [u'had'] -THE BLUE : [u'CARBUNCLE'] -give details : [u'of'] -hands together : [u'.', u'in'] -concealed the : [u'gems'] -especially commercial : [u'redistribution'] -bark of : [u'the'] -arm of : [u'your', u'the'] -last Friday : [u','] -your rooms : [u'were', u'at'] -inquiry on : [u'hand'] -will rise : [u'from'] -was shaken : [u'but'] -and for : [u'its', u'daring', u'you', u'the', u'a', u'many', u'me', u'six'] -conception as : [u'to'] ---" The : [u'man'] -head while : [u'the'] -s example : [u'."'] -Munich the : [u'year'] -Holmes slowly : [u'reopened'] -view that : [u'what'] -left one : [u'with'] -knee. " : [u'Here'] -deceased, : [u'was'] -the stalls : [u'wrapped'] -tattooed immediately : [u'above'] -not restrain : [u'me'] -in spite : [u'of'] -implies, : [u'as'] -event which : [u'has'] -tells me : [u'that'] -and give : [u'us', u'you'] -and strange : [u'features'] -the course : [u'of'] -and protested : [u'his'] -done with : [u'it', u'the'] -, something : [u'just'] -his money : [u'in', u'."', u'?"'] -dirty scoundrel : [u'."'] -the exception : [u'of'] -, near : [u'the', u'St', u'King', u'Horsham', u'at', u'Reading', u'Petersfield', u'Winchester'] -much indebted : [u'to'] -somewhat of : [u'a'] -and speech : [u'of'] -damp and : [u'bad'] -to atone : [u'for'] -You need : [u'not'] -mistake had : [u'been', u'occurred'] -am immensely : [u'indebted'] -comes from : [u'London', u'the'] -grocer who : [u'brings'] -I congratulate : [u'you'] -than five : [u',', u'and'] -to another : [u'man', u',', u'broad'] -passed through : [u'it'] -blue in : [u'shade'] -been inflicted : [u'by'] -large dark : [u'eyes'] -this fault : [u'was'] -but even : [u'the'] -while Breckinridge : [u','] -Terrible! : [u'She'] -up what : [u'seemed'] -a keen : [u'desire', u'eye'] -been freed : [u'during'] -lover evidently : [u','] -father should : [u','] -in playing : [u'this'] -a perfect : [u'day', u'sample'] -is imprisoned : [u'in'] -reports realism : [u'pushed'] -nothing very : [u'formidable', u'instructive'] -a narrative : [u'which'] -long run : [u'.'] -stately, : [u'old'] -you we : [u'have'] -characteristic of : [u'him', u'the'] -fourth was : [u'shuttered'] -the copying : [u'of'] -filed into : [u'the'] -that provided : [u'you'] -county police : [u'know'] -; " did : [u'you'] -riverside landing : [u'stages'] -god' : [u's'] -easterly I : [u'have'] -of pipe : [u','] -advantages and : [u'all'] -pulled up : [u'before', u',', u'in'] -answered in : [u'a'] -a glowing : [u'cinder'] -in only : [u'once'] -pinched and : [u'fallen'] -of pips : [u','] -was suffering : [u'from'] -get nothing : [u'to'] -deal to : [u'go'] -frequently found : [u'my'] -danger when : [u'he'] -track until : [u'we'] -Now, : [u'I', u'Mr', u'if', u'it', u'what', u'when', u'you', u'let', u'how', u'for', u'Watson', u'by', u'then', u'look', u'we', u'on', u'would', u'of', u'Robert', u'my'] -chanced to : [u'be'] -This photograph : [u'!"'] -featureless crimes : [u'which'] -" All : [u'right'] -We shall : [u'see', u'endeavour', u'now', u'soon', u'spend', u'just', u'want', u'be', u'then'] -busybody. : ['PP'] -while Holmes : [u',', u'fell', u'had'] -her presence : [u'could'] -daring I : [u'am'] -impulse which : [u'caused'] -my flight : [u'.'] -any bearing : [u'upon'] -and sees : [u'whether'] -wheels against : [u'the'] -little credit : [u'to'] -yelled. " : [u'You'] -too closely : [u'."'] -dropped to : [u'the'] -just this : [u'day'] -one"-- : [u'he'] -month. : [u'Yet'] -its side : [u'and', u'lanterns'] -the quiet : [u'streets', u'thinker'] -very window : [u'a'] -of putty : [u','] -go home : [u',', u'now', u'with'] -mud bank : [u'what'] -sundials and : [u'papers'] -are interested : [u'in'] -bedrooms opened : [u'.'] -evenings transform : [u'myself'] -Mary Holder : [u'.'] -, BREACH : [u'OF'] -two hours : [u'we', u'before', u'if'] -my wishes : [u'that', u'.'] -the maker : [u','] -his socks : [u','] -nodded and : [u'shot'] -toy would : [u'be'] -my dress : [u'and', u',', u'.'] -died young : [u'she'] -no uncommon : [u'thing'] -for particulars : [u'.'] -real person : [u'is'] -only after : [u'a'] -considering this : [u'case'] -lifeless as : [u'some'] -within a : [u'few', u'dozen', u'very', u'twentieth', u'fortnight', u'minute', u'week'] -sunbeam in : [u'my'] -my elbow : [u'.'] -which told : [u'us', u'me'] -medium with : [u'your'] -gave at : [u'once'] -hysterical, : [u'nor'] -inspector of : [u'constabulary'] -fit the : [u'lock'] -most entertaining : [u'one', u',"'] -taking you : [u'to'] -cry, : [u'and', u'she'] -had stepped : [u'from'] -and once : [u'by', u'he', u'at'] -wake a : [u'household'] -had refused : [u'to'] -cry' : [u'Cooee'] -tint, : [u'so', u'and'] -tint. : [u'When'] -another broad : [u'passage'] -or five : [u'minutes', u'miles'] -loudly as : [u'we'] -understand afterwards : [u'if'] -words fell : [u'quite'] -father could : [u'have'] -at 7s : [u'.'] -ever was : [u'seen'] -with flame : [u'coloured'] -of Frank : [u'was'] -s merely : [u'taking'] -not rich : [u','] -room which : [u'I', u'you'] -he possess : [u'so'] -the tiniest : [u'iota'] -you touch : [u'that'] -impatience. : ['PP'] -his languid : [u','] -a conclusive : [u'proof'] -beryls are : [u','] -a booted : [u'man'] -who got : [u'out'] -our fellow : [u'men'] -train back : [u'.'] -had finally : [u'been', u'abandoned'] -hand mirror : [u'had'] -those wretched : [u'gipsies'] -a nice : [u'little', u'household'] -McQuire' : [u's'] -to lock : [u'yourselves'] -In dress : [u'now'] -the trouser : [u'.'] -brother. : ['PP'] -stared in : [u'bewilderment'] -brother, : [u'your'] -reasoner should : [u'be'] -singular points : [u'about'] -. Pray : [u'tell', u'what', u'proceed', u'step', u'take', u'draw', u'continue', u'give', u'let', u'wait'] -been thrown : [u'into'] -with dignity : [u'after'] -I lounged : [u'up'] -hat which : [u'was'] -paying any : [u'fees'] -was your : [u'daughter', u'oil', u'son'] -accent. : [u"'"] -In his : [u'eyes', u'singular'] -little likely : [u'to'] -ways unique : [u','] -should absolutely : [u'follow'] -from Montague : [u'Place'] -hand side : [u',', u'of'] -degree of : [u'self'] -s self : [u'under'] -papers about : [u'a'] -Paramore, : [u'and'] -the barred : [u'tail'] -breathed his : [u'vows'] -his heart : [u'.'] -drove him : [u'from', u'.'] -A shadow : [u'of'] -some days : [u'."', u',"'] -said nothing : [u',', u'of'] -many other : [u'things'] -promise. : ['PP'] -pigments and : [u'wig'] -speak the : [u'truth'] -I endeavoured : [u'to'] -is round : [u'in'] -saying. : [u'I'] -We would : [u'not'] -from breaking : [u'out'] -light that : [u'every', u'I'] -" associated : [u'with'] -Hunter.' : [u'She'] -door banged : [u','] -royalties. : [u'Special'] -as quietly : [u'as'] -of trustees : [u','] -number. : [u'Next'] -employees expend : [u'considerable'] -Rucastle met : [u'me'] -arrested, : [u'and', u'it'] -arrested. : ['PP', u'You', u'It'] -gazing down : [u'into'] -very abusive : [u'expressions'] -in Gordon : [u'Square'] -were fewer : [u'passengers'] -cross purposes : [u','] -, wished : [u'you'] -was turning : [u'round'] -They all : [u'appear'] -and eager : [u'nature'] -own heart : [u'.'] -has data : [u'.'] -We called : [u'at'] -me expound : [u'."'] -Harris tweed : [u'trousers'] -by any : [u'chemical', u'sort'] -these lie : [u'undoubtedly'] -carriage to : [u'ourselves', u'night', u'meet'] -Duncan Ross : [u',', u"; '", u'was', u'took', u'."'] -Any alternate : [u'format'] -depend very : [u'much'] -the terrified : [u'girl'] -the landau : [u'with'] -handed man : [u'?'] -: http : [u'://'] -a tapping : [u'at'] -noiseless lock : [u',"'] -At some : [u'evidence'] -a comparatively : [u'small'] -now faint : [u','] -heard in : [u'the'] -change colour : [u','] -far that : [u'we'] -absolutely desperate : [u'villain'] -a thoroughly : [u'good'] -." My : [u'friend', u'experience'] -little worn : [u',"'] -." Mr : [u'.'] -were visible : [u'upon'] -a tinker : [u"'"] -her some : [u'compromising'] -." At : [u'Waterloo', u'the'] -reading the : [u'agony', u'papers'] -which runs : [u'down'] -to determine : [u'."', u'.'] -must turn : [u'over', u'to'] -resting upon : [u'his'] -rather peculiar : [u'tint'] -IN. : ['PP'] -idea how : [u'he'] -ventured to : [u'give'] -near Harrow : [u','] -a parallel : [u'instance'] -legs, : [u'crop'] -the buzz : [u'of'] -his memory : [u'with'] -heads of : [u'their', u'your'] -of calling : [u'the'] -she met : [u'this', u'her', u'Mr'] -staggering out : [u'at'] -asked Holmes : [u'.', u'. "', u',', u'with'] -a hesitating : [u','] -more deceptive : [u'than'] -paper mills : [u".'"] -repeated. : [u'There'] -to something : [u'entirely', u'more', u'abnormal'] -safety? : [u'I'] -care to : [u'come', u'possess', u'use', u'spend', u'your'] -terms than : [u'are'] -his key : [u'into'] -nearer the : [u'mark'] -prisoner turned : [u'with'] -purse and : [u'watch'] -Gang. : ['PP'] -large sum : [u'due'] -hastening from : [u'his'] -the Dundas : [u'separation'] -safety. : [u'And', 'PP'] -ADVENTURE IV : [u'.'] -though there : [u'are', u'had'] -trouble!" : [u'she'] -passed in : [u'the'] -at 12s : [u'.\'"'] -there was : [u'but', u'the', u'a', u'something', u'nothing', u'to', u'not', u'no', u'his', u'probably', u'my', u'even', u'an', u'behind'] -maximum disclaimer : [u'or'] -be exceedingly : [u'glad'] -fine actor : [u','] -ADVENTURE II : [u'.'] -by way : [u'of'] -them," : [u'I'] -' Colonel : [u'Lysander'] -better if : [u'I'] -Both you : [u'and'] -written straight : [u'off'] -Georgia, : [u'and'] -Georgia. : ['PP'] -Every pocket : [u'stuffed'] -statements instead : [u'of'] -daughter with : [u'as'] -half open : [u','] -been written : [u'straight', u'on'] -gave me : [u'a', u'the', u'so', u'that'] -" Watson : [u','] -of offended : [u'dignity'] -but neatly : [u'dressed'] -unravel. : ['PP'] -least a : [u'most', u'presumption', u'strong', u'curious', u'fellow', u'shade'] -told Arthur : [u'and'] -reserve of : [u'bullion'] -promises to : [u'be'] -with damp : [u'and'] -,' as : [u'Gustave'] -case must : [u'collapse'] -the empty : [u'wing'] -all shall : [u'be'] -s hand : [u'?"', u','] -Holmes impatient : [u'under'] -first I : [u'was', u'thought'] -. Becher : [u"'", u'a', u'is'] -from Prague : [u'for'] -turned back : [u'to'] -same trivial : [u'but'] -the acquaintance : [u'of'] -, alone : [u'.'] -good fortune : [u',', u'.'] -town suppliers : [u'.'] -sob in : [u'a'] -only son : [u'of', u','] -just transferred : [u'to'] -the hole : [u'and', u','] -in hope : [u','] -waiting outside : [u'in', u'.'] -boat will : [u'have'] -across a : [u'broad'] -Monday. : ['PP'] -sufferer. : [u'It'] -gentlemen, : [u'ostlers', u'as', u'of'] -shake hands : [u'before'] -give your : [u'reasons', u'casting'] -absence having : [u'caused'] -roughs. : [u'One'] -. Surely : [u'your'] -and sharp : [u'instrument'] -some remembrance : [u',"'] -right as : [u'possible'] -select. : ['PP'] -were sufficient : [u'to'] -fierce and : [u'quick'] -Rucastle let : [u'me'] -of excellent : [u'material'] -have explained : [u'the'] -in part : [u'my'] -dried itself : [u'.'] -As far : [u'as'] -and half : [u',', u'a', u'pennies'] -then look : [u'back', u'thoroughly'] -want and : [u'forestalling'] -yourself formed : [u'some'] -of learning : [u'and'] -break the : [u'monotony'] -it so : [u',"', u'?"', u",'"] -the bathroom : [u',"'] -evidently, : [u'for'] -thanks to : [u'this'] -on piling : [u'fact'] -anger all : [u'mingled'] -,' : [u'There', u'you'] -," : [u'Very', u'IRENE', u'for', u'and', u'because', u'that', u'we', u'you', u'VIOLET'] -from a : [u'journey', u'slim', u'lady', u'boot', u'woman', u'blunt', u'sudden', u'basin', u'book', u'weary', u'second', u'solution', u'tree', u'close', u'gas', u'rifled', u'salesman', u'relative', u'clump', u'kettle', u'night', u'caraffe', u'man', u'pit', u'captured', u'fish', u'noble', u'line', u'Republican', u'great'] -,. : ['PP'] -I, " : [u'this', u'Mr', u'that', u'I', u'if', u'is', u'because'] -which broke : [u'out'] -I, ' : [u'and', u'there', u'the', u'you', u'I', u'were'] -must always : [u'be'] -Toller," : [u'said'] -wonderful sympathy : [u'and'] -the spring : [u'.', u'and'] -puzzled now : [u'that'] -seemed almost : [u'too'] -your permission : [u',', u'we', u'I'] -large face : [u','] -band of : [u'ribbed', u'people', u'gipsies'] -by nature : [u','] -fangs upon : [u'.'] -send father : [u'tickets'] -result. " : [u'I'] -good news : [u'for', u'?"'] -two whom : [u'I'] -made some : [u'small'] -was preoccupied : [u'with'] -accepting unsolicited : [u'donations'] -hear: : [u'there'] -screaming out : [u'that'] -unnatural if : [u'you'] -been favoured : [u'with'] -hear! : [u'He'] -the india : [u'rubber'] -were quite : [u'as'] -should apply : [u'for'] -law of : [u'the'] -south west : [u','] -is mostly : [u'done'] -what does : [u'she', u'her', u'the'] -lodgings at : [u'Baker', u'ten'] -producing a : [u'realistic'] -beckoning me : [u'to'] -disposition. : [u'During'] -fingertips together : [u','] -disposition, : [u'but', u'and'] -neither house : [u'nor'] -she, " : [u'in'] -conveyed the : [u'traffic'] -she, ' : [u'we', u'and', u'have', u'there'] -by buying : [u'a'] -Pa thought : [u'I'] -other before : [u'.'] -tail. : ['PP', u'I'] -tail, : [u'right'] -came a : [u'neat', u'step', u'night', u'ring', u'sudden', u'long'] -indignation at : [u'it'] -am boasting : [u'when'] -injuring her : [u'.'] -"' Only : [u'that'] -plain one : [u'.'] -be able : [u'to', u'in'] -ruin me : [u'."'] -hour instead : [u'of'] -lantern and : [u'gazed', u'a', u'left'] -came I : [u'felt'] -hansoms were : [u'standing'] -ARTHUR CONAN : [u'DOYLE'] -prisoner lay : [u'with'] -sort in : [u'public'] -at which : [u'the', u'my', u'I'] -By a : [u'curious'] -Rucastle and : [u'much'] -the background : [u'which'] -paragraph amplifying : [u'this'] -intrigue. : [u'That'] -essential,' : [u'said'] -a caraffe : [u'.'] -is dry : [u'at'] -some grounds : [u'for'] -?" And : [u'then'] -which entitles : [u'a'] -With your : [u'permission'] -my rubber : [u'.', u'."'] -her. " : [u'It'] -it all : [u'.', u'?"', u'over', u',', u'to', u'right', u'laid', u'plain', u'day', u'up', u'that', u'if', u'trampled', u"!'", u'just', u'means'] -a brilliant : [u'beam', u'talker'] -. Grit : [u'in'] -moment I : [u'fell'] -den of : [u'which'] -matter up : [u',"', u'.', u','] -be bound : [u'tightly', u'by'] -right leg : [u','] -poisoner by : [u'cocaine'] -could bring : [u'him'] -journey would : [u'be'] -The summons : [u'was'] -any violence : [u',', u'upon'] -That Miss : [u'Flora'] -," my : [u'friend'] -form, : [u'have', u'including'] -matter rest : [u'upon'] -a delicate : [u'point', u'pink', u'part'] -his native : [u'butler'] -derives this : [u'from'] -pure fear : [u'and'] -, seven : [u'weeks'] -a view : [u'of'] -spoke to : [u'Major', u'her'] -moment a : [u'cheetah'] -in death : [u','] -Public Domain : [u'in'] -demon--' : [u'I'] -shall jot : [u'down'] -loafer. : [u'With'] -breastpin. : ['PP'] -little deductions : [u'have'] -"' You : [u'cannot', u'are', u'doubt', u'understand', u'have', u'must', u'blackguard', u'shall', u'may'] -thought which : [u'comes'] -her by : [u'such', u'the'] -Morcar upon : [u'the'] -man from : [u'which'] -steep flight : [u'of'] -by whom : [u'he'] -each date : [u'on'] -by Holmes : [u'and'] -of tobacco : [u'ashes'] -paths it : [u'still'] -reigning family : [u'of'] -is already : [u'woven'] -my friend : [u'and', u'had', u"'", u',', u'Dr', u'remarked', u'with', u'possessed', u'in', u'here', u', "', u'Sherlock', u'.', u'rose', u'down', u'. "', u'lashed', u'fewer', u'Holmes'] -absolute imbecile : [u'in', u'as'] -fallen at : [u'the'] -other with : [u'their', u'stout'] -managed that : [u'he', u'your'] -of volunteers : [u'and'] -VIII. : [u'The', u'THE'] -I love : [u'and'] -consciousness. : [u'He', u'Such'] -covered it : [u'over'] -the methods : [u'of', u'I'] -no memoir : [u'of'] -into red : [u'heelless'] -directions, : [u'and'] -heard so : [u".'"] -drawing of : [u'a'] -suddenly threw : [u'aside'] -conclusions," : [u'he'] -purest accident : [u'.'] -, ' are : [u'to'] -some conclusion : [u'?'] -is high : [u','] -hardly shut : [u'the'] -stooped and : [u'was'] -forces which : [u'shriek'] -" Experience : [u',"'] -he hope : [u'to'] -iron, : [u'built', u'the'] -laid before : [u'you'] -. Palmer : [u'and'] -moods. " : [u'I'] -disagreements about : [u'me'] -in horror : [u'. "'] -unravelled the : [u'problems'] -. " Our : [u'friend'] -straight, : [u'now'] -way in : [u'which', u'my', u',', u'the', u'everything', u'order', u'."'] -him sitting : [u'there'] -was often : [u'weeks'] -my limbs : [u'as'] -and soaked : [u'in'] -not cold : [u'which'] -to receive : [u'letters', u'the', u'a'] -third demand : [u'during'] -plain answer : [u'."'] -sums upon : [u'the'] -more valuable : [u'than', u'still'] -beside that : [u'lamp'] -get in : [u'with'] -a stand : [u'.'] -get it : [u'if'] -not breathe : [u'freely'] -a star : [u'or', u','] -Street and : [u'had', u'--"'] -1s., : [u'lunch'] -yet," : [u'said'] -beeches. : [u'As'] -and alert : [u'manner'] -prosecution. : [u'Off'] -come either : [u'from'] -further particulars : [u','] -magician," : [u'said'] -I bent : [u'over'] -a cord : [u'is'] -certainly not : [u'within', u'very'] -. " Both : [u'you'] -groping, : [u'and'] -wide, : [u'but'] -of doubt : [u'which'] -pencil upon : [u'the'] -how many : [u'are', u'were', u'.'] -to speak : [u'of', u'with', u'to', u'calmly', u'the', u'loudly'] -IRS. : ['PP'] -whom had : [u'remarkably'] -separate tracks : [u'of'] -gain them : [u'?"'] -happy to : [u'look', u'give', u'devote', u'accommodate', u'advance', u'do', u'make'] -would never : [u'leave', u'permit', u'guess'] -homely a : [u'thing'] -Rucastle seemed : [u'to'] -your coronet : [u','] -see his : [u'cousin'] -punishment of : [u'some'] -half up : [u','] -are certainly : [u'joking'] -the same : [u'time', u'intention', u'instant', u'next', u'the', u'crowded', u'direction', u'trivial', u'age', u'way', u".'", u'feet', u'meshes', u'thing', u'sort', u'effects', u'source', u'with', u'innocent', u'evening', u'by', u'weight', u',"', u'to', u'as', u'care', u'corridor', u'result', u'trouble', u'relative', u'state', u'questioning', u'good', u'week', u'class', u'secrecy', u'lines', u'brilliant', u'.', u'world', u'position', u'peculiar', u'thickness', u'format'] -Rucastle that : [u'she'] -are but : [u'preventing'] -tested the : [u'hinges'] -his assurance : [u'while'] -agent without : [u'putting'] -cylinders. : [u'An'] -both ways : [u'.', u','] -birds that : [u'went'] -third drawer : [u'.'] -life preserver : [u'from'] -was tilted : [u'in'] -it hurts : [u'my'] -crime has : [u'been'] -grounds and : [u'are'] -ulsters and : [u'wrapped'] -the cells : [u'."'] -such states : [u'who'] -shelf with : [u'my'] -fifteen years : [u'younger'] -painful matter : [u'to'] -paper and : [u'prefers', u'the', u'glancing', u'returning'] -incident made : [u','] -and your : [u'father', u'secret', u'geese', u'confederate', u'bandage', u'relations', u'inferences', u'niece', u'son', u'state'] -glands when : [u'he'] -occasional cry : [u'of'] -fellow standing : [u'in'] -My family : [u'itself'] -in my : [u'mind', u'cases', u'own', u'index', u'pay', u'ear', u'life', u'being', u'company', u'occupation', u'judgment', u'dealings', u'pocket', u'veins', u'hands', u'friend', u'arms', u'flight', u'old', u'room', u'uncle', u'case', u'professional', u'chair', u'youth', u'power', u'strong', u'shop', u'museum', u'lady', u'waistcoat', u'habits', u'stepfather', u'hand', u'library', u'little', u'ears', u'family', u'wife', u'heart', u'office', u'private', u'service', u'business', u'house', u'anger', u'last', u'handkerchief', u'direction', u'head', u'joy'] -He dashed : [u'her'] -in me : [u'seemed', u'to', u'at'] -ruffian who : [u'pursued'] -bar your : [u'shutters'] -custom always : [u'to'] -. Filled : [u'with'] -Swain cleared : [u'.'] -compliance with : [u'the', u'any'] -prompt as : [u'this'] -Hudson to : [u'examine'] -public one : [u','] -her jacket : [u'. "'] -impressive figure : [u'.'] -, death : [u'would'] -. More : [u'than'] -I deduced : [u'a'] -knew little : [u'of'] -respects, : [u'been'] -naturally secretive : [u','] -what we : [u'are', u'wanted', u'call', u'should'] -hair was : [u'shot'] -Monica,' : [u'said'] -draw out : [u'of'] -League to : [u'a'] -me for : [u'taking', u'fifty', u'six', u'not', u'help', u'25', u'his', u'a', u'that'] -was handy : [u'and'] -friend fewer : [u'openings'] -wife allows : [u'you'] -was wont : [u'to'] -The largest : [u'landed'] -commissionaire, : [u'rushed'] -the exposure : [u','] -many more : [u'have'] -in The : [u'Times'] -test was : [u'just'] -commissionaire. : ['PP'] -that upon : [u'the'] -and running : [u'through'] -though his : [u'question'] -first make : [u'a'] -more deserted : [u'there'] -barrow. : [u'I'] -the key : [u'when', u'in', u'of', u'gently', u'was', u'upon'] -a tone : [u'as'] -journey I : [u'endeavoured'] -worn this : [u'article'] -about a : [u'woman', u'hundred', u'hydraulic', u'year'] -falling in : [u'with'] -our own : [u'age', u'little', u'process', u'fault'] -some coming : [u'back'] -including checks : [u','] -and commonplace : [u'a'] -move me : [u'from'] -he drew : [u'over', u'the', u'it'] -has twice : [u'been'] -friends. : ['PP'] -, waiting : [u'for'] -to disturb : [u'the', u'you', u'it'] -him eight : [u'and'] -I need : [u'not', u'to'] -returning by : [u'the'] -logic rather : [u'than'] -securing the : [u'situation'] -not doing : [u'what'] -demand a : [u'refund'] -, blowing : [u'blue'] -my office : [u'at'] -sat puffing : [u'at'] -same sort : [u'since'] -on some : [u'commission', u'definite', u'clothes', u'errand'] -with moisture : [u','] -was Sir : [u'George'] -most serious : [u'point'] -ticking loudly : [u'somewhere'] -signs of : [u'his', u'him', u'a', u'violence', u'having', u'intense', u'any', u'grief'] -scandal it : [u'was'] -least the : [u'initials'] -gone off : [u'with'] -shop and : [u'a'] -scandal in : [u'the'] -editor wished : [u'to'] -identity of : [u'the'] -3 below : [u'.'] -do was : [u'clearly'] -rope and : [u'land'] -which her : [u'master', u'sister'] -own establishment : [u','] -dress will : [u'become'] -my professional : [u'work', u'round', u'qualifications'] -dark to : [u'me', u'see'] -s instinct : [u';', u'which'] -tinted paper : [u','] -prepared. : [u'It'] -, boyish : [u'face'] -his children : [u'over'] -limitation of : [u'certain'] -. " Lord : [u'St'] -slice of : [u'beef'] -Frisco, : [u'and', u'found'] -!" Slowly : [u'and'] -rearranging his : [u'facts'] -effusive. : [u'It'] -you ought : [u'to'] -The walls : [u'were'] -beaten by : [u'a'] -on earth : [u'does', u'--"', u'are', u'do', u'can', u'has'] -fled together : [u'."'] -commonplace books : [u'in'] -be your : [u'husband'] -particularly so : [u'.'] -research on : [u','] -and abode : [u'of'] -would really : [u'have'] -you had : [u'been', u'a', u'your', u'done', u'returned', u'cut', u'the', u'heard', u'better', u'an', u',', u'already', u'told', u'seen'] -yawning. : ['PP'] -question you : [u'as'] -signal," : [u'said'] -Post, : [u'and'] -forgot that : [u'.', u'I'] -edges and : [u'thin'] -We made : [u'our'] -blue stone : [u',', u'of'] -and tumbled : [u'onto'] -Lebanon, : [u'Pennsylvania'] -before been : [u'anything'] -set hard : [u','] -Could I : [u'not'] -bowls of : [u'the'] -sum for : [u'doing', u'them'] -plainly see : [u'the'] -sums of : [u'money'] -and narrowly : [u'escaped'] -E below : [u'.'] -back through : [u'the'] -It grew : [u'worse', u'broader'] -say another : [u'word'] -and silently : [u'he'] -capacity," : [u'said'] -last post : [u',"'] -YOU GIVE : [u'NOTICE'] -young John : [u'Clay'] -shut up : [u'the'] -s eyes : [u'could'] -black business : [u'."'] -unimportant matters : [u'that'] -huddled up : [u'in'] -fowls, : [u'and'] -upon each : [u'other'] -above all : [u','] -dressed I : [u'glanced'] -evidently taken : [u'a'] -blockaded the : [u'house'] -air. " : [u'Incredible', u'Remember'] -One day : [u'a', u'it', u'my', u'he', u','] -duties. : ['PP'] -duties, : [u'sir', u'then', u'as', u'all'] -shall determine : [u'by'] -, undo : [u'the'] -the proofs : [u'which'] -conversation I : [u'have'] -am sure : [u'."', u'you', u',', u'that', u',"', u'your', u'if', u'we'] -bear upon : [u'a'] -Seeing that : [u'his', u'my'] -and waving : [u'his'] -had actually : [u'seen'] -" Married : [u'!'] -two murders : [u','] -matters, : [u'they'] -Sholtos. : ['PP'] -could show : [u'how'] -sent him : [u'a'] -future date : [u','] -meet," : [u'cried'] -room that : [u'night'] -long they : [u'seemed'] -trivial example : [u'of'] -without wincing : [u','] -entreaties. : ['PP'] -streets he : [u'shuffled'] -sat with : [u'his', u'straining', u'her'] -fidgeted with : [u'her'] -goose at : [u'one'] -search facility : [u':'] -called at : [u'the'] -Married! : [u'When'] -there before : [u'us', u'midnight', u'the'] -pushed him : [u'down'] -often weeks : [u'on'] -Yesterday morning : [u'I'] -resounded with : [u'the'] -burned yellow : [u'with'] -so remarkable : [u'in', u'that'] -, breathing : [u'in', u'slowly'] -bent over : [u'the', u'her', u'me'] -would take : [u'his', u'the', u'my', u'effect', u'me'] -Man with : [u'the'] -shillings, : [u'made'] -If he : [u'braved', u'is'] -About sixty : [u';'] -agricultural prices : [u','] -Fairbanks, : [u'AK'] -Yet the : [u'matter'] -lit, : [u'and', u'but'] -work under : [u'this'] -Paddington, : [u'and'] -lot this : [u'morning'] -culprit. : [u'There'] -anything under : [u'the'] -Baker, : [u'the', u'had', u'I', u'who'] -a maid : [u'who'] -given away : [u'you'] -Baker' : [u'was'] -overlook. : [u'If'] -the local : [u'Herefordshire', u'blacksmith'] -no law : [u','] -photograph but : [u'an'] -give a : [u'sharp', u'plain', u'little'] -sudden gloom : [u','] -by muttering : [u'that'] -seen little : [u'of'] -a window : [u'sill', u'had'] -weight and : [u'perfectly'] -entered a : [u'well'] -pencils and : [u'giving'] -than just : [u'give'] -high nosed : [u'and'] -Windibank gave : [u'a'] -escaped destruction : [u'.'] -small black : [u'figure'] -break in : [u'upon'] -excellent offers : [u'in'] -He investigated : [u'the'] -object of : [u'his', u'interest', u'this', u'these', u'mingled', u'seeing'] -/ license : [u').'] -whistle. " : [u'By'] -of imprisonment : [u'and', u'?"'] -his dog : [u'cart'] -than from : [u'one', u'the'] -theorize before : [u'one'] -an inflamed : [u'face'] -dragged out : [u'his'] -so nice : [u'a'] -threaten you : [u'."'] -suite of : [u'spare', u'rooms'] -recent papers : [u'in'] -eventually recovered : [u'.'] -beneath the : [u'hanging'] -other a : [u'plain', u'man'] -us to : [u'Saxe', u'go', u'know', u'night', u'a', u'live', u'see', u'buy', u'Fairbank', u'leave', u'exert', u'be'] -pence were : [u'duly'] -sentimental considerations : [u'in'] -happy in : [u'her'] -overhauled, : [u'I'] -emerged. : ['PP'] -his attitude : [u'and'] -emerged, : [u'looking'] -minutes afterwards : [u'the'] -and diary : [u'may'] -hansom cab : [u'drove'] -a boy : [u"'", u'to'] -" P : [u',"'] -" S : [u'.'] -buckles. : [u'It'] -?' said : [u'he', u'I'] -engineer ruefully : [u'as'] -hand is : [u'quite', u'from'] -nothing remarkable : [u',', u'about', u'save'] -hand it : [u'over'] -" A : [u'pair', u'proposition', u'considerable', u'certain', u'Juryman', u'client', u'greater', u'patient', u'call', u'diamond', u'thousand', u'thing', u'feeling', u'house', u'most', u'fair', u'confidential', u'little', u'likely', u'day'] -email business : [u'@'] -Kindly look : [u'her'] -" E : [u'"'] -" D : [u"'"] -" G : [u'"'] -hand in : [u'rubbing', u'hand', u'marriage', u'a'] -" I : [u'see', u'have', u'think', u'promise', u'was', u'am', u'tell', u'can', u'then', u'shall', u'will', u'know', u'do', u'guessed', u"'", u'thank', u'won', u'begin', u'never', u'answered', u'cannot', u'started', u'went', u'make', u'hope', u'must', u'beg', u'did', u'came', u'could', u'suppose', u'fear', u'advertised', u'noted', u'really', u'should', u'fished', u'thought', u'would', u'had', u'pray', u'owe', u'signed', u'searched', u'didn', u'don', u'perceive', u'want', u'called', u'wrote', u'reached', u'say', u'assure', u'believe', u'saw', u'knew', u'bowed', u'glanced', u'took', u'felt', u'hardly', u'hear', u'warn', u'brought', u'fail', u'feel', u'come', u'fully', u'confess', u'only', u'told', u'looked', u'assured', u'trust'] -" H : [u'.'] -The chimney : [u'is'] -I pondered : [u'over'] -of fluffy : [u'pink'] -the keenest : [u'interest', u'pleasure'] -" t : [u'"'] -saw how : [u'many'] -should know : [u'if'] -so bulky : [u','] -, but : [u'as', u'with', u'there', u'you', u'Holmes', u'she', u'built', u'without', u'whose', u'a', u'I', u'the', u'was', u'it', u'none', u'his', u'China', u'now', u'on', u'he', u'we', u'by', u'when', u'gave', u'beyond', u',', u'is', u'that', u'still', u'after', u'just', u'very', u'what', u'Hosmer', u'concentrate', u'only', u'no', u'those', u'affectionate', u'here', u'before', u'neither', u'if', u'this', u'some', u'these', u'will', u'for', u'my', u'sometimes', u'not', u'nothing', u'at', u'has', u'of', u'had', u'referred', u'since', u'her', u'in', u'they', u'sooner', u'stop', u'absolute', u'an', u'unfortunately', u'otherwise', u'whether', u'come', u'could', u'learned', u'exceedingly', u'upon', u'to', u'friend', u'more', u'swayed', u'each', u'sat', u'must', u'Arthur', u'found', u'which', u'two', u'all', u'fortunately', u'really', u'Sherlock'] -Lestrade looked : [u'startled', u'sadly'] -a side : [u'door'] -the approach : [u'of'] -follow them : [u'when'] -my pocket : [u',', u'Petrarch'] -" g : [u',"'] -metallic or : [u'otherwise'] -most profound : [u'gravity'] -the sentence : [u"--'", u'set'] -Upper Swandam : [u'Lane'] -detail of : [u'the'] -they seemed : [u'to', u','] -squander money : [u'on'] -laid for : [u'five'] -considerable crime : [u'is'] -pal what : [u'I'] -beard of : [u'grizzled'] -. Hatherley : [u"'", u',"', u"?'", u','] -a purveyor : [u'to'] -bitter end : [u'.'] -pleased, : [u'Mr', u'but'] -such nonsense : [u".'"] -nothing for : [u'granted', u'myself'] -a previous : [u'conviction', u'husband'] -of receipt : [u'that', u'of'] -mail boat : [u'which', u'will'] -the lapse : [u'of'] -naturally my : [u'intention'] -He wore : [u'rather'] -been deceived : [u'by', u'."'] -this sudden : [u'commission'] -Your morning : [u'letters'] -King hoarsely : [u'. "'] -the squat : [u'diamond'] -passion. : [u'Mother', u'He'] -his fingers : [u',', u'.', u'upon'] -very mercifully : [u'and'] -upon fold : [u'over'] -was pouring : [u'down', u'from'] -perhaps you : [u'would', u'will'] -woods to : [u'the'] -afterwards question : [u'you'] -warranties or : [u'the'] -Roylott, : [u'you', u'of'] -arms of : [u'his', u'Mr'] -effort to : [u'escape', u'preserve', u'identify'] -of Wilton : [u'carpet'] -of anything : [u'of'] -belief, : [u'unique', u'the', u'Watson'] -' silence : [u'. "'] -founded on : [u'a'] -you the : [u'chisel', u'chance', u'facts', u'geese', u'true', u'steps', u'circumstances'] -face is : [u'the', u'one', u'as'] -dressing room : [u'of', u'.', u'door', u',', u'was'] -thing for : [u'him', u'me', u'us'] -and offered : [u'no'] -learned to : [u'play'] -face in : [u'his', u'my'] -his stick : [u'two', u'upon', u'to'] -servants, : [u'even', u'who'] -infernal St : [u'.'] -engraved upon : [u'it'] -far greater : [u'than'] -cripple in : [u'the'] -very practical : [u'with'] -a deadly : [u'dizziness'] -inside are : [u'proof'] -fallen over : [u'one'] -greatest concentration : [u'of'] -the weary : [u','] -journeys to : [u'France'] -had stretched : [u'out'] -Stark rushing : [u'forward'] -should call : [u'you'] -sat waiting : [u'silently'] -black haired : [u'and'] -while away : [u'these'] -had framed : [u'himself'] -know this : [u'dead'] -.'" James : [u'McCarthy'] -the funniest : [u'stories'] -is admirably : [u'suited'] -hansom on : [u'a'] -is even : [u'more'] -inhabited. : [u'The'] -drove through : [u'two', u'the'] -gloom. : ['PP'] -very morning : [u'of'] -Have the : [u'goodness'] -smell Dr : [u'.'] -with deference : [u'. "'] -was passionately : [u'devoted'] -what seemed : [u'to'] -suite, : [u'but'] -of observation : [u'in', u'and'] -snow of : [u'the'] -License. : ['PP', u'You'] -sound of : [u'horses', u'voices', u'rending', u'movement', u'several', u'running', u'footsteps', u'steps'] -a cellar : [u'with'] -five every : [u'day'] -this question : [u'depended'] -will sit : [u'on'] -could hear : [u'the'] -live very : [u'quietly'] -skill that : [u'nobody'] -this battered : [u'hat'] -coldly. " : [u'I'] -high words : [u'and'] -been dragging : [u'the'] -hospital. : ['PP'] -she asked : [u'.', u','] -a happy : [u'and', u'couple', u'thought'] -precious time : [u','] -son himself : [u'indicated'] -for Hatherley : [u'Farm'] -it home : [u'.'] -rather smaller : [u'than'] -all night : [u'sitting', u'chemical'] -utmost coolness : [u'. "'] -it laid : [u'out'] -a noble : [u'man', u'client', u'woman'] -how we : [u'progress', u'broke', u'conveyed', u'can'] -abruptly into : [u'the'] -bought this : [u'estate'] -that morning : [u'.', u'a', u'."'] -. Besides : [u','] -She pulled : [u'a'] -brightest little : [u'blue'] -hear about : [u'new'] -hat--" : [u'but'] -complimented me : [u'upon'] -beggar. : [u'For'] -causes clbres : [u'and'] -Adventures of : [u'Sherlock'] -last month : [u'by'] -planning, : [u'for'] -impressed me : [u'in', u'.', u'with', u'neither'] -indication of : [u'the'] -is provided : [u'for', u'to'] -The sight : [u'of'] -headed copier : [u'of'] -also with : [u'Mr', u'the'] -chairman of : [u'directors', u'the'] -my astonishment : [u','] -Apply in : [u'person'] -column, " : [u'that'] -dreadful letters : [u'when'] -unless a : [u'copyright'] -in Fresno : [u'Street'] -own arrangements : [u'."'] -himself upon : [u'a', u'his'] -retrogression, : [u'which'] -which these : [u'three'] -of repute : [u'in'] -charcoal. : [u'Who'] -charcoal, : [u'beside'] -to Mrs : [u'.'] -myself in : [u'his', u'my', u'a', u'the', u'Baker'] -never forget : [u", '"] -really out : [u'of'] -case complete : [u'.'] -in low : [u'spirits'] -and wandered : [u'through'] -continues. : [u'I'] -your own : [u'ink', u'point', u'method', u'bird', u'eyes', u'impression', u'theory', u'good'] -who asked : [u'him'] -lowered my : [u'handkerchief'] -and shrunk : [u'against'] -when no : [u'constable'] -mine be : [u'?'] -myself is : [u'not'] -of attempted : [u'suicide'] -control of : [u'my'] -unprofitable. : ['PP'] -erect, : [u'when', u'with'] -Are they : [u'not'] -case with : [u'great'] -disguised himself : [u','] -EXCEPT THOSE : [u'PROVIDED'] -Eight shillings : [u'for'] -coppers which : [u'I'] -instant he : [u'stood'] -strongest terms : [u'.'] -we just : [u'fixed', u'did'] -have that : [u'photograph', u',', u'one'] -happy and : [u'prosperous'] -! Our : [u'party'] -few country : [u'carts'] -has escaped : [u'destruction'] -a bite : [u'.'] -same result : [u'.'] -I called : [u'at', u'upon', u'about', u'a', u'in', u'last'] -and ceiling : [u'were'] -your reasons : [u',"', u'may'] -rather far : [u'from'] -precaution against : [u'the'] -certain selection : [u'and'] -be told : [u'from'] -want this : [u'sum'] -without seeing : [u'anything'] -could write : [u'in'] -. Depend : [u'upon'] -and very : [u'little', u'severe', u'energetic'] -coeur. : [u'She'] -him. : [u'To', u'I', 'PP', u'He', u'When', u'They', u'Altogether', u'But', u'The', u'It', u'Mother', u'Among', u'Had', u'Good', u'Everybody', u'His', u'One', u'There', u'A', u'On', u'In', u'Peterson', u'This', u'Well', u'What', u'By', u'Do', u'We', u'Some', u'Very', u'Perhaps', u'At', u'As'] -inquiring at : [u'Paddington'] -him, : [u'and', u'however', u'he', u'for', u'which', u'then', u'there', u'also', u'Miss', u'the', u'though', u'like', u'when', u'face', u'but', u'as', u'made', u'curious', u'she', u'silent', u'you', u'dropped', u'that', u'with', u'pulled', u'a', u'I', u'patted', u'on', u'so', u'living'] -our Web : [u'site'] -might cause : [u'him'] -assuring them : [u'that'] -This press : [u','] -attain than : [u'to'] -progress. : ['PP'] -lies upon : [u'the'] -filling my : [u'pockets'] -entirely our : [u'own'] -. " Yes : [u',"', u','] -very commonplace : [u'.'] -Principal of : [u'the'] -perfect was : [u'the'] -louder, : [u'and', u'a'] -collapsed into : [u'a'] -Men who : [u'had'] -us how : [u'we'] -Pool was : [u'someone'] -hot fits : [u'were'] -varied cases : [u','] -For two : [u'streets', u'days'] -responded beautifully : [u'.'] -papers without : [u'a'] -behind that : [u'tree'] -been under : [u'such'] -at all : [u'.', u'."', u'?', u'save', u',', u",'", u',"', u'injured', u'of', u'that'] -a squalid : [u'beggar'] -the chase : [u'would', u',', u'after'] -the outsides : [u'of'] -father give : [u'a'] -temper was : [u'just'] -had under : [u'our'] -cause her : [u'to'] -glancing up : [u'at', u'.'] -rushed at : [u'the', u'our'] -the individuality : [u'of'] -the rabbit : [u'warren'] -three fields : [u'round'] -?' Opening : [u'it'] -story! : [u'As'] -jerkily, : [u'but'] -were posted : [u'to'] -a nucleus : [u'and'] -story. : [u'He', u'My', 'PP'] -story, : [u'gentlemen', u'he', u'have', u'I'] -desirous of : [u'getting'] -in four : [u'days'] -were glad : [u'or'] -since your : [u'shaving'] -they like : [u'to', u','] -strong piece : [u'of'] -been struck : [u'from'] -would he : [u'do', u'tell'] -your pistol : [u'ready', u','] -he been : [u'with'] -specified in : [u'paragraph', u'Section'] -nothing save : [u'that', u'the'] -, such : [u'as', u'an'] -of objections : [u'which'] -odd boots : [u','] -The ring : [u','] -conduct was : [u'certainly'] -!" His : [u'smile'] -leather leggings : [u'which'] -wheeler and : [u'out'] -the neck : [u'with', u'and'] -scoundrel!" : [u'said'] -the first : [u'volume', u'Saturday', u'hansom', u'that', u'heading', u'walk', u'and', u',', u'example', u'volley', u'place', u'men', u'time', u'stage', u'floor', u'glance', u'who', u'train', u'is', u'of', u'person', u'.', u'notice', u'signs', u'pew', u'to', u'wife', u'two'] -his stall : [u','] -down Swandam : [u'Lane'] -not stay : [u'here'] -boy home : [u'a'] -with grizzled : [u'hair'] -names are : [u'where'] -lie behind : [u'it'] -take. : [u'Kindly', 'PP'] -contain" : [u'Defects'] -quick march : [u'!"'] -The Times : [u'every', u'and'] -you away : [u'to'] -which felt : [u'about'] -of Dr : [u'.'] -owns a : [u'United', u'compilation'] -was astir : [u','] -their cargo : [u'.'] -of jewellery : [u'which'] -had this : [u'final', u'unfortunate', u'morning'] -But how : [u'--"', u'?"', u'will', u'could', u'about', u'on', u'did', u'to'] -about Isa : [u'.'] -complexion, : [u'black'] -laughed heavily : [u'. "'] -shown him : [u'that'] -way into : [u'such', u'a', u'the'] -bank. : ['PP'] -bank, : [u'she'] -golden tunnels : [u'of'] -It seems : [u'that', u'to', u',', u'absurdly', u'rather'] -his sallow : [u'cheeks'] -five ft : [u'.'] -roasting at : [u'this'] -inclined to : [u'think'] -personality of : [u'the'] -excluded the : [u'impossible'] -License as : [u'specified'] -" MY : [u'DEAR'] -The banker : [u"'", u'recoiled', u'wrung'] -sundial?' : [u'he'] -room I : [u'found'] -our direction : [u'.'] -old clergyman : [u'.'] -Awake, : [u'Watson'] -only possible : [u'object'] -" My : [u'dear', u'private', u'own', u'photograph', u'cabby', u'face', u'name', u'uncle', u'heart', u'eye', u'God', u'geese', u'sister', u'stepfather', u'last', u'messenger', u'opinion', u'Mary'] -deference to : [u'his'] -something lay : [u'upon'] -" Mr : [u'.'] -get him : [u'to'] -always is : [u'to'] -Angel vanish : [u'from'] -you shall : [u'not', u'know', u'have'] -get his : [u'words'] -would understand : [u'afterwards'] -the maids : [u'.', u','] -her bed : [u'.'] -inches in : [u'height'] -shoes and : [u'a'] -pitiable state : [u'of'] -brows knitted : [u'and'] -absolutely at : [u'home'] -, bending : [u'forward'] -pen knife : [u'in', u'."'] -impossible for : [u'me'] -post," : [u'said'] -give these : [u'vagabonds'] -admiration. " : [u'It'] -Swan is : [u'an'] -painful tale : [u'.'] -unnatural that : [u'when'] -wrote" : [u'S'] -loved. : [u'But'] -saw Frank : [u'here', u'standing', u'out'] -him yourselves : [u'to'] -that everyone : [u'in', u'finds'] -the coroner : [u'and', u"'", u'in', u'have', u'was', u'come'] -suddenly another : [u'sound'] -the coronet : [u'at', u'in', u'and', u'."', u'.', u'was', u'to', u',', u'had', u',"', u'?', u'again'] -lawyer arrived : [u'I'] -again with : [u'the'] -gone for : [u'no', u'the'] -, within : [u'a'] -wealthy men : [u','] -occasion. : ['PP'] -occasion, : [u'in'] -father struck : [u'a'] -if, : [u'after'] -Berkshire beef : [u'would'] -tragic, : [u'some'] -often compensated : [u'for'] -the sufferer : [u'.'] -to greet : [u'her'] -may judge : [u'Lord'] -except that : [u'it'] -with horror : [u'.', u'and', u','] -hanged. : ['PP'] -hanged, : [u'has'] -garden in : [u'front'] -kind old : [u'clergyman'] -robberies brought : [u'about'] -, both : [u'upon', u'before', u'my', u'Toller'] -equality, : [u'as'] -again so : [u'soon', u'gently'] -met a : [u'cart'] -delicate cases : [u'of'] -France again : [u'in'] -lips parted : [u','] -sir," : [u'cried', u'said', u'he'] -it farthest : [u'from'] -sir,' : [u'said'] -passing into : [u'the'] -no rain : [u','] -told that : [u'if'] -already said : [u','] -whose round : [u'impressions'] -my having : [u'to'] -river to : [u'the'] -in engaging : [u'a'] -Many small : [u'donations'] -, memoranda : [u','] -some allusion : [u'to'] -or additions : [u'or'] -an official : [u'looking'] -been upset : [u'by'] -whether he : [u'was', u'could', u'is', u'had', u'derives'] -tread of : [u'drunken'] -lane yesterday : [u'evening'] -in everything : [u'.'] -the instant : [u'when', u'from', u'that'] -strange rumours : [u'which'] -beggar, : [u'though', u'but', u'and'] -bushes there : [u'darted'] -, striking : [u'his'] -down again : [u'to', u'in'] -hair in : [u'both', u'London'] -Bloomsbury at : [u'the'] -commissionaire plumped : [u'down'] -gaze directed : [u'upward'] -and records : [u'of'] -dressed it : [u','] -Arizona, : [u'and'] -a blow : [u'must'] -snakish temper : [u','] -congenial hunt : [u'.'] -successful conclusion : [u'."'] -round table : [u',', u'in'] -seriously menaced : [u'.'] -always fallen : [u'at'] -he did : [u'it', u'not', u'his', u'rather', u'the', u'."'] -manager came : [u'in'] -so uncertain : [u'as'] -small corridor : [u','] -the less : [u'you', u'mysterious'] -. During : [u'all', u'that', u'two'] -a foot : [u'or'] -so close : [u'that'] -trust, : [u'sir', u'with', u'Mr'] -a fool : [u'a', u'of'] -Irene Adler : [u'.', u',', u'?"', u'."', u'is', u'herself', u'papers', u'photograph'] -from under : [u'his', u'my', u'the'] -a bijou : [u'villa'] -vacancy after : [u'all'] -he shuffled : [u'along'] -hair is : [u'of', u'light', u'grizzled', u'somewhat'] -. Again : [u'a', u'I'] -in Arizona : [u','] -s delay : [u','] -a tack : [u'.'] -so were : [u'it'] -wharves which : [u'line'] -minutes, : [u'or', u'and', u'Holmes', u'with', u'beginning'] -minutes. : ['PP', u'I', u'This'] -minutes! : [u'The'] -( does : [u'not'] -trying," : [u'said'] -minutes' : [u'silence'] -been fed : [u'for'] -and returning : [u'it'] -implicated in : [u'the'] -vacancy on : [u'the'] -seem to : [u'be', u'have', u'point', u'find', u'me', u'see', u'expect', u'you'] -conventions and : [u'humdrum'] -very awkward : [u'.'] -we may : [u'come', u'discriminate', u'take', u'call', u'put', u'chance', u'clear', u'drive', u'never', u'gain', u'start', u'assume', u'let', u'have', u'expect', u'make', u'judge', u'prove', u'safely', u'need'] -would cease : [u'to'] -at Eyford : [u'at'] -is treasure : [u'trove'] -waned in : [u'the'] -driving rod : [u'had'] -. Flora : [u'was'] -is inviolate : [u'.'] -their steaming : [u'horses'] -answer the : [u'advertisement'] -up upon : [u'the'] -late administration : [u'.'] -new duties : [u"?'"] -her elbow : [u'with'] -no later : [u'than'] -, fainted : [u'away'] -already given : [u'you'] -You allude : [u'to'] -My photograph : [u'."'] -of fact : [u','] -as all : [u'references'] -often created : [u'from'] -done manual : [u'labour'] -moment be : [u'seized'] -. Copyright : [u'laws'] -Holmes sweetly : [u'. "'] -cloth seen : [u'by'] -serious. : ['PP', u'The', u'It'] -first inclined : [u'to'] -outr results : [u','] -presented by : [u'Miss', u'his'] -morrow if : [u'I'] -witness of : [u'some'] -followed a : [u'pathway'] -it going : [u','] -she travelled : [u'.'] -patients spare : [u'you'] -Sold out : [u'of'] -and whimsical : [u'problem'] -five days : [u'ago'] -flesh coloured : [u'plaster', u'velvet'] -gummed, : [u'if'] -ready money : [u','] -sliding shutter : [u','] -expense which : [u'you'] -be passed : [u'to', u'at'] -us. " : [u'These'] -fireplace cross : [u'indexing'] -minister in : [u'far'] -a young : [u'man', u'lady', u'chap', u'gentleman', u'and', u'girl'] -notes," : [u'he'] -experience. : ['PP', u'To'] -perfectly overpowering : [u'impulse'] -initials of : [u'K', u'an'] -remain clear : [u'upon'] -McCarthy senior : [u'met'] -anything against : [u'him'] -returning to : [u'the', u'his', u'my'] -he braced : [u'himself'] -else he : [u'would'] -, in : [u'England', u'the', u'addition', u'fact', u'my', u'your', u'Andover', u'passing', u'black', u'which', u'some', u'a', u'Herefordshire', u'his', u'love', u'considering', u'all', u'one', u'Dundee', u'spite', u'Upper', u'Kent', u'May', u'company', u'view', u'any', u'case', u'truth', u'Berkshire', u'intense', u'conjunction', u'America', u'McQuire', u'sorrow', u'its', u'Nova', u'such', u'convincing', u'Southampton', u'accordance'] -Come," : [u'cried'] -vanished into : [u'the'] -turning away : [u'without', u'with', u'from'] -, if : [u'a', u'I', u'there', u'you', u'he', u'we', u'God', u'it', u'the', u'rumour', u'only', u',', u'these', u'your'] -lap and : [u'made'] -I got : [u'fairly', u'to', u'among', u'the', u'a', u'back', u'into', u'our', u'his'] -, is : [u'a', u'young', u'not', u'the', u'rather', u'it', u'so', u'situated', u'in', u'out', u'middle', u'now', u'Miss', u'dug', u'acting', u'an', u'my', u'such', u'he'] -loophole, : [u'some'] -be saved : [u'if'] -that bureau : [u'.'] -was Leadenhall : [u'Street'] -, it : [u'was', u'will', u'is', u'would', u'sounds', u'must', u'made', u'drives', u'won', u'seems', u'did', u'might', u'seemed', u'shall', u'has', u"'", u'became', u'may', u'goes', u'bodes'] -at them : [u',', u'occasionally'] -the medium : [u'on', u'with'] -Gone, : [u'too'] -the platform : [u',', u'.', u'save'] -letters of : [u'his'] -fists at : [u'him'] -and revealed : [u'the'] -encamp upon : [u'the'] -friends was : [u'a'] -stories of : [u'which'] -again save : [u'the'] -gracious. : ['PP'] -made two : [u'blunders'] -plot of : [u'the'] -subtle and : [u'horrible'] -will try : [u'.'] -doctor does : [u'go'] -already arrived : [u'.', u','] -opinion as : [u'to'] -in making : [u'up', u'a'] -guinea fee : [u'.', u','] -ushered me : [u'in'] -Jones with : [u'us', u'a'] -, slate : [u'roofed'] -a basket : [u'chair'] -a twentieth : [u'part'] -action to : [u'the'] -or limitation : [u'of', u'set', u'permitted'] -morning train : [u'to', u'.'] -kind hearted : [u'.'] -did that : [u'help'] -daring than : [u'any'] -descended, : [u'my'] -. Colonel : [u'Lysander', u'Stark'] -sardonic eye : [u'as'] -help laughing : [u'at'] -plain clothes : [u'man'] -put to : [u'the', u','] -believe." : [u'He'] -He shot : [u'a', u'one'] -debts. : [u'In'] -got into : [u'my', u'a', u'the'] -hat securer : [u',', u'.'] -by Monday : [u'we'] -you whether : [u'you'] -have it : [u'."', u'straight', u'here', u'from', u',', u'so', u'!"', u'all'] -so quietly : [u'was'] -you wished : [u'to'] -park of : [u'the'] -these isolated : [u'facts'] -lips compressed : [u','] -have spoiled : [u'him'] -he rummaged : [u'and'] -to leave : [u'the', u'me', u'.', u'it', u',', u'so', u'him'] -with crying : [u'.'] -mark of : [u'nitrate', u'being'] -register' : [u'written'] -some deadly : [u'and', u'story'] -gone on : [u'to'] -is weighed : [u'down'] -financier. : ['PP', u'I'] -much labour : [u'we'] -may do : [u'what', u'us', u'practically'] -let him : [u'know'] -and gratitude : [u'which'] -letters from : [u'a', u'him'] -goose and : [u'a'] -started when : [u'I'] -, Standard : [u','] -bandages. : [u'He'] -friend the : [u'Lascar', u'financier'] -enormous limbs : [u'showed'] -lost a : [u'fine', u'little', u'fifty', u'handsome'] -old dog : [u'to'] -to cry : [u"'"] -The thought : [u'had'] -you feel : [u'equal'] -have retained : [u'Lestrade', u'these'] -fit if : [u'I'] -although I : [u'continually', u'am'] -have 50 : [u','] -of or : [u'access', u'providing'] -a patentee : [u'of'] -brought away : [u'the'] -figure were : [u'those'] -ADVENTURES OF : [u'SHERLOCK'] -Should you : [u'be'] -client gave : [u'it'] -years; : [u'at'] -diary may : [u'implicate'] -boxer, : [u'swordsman'] -Barque' : [u'Lone'] -white tie : [u','] -were drawn : [u'into'] -but his : [u'eyes', u'constitution', u'face', u'blood', u'life', u'only', u'attention'] -that so : [u'pretty', u'powerful', u'astute'] -The firemen : [u'had'] -years, : [u'are', u'and', u'although', u'has', u'that', u'he'] -secret. : [u'He', 'PP', u'Then'] -years. : [u'My', u'About', u'There'] -secret, : [u'whether', u'however'] -page are : [u'the'] -we diverted : [u'her'] -years' : [u'82', u'penal'] -educational corporation : [u'organized'] -the rights : [u'of'] -upstairs, : [u'where', u'explained', u'and'] -t lie : [u'in'] -Will you : [u'be', u'go', u'bet', u'not', u'come'] -her shoulder : [u'. "'] -, threw : [u'across', u'her', u'up', u'it'] -clean one : [u','] -harm were : [u'to'] -twice vigorously : [u'across'] -He must : [u'guard'] -only proficient : [u'in'] -was thoughtless : [u'of'] -was going : [u'on', u'off', u'.', u'well'] -Vincent Spaulding : [u',', u'seemed', u'.', u'did', u'?"'] -, three : [u'pipes', u'have', u'caltrops', u'of'] -disc and : [u'loop'] -very different : [u'level', u'person'] -hurry and : [u'dipped'] -He rushes : [u'to'] -me which : [u'make'] -these parts : [u".'"] -implore me : [u'to'] -above. : [u'On', u'As'] -. You : [u'may', u'did', u'would', u'do', u'will', u'must', u'understand', u'are', u'quite', u',', u'took', u'have', u'just', u'see', u'don', u'observed', u'know', u'shave', u'said', u'can', u'should', u"'", u'allude', u'fail', u'bring', u'look', u'had', u'knew', u'then', u'heard', u'remember', u'say', u'suppose', u'infer', u'saw', u'owe', u'need', u'cannot', u'were'] -uncertain which : [u'to'] -to be : [u'an', u'so', u'interesting', u'a', u'unknown', u'taken', u'married', u'in', u'expostulating', u'busier', u'neutral', u'less', u'gone', u'on', u'done', u'right', u'one', u'able', u'improving', u'any', u'such', u'careful', u'seen', u'.', u'third', u'our', u'the', u'there', u'left', u'conspicuous', u'at', u'true', u'produced', u'sharp', u'having', u'stained', u'gained', u'much', u'something', u'innocent', u'upbraided', u'absolutely', u'hanged', u'led', u'read', u'dust', u'correct', u'some', u'most', u'fond', u'cooped', u'connected', u'walking', u'useful', u'said', u'that', u'found', u'too', u'associated', u'definite', u'immediately', u'lost', u'solved', u'embarrassed', u'kicked', u'deduced', u'gathered', u'adhesive', u'rather', u'to', u'obstinate', u'determined', u'made', u'sure', u'no', u'quite', u'bound', u'."', u'his', u'light', u'not', u'silent', u'before', u'realised', u'bored', u';', u'with', u'obeyed', u'lonely', u'laid', u'regretted', u'your', u'still', u'almost', u'forwarded', u'discreet', u'described', u'particularly', u'wrenching', u'as', u'away', u'allowed', u'accused', u'derived', u'degenerating', u'of', u'kept', u'only', u',"', u'back', u'probable', u'colourless', u'spent', u'relevant', u'impossible', u'looking', u'little', u'inhabited', u'sacrificed'] -we bring : [u'him'] -angry to : [u'see'] -He rushed : [u'fiercely', u'down'] -long drive : [u'and'] -obedience on : [u'the'] -minutes after : [u'I', u'four'] -King had : [u'stretched'] -the chief : [u'feature'] -a hereditary : [u'matter'] -great consequence : [u','] -became of : [u'him', u'those'] -countryman. : ['PP'] -and yet : [u'from', u'every', u'the', u'abstracted', u'I', u'might', u'was', u'his', u'he', u'afraid', u',', u'which', u'be', u'there', u'always', u'you', u'her', u'a', u'as', u'Mr'] -December 22nd : [u',', u'.'] -were ill : [u'used'] -no superscription : [u'except'] -Probably he : [u'handed'] -Is Briony : [u'Lodge'] -eccentricity. : [u'Very'] -door step : [u'.'] -experience, : [u'you', u'and', u'that'] -escaped a : [u'capital'] -can touch : [u'the'] -deduce that : [u'by', u'this', u'the'] -every one : [u'of'] -two small : [u'wicker'] -heavy step : [u','] -dried pips : [u'.'] -still remained : [u','] -employing his : [u'extraordinary'] -covered those : [u'keen'] -without you : [u',', u'.'] -by applying : [u'at'] -intruder by : [u'the'] -for everyone : [u'who'] -appearance gave : [u'an'] -keeps the : [u'place'] -pointed out : [u'the'] -highroad, : [u'where', u'and', u'which'] -the bride : [u'."', u',', u'.\'"', u"'"] -get some : [u'data'] -gaiters, : [u'with', u'and'] -would drop : [u'in'] -. Large : [u'sitting', u'masses'] -smoke rings : [u'as'] -hardened for : [u'any'] -white clouds : [u'drifting'] -rat faced : [u'fellow'] -pretty nearly : [u'filled'] -. Turning : [u'round'] -key into : [u'the'] -old fashioned : [u'shutters', u'manner'] -tried to : [u'puzzle', u'interest', u'force', u'look', u'put', u'hold', u'get', u'bluster', u'open'] -the deepest : [u'impression', u'thought', u'interest'] -smoothed one : [u'out'] -One moment : [u',"'] -a gambler : [u'in'] -set it : [u'right', u'going'] -perhaps I : [u'interrupt', u'ought', u'should', u'had'] -down his : [u'face', u'arms', u'cup'] -stepping in : [u'at'] -convinced that : [u'our', u'the', u'she'] -set in : [u'with', u','] -claim his : [u'pledge'] -attention at : [u'the'] -to pa : [u'.', u','] -as each : [u'new'] -stood," : [u'said'] -coronet to : [u'someone'] -, notably : [u'in'] -braving it : [u'with'] -read, : [u'with', u'peeping', u'understand'] -read. : ['PP'] -mistaken if : [u'this', u'we'] -to run : [u'back', u'away', u'short'] -as there : [u'were', u'are'] -mistaken in : [u'thinking'] -His costume : [u'was'] -shall have : [u'a', u'the', u'recourse', u'horrors', u'to', u'this', u'it'] -owner is : [u'unknown'] -much faith : [u'in'] -marked at : [u'zero'] -sprang up : [u'and', u',', u'in'] -beautiful in : [u'itself'] -have stolen : [u"?'", u",'"] -one more : [u'feat'] -should find : [u'their', u'a', u'myself', u'yourself'] -being a : [u'traveller', u'man', u'little', u'public', u'persevering'] -writing from : [u'both'] -all injured : [u'?"'] -have described : [u'.', u','] -most mysterious : [u'business'] -wing, : [u'however'] -a professional : [u'beggar', u'matter', u'commission'] -is impetuous : [u'volcanic'] -had something : [u'else'] -And Miss : [u'Sutherland'] -more. " : [u'That'] -forget, ' : [u'Oh'] -habit when : [u'in'] -Christmas goose : [u'."'] -bed fastened : [u'like'] -The leader : [u'of'] -missed everything : [u'of'] -already gained : [u'publicity'] -an expenditure : [u'as'] -five. : ['PP', u'From'] -my girl : [u',', u'!', u'should'] -pitiable pass : [u'?'] -charged with : [u'being', u'?"', u'that'] -my colleague : [u'has'] -shall look : [u'forward', u'into'] -got the : [u'swag', u'other', u'two'] -stagnant square : [u'which'] -giant frame : [u','] -invaluable. : ['PP'] -longer. : [u'I'] -my duty : [u'by'] -sees no : [u'objection'] -mantelpiece and : [u','] -the elbow : [u'where'] -the thief : [u';'] -longer; : [u'I'] -been reduced : [u'to'] -beggary, : [u'and'] -people would : [u'talk'] -can there : [u'be'] -should never : [u'have'] -from there : [u',', u'?"', u'on'] -engaged a : [u'sitting'] -passing quite : [u'close'] -whatever expenses : [u'I'] -time to : [u'time', u'see', u'the', u'stop', u'come', u'take', u'think', u'tell', u'close', u'rectify', u'prevent', u'thank', u'have', u'do', u'be', u'break', u'commence', u'put'] -been disturbed : [u','] -be gathered : [u'from'] -theoretical and : [u'fantastic'] -alone had : [u'touched'] -too coaxing : [u'.'] -and tugged : [u'until', u'at'] -stepfather was : [u'in'] -little secret : [u'of'] -plot, : [u'or'] -owner of : [u'the'] -last, : [u'as', u'when', u'McCarthy', u'after', u'and', u'however', u'saturated', u'but', u'having', u'all'] -last. : ['PP'] -Horsham lawyer : [u".'"] -unforeseen and : [u'extraordinary'] -guttering candle : [u'in'] -been she : [u','] -neutral tinted : [u'London'] -! Forgery : [u'."'] -Openshaw unbreakable : [u'tire'] -ll see : [u'your', u'him'] -either end : [u'to'] -for over : [u'twenty'] -sometimes finding : [u'the'] -morning when : [u'the'] -this he : [u'placed'] -a relic : [u'of'] -am safe : [u'from'] -other ones : [u',', u'.'] -from nine : [u'in'] -the branches : [u'there'] -front right : [u'up'] -ten years : [u'to'] -absurd! : [u'I'] -his worn : [u'boots'] -you a : [u'line', u'very', u'married', u'family', u'couple', u'cab', u'cup', u'shake', u'strong', u'liar', u'question', u'wire', u'quite', u'second'] -his work : [u','] -two mates : [u','] -some assistance : [u'.'] -client paused : [u'and'] -spectators, : [u'well'] -lights of : [u'a', u'the'] -liked and : [u'do'] -your laughter : [u','] -results of : [u'my', u'your'] -large man : [u'with'] -until I : [u'felt', u'yelled', u'have', u'should', u'got', u'come', u'had', u'was', u'found'] -crawl now : [u','] -who are : [u'sound', u'breaking', u'anxious', u'on', u'seeking'] -could perform : [u'one'] -smokes Indian : [u'cigars'] -is certainly : [u'among', u'plausible', u'not'] -she hand : [u'it'] -this should : [u'do'] -fascinating nor : [u'artistic'] -plainly furnished : [u'as', u'.', u'room', u'little'] -defective, : [u'you'] -you I : [u'had'] -them without : [u'a', u'revealing'] -Reading, : [u'and', u'but'] -Reading. : [u'Then', u'My', u'There', u'I'] -no furniture : [u'save'] -her she : [u'will', u'suddenly'] -walks of : [u'life'] -deepest interest : [u'."'] -knock you : [u'up'] -. Westaway : [u'was'] -eBooks with : [u'only'] -collapse. : [u'I'] -this public : [u'manner'] -resolve our : [u'doubts'] -spinning up : [u'from'] -jury had : [u'no'] -you driving : [u'at'] -Others were : [u'of'] -then hurried : [u'forward'] -other of : [u'us'] -ultimate destiny : [u'of'] -pointed beard : [u'of'] -shoulders at : [u'any'] -way along : [u'the'] -show me : [u'."', u'how', u'that'] -clock makes : [u'it'] -he remarked : [u'. "', u', "', u'as', u',', u'. "\'', u'that', u'at', u'after'] -.- : [u'You'] -.. : ['PP'] -." : [u'Wedlock', u'Indeed', u'It', u'There', u'The', u'What', u'Eglow', u'Precisely', u'A', u'Come', u'You', u'Pray', u'And', u'If', u'Let', u'But', u'Very', u'Is', u'Well', u'I', u'Oh', u'This', u'He', u'My', u'No', u'Our', u'Not', u'Irene', u'Married', u'Mr', u'We', u'Your', u'Try', u'Beyond', u'How', u'His', u'Eight', u'To', u'Sarasate', u'Thank', u'Smart', u'Yes', u'Ha', u'Watson', u'Nor', u'They', u'Really', u'So', u'Ah', u'Some', u'Do', u'Here', u'Quite', u'Missing', u'Good', u'Will', u'Have', u'Boscombe', u'On', u'From', u'Witness', u'About', u'Look', u'BALLARAT', u'One', u'When', u'God', u'Why', u'In', u'Nothing', u'7th', u'9th', u'10th', u'12th', u'Then', u'Holmes', u'That', u'Starving', u'Now', u'Last', u'Convinced', u'Because', u'Frankly', u'May', u'Coarse', u'Awake', u'Who', u'Inspector', u'Great', u'As', u'Eh', u'See', u'Of', u'Sold', u'Think', u'Get', u'After', u'Farintosh', u'These', u'Which', u'Fancy', u'Stoke', u'Where', u'Won', u'Done', u'Perhaps', u'Stop', u'An', u'Capital', u'Yesterday', u'At', u'Suddenly', u'Colonel', u'Half', u'Six', u'Just', u'Still', u'Excuse', u'None', u'Owe', u'Please', u'Are', u'Mrs', u'For', u'Two', u'Better', u'She'] -take effect : [u'would'] -always some : [u'there'] -.' : [u'I', u'You', u'Why', u'A', u'But'] -glance of : [u'the'] -Of course : [u',', u'you', u'it', u'he', u'there', u'!', u'I'] -show my : [u'face'] -, nervous : [u'hands'] -Never let : [u'yourself'] -Between your : [u'brandy'] -Slipping through : [u'the'] -vanishing cloth : [u'.'] -, about : [u'the', u'eleven', u'three'] -. federal : [u'laws'] -be who : [u'was'] -supper. : ['PP'] -singular that : [u'I', u'this'] -over clean : [u'black'] -hope as : [u'long'] -of sudden : [u'wealth'] -motives for : [u'standing'] -be into : [u'the'] -footpaths were : [u'black'] -ll take : [u'it', u'you'] -us where : [u'the'] -is due : [u'at'] -would rush : [u'to', u'tumultuously'] -without pa : [u'knowing'] -or dark : [u'red'] -beautiful countryside : [u'."'] -an agency : [u'for'] -heart or : [u'conscience'] -an impression : [u'behind'] -left was : [u'enough'] -most successful : [u'cases'] -implicate Miss : [u'Flora'] -hereditary matter : [u';'] -shorter walk : [u'brought'] -While Sherlock : [u'Holmes'] -through the : [u'street', u'room', u'shouting', u'crowd', u'City', u'house', u'beautiful', u'streets', u'meadows', u'wood', u'papers', u'bars', u'keyhole', u'dim', u'gloom', u'darkness', u'endless', u'rifts', u'front', u'window', u'outskirts', u'rent', u'kitchen', u'doctors', u'scattered', u'dense', u'fall', u'lovely', u'open', u'ventilator', u'hole', u'wicket', u'door', u'snow', u'heavy', u'care'] -burning oil : [u'and'] -after much : [u'chaffering'] -such nice : [u'work'] -his double : [u'breasted', u'chin'] -legs upon : [u'another'] -girl of : [u'fourteen'] -who were : [u'flirting', u'lounging', u'in', u'unacquainted', u'playing', u'opposed'] -out here : [u'.'] -made London : [u'we'] -; and : [u'I', u'we', u'a', u',', u'for', u'that', u'he', u'your', u'there', u'this', u'by', u'yet', u'in', u'then', u'when'] -wrote my : [u'articles'] -and the : [u'home', u'fierce', u'paper', u'mind', u'exalted', u'landau', u'lady', u'lamps', u'loungers', u'expression', u'muscles', u'Freemasonry', u'left', u'effect', u'date', u'folk', u'same', u'billet', u'rueful', u'ominous', u'Agra', u'directors', u'dawn', u'bags', u'pistol', u'copying', u'conduct', u'usual', u'boy', u'little', u'vacuous', u'other', u'extraordinary', u'whole', u"'", u'loss', u'curious', u'son', u'police', u'coroner', u'incident', u'sofa', u'more', u'moment', u'morning', u'Boscombe', u'inferences', u'smokeless', u'veins', u'private', u'reeds', u'heels', u'corners', u'equinoctial', u'rain', u'wind', u'splash', u'lawyer', u'water', u'chalk', u'papers', u'rest', u'third', u'sailing', u'murdering', u'still', u'sun', u'maid', u'heading', u'extreme', u'two', u'cable', u'murderers', u'rascally', u'clink', u'air', u'Lascar', u'evident', u'bedroom', u'house', u'questions', u'room', u'twisted', u'money', u'windows', u'punishment', u'excellent', u'moral', u'face', u'goose', u'prison', u'bird', u'breath', u'proprietor', u'numbers', u'only', u'inquirer', u'claspings', u'crisp', u'case', u'estates', u'family', u'folks', u'creaking', u'flooring', u'trap', u'blinds', u'stone', u'one', u'panelling', u'stump', u'schemer', u'use', u'loop', u'mystery', u'lapse', u'colour', u'skin', u'pay', u'conversation', u'carriage', u'colonel', u'sight', u'sound', u'damp', u'swish', u'shouting', u'ruffian', u'Jezail', u'humbler', u'agony', u'noble', u'matter', u'footman', u'artist', u'exquisite', u'Park', u'words', u'church', u'blundering', u'man', u'snow', u'number', u'price', u'look', u'anxiety', u'thirty', u'maids', u'opposing', u'ladies', u'dearest', u'dock', u'child', u'lawn', u'key', u'real', u'prisoner', u'Project', u'medium', u'Foundation'] -smiling. : ['PP'] -very ingenious : [u',"'] -smiling, : [u'holding'] -themselves, : [u'was', u'and', u'but'] -little fortune : [u'to'] -9th inst : [u'.,'] -thrown back : [u','] -it vanishes : [u'among'] -town of : [u'Ross'] -reading or : [u'using'] -compositor by : [u'his'] -Certainly. : [u'You', 'PP'] -Certainly, : [u'if', u'madam', u'Mr', u'sir'] -whipcord. : ['PP'] -Temple to : [u'see'] -in Scarlet : [u','] -succeeded by : [u'a', u'certain'] -weaker than : [u'himself'] -survivor of : [u'one'] -many men : [u'have'] -; or : [u'his'] -them out : [u'together'] -buy an : [u'opinion'] -table ten : [u'minutes'] -step I : [u'should', u'hear'] -looming up : [u'beside'] -!-- a : [u'trouble'] -; on : [u'the'] -, unpapered : [u'and'] -my intention : [u'of', u'that', u'to'] -http:// : [u'www', u'gutenberg', u'pglaf'] -cleared up : [u',', u'.', u'to', u'now', u'everything'] -still a : [u'sceptic'] -ascertained, : [u'who'] -another such : [u'opening'] -feet of : [u'water', u'me'] -has satisfied : [u'himself'] -with bloodstains : [u'.'] -and watch : [u'if'] -pleasant. : [u'I'] -muzzle, : [u'and'] -Swan Hotel : [u'at'] -still I : [u'have', u'had'] -them wear : [u'over'] -meal into : [u'his'] -fitted with : [u'a'] -, though : [u'at', u'it', u'what', u'he', u'an', u'I', u'the', u'rather', u',', u'both', u'there', u'comely', u'not', u'very', u'in', u'they', u'we', u'of', u'her', u'no', u'none', u';', u'how', u'little', u'whether'] -which lined : [u'the', u'it'] -walk out : [u'upon'] -been lifted : [u'and'] -thin upon : [u'the'] -huge pinch : [u'of'] -came talking : [u'something'] -" Alice : [u'is'] -God bless : [u'you'] -years it : [u'has'] -so sure : [u'that'] -gazed long : [u'and'] -billet was : [u'such'] -were seated : [u'at'] -her mistress : [u'allowed'] -" Ten : [u'will'] -had intrusted : [u'to'] -is,' : [u'he'] -feasible. : ['PP'] -may sketch : [u'out'] -my own : [u'.', u'."', u'person', u'arrangements', u'station', u'little', u'and', u'good', u'stupidity', u'to', u'right', u'attention', u'master', u'head', u'roof', u'fate', u'family', u'affairs', u'police', u'purposes', u'thoughts', u'income', u'thought', u'province', u'services', u'heart', u'curiosity', u'marriage', u'memory', u'case', u'private', u'bureau', u'way', u'eyes', u'son', u'special', u'room', u'shadow', u'hair'] -extra couple : [u'of'] -thoughts are : [u'not'] -years in : [u'England', u'the'] -upon Portsdown : [u'Hill'] -events than : [u'those'] -circumstances made : [u'a'] -not love : [u'him', u'your'] -known that : [u'we'] -The thing : [u'to'] -the Gladstone : [u'bag'] -threw it : [u'down', u'into', u'across'] -the yard : [u','] -band a : [u'speckled'] -man come : [u'to'] -butt end : [u'of'] -from accidental : [u'causes'] -excitement and : [u'concern'] -you desire : [u'to', u'your'] -Holmes desired : [u'to'] -limping step : [u'and'] -of preserving : [u'a'] -he glanced : [u'down'] -accomplice' : [u's'] -distinctly Australian : [u'cry'] -dear sir : [u',"', u'.'] -accomplice. : [u'They'] -second largest : [u'private'] -. Still : [u','] -known each : [u'other'] -led away : [u'from'] -are these : [u':'] -chinchilla beard : [u'growing'] -deeply into : [u'the', u'it'] -sold the : [u'lot'] -those unwelcome : [u'social'] -he who : [u'had', u'wore'] -will state : [u'your'] -freedom which : [u'it'] -debts, : [u'if'] -. " We : [u'have', u'never', u'shall'] -For that : [u'matter'] -dawn be : [u'breaking'] -when I : [u'arrived', u'raise', u'saw', u'found', u'have', u'got', u'started', u'flash', u'had', u'wrote', u'looked', u'came', u'say', u'heard', u'returned', u'knew', u'give', u'see', u'am', u'coupled', u'was', u'glanced', u'spoke', u'consider', u'think', u'actually', u'went', u'gave', u'called', u'received', u'mentioned', u'would'] -?" But : [u'I'] -boot, : [u'it'] -He says : [u'four'] -mantelpiece showed : [u'me'] -cry and : [u'dropped', u'found'] -the previous : [u'night', u'morning', u'one'] -remembered, : [u'Sherlock'] -constables up : [u'the'] -whine, : [u'which'] -first inquiries : [u'.'] -when a : [u'hansom', u'cab', u'man', u'sudden', u'clever', u'door', u'card'] -Horsham, : [u'I', u'and', u'then', u'after'] -" Encyclopaedia : [u'Britannica', u'"'] -never likely : [u'to'] -season of : [u'forgiveness'] -just to : [u'remember', u'tell', u'teach'] -own hands : [u'."'] -American had : [u'started'] -my fingers : [u'.'] -He often : [u'had'] -Thus, : [u'we'] -' Lone : [u'Star'] -Waterloo we : [u'were'] -roof was : [u'partly'] -be done : [u'in', u'at', u'to', u'."'] -My suspicions : [u'were'] -How dare : [u'you'] -detach or : [u'remove'] -solemnly. " : [u'Your'] -eagerly out : [u'of'] -terror." : [u'She'] -always given : [u'me'] -a thumb : [u','] -the meadows : [u',', u'.'] -, farther : [u'up'] -sum which : [u'I'] -, sacrifice : [u'my'] -all accounts : [u'a'] -be entirely : [u'our'] -most unpleasant : [u'couple'] -the dock : [u'for', u'.'] -Horsham. : ['PP', u'He', u'It'] -in reply : [u'.'] -after going : [u'through'] -pain of : [u'my'] -claim to : [u'be', u'the'] -sometimes curious : [u'as'] -An ordinary : [u'man'] -ceremony. : ['PP'] -the butt : [u'end'] -long cigar : [u'shaped'] -of Warsaw : [u'yes'] -spirits upon : [u'their'] -passed you : [u'without'] -his account : [u','] -dregs of : [u'the'] -in undoing : [u'the'] -evident to : [u'me'] -Posted: : [u'November'] -conception of : [u'an'] -answered to : [u'the'] -and loop : [u'of'] -the influence : [u'of'] -one about : [u'three'] -his brow : [u'. "', u'so', u'he', u',', u'was'] -throws up : [u'mud'] -minutes tweed : [u'suited'] -Ferguson and : [u'I'] -, observing : [u'the'] -great town : [u'until'] -lover through : [u'the'] -of fourteen : [u','] -remain, : [u'dear'] -I recognise : [u'the'] -about donations : [u'to'] -weary day : [u'.'] -is not : [u'an', u'too', u'exactly', u'a', u'as', u'sure', u'so', u'easily', u'pleasant', u'.', u'part', u'mentioned', u'Hatherley', u'such', u'for', u'always', u'yet', u'on', u'your', u'easy', u'the', u'laid', u'cold', u'even', u'quite', u'necessary', u'only', u'worth', u',', u'my', u'I', u'to', u'selfishness', u'personally', u'beautiful', u'mad'] -is now : [u'desirous', u'as', u'another', u'dead', u'past', u'thirty', u'devouring', u'inhabited', u',', u'in', u'."', u'the'] -whistle in : [u'the'] -the soles : [u'are'] -! Does : [u'it'] -Third right : [u','] -had gained : [u'the'] -from Mr : [u'.'] -he. ' : [u'You', u'What', u'Mr', u'I', u'It'] -( if : [u'any'] -flat box : [u'.'] -sporadic outbreaks : [u'of'] -had seamed : [u'it'] -your country : [u'in'] -fringed the : [u'hand'] -a tune : [u'under'] -from the : [u'hall', u'nature', u'top', u'part', u'scene', u'room', u'house', u'brougham', u'inside', u'office', u'retired', u'extraordinary', u'rack', u'Bank', u'thin', u'cellar', u'first', u'commonplaces', u'ground', u'King', u'reigning', u'box', u'thumb', u'missing', u'window', u'west', u'pool', u'body', u'edge', u'point', u'newspapers', u'action', u'papers', u'conviction', u'length', u'routine', u'south', u'commencement', u'table', u'very', u'North', u'major', u'family', u'fanciful', u'country', u'loaf', u'cupboard', u'Isle', u'ship', u'stevedore', u'old', u'opium', u'distance', u'same', u'sofa', u'wall', u'photograph', u'creditor', u'leather', u'lady', u'jewel', u'goose', u'fanlight', u'ruddy', u'salesman', u'stall', u'hotel', u'street', u'outset', u'next', u'lawn', u'village', u'chimneys', u'original', u'middle', u'bed', u'silence', u'dead', u'roots', u'rate', u'time', u'gloss', u'absolute', u'little', u'floor', u'one', u'shelf', u'garden', u'schoolmaster', u'wedding', u'Serpentine', u'direction', u'dangerous', u'glamour', u'road', u'joint', u'charge', u'gentleman', u'fogs', u'station', u'front', u'bottom', u'moment', u'person', u'public'] -were no : [u'signs', u'other', u'marks', u'carpets'] -salesman nodded : [u'and'] -in reference : [u'to'] -Far from : [u'hushing'] -letter the : [u'injunction'] -trembling hand : [u", '"] -dirty thumb : [u'.'] -suppose there : [u'would'] -the Ballarat : [u'Gang'] -bowed, : [u'and', u'his', u'feeling'] -no help : [u'to'] -so early : [u','] ---" His : [u'remarks'] -say the : [u'Serpentine'] -pool the : [u'woods'] -miles an : [u'hour'] -news to : [u'morrow', u'the', u'his'] -the blaze : [u'.'] -without result : [u'. "'] -there while : [u'I'] -again behind : [u'me'] -these deserted : [u'rooms'] -of heroic : [u'self'] -very strange : [u'experience'] -already a : [u'dying', u'clue', u'sinister'] -dreadful hard : [u'before'] -who acts : [u'as'] -he lays : [u'his'] -have rushed : [u'past'] -tilted in : [u'a'] -which interests : [u'me'] -one o : [u"'"] -of promise : [u'were'] -his feet : [u'again', u'up', u'and', u'; "', u'thrust', u',', u'heavy'] -happened to : [u'be', u'him', u'disturb', u'live', u'you', u'look'] -hand! : [u'Have'] -hand, : [u'while', u'there', u'pulled', u'and', u'turned', u'which', u'with', u'hover', u'I', u'a', u'he', u'screaming', u'madam', u'if', u'recalled', u'of', u'the', u'all', u'though'] -hand. : [u'I', 'PP', u'Young', u'Now', u'Beside', u'Holmes', u'So', u'It', u'Colonel', u'With', u'He', u'Miss'] -staring with : [u'frightened'] -, believing : [u'her'] -the German : [u'for', u'who'] -standing to : [u'his'] -!" : [u'Now'] -his chemical : [u'studies'] -affectation, : [u'that'] -future career : [u'of'] -deposit and : [u'that'] -his ordinary : [u'clothes'] -sharp rattling : [u'of'] -shamefully used : [u'."'] -any money : [u'paid'] -raising up : [u'a'] -the next : [u'room', u'.', u'evening', u'Assizes', u'act', u'few', u'day', u'occasion'] -be impossible : [u'to', u','] -saw Mary : [u'herself'] -by smearing : [u'my', u'them'] -friend, " : [u'by', u'whether'] -." But : [u'the'] -little turns : [u'also'] -had strayed : [u'into'] -Florida for : [u'the'] -most lovely : [u'young', u'country'] -and whistled : [u'shrilly'] -Then you : [u'may', u'don', u'think', u'won'] -three pound : [u'heavier'] -of next : [u'day'] -Excuse me : [u',', u',"'] -is somewhat : [u'luxuriant'] -dark road : [u','] -Not particularly : [u'."'] -I remain : [u','] -about yourself : [u','] -told my : [u'pal', u'story', u'maid'] -However, : [u'when', u'in', u'I', u'it', u'if'] -K.'; : [u'and'] -was seen : [u'swinging', u'.', u'walking'] -I sponged : [u'the'] -By the : [u'way', u'time', u'light', u'same', u'select'] -remained I : [u'might'] -mews, : [u'to', u'and'] -had repented : [u'of'] -gables and : [u'high'] -is: ' : [u'There'] -ladder against : [u'the'] -might never : [u'be', u'have'] -place was : [u'still'] -that maiden : [u',"'] -you full : [u'justice'] -last straggling : [u'houses'] -it could : [u'have', u'not', u'bear'] -matter has : [u'she'] -copyright royalties : [u'.'] -unusual. : [u'I', u'But'] -unusual, : [u'and'] -left Baker : [u'Street'] -pew. : [u'There', u'Some', u'I'] -, chatting : [u'about'] -throw in : [u'this'] -looked sadly : [u'at'] -In life : [u'or'] -the forecastle : [u'of'] -the dangerous : [u'company'] -very note : [u'."', u'which'] -had met : [u'me', u'with', u'a'] -have remarked : [u'how', u','] -abnormally cruel : [u','] -? His : [u'silence'] -but Sherlock : [u'Holmes'] -hated to : [u'be'] -and 270 : [u'half'] -farther up : [u'the'] -the reputation : [u'of'] -before one : [u'has'] -better take : [u'a'] -welcomed her : [u'with'] -his nostrils : [u'were'] -to a : [u'patient', u'man', u'more', u'salary', u'conclusion', u'head', u'pitch', u'practical', u'woman', u'firm', u'certain', u'possibility', u'criminal', u'scheming', u'rat', u'consideration', u'marriage', u'quiet', u'light', u'black', u'small', u'whitewashed', u'court', u'moral', u'poor', u'pointed', u'salesman', u'band', u'fierce', u'very', u'cluster', u'thick', u'wire', u'hook', u'clever', u'soul', u'stand', u'shapeless', u'huge', u'British', u'late', u'part', u'cell', u'cup', u'lonely', u'hundred', u'charge', u'lady', u'ring', u'shadow', u'Project', u'work'] -charge him : [u'with'] -Street, " : [u'it', u'life'] -ill, : [u'and'] -simple and : [u'yet'] -rather baggy : [u'grey'] -the ponderous : [u'commonplace'] -journeyed down : [u'to'] -received. : [u'Be'] -the roads : [u'.'] -received, : [u'Mr'] -side table : [u'."'] -to I : [u'found'] -limped he : [u'was'] -'- the : [u'wisp'] -to A : [u','] -own attention : [u'at'] -repeatedly told : [u'her'] -of Holland : [u'.', u','] -to turn : [u'my', u'the', u'to', u'upon', u'it'] -the large : [u'dark', u'one'] -duplicates of : [u'Mr'] -stand for : [u'a'] -really an : [u'object'] -hesitating, : [u'whispering'] -zip***** : [u'This'] -hat three : [u'years'] -command a : [u'view'] -crates and : [u'massive'] -to Miss : [u'Turner', u'Stoper', u'Violet'] -slight bow : [u'sidled'] -really as : [u'a'] -support the : [u'Project'] -folded across : [u'it'] -get home : [u'instantly'] -things had : [u'been'] -leaf of : [u'a'] -double tide : [u'inward'] -Saturday' : [u's'] -mystery and : [u'to', u'the'] -electronically in : [u'lieu'] -personal matter : [u'with'] -Saturday, : [u'and'] -cannot swear : [u'that'] -pre existing : [u'cases'] -short walk : [u'took'] -. " His : [u'conduct'] -closely," : [u'I'] -right is : [u'his'] -struck us : [u'both'] -wear only : [u'on'] -whatever remains : [u','] -times before : [u'I'] -slowly evolve : [u'before'] -the Westbury : [u'House'] -. Within : [u'there', u'are', u'was'] -find Sherlock : [u'Holmes'] -we found : [u'ourselves', u'lunch', u'this', u'the'] -for want : [u'of'] -right in : [u'the', u'front'] -to bandy : [u'words'] -words alone : [u'would'] -Castle business : [u'.'] -eyes glancing : [u'back'] -no data : [u'yet', u'.'] -a Freemason : [u','] -felt angry : [u'at'] -walked across : [u'to'] -indicating that : [u'it'] -the coppers : [u'which'] -time even : [u'to'] -glanced back : [u'and'] -or entity : [u'to', u'that', u'providing'] -shown himself : [u'for'] -very heavy : [u'and', u'sleeper'] -stop his : [u'gossip'] -filled the : [u'first'] -other traces : [u'of'] -I ever : [u'drove', u'found', u'forget', u'heard', u'chance'] -been turning : [u'out'] -, " would : [u','] -intention. : [u'A'] -intention, : [u'I'] -matters until : [u'to'] -which rise : [u'up'] -breast of : [u'his'] -rat in : [u'a'] -and nights : [u'on'] -Horner is : [u'innocent'] -No legal : [u'papers'] -Court Road : [u',', u'.', u'at'] -stood your : [u'friend'] -perfect sample : [u'of'] -your equipment : [u'.'] -links or : [u'immediate'] -plumber in : [u'the'] -clad as : [u'became'] -By eleven : [u'o'] -have degraded : [u'what'] -and personally : [u'interested'] -whom the : [u'pledge', u'love'] -of dim : [u'light'] -. Absolutely : [u'no'] -and pulled : [u'a', u'and', u'at'] -single bone : [u','] -found lying : [u'on'] -a roar : [u'of'] -advice of : [u'my'] -unfortunate enough : [u'to'] -the intimate : [u'of'] -carefully dried : [u'and'] -his ears : [u'are', u','] -be those : [u'that', u'wretched'] -office but : [u'a'] -. Don : [u"'"] -details should : [u'find'] -Frank took : [u'my'] -as Alice : [u'grew'] -the vital : [u'essence'] -is certain : [u',', u'.'] -that surly : [u'fellow'] -rather more : [u'to', u'than'] -, wish : [u'to'] -Hampshire in : [u'the'] -the villains : [u'who'] -few clumps : [u'of'] -hair seemed : [u'to'] -the increased : [u'salary'] -trouble and : [u'likely'] -of blue : [u'.', u'paper'] -to gaol : [u'now'] -ones upon : [u'the'] -remarking before : [u'he'] -says I : [u"; '"] -Ross was : [u'there', u'.'] -the river : [u'by', u'to', u'."', u','] -some strange : [u'bird', u'and', u'tales', u'creature'] -not apparently : [u'see'] -the path : [u'and', u'than'] -good result : [u',"'] -Bradshaw," : [u'said'] -the farm : [u'or', u'steadings'] -small pawnbroker : [u"'"] -machine if : [u'I'] -worn boots : [u','] -return to : [u'Hatherley', u'London', u'England', u'him', u'the', u'my'] -and ensuring : [u'that'] -those great : [u'elemental', u'people'] -the tail : [u'of', u'."'] -barber. : [u'They'] -. Hold : [u'it'] -mystery to : [u'him'] -sat up : [u'upon', u'in', u'with'] -Who ever : [u'heard'] -this apparition : [u'.'] -Ezekiah Hopkins : [u','] -amazement. : ['PP'] -lichen blotched : [u'stone'] -your valuable : [u'time'] -THE woman : [u'.'] -fashionable epistle : [u',"'] -shortly after : [u'eight', u'his'] -and pluck : [u'her'] -selfishness or : [u'conceit'] -will direct : [u'his'] -up that : [u'I'] -an ejaculation : [u'or'] -decline of : [u'his'] -walking alone : [u'.'] -stepped up : [u'to'] -had known : [u'each', u'dad', u'him', u"--'"] -his armchair : [u'and', u'amid', u'.'] -light shot : [u'out'] -rich brown : [u'fur'] -Bakers in : [u'this'] -suddenly come : [u'upon'] -always locked : [u'up'] -addressed the : [u'envelope'] -early, : [u'and', u'though', u'Doctor'] -anything with : [u'him'] -the commonplaces : [u'of'] -one but : [u'Mr'] -may address : [u'me'] -what use : [u'the', u'you', u'was'] -bureau first : [u'and'] -was endeavouring : [u'to'] -are impassable : [u','] -quinsy and : [u'swollen'] -Openshaw has : [u'in'] -down was : [u'a'] -!" I : [u'answered', u'cried', u'exclaimed', u'whispered', u'ejaculated'] -might have : [u'a', u'your', u'remained', u'turned', u'communicated', u'called', u'been', u'leaped', u'the', u'placed', u'suggested', u'shown', u'any', u'seen', u'faced', u'changed', u'fled'] -Windibank," : [u'said', u'Holmes'] -Each daughter : [u'can'] -Wood. : ['PP'] -lonely houses : [u','] -lead foil : [u'.'] -Openshaw had : [u'some'] -conjunction with : [u'the'] -something more : [u'cheerful', u'solid'] -Title: : [u'The'] -hence also : [u'the'] -some strong : [u'motive', u'object', u'agitation', u'reason'] -very incomplete : [u'."'] -things come : [u'back'] -renamed. : ['PP'] -fainted dead : [u'away'] -powers. : [u'His'] -called your : [u'attention'] -in Kent : [u'.'] -human. : [u'What'] -he recovered : [u'his'] -cases which : [u'occur', u'come', u'are', u'I', u'serves', u'you'] -your custom : [u'always'] -cover the : [u'matter', u'facts'] -eyes. " : [u'I', u'Yes', u'Why'] -t a : [u'cat', u'man'] -you appeared : [u'upon'] -the front : [u',', u'of', u'door', u'room', u'pew'] -not quite : [u'good', u'my', u'follow', u'so', u'understand', u'to'] -wrote and : [u'said'] -can think : [u','] -carry my : [u'stone'] -my visitor : [u', "'] -bride' : [u's'] -an impertinent : [u'fellow'] -certain annual : [u'sum'] -mission of : [u'promoting', u'increasing'] -were groping : [u','] -When Lee : [u'laid'] -pretty expensive : [u'joke'] -Copper Beeches : [u',', u'.', u'my', u'by'] -climate of : [u'Florida'] -elapsed. : [u'I'] -there rushed : [u'into'] -But here : [u'"--', u'she', u'are'] -horsey looking : [u'man'] -contrary are : [u'the'] -ever to : [u'discover'] -evil for : [u'the'] -moodily at : [u'one'] -little of : [u'Holmes', u'my', u'life', u'his', u'your', u'its', u'what', u'the'] -been surprised : [u'at'] -its hinges : [u'.'] -together. : ['PP', u'It', u'McCarthy', u'If', u'We'] -together, : [u'as', u'his', u'but', u'the', u'bound', u'and', u'to'] -that may : [u'hang', u'be', u'help'] -be recovered : [u'."'] -a pile : [u'of', u','] -carriage at : [u'the'] -coffee in : [u'the', u'one'] -he knows : [u'to', u'nothing'] -even my : [u'hardened'] -remark the : [u'postmarks'] -, 26 : [u','] -a slave : [u'to'] -ANY PURPOSE : [u'.'] -a drunkard : [u'.', u"'"] -glad that : [u'you', u'he'] -be approached : [u'by'] -he known : [u'the'] -grey in : [u'colour'] -God for : [u'that'] -must obtain : [u'permission'] -to hurt : [u'a'] -Lodge and : [u'laid'] -a huge : [u'pinch', u'vault', u'error', u'ledger', u'man', u'bundle'] -flowing in : [u'a'] -, rattling : [u'away'] -In this : [u'case', u'sinister', u'way', u'I'] -running freely : [u'down'] -hotel bill : [u','] -poorer was : [u'Frank'] -tongue over : [u'his'] -had worn : [u'all'] -or in : [u'two', u'which', u'his', u'death', u'danger'] -much a : [u'mystery'] -The manageress : [u'had'] -increased salary : [u'may'] -recent developments : [u','] -presented to : [u'him'] -They laid : [u'me'] -will. : [u'I'] -uncle Elias : [u'and', u'emigrated'] -bowed me : [u'out'] -coat which : [u'was'] -? You : [u'seem', u'made', u"'", u'won', u'give', u'are'] -one twelve : [u'months'] -appearance? : [u'Describe'] -was done : [u'with', u','] -of April : [u'27'] -. Faces : [u'to'] -appearance, : [u'but', u'you', u'and'] -appearance. : [u'He', 'PP', u'But', u'We'] -have exacted : [u'from'] -had beaten : [u'against'] -parted from : [u'me', u'his', u'my'] -in turn : [u'to'] -throwing, : [u'a'] -ring to : [u'my'] -been placed : [u'at', u'in', u'close'] -fianc and : [u'no'] -then beginning : [u'to'] -the nervous : [u'tension'] -and more : [u','] -rifts of : [u'the'] -bring an : [u'explanation'] -important also : [u','] -guess how : [u'I'] -hardly a : [u'word', u'coat', u'case'] -so frightened : [u'by', u'about', u"!'"] -bending forward : [u'and'] -must recall : [u'the'] -reaching up : [u'his'] -his newspapers : [u','] -aside for : [u'you'] -coster' : [u's'] -became restive : [u','] -possible explanation : [u'.'] -wheels. : [u'It'] -way as : [u'ever', u'to'] -lock this : [u'door'] -have driven : [u'down'] -or devil : [u'.'] -. Shortly : [u'after'] -he departed : [u'.'] -Bar of : [u'Gold'] -good of : [u'you', u'Lord', u'all'] -father tickets : [u'when'] -more successful : [u'conclusion', u'.', u'."'] -advantages in : [u'my'] -for Eyford : [u'."'] -years has : [u'hardly'] -matches on : [u'his'] -frankly. " : [u'It'] -Set the : [u'pips'] -Not the : [u'Countess'] -have myself : [u'some'] -fat encircled : [u'eyes'] -a richness : [u'which'] -? Let : [u'me', u"'"] -must guard : [u'himself'] -ramblings of : [u'these'] -cuts into : [u'glass'] -stroll to : [u'find'] -door very : [u'quietly'] -stone and : [u'held'] -of brown : [u','] -rushes to : [u'some'] -listened spellbound : [u'to'] -over," : [u'Holmes'] -telephone projecting : [u'from'] -Leatherhead at : [u'twenty'] -the postmark : [u'.'] -serving his : [u'time'] -was Miss : [u'Alice'] -German people : [u','] -might catch : [u'some'] -Precisely.' : [u'He'] -first finds : [u'himself'] -point which : [u',', u'struck', u'remains', u'I'] -spoke calmly : [u','] -pens, : [u'and'] -aware that : [u'I', u'you', u'we', u'fuller', u'something'] -mistake, : [u'and'] -new leaf : [u'and'] -she propose : [u'to'] -no water : [u'mark'] -her lips : [u'parted'] -sudden breaking : [u'up'] -a wayside : [u'public'] -broken bell : [u'wire'] -There can : [u'be'] -said Jones : [u'in', u'. "', u'with'] -just called : [u'myself'] -descend to : [u'you'] -the shop : [u'window'] -my level : [u'?"'] -hydraulic press : [u'.', u'in', u','] -tend towards : [u'the'] -nine when : [u'I'] -you learn : [u'from'] -the ladies : [u'who'] -was performed : [u'at'] -covered his : [u'face'] -your patients : [u'spare'] -her since : [u'.'] -, showing : [u'me', u'that'] -whoa. : ['PP'] -immense responsibility : [u'which'] -what hour : [u'he'] -wrong again : [u';'] -bands which : [u'was'] -something abnormal : [u','] -empty berth : [u'.'] -compliments of : [u'the'] -consequential way : [u'. "'] -depose that : [u'Mr'] -throats. : [u'Outside'] -them with : [u'a', u'ink', u'the'] -kindly put : [u'your', u'two'] -slip your : [u'revolver'] -both in : [u'the'] -This ring : [u'--"'] -boy waiting : [u'at'] -palpitating with : [u'horror', u'fear'] -Two attempts : [u'of'] -bedroom door : [u'."'] -if ever : [u'he'] -blinked up : [u'at'] -room at : [u'The', u'Baker', u'the'] -lead. ' : [u'It'] -? She : [u'could'] -exercising enormous : [u'pressure'] -deep conversation : [u'with'] -unforeseen occurred : [u'to'] -dress with : [u'a'] -five years : [u'ago', u'and', u'at', u',"'] -and usually : [u'in'] -darted what : [u'seemed'] -unimpeachable Christmas : [u'goose'] -determined attempts : [u'at'] -. Chubb : [u'lock'] -been committed : [u'.', u',', u',"'] -death' : [u's'] -off both : [u'my'] -broadest part : [u','] -, extending : [u'down'] -Robinson," : [u'he'] -uncle here : [u'began'] -the preposterous : [u'hat'] -not there : [u'.', u'when'] -Or rather : [u','] -court! : [u'For'] -court, : [u'until'] -court. : ['PP'] -little knot : [u'of'] -whiskered, : [u'with'] -mother died : [u'she'] -dad?" : [u'she'] -a clean : [u'cut', u'one'] -fine sea : [u'stories'] -as was : [u'his', u'drawn', u'shown'] -fellow wanted : [u'to'] -here before : [u'they', u'it'] -he parted : [u'from'] -a bent : [u'back'] -Two hansoms : [u'were'] -not waiting : [u'for'] -should very : [u'much'] -reasons why : [u'the'] -set out : [u'ready'] -a clear : [u'field', u'account'] -his smokes : [u'of'] -The facts : [u'are'] -or twice : [u','] -expected to : [u'see', u'meet', u'take', u'make'] -couldn' : [u't'] -who waited : [u'in'] -said Baker : [u','] -every detail : [u'of'] -this mean : [u'?"', u','] -his back : [u'before', u'turned', u'or', u'so'] -idea more : [u'creditable'] -and conduct : [u'of'] -anxious about : [u'the'] -Suddenly a : [u'door'] -least interested : [u','] -You reasoned : [u'it'] -web site : [u'(', u'and'] -a civilised : [u'land'] -looked her : [u'over'] -of Savannah : [u'that', u','] -wrung my : [u'hand'] -allowed a : [u'regurgitation'] -to inquire : [u'more'] -tell her : [u'she', u'sweetheart'] -friend. : ['PP', u'As', u'I', u'He'] -friend, : [u'is', u'or', u'Mr', u'Dr', u'he', u'whom', u'blowing', u'Sir', u'and'] -House festivities : [u','] -small' : [u't'] -of Oxfordshire : [u','] -to aid : [u'us'] -friend' : [u's'] -probability is : [u'that'] -I lock : [u'this'] -skill has : [u'indeed'] -place considerable : [u'confidence'] -. HOLMES : [u':--'] -covered all : [u'tracks'] -running his : [u'eye'] -summoned. : ['PP', u'He'] -street, " : [u'here'] -She walked : [u'into'] -midday to : [u'morrow'] -called in : [u'the'] -staggered back : [u','] -unofficial adviser : [u'and'] -great delicacy : [u','] -trove indeed : [u'.'] -is so : [u'uncourteous', u'long', u'important', u'ill', u'.', u'remarkable', u'keen', u'cunning', u'small', u'dreadful', u'very', u'lonely', u'dreadfully'] -widespread whitewashed : [u'building'] -a plumber : [u'in', u','] -and none : [u'the'] -whole face : [u'sharpened'] -' succinct : [u'description'] -had escaped : [u'my', u','] -I screamed : [u", '"] -For some : [u'years'] -hands--" : [u'I'] -two guardsmen : [u'who', u','] -lights still : [u'glimmered'] -and forming : [u'the'] -the mat : [u'to'] -about half : [u'an', u'a'] -fellow is : [u'madly'] -waterproof told : [u'of'] -" Witness : [u':', u'('] -shelf beside : [u'you'] -sally out : [u'into'] -must include : [u'the'] -six feet : [u'six'] -the second : [u'."', u'day', u'from', u'floor', u'morning', u'bar', u'half', u'my', u'son', u',', u'one', u'largest', u'waiting', u'glance', u'copy'] -probability the : [u'strong'] -be necessary : [u'in'] -caved in : [u','] -know without : [u'reading'] -their position : [u',', u'a'] -his reply : [u'was'] -bathroom," : [u'he'] -be altogether : [u'invaluable'] -and throwing : [u'himself', u'open', u'the'] -rounds of : [u'bread'] -little theory : [u'of'] -talk about : [u'George', u'that', u'the'] -tackle the : [u'facts'] -masked the : [u'face'] -law would : [u'give'] -better dressed : [u'people'] -in Florida : [u','] -and interest : [u','] -skill in : [u'unravelling'] -head had : [u'been'] -imposed by : [u'the'] -by main : [u'force'] -to doing : [u'such'] -had foresight : [u','] -a faint : [u'right'] -fads and : [u'expected'] -this direction : [u'during'] -sorry if : [u'I'] -other respects : [u'he', u'you'] -illuminated than : [u'the'] -format with : [u'its'] -happy at : [u'home'] -of quietly : [u'digesting'] -duke, : [u'and'] -your circulation : [u'is'] -these varied : [u'cases'] -addition has : [u'been'] -of getting : [u'those', u'these'] -Holmes Author : [u':'] -lady!'-- : [u'you'] -received the : [u'work'] -the village : [u',', u',"', u'inn', u'.'] -ANYTHING with : [u'public'] -my relief : [u','] -be his : [u'natural', u'one'] -a confidant : [u'.'] -proofs which : [u'I'] -any doubt : [u'as'] -small that : [u'a', u'it'] -foot over : [u'the', u'that'] -second double : [u'line'] -s No : [u'.'] -do find : [u'it'] -clerks about : [u'having'] -night to : [u'prevent'] -rumour is : [u'correct'] -hands," : [u'remarked'] -twice for : [u'walks'] -was considerably : [u'after'] -rest, : [u'there', u'I', u'turning', u'it', u'for', u'when'] -. Holmes : [u'whistled', u'slowly', u'scribbled', u'dashed', u'had', u',"', u'rushed', u'?"', u'chuckled', u';', u',', u'.', u'shot', u'stuck', u'traced', u'was', u'drove', u'."', u'stooped', u'!', u'pushed', u'unlocked', u'walked', u'refused', u'drew', u'gazed', u'a', u'left', u'went', u'?', u'cut'] -of Birchmoor : [u','] -League. : ['PP', u'He', u'I'] -until he : [u'was', u'got', u'had', u'does', u'heard', u'came', u'should', u'choked'] -League, : [u'7', u'and'] -was accustomed : [u'to', u'.'] -came straight : [u'to'] -house I : [u'saw'] -10, : [u'1883'] -began as : [u'a'] -this point : [u','] -other garments : [u'had'] -fancies of : [u'a'] -is introspective : [u','] -brought this : [u'with'] -situated, : [u'but'] -The envelope : [u'was'] -am still : [u'in', u'a'] -the skylight : [u'.'] -., while : [u'he'] -remarked our : [u'prisoner'] -house a : [u'little'] -soon evident : [u'to'] -He received : [u'us'] -mail) : [u'within'] -peculiar dying : [u'reference'] -gipsies in : [u'the'] -them would : [u'cripple'] -after Christmas : [u','] -the carbuncle : [u','] -who drove : [u'him'] -than once : [u'a', u'taken', u'before', u'in', u'when', u'to', u'observed', u'I'] -deceived. : ['PP'] -,-- You : [u'really'] -parts of : [u'the'] -s feet : [u'.', u'as', u'."'] -latter knocked : [u'off'] -were alone : [u'.'] -When he : [u'was', u'reached', u'told', u'breathed', u'came'] -rigid stare : [u'at'] -details that : [u'it'] -of greeting : [u','] -through them : [u'.'] -to general : [u'impressions'] -knows nothing : [u'whatever'] -shepherd' : [u's'] -glass of : [u'half', u'beer', u'whisky', u'brandy', u'sherry'] -in sheer : [u'lassitude'] -matters stand : [u','] -touched on : [u'three'] -distributing or : [u'creating'] -present it : [u'is'] -says, ' : [u'and'] -a note : [u'of', u',', u'before', u'to', u'by', u'.', u'as', u'for'] -deserved punishment : [u'more'] -receiving this : [u'the'] -left them : [u'was'] -all walks : [u'of'] -up every : [u'meal'] -my method : [u'.'] -know that : [u'you', u'there', u'she', u'I', u'her', u'your', u'it', u'James', u'he', u'Turner', u'my', u'the', u'all', u'Miss', u'clerks', u'everything', u'within', u'?"'] -present in : [u'the'] -say upon : [u'me'] -cares for : [u'me'] -less amiable : [u'.'] -by men : [u','] -sunk forward : [u'and'] -he looks : [u'a', u'as'] -is probable : [u'that', u'.'] -an evening : [u',', u'paper'] -great many : [u'scattered'] -a petty : [u'way', u'feeling'] -paper of : [u'yesterday'] -composed of : [u'all'] -see," : [u'remarked', u'said', u'the', u'continued'] -criminal, : [u'then'] -she used : [u'."'] -criminal. : ['PP', u'We'] -the locket : [u'and'] -his tongue : [u'over'] -to stay : [u'in', u',"'] -until, : [u'some'] -it that : [u'started', u'I', u'it', u'there', u'the', u'no', u'he'] -yet every : [u'link'] -which another : [u'person'] -, suppressing : [u'only'] -, June : [u'19th'] -our depositors : [u'.'] -the vile : [u','] -probable that : [u'when', u'I', u'no', u'he', u'the'] -be in : [u'a', u'her', u'the', u'time', u'church', u'his', u'weak', u'safety', u'vain', u'that'] -the stripped : [u'body'] -it than : [u'might'] -accounts are : [u'in'] -followed you : [u'to'] -Simon sank : [u'into'] -bound by : [u'the'] -Australia and : [u'returned'] -Holmes welcomed : [u'her'] -might not : [u'take', u'bite', u'be', u'fall'] -have got : [u'it', u'his', u'if', u'to', u'?"', u'them'] -willingly the : [u'charming'] -give advice : [u'to'] -survived, : [u'but'] -father entered : [u'into'] -particulars, : [u'and'] -ugliness. : [u'A'] -quick step : [u'forward'] -rambling and : [u'inconsequential'] -levers and : [u'the'] -particulars. : [u'As', u'It'] -be ignorant : [u'of'] -Arthur should : [u'be'] -that someone : [u'had'] -its name : [u'to'] -shown that : [u'you', u'there'] -elapsed since : [u'then'] -but within : [u'a'] -satisfy my : [u'own'] -case looks : [u'exceedingly'] -which veiled : [u'his'] -his one : [u'idea'] -death and : [u'narrowly'] -fault, : [u'but'] -afternoon at : [u'three'] -any volunteers : [u'associated'] -morning the : [u'blow'] -temporary office : [u','] -chase would : [u'suddenly'] -grizzled hair : [u',', u'which', u'and'] -will support : [u'the'] -endeavoured, : [u'after'] -roughs had : [u'also'] -intellectual property : [u'(', u'infringement'] -retain the : [u'records', u'hat'] -women in : [u'the', u'whom'] -it would : [u'be', u'spare', u'certainly', u'hardly', u'suit', u'give', u'make', u'have', u'go', u'leave', u'all', u'not', u'take', u'occur', u'swim', u'crawl', u'soon'] -helpless. : [u'I'] -helpless, : [u'in'] -the claspings : [u'and'] -I ruefully : [u','] -deficiencies. : [u'If'] -confession," : [u'I'] -then. : [u'I', 'PP', u'During', u'It', u'Good'] -then, : [u'that', u'when', u'and', u'after', u'without', u'with', u'be', u'as', u'for', u'still', u'hot', u'but', u'suddenly', u'seeing', u'madam', u'did', u'do', u'mister', u'I', u'you', u'Mr', u'here', u'what', u'ask', u'of', u'my', u'if', u'at', u'pressing', u'pushing', u'returned', u'is', u'to', u'realising', u'how', u'glancing', u'so'] -then! : [u'You'] -then' : [u'Put'] -interests were : [u'the'] -and thirty : [u'pounds'] -' is : [u'a'] -observed Bradstreet : [u'thoughtfully'] -t think : [u'I', u'you'] -could to : [u'cheer', u'relieve'] -weeks later : [u','] -, lawyer : [u','] -of tracks : [u'of'] -the assistance : [u'they'] -expensive joke : [u'for'] -the offence : [u','] -can we : [u'have'] -t comply : [u'with'] -circle of : [u'yellow', u'friends'] -velvet collar : [u'lay'] -His rooms : [u'were'] -. Turner : [u'has', u'was', u'had', u'.', u"'", u'made', u','] -for pity : [u"'"] -window a : [u'long'] -wife tried : [u'to'] -had one : [u'or', u'son'] -week, : [u'and', u'I', u'without', u'we', u'but'] -shown by : [u'the'] -week. : ['PP', u'From', u'I', u'Ah'] -There will : [u'call', u'probably', u'soon'] -it better : [u'if', u'not'] -Fowler and : [u'Miss'] -week' : [u's'] -medical degree : [u'and'] -literature and : [u'crime'] -you wore : [u'the'] -should judge : [u','] -and seldom : [u'came'] -impunity with : [u'which'] -you work : [u'it'] -! the : [u'speckled'] -the limited : [u'right'] -piquant details : [u'have'] -a jump : [u'in'] -exceedingly interesting : [u'case'] -have I : [u'the', u'to', u'seen', u'gained', u'worn', u'?'] -, Dr : [u'.'] -pay short : [u'visits'] -and seen : [u'him'] -dread of : [u'losing'] -a bill : [u'for'] -." Holmes : [u'laughed', u'took', u'sat', u'rose', u'shook', u'moved', u'grinned', u'turned', u'nodded', u'suddenly', u'thrust', u'and'] -conspicuous. : [u'Very'] -is he : [u'like', u'?"', u'now', u'silent', u'.'] -have a : [u'most', u'clear', u'cab', u'small', u'job', u'holiday', u'private', u'business', u'look', u'hundred', u'quick', u'family', u'fairly', u'vague', u'caseful', u'better', u'word', u'fuss', u'clue', u'little', u'seven', u'grand', u'very', u'quiet', u'regular', u'series', u'friend', u'line', u'fiver', u'sovereign', u'right', u'housekeeper', u'professional', u'confused', u'whisky', u'large', u'farthing', u'maid'] -something suddenly : [u'snapped'] -" Frequently : [u'."'] -Willows says : [u'that'] -noose round : [u'the'] -some crony : [u'of'] -his disappearance : [u'are'] -his daughter : [u'had'] -Hood, : [u'where'] -talk with : [u'you'] -worn before : [u'.'] -is older : [u'than'] -s your : [u'good', u'wife', u'daughter'] -evidently no : [u'sense'] -through all : [u'the'] -his skirts : [u'.'] -rose hurriedly : [u','] -held the : [u'little', u'horse'] -So long : [u',', u'was'] -still balancing : [u'the'] -Balmoral.' : [u'Hum'] -goose to : [u'me'] -It saved : [u'me'] -between this : [u'stranger', u'and'] -examine it : [u'I'] -this bears : [u'upon'] -asking him : [u'whether', u'if'] -Roylott had : [u'gone'] -A maid : [u'rushed'] -fifty guinea : [u'fee'] -suggested the : [u'strange'] -hurriedly. : [u'It'] -We laid : [u'him'] -hurriedly, : [u'out', u'for', u'muttered'] -tale. : [u'This', u'He'] -; I : [u'have', u'got', u'shall', u'sent', u'call', u'rather'] -unconscious man : [u'out'] -lined the : [u'floor', u'lake'] -, thank : [u'goodness'] -The instant : [u'that'] -hadn' : [u't'] -About this : [u'girl'] -Never better : [u'.'] -very hard : [u'man', u'to', u'at'] -begun to : [u'hope', u'take', u'whiten', u'rise'] -he rushed : [u'into'] -had two : [u'sons', u'important', u'police'] -Holmes ran : [u'her'] -cold and : [u'forbidding'] -dark figure : [u'in'] -incognito from : [u'Prague'] -.' She : [u'smiled', u'was', u'struck'] -side lights : [u'of', u'when'] -Turning round : [u'we'] -missing man : [u'.'] -together at : [u'the'] -pool for : [u'?"'] -major of : [u'marines'] -strong part : [u'in'] -word shall : [u'I'] -mark upon : [u'them'] -the applicable : [u'state'] -sorry to : [u'hear', u'give', u'knock', u'have', u'see'] -drive to : [u'Baker', u'Waterloo'] -whose warning : [u'I'] -locked in : [u'the'] -feature. : [u'We', 'PP', u'She'] -imprudently, : [u'wished'] -table had : [u'not'] -! The : [u'cabman', u'goose', u'speckled', u'dear'] -the community : [u'in'] -us in : [u'the', u'pitch', u'a', u'our', u'.', u'forming', u'this', u'his'] -. Creating : [u'the'] -deaths in : [u'such'] -guide us : [u'on'] -us if : [u'anyone'] -hungry," : [u'I'] -looking very : [u'earnestly'] -breakfast when : [u'I'] -a mistake : [u'in', u','] -gives me : [u'hopes'] -us is : [u'more'] -falling back : [u'into'] -gun under : [u'his'] -papers on : [u'the'] -of man : [u'could'] -his privacy : [u'.'] -papers of : [u'the', u'yesterday'] -Russian could : [u'not'] -breath of : [u'the'] -for talk : [u'.'] -yours also : [u'."'] -papers or : [u'certificates'] -though what : [u'its', u'it'] -actually brushed : [u'the'] -shall be : [u'all', u'delighted', u'happy', u'in', u'at', u'true', u'there', u'with', u'busy', u'forced', u'safe', u'my', u'indeed', u'married', u'able', u'very', u'a', u'most', u'forgiven', u'interpreted'] -boat which : [u'brought'] -do. : [u'Come', 'PP', u'Then', u'It', u'If', u'Should', u'I', u'Your'] -do, : [u'I', u'Mr', u'then', u'he', u'but', u'and', u'so', u'for', u'do', u'sir', u'should'] -wholesome the : [u'garden'] -answered Holmes : [u'thoughtfully', u'calmly'] -do! : [u'I'] -examination served : [u'to'] -smoke like : [u'so'] -up to : [u'the', u'Briony', u'his', u'a', u'town', u'it', u'me', u'make', u'her', u'see', u'my', u'look', u'you', u'date'] -do? : [u'And', u'I', u'How'] -to illustrate : [u'.'] -when the : [u'betrothal', u'row', u'King', u'police', u'four', u'cabman', u'other', u'maid', u'son', u'cloth', u'lawyer', u'snake', u'fit', u'stripped', u'wife', u'door', u'alarm', u'facts', u'church', u'security', u'Rucastles'] -problem," : [u'said'] -or amusing : [u'yourself'] -, flung : [u'open'] -when someone : [u'passing'] -rather against : [u'the'] -change. : [u'If'] -see? : [u'Well'] -ask Mrs : [u'.'] -has deserted : [u'me'] -caught you : [u','] -Some of : [u'them', u'the'] -yet from : [u'his'] -and bounds : [u'."'] -see. : ['PP', u'You', u'Then', u'No', u'But'] -hour to : [u'glancing'] -see, : [u'my', u'but', u'Mr', u'Watson', u'was', u'I', u'had', u'a', u'is', u'sir', u'and', u'some'] -to advise : [u'you', u'her'] -ill as : [u'I'] -rummaged in : [u'his'] -shall commence : [u'with'] -observed. : [u'And', u'By', 'PP'] -we are : [u',', u'not', u'in', u'careful', u'on', u'able', u'.', u'very', u'to', u'!"', u'going', u'interesting', u'paying', u'absolutely', u'wandering', u'never', u'dealing'] -these rooms : [u'without', u'than'] -and grey : [u'Harris', u',', u'roofs'] -just ordered : [u'him'] -to return : [u'."', u'and', u'to', u'once', u'or'] -blooded scoundrel : [u'!"'] -five little : [u'dried'] -smiles were : [u'turned'] -looking through : [u'all'] -her the : [u'brute', u'name'] -." III : [u'.'] -smiled back : [u'at'] -price upon : [u'my'] -view a : [u'little'] -or what : [u'I'] -relate and : [u'can'] -your advantage : [u'as'] -they had : [u'to', u'completed', u'come', u'feared', u'gone', u'covered', u'found', u'been', u'each', u'locked'] -,' you : [u'know'] -you want : [u'to', u'?"', u',', u'this'] -the egotism : [u'which'] -black mark : [u'of'] -door led : [u'into'] -tattered coat : [u'.'] -At last : [u',', u'the'] -waylaid and : [u'searched'] -about three : [u'in', u'miles'] -starting for : [u'Eyford'] -head cocked : [u'and'] -and sound : [u'.'] -train steamed : [u'off'] -was lame : [u'."'] -tea when : [u'he'] -their more : [u'piquant'] -What on : [u'earth'] -the loaf : [u'he'] -finest that : [u'I'] -What of : [u'this', u'the', u'it'] -same instant : [u'I', u'Mrs'] -provinces of : [u'my'] -83 that : [u'I'] -shudder to : [u'look'] -formats readable : [u'by'] -after day : [u',', u'in'] -suddenly upon : [u'us', u'the'] -copyright or : [u'other'] -post of : [u'a'] -Drive like : [u'the'] -bag politicians : [u'who'] -, boisterous : [u'fashion'] -folk, : [u'and'] -and splashing : [u'against'] -its inception : [u'and'] -went wrong : [u'before'] -Sometimes I : [u'think', u'have'] -little office : [u',', u'as'] -will play : [u'for'] -quite my : [u'own'] -; " I : [u'am', u'have', u'do', u'will', u'can'] -hour when : [u'we', u'a'] -no restrictions : [u'whatsoever'] -us with : [u'a', u'their', u'the', u'half', u'offers'] -and quivering : [u'fingers'] -vault or : [u'cellar'] -Windigate, : [u'of'] -him loitering : [u'here'] -is solved : [u'."'] -Hatherley Farm : [u'house', u'.', u'and', u'rent', u'upon'] -evening drew : [u'in'] -his aristocratic : [u'features'] -presence in : [u'other'] -your bureau : [u','] -very room : [u'which'] -rabbi and : [u'that'] -vault of : [u'a'] -last year : [u'and', u'.'] -and brought : [u'us'] -my lucky : [u'appearance'] -employers in : [u'this'] -calmly; ' : [u'I'] -shows that : [u'blotting'] -harm can : [u'there'] -black morocco : [u'case'] -yourself upon : [u'details'] -compromising his : [u'own'] -you guess : [u'what'] -man burst : [u'into'] -whence he : [u'emerged', u'could'] -short sight : [u'it', u'and', u','] -Would she : [u'not'] -and stretched : [u'himself'] -back so : [u'that'] -this ventilator : [u',', u'at'] -by having : [u'had'] -his fortune : [u','] -two important : [u'commissions'] -$ 5 : [u','] -sized man : [u','] -living on : [u'the'] -decide. : [u'I'] -Folk who : [u'were'] -danger would : [u'be'] -are fresh : [u'from'] -smack! : [u'smack', u'Three'] -be copied : [u'and'] -pet. : [u'The'] -vital importance : [u'to'] -very fine : [u'indeed'] -very few : [u'words', u'seconds', u'details'] -The little : [u'man', u'which'] -extraordinary? : [u'Puzzle'] -good sense : [u'to', u'will', u'would'] -we drove : [u'to', u'through', u'for'] -stake to : [u'night'] -Westhouse& : [u'Marbank'] -Master Holmes : [u'."'] -very much : [u',', u'with', u'to', u'afraid', u'older', u'against', u'superior', u'mistaken', u'depend', u'like', u'in', u'."', u'indebted', u'obliged', u'larger', u'astonished', u'upon', u'fear', u'prefer', u'the', u'deeper', u'easier', u'surprised'] -am an : [u'old', u'orphan'] -him?" : [u'I'] -could I : [u'find', u'help'] -him down : [u'completely', u'with', u'there', u'into'] -voice of : [u'Holmes'] -his trousers : [u'."', u'and'] -nutshell. : [u'If'] -expression upon : [u'his'] -hurling the : [u'twisted'] -all details : [u',"'] -across between : [u'the'] -I met : [u'him', u'Mr', u'seemed', u'it', u'her', u'in'] -not mentioned : [u','] -best by : [u'returning'] -blue dressing : [u'gown'] -the results : [u'which', u'of'] -should earn : [u'the'] -, figure : [u','] -removed, : [u'loudly'] -much information : [u'as'] -He could : [u'only', u'not'] -interesting study : [u','] -grip upon : [u'me'] -regards the : [u'mud'] -been destroyed : [u'.', u'by'] -the bruise : [u','] -no trouble : [u'.'] -rumours which : [u'have'] -more simple : [u'."'] -was doing : [u'something', u'there', u'in', u'me', u'or'] -raise my : [u'hand'] -bands of : [u'astrakhan'] -heard her : [u'voice', u'key', u'quick'] -the sill : [u'gave', u',', u'with', u'and'] -time ago : [u',', u'I'] -the bonniest : [u','] -I hazarded : [u'some'] -her until : [u'after', u'she'] -individual work : [u'is'] -woman wants : [u'her'] -handkerchiefs which : [u'so'] -pledge sooner : [u'or'] -paid for : [u'and', u'a', u'it'] -anger would : [u'not'] -She lives : [u'quietly'] -multiply it : [u'in'] -close. : ['PP'] -rose up : [u'against', u'in'] -unlocking and : [u'throwing'] -twisted in : [u'the'] -her landau : [u'when'] -found it : [u'hard', u'.', u'all'] -, an : [u'object', u'opium', u'old', u'aunt', u'armchair', u'American', u'absolutely'] -cut himself : [u'in'] -, as : [u'ever', u'if', u'I', u'to', u'the', u'of', u'we', u'our', u'was', u'you', u'Spaulding', u'it', u'in', u'a', u'he', u'this', u'far', u'did', u'they', u'when', u'Holmes', u'though', u'is', u'one', u'narratives', u'may', u'directed', u'cunning', u'so', u'she', u'her', u'swift', u'being', u'none', u'had', u'shortly', u'fresh', u'my', u'matters', u'silent', u'large', u'resembling'] -consequence, : [u'at'] -, recalled : [u'Holmes'] -!" Holmes : [u'chuckled', u'and'] -latter may : [u'have'] -, at : [u'a', u'the', u'eleven', u'his', u'any', u'their', u'Holmes', u'my', u'present', u'work', u'12s', u'Eyford', u'this', u'least', u'Lancaster', u'great', u'all', u'no'] -found in : [u'his', u'the', u'its', u'one', u':'] -, ay : [u','] -coming out : [u'through'] -probability. : [u'That'] -circumstances were : [u'very'] -s noble : [u'correspondent'] -Stoner to : [u'some'] -material, : [u'a'] -material. : [u'She'] -in water : [u'. "'] -I clambered : [u'out'] -give some : [u'account'] -reported that : [u'her'] -the Hereford : [u'Arms'] -drive away : [u'the'] -all is : [u'as', u'sweetness', u'dark', u'well', u'ready'] -at death : [u"'"] -hear him : [u'retire'] -adapted for : [u'summer'] -and Frank : [u'was'] -prefer having : [u'a'] -the rashness : [u'of'] -alleging that : [u'she'] -simple fare : [u'that'] -hear his : [u'step'] -and motion : [u'to'] -how the : [u'best', u'bank', u'slow', u'lady', u'electric'] -bell, : [u'and', u'about', u'Doctor', u'Watson'] -a dear : [u',', u'friend', u'little'] -bell. : [u'Holmes', 'PP', u'Who'] -vice upon : [u'my'] -still time : [u'to'] -back my : [u'opinion'] -the cheetah : [u'was'] -are," : [u'said'] -Lord of : [u'mercy'] -fondness for : [u'photography'] -grass with : [u'writhing'] -a dead : [u'faint'] -s excited : [u'face'] -not before : [u'."', u'the'] -a deal : [u'table'] -chest and : [u'his', u'limbs'] -manual labour : [u',', u'.'] -dream. : ['PP'] -us much : [u'.'] -put ideas : [u'in'] -them and : [u'acknowledges', u'carried'] -gentle sound : [u'of'] -Robert, : [u'you'] -The word : [u'was'] -leave you : [u'for', u'to', u'forever'] -dressed young : [u'men'] -doubts. : ['PP'] -a bright : [u'looking', u'sun', u'morning', u','] -ask who : [u'it'] -was troubled : [u'by'] -was clamped : [u'to'] -. Giving : [u'pain'] -which characterises : [u'you'] -his approaching : [u'marriage'] -hoofs and : [u'grating'] -in front : [u'of', u'right', u'.', u'or', u',', u'three', u'to', u'belongs'] -. Mother : [u'said', u'was'] -arrival, : [u'and'] -A little : [u'over', u'too', u'French'] -deepest moment : [u'.'] -had at : [u'least', u'first'] -window at : [u'the'] -drive in : [u'a'] -had as : [u'much'] -in Pentonville : [u'.'] -your assistant : [u'is'] -stricken, : [u'not'] -the detective : [u'.', u'indifferent'] -had an : [u'experience', u'only', u'appointment', u'unsolved', u'idea', u'Eastern', u'inquiry', u'interview', u'unreasoning', u'immense', u'admirable'] -unpleasant impression : [u'upon'] -' insight : [u'that'] -advise me : [u'how', u'to'] -have him : [u'here', u'loitering'] -stock of : [u'Scotland', u'matches'] -actions were : [u'in'] -being found : [u'which'] -opportunity to : [u'receive'] -swear to : [u'it'] -useful material : [u'for'] -has that : [u'to'] -have hit : [u'upon', u'it'] -are displayed : [u'in'] -usual routine : [u'of'] -have his : [u'cursed', u'machine'] -scared and : [u'puzzled'] -spark where : [u'all'] -given to : [u'mine', u'one', u'fainting', u'my'] -office like : [u'room'] -of martyrdom : [u'to'] -for him : [u'.', u'when', u'at', u'to', u'in', u'who', u',', u'and'] -chambers in : [u'the', u'Victoria'] -stillness, : [u'that', u'the'] -a situation : [u',', u'which', u'.'] -" There : [u'will', u'is', u'are', u'was', u"'", u',', u'can', u'were', u'isn', u'you', u'has'] -you forever : [u'.'] -, Sherlock : [u'Holmes'] -which receive : [u'the'] -him we : [u'drove'] -A blow : [u'was'] -Stark sprang : [u'out'] -of friends : [u'was'] -forgotten his : [u'filial'] -slave to : [u'the'] -Your own : [u'little', u'opinion', u'deathbeds'] -His footmarks : [u'had'] -dishonoured me : [u'forever'] -them away : [u'somewhere'] -side showed : [u'that'] -read by : [u'your'] -will lead : [u'us'] -swarm of : [u'pedestrians', u'humanity'] -danger yet : [u'.'] -putting in : [u'the'] -even contributed : [u'to'] -third from : [u'London'] -accumulation of : [u'dust'] -of advancing : [u'money'] -Foundation and : [u'Michael', u'how'] -Would the : [u'body'] -water from : [u'a'] -least had : [u'the'] -putting it : [u'on'] -panelling of : [u'the'] -spring and : [u'this'] -In that : [u'way', u',', u'case'] -so acute : [u'that'] -our eyes : [u'to', u'.'] -who would : [u'apply', u'venture', u'ask'] -see him : [u'."', u'again', u'in', u'to', u'now', u'but', u'very', u'.', u'?"', u'killing'] -moment as : [u'startled'] -had placed : [u'it'] -explaining that : [u'we'] -had anything : [u'to'] -Just look : [u'up', u'it'] -" Eight : [u'weeks'] -interesting," : [u'said'] -a pince : [u'nez'] -the lips : [u'as'] -Consider what : [u'is'] -a private : [u'word', u'matter', u'school'] -no chance : [u'at', u'of'] -s last : [u'message'] -given. ' : [u'It'] -mark him : [u'out'] -a pinch : [u'of'] -peeling off : [u'the'] -suspicion there : [u'and'] -laugh at : [u'me', u'this'] -pass his : [u'door'] -We never : [u'thought'] -I hurled : [u'it'] -my relations : [u'were'] -can catch : [u'the'] -morning there : [u'he'] -. Philosophy : [u','] -sell it : [u'and'] -all perfectly : [u'familiar', u'true'] -shall work : [u'mine'] -deposed to : [u'having'] -read about : [u'Lord'] -I offered : [u'to'] -was mine : [u'all'] -she attempted : [u'to'] -At dusk : [u'we'] -dear me : [u',', u'!'] -for so : [u'inadequate'] -week ago : [u','] -Roylotts of : [u'Stoke'] -manner he : [u'bowed', u'departed'] -argument with : [u'gentlemen'] -work down : [u'in'] -was pushed : [u'backward'] -leave all : [u'minor'] -tonnage which : [u'were'] -foresight, : [u'but', u'since'] -what' : [u's'] -Well?" : [u'she'] -were when : [u'you'] -ll set : [u'the'] -the meantime : [u'Mr', u',', u'is'] -s Wood : [u'."'] -what. : ['PP'] -test a : [u'little'] -extreme exactness : [u'and'] -do a : [u'little', u'faint'] -fit for : [u'us'] -a pained : [u'expression'] -favoured me : [u'with'] -agree to : [u'comply', u'and', u'abide', u'be', u'the', u'indemnify'] -fit that : [u'bureau'] -City, : [u'the', u'did', u'UT'] -as pitiable : [u'as'] -come back : [u'yet', u'from', u',', u'in', u'to', u"?'", u'.', u'and'] -Close at : [u'his'] -badly wanted : [u'here'] -threatened by : [u'a'] -and outward : [u','] -do I : [u'know', u'.'] -let to : [u'Mr'] -never weary : [u'of'] -could find : [u'.', u'them'] -minutes while : [u'I'] -be probable : [u'in'] -discovery, : [u'and'] -Poor father : [u'has'] -were fixed : [u'in'] -she emerged : [u'from'] -extend to : [u'the'] -you first : [u'how', u'meet'] -Good day : [u',', u'to'] -cards in : [u'my'] -as hopeless : [u'by'] -Just read : [u'it'] -should reserve : [u'it'] -shut just : [u'now'] -guide myself : [u'by'] -admirably balanced : [u'mind'] -Since you : [u'ask'] -factor in : [u'the', u'my'] -to laugh : [u'at'] -eight and : [u'forty'] -accountant living : [u'on'] -between that : [u'of', u'and'] -this!" : [u'He'] -had started : [u'from', u'to'] -inflicted by : [u'the'] -No,' : [u'said'] -wharf and : [u'the'] -quick in : [u'his', u'forming'] -deportment of : [u'a'] -mingled in : [u'the'] -consumed with : [u'the'] -more crude : [u'."'] -sorrow, : [u'this'] -to develop : [u'his'] -hit it : [u'.'] -afterwards I : [u'shall'] -tricked by : [u'so'] -' Papier : [u".'"] -peaked cap : [u'and'] -who can : [u'brazen', u'twist', u'do'] -once observed : [u'to'] -, put : [u'on', u'your'] -firmness. : [u'As'] -aunt' : [u's'] -what would : [u'come'] -and before : [u'I', u'he'] -in catching : [u'a'] -aunt, : [u'my'] -t frighten : [u'Kate'] -to Venner : [u'&'] -hot upon : [u'the', u'such', u'a'] -with it : [u',', u'.', u'."', u'which', u'?', u".'", u'the', u'?"'] -a problem : [u'which'] -the flood : [u'of'] -westward at : [u'fifty'] -the side : [u'aisle', u'lights', u'of', u'table', u'cylinders', u'window', u'gate', u'from'] -very station : [u'at'] -. Must : [u'I'] -dreary experience : [u'.'] -the floor : [u',', u'. "', u'and', u'.', u'of', u'consisted', u'where', u'on', u'a'] -crucial points : [u'upon'] -out through : [u'the', u'this'] -. " When : [u'I', u'Horner', u'you'] -? Tiptoes : [u'!'] -done you : [u'full'] -chair showed : [u'me'] -raise up : [u'his', u'hopes'] -inquired as : [u'to'] -none of : [u'the', u'them'] -own son : [u'do'] -and addresses : [u'.'] -and bad : [u'weather'] -was created : [u'to'] -keeper, : [u'lost', u'as', u'his'] -keeper. : [u'He', u'They'] -wish us : [u'to'] -by telling : [u'you', u'how', u'us'] -accustomed. : [u'His'] -very wet : [u'lately', u'it'] -I returned : [u',', u'to', u'home', u'the'] -been shamefully : [u'used'] -is perhaps : [u'better', u'less', u'as', u'the'] -hand to : [u'my', u'him'] -by one : [u'wall', u'of', u'the', u','] -sensationalism, : [u'for'] -Holmes dashed : [u'into'] -help produce : [u'our'] -informed by : [u'the'] -Miss Hatty : [u'Doran'] -more worthy : [u'of'] -ungovernable, : [u'I'] -you well : [u'.'] -to come : [u'with', u'from', u'for', u'right', u'to', u'again', u'.', u',', u'uppermost', u'at', u'."', u'and', u'back', u'out', u'over', u'into'] -been shattered : [u'by'] -public domain : [u'print', u'eBooks', u'in', u'(', u'works', u'and'] -sunburnt man : [u','] -looking keenly : [u'at', u'down'] -sill with : [u'his'] -which lies : [u'before', u'at', u'upon'] -the cab : [u',', u'humming', u'my'] -the scattered : [u'knots'] -some few : [u'minutes', u'pence'] -dust into : [u'an'] -out was : [u'that'] -Frank' : [u's'] -ferret like : [u'man'] -of increasing : [u'the'] -an Australian : [u'from'] -persuaded him : [u'to'] -even fonder : [u'of'] -again there : [u'he'] -gilt balls : [u'and'] -carbuncle, : [u'save', u'which'] -carbuncle. : [u'James'] -over their : [u'heads'] -his overpowering : [u'terror'] -victim of : [u'an'] -bruise, : [u'the'] -what should : [u'have'] -proud to : [u'see'] -recognising Lestrade : [u','] -before seeing : [u'him'] -plumber, : [u'was', u'had'] -short visits : [u'at'] -West, : [u'Salt'] -him somewhat : [u'the'] -And I : [u'."', u'have', u'you', u'to', u'say', u'am', u'feel'] -several similar : [u'cases'] -twenty. : ['PP'] -That fellow : [u'will'] -blurs through : [u'the'] -the pavement : [u'at', u'with', u'?"', u'opposite', u'always', u'beside', u'had'] -right glove : [u'was'] -never permit : [u'either'] -the sheet : [u'he', u'of'] -seven o : [u"'"] -best that : [u'you'] -for matches : [u'and'] -add, : [u'a'] -And a : [u'very'] -Holmes coldly : [u'. "'] -shake nerves : [u'of'] -., etc : [u'.'] -cry he : [u'dropped'] -Very truly : [u'yours'] -were always : [u'so', u'very'] -heart when : [u'she'] -plantation, : [u'where'] -plantation. : ['PP', u'I'] -second is : [u'that', u'to'] -walked up : [u'to'] -action in : [u'typewriting'] -the borders : [u'into', u'of'] -twenty, : [u'I'] -enjoyed the : [u'use'] -, ran : [u'up', u'along'] -feel that : [u'no', u'time', u'I'] -associated with : [u'the', u'my', u'or', u'Project'] -great astonishment : [u','] -People tell : [u'me'] -ways, : [u'no', u'so', u'or', u'but'] -ways. : [u'He', u'There'] -not exactly : [u'my'] -manage it : [u'better'] -colonel first : [u'with'] -it indicate : [u'?'] -marks, : [u'while'] -carelessly, ' : [u'we'] -marks. : ['PP'] -hotel, : [u'where', u'gave'] -can wait : [u'in'] -hotel. : [u'Then', u'I'] -"' Quite : [u'so', u'sure'] -my hat : [u'."', u'and', u'on'] -The initials : [u'were'] -my hands : [u'on', u'.', u'before', u'and', u','] -being bitten : [u'.'] -window and : [u'shouted', u'saw', u'by'] -spread public : [u'support'] -ay, : [u'even'] -gasped. : ['PP'] -seen an : [u'American'] -opportunity of : [u'looking'] -left thumb : [u','] -isolated facts : [u','] -was sick : [u'with'] -, coming : [u'back'] -never before : [u'experienced'] -borrowed for : [u'that'] -with delight : [u'belonged'] -war he : [u'fought'] -an abominable : [u'crime'] -"' One : [u'of', u'child'] -be some : [u'small', u'great', u'little', u'30', u'reason', u'weapon', u'crony', u'grounds', u'time', u'strong'] -hid behind : [u'the'] -brief and : [u'urgent'] -seen at : [u'the'] -"' DEAR : [u'MISS'] -cruelty, : [u'the'] -stocked with : [u'all'] -secure a : [u'duty'] -coarse brown : [u'tint'] -ground in : [u'front'] -bow sidled : [u'down'] -, two : [u'stories', u'fills', u'guardsmen', u'storied', u'of', u'facts'] -she vanish : [u','] -own keen : [u'nature'] -START OF : [u'THIS'] -afternoon," : [u'he'] -drove me : [u'mad', u'in'] -learn to : [u'have'] -the identity : [u'of'] -she flattered : [u'herself'] -embellish, : [u'you'] -tall was : [u'he'] -He does : [u'not'] -What office : [u'?"'] -he achieved : [u'such'] -She wrote : [u'me'] -continue," : [u'said'] -drawn at : [u'a'] -running up : [u'to'] -night.' : [u'said', u'I'] -influence of : [u'his'] -by rare : [u'good'] -often for : [u'weeks'] -night." : [u'She', u'He'] -begin," : [u'said'] -who knows : [u'him'] -Women are : [u'naturally'] -her body : [u'oscillated', u'slightly'] -material assistance : [u'to'] -events occurred : [u'which'] -being suspected : [u'.'] -He brought : [u'round', u'up'] -the bed : [u',', u'and', u'.', u'dies', u'beside', u'was', u'in'] -earliest risers : [u'were'] -late years : [u'it'] -slitting specimen : [u'of'] -course I : [u'saw', u'must', u"'", u'never', u'might'] -can deduce : [u'nothing', u'."', u'all'] -fierce eddy : [u'between'] -remarkable point : [u','] -the bet : [u'is'] -found floating : [u'near'] -, hard : [u'and'] -feared lest : [u'there'] -round from : [u'one'] -newly gained : [u'property'] -doing it : [u'was'] -short by : [u'a'] -have used : [u'it', u'the'] -doing in : [u'this', u'the'] -valuable time : [u'as'] -was right : [u'with', u',', u'and'] -trifling a : [u'sum'] -made her : [u'sell'] -web to : [u'weave'] -whose knowledge : [u'was'] -for no : [u'other'] -shook my : [u'head'] -been not : [u'entirely'] -streets which : [u'lead', u'lie', u'runs'] -languor to : [u'devouring'] -almost parallel : [u'cuts'] -one can : [u"'", u'pass'] -months. : [u'Of', u'She', u'There'] -s entreaties : [u'."'] -scenery. : [u'It'] -a Scotch : [u'bonnet'] -lock yourself : [u'up'] -suddenly heard : [u'an', u'in', u'the'] -two men : [u',', u'were', u'accompanied', u'had'] -merely strange : [u','] -puckered lids : [u'.'] -stood beside : [u'the'] -a curious : [u'way', u'thing', u'coincidence', u'chance'] -" His : [u'name', u'face', u'height', u'son', u'hand'] -was his : [u'custom', u'habit', u'object', u'singular', u'cunning', u'aversion', u'mistress', u'ghost', u'wont'] -the witness : [u'."'] -happened I : [u'would'] -, working : [u'through', u'as'] -another effort : [u'he'] -find any : [u'satisfactory'] -shattered. : [u'Mr'] -turned down : [u'one', u'the'] -shattered, : [u'in'] -RIGHT OF : [u'REPLACEMENT'] -louder and : [u'louder'] -in passing : [u','] -heard either : [u'of'] -or cellar : [u','] -Ferguson appeared : [u'to'] -tell our : [u'story'] -the final : [u'step'] -" Only : [u'as', u'once', u'one'] -a Sunday : [u'school'] -to eat : [u'it'] -earrings. : ['PP'] -earrings, : [u'and'] -absence every : [u'morning'] -above her : [u'head'] -the sensation : [u'grew'] -?' she : [u'asked'] -was interested : [u'in'] -quietly was : [u'that'] -the photograph : [u'."', u'?"', u'.', u'a', u'to', u'at', u','] -this was : [u'.', u'where', u'a', u'the'] -got. : ['PP'] -lamp away : [u'from'] -For God : [u"'"] -under obligations : [u".'"] -trademark/ : [u'copyright'] -deposit of : [u'fuller'] -I groaned : [u','] -not sell : [u'."'] -Your conversation : [u'is'] -or, : [u'at', u'shall'] -duty was : [u'now'] -thank him : [u'.'] -insult me : [u'.'] -Count Von : [u'Kramm'] -inferred that : [u'his'] -through a : [u'side', u'zigzag', u'disagreeable'] -feathers, : [u'legs'] -green scummed : [u'pool'] -number of : [u'people', u'better', u'hours', u'objections', u'your', u'constables', u'hair', u'our', u'years', u'men', u'public', u'other'] -by discovering : [u'a'] -the one : [u'side', u'having', u'always', u'which', u'who', u'I', u'object', u'next', u'dreadful', u'hand', u'beneath', u'that', u'as', u'and'] -. Remember : [u'the'] -. " In : [u'that'] -wife.' : [u'There'] -put 100 : [u'pounds'] -to everything : [u'.'] -thin, : [u'sad', u'sighing', u'however', u'white', u'very', u'fleshless', u'with', u'eager'] -carriage sweep : [u','] -shouting were : [u'enough'] -Both Mr : [u'.'] -snake before : [u'the'] -sign it : [u','] -of food : [u','] -The smarting : [u'of'] -my violin : [u'and', u','] -. " Oh : [u','] -. " Of : [u'course'] -across, : [u'is', u'and'] -I don : [u"'"] -always glad : [u'of'] -McCarthy," : [u'said'] -and vouching : [u'for'] -remain in : [u'the'] -opened at : [u'the'] -verrons," : [u'answered'] -carrying the : [u'jewel'] -is concerned : [u'.', u','] -extracts in : [u'their'] -ever consented : [u'to'] -well up : [u'in'] -stares up : [u'at'] -soon found : [u'Briony', u'ourselves'] -so quiet : [u'and'] -direct descent : [u','] -cuff or : [u'shirt'] -eye; : [u'and'] -seeing Mr : [u'.'] -His eyes : [u'sparkled', u'twinkled'] -but, : [u'as', u'really', u'on', u'in', u'like', u'between', u'hullo', u'above', u'calling', u'though'] -young and : [u'has', u'timid', u'unknown'] -of someone : [u'or'] -proceed to : [u'business', u'set'] -might get : [u'on'] -eye, : [u'he'] -the paper : [u'upon', u'.', u'flattened', u',', u'from', u'and', u'where', u'as', u'. "', u'in'] -eye. : [u'Holmes', 'PP', u'Then'] -his reach : [u'upon', u'.'] -much superior : [u'to'] -are doing : [u'what'] -tall man : [u',', u'who', u'in'] -descended and : [u'started'] -jumped from : [u'."'] -on intimate : [u'terms'] -my brougham : [u'is'] -had pictured : [u'it'] -before ever : [u'I', u'we'] -some minutes : [u'.', u','] -marriage case : [u'.'] -smokeless chimneys : [u','] -things about : [u'Mr', u'him'] -looking into : [u'this'] -sound, : [u'a', u'one', u'as', u'and', u'not', u'like'] -who struggled : [u'frantically'] -sound. : [u'I'] -And be : [u'laughed'] -, email : [u'business'] -back swiftly : [u'to'] -position of : [u'unofficial'] -dig fuller : [u"'"] -my judgment : [u','] -sound? : [u'Could'] -; not : [u'that'] -cold dank : [u'air'] -Turner lived : [u'for'] -least you : [u'shall'] -have determined : [u','] -he sent : [u'up'] -these stains : [u'upon'] -only on : [u'the', u'one'] -my clerk : [u'entered'] -those peculiar : [u'qualities'] -had upon : [u'your'] -is common : [u'.'] -leaking cylinder : [u'.'] -realised how : [u'crushing'] -though we : [u'meet', u'shall', u'have', u'knew'] -1/ : [u'2', u'6'] -1. : [u'General', u'A', u'E', u'B', u'C', u'D', u'The', 'PP', u'F', u'Project'] -, Inspector : [u'Bradstreet'] -the countryside : [u','] -light revealed : [u'it'] -more for : [u'Briony'] -of supporting : [u'himself'] -advertised for : [u'him'] -may implicate : [u'some'] -his interest : [u'.'] -is synonymous : [u'with'] -shooting boots : [u'and'] -they make : [u'a'] -police as : [u'well'] -dog whip : [u'swiftly'] -his interview : [u'with'] -blood by : [u'direct'] -only have : [u'been', u'come', u'made'] -thick fog : [u'rolled'] -torn from : [u'a'] -, boxer : [u','] -. " He : [u'is', u'has', u"'", u'doesn'] -cases are : [u'past'] -appears that : [u'his', u'some', u'she'] -to pieces : [u'he'] -attic save : [u'a'] -been doing : [u'for'] -her hands : [u'upon', u'groping', u'wrung', u'with', u'.', u'in'] -theories, : [u'instead'] -Grit in : [u'a'] -sneer to : [u'the'] -topic, : [u'until'] -wants her : [u'own'] -asked to : [u'step', u'wear', u'sit'] -exceedingly glad : [u'to'] -stated that : [u'the'] -an occasional : [u'friend'] -very brave : [u'and'] -dashed forward : [u'to'] -deeply chagrined : [u'.'] -ask his : [u'leave'] -the daintiest : [u'thing'] -door tightly : [u'behind'] -This barricaded : [u'door'] -sees whether : [u'she'] -!' He : [u'dashed', u'seemed', u'leaned'] -curled himself : [u'up'] -your man : [u'."'] -some water : [u'from'] -posted on : [u'the'] -been talking : [u','] -, some : [u'hundreds', u'going', u'of', u'thirty', u'half', u'flaw', u'two', u'blood', u'time', u'comic', u'years', u'weeks'] -and darkened : [u'.'] -clear of : [u'mind'] -waited there : [u'in'] -have their : [u'explanations', u'pick'] -and paper : [u'mills'] -barmaid in : [u'Bristol'] -far better : [u'not'] -who it : [u'may', u'is', u'was'] -be reached : [u'from'] -county paper : [u','] -who is : [u'so', u'occasionally', u'in', u'an', u'to', u'absolutely', u'utterly', u'the', u',', u'picking', u'he', u'weighed', u'this', u'lost', u'popular', u'dazed', u'not', u'far', u'alone', u'at', u'a', u'her', u'now', u'little', u'very'] -were whispered : [u'in'] -or expense : [u'to'] -threw all : [u'fears'] -the gathering : [u'darkness'] -your dressing : [u'room'] -her house : [u'.', u'is'] -750 pounds : [u'.'] -meanwhile, : [u'for'] -grey garment : [u'was'] -hair like : [u'one'] -join him : [u'when'] -in strange : [u'fantastic'] -absolute ignorance : [u','] -and indignation : [u'among'] -some private : [u'diary'] -Dundee, : [u'and'] -troubled you : [u'about'] -accounts. : [u'I'] -to lose : [u',', u'such', u'your', u'.'] -tallow stains : [u'from'] -South. : [u'Eventually'] -South, : [u'and'] -. Neither : [u'you'] -all anxiety : [u'."'] -? Has : [u'it'] -have here : [u'four'] -watch. : [u'It'] -you thief : [u'!'] -meantime, : [u'and'] -collar or : [u'tie'] -police of : [u'Savannah'] -listless way : [u','] -the plainer : [u'it'] -promise to : [u'come', u'keep', u'you'] -Does it : [u'not'] -six when : [u'we', u'I'] -near Winchester : [u'.'] -straightened himself : [u'out'] -policy to : [u'a'] -upon whom : [u'you'] -whence I : [u'have'] -suavely, " : [u'that'] -inspector. " : [u'Here', u'He', u'They'] -hollow!" : [u'he'] -recalled Holmes : [u"'"] -to unpack : [u'the'] -the evening : [u'."', u'than', u'of', u'train', u'before', u'.', u'I', u'papers', u'at', u'light', u','] -those all : [u'night'] -not many : [u'who', u'in'] -laudanum in : [u'an'] -studied the : [u'methods'] -pal is : [u'all'] -eager nature : [u','] -province. : ['PP'] -so when : [u'he', u'the', u'I'] -picked a : [u'red'] -in feature : [u'.'] -read that : [u','] -are located : [u'in', u'also'] -first meet : [u'Miss'] -scene of : [u'the', u'action', u'uproar', u'this'] -all crinkled : [u'with'] -some reason : [u','] -diamond, : [u'sir'] -police find : [u'what'] -walk rapidly : [u'out'] -eyes twinkled : [u','] -an edge : [u'to'] -our bow : [u'window'] -Never to : [u'return'] -commanding figure : [u'.'] -not done : [u'more', u'so', u'a'] -have laid : [u'the', u'for'] -really it : [u'won'] -lady is : [u'correct', u'walking'] -them were : [u'of', u'treatises'] -The King : [u'took', u'may', u'stared', u'of'] -Bring him : [u'into'] -lords and : [u'ladies'] -wickedness of : [u'the'] -use your : [u'applying', u'skill'] -for from : [u'the', u'that'] -most fortunate : [u'in'] -more solid : [u'."'] -gigantic one : [u','] -than laugh : [u'at'] -this dim : [u'light'] -chap for : [u'?"'] -. 6d : [u'.\'"', u'.,'] -you earn : [u'into'] -But what : [u'is', u'could', u'was', u',', u'in', u'will', u'harm', u'other'] -my miserable : [u'secret', u'story'] -at 100 : [u'pounds'] -her when : [u'the', u'once'] -than 1000 : [u'pounds'] -over from : [u'my'] -out. " : [u'I'] -it with : [u'his', u'impunity', u'you', u'the', u'my', u'all'] -hereditary King : [u'of'] -died away : [u'into'] -slink away : [u'without'] -in what : [u'way', u'the'] -outline of : [u'an'] -They are : [u'important', u'typewritten', u'all', u'never', u'the', u'coiners', u'still', u'not', u'a'] -my facts : [u'most'] -once made : [u'up'] -times lately : [u'.'] -dull persistence : [u'.'] -and ill : [u'gentlemen', u'as'] -unfortunate man : [u'arrested'] -spoke her : [u'joy'] -ordered, : [u'and'] -letter is : [u'from', u'posted'] -the midst : [u'of'] -sister died : [u','] -the Arabian : [u'Nights'] -this crime : [u'."'] -over pleasant : [u'.'] -can this : [u'be'] -are bound : [u'to'] -a telegram : [u'.', u'from', u'upon', u'would'] -handedness. : ['PP'] -The boy : [u'had'] -is about : [u'the', u'half'] -you Watson : [u','] -the trees : [u'and', u'?', u'as', u'was', u','] -suddenly the : [u'whole'] -massive head : [u','] -other name : [u'.'] -entered who : [u'could'] -setting sun : [u','] -white goose : [u'slung'] -as having : [u'cleared'] -travelled in : [u'my'] -to suggest : [u'a'] -was useless : [u','] -different level : [u'to'] -the British : [u'barque'] -that secured : [u'the'] -others were : [u'there'] -concentration of : [u'attention'] -that building : [u','] -business up : [u'and'] -He thought : [u'no'] -ruddy faced : [u','] -matters little : [u'to'] -which sprang : [u'from'] -placed close : [u'to'] -to slip : [u'through'] -served my : [u'time'] -compressed lip : [u'to'] -creases of : [u'his'] -face buried : [u'in'] -walked slowly : [u'up', u',', u'round', u'all', u'across'] -with brownish : [u'speckles'] -a dirty : [u'and', u'thumb', u'scoundrel', u'face'] -and originality : [u'.'] -remain single : [u'long'] -, across : [u'the'] -fainting upon : [u'the'] -fiercely forward : [u','] -street in : [u'a'] -you draw : [u'so'] -invaluable to : [u'me'] -upon his : [u'chest', u'right', u'knee', u'features', u'forehead', u'face', u'knees', u'wrists', u'finger', u'breast', u'pale', u'ears', u'waterproof', u'plate', u'sallow', u'two', u'mind', u'strong', u'head', u'person', u'way', u'hands', u'track', u'thoughts', u'aristocratic', u'legs', u'allowance', u'expedition', u'congenial'] -and make : [u'yourself', u'his', u'a', u'my'] -you got : [u'the', u'in'] -Petrarch, : [u'and'] -most precious : [u'public'] -one dear : [u'little'] -mean bodies : [u'?"'] -to business : [u','] -, considerably : [u'astonished'] -exquisite mouth : [u'.'] -be presented : [u'by', u'which'] -pair might : [u'take'] -infinitely the : [u'most'] -helped him : [u'.'] -took. : [u'Hosmer'] -less inclined : [u'for'] -your energetic : [u'nature'] -perhaps from : [u'the'] -The ceiling : [u'of', u'was'] -handkerchief out : [u'of'] -someone could : [u'not'] -have given : [u'it', u'you', u'to', u'me', u'her', u'orders', u'prominence', u'room'] -. " Your : [u'Majesty', u'case', u'red', u'own', u'conversation', u'narrative'] -seedy and : [u'disreputable'] -it before : [u'he', u'now', u',"'] -wrote me : [u'dreadful'] -rushed upon : [u'him'] -indisposition and : [u'retired'] -raise our : [u'minds'] -up this : [u'clue'] -kempt and : [u'side'] -eyes round : [u'the', u','] -missing. : [u'For', 'PP', u'There', u'And'] -management of : [u'the'] -to post : [u'a', u'me'] -know Mr : [u'.'] -sharp nose : [u'?"'] -as noiselessly : [u'as'] -or appearance : [u'.'] -severely tried : [u',"'] -herself the : [u'very'] -this metal : [u'floor'] -and carbolised : [u'bandages'] -amusing yourself : [u'in'] -shadow might : [u'not'] -most suggestive : [u',"'] -it were : [u'in', u'that', u'merely', u'by', u'new', u'putty', u'made', u'on', u'not', u',', u'guilty', u'the'] -those which : [u'come', u'have'] -gas flare : [u'."'] -far I : [u'had', u'was'] -little danger : [u','] -the solicitation : [u'requirements'] -an impersonal : [u'thing'] -Dr. : [u'Watson', u'Willows', u'Grimesby', u'Roylott', u'Becher', u'S', u'Gregory'] -round for : [u'it'] -loathing. : [u'He'] -his machine : [u'overhauled'] -before our : [u'client', u'united'] -and clearing : [u'up'] -my assistance : [u'in'] -works even : [u'without'] -the heads : [u'of'] -questionable memory : [u'.'] -you combine : [u'the'] -discontent upon : [u'his'] -bouquet as : [u'we'] -little money : [u'which'] -pretty business : [u'for'] -caused me : [u'to', u'no'] -Its outrages : [u'were'] -is back : [u'through'] -people were : [u'absolutely'] -secret that : [u'the'] -determined by : [u'the'] -search in : [u'the'] -cab. : ['PP'] -Opening it : [u'hurriedly'] -cab, : [u'he', u'and', u'as'] -error has : [u'been'] -pattered down : [u'upon'] -hands I : [u'undid'] -do try : [u'to'] -shoulder to : [u'it'] -frightened eyes : [u'at', u','] -his eyebrows : [u'.'] -with deep : [u'attention'] -already answered : [u'.'] -under exactly : [u'similar'] -degenerating into : [u'an'] -sole duties : [u','] -act for : [u'you'] -understanding. : [u'To'] -," continued : [u'our', u'Holmes', u'my'] -a monomaniac : [u'.'] -the tragedy : [u'that', u'.'] -or cannot : [u'be'] -She struck : [u'a'] -84, : [u'in'] -recognise him : [u'.'] -the forehead : [u'and'] -made even : [u'gaunter'] -when last : [u'seen', u'night'] -feasible explanation : [u'.'] -standing at : [u'the'] -then took : [u'my'] -own marriage : [u','] -strike. : [u'Then'] -s wreath : [u'and'] -lured her : [u'within'] -weighed upon : [u'her'] -sore need : [u'.'] -rose now : [u'and'] -the organisation : [u'of', u'flourished'] -was William : [u'Morris', u'Crowder'] -included with : [u'this'] -take nothing : [u'for'] -two assistants : [u','] -so uncourteous : [u'to'] -rapidly and : [u'told'] -to Charing : [u'Cross'] -where Boots : [u'had'] -/ 6 : [u'/'] -hour on : [u'end'] -/ 2 : [u'per'] -with the : [u'Twisted', u'dark', u'small', u'chest', u'photograph', u'intention', u'two', u'air', u'same', u'blood', u'King', u'larger', u'smaller', u'smooth', u'money', u'pain', u'conditions', u'gesture', u'immense', u'hurrying', u'lantern', u'utmost', u'result', u'easy', u'greatest', u'thick', u'male', u'Study', u'conviction', u'pungent', u'official', u'sad', u'carriage', u'interest', u'lodge', u'injuries', u'right', u'gold', u'loss', u'text', u'number', u'servants', u'tradespeople', u'door', u'initials', u'last', u'warnings', u'disappearance', u'City', u'letters', u'brown', u'murky', u'most', u'exception', u'other', u'Gravesend', u'date', u'light', u'news', u'half', u'reckless', u'ice', u'twisted', u'decline', u'offence', u'bad', u'matter', u'collar', u'gas', u'stone', u'barred', u'well', u'control', u'one', u'sun', u'blue', u'wood', u'outside', u'keenest', u'landlord', u'cocked', u'shutter', u'long', u'certainty', u'weary', u'name', u'lamp', u'force', u'feeling', u'deepest', u'rest', u'company', u'bridegroom', u'police', u'steady', u'help', u'Stars', u'clanging', u'precious', u'key', u'three', u'coronet', u'accepted', u'prize', u'tongs', u'man', u'brisk', u'dog', u'anxiety', u'saddest', u'desire', u'shuttered', u'face', u'savage', u'copper', u'rules', u'phrase', u'full', u'terms', u'work', u'requirements', u'permission', u'defective', u'production', u'free', u'assistance', u'IRS', u'laws'] -have deduced : [u'a'] -is unlikely : [u'that'] -snow clad : [u'lawn'] -Who by : [u'?"'] -the weekly : [u'county'] -to knock : [u'you', u'the'] -heaped up : [u'edges'] -and excited : [u'as'] -broke from : [u'the'] -clothes, : [u'walked', u'as', u'pulled', u'who', u'and'] -clothes. : ['PP', u'It'] -the Park : [u',', u'."', u'.'] -air as : [u'possible'] -silent as : [u'Mrs'] -advance from : [u'a'] -and dishonoured : [u'age'] -This assistant : [u'of'] -some friend : [u'of'] -wild, : [u'free', u'wayward'] -fastened this : [u'morning'] -he produced : [u'and'] -paces off : [u'.'] -deductions have : [u'suddenly'] -quarrel broke : [u'out'] -impossible," : [u'said'] -The words : [u'fell', u'were'] -side is : [u'less'] -case before : [u'we', u'our'] -and astonishment : [u'upon', u','] -side in : [u'silence'] -Her husband : [u'lies'] -faces, : [u'and'] -chair up : [u'to', u'and'] -with dates : [u'and'] -promise of : [u'secrecy', u'the'] -office of : [u'the'] -in considerable : [u'excitement'] -bring it : [u'home', u'into'] -especially as : [u',', u'the', u'I'] -required my : [u'presence'] -to?' : [u'and'] -they remembered : [u'us'] -was worth : [u'an'] -strike deeper : [u'still'] -was difficult : [u'to'] -and when : [u'the', u'I', u'your', u'a', u'my'] -public and : [u'to'] -and waiting : [u'for'] -clear whistle : [u'.', u','] -the secrets : [u'of'] -?" gasped : [u'Hatherley', u'the'] -without seemed : [u'to'] -a goose : [u',', u'in', u'and', u'on', u'club', u'at'] -heavy breathing : [u'and'] -had acted : [u'differently'] -was on : [u'the', u'Wednesday', u'a', u'board', u'him', u'duty'] -was of : [u'use', u'Irene', u'such', u'me', u'a', u'an', u'the', u'considerably', u'grey', u'excellent'] -satisfied himself : [u'that'] -planet. : [u'So'] -work electronically : [u',', u'in'] -unless they : [u'make'] -after that : [u'for', u'we', u'father'] -same meshes : [u'which'] -she ran : [u'away', u'forward', u'free'] -drove home : [u'to', u'after'] -was far : [u'from', u'greater'] -in some : [u'respects', u'way', u'fantastic', u'parts', u'strange', u'dark', u'sort', u'points', u'such', u'surprise', u'perplexity', u'illness'] -left her : [u'room', u'alone'] -laughter made : [u'me'] -a pity : [u'to', u'that', u',', u'you'] -Isle of : [u'Wight'] -slang is : [u'very'] -impertinent fellow : [u'upon'] -His lip : [u'had'] -a firm : [u'in'] -innocent category : [u'.'] -master at : [u'the'] -driver, : [u'who', u'pointing'] -do within : [u'the'] -a fire : [u'in', u'?"'] -Entirely. : ['PP'] -cleared in : [u'the'] -disadvantages, : [u'to'] -your left : [u'shoe', u'.', u'glove'] -Was he : [u'the', u'in'] -head on : [u'one'] -legged lover : [u','] -King of : [u'Bohemia', u'Scandinavia', u'Proosia'] -assured that : [u'she', u'we'] -head of : [u'hair', u'his', u'the', u'a'] -transpired as : [u'to'] -before she : [u'shot'] -at high : [u'tide'] -You were : [u'yourself', u'travelling', u'not', u'chosen'] -Lestrade rose : [u'in'] -half and : [u'half'] -to escape : [u'from'] -causing some : [u'little'] -replied Lestrade : [u'with'] -white hands : [u'--"'] -turned from : [u'one', u'the'] -these requirements : [u'.'] -still held : [u'in'] -. So : [u'accustomed', u'say', u'were', u'there', u'and', u'perfect', u'long', u'determined', u'he', u'now', u'!', u'tall', u'then', u'Frank', u'far', u'I', u'much'] -sign that : [u'they', u'he'] -that frightened : [u'her'] -and probing : [u'the'] -. St : [u'.'] -little too : [u'theoretical', u'much', u'coaxing'] -maid for : [u'the'] -veil, " : [u'it'] -every evening : [u'."'] -" Right : [u'of'] -his wrinkles : [u'were'] -flatter himself : [u'that'] -in not : [u'arresting'] -allowed me : [u'a'] -need tell : [u'me'] -sun, : [u'and', u'were'] -some harm : [u'unless'] -his nose : [u'. "', u','] -We sat : [u'in'] -eyes that : [u'our', u'he'] -of bricks : [u'and', u'.'] -corners of : [u'his'] -some wear : [u'only'] -three maid : [u'servants'] -suicide.' : [u'But'] -letters which : [u'purport', u'were'] -British jury : [u'."'] -country carts : [u'were'] -his facts : [u','] -along. : ['PP', u'It'] -! They : [u'did', u'come'] -nine, : [u'I', u'with'] -nine. : [u'The'] -noblest, : [u'most'] -of theories : [u'to'] -well nigh : [u'certain'] -ideas in : [u'his'] -out some : [u'water'] -both an : [u'orphan'] -the thousands : [u'of'] -me through : [u'Baker', u'the'] -light shone : [u'out', u'upon'] -what way : [u'I', u'?"'] -ourselves. : ['PP', u'What', u'Frank'] -frost to : [u'preserve'] -ourselves, : [u'Windibank', u'if'] -your fortunes : [u'.'] -what was : [u'in', u'going', u'about', u'it', u'his', u'she', u'a', u'the', u'this', u'behind'] -crossed over : [u'the'] -had provided : [u', "'] -He stepped : [u'over', u'swiftly'] -I eliminated : [u'everything'] -the rueful : [u'face'] -John Openshaw : [u',', u'.', u'seems', u'were'] -exists because : [u'of'] -Is a : [u'tall'] -were all : [u'three', u'engaged', u'confirmed', u'paid', u'the', u'at', u'sodden', u'in', u'hastening', u'matters', u'horrible', u'assembled'] -of Devonshire : [u'fashion'] -so sudden : [u'and'] -slowly through : [u'this'] -an ashen : [u'white', u'face'] -to these : [u'very', u'conclusions'] -indoors all : [u'day'] -January of : [u"'"] -cigar, : [u'which', u'and', u'of'] -abound in : [u'the'] -cigar. : [u'I', u'Now'] -. M : [u".'"] -1888 I : [u'was'] -finding anything : [u'which'] -came with : [u'an'] -an inspection : [u'of'] -law to : [u'clear'] -do just : [u'whatever'] -night before : [u'waiting', u'.', u','] -speckles, : [u'which'] -Bohemia rushed : [u'into'] -face clouded : [u'over'] -believe I : [u'have'] -of print : [u',', u'than'] -Foundation is : [u'a', u'committed'] -wake you : [u'.'] -curtain in : [u'the'] -OF SUCH : [u'DAMAGE'] -myself through : [u','] -Is 4 : [u'pounds'] -Southampton highroad : [u','] -90, : [u'I'] -once she : [u'had'] -was all : [u'done', u'important', u'in', u'that', u'I', u'for', u'perfectly', u'crinkled', u'on'] -that night : [u',', u'.', u'after', u'with'] -. Everybody : [u'about'] -farther back : [u'on'] -lemon, : [u'orange'] -ring from : [u'his'] -to bad : [u'taste'] -"' On : [u'the'] -lamp was : [u'lit'] -matches laid : [u'out'] -their own : [u'story', u'secreting', u'devilish'] -bright, : [u'blazing', u'now', u'his', u'crisp', u'quick'] -" Some : [u'cold', u'ten', u'years'] -dealings with : [u'Sherlock'] -stabbed with : [u'her'] -portion of : [u'the', u'it'] -, instead : [u'of'] -his keys : [u'in', u','] -blackest treachery : [u'to'] -upon you : [u'to', u'in', u'and', u'not', u','] -domain works : [u'in'] -. Tell : [u'us'] -free distribution : [u'of'] -might expect : [u'.'] -?" he : [u'asked', u'yelled'] -" VIOLET : [u'HUNTER'] -, " else : [u'how'] -break away : [u'from'] -and done : [u'it'] -the landlord : [u','] -rooms as : [u'bachelors'] -. Neville : [u'St', u'wrote'] -least that : [u'was'] -rooms at : [u'my', u'once', u'Baker'] -,' must : [u'be'] -task. : ['PP', u'What'] -. H : [u'.'] -considerable confusion : [u'):'] -spoke in : [u'a'] -believe my : [u'ears'] -deny his : [u'signature'] -Four or : [u'five'] -as nothing : [u'else'] -position when : [u',', u'I'] -look dissatisfied : [u'."'] -a pistol : [u'shot', u'to'] -through this : [u'ventilator', u'?"', u'snow', u'door', u'matter'] -filial duty : [u'as'] -moving about : [u'.'] -bonnet, : [u'and'] -abroad. : [u'Besides'] -shillings for : [u'a'] -abroad, : [u'and'] -believe me : [u'.', u','] -wished Miss : [u'Sutherland'] -with immense : [u'capacity'] -thing obtruded : [u'itself'] -Even my : [u'dread'] -from states : [u'where'] -me again : [u'with'] -saddest look : [u'upon'] -bird which : [u'he', u'I'] -learn from : [u'him'] -household for : [u'a'] -hardly noticed : [u'his'] -sum of : [u'money'] -sleep that : [u'night'] -upon another : [u','] -conversation with : [u'a', u'two', u'his', u'her'] -at her : [u'baby', u'with', u'face', u'.', u'and', u'neck', u'wit', u'elbow', u'. "'] -making away : [u'with'] -, " formed : [u'any'] -with dew : [u','] -they seem : [u'to'] -steps; : [u'but'] -@ pglaf : [u'.'] -complete change : [u'in'] -remain unavenged : [u'.'] -many days : [u'are'] -man signed : [u'the'] -never met : [u'so'] -until those : [u'who'] -steps, : [u'because', u'which', u'worn'] -steps. : [u'She'] -really did : [u'it'] -hair and : [u'eyes', u'whiskers'] -This way : [u','] -hypothesis that : [u'it'] -the vacancy : [u'was', u'after'] -in between : [u'that'] -stool there : [u'sat'] -Captain Calhoun : [u'?"'] -cold night : [u',', u',"'] -This was : [u'quite', u'clearly'] -walk to : [u'the'] -tallow walks : [u'upstairs'] -to cause : [u'her'] -had his : [u'ordinary'] -house again : [u'and', u'.'] -proves to : [u'be'] -to imitate : [u'my'] -my approaching : [u'it'] -those keen : [u'eyes'] -subscribe to : [u'our'] -and strode : [u'off'] -me eagerly : [u'out'] -the start : [u'which'] -pink chiffon : [u'at'] -find parallel : [u'cases'] -always draw : [u'him'] -the stars : [u'were'] -efforts of : [u'the', u'hundreds'] -England a : [u'morose', u'tomboy', u'ruined'] -his Bohemian : [u'habits'] -doubt came : [u'into'] -she to : [u'prove', u'her', u'do', u'be'] -went straight : [u'to'] -if a : [u'gentleman', u'real', u'mass', u'little', u'man', u'defect'] -or on : [u'some'] -pips upon : [u'the'] -rooms were : [u'brilliantly', u'carefully', u'unapproachable'] -him was : [u'so'] -or of : [u'a'] -worse for : [u'wear', u'the'] -as ever : [u',', u'came', u'.'] -bank to : [u'refund'] -My father : [u'was', u'had'] -still call : [u'her'] -Foundation makes : [u'no'] -The double : [u'line'] -if I : [u'do', u'am', u'waited', u'wanted', u'go', u'were', u'call', u'leave', u'went', u'could', u'remember', u'had', u'say', u'knew', u'should', u'have', u'might', u'did', u'told', u'felt', u'passed'] -and sparkles : [u'.'] -be looked : [u'upon'] -but found : [u'it'] -little handkerchief : [u'out'] -and multiply : [u'it'] -as highly : [u'suspicious'] -real occupation : [u'.'] -2, : [u'000'] -to point : [u'very', u'out'] -2. : [u'If', u'LIMITED', u'Information'] -Which key : [u'was'] -, feeling : [u'as', u'very'] -figure huddled : [u'up'] -be proud : [u'to'] -other form : [u'.'] -a scent : [u'as', u','] -Half a : [u'guinea'] -take no : [u'notice'] -is all : [u'right', u'perfectly', u'that', u'over', u'which', u'we', u'.', u'the', u'."', u'dark', u'quite'] -promise after : [u'the'] -and benevolent : [u'curiosity'] -in five : [u'minutes'] -life have : [u'I'] -a scene : [u'in'] -I served : [u'them'] -a half : [u'pounds', u'feet', u'pay'] -her in : [u'his', u'conversation', u'the', u'tears', u'height'] -Dundas separation : [u'case'] -gaslight, : [u'a'] -take some : [u'hours', u'little'] -hurry to : [u'him'] -salesman, " : [u'I'] -is where : [u'the', u'we'] -be when : [u'I'] -only mean : [u'that'] -my wife : [u'has', u'and', u',', u'died', u'laid', u"'", u'like', u'as', u'was', u'would', u'found', u'out', u'."', u'?"', u'might'] -of uproar : [u'.'] -But our : [u'trap', u'doubts'] -overcoat. " : [u'You', u'There'] -baboon, : [u'which'] -member. : ['PP'] -am so : [u'candid', u'glad', u'frightened', u'sure', u'delighted'] -swift steps : [u'to'] -do on : [u're'] -how simple : [u'it', u'the'] -buy their : [u'land'] -us also : [u'.'] -do of : [u'a'] -your window : [u','] -seeing anything : [u'more'] -same thing : [u'had'] -last two : [u'syllables'] -deference. " : [u'Still'] -be which : [u'seemed'] -too; : [u'perhaps'] -more with : [u'your', u'a'] -is mature : [u'for'] -began it : [u'all'] -she meets : [u'me'] -A proposition : [u'which'] -; ' I : [u'would', u'think', u'could'] -ring in : [u'the'] -turned white : [u'to'] -the smokeless : [u'chimneys'] -same as : [u'the', u'you', u'his'] -wait outside : [u','] -which did : [u'not'] -an ounce : [u'of'] -, manifested : [u'no'] -swept silently : [u'into'] -rushed off : [u'among'] -chosen to : [u'insult'] -darkness of : [u'the'] -only reached : [u'her'] -Underground and : [u'hurried'] -the momentary : [u'gleam'] -compromised yourself : [u'seriously'] -a furniture : [u'warehouse'] -chairs, : [u'made'] -no rest : [u'for'] -stone work : [u'had'] -over whom : [u'he'] -increasing the : [u'number'] -brewer, : [u'by'] -right forefinger : [u',', u'.'] -" Warm : [u'!'] -? Who : [u'is', u'are', u'would'] -this whistle : [u'and'] -rich tint : [u','] -gipsies do : [u'?"'] -way to : [u'the', u'Mr', u'clearing', u'meet', u'their', u'take', u'Kilburn', u'Leatherhead', u'force', u'make'] -her right : [u'glove', u'hand', u'.'] -uppermost. : [u'He'] -a gash : [u'seemed'] -large ones : [u'.'] -the Manor : [u'House'] -doctor' : [u's'] -was kind : [u'enough', u'of', u'to'] -doctor, : [u'this', u'to', u'the', u'a'] -doctor. : ['PP'] -fixed one : [u'side'] -burglars in : [u'my'] -James McCarthy : [u',', u',"', u'was'] -rpertoire, : [u'and'] -Pope' : [u's'] -, 2011 : [u'['] -. 9 : [u'.'] -anxiety lest : [u'I'] -some blood : [u'stains'] -said gravely : [u", '"] -senses. : [u'To'] -well when : [u'McCarthy'] -a sceptic : [u',"'] -descending piston : [u','] -be really : [u'out'] -18, : [u'2011'] -his dreams : [u'and'] -guardianship, : [u'but'] -Calhoun, : [u'Barque'] -suppose, : [u'than', u'Watson', u'is'] -on your : [u'hat', u'way'] -s would : [u'be'] -revealed to : [u'the'] -long as : [u'I', u'she', u'you', u'every', u'possible', u'he', u'all'] -Holmes walked : [u'slowly', u'over'] -be looking : [u'in'] -of certain : [u'implied', u'types'] -compromise one : [u'of'] -fall into : [u'the'] -homeward down : [u'Tottenham'] -don' : [u't'] -papers I : [u'observed'] -cabs go : [u'slowly'] -This is : [u'indeed', u'my', u'a', u'what', u'Mr', u'wanting', u'the', u'not', u'no', u'very', u'only', u'where', u'more', u'all'] -this also : [u'he'] -organisation of : [u'the'] -joy at : [u'the'] -, should : [u'still', u'you', u'I'] -plush that : [u'I'] -fingers upon : [u'the'] -very soul : [u'of', u'seemed', u'.'] -thicket, : [u'which'] -elaborate preparations : [u','] -it made : [u'me'] -bird for : [u'life'] -spotted handkerchiefs : [u'which'] -should like : [u'to', u'just', u'an', u',', u'a', u'all'] -shutters up : [u".'"] -moonshine. : ['PP'] -files of : [u'the', u'various'] -recognised me : [u','] -protestation of : [u'innocence'] -handling just : [u'now'] -gullet and : [u'down'] -Hum! ' : [u'Arms'] -re use : [u'it'] -brandy into : [u'the'] -loved his : [u'cousin'] -. Boots : [u'which', u'had'] -drawer open : [u'.'] -be forgiven : [u'and'] -annoyance upon : [u'her'] -on it : [u'that', u',', u',"', u'.'] -lawn of : [u'weedy'] -me is : [u'a'] -wisdom late : [u'than'] -she bade : [u'us'] -. 4 : [u".'", u'.'] -unusual strength : [u'of'] -on in : [u'his'] -clever gang : [u'was'] -a net : [u'round'] -order, : [u'you', u'and'] -the lower : [u'part', u'vault', u'windows', u'one'] -own private : [u'purse'] -the unexpected : [u'sight'] -reason alone : [u'can'] -the effect : [u'which', u'was', u'of', u'that', u'.'] -ankles protruding : [u'beneath'] -trifle, : [u'but'] -trifle. : ['PP'] -to deny : [u'his'] -hands up : [u'into', u'and'] -at heart : [u'."'] -hurled the : [u'local'] -to talk : [u'it', u'to'] -PROJECT GUTENBERG : [u'EBOOK', u'tm', u'LICENSE'] -dew, : [u'and'] -be little : [u'doubt', u'relation'] -investigation into : [u'their'] -. 6 : [u'.'] -unconcerned an : [u'air'] -! My : [u'mistress'] -d rather : [u'have'] -tied. : ['PP'] -up around : [u'the'] -, ferret : [u'like'] -my late : [u'acquaintance'] -? Many : [u'people'] -passed across : [u'Holborn'] -followed, : [u'but'] -perceived that : [u'there'] -, deeply : [u'attracted'] -forefinger upon : [u'the'] -him upon : [u'the'] -also defective : [u','] -pilot boat : [u'.'] -ordered a : [u'carriage'] -twice been : [u'burgled', u'deceived'] -and instantly : [u','] -upward to : [u'the'] -Miss Doran : [u',', u'on'] -men smoking : [u'and'] -has offered : [u'no'] -he limped : [u'he'] -without observing : [u'the', u'him'] -' at : [u'the'] -he quotes : [u'Balzac'] -a purpose : [u'.'] -this Mrs : [u'.'] -quietly shot : [u'back'] -cloth cap : [u'.', u'which'] -remove them : [u'without'] -muscles are : [u'more'] -" Anything : [u'else'] -inspector, : [u'all', u'laughing'] -item. " : [u'Well'] -if uncertain : [u'which'] -gently smiling : [u'face'] -site and : [u'official'] -half risen : [u'. "'] -a cage : [u'.'] -eye of : [u'a'] -he walked : [u'slowly', u'over', u'towards', u'.'] -he settled : [u'our'] -built firmly : [u'into'] -eye on : [u'the'] -Langham under : [u'the'] -after passing : [u'through'] -Holmes alone : [u','] -the sympathy : [u'of'] -Your skill : [u'has'] -be an : [u'active', u'immense', u'attempt', u'end', u'interesting', u'advantage', u'absolutely', u'imprudence'] -more money : [u'in'] -one being : [u'present'] -free, : [u'unfettered'] -handkerchief. : [u'On'] -she finished : [u'speaking'] -respectable frock : [u'coat'] -be as : [u'averse', u'well', u'good', u'pressing', u'warm', u'obvious'] -lying open : [u'upon'] -windows almost : [u'to'] -be at : [u'Briony', u'Baker', u'St', u'his', u'bottom', u'the', u'our'] -That, : [u'however'] -knew nothing : [u',', u'."', u'of'] -be found : [u',', u'save', u'either', u'in', u'."', u'out', u'at'] -That' : [u's'] -muttered Holmes : [u','] -and nervous : [u'shock'] -sided boot : [u'in'] -has certainly : [u'the'] -pained expression : [u'upon'] -fastened by : [u'a'] -done from : [u'your'] -tail of : [u'the'] -! yes : [u','] -were not : [u'many', u'fit', u'unlike', u',', u'to', u'I', u'very', u'for', u'destined', u'yourself', u'yet'] -usual at : [u'ten'] -shall endeavour : [u'to'] -faculties and : [u'extraordinary'] -distinct odour : [u'of'] -geese," : [u'said', u'he'] -opinion," : [u'remarked'] -think over : [u'my'] -lonelier than : [u'ever'] -called to : [u'you'] -org/ : [u'1', u'fundraising', u'donate'] -removing any : [u'traces'] -calls attention : [u','] -friendly supper : [u'."'] -your confederate : [u'Cusack'] -, our : [u'little', u'friend'] -, out : [u'there', u'of'] -entreated him : [u'to'] -you cannot : [u',', u'guard', u'think'] -got down : [u'from'] -sleepy bewilderment : [u'.'] -that occurred : [u'."'] -black felt : [u'hat'] -ungrateful for : [u'what'] -its black : [u'muzzle'] -pathway through : [u'the'] -. " Such : [u'paper'] -passion. ' : [u'How'] -smarting of : [u'it'] -the deductions : [u'and'] -his pile : [u','] -who takes : [u'very'] -For a : [u'minute', u'long', u'moment', u'while'] -." Some : [u'three'] -was firm : [u'.'] -the events : [u'of', u'occurred'] -the short : [u'grass', u'stock'] -repair, : [u'but'] -the greyish : [u'colour'] -low as : [u'you'] -neck he : [u'drew'] -I assure : [u'you'] -His frank : [u'acceptance'] -introduction of : [u'his'] -he finished : [u','] -easily got : [u'."'] -are they : [u'worth', u'?"', u'?', u'all'] -them to : [u'come', u'mother', u'Mr', u'you', u'meet', u'say'] -dull wrack : [u'was'] -all jostling : [u'each'] -dreadful snap : [u'.'] -measures on : [u'my'] -The writing : [u'is'] -are then : [u'shown'] -To the : [u'Leadenhall', u'best', u'police', u'man'] -teach you : [u'not'] -will keep : [u'the', u'your'] -van. : [u'That'] -And Holmes : [u"'"] -were wasted : [u'."'] -cock and : [u'bull'] -he bit : [u'his'] -. ' The : [u'Church', u'only'] -figure and : [u'striking'] -been exceptionally : [u'so'] -would ask : [u'for'] -swayed his : [u'body'] -together in : [u'ignorance', u'a', u'the'] -that went : [u'to'] -a flush : [u'upon'] -insects. : [u'But'] -lurched and : [u'jolted'] -myself one : [u'of'] -stout cord : [u'.'] -remembered door : [u','] -couple of : [u'hundred', u'wooden', u'days', u'hours', u'dozen', u'years', u'brace'] -opinion that : [u'the'] -be you : [u'.'] -satisfaction than : [u'his'] -instant, : [u'and', u'for', u'threw', u'caught'] -instant. : [u'We', u'And'] -us as : [u'much', u'belonging'] -us at : [u'once'] -shade instead : [u'of'] -say a : [u'night', u'probable', u'word'] -There is : [u'the', u'a', u'only', u'that', u'water', u'Mortimer', u'no', u'half', u',', u'one', u'danger', u'as', u'nothing', u'serious', u'but', u'at', u'ever', u'not', u'so', u'your', u'some', u'something'] -cake. : ['PP'] -," and : [u'a', u'beneath'] -a user : [u'who', u'to'] -It was : [u'not', u'."', u'close', u'a', u'twenty', u'all', u'the', u'already', u'dated', u'instantly', u'one', u'difficult', u'from', u'most', u'to', u'quite', u'worth', u'only', u'.', u'nearly', u'very', u'something', u'late', u'sheer', u'with', u'damp', u'about', u'mere', u'an', u'clear', u'in', u'headed', u'Neville', u'no', u'soon', u'pierced', u'lost', u'found', u'Catherine', u'early', u'so', u'clamped', u'useless', u'pitch', u'indeed', u'obvious', u'too', u'after', u'as', u'awful', u'naturally', u',', u'I', u'easy', u'of', u'my', u'more', u'empty'] -was joking : [u'.'] -serious for : [u'dawdling', u'any'] -hands in : [u'his', u'the', u'her'] -that little : [u'may'] -arrested at : [u'once'] -! When : [u'?"'] -our signal : [u',"'] -arrested as : [u'his'] -were upon : [u'my'] -being that : [u'you'] -We even : [u'traced'] -husband' : [u's'] -room with : [u'a'] -still was : [u'it'] -find it : [u'pointing', u'here', u'very', u'hard', u'difficult', u'as', u'shorter', u'upon', u'so', u'laid', u'rather'] -husband. : ['PP', u'Here', u'Her'] -seventy odd : [u'cases'] -husband, : [u'she', u'a', u'as', u'not'] -, driving : [u'with'] -******** : [u'This'] -seldom heard : [u'him'] -way across : [u'the'] -she found : [u'herself', u'matters'] -your chair : [u'up', u'!"'] -pglaf. : [u'org'] -bachelors in : [u'Baker'] -had finished : [u'for', u'.'] -it worked : [u'.'] -own thought : [u'is'] -emigrant ship : [u'.'] -sudden turn : [u'to'] -few moments : [u'later', u'afterwards'] -his congenial : [u'hunt'] -not received : [u'written'] -difficult to : [u'name', u'identify', u'realise', u'suggest', u'get', u'find', u'refuse', u'post', u'part'] -chairs and : [u'a'] -no foresight : [u'and'] -asylum, : [u'and'] -myself mumbling : [u'responses'] -about going : [u'out'] -ever listened : [u'to', u'.'] -darkness as : [u'I'] -grew more : [u'ambitious'] -wandered through : [u'the', u'woods'] -received in : [u'exchange'] -to blame : [u'.'] -a bed : [u'fastened', u'and'] -THOSE PROVIDED : [u'IN'] -Quite an : [u'interesting'] -Dirty. : ['PP'] -hanging jowl : [u','] -long newspaper : [u'story'] -role I : [u'have'] -gems had : [u'been'] -well nurtured : [u'man'] -felt as : [u'if'] -be forwarded : [u'to'] -this dark : [u'place', u'business'] -hands. " : [u'God', u'I'] -were innocent : [u','] -the metropolis : [u',', u'at'] -It will : [u'end', u'very'] -what these : [u'perils'] -Irene, : [u'or'] -a worthy : [u'fellow'] -big white : [u'one'] -and quite : [u'time'] -foreigner, : [u'and'] -Irene' : [u's'] -" Hotel : [u'Cosmopolitan'] -usually the : [u'more'] -not fit : [u'for', u'the'] -brought him : [u'to', u'the'] -a crate : [u','] -thoroughly rely : [u'.'] -been meant : [u'for'] -ostlers, : [u'and'] -drew a : [u'sovereign'] -I regret : [u'that'] -has assuredly : [u'gone'] -the pea : [u'jacket'] -slashed across : [u'the'] -your very : [u'interesting', u'life'] -left shoe : [u','] -what then : [u'?"'] -poison which : [u'could'] -characteristics, : [u'but'] -To ruin : [u'me'] -questions, : [u'Mr', u'to'] -the pew : [u'.', u'handed'] -the garments : [u','] -been entirely : [u'free'] -its ragged : [u'edge'] -which ended : [u'in'] -I volunteered : [u'to'] -what they : [u'were', u'like', u'had', u'stole', u'are', u'said', u'can', u'would'] -consulted. : ['PP', u'And'] -that all : [u'is', u'was', u'theories', u'the', u'I', u'?"', u'this'] -words with : [u'which', u'him', u'care', u'the'] -so at : [u'last'] -see?' : [u'He'] -assistant of : [u'yours'] -The story : [u'has'] -conclusion of : [u'an'] -the basket : [u'chair'] -adventures. : ['PP'] -are and : [u'what'] -opium smoking : [u'to'] -the twisted : [u'lip', u'poker'] -entering her : [u'father'] -but what : [u'was', u'has', u'he', u'have'] -walking very : [u'stealthily'] -flap he : [u'wrote'] -he enjoyed : [u'the'] -plot had : [u'been'] -Quite sure : [u','] -a wink : [u'at'] -set himself : [u'to'] -with your : [u'Majesty', u'filthy', u'short', u'medical', u'permission', u'silly', u'statement', u'narrative', u'assistance', u'deductions', u'company', u'haste', u'written'] -matter,' : [u'said'] -county, : [u'but'] -other papers : [u'were'] -the investments : [u'with'] -Roylott then : [u'abandoned'] -little supper : [u'and'] -the outskirts : [u'of'] -never would : [u'look'] -again presently : [u',"'] -this truth : [u'that'] -serious trouble : [u'and'] -am left : [u'to'] -promise," : [u'said'] -roof. " : [u'Ah'] -although there : [u'have', u'seemed'] -thrown from : [u'the'] -. Cocksure : [u',"'] -and wished : [u'to'] -rushed back : [u'to', u','] -good! : [u'If'] -head thrust : [u'forward'] -grating. : [u'The'] -any additional : [u'terms'] -good, : [u'amiable', u'and', u'Lestrade'] -how he : [u'was', u'came', u'met', u'winced', u'found', u'managed', u'did'] -good. : [u'Now', u'Come', 'PP', u'Your', u'I', u'That'] -could he : [u'not', u'have'] -Baker Street : [u',', u'.', u'and', u'that', u'at', u', "', u'would', u'?"', u'we', u".'", u'once', u'rooms', u'it', u'by'] -ornament. : [u'A'] -Executive and : [u'Director'] -which remains : [u'.', u'to'] -flattered as : [u'any'] -am naturally : [u'observant'] -since you : [u'are', u'draw', u'had', u'have', u'refuse'] -30, : [u'000'] -addressed it : [u'to'] -keys and : [u'could', u'tried'] -public. : [u'It'] -public, : [u'and', u'though', u'the', u'who'] -as valuable : [u'as'] -tale garments : [u'.'] -easily imagine : [u','] -the bars : [u'of'] -their nature : [u',"'] -very freely : [u','] -he hated : [u'to'] -grass which : [u'bounded'] -wasted. : ['PP'] -own eyes : [u'.', u',', u'with'] -that what : [u'he', u'this', u'the', u'you'] -the bare : [u'slabs'] -It came : [u'by', u'right', u'here'] -the bark : [u'of', u'from'] -straw hat : [u','] -my calling : [u'so'] -be married : [u'."', u',', u'in', u'right'] -see from : [u'the'] -boy' : [u's'] -like so : [u'many'] -could go : [u'no', u'where', u'."', u'.'] -solicitor and : [u'was'] -was hauling : [u'after'] -ready handed : [u'criminal'] -boy, : [u'what', u'but', u'and', u'throwing', u'dressed', u'Arthur'] -defined my : [u'limits'] -a fortnight : [u"'", u'of'] -trust with : [u'a'] -note the : [u'peculiar'] -tongue in : [u'a'] -the rooms : [u'which'] -to thank : [u'him', u'you'] -only problem : [u'we'] -was time : [u'to'] -, closed : [u'my', u'the'] -pitiful a : [u'sum'] -careful, : [u'for', u'I'] -careful. : [u'I'] -learn more : [u'about'] -exclamation from : [u'my'] -personate someone : [u','] -suddenly in : [u'the'] -Our own : [u'door'] -easy matter : [u',', u'to'] -version posted : [u'on'] -state applicable : [u'to'] -frame, : [u'he'] -little distance : [u'down'] -man upon : [u'whom'] -invited them : [u'to'] -board of : [u'a'] -indeed important : [u',"'] -a pleasant : [u','] -are young : [u'McCarthy'] -for." : [u'My'] -shown us : [u'into'] -and acknowledges : [u'me'] -I smiled : [u'and'] -paused at : [u'the'] -yet opened : [u'his'] -day my : [u'editor'] -more afraid : [u'of'] -finger," : [u'remarked'] -prepare) : [u'your'] -140 different : [u'varieties'] -fear that : [u'I', u'you', u'Neville', u'they', u'it'] -square pierced : [u'bit'] -blot to : [u'my'] -and Miss : [u'Hatty', u'Rucastle'] -be loose : [u','] -boot in : [u'his'] -quite hollow : [u'!"'] -blackguard!' : [u'I'] -., lunch : [u'2s'] -in cool : [u'blood'] -THE TRADEMARK : [u'OWNER'] -imprudence in : [u'allowing'] -Waterloo Bridge : [u".'", u',', u'Road'] -the winding : [u'track'] -privacy. : [u'There'] -spend the : [u'night'] -the trained : [u'reasoner'] -much mistaken : [u'."', u'if', u','] -places for : [u'river'] -, " because : [u'there', u'it'] -fat and : [u'burly'] -parapet into : [u'a'] -from Carlsbad : [u". '"] -said our : [u'strange', u'new', u'engineer', u'client'] -blotting paper : [u',', u'has'] -neck. : [u'His', u'With'] -neck, : [u'and'] -little records : [u'of'] -have received : [u'a'] -lies your : [u'only'] -wear over : [u'their'] -to or : [u'distribute', u'distributing'] -and something : [u'on'] -BEECHES" : [u'To'] -black beads : [u'sewn'] -weight upon : [u'it'] -can brazen : [u'it'] -was eager : [u'enough'] -a verbatim : [u'account'] -roadway was : [u'blocked'] -seems exceedingly : [u'complex'] -take advantage : [u'of'] -danger which : [u'threatens'] -, fleshless : [u'nose'] -if anyone : [u'were', u'could'] -Norton came : [u'running'] -and draughts : [u'with'] -Arnsworth Castle : [u'business'] -wooden walls : [u','] -You speak : [u'of'] -bedroom again : [u','] -with all : [u'the', u'this', u'that', u'its', u'who', u'my', u'his', u'other'] -far as : [u'I', u'you', u'Aldersgate', u'it', u'the', u'we', u'he', u'my', u'to', u'Reading'] -Aldersgate; : [u'and'] -Starving. : [u'It'] -Did your : [u'father', u'wife'] -loose network : [u'of'] -12s. : ['PP'] -the worth : [u'of'] -would all : [u'have'] -spot at : [u'which'] -window is : [u'upon', u'a', u'the'] -I describe : [u'."'] -Mission of : [u'Project'] -had it : [u'not', u'from'] -to interfere : [u'?"'] -indeed he : [u'.'] -and several : [u'well', u'scattered', u'robberies'] -stood with : [u'her', u'his'] -drive at : [u'seven'] -lamp I : [u'saw'] -and examined : [u'it', u'with', u'each', u'the'] -stand in : [u'the'] -. Hart : [u'is'] -cover of : [u'the'] -too late : [u'to', u'."', u"!'", u'forever', u'!', u',"', u'!"'] -had fainted : [u'at', u'on'] -marshy ground : [u','] -was after : [u'five'] -doctor affected : [u'.'] -crime is : [u'in', u','] -a moment : [u'later', u"'", u'when', u'he', u'to', u'.', u'that', u'from'] -crime it : [u'is'] -dangerous man : [u'to', u'.'] -help. : ['PP', u'I'] -help, : [u'and', u'too', u'you', u'her', u'see'] -found at : [u'the'] -mind me : [u';'] -ship last : [u'night'] -mind my : [u'saying'] -often connected : [u'not'] -to suppose : [u'that'] -their children : [u'.'] -trifling cause : [u'."'] -the grey : [u'cloth', u'walls', u'gables'] -will prejudice : [u'your'] -were true : [u'the'] -yourself in : [u'every', u'the', u',', u'any', u'doubt'] -narrative of : [u'the'] -stand it : [u'any'] -gigantic ball : [u'and'] -time of : [u'my', u'his', u'the', u'life', u'her'] -ever forget : [u'that'] -being volumes : [u'of'] -constables with : [u'an'] -battered felt : [u'?"'] -a distracting : [u'factor'] -here!' : [u'said'] -little pale : [u'lately'] -visitor answered : [u','] -left arm : [u',', u'of'] -nonproprietary or : [u'proprietary'] -restored to : [u'their'] -allowed some : [u'few'] -wedding morning : [u','] -they were : [u'compelled', u'straw', u'at', u'.', u'burrowing', u'sent', u'typewritten', u'really', u'frequently', u'going', u'peculiar', u'all', u'always', u'posted', u',', u'the', u'of', u'bolted', u'made', u'very', u'too', u'hardly', u'such', u'identical'] -Your right : [u'hand'] -remarked that : [u'he', u'it'] -writings. : [u'And'] -of Ross : [u'.'] -TRADEMARK OWNER : [u','] -than anything : [u'which'] -copying or : [u'distributing'] -rope?" : [u'remarked'] -moment in : [u'front'] -is straight : [u'enough'] -trustees, : [u'with'] -treble K : [u'which'] -invariable success : [u'that'] -has hardly : [u'served'] -?' asked : [u'Arthur'] -whose biographies : [u'I'] -souls which : [u'are'] -will bring : [u'up'] -has thoroughly : [u'understood'] -are hurrying : [u'up'] -of God : [u','] -that her : [u'house', u'word', u'right', u'stepfather', u'sister', u'dowry', u'education', u'temper', u'mistress', u'position', u'father'] -inconvenience. : [u'As'] -drunken looking : [u'groom'] -pipe, : [u'which', u'with', u'cigar', u'and'] -more down : [u'the'] -same format : [u'with'] -been cause : [u'and'] -the couch : [u'.', u',', u'and', u'was'] -" With : [u'making', u'the'] -instant the : [u'lady', u'smile'] -a friend : [u',', u'of', u'."', u'and', u'with', u'once', u"'"] -having quite : [u'made'] -struck cold : [u'to'] -window looking : [u'down'] -" Have : [u'you', u'they'] -McCarthy expected : [u'to'] -credit in : [u'the'] -rather elementary : [u','] -when they : [u'closed', u'were', u'talked', u'came', u'come', u'found', u'could'] -sharpened away : [u'into'] -DEAR MR : [u'.'] -. " Nothing : [u'could'] -the unpleasant : [u'night'] -stood very : [u'erect'] -and effect : [u'which', u'.'] -died within : [u'ten'] -injured. : [u'I', 'PP'] -hearty, : [u'noiseless'] -heavy hall : [u'door'] -dead and : [u'had'] -She would : [u'rush', u'like', u'often'] -secure his : [u'absence'] -, " by : [u'binding', u'sitting', u'a'] -arrived, : [u'so', u'by'] -save my : [u'partner'] -I coupled : [u'it'] -his quick : [u','] -generally successful : [u'."'] -larger and : [u'older'] -on fire : [u',', u'?"', u'to'] -Eg.' : [u'Let'] -we emptied : [u'four'] -over my : [u'plan', u'notes', u'violin', u'shoulder', u'Bradshaw'] -to arrive : [u'at'] -gas lit : [u'streets'] -let your : [u'mind'] -McCarthy for : [u'all'] -let yourself : [u'doubt'] -holiday from : [u'my'] -gloves. " : [u'I'] -habit grew : [u'upon'] -an explanation : [u'.'] -Is he : [u'quiet', u'not'] -all ready : [u'for', u'in'] -fears are : [u'so'] -freely shared : [u'with'] -after four : [u','] -The alarm : [u'of', u','] -hurt. : [u'When'] -Christmas. : [u'My'] -Christmas, : [u'with', u'and'] -his cane : [u'at'] -bending it : [u'with'] -already begun : [u'to'] -the personal : [u'column'] -result that : [u'you'] -drops were : [u'visible'] -to avoid : [u'scandal', u'the'] -yet borne : [u'a'] -ever ready : [u'with'] -people saw : [u'him'] -key in : [u'the'] -flicking the : [u'horse'] -late hour : [u'last'] -reached my : [u'sister'] -every reason : [u'to'] -an appointment : [u'with', u'of', u'at'] -in drawing : [u'your'] -. Not : [u'more', u'a', u'even'] -England, : [u'be', u'and', u'the', u'followed'] -England. : ['PP', u'He', u'I'] -with propriety : [u'obey'] -distributed to : [u'anyone'] -out from : [u'his', u'beneath', u'among', u'amid', u'the', u'a', u'under'] -new and : [u'effective'] -remembered that : [u'you', u'Toller'] -strangers could : [u'hardly'] -refund in : [u'writing'] -three sides : [u','] -retreat," : [u'whispered'] -frightened about : [u'him'] -independent about : [u'money'] -" Indeed : [u',', u'!', u'?', u',"', u'.'] -Assizes on : [u'the'] -Tut, : [u'tut'] -Tut! : [u'tut'] -, relapsing : [u'into'] -devils," : [u'he'] -must confess : [u'that'] -friend whose : [u'warning'] -make all : [u'fiction'] -committed, : [u'and'] -perhaps the : [u'house', u'best', u'look'] -committed. : [u'As'] -charm to : [u'an'] -centuries ago : [u'.'] -feel sure : [u'of', u'is'] -arrested and : [u'taken'] -suffered. : ['PP'] -on pretence : [u'of'] -pray, : [u'sit'] -trimly clad : [u','] -for goodness : [u"'"] -morning," : [u'Lestrade'] -upon Christmas : [u'morning'] -chemical work : [u'which'] -B. " : [u'Project'] -to Eyford : [u'to', u','] -disgraceful one : [u'.'] -he gets : [u'his'] -shall only : [u'be'] -his refusal : [u'to'] -I go : [u'armed', u'wrong', u'?"', u'up'] -gave myself : [u'up'] -me?" : [u'He', u'asked'] -more but : [u','] -pinnacles which : [u'marked'] -, indeed : [u',', u'?"', u'.', u'?', u'!', u'!"'] -. " Was : [u'the', u'he', u'it'] -the hurrying : [u'swarm'] -quite good : [u'enough'] -other led : [u'us'] -ceased ere : [u'I'] -enlarged at : [u'the'] -gloom one : [u'could'] -our geese : [u'."'] -Holder and : [u'I'] -always felt : [u'that'] -Where have : [u'you'] -learned that : [u'he', u'she', u'his'] -late Ezekiah : [u'Hopkins'] -just above : [u'the', u'where'] -earth has : [u'that'] -was killed : [u'eight'] -! Have : [u'you'] -this clue : [u'while'] -looks a : [u'little'] -little over : [u'precipitance'] -her resolutions : [u'.'] -indeed the : [u'culprit'] -the lamps : [u'were'] -sleepy people : [u'up'] -a foreigner : [u','] -few square : [u'miles'] -light from : [u'its', u'my', u'above'] -Sit down : [u'in', u'and'] -myself into : [u'a'] -at such : [u'a', u'an'] -into court : [u'at', u'!'] -a bland : [u','] -part my : [u'own'] -myself! : [u'I'] -speech. : [u'He', u'Was', u'His'] -" Look : [u'here', u'there'] -with broad : [u'iron'] -absurdly agitated : [u'over'] -bed was : [u'clamped'] -in Herefordshire : [u'.'] -your state : [u"'"] -was anxious : [u'to'] -stay at : [u'home'] -send him : [u'away', u'home'] -walking amid : [u'even'] -a shilling : [u'of'] -matter between : [u'this'] -' Hosmer : [u'Angel'] -course it : [u'was', u'is'] -true that : [u'I', u'you', u"'", u'the'] -remarkable results : [u'.'] -nor your : [u'son'] -est tout : [u",'"] -About a : [u'month'] -the handcuffs : [u'clattered'] -passed her : [u'hand'] -be cleared : [u'up', u'along'] -and leading : [u'to'] -Stay where : [u'you'] -. Breckinridge : [u',"'] -favour of : [u'a', u'such', u'it', u'the'] -accompanied her : [u'back'] -bare feet : [u','] -me along : [u'here'] -apology for : [u'my'] -down there : [u'I', u'?', u'and'] -with an : [u'inflamed', u'appearance', u'old', u'oath', u'inspector', u'ounce', u'alias', u'opal', u'excellent', u'ashen', u'electronic'] -be linked : [u'to'] -have everything : [u'in'] -, puffing : [u'and'] -taken up : [u'by', u'my'] -this same : [u'Monday', u'performance'] -" Such : [u'as'] -before evening : [u'."'] -her ladyship : [u"'"] -Whatever he : [u'wanted'] -now you : [u'must', u'see'] -mat. : [u'In'] -, patent : [u'leather'] -with as : [u'little'] -complete. : [u'You'] -stage of : [u'my'] -on Monday : [u',', u'last', u'and', u'he', u'morning'] -western border : [u'of'] -were unconscious : [u'?"'] -of commerce : [u'flowing'] -was I : [u'to', u'found', u'gave', u'.'] -manage to : [u'secure'] -clever man : [u'turns'] -a Bible : [u'.'] -too excited : [u'in'] -, style : [u','] -Matheson, : [u'the'] -defiantly at : [u'Lestrade'] -losing a : [u'client'] -was a : [u'loud', u'mews', u'lawyer', u'delicate', u'remarkably', u'lovely', u'quarter', u'group', u'smart', u'false', u'red', u'double', u'good', u'solicitor', u'manufactory', u'prank', u'pretty', u'lad', u'poky', u'formidable', u'long', u'royal', u'small', u'curious', u'lure', u'sign', u'teetotaler', u'tap', u'plumber', u'cashier', u'very', u'sturdy', u'considerable', u'man', u'wild', u'prisoner', u'confession', u'usual', u'common', u'widespread', u'narrow', u'third', u'certainty', u'strange', u'devil', u'young', u'close', u'dweller', u'patentee', u'singular', u'youngster', u'mass', u'paper', u'movement', u'broad', u'ring', u'middle', u'pale', u'schoolmaster', u'rush', u'fine', u'wooden', u'heavy', u'little', u'large', u'bitter', u'member', u'nipper', u'cold', u'late', u'peculiar', u'perfect', u'homely', u'cheetah', u'dummy', u'gentleman', u'deposit', u'comparatively', u'chestnut', u'rich', u'quiet', u'wonderfully', u'labyrinth', u'slight', u'cool', u'great', u'few', u'paragraph', u'king', u'moment', u'dear', u'parallel', u'light', u'previous', u'bright', u'name', u'national', u'distinct', u'plainly', u'magnificent', u'cracked', u'happy', u'struggle', u'hundred', u'disgraceful', u'brief', u'widower', u'nonentity', u'week', u'beautiful', u'giant', u'skylight', u'chance'] -everything with : [u'reference'] -good a : [u'chance', u'character', u'wife'] -me rather : [u'roughly'] -all father : [u"'"] -boards. : [u'Then'] -our police : [u'reports'] -and finely : [u'adjusted'] -encouraging to : [u'his'] -with dull : [u'persistence'] -still hot : [u'."'] -certainty. : [u'We', u'I', u'Circumstantial', 'PP'] -been trained : [u'as'] -ventilators which : [u'do'] -room of : [u'his', u'the'] -token before : [u'them'] -Road we : [u'crossed'] -seen it : [u'in'] -very pleased : [u','] -room on : [u'the'] -of newspapers : [u'until'] -evening to : [u'his'] -the veins : [u'stood'] -appointment at : [u'Halifax'] -yourself struck : [u'by'] -vulnerable from : [u'above'] -next day : [u'to', u'I', u'.', u'we'] -selfish and : [u'heartless'] -furniture save : [u'a'] -been in : [u'part', u'China', u'failing', u'Australia', u'his', u'the', u'some', u'my'] -have solved : [u'it'] -cousin Arthur : [u'is'] -bank directors : [u','] -, behind : [u'which'] -doubting. : ['PP'] -leading to : [u'the'] -any light : [u'upon'] -deductions and : [u'the', u'your'] -home after : [u'the'] -, heads : [u'thrown'] -these German : [u'people'] -the contemplation : [u'of'] -disappointment. : ['PP', u'I'] -disappointment, : [u'manifested'] -and high : [u'roof'] -' cases : [u'."'] -device for : [u'obtaining'] -nervously at : [u'the'] -cards. : ['PP'] -jerked his : [u'thumb', u'hands'] -, Baker : [u'Street'] -which gaped : [u'in'] -keeping of : [u'us'] -quite willing : [u'to'] -look cold : [u','] -revealed the : [u'same'] -1661] : [u'First'] -rather earlier : [u'than'] -this Vincent : [u'Spaulding'] -round this : [u'man'] -a mining : [u'camp'] -than himself : [u'for', u'upon', u'seems'] -found again : [u','] -"' Where : [u'could', u'are', u'to', u'have'] -full justice : [u'in', u'for'] -whimsical little : [u'incidents'] -Stripes. : ['PP'] -twilight, : [u'and'] -had pressed : [u'right'] -face! : [u'A'] -referred the : [u'case'] -He wanted : [u'her'] -important position : [u'which'] -conduct complained : [u'of'] -anyone in : [u'the'] -soothed and : [u'comforted'] -, sharp : [u'nose'] -not your : [u'husband'] -performed, : [u'viewed'] -men accompanied : [u'her'] -anyone is : [u'to'] -coppers. : [u'Only'] -head from : [u'left'] -face. : [u'And', u'At', 'PP', u'His', u'Knowing', u'I', u'Her', u'More', u'After'] -my claim : [u','] -belt of : [u'sodden', u'suburban'] -explain your : [u'process'] -considerable household : [u','] -is unusual : [u'in'] -Holmes staggered : [u'back'] -looking." : [u'Then'] -headed client : [u'carried'] -facts which : [u'may', u'have', u'are'] -has not : [u'sent', u'heard', u'done', u'been', u'a', u'had', u'troubled', u'entirely', u'already', u'detracted'] -long narrative : [u'.'] -has now : [u'fallen', u'definitely', u'been'] -great goodness : [u'to'] -yawn. " : [u'That'] -of strong : [u'character'] -, especially : [u'as', u'Thursday', u'commercial'] -" Had : [u'there', u'he'] -taking up : [u'a'] -his head : [u'sunk', u'thrust', u'with', u'?"', u'on', u'than', u'terribly', u'and', u',', u'.', u'cocked', u'. "', u'like', u'from', u'to', u'solemnly', u'against', u'the', u'before', u'again', u'gravely'] -happen if : [u'I'] -off. : [u'What', 'PP'] -our horse : [u"'", u'and'] -not our : [u'geese'] -the working : [u'of'] -many objections : [u'to'] -" Has : [u'he'] -long journey : [u'.'] -same feet : [u'."'] -were taking : [u'coffee'] -her muff : [u'and'] -keeping the : [u'Project'] -looked at : [u'it', u'the', u'his', u'me'] -past her : [u';'] -answer Holmes : [u'clapped', u'pushed'] -looked as : [u'if'] -the owner : [u'of'] -it horror : [u'stricken'] -letter had : [u'also'] -Miss Stoper : [u'.', u'was', u',', u".'", u'has'] -small wicker : [u'work'] -track for : [u'years'] -could possibly : [u'need', u'have', u'be'] -genteel place : [u','] -bee in : [u'my'] -morning before : [u','] -The streaming : [u'umbrella'] -control, : [u'she'] -control. : ['PP'] -way homeward : [u'down'] -ordinary merit : [u'.'] -moonshine is : [u'a'] -a presumption : [u'that'] -margins which : [u'lay'] -me wish : [u'to'] -either worthless : [u'or'] -two twinkled : [u'dimly'] -lay silent : [u','] -been seen : [u'upon', u'.'] -paper," : [u'explained'] -hours to : [u'something'] -gang was : [u'at'] -grip of : [u'some'] -to satisfy : [u'him', u'my'] -note for : [u'me'] -he finds : [u'it'] -out every : [u'quarter'] -You horrify : [u'me'] -a silent : [u','] -authenticity. : ['PP'] -question me : [u'upon'] -the duties : [u'of'] -whatever bears : [u'upon'] -has died : [u'within'] -to weigh : [u'very'] -and indicated : [u'a'] -night with : [u'a'] -so ashamed : [u'of'] -his professional : [u'acquaintance', u'investigations', u'skill'] -for having : [u'too', u'read', u'cleared', u'acted'] -hydraulic engineer : [u',', u'.', u'had'] -duties of : [u'the'] -said too : [u'much'] -was impossible : [u'for'] -giving you : [u'a'] -was instantly : [u'opened', u'arrested'] -earnestly, ' : [u'Drive'] -transaction which : [u'made'] -' request : [u','] -emotion. " : [u'Oh'] -we resided : [u'with'] -good host : [u','] -a peace : [u'offering'] -place is : [u'quite', u'in'] -English families : [u'and'] -rather cumbrous : [u'.'] -ought to : [u'be', u'lay', u'know', u'ask', u'have'] -beds, : [u'I'] -place in : [u'connection', u'my'] -beds. : [u'It'] -been swept : [u'away'] -from between : [u'his'] -an asylum : [u','] -my legs : [u'upon'] -the insolence : [u'to'] -dog lash : [u'hung'] -niece Mary : [u'.'] -shattered stern : [u'post'] -and burly : [u'man'] -a mystery : [u',"', u'to', u'were'] -any case : [u'within', u',', u'it'] -looking or : [u'fresh'] -wear any : [u'dress'] -all their : [u'habits'] -the lane : [u'came', u'and', u',', u'.', u'yesterday'] -. YOU : [u'AGREE'] -and glanced : [u'my', u'through', u'across', u'at', u'over'] -had enough : [u'of'] -, rapt : [u'in'] -by studying : [u'their'] -and act : [u'."'] -other answered : [u". '", u'with'] -squalid beggar : [u'and'] -is," : [u'said'] -the passers : [u'by'] -division. : [u'Within'] -division, : [u'gave'] -few paces : [u'of'] -arms akimbo : [u', "'] -journey to : [u'a'] -thought no : [u'more'] -showing me : [u'the', u'a'] -. ceases : [u'to'] -new raised : [u'from'] -basin. : ['PP'] -flecked with : [u'little'] -showing my : [u'impatience'] -very peculiar : [u'in', u'words', u'about'] -wrong and : [u'that'] -carriage came : [u'round', u'to'] -all hastening : [u'in'] -to disown : [u'it'] -woman whose : [u'anxious'] -work had : [u'been'] -remain firm : [u'upon'] -assistant counts : [u'for'] -returned towards : [u'Hatherley'] -the house : [u'shortly', u',', u'a', u'about', u'.', u', "', u'more', u'into', u',"', u'any', u'again', u'and', u'with', u'."', u'was', u'I', u'of', u".'", u"?'", u'after', u'before', u'thus', u'won', u'to', u'maid', u'for', u'where', u'?"', u'even'] -should your : [u'son'] -lead pencils : [u'and'] -her initials : [u','] -asked had : [u'I'] -singular series : [u'of'] -started, : [u'tapped'] -doing or : [u'saying'] -started. : [u'If', u'It'] -copying of : [u'the'] -manner which : [u'is'] -was beautifully : [u'defined'] -to 88 : [u'pounds'] -that bit : [u'of'] -, showed : [u'us', u'that'] -the latter : [u',', u'raise', u'days', u'knocked', u'may', u'."', u'was'] -small saucer : [u'of'] -shorter to : [u'get'] -joint upon : [u'the'] -considerable part : [u'in'] -beer should : [u'be'] -patting her : [u'forearm'] -an address : [u". '"] -imply. : [u'His'] -the sight : [u'of', u'sent', u','] -entirely upon : [u'small'] -served by : [u'affecting'] -be shown : [u'into', u'that'] -to Calcutta : [u','] -for things : [u'of'] -whether you : [u'be', u'had', u'were', u'have'] -much is : [u'fairly'] -suddenly sprang : [u'out', u'up'] -give Lucy : [u','] -been married : [u'about'] -you alone : [u'."'] -dropped some : [u'part'] -From what : [u'I', u'you'] -folk that : [u'we'] -, ask : [u'Mrs'] -am one : [u'of'] -much in : [u'error', u'a', u'the', u'society'] -of Aloysius : [u'Doran'] -lamp nearly : [u'fell'] -preposterous position : [u'in'] -to preserve : [u'a', u'it', u'my', u'this', u'impressions'] -and stormy : [u','] -guard against : [u'."', u'him'] -politics were : [u'marked'] -! Posted : [u'to'] -single man : [u'could'] -oak leaves : [u'in'] -once upon : [u'my'] -, bowed : [u'shoulders'] -The Foundation : [u'makes', u"'", u'is'] -dim lit : [u'station'] -Office, : [u'to'] -mad if : [u'I', u'it'] -save you : [u'.'] -questioning glance : [u'from', u'at'] -been suddenly : [u'dashed'] -taken out : [u'of'] -standing open : [u'.'] -says she : [u'.', u", '"] -and self : [u'poisoner'] -country looking : [u'for'] -?" cried : [u'Lestrade', u'the'] -What danger : [u'do'] -shoes, : [u'I', u'and'] -. Violence : [u'of', u'does'] -most select : [u'London'] -a date : [u',', u'during'] -crowded thoroughfare : [u'in'] -, sallow : [u'complexion'] -. Both : [u'these', u'he', u'Mr'] -loss. : [u'Your'] -loss, : [u'for'] -and written : [u'a'] -small job : [u'in', u','] -were indeed : [u'at'] -convinced from : [u'his', u'what', u'your'] -speak calmly : [u"; '"] -front to : [u'two'] -, father : [u'was'] -has only : [u'been'] -must come : [u'round', u'out', u'back'] -start and : [u'looked', u'dropped', u'stared'] -transferred the : [u'photograph'] -of," : [u'replied'] -staring about : [u'him'] -it saw : [u'.'] -any competition : [u'in'] -missing,' : [u'said'] -all trampled : [u'down'] -the breast : [u'of'] -landlady informed : [u'me'] -you going : [u'to'] -servant would : [u'stay'] -he shook : [u'his', u'out', u'himself'] -from which : [u'he', u'we', u'all', u'I', u'these', u'the', u'it'] -the wrong : [u'scent', u'side', u'if', u'which', u'by'] -be indicated : [u'by'] -such difficulties : [u'."'] -side window : [u'of'] -Wilton carpet : [u'in'] -caught a : [u'glimpse', u'hurried'] -deep set : [u','] -and walk : [u'rapidly'] -strong balance : [u'of'] -rattling away : [u'to'] -fresh information : [u'which'] -deep sea : [u'fishes'] -a locket : [u'and'] -making friends : [u'and'] -shall both : [u'come'] -hand out : [u'the'] -use to : [u'me', u'anyone', u'calculate'] -. ' So : [u'it'] -( now : [u'in'] -must fall : [u'a'] -stood out : [u'like', u'at'] -tucked his : [u'newly'] -money paid : [u'by', u'for'] -stood our : [u'horse'] -strongly marked : [u'German', u'face'] -Bakers, : [u'and'] -soon be : [u'able', u'a', u'solved'] -Hosmer. : [u'He'] -Compliance requirements : [u'are'] -turned with : [u'the'] -of unusual : [u'strength'] -read this : [u'epistle'] -not yourself : [u'think', u'look', u'at'] -open and : [u'we', u'a', u'empty'] -s maiden : [u'sister'] -felony would : [u'slam'] -been fixed : [u'for'] -and ambition : [u','] -select London : [u'hotels'] -with considerable : [u'confusion', u'success'] -IS' : [u'WITH'] -orange hair : [u','] -I wanted : [u'so', u'your'] -Holmes that : [u'this'] -buttoned right : [u'up'] -her sleeves : [u','] -central block : [u'of'] -storied, : [u'slate'] -the outside : [u',', u'air', u'of'] -extending the : [u'franchise'] -be visible : [u'to', u'from'] -fury with : [u'which'] -his friend : [u',', u'the', u'.'] -this country : [u'that'] -ve had : [u'one', u'enough', u'just'] -Where does : [u'the', u'that'] -story with : [u'a'] -this day : [u'eight', u'.'] -softly in : [u'the'] -shot one : [u'of'] -temptation of : [u'sudden'] -dignity of : [u'his'] -which may : [u'have', u'arise', u'be', u'help', u'assist', u'go'] -people up : [u'out'] -languor in : [u'his'] -us everything : [u'that'] -minutes.' : [u'It'] -paper flattened : [u'out'] -minutes." : [u'He'] -the official : [u'police', u'force', u'detective', u'version', u'Project'] -We guard : [u'our'] -upon to : [u'fathom'] -Posting Date : [u':'] -be light : [u'and'] -home all : [u'safe'] -three bedrooms : [u'opened'] -raised the : [u'alarm', u'sleepers'] -various formats : [u'will'] -truly formidable : [u'as'] -been expecting : [u'was'] -mind was : [u'so', u'far', u'now', u'soon'] -It laid : [u'an'] -hurrying swarm : [u'of'] -on outside : [u','] -man bent : [u'on'] -and forger : [u'.'] -prevent our : [u'children'] -bad effect : [u'upon'] -s notice : [u'.'] -my trifling : [u'experiences'] -and sleeve : [u'were'] -memory and : [u'my'] -in favour : [u'of'] -too limp : [u'to'] -lighting with : [u'it'] -status of : [u'my', u'any', u'compliance'] -to ascertain : [u','] -) are : [u'particularly'] -my true : [u'wedding'] -of lead : [u'foil'] -continents, : [u'you'] -funniest stories : [u'that'] -a voice : [u'which'] -driven him : [u'home'] -sweet and : [u'wholesome'] -' written : [u'beneath'] -so out : [u'of'] -may never : [u'be'] -does so : [u'here', u'when'] -upon and : [u'cannot'] -half round : [u'to'] -" Eglow : [u','] -accident, : [u'which', u'I'] -accident. : [u'I'] -cushioned seat : [u'. "'] -"' So : [u",'"] -thin volume : [u'and'] -RED HEADED : [u'LEAGUE'] -very words : [u'which'] -4. : ['PP', u'Do', u'Except', u'Information'] -man solemnly : [u'. "'] -boisterous fashion : [u','] -helped in : [u'the'] -know where : [u'it', u'to', u'the', u'he', u'her', u'they'] -; " you : [u'do'] -peculiar boots : [u'."'] -secure it : [u'.'] -indeed. : [u'And', 'PP', u'It', u'I', u'Let'] -indeed, : [u'if', u'where', u'so', u'the', u'who', u'it', u'now', u'and', u'I', u'our', u'he'] -indeed! : [u'I', u'You', u'Then'] -glimmered dimly : [u'through'] -each tugged : [u'at'] -surprised me : [u'."'] -, fluffy : [u'ashes'] -calling for : [u'my'] -have occasionally : [u'hung'] -indeed? : [u'You'] -very letters : [u'.'] -It cost : [u'me'] -rain was : [u'beating'] -beryls in : [u'the', u'it'] -must use : [u'the'] -and capable : [u'of'] -bringing help : [u'to'] -his daily : [u'seat'] -lady as : [u'this', u'we'] -If ever : [u'circumstantial'] -day upon : [u'some'] -pulled a : [u'gold', u'dirty', u'little'] -claim an : [u'income'] -person but : [u'of'] -modern," : [u'said'] -! Your : [u'Majesty', u'affection'] -practice is : [u'never', u'easier'] -along the : [u'line', u'track', u'corridor', u'passage', u'tradesmen', u'entire'] -practice in : [u'London'] -and began : [u'to'] -first was : [u'from'] -attain to : [u'.'] -well be : [u'cleared'] -church. : [u'There', u'Suddenly', 'PP', u'She'] -of body : [u'and'] -the last : [u'post', u'three', u'two', u'extremity', u'court', u'generation', u'item', u'train', u'human', u'man', u'straggling', u'six', u'few', u'witness', u'entry', u'eight', u'month', u'survivor', u'century', u'echoes', u'time', u'week'] -survivor from : [u'a'] -uncarpeted, : [u'which'] -Bohemian nobleman : [u'.'] -new eBooks : [u',', u'.'] -the elastic : [u'was', u'and'] -the edge : [u'there', u'.', u'of', u'came'] -Horner, : [u'a', u'26', u'who', u'the'] -very stupid : [u','] -put out : [u'his'] -who taketh : [u'the'] -the pretty : [u'little'] -!" He : [u'relapsed', u'flicked', u'quietly', u'held', u'rushed', u'burst', u'took', u'put', u'caught', u'tossed', u'turned'] -USE THIS : [u'WORK'] -breast and : [u'his'] -, ' Drive : [u'like'] -pressing in : [u'one'] -in May : [u','] -pal again : [u'presently'] -east, : [u'and', u'or'] -thus. : [u'You', 'PP'] -clouds in : [u'the'] -allude to : [u'my'] -customer of : [u'his'] -learned from : [u'her'] -Had she : [u'seen'] -, limps : [u'with'] -can that : [u'be'] -borrowed my : [u'money'] -lost an : [u'acute'] -expenses. : ['PP'] -must set : [u'ourselves'] -Jove, : [u'Peterson'] -read De : [u'Quincey'] -Chronicle," : [u'said'] -fact which : [u'you'] -There, : [u'now', u'but'] -Someone in : [u'the'] -nervous shock : [u','] -There' : [u's'] -ventilator, : [u'too', u'which', u'and'] -ventilator. : ['PP', u'The'] -"' Ample : [u".'"] -an imprudence : [u'to'] -imagine a : [u'more', u'man'] -I came : [u'right', u'to', u'again', u'into', u'down', u'straight', u'in', u'for', u'upon', u'home', u'upstairs'] -got before : [u'I'] -peeress. : ['PP'] -very man : [u'McCarthy', u'whom'] -century, : [u'however'] -sound became : [u'audible'] -terms. : [u'Evidence'] -villages, : [u'where'] -unacquainted with : [u'his'] -projecting bones : [u'.'] -yet his : [u'hard', u'general'] -eyes heavy : [u','] -as hard : [u'as'] -judged it : [u'best'] -befallen you : [u'."'] -my bed : [u'.', u',', u'about', u'trembling'] -terrible pain : [u','] -seated in : [u'my'] -friendship, : [u'defined'] -some words : [u'of'] -what else : [u'?"'] -be coming : [u'upon'] -think necessary : [u'.'] -can," : [u'he'] -emptied four : [u'of'] -McCarthy. : [u'He', u'If', 'PP', u'I'] -in Serpentine : [u'Avenue'] -metal in : [u'the'] -McCarthy' : [u's'] -with cigars : [u'in'] -stirred by : [u'the'] -through. : ['PP'] -coloured deeply : [u'and'] -support and : [u'donations'] -offer so : [u'pitiful'] -. Find : [u'what'] -pomposity of : [u'manner'] -worse, : [u'and'] -was little : [u'short', u'difficulty'] -your narrative : [u'.', u'."'] -very significant : [u'allusion'] -preserved her : [u'secret'] -cocktail 1s : [u'.,'] -and resolute : [u'she'] -and cast : [u'his'] -Eustace and : [u'Lady'] -their employ : [u','] -company. : [u'On', u'They'] -their father : [u'.'] -I walked : [u'round', u'down', u'behind', u'across', u'to'] -company' : [u's'] -cellar of : [u'the'] -were flirting : [u'with'] -breakfast on : [u'either'] -wiry, : [u'sunburnt'] -loftily. " : [u'He'] -Crown Inn : [u',', u'.'] -characterises you : [u'.'] -and acknowledge : [u'that'] -important," : [u'said'] -his verbs : [u'.'] -pawnbroker' : [u's'] -the fireplace : [u'cross', u'he', u'. "'] -I noted : [u','] -them when : [u'up', u'starting', u'the'] -slowly all : [u'round'] -no want : [u'of'] -that blotting : [u'paper'] -ready in : [u'a', u'case', u'waiting'] -And from : [u'a'] -admirers who : [u'have'] -infer from : [u'this'] -long was : [u'he'] -we wish : [u'your', u'you'] -felt that : [u'an', u'I', u'the', u'he', u'it', u'there', u'you'] -have told : [u'me', u'him', u'you', u'my'] -hoped to : [u'find'] -was increased : [u'by'] -for damages : [u','] -cruelly I : [u'have'] -me clutching : [u'at'] -bounded it : [u'on'] -octavo size : [u','] -will now : [u'wish'] -will not : [u'sell', u'look', u'be', u'lose', u'touch', u'believe', u'take', u'sleep', u'go', u'fit', u'appear', u'suffer', u'tell', u'say', u'prevent', u'let', u'stand', u'have', u','] -readily imagine : [u','] -a photograph : [u'and', u'which', u'but'] -being able : [u'to'] -wagons on : [u'the'] -by Arthur : [u'Conan', u"'"] -was given : [u'us', u',', u'.'] -matter probed : [u'to'] -my natural : [u'enemies', u'prey'] -my preference : [u'for'] -disappearance, : [u'however'] -It seemed : [u'altogether', u'funny', u'strange', u'to', u'likely'] -disappearance. : ['PP', u'Here'] -the conclusion : [u'that', u'of', u'and'] -ulster who : [u'had'] -pupils, : [u'all'] -, promotion : [u'and'] -notes of : [u'the', u'several'] -many as : [u'you'] -the dark : [u'incidents', u'."', u'?"', u'hollow', u'road', u'to'] -, her : [u'instinct', u'lips', u'body', u'head', u'face', u'hands', u'whole', u'eyes', u'father', u'room'] -And the : [u'man', u'papers', u'pay', u'work', u'ring', u'murderer', u'cigar', u'flap', u'lady', u'Rucastles'] -by these : [u'charming'] -steadily increased : [u','] -handing it : [u'back'] -shuddered to : [u'think'] -, heh : [u"?'"] ---'"' : [u'The', u'Tut', u'Well'] -. Circumstantial : [u'evidence'] -indeed well : [u'known'] -appears to : [u'me', u'have', u'be', u'tell'] -concise. : ['PP'] -jollification and : [u'was'] -the intrusion : [u'of'] -in wait : [u'for'] -East London : [u'.'] -like just : [u'to'] -the coat : [u',', u"'"] -) you : [u'paid'] -the beaten : [u'track'] -the Lascar : [u'stoutly', u'manager', u',', u'was', u'at'] -a hoarse : [u'yell'] -at typewriting : [u'.'] -here to : [u'the', u'avoid', u'Charing', u'ask'] -had borne : [u'the'] -butler to : [u'death'] -have to : [u'let', u'play', u'be', u'deal', u'answer', u'go', u'communicate', u'tell', u'come'] -His son : [u','] -utterly crushed : [u'.'] -back turned : [u'not', u'towards'] -her father : [u'followed', u'became', u'brought', u"'", u'married', u'thought'] -securer, : [u'but'] -securer. : [u'"'] -one positive : [u'virtue'] -II. : [u'The', 'PP', u'THE'] -they believe : [u'me'] -Arthur who : [u'took'] -floor window : [u'.'] -child in : [u'the'] -you fully : [u'into'] -away somewhere : [u'where'] -wife and : [u'I', u'of', u'the'] -accidental causes : [u".'"] -without rest : [u','] -sneer. : [u'They', u'I'] -very neat : [u'and'] -were good : [u'enough'] -check the : [u'laws', u'Project'] -is herself : [u'the'] -singular business : [u'.'] -snarled, : [u'and'] -pulled at : [u'the', u'our'] -possible solution : [u'.', u'in'] -helps us : [u'much'] -denying anything : [u'to'] -looked upon : [u'as', u'it', u'her'] -my fortune : [u'to'] -Alpha. : ['PP'] -Alpha, : [u'at', u'and'] -terror, : [u'her'] -with poor : [u',', u'ignorant'] -risen out : [u'of'] -been brought : [u'there'] -told you : [u'that', u'she', u',', u'yesterday', u'about', u'the', u'all'] -tweed with : [u'a'] -, been : [u'not', u'returning', u'intensified', u'told', u'spent'] -that here : [u'was'] -dressed vagabond : [u'in'] -accurate description : [u'of'] -laid him : [u'upon'] -she distinctly : [u'saw'] -light upon : [u'them', u'what', u'the'] -down and : [u'let', u'flattening', u'his', u'do', u'talked', u'indistinguishable', u'began'] -, who : [u'loathed', u'knew', u'is', u'seemed', u'had', u'took', u'was', u'struck', u'does', u'asked', u'were', u'have', u'used', u'made', u'believe', u'has', u'appears', u'held', u'may', u'appeared', u'thrust', u'acts', u',', u'forgot', u'struggled', u'it', u'went', u'insists', u'cares', u'lives', u'threw', u'could', u'followed', u'endeavoured', u'soon', u'might', u'would', u'probably'] -. Read : [u'it'] -into its : [u'hole', u'crop', u'place', u'den'] -use," : [u'he'] -the order : [u'of'] -so immense : [u'a'] -, why : [u'should', u'did', u'does'] -been known : [u'as'] -of Tottenham : [u'Court'] -so precious : [u'time', u'a'] -broken and : [u'blocked'] -concerned," : [u'remarked'] -at through : [u'this'] -a joy : [u'to'] -been silent : [u'all'] -a job : [u'to'] -entrance. : [u'On'] -frequently seen : [u'the', u'at'] -black muzzle : [u',', u'buried'] -a real : [u'effect'] -glance, : [u'however'] -We used : [u'always'] -was certainly : [u'surprised', u'the', u'not'] -he still : [u'held', u'refused'] -not my : [u'custom'] -fool I : [u'have'] -cab and : [u'the', u'drove', u'drive', u'go'] -You may : [u'copy', u'address', u'say', u'know', u'then', u'place', u'not', u'remember', u'rely', u'walk', u'safely', u'advise', u'set', u'as', u'go', u'imagine', u'use', u'convert', u'charge'] -into Saxe : [u'Coburg'] -runs down : [u'by', u'the', u'into'] -not me : [u'.'] -a gentle : [u'slope', u'sound'] -alternation between : [u'savage'] -I glanced : [u'down', u'at', u'in', u'back'] -fool a : [u'builder'] -one out : [u','] -of moisture : [u'on', u'upon'] -. Over : [u'the'] -any very : [u'pressing'] -soles are : [u'deeply'] -well lit : [u'dining'] -yet my : [u'nerves'] -fellow says : [u'about'] -that arise : [u'directly'] -precious coronet : [u'in'] -your pains : [u'were'] -unpleasant thing : [u'for', u'about'] -them who : [u'it'] -follow the : [u'quick', u'terms'] -is serious : [u'."', u'news'] -you beat : [u'the'] -his snuffbox : [u'of'] -this snow : [u'.'] -, together : [u'with'] -what on : [u'earth'] -Old Turner : [u'lived'] -His broad : [u'black'] -what of : [u'Irene', u'the'] -act of : [u'throwing'] -a local : [u'brewer'] -else how : [u'could'] -eBooks in : [u'compliance'] -feel dissatisfied : [u'.'] -mind that : [u'her', u'.', u'the'] -cause you : [u'.', u'no'] -deduce it : [u'.'] -was Catherine : [u'Cusack'] -providing of : [u'easy'] -few lights : [u'still'] -suddenly cut : [u'short'] -research must : [u'commence'] -mind than : [u'she'] -curtain. : ['PP'] -And where : [u'is', u'was'] -LIABLE TO : [u'YOU'] -all those : [u'who', u'birds', u'great', u'years', u'lords'] -then all : [u'must', u'was'] -his general : [u'appearance'] -fashioned manner : [u'he'] -so completely : [u'overtopped', u'.'] -Eastern training : [u'.'] -been borne : [u'away'] -thing a : [u'thing'] -him twice : [u'for'] -whistles, : [u'and'] -ran, : [u'if', u'a'] -, florid : [u'faced'] -, defined : [u'my'] -have eclipsed : [u'it'] -bandage, : [u'I'] -nothing which : [u'presents', u'aroused', u'you'] -had engaged : [u'a'] -shouted another : [u'. "'] -appeal. : ['PP'] -instant all : [u'the'] -I followed : [u'you', u'Holmes', u'after', u'them'] -his Baker : [u'Street'] -and did : [u'my', u'not'] -its size : [u'and'] -their attempt : [u'to'] -to. : ['PP', u'But', u'Perhaps', u'Problems', u'He', u'Will', u'You', u'An'] -to, : [u'for', u'at', u'or', u'the', u'viewing', u'incomplete'] -The Red : [u'headed'] -to" : [u'Sherlock', u'Captain'] -assume as : [u'a'] -studying their : [u'children'] -lash which : [u'we'] -to$ : [u'5'] -little nut : [u'for'] -strayed into : [u'.'] -that?' : [u'I', u'said'] -His wicked : [u'lust'] -that?" : [u'asked', u'His', u'I', u'She'] -have sworn : [u'it'] -the records : [u'.'] -possible detail : [u'from'] -total income : [u','] -exactly what : [u'it', u'you'] -sinned, : [u'I'] -had had : [u'so', u'ill', u'an'] -($ 1 : [u'to'] -smooth patch : [u'near'] -extinguishes all : [u'other'] -warmly on : [u'my'] -disturbed, : [u'for'] -the conventions : [u'and'] -monotony of : [u'the'] -that was : [u'how', u'given', u'even', u'not', u'a', u'unfortunate', u'important', u'the', u'for', u'all', u'enough', u'black', u'surely', u'my', u'why'] -said during : [u'our'] -family have : [u'some'] -asked when : [u'I'] -Nothing had : [u'been'] -not broken : [u'until'] -that way : [u'I', u'has', u',', u'when'] -to separate : [u'us'] -, look : [u'as', u'at'] -my cases : [u'.', u','] -to place : [u'one'] -lunch awaited : [u'us'] -reconsidered your : [u'decision'] -sea stories : [u'until'] -woman. " : [u'They'] -now upon : [u'the'] -would soon : [u'rouse'] -becoming ungovernable : [u','] -on Saturday : [u'the'] -values most : [u'.'] -that noble : [u'lad'] -the sum : [u'which', u'I', u','] -earnestly at : [u'it', u'the'] -bijou villa : [u','] -.' Written : [u'in'] -I learn : [u','] -now see : [u'the', u'how'] -his shoes : [u'. "'] -Atkinson brothers : [u'at'] -the makings : [u'of'] -such faith : [u'in'] -hope back : [u'to'] -has a : [u'soul', u'vacancy', u'brother', u'husband', u'passion', u'better', u'gentleman', u'prior', u'woman', u'sweetheart'] -but just : [u'as', u'to', u'left'] -problem presented : [u'by'] -you gather : [u'from', u'yourself'] -machine and : [u'to', u'took'] -and charitable : [u'donations'] -dark punctures : [u'which'] -noble benefactor : [u'.'] -your hair : [u'is', u'quite', u"?'", u',', u'.'] -which let : [u'in'] -which rattled : [u'up'] -whispered. " : [u'Have', u'I'] -the future : [u'.', u'career', u'only'] -could solve : [u'anything'] -distance down : [u'Threadneedle'] -get no : [u'farther'] -hard man : [u',', u',"'] -the relentless : [u','] -lock," : [u'said'] -should reach : [u'the'] -But who : [u'is'] -which my : [u'friend', u'special', u'mother', u'sister', u'son', u'employer'] -Echo, : [u'and'] -dense darkness : [u'which'] -nervous, : [u'hesitating'] -be surprised : [u'if'] -Robert," : [u'said'] -God,' : [u'he'] -quietly genial : [u'fashion'] -mistake in : [u'explaining'] -Valley, : [u'and'] -objections to : [u'any'] -Valley. : [u'He'] -"-- I : [u'picked'] -very honest : [u'fellow'] -head than : [u'to'] -having recovered : [u'her'] -rusty black : [u'frock'] -And very : [u'wet'] -her as : [u'she', u'true'] -youngster of : [u'twelve'] -The further : [u'points'] -wound upon : [u'my'] -her at : [u'the', u'home', u'a', u'such', u'that'] -shuttered up : [u'.'] -head that : [u'was'] -her for : [u'it'] -THE FULL : [u'PROJECT'] -had formerly : [u'been'] -, comfortable : [u',', u'looking'] -you and : [u'your', u'the', u'me', u'give', u'asking', u'to'] -face downward : [u'in'] -use my : [u'magnifying'] -you any : [u'on', u'information', u'pleasure', u'doubt'] -delay, : [u'but'] -delay. : ['PP', u'Its'] -at Munich : [u'the'] -sunset, : [u'however'] -find what : [u'they'] -your possession : [u'.'] -the longer : [u'time'] -night Dr : [u'.'] -official force : [u'."'] -Did I : [u'not', u'buy'] -weeks passed : [u'away', u'and'] -each other : [u'.', u'with', u'before', u'until', u',', u'in', u'as', u'since', u'up', u'within'] -bequest of : [u'the'] -said no : [u'more'] -As long : [u'as'] -ring at : [u'the'] -the month : [u". '"] -would rise : [u'to'] -offended. ' : [u'By'] -band! : [u'The', u'the'] -striking when : [u'set'] -to sound : [u'him'] -game. : [u'I'] -furnishes a : [u'step'] -fellow with : [u'outstretched'] -not even : [u'his', u'attached', u'the'] -India!' : [u'said'] -set forth : [u'en', u'in'] -a cigar : [u'holder', u'and', u',', u'after'] -streets will : [u'be'] -suggestive than : [u'it'] -taken place : [u',', u'in'] -, unbuttoned : [u'in'] -upon the : [u'scent', u'table', u'stairs', u'ground', u'deep', u'other', u'couch', u'injured', u'steps', u'palm', u'paper', u'desk', u'stair', u'fund', u'letter', u'amount', u'door', u'subject', u'mantelpiece', u'pavement', u'faded', u'flags', u'floor', u'top', u'stone', u'edge', u'barrel', u'chairman', u'platitudes', u'details', u'business', u'method', u'finger', u'case', u'shelf', u'sideboard', u'young', u'man', u'grass', u'right', u'morning', u'cushioned', u'platform', u'sofa', u'left', u'grey', u'matter', u'path', u'farther', u'trampled', u'observation', u'inner', u'lid', u'envelope', u'inside', u'night', u'roads', u'sundial', u'red', u'arms', u'results', u'linoleum', u'newcomer', u'moonless', u'current', u'back', u'windowsill', u'wooden', u'sill', u'second', u'window', u'premises', u'mud', u'rug', u'fly', u'corner', u'previous', u'seat', u'lining', u'face', u'bridge', u'little', u'felt', u'bird', u'centre', u'charge', u'22nd', u'day', u'dressing', u'slab', u'shoulder', u'few', u'lawn', u'white', u'pillow', u'bed', u'iron', u'violent', u'first', u'side', u'position', u'outer', u'arm', u'very', u'security', u'fire', u'point', u'heels', u'hall', u'scene', u'logic', u'crime', u'preceding', u'books', u'page', u'road', u'drawing'] -shutter half : [u'open'] -windowsill, : [u'and'] -both Toller : [u'and'] -Ned in : [u'Auckland'] -a precursor : [u'of'] -by cocaine : [u'and'] -For the : [u'rest', u'love'] -twenty years : [u'that', u',', u'old', u'proof'] -mere whim : [u'at'] -sitting still : [u'.'] -or indirectly : [u'from'] -a shadow : [u'pass', u','] -" Extremely : [u'so'] -the tangled : [u'red'] -in before : [u'he'] -description tallied : [u'in'] -because she : [u'had'] -merely in : [u'order'] -licensed works : [u'that'] -has nothing : [u'to'] -wicker work : [u'chairs'] -solved, : [u'I', u'for'] -and they : [u'like', u'are', u'have', u'must', u'suggested', u'subdued'] -would pay : [u'such', u'ten'] -my coil : [u'of'] -questioning gaze : [u','] -island of : [u'Uffa', u'Mauritius'] -and then : [u'he', u'to', u'diving', u',', u'down', u'off', u'conducted', u'afterwards', u'leaving', u'made', u'wandered', u'turned', u", '", u"'", u'quick', u'suddenly', u'look', u'vanished', u'blotted', u'retire', u'settled', u'rubbed', u'only', u'at', u'withdraw', u'ran', u'all', u'I', u'the', u'Frank', u'began', u'returned', u'.', u'closing', u'had', u'composed', u'Mr', u'turn', u'up', u'a'] -like nose : [u','] -love matter : [u','] -beautiful?" : [u'I'] -I threw : [u'up', u'off', u'open', u'all', u'myself'] -you in : [u'ten', u'your', u'a', u'five', u'the', u'that', u'an', u'reference', u'yours', u'forming', u'money', u'writing'] -man; " : [u'it'] -the features : [u'.'] -glared at : [u'the'] -two slabs : [u'of'] -becomes the : [u'badge'] -things from : [u'another'] -her stepfather : [u'do', u'was', u'hastily'] -itself a : [u'monotonous'] -deep. : [u'It'] -deep, : [u'so'] -moist was : [u'the'] -chased each : [u'other'] -Holmes without : [u'opening'] -was where : [u'the'] -answered only : [u'in'] -The point : [u'about', u'is'] -remember that : [u'she', u'I', u'it', u'not', u'our', u'the'] -the loungers : [u',', u'in'] -many minor : [u'ones'] -salary do : [u'you'] -me are : [u'.'] -Some states : [u'do'] -since breakfast : [u'."'] -ten o : [u"'"] -sheets in : [u'a'] -the initials : [u'of', u"'", u'"', u'are'] -much stronger : [u'if'] -presented which : [u'may'] -little good : [u'with', u'Berkshire'] -of disgraceful : [u'brawls'] -Hudson has : [u'been', u'had'] -not answer : [u'forever'] -the drink : [u','] -up mud : [u'in'] -seen walking : [u'into', u'with'] -on an : [u'evening'] -At three : [u'o'] -save young : [u'McCarthy'] -recognise even : [u'the'] -massive boxes : [u'.'] -you again : [u'this', u'."'] -and Armour : [u'and'] -on as : [u'unconcerned'] -little trying : [u'to'] -had already : [u'noticed', u'been', u'begun', u'made', u'spoken'] -father of : [u'the'] -the means : [u'you', u'of'] -alarm. : [u'Slipping', u'If'] -raise a : [u'scandal'] -alarm, : [u'she', u'however', u'and'] -84116, ( : [u'801'] -were opposed : [u'to'] -greater than : [u'I'] -and afterwards : [u'under', u'returned', u'I', u'from'] -cunning as : [u'his'] -much about : [u'it'] -seeing that : [u'there', u'I', u'he'] -a sheet : [u'of', u','] -a sheep : [u'in'] -lamp beating : [u'upon'] -BAND On : [u'glancing'] -times during : [u'our'] -a winding : [u'stair'] -lower buttons : [u'out'] -be particularly : [u'so'] -corresponds with : [u'the'] -He snatched : [u'it'] -sheet he : [u'pointed'] -expense, : [u'for'] -too transparent : [u','] -the visit : [u'to'] -of complaint : [u'against', u'can'] -case?" : [u'he'] -fringe of : [u'her', u'little', u'grass', u'the'] -seems that : [u'there', u'it', u'a'] -.' With : [u'that'] -one idea : [u'of'] -look out : [u'of'] -they say : [u','] -bloody deed : [u'.'] -help preserve : [u'free'] -I woke : [u'one'] -Saturday night : [u'for'] -breadth seemed : [u'to'] -better for : [u'both'] -abjure his : [u'former'] -mortals. : [u'When'] -thrust his : [u'long'] -approach this : [u'case'] -Prima donna : [u'Imperial'] -without his : [u'collar'] -with someone : [u'at'] -which lured : [u'her'] -nor artistic : [u'."'] -of heather : [u'tweed'] -for walks : [u','] -peculiar yellow : [u'band'] -little commands : [u'my'] -office. : [u'There', 'PP'] -or certificates : [u'?"'] -office, : [u'or', u'and', u'the', u'got', u'my', u'which'] -!'" : [u'Away', u'But', u'And', u'This'] -Saturday the : [u'manager'] -envelope upon : [u'the'] -bed this : [u'morning'] -those exalted : [u'circles'] -office? : [u'No'] -more before : [u'I'] -But among : [u'them'] -which bind : [u'two'] -for blackmailing : [u'or'] -thumb. : [u'Ha', u'The'] -thumb, : [u'instead', u'were', u'and', u'or', u'care'] -he refused : [u'to'] -ran he : [u'jerked'] -fixed upon : [u'the', u'me'] -to thoroughly : [u'understand'] -The bedrooms : [u'in'] -mystery clears : [u'gradually'] -city in : [u'a'] -confederate Cusack : [u'and'] -tm work : [u'.', u'(', u'in', u', (', u','] -and finger : [u'were'] -5: : [u'15', u'14'] -placed himself : [u'in'] -meantime is : [u'to'] -to happen : [u','] -5, : [u'000'] -me have : [u'the', u'whatever', u'a', u'200', u'it'] -, clapped : [u'my'] -price of : [u'the'] -rushed fiercely : [u'forward'] -collar. : [u'The'] -to introspect : [u'.'] -collar, : [u'black'] -leave so : [u'precious'] -return for : [u'my'] -wrung together : [u". '"] -a gravel : [u'drive'] -be careful : [u','] -of colour : [u'they', u'had', u'into', u'upon'] -lamp. : ['PP'] -abandoned Holmes : [u'in'] -lamp, : [u'and', u'while', u'but', u'the'] -shut and : [u'locked'] -loving couple : [u'at'] -immense faculties : [u'and'] -seems, : [u'from', u'upon', u'made'] -the sideboard : [u',', u'."'] -still meeting : [u'in'] -What have : [u'we', u'I', u'you'] -were over : [u','] -and inference : [u'.'] -bulky boxes : [u'driving', u'which'] -box now : [u'and'] -this typewritten : [u'letter'] -his business : [u'.', u'address', u'met', u'affairs'] -willing to : [u'come', u'have', u'fill', u'undergo', u'give'] -may advise : [u'me'] -place implicit : [u'reliance'] -he misses : [u'me'] -returning it : [u'to'] -her ever : [u'since'] -he missed : [u'his'] -in rough : [u'scenes'] -Breckinridge; : [u'but'] -thinking so : [u',"'] -coat faced : [u'with'] -of considerably : [u'more'] -considered artistic : [u'.'] -looked hard : [u'at'] -deeply stirred : [u'by'] -was used : [u'for', u'by', u".'", u'to'] -the disposition : [u'of'] -the bedside : [u'of'] -upon record : [u'where', u'before', u',', u'that'] -pouring down : [u'my'] -work in : [u'the', u'any', u'a', u'its'] -and stiff : [u'."', u','] -They often : [u'vanish'] -was surprised : [u'to'] -a crisis : [u'."'] -banker impatiently : [u', "'] -of strangers : [u'having'] -law should : [u'have'] -trouble upon : [u'you'] -running hard : [u','] -companion, : [u'looking', u'to', u'lithe', u'and', u'had'] -companion. : ['PP', u'We', u'Then'] -. Even : [u'after', u'his', u'when', u'a', u'my', u'though'] -haired and : [u'smooth'] -companion' : [u's'] -his bare : [u'throat', u'ankles', u'feet'] -of looking : [u'personally', u'outside'] -ask advice : [u','] -are never : [u'beaten', u'sold', u'likely'] -several places : [u'.', u','] -of considerable : [u'self', u'interest', u'value'] -disguise the : [u'whiskers'] -or re : [u'use'] -edge. : [u'In', u'A'] -Archie, : [u'jump'] -end as : [u'to'] -pew on : [u'the'] -And did : [u'you'] -he returned : [u'to', u'me', u','] -small ones : [u'.'] -s twenty : [u'six'] -dark eyes : [u','] -need it : [u'.'] -most intimate : [u'personal'] -PARAGRAPH 1 : [u'.'] -any region : [u'within'] -wives living : [u'.'] -strikes it : [u','] -cylinder. : [u'He'] -assisting in : [u'the'] -a funny : [u'one'] -call you : [u'and', u'a'] -party is : [u'complete', u'still'] -she swept : [u'silently'] -me such : [u'complete'] -an acquaintance : [u',', u'with'] -this terrible : [u'misfortune'] -padlocked at : [u'one'] -little place : [u'near', u'is'] -hands, : [u'my', u'and', u'spoke', u'rushed'] -hands. : ['PP', u'I', u'Let', u'But', u'He', u'She'] -a standing : [u'question'] -their reach : [u'."'] -struggled with : [u'him'] -bedroom wall : [u'has'] -go upon : [u'.'] -opened your : [u'bureau'] -find another : [u'such'] -s incisive : [u'reasoning'] -, dropped : [u'his'] -, calling : [u'loudly', u'for'] -night in : [u'your', u'my'] -it happened : [u',', u'."'] -from donors : [u'in'] -fog," : [u'said'] -are wandering : [u'rather'] -been deluded : [u'when'] -night is : [u'over'] -heavy roads : [u',', u'?"'] -night it : [u'was'] -they brought : [u'you'] -Robert St : [u'.'] -lawn into : [u'the'] -my linen : [u','] -of Openshaw : [u'from', u','] -What becomes : [u','] -up louder : [u'and'] -jumped in : [u'before'] -The group : [u'of'] -the inquest : [u'on', u',', u'.'] -noiseless fashion : [u'which'] -our advertisement : [u'."'] -two forefingers : [u'between'] -purple plush : [u'that', u'at'] -friend tore : [u'it'] -t refuse : [u'a'] -me or : [u'anyone'] -There are : [u'three', u'fourteen', u'several', u'one', u'none', u'a', u'windows', u'small', u'rumours', u'no', u'not', u'thirty', u'grounds', u'only'] -explanation save : [u'that'] -, high : [u'nosed'] -the vault : [u'.'] -Majesty must : [u'pay'] -for gold : [u'kindled'] -branch of : [u'the', u'one'] -are redistributing : [u'or'] -lies the : [u'problem'] -twitch brought : [u'away'] -I thank : [u'your', u'you'] -me on : [u'the', u'a', u'whom', u'Christmas', u'every'] -fur, : [u'completed'] -British peeress : [u'.\'"'] -that door : [u'locked', u'very'] -formidable an : [u'antagonist'] -the converse : [u'is'] -formidable as : [u'when'] -marriage. : ['PP', u'She', u'Shortly', u'His', u'It', u'Was'] -reason behind : [u'."'] -its wants : [u','] -Well then : [u',', u',"'] -from looking : [u'upon'] -liability to : [u'you'] -sole, : [u'not', u'my'] -perceive that : [u'all', u'in'] -1000 pounds : [u'for', u'is', u'a', u'.', u'apiece'] -intruding. : [u'I'] -s prediction : [u'was'] -not sleep : [u'easy', u'that'] -not far : [u'from'] -sunshine. : [u'In'] -suggest a : [u'better'] -minor ones : [u','] -from every : [u'point'] -The richer : [u'pa'] -methods. : [u'What', 'PP'] -methods, : [u'which', u'that'] -so in : [u'order', u'ten', u'this'] -and America : [u'to'] -witness. : ['PP', u'Inspector'] -so if : [u'I', u'you'] -presumably well : [u'to'] -.' A : [u'Frenchman'] -her. ' : [u'You'] -Affairs. : [u'They'] -ear again : [u'so'] -book upon : [u'his'] -his identity : [u'?"'] -so it : [u'would', u"'", u'matters', u'was'] -muff and : [u'began'] -silently into : [u'the'] -of bodies : [u'lying'] -packed and : [u'my'] -been buried : [u'in'] -of receiving : [u'it'] -As regards : [u'your'] -centre by : [u'the'] -fists and : [u'sticks'] -name which : [u'I', u'is'] -family misfortune : [u'like'] -land here : [u','] -the spoils : [u'of'] -know why : [u'not', u'you', u'it'] -hat drawn : [u'over'] -Aberdeen some : [u'years'] -in Tottenham : [u'Court'] -my niece : [u';'] -pleasure than : [u'in'] -pencil over : [u'here'] -ever been : [u'heard', u'to'] -/ he : [u''] -cordially. : ['PP'] -a test : [u'tube'] -at Baker : [u'Street'] -your decision : [u'.'] -so secret : [u'.'] -we hired : [u'a'] -, " you : [u'can', u'have', u'are', u"'", u'thieves'] -up from : [u'the', u'below', u'him', u'behind'] -pulling at : [u'the'] -mine," : [u'said', u'he'] -the Leadenhall : [u'Street'] -only one : [u'male', u'point', u'which', u',', u'wing', u'."', u'matter', u'possible', u'thing', u'in', u'feasible'] -next act : [u'.'] -bolted. : [u'Well'] -must begin : [u',"'] -been overseen : [u'by'] -So it : [u'is', u'appears'] -going on : [u'outside', u',', u'there', u'a', u'behind'] -room rushed : [u'upstairs'] -brougham. : ['PP'] -glancing down : [u'to'] -a weariness : [u'and'] -guilt; : [u'but'] -since then : [u'to', u'.', u'he', u','] -soaked in : [u'water'] -magistrates at : [u'Ross'] -. Together : [u'we'] -at recovering : [u'them'] -guilt. : ['PP'] -health, : [u'it', u'nothing', u'I'] -very great : [u'error', u'distance', u'astonishment'] -usually preceded : [u'by'] -I dashed : [u'some'] -egotism which : [u'I'] -anyone else : [u'?', u'.', u'to', u'in', u'while', u'."'] -destroyed. : [u'On', 'PP'] -tallied in : [u'every'] -for news : [u'of'] -into this : [u'dark', u'case', u'suite'] -Gutenberg are : [u'removed'] -no sooner : [u'out'] -more in : [u'my', u'these'] -burned by : [u'your'] -, ' that : [u'is', u'I'] -trout in : [u'the'] -still bleeding : [u','] -laughing at : [u'the'] -upstairs and : [u'locked'] -twitter. " : [u'I'] -beings all : [u'jostling'] -songs and : [u'shouts'] -natural prey : [u'.'] -can establish : [u'his'] -in Scotland : [u'one'] -myself. : [u'The', u'Male', 'PP', u'Kindly', u'I', u'And', u'Ha', u'My', u'Bradstreet', u'In', u'Crime'] -myself, : [u'though', u'I', u'and', u'when', u'with', u'screaming'] -certainly have : [u'been', u'a'] -Oh,' : [u'said', u'says'] -s preserves : [u'.'] -myself; : [u'then'] -nodded again : [u'.'] -no light : [u'?"'] -a much : [u'more'] -the dim : [u'veil', u'light'] -lawn. : [u'That', u'I', 'PP'] -no trace : [u'of'] -dated at : [u'midnight'] -raised from : [u'a'] -have overtaken : [u'me'] -quote Thoreau : [u"'"] -or Refund : [u'"'] -the accepted : [u'explanation'] -by questioning : [u'you'] -profited by : [u'the'] -me into : [u'a'] -by paint : [u'.'] -of investigation : [u'which'] -I satisfy : [u'myself'] -a lurid : [u'spark'] -leaning back : [u'with', u'in'] -bag in : [u'which', u'his'] -labyrinth of : [u'gas', u'small', u'an'] -peculiar in : [u'his'] -its effect : [u'is'] -look into : [u'just', u'it', u'any', u'the'] -, grinning : [u'face'] -in avoiding : [u'the'] -where her : [u'husband'] -well justified : [u',"'] -not confide : [u'it'] -bill open : [u','] -Holmes demurely : [u'; "'] -field which : [u'slopes'] -again and : [u'put', u'proposed', u'again'] -in truth : [u','] -carefully and : [u'asked'] -"' And : [u'what', u'he', u'the', u'how', u'be', u'not', u'a', u'my'] -many have : [u'aspired'] -be said : [u'or'] -observed Mr : [u'.'] -his point : [u'of'] -mother when : [u'she'] -placed his : [u'shiny', u'elbows', u'cuttings', u'finger'] -means. : ['PP', u'My'] -ending in : [u'Kent'] -were waddling : [u'about'] -to Covent : [u'Garden'] -it shorter : [u'to'] -bewilderment. : [u'Then'] -My face : [u'lengthened'] -hardly finished : [u'when'] -Lestrade was : [u'staying'] -with these : [u'details', u'dear', u'requirements'] -initials are : [u','] -occurred on : [u'the'] -many tons : [u'upon'] -caught his : [u'eye'] -full Project : [u'Gutenberg'] -only what : [u'had'] -was cocked : [u'upward'] -son and : [u'daughter'] -you returned : [u'on'] -pass? : [u'We'] -4557 Melan : [u'Dr'] -Montague Place : [u'upon'] -over elastic : [u'sided'] -Honoria Westphail : [u','] -energy can : [u'save'] -encompass me : [u'."'] -their conundrums : [u'."'] -through generations : [u','] -A day : [u'which'] -advertisement, ' : [u'you'] -and springing : [u'down'] -H. : [u'for', u'B', u'M', u'Moulton'] -stones. : [u'A', 'PP'] -so fine : [u".'"] -value even : [u'more'] -starting upon : [u'their'] -my attentions : [u'to'] -used if : [u'you'] -now devouring : [u'."'] -put less : [u'weight'] -used in : [u'producing', u'the'] -three pipes : [u','] -millionaire. : [u'Miss'] -pea jacket : [u'and', u'.'] -millionaire, : [u'Ezekiah'] -, Watson : [u',', u'.', u',"', u'?', u'and', u'?"', u'that'] -used it : [u'before'] -for air : [u','] -as an : [u'actress', u'ornament', u'Indian', u'old', u'amateur', u'intellectual'] -to Baker : [u'Street'] -Obviously they : [u'have'] -strong reason : [u'for', u'behind'] -sensation grew : [u'less'] -pass, : [u'I'] -for about : [u'ten'] -cheerily. " : [u'My'] -returns at : [u'seven'] -advice which : [u'I'] -know Peterson : [u','] -escorted home : [u'in'] -), and : [u'Lady'] -and glossy : [u'."', u'when'] -hold in : [u'my'] -said Jabez : [u'Wilson'] -son struck : [u'Sir'] -it arrived : [u'."'] -find their : [u'way'] -the glare : [u'."', u'of'] -and examining : [u'with'] -hurry?" : [u'asked'] -and placed : [u'his'] -speeding eastward : [u'in'] -force a : [u'small'] -three English : [u'counties'] -her husband : [u',', u'by', u"'", u'was', u'out', u'looking', u'at', u'.', u'and'] -s life : [u'in', u','] -far in : [u'satisfying'] -not only : [u'a', u'what', u'hear', u'are', u'the', u'all', u'proficient', u'my', u'to', u'of'] -McCarthy left : [u'his'] -four. : [u'I'] -redder than : [u'mine'] -it had : [u'ever', u'left', u'been', u'ended', u'come', u'indeed', u'dropped', u'not', u',', u'died', u'gone', u'ceased'] -allowed to : [u'remain', u'each', u'pay', u'go'] -conviction for : [u'robbery'] -1100 pounds : [u','] -only deduce : [u'that'] -flying away : [u'after'] -a fish : [u'monger'] -the world : [u'has', u'.', u'."', u',', u'did', u'to', u'I', u".'"] -muster all : [u'our'] -along wonderfully : [u'.'] -a suggestive : [u'one'] -For half : [u'an'] -books bearing : [u'upon'] -the impossible : [u','] -congratulate you : [u'once', u'."', u'warmly', u'again'] -get more : [u'worn'] -Burnwell should : [u'gain'] -Except yourself : [u'I'] -grip was : [u'not'] -deep mystery : [u'through'] -colonel was : [u'a'] -he frequently : [u'indulged'] -some wine : [u'and'] -story of : [u'the'] -kitchen door : [u',', u'.'] -quite follow : [u'me', u',"', u'you'] -had stated : [u'in'] -years the : [u'organisation'] -clean black : [u'frock'] -reward you : [u'.', u'for'] -pleasant smell : [u'of'] -from America : [u'.', u'with', u'because'] -soon, : [u'as', u'however'] -. Without : [u'a'] -apply. : ['PP'] -persistence. : [u'With'] -apply, : [u'Mr'] -examination traces : [u'of'] -yourself as : [u'to'] -happening on : [u'the'] -yourself at : [u'fault'] -son of : [u'the', u'Mr'] -lay listening : [u'with'] -up on : [u'the'] -limp; : [u'but'] -your house : [u'.', u'in', u'last'] -learned of : [u'the'] -up of : [u'the', u'Irene', u'this'] -is wanting : [u'in'] -to admire : [u'the'] -to puzzle : [u'it'] -us that : [u'the', u'I'] -for five : [u'inches', u'."', u'minutes', u'years'] -mine apply : [u'for'] -things in : [u'a'] -are well : [u'up'] -off colour : [u'.'] -suit me : [u'very', u'.'] -road to : [u'the'] -clearer proofs : [u'before'] -whispered, : [u'jerking'] -" No : [u'legal', u'sign', u',', u'?"', u'except', u'.', u';', u'good', u'bad', u'."', u'crime', u'more', u'doubt'] -copyright holder : [u'),', u',', u'.', u'found'] -shipwreck if : [u'I'] -the muscles : [u'are'] -an action : [u'likely', u'for'] -turn where : [u'I'] -trunk, : [u'turned'] -trunk. : [u'One'] -my patient : [u', "', u'. "', u'.'] -He travels : [u'for'] -Draw your : [u'chair'] -' For : [u'Mrs'] -unfenced, : [u'the'] -lane so : [u'vile'] -deep upon : [u'the'] -left in : [u'possession', u'my', u'darkness'] -, legs : [u','] -see who : [u'will', u'agrees'] -an uncertain : [u'foot'] -pretty well : [u'with'] -in convincing : [u'you'] -Turner was : [u'apparently'] -the years : [u"'", u'that', u'of'] -a moustache : [u'and'] -see nothing : [u'.', u'which', u',"', u'in'] -; ' you : [u'have'] -own save : [u'the'] -distribute copies : [u'of'] -could hardly : [u'have', u'imagine', u'wander', u'pass', u'get', u'believe', u'resist', u'tell'] -morose and : [u'disappointed', u'silent'] -key when : [u'someone'] -afterwards we : [u'were'] -posted with : [u'permission', u'the'] -loud thudding : [u'noise'] -Neville St : [u'.', u'.--'] -vilest murder : [u'trap'] -. " Oscillation : [u'upon'] -the love : [u'of', u'and'] -face the : [u'weight', u'matter', u'banker'] -knitted brows : [u'and'] -my headings : [u'under'] -den when : [u'I'] -sins have : [u'overtaken'] -is used : [u'between'] -who first : [u'finds', u'called'] -Star' : [u'was', u'had'] -clink of : [u'horses', u'our'] -we could : [u'and', u'fly', u'see', u'find', u'bring', u'command', u'hear', u'easily', u'define'] -morrow, : [u'and', u'about', u'only'] -get into : [u'the', u'any'] -morrow. : [u'As', 'PP', u'No', u'It'] -and son : [u'.'] -talked to : [u'her'] -settle with : [u'Mr'] -health for : [u'some'] -chair now : [u'with'] -repeated blows : [u'of'] -place," : [u'said'] -have aspired : [u'to'] -A marriage : [u'has'] -tales. : ['PP'] -was silent : [u'and', u'once'] -considerable interest : [u'in', u',"'] -give. : [u'He'] -about two : [u'o'] -retorted upon : [u'me'] -in locations : [u'where'] -return, : [u'so'] -every businesslike : [u'precaution'] -return. : ['PP', u'The', u'We'] -right there : [u'before', u';'] -approaching wedding : [u'.'] -And also : [u'with'] -his arm : [u'.', u'. "'] -the settee : [u',"'] -started for : [u'the'] -looking down : [u'at', u'the'] -of The : [u'Times', u'Adventures'] -better lined : [u'waistcoat'] -ink? : [u'Well'] -found little : [u'enough'] -her then : [u'?"'] -marked as : [u'such'] -While we : [u'cannot'] -ink, : [u'pens', u'and', u'which'] -the inferences : [u',"'] -ink. : [u'She', 'PP'] -a sensitive : [u'instrument'] -beaten four : [u'times'] -hauling after : [u'him'] -sister Julia : [u'and'] -lounging in : [u'his'] -a smarter : [u'assistant'] -and ran : [u'in', u'with', u'down', u'thus', u'ran', u'out'] -did his : [u','] -to replace : [u'it', u'them', u'his'] -sir!" : [u'he', u'said'] -an affaire : [u'de'] -left of : [u'me', u'the'] -her assistance : [u'.'] -merely shared : [u'with'] -miserable weather : [u'and'] -am baffled : [u'until'] -suggest anything : [u'?"'] -sell. : ['PP'] -a shabby : [u'fare'] -now returned : [u'to'] -Thick clouds : [u'of'] -loose. : [u'He'] -, Pall : [u'Mall'] -break out : [u'?"'] -and may : [u'read', u'be', u'not'] -, endeavouring : [u'to'] -very seedy : [u'and'] -only found : [u'in'] -I once : [u'saw'] -as pressing : [u'in'] -I repeat : [u'to'] -" Bought : [u'."'] -a brilliantly : [u'scintillating'] -should perch : [u'behind'] -year 1878 : [u','] -national possession : [u','] -idea. : [u'The', 'PP', u'For', u'And'] -idea, : [u'however'] -s curiosity : [u'I'] -But he : [u"'", u'could', u'is', u'must', u'might', u'has'] -credit at : [u'the'] -killed. : [u'I'] -killed, : [u'however'] -out when : [u'he'] -has seen : [u',', u'very', u'too'] -to claim : [u'or', u'me', u'jumping'] -And about : [u'his'] -evidence as : [u'follows', u'to'] -country under : [u'a'] -Would you : [u'mind', u'?', u'give'] -surgeon and : [u'Mrs'] -security of : [u'their'] -speak loudly : [u'.'] -so dear : [u'to'] -risk the : [u'loss', u'presence'] -be best : [u'for', u'to'] -uncle' : [u's'] -brute to : [u'trace'] -Their reasons : [u'for'] -." The : [u'note', u'Count', u'man', u'stout', u'portly', u'road', u'old', u'young', u'words', u'prisoner', u'salesman', u'little', u'lady', u'building', u'station', u'official', u'name', u'banker', u'Black'] -and refreshed : [u'his'] -uncle, : [u'however', u'and'] -quite separate : [u'and'] -my dealings : [u'with'] -a stain : [u'.'] -OR REFUND : [u'-'] -. Simon : [u'marriage', u'and', u'.', u',', u'has', u'(', u',"', u'glanced', u'said', u'shrugged', u'shook', u'to', u'."', u'was', u'is', u'sank', u'bitterly', u'came', u'alone', u'had', u"'", u'in', u'very'] -his flight : [u','] -countryside, : [u'away'] -countryside. : ['PP'] -a coloured : [u'shirt'] -I on : [u'you'] -There you : [u'must', u'are'] -drama. : [u'As'] -thrown at : [u'him'] -Warsaw yes : [u'!'] -All the : [u'afternoon', u'way'] -has frightened : [u'you'] -immense ostrich : [u'feather'] -imminent danger : [u'.'] -bob of : [u'greeting'] -evident that : [u'he', u'with'] -familiar with : [u'it'] -he slipped : [u'the'] -behind which : [u'sat', u'I'] -the nearest : [u'chair', u','] -Knowing that : [u'my'] -to remain : [u'neutral', u'single'] -those years : [u'of'] -rooms 8s : [u'.,'] -weird business : [u'of'] -gaunter and : [u'taller'] -him into : [u'the', u'my', u'custody', u'your'] -Count shrugged : [u'his'] -generations. : [u'To'] -pains. : [u'Nothing'] -dozen times : [u'from'] -had emerged : [u'from', u'in'] -face attracted : [u'much'] -prove their : [u'authenticity'] -poor folk : [u'who'] -drew it : [u'out', u'from'] -nautical appearance : [u','] -or dreaming : [u'.'] -came down : [u'just', u'into', u'on', u'from', u'.', u'the', u'."', u'to', u','] -drew in : [u','] -Albert Dock : [u'and'] -" for : [u'it', u'the'] -the utmost : [u'use', u'coolness', u'certainty'] -what my : [u'wife'] -uncommon thing : [u'for'] -corridor. : [u'Do', u'As', u'Twice'] -corridor, : [u'which', u'while'] -greatest attention : [u'.'] -peculiar construction : [u'of'] -our hearts : [u','] -rather than : [u'of', u'the', u'have', u'in', u'from', u'a', u'my', u'upon'] -be most : [u'important', u'happy'] -plunging in : [u'his'] -wander. : ['PP'] -Jones clutched : [u'at'] -solid grounds : [u'for'] -shone on : [u'the'] -difference between : [u'the'] -a prisoner : [u',', u'among'] -connection. : ['PP'] -are!" : [u'said'] -his whole : [u'Bohemian', u'appearance', u'debts', u'life'] -able, : [u'by'] -ever showed : [u'any'] -uncontrollable in : [u'his'] -prying its : [u'bill'] -wish anything : [u'better'] -the facts : [u'are', u'.', u'."', u'connected', u',', u'which', u'of', u'might', u'upon', u'should', u'slowly', u'came', u'before', u'as'] -his, : [u'but', u'Major', u'who'] -his. : [u'And', 'PP'] -in following : [u'out', u'Holmes'] -geese to : [u"?'"] -were hardly : [u'from', u'out'] -copying out : [u'the'] -ran round : [u','] -my guard : [u'against'] -LICENSE PLEASE : [u'READ'] -disappeared so : [u'suddenly'] -may go : [u'to', u'on'] -our toast : [u'and'] -himself not : [u'only'] -6. : [u'You', u'INDEMNITY'] -dying reference : [u'to'] -my most : [u'successful', u'intimate'] -was amused : [u'by', u'."'] -s processes : [u'. "'] -cashier in : [u'an'] -," drawled : [u'Holmes'] -half pounds : [u'since'] -t want : [u'to'] -about outdoor : [u'work'] -hide anything : [u'.'] -tell me : [u'that', u'in', u'what', u'the', u'if', u'where', u',', u'.', u'as', u'whether', u'to', u'of', u'a'] -hunt. : ['PP'] -truth. : [u'It', 'PP', u'At', u'Now'] -doctor was : [u'furnished', u'kind'] -slipper! : [u'Smack'] -You said : [u'that', u'it', u'ten'] -which the : [u'King', u'mind', u'unfortunate', u'case', u'body', u'reason', u'man', u'cripple', u'three', u'chamber', u'doctor', u'light', u'moon', u'phrase'] -been at : [u'some', u'the', u'work'] -under a : [u'bonnet', u'lamp', u'heavy', u'flag'] -been as : [u'blind', u'good'] -have suspected : [u'a'] -Auckland. : [u'It'] -lieu of : [u'a'] -ll lock : [u'it'] -glancing at : [u'a', u'the', u'them'] -brick, : [u'Irish'] -been an : [u'axiom', u'enclosure', u'evil', u'interesting', u'understanding'] -were two : [u'of', u'barred'] -days of : [u'September', u'free', u'our', u'my', u'the', u'receipt', u'receiving'] -Here we : [u'are', u'may'] -squeezed out : [u'the'] -laid me : [u'on'] -confession, : [u'and'] -wanted by : [u'this'] -, ne : [u'ADLER'] -may drive : [u'back'] -, no : [u'doubt', u',', u',"', u'hair', u'two', u'active', u'peace', u'forgetfulness', u'footmarks', u'robbery', u'record', u'!', u'water', u';', u'.', u'one', u".'"] -editions will : [u'replace', u'be'] -away and : [u'told', u'explain', u'never'] -Serpentine Avenue : [u',', u'.'] -really impossible : [u'for'] -the deaths : [u'of'] -generations who : [u'had'] -should much : [u'prefer'] -extremely improbable : [u'that'] -your good : [u'health', u'sense', u'man'] -now the : [u'spell', u'holder', u'head'] -notice the : [u'carriage'] -was unconscious : [u','] -and unkempt : [u','] -person. : [u'Yet', u'I', 'PP'] -last generation : [u'.'] -person, : [u'wrote'] -an engine : [u'could'] -the Inner : [u'Temple'] -that photograph : [u'."'] -until she : [u'disappeared', u'got'] -engine at : [u'work'] -where?" : [u'shouted'] -ominous words : [u'with'] -it from : [u'Sherlock', u'the', u'her', u'every', u'eye', u'his', u'its'] -road in : [u'which'] -arresting Boone : [u'instantly'] -sides, : [u'and'] -position forever : [u'.'] -garments had : [u'not'] -who wishes : [u'to'] -" So : [u'I', u'far', u'they', u'much', u'it'] -as bright : [u'as'] -to my : [u'conduct', u'friend', u'surprise', u'face', u'view', u'memory', u'work', u'taste', u'house', u'client', u'medical', u'brother', u'story', u'heart', u'bell', u'wife', u'astonishment', u'children', u'real', u'horror', u'confidant', u'relief', u'notes', u'attempt', u'years', u'sister', u'ear', u'thumb', u'lips', u'interest', u'own', u'companions', u'kicks', u'feet', u'very', u'poor', u'partner', u'illustrious', u'household', u'room', u'bedroom', u'rooms', u'highly', u'bed', u'dear', u'young', u'tradesmen', u'lodgings', u'eyes', u'disappointment'] -doubt that : [u'he', u'you', u'we', u'the', u'she', u'it', u'this', u'I', u',', u'is'] -who wished : [u'to'] -strong of : [u'limb'] -to me : [u'to', u'."', u',"', u',', u'.', u'that', u'in', u'instead', u'than', u'for', u'the', u'from', u'on', u'at', u'are', u'as', u'?"', u'and', u"?'", u". '", u'seemed', u'by', u",'", u'it', u'?', u'is', u", '", u'which'] -4, " : [u'Information'] -curious conduct : [u','] -is aware : [u'that'] -road is : [u'an'] -carry me : [u'to'] -quite persuaded : [u'myself'] -I deserve : [u'to'] -its snakish : [u'temper'] -waiting," : [u'said'] -wayside public : [u'house'] -It hadn : [u"'"] -lose another : [u'instant'] -couple. : [u'And'] -the position : [u'in'] -Becher is : [u'an'] -events, : [u'I', u'working', u'and', u'Mr', u'it', u'we'] -visited, : [u'with'] -story about : [u'the', u'how'] -my mastiff : [u'.'] -with frightened : [u'eyes'] -the director : [u'. "'] -heart that : [u'had'] -diverted her : [u'luggage'] -s blow : [u','] -was much : [u'more', u'excited', u'addicted'] -present free : [u'trade'] -learn wisdom : [u'late'] -late before : [u'Sherlock'] -, grey : [u'dust'] -feminine eye : [u'was'] -tender hearted : [u'to'] -hanged on : [u'far'] -trying hard : [u','] -are is : [u'a'] -nature alternately : [u'asserted'] -had first : [u'chosen'] -remain neutral : [u','] -current donation : [u'methods'] -Daily Telegraph : [u', "'] -standing in : [u'a', u'the'] -The Man : [u'with'] -stopped all : [u'the'] -for within : [u'an'] -own family : [u'circle', u'."', u'.'] -is despaired : [u'of'] -An inspection : [u'of'] -looked it : [u'all'] -"' Have : [u'you'] -feet round : [u'the'] -poor gentleman : [u'much'] -and wondered : [u'what'] -sound produced : [u'by'] -his step : [u'daughter', u'brisk', u'now'] -bones. : [u'Yet', u'It'] -imagination of : [u'the'] -at Pondicherry : [u'in'] -of marrying : [u'within', u'his'] -contrition which : [u'are'] -usual signal : [u'between'] -name of : [u'the', u'good', u'this', u'his', u'Openshaw', u'Breckinridge', u"'", u'my'] -Morris. : [u'He'] -used the : [u'machine'] -singular document : [u'.'] -Tollers opened : [u'into'] -in the : [u'case', u'corner', u'passage', u'year', u'photograph', u'morning', u'use', u'chair', u'character', u'neighbourhood', u'least', u'matter', u'Temple', u'house', u'windows', u'Edgeware', u'wind', u'secure', u'park', u'tray', u'hope', u'other', u'street', u'principal', u'dark', u'palm', u'Arnsworth', u'future', u'fire', u'autumn', u'next', u'front', u'name', u'hands', u'advertisement', u'whole', u'office', u'League', u'mornings', u'building', u'course', u'stalls', u'most', u'music', u'second', u'cab', u'afternoon', u'cellar', u'sudden', u'cold', u'direction', u'centre', u'custody', u'early', u'week', u'papers', u'police', u'minute', u'Tottenham', u'meantime', u'evening', u'daylight', u'simple', u'two', u'City', u'recesses', u'chemical', u'tail', u'door', u'same', u'colonies', u'employ', u'wood', u'investigation', u'inquest', u'minds', u'clouds', u'yard', u'young', u'sky', u'old', u'town', u'Bermuda', u'district', u'grip', u'acting', u'colony', u'market', u'power', u'lower', u'island', u'latter', u'heart', u'chimney', u'glare', u'Tankerville', u'States', u'grate', u'attic', u'outstretched', u'garden', u'twilight', u'very', u'grasp', u'air', u'meanwhile', u'study', u'lumber', u'sailing', u'Southern', u'South', u'water', u'long', u'hollow', u'port', u'ship', u'best', u'Atlantic', u'trough', u'farthest', u'poison', u'first', u'bowls', u'midst', u'incoherent', u'Capital', u'wall', u'prime', u'sense', u'others', u'pockets', u'room', u'act', u'opium', u'opening', u'bedroom', u'dining', u'horse', u'presence', u'disappearance', u'upper', u'county', u'force', u'metropolis', u'green', u'business', u'evenings', u'streets', u'country', u'solution', u'gaslight', u'shape', u'brim', u'peculiar', u'world', u'background', u'strongest', u'Globe', u'banks', u'bright', u'Museum', u'big', u'ledger', u'hearty', u'gas', u'sitting', u'means', u'dock', u'middle', u'window', u'hour', u'fact', u'north', u'west', u'days', u'event', u'men', u'tropics', u'central', u'dead', u'plantation', u'lock', u'silence', u'aperture', u'way', u'heavens', u'deepest', u'gathering', u'bed', u'daytime', u'one', u'village', u'distant', u'habit', u'newspapers', u'summer', u'consulting', u'nature', u'bosom', u'grounds', u'shadow', u'manner', u'working', u'moonlight', u'train', u'engineer', u'parish', u'press', u'chase', u'personal', u'marriage', u'Morning', u'belief', u'strange', u'public', u'pew', u'carriage', u'church', u'milk', u'box', u'wrong', u'company', u'bride', u'duplicate', u'wintry', u'easy', u'land', u'bureau', u'handling', u'drawing', u'coffee', u'inspector', u'stable', u'gloom', u'fingers', u'light', u'hall', u'struggle', u'snow', u'lane', u'family', u'West', u'history', u'cupboard', u'High', u'conjecture', u'nursery', u'tiniest', u'Southampton', u'road', u'darkness', u'peaceful', u'drawer', u'household', u'great', u'United', u'General', u'collection', u'official', u'', u'U'] -man married : [u'a'] -visitor which : [u'compelled'] -the finer : [u'shades'] -pushed and : [u'pulled'] -prey. : [u'Briefly', 'PP'] -much imagination : [u'and'] -of such : [u'weight', u'a', u'delicacy', u'nonsense', u'."', u'purity', u'men'] -" Their : [u'reasons'] -patted him : [u'kindly'] -fish monger : [u'and'] -patted his : [u'hand'] -all of : [u'them', u'what', u'which'] -wadding and : [u'carbolised'] -mark would : [u'not'] -wild story : [u'seemed'] -. Heh : [u"?'"] -all on : [u'their', u'fire'] -two souls : [u'which'] -yours had : [u'to'] -During two : [u'years'] -natural reserve : [u'lost'] -the fee : [u'was', u'as'] -man has : [u'written'] -I employed : [u'my'] -The crate : [u'upon'] -They say : [u'that'] -s good : [u'drive'] -year old : [u'house', u'drama'] -minds of : [u'the'] -trademark owner : [u','] -tore back : [u'a'] -glad of : [u'a', u'all'] -three or : [u'four'] -You give : [u'me'] -man had : [u'given', u'an', u'framed', u'waited'] -nail, : [u'and'] -glad or : [u'sorry'] -three of : [u'us', u'the', u'which'] -? I : [u'don', u'had', u'thought', u'could', u'am', u'rang', u'cudgelled', u'would', u'was', u'never', u'left', u'shall', u'answer', u"'", u'know', u'tell', u'glanced', u'think', u'knew', u'should'] -remember nothing : [u'until'] -plan of : [u'campaign', u'the'] -cut a : [u'much', u'slice'] -obey. : [u'You'] -the panelling : [u'of'] -not claim : [u'a'] -s nothing : [u'of', u'in'] -barred up : [u'by'] -no footmarks : [u','] -treated," : [u'said'] -there burst : [u'forth'] -clerk entered : [u'to'] -Our quest : [u'is'] -actions was : [u'directed'] -words out : [u','] -may he : [u'.'] -rise from : [u'crime'] -were these : [u'German'] -place at : [u'once'] -great error : [u'has'] -out close : [u'the'] -Uffa, : [u'and'] -for their : [u'maintenance', u'escape', u'purpose', u'eccentricity', u'conduct'] -the monotony : [u'of'] -his mind : [u',', u'and', u'was', u'.'] -it means : [u'?"'] -no carpets : [u'and'] -will is : [u'very'] -prison? : [u'I'] -But we : [u'have', u'shall', u'can'] -on this : [u'planet', u'page', u'morning', u'earth', u'work'] -. With : [u'hardly', u'a', u'an', u'the', u'him', u'these', u'your', u'my', u'this', u'his', u'much'] -upon some : [u'other', u'most'] -But without : [u'his'] -. People : [u'tell'] -visitors vanished : [u'away'] -the moral : [u'retrogression'] -by leaps : [u'and'] -headed idea : [u'was'] -be delighted : [u'."'] -), you : [u'must'] -the person : [u'whom', u'or', u'in', u'you'] -obvious to : [u'me', u'Mr', u'you'] -lost four : [u'pound'] -Yes. : ['PP', u'We', u'It', u'He', u'I', u'That', u'Her'] -burning charcoal : [u','] -Yes, : [u'I', u'sir', u'17', u'it', u'my', u'but', u'have', u'at', u'certainly', u'that', u'they', u'the', u'from', u'to', u'there', u'and', u'Jem', u'all', u'our', u'we', u'only', u'her', u'thief', u'he', u'miss'] -in green : [u','] -our being : [u'able'] -. Augustine : [u'.'] -Yes; : [u'and', u'one', u'that', u'I', u'it', u'when'] -and paying : [u'little'] -mastery. : [u'I'] -angle at : [u'the'] -morning after : [u'Christmas'] -or feigned : [u'indignation'] -was introduced : [u'to', u'by'] -the notices : [u'which'] -town bred : [u',"', u'."'] -trouble of : [u'wooing'] -shall soon : [u'have', u'be', u'set', u'drive', u'clear', u'know', u'learn', u'see'] -have excellent : [u'ears'] -de foie : [u'gras'] -her position : [u'must'] -and assistance : [u'of'] -, display : [u','] -considerable value : [u'which'] -before many : [u'days'] -time we : [u'had', u'did'] -her natural : [u'reserve'] -Fritz! : [u'Fritz'] -account. : ['PP'] -account, : [u'cry'] -chief over : [u'a'] -a snigger : [u'. "'] -it needs : [u'a'] -he, ' : [u'here', u'is', u'the', u'his', u'actually', u'you', u'and', u'I', u'that', u'but'] -carried down : [u'by'] -he, " : [u'by', u'I', u'and', u'but', u'to', u'is', u'that', u'over', u'of', u'this', u'my', u'come', u'where'] -tracks. : ['PP'] -s quite : [u'too'] -was addressing : [u'Wilhelm'] -control to : [u'prevent'] -annoyance. : [u'If'] -annoyance, : [u'but'] -me I : [u'think'] -hardly expect : [u'us'] -cloth as : [u'Jones'] -will guide : [u'you'] -he yelled : [u'. "'] -done very : [u'well', u'nicely'] -me a : [u'sovereign', u'living', u'letter', u'prompt', u'policeman', u'pencil', u'note', u'number', u'series', u'yellow', u'slit'] -Lestrade as : [u'we'] -dreamy eyes : [u'were'] -& Stevenson : [u','] -Lestrade at : [u'his'] -Underground as : [u'far'] -I sat : [u'down', u'up', u'beside', u'with', u'opposite', u'in'] -before it : [u'arrived', u'is'] -I saw : [u'his', u'you', u'the', u'him', u'how', u'that', u'William', u'no', u'Whitney', u'a', u'it', u'my', u'nothing', u'then', u'her', u'Frank', u'Mary', u'Arthur', u'with', u'where', u'an', u'what'] -know much : [u'of'] -Occurrence at : [u'a'] -We compress : [u'the'] -of bramble : [u'covered'] -words. : ['PP', u'They', u'A', u'Get', u'I'] -words, : [u'that', u'she', u'but', u'you', u'and'] -bird I : [u'ate'] -already learned : [u'all'] -king. : ['PP'] -be away : [u'a', u'all', u'for'] -. Compliance : [u'requirements'] -Alexander Holder : [u','] -, " Walk : [u'past'] -side and : [u'the', u'looked', u'left', u'on'] -Its business : [u'office'] -his bill : [u'at'] -answered the : [u'assistant'] -down Endell : [u'Street'] -old campaigner : [u','] -If I : [u'tell', u'remember', u'can', u'am', u'promise', u'lay', u'cannot', u'may', u'claim', u'could'] -I whispered : [u', "', u'; "'] -altar rails : [u','] -not dream : [u'of'] -Covent Garden : [u'."', u'Market', u".'"] -stone flagged : [u'passage'] -much as : [u'father', u'to', u'taken', u'I', u'we', u'their', u'pa', u'smiled', u'your'] -heard my : [u'father', u'story'] -your advice : [u'.', u'in', u'."', u'upon'] -little sideways : [u','] -cannot accomplish : [u'.'] -woman stood : [u'upon', u'in'] -to lengthen : [u'out'] -singular features : [u'as', u'than'] -fallen upon : [u'evil'] -out her : [u'resolutions', u'hand'] -trivial one : [u'"--'] -lit streets : [u'until'] -was averse : [u'to'] -is made : [u'over', u',', u'up'] -fault was : [u'soon'] -once he : [u'made', u'ran'] -assist you : [u'in'] -rose lazily : [u'from'] -that therefore : [u'the'] -. Looking : [u'over'] -then I : [u'think', u'hazarded', u'promised', u'will', u'heard', u'shall', u'must'] -turned as : [u'pale'] -and screamed : [u'upon'] -past me : [u',', u'without'] -ordered her : [u'to'] -subdued the : [u'flames'] -sundial, : [u'as'] -future generations : [u'.'] -sundial. : ['PP'] -So far : [u'I'] -an opal : [u'tiara'] -visits with : [u'our'] -quite a : [u'pretty', u'number', u'size', u'little', u'three', u'recognised', u'common', u'jump', u'pleasure', u'suite'] -and eyes : [u','] -one who : [u'may', u'is', u'finds', u'was', u'lives', u'has', u'had', u'should', u'certainly'] -hand a : [u'sheet'] -was formed : [u'by'] -sell his : [u'pictures'] -then a : [u'fire', u'scream'] -balustraded bridge : [u','] -home instantly : [u'and'] -importance to : [u'look', u'keep', u'the'] -an out : [u'house'] -"' Oct : [u'.'] -, became : [u'entangled', u'wealthy', u'engaged'] -Still, : [u'of', u'I', u'it', u'that', u'jealousy', u'if'] -His orders : [u'were'] -having also : [u'come'] -London could : [u'earn'] -only for : [u'you'] -be paid : [u'at', u'within'] -Remarkable as : [u'being'] -, eager : [u'face'] -thrust the : [u'stone'] -such delicacy : [u'that'] -PLEASE READ : [u'THIS'] -, looking : [u'even', u'back', u'at', u'up', u'across', u'out', u'pale', u'over', u',', u'very', u'as', u'keenly'] -essential to : [u'me'] -fattest. : ['PP'] -my disappointment : [u','] -the history : [u'of'] -air in : [u'the'] -had touched : [u'his'] -dropped her : [u'thick', u'bouquet'] -bluff, : [u'boisterous'] -concealed a : [u'piece'] -bisulphate of : [u'baryta'] -the villagers : [u'almost'] -cannot think : [u'."', u'how'] -plannings, : [u'the'] -rake. : [u'I'] -invariably a : [u'clue'] -lying fainting : [u'in'] -Was there : [u'a'] -remained unconscious : [u'I'] -down senseless : [u'on'] -passers by : [u',', u'.', u'blew'] -hour before : [u'us'] -. Gregory : [u'B'] -two sons : [u'my'] -soon the : [u'intimate'] -but I : [u'have', u'jumped', u'know', u'see', u'was', u'could', u'can', u'didn', u'cannot', u'must', u'am', u'call', u'shall', u'should', u'spared', u'had', u"'", u'knew', u'.', u'don', u'told', u'observe', u'sleep', u'fancy', u'do', u'think', u'hesitated', u'felt', u'managed', u'much', u'meant', u'thought', u'beg', u'fear', u'did', u'found', u'soon', u'remembered'] -learn it : [u'at'] -small morocco : [u'casket'] -necessary. : [u'I'] -Nature rather : [u'than'] -calmly, : [u'but'] -just being : [u'lighted'] -am bound : [u'to'] -last court : [u'of'] -different varieties : [u'of'] -s goals : [u'and'] -some fantastic : [u'but'] -but a : [u'good', u'couple', u'composer', u'lurid', u'welcome', u'very', u'sudden', u'promise', u'fresh', u'step'] -the knee : [u'of'] -your watch : [u'chain'] -the writing : [u',', u'."', u'?"'] -the dnouement : [u'of'] -own hair : [u'.'] -wanted for : [u'ourselves'] -will, : [u'of', u'at', u'however', u'or', u'Miss', u'no', u'I', u'if', u'we', u'but'] -her left : [u'a', u'hand'] -inner side : [u','] -steps on : [u'the'] -THIS AGREEMENT : [u'WILL'] -hacked or : [u'torn'] -earn twice : [u'what'] -steps of : [u'your'] -in surprise : [u'.'] -the typewritist : [u'presses'] -the kind : [u'."', u'.'] -as remarkable : [u'as', u'.'] -a more : [u'successful', u'damning', u'mysterious', u'inexorable', u'than', u'dreadful'] -, performing : [u','] -frightened and : [u'ran'] -even tell : [u'that'] -none had : [u'fallen'] -gentleman entered : [u','] -my son : [u',', u'in', u'himself', u'?'] -in German : [u'and'] -. Mark : [u'that'] -margin by : [u'a'] -necessity for : [u'my'] -, anxious : [u'look'] -. Mary : [u'and', u'was'] -the vanishing : [u'cloth'] -suppose," : [u'said', u'I'] -these I : [u'may', u'journeyed'] -sat open : [u'eyed'] -had each : [u'tugged'] -sovereign on : [u'with'] -newly studied : [u','] -taking out : [u'his', u'the'] -to retire : [u'upon'] -certainly speak : [u'to'] -strong proof : [u'of'] -6221541. : [u'Its'] -heavy and : [u'blunt', u'sharp'] -soldiers in : [u'the'] -bleeding came : [u'from'] -know. : ['PP', u'I', u'Even', u'It', u'The'] -know, : [u'I', u'my', u'for', u'and', u'when', u'then', u'no', u'devoted', u'also', u'is', u'Watson', u'so', u'madam', u'cut'] -s assertion : [u'that'] -so systematic : [u'its'] -of fire : [u'.', u',', u'was'] -folk all : [u'trooped'] -out your : [u'coronet'] -of Covent : [u'Garden'] -went first : [u'to'] -, insanely : [u','] -it for : [u'yourself', u'him', u'some', u'to', u'anything', u'worlds', u'the', u'a', u'there'] -was borne : [u'into'] -it out : [u'."', u'.', u'upon', u',', u'beautifully', u'on', u'no', u'of', u'to', u'again', u'for'] -up and : [u'down', u'started', u'pushed', u'remanded', u'gazed', u'lit', u'glanced', u'rushed', u'hand', u'examined', u'opened', u'found'] -widespread, : [u'comfortable'] -voice downstairs : [u','] -is for : [u'the', u'me'] -very coarse : [u'one'] -something in : [u'his', u'foolscap', u'the', u'it', u'her', u'what'] -we owe : [u'you'] -others are : [u'Finns'] -Regency. : [u'Nothing'] -rattled along : [u'with'] -figure had : [u'emerged'] -, " March : [u','] -a pathway : [u'through'] -early appointment : [u'this'] -than yours : [u'or'] -driven to : [u'the'] -shrunk against : [u'the'] -In ten : [u'days'] -stairs and : [u'in'] -address had : [u'been'] -furnish information : [u'.'] -we solve : [u'the'] -had filled : [u'out', u'the'] -who else : [u'could'] -of safety : [u'."'] -Holmes rose : [u'and', u'to'] -market. : [u'All', 'PP'] -market, : [u'and', u'for'] -sell the : [u'business', u'geese'] -the deadly : [u'urgency'] -( c : [u')', u')('] -and too : [u'little'] -slowly, : [u'glancing', u'jerkily'] -market? : [u'Tell'] -a disgraceful : [u'one'] -one other : [u'thing'] -friend in : [u'one'] -confining yourself : [u'to'] -rattled back : [u'on'] -the richer : [u'man'] -great intensity : [u'.'] -note by : [u'the'] -two companions : [u'.'] -she paused : [u'at'] -was screening : [u'him'] -Doran on : [u'the'] -argument," : [u'said'] -tell you : [u'that', u',', u'how', u'tales', u'.', u'so', u'first', u'the', u'everything', u'it', u'?"'] -terms of : [u'the', u'perfect', u'this'] -referred it : [u'to'] -She came : [u'to', u'with', u'in'] -carefully examined : [u'the', u'and', u','] -splashing against : [u'the'] -At eight : [u'in'] -replace the : [u'previous'] -written above : [u'them'] -seen that : [u'her'] -and just : [u'as', u'a'] -was sheer : [u'frenzy'] -was dressed : [u'in'] -was superscribed : [u'to'] -soie, : [u'with'] -spoke a : [u'few', u'light', u'word'] -point pupils : [u','] -A quick : [u'blush'] -, Esq : [u'.'] -gasfitters' : [u'ball'] -. " To : [u'determine'] -my father : [u'took', u'.', u'and', u'was', u'expiring', u'when', u'I', u'Joseph', u'to', u'entered', u'came', u'give', u'went', u'."', u"'", u'!'] -, jovial : [u'man'] -Amateur Mendicant : [u'Society'] -of sombre : [u'and'] -floor. " : [u'Why'] -funny. : [u'I'] -funny, : [u'too'] -private school : [u'at'] -and right : [u'up'] -our inquiry : [u'may'] -coachman with : [u'his'] -across his : [u'case'] -from home : [u'and', u'with', u'for', u'at', u'to', u'.', u'before'] -sorry that : [u'I', u'Miss'] -Nothing, : [u'until'] -Nothing. : ['PP'] -triangular piece : [u'of'] -explain. : [u'I'] -a clever : [u'forgery', u'man', u'and', u'gang'] -the border : [u'of'] -you didn : [u"'"] -this final : [u'quarrel'] -it matters : [u'little'] -influence, : [u'probably'] -note itself : [u'.'] -influence. : ['PP'] -remarked Sherlock : [u'Holmes'] -came within : [u'my'] -s man : [u'with'] -got to : [u'that', u'the', u'my'] -impassable, : [u'then'] -So then : [u'I'] -fiction with : [u'its'] -resolute of : [u'men'] -this paragraph : [u'to'] -would. : ['PP'] -would, : [u'in', u'there', u'when', u'I'] -the wharves : [u'.'] -Gate which : [u'has'] -Holmes twisted : [u'himself'] -stair, : [u'some', u'and', u'I', u'unlocked'] -while to : [u'put', u'me', u'call', u'wait'] -which threw : [u'any'] -works, : [u'so', u'reports', u'by', u'and', u'harmless'] -a pure : [u'matter'] -his tool : [u'and'] -pressed together : [u','] -in conjunction : [u'with'] -less mysterious : [u'it'] -their dark : [u'leaves'] -safes had : [u'been'] -prevent me : [u'from'] -justified," : [u'observed'] -jacket is : [u'spattered'] -a caseful : [u'of'] -early in : [u'April', u'the'] -yourselves to : [u'night'] -his mistress : [u'?', u','] -in March : [u','] -drenched with : [u'blood'] -Nothing of : [u'the'] -day that : [u'I'] -, Pennsylvania : [u','] -walks upstairs : [u'at'] -should certainly : [u'speak'] -all clear : [u',"'] -fluffy ashes : [u','] -afternoon who : [u'came'] -lost in : [u'her', u'thought', u'deep'] -leggings which : [u'he'] -for those : [u'peculiar', u'deductive', u'criminals', u'who', u'faculties'] -have saved : [u'an'] -feel better : [u'now'] -ascertaining that : [u'his'] -flash out : [u'at'] -before that : [u'I'] -indeed our : [u'visitor'] -existing cases : [u'which'] -all our : [u'doubts', u'correspondence', u'cases', u'resources', u'wants', u'persuasions'] -our engineer : [u'ruefully'] -been cruelly : [u'used'] -pay major : [u'of'] -and fancies : [u'."'] -possibly in : [u'some'] -toe cap : [u','] -. Here : [u'he', u'it', u'I', u'we', u'is', u'are', u"'", u'you', u','] -but preventing : [u'her'] -my children : [u'.'] -some data : [u'which'] -father dead : [u'in'] -the broad : [u',', u'gleaming', u'bars'] -utterly and : [u'has'] -a nervous : [u',', u'clasping', u'woman'] -gigantic client : [u'.'] -platform save : [u'a'] -woman came : [u'talking'] -preposterous hat : [u'and'] -not spoken : [u'before'] -a gruff : [u'monosyllable'] -introspective, : [u'and'] -lady she : [u'seems'] -appeared not : [u'to'] -you yesterday : [u','] -very carelessly : [u'scraped'] -so sorely : [u','] -you agree : [u'to'] -and only : [u'just', u'posted', u'one'] -take place : [u'at', u','] -of twenty : [u'one'] -seated at : [u'breakfast', u'the'] -once put : [u'the'] -largest landed : [u'proprietor'] -known dad : [u'in'] -his nature : [u'took', u". '"] -reached from : [u'the'] -regular in : [u'my'] -The house : [u'was'] -client puffed : [u'out'] -me was : [u'more', u'of'] -knew her : [u','] -the pale : [u'of'] -on Tuesday : [u','] -the palm : [u'of', u'a'] -huge form : [u'looming'] -Klux Klan : [u'?"', u'.'] -Just ring : [u'the'] -no keener : [u'pleasure'] -wild talk : [u'of'] -ruffians who : [u'surrounded'] -know things : [u'.'] -. Five : [u'little'] -might escape : [u'every'] -Then my : [u'friend', u'servant'] -gain the : [u'reputation'] -the doctors : [u"'", u'in'] -see Sections : [u'3'] -my resolution : [u'about'] -weariness and : [u'lethargy'] -writing," : [u'murmured'] -General Terms : [u'of'] -were only : [u'two'] -successful." : [u'He'] -examine. : ['PP'] -. Beyond : [u'these', u'the', u'lay'] -Heaven forgive : [u'me'] -." By : [u'eleven'] -and devotedly : [u'attached'] -beneath, : [u'and'] -discovered its : [u'true'] -place whence : [u'it'] -dimly what : [u'you'] -courage. ' : [u'We'] -in town : [u'.'] -stare and : [u'a'] -points, : [u'Holmes', u'that', u'which'] -heavy stick : [u'in'] -points. : [u'One', u'The'] -/ Produced : [u'by'] -property( : [u'trademark'] -noticed the : [u'peculiarities'] -That trick : [u'of'] -property. : [u'But', u'I'] -several companies : [u'and'] -understand that : [u'this', u'I', u'there', u'as', u'the', u'it', u'all', u'he', u',', u'you'] -gritty, : [u'grey'] -/. : ['PP'] -fee, : [u'of', u'and'] -morning light : [u'revealed'] -fee. : ['PP'] -flickering oil : [u'lamp'] -friend down : [u'to'] -be only : [u'one'] -The photograph : [u'becomes', u'is', u'was'] -on every : [u'subject', u'sufferer'] -It could : [u'not', u'only'] -in!" : [u'said'] -sprung out : [u'and'] -were in : [u'front', u'the', u'need', u'some', u'grief', u'Bloomsbury', u'danger', u'vain', u'absurd'] -to judge : [u'you'] -So and : [u'so'] -glimpses of : [u'him'] -were it : [u'not'] -you gain : [u'them'] -this mystery : [u'of'] -more chivalrous : [u'view'] -search. : ['PP', u'Ordering'] -was typewritten : [u'and'] -practical with : [u'your'] -the seal : [u'and'] -bite the : [u'occupant'] -her knowing : [u'my'] -single sleepy : [u'porter'] -distant parsonage : [u','] -off as : [u'hard'] -dead faint : [u'among'] -of hellish : [u'cruelty'] -"' Or : [u'to'] -is every : [u'prospect'] -corresponded clearly : [u'with'] -, dressed : [u'it', u'only'] -. ' Your : [u'duty'] -, sandwiched : [u'it'] -Saviour' : [u's'] -nor would : [u'the'] -Too narrow : [u'for'] -case has : [u',', u'been'] -loading their : [u'cargo'] -any mischief : [u'.'] -, hoping : [u'that'] -the seat : [u'of', u'and'] -were interested : [u'white'] -why not : [u',"'] -a doddering : [u','] -last six : [u'cases'] -perpetual snarl : [u'.'] -. Seeing : [u'that'] -man succeeded : [u'in'] -morning in : [u'the', u'our'] -cried; " : [u'I', u'pull'] -discuss what : [u'you'] -, Robert : [u',"', u','] -stories until : [u'the'] -none ever : [u'reached'] -gaze. : ['PP', u'She'] -every respect : [u'with', u'."'] -of Rucastle : [u"'"] -little printed : [u'slip'] -77, : [u'and'] -TO THE : [u'RED'] -valuable as : [u'a'] -good morning : [u'."'] -German, : [u'very', u'or', u'music'] -" Sophy : [u'Anderson'] -German. : [u'Do'] -to associate : [u'himself'] -cannot and : [u'do'] -night? : [u'Some'] -would kindly : [u'attend'] -a working : [u'hypothesis'] -night' : [u's'] -course you : [u'are', u'can'] -night, : [u'at', u'your', u'Watson', u'Mister', u'and', u'we', u'so', u'however', u'for', u'or', u'the', u'as', u'you', u'sir', u'though', u'in', u'a'] -other side : [u'.', u'upon', u'of'] -night. : ['PP', u'I', u'He', u'Mr', u'Mrs', u'Well', u'A', u'The', u'If', u'There', u'Were', u'As', u'Oh', u'Your'] -feel to : [u'you'] -in unimportant : [u'matters'] -" Then : [u',', u'how', u'I', u'you', u'they', u'that', u'put', u'we', u'what', u'let', u'comes', u'the', u'pray', u'perhaps', u'he', u'dress', u'my', u'it'] -breakfast. : ['PP'] -meditation, : [u'until'] -me, ' : [u'we'] -trouble," : [u'responded'] -wrote the : [u'note', u'address'] -say no : [u'more'] -had forgotten : [u'the'] -" They : [u'have', u'are', u'must', u'seem', u'often', u'considered', u'always'] -think we : [u'had'] -Terse and : [u'to'] -indeed which : [u'he'] -the art : [u','] -being somewhat : [u'cold'] -upon at : [u'the'] -tents, : [u'wandering'] -he anoints : [u'with'] -upon as : [u'akin', u'so'] -upon an : [u'income', u'incident', u'entirely'] -drop and : [u'say'] -like burnished : [u'metal'] -fantastic but : [u'generally'] -the arm : [u"; '", u'of'] -if evil : [u'came'] -girl should : [u'be'] -for Foreign : [u'Affairs'] -any young : [u'man'] -co operation : [u'."', u',', u'.'] -do,' : [u'said'] -his brilliant : [u'reasoning'] -cried in : [u'English'] -home now : [u','] -journey, : [u'I', u'but', u'and'] -journey. : [u'I'] -matter aside : [u'until'] -dismantled shelves : [u'and'] -little woman : [u'to'] -develop his : [u'pictures'] -And over : [u'here'] -near that : [u'line'] -is indeed : [u'a', u'the', u'important'] -shining very : [u'brightly'] -club debts : [u'.'] -6: : [u'30'] -and swinging : [u'in'] -his fangs : [u'upon'] -room had : [u'already', u'been', u'lit'] -small opening : [u'between'] -the faded : [u'and'] -Certainly,' : [u'I'] -the boundary : [u'between'] -Certainly," : [u'said'] -disregarded them : [u','] -a length : [u'by'] -no mother : [u','] -have felt : [u'helpless', u'like', u'another', u'the'] -never set : [u'eyes'] -club again : [u".'"] -that would : [u'not'] -, framed : [u'in'] -the entrance : [u'.'] -to strengthen : [u'our', u'his'] -are men : [u','] -Lestrade laughed : [u'indulgently', u'. "'] -grew up : [u','] -no hesitation : [u'in'] -the collar : [u'.', u'turned'] -name among : [u'the'] -promoting free : [u'access'] -were flushed : [u'with'] -interest and : [u'even'] -cross indexing : [u'his'] -view at : [u'the'] -EVEN IF : [u'YOU'] -a bulge : [u'on'] -hair cut : [u'off'] -wincing, : [u'though'] -getting those : [u'letters'] -servant. : ['PP'] -snatches a : [u'delusion'] -see the : [u'easy', u'red', u'traces', u'direction', u'point', u'deadly', u'gentleman', u'letter', u'solution', u'machine', u'other', u'smile', u'famous', u'windows', u'end'] -authoritative tap : [u'.'] -I roared : [u','] -his gently : [u'smiling'] -then, ' : [u'My'] -,' it : [u'says'] -this investigation : [u'."', u'.'] -ever seen : [u'in', u'him', u'Mr', u'so', u'that', u'such', u'.'] -very scared : [u'and'] -that very : [u'moment', u'day'] -jacket was : [u'black'] -parched lips : [u'. "'] -dozen other : [u'people'] -there seems : [u'to'] -got it : [u'!"', u'now', u'in'] -life has : [u'been'] -secluded, : [u'after'] -endeavour to : [u'clear'] -iron safe : [u'were', u','] -side upon : [u'the'] -opposite, : [u'and'] -as Lord : [u'St'] -easy courtesy : [u'for'] -poison or : [u'sleeping'] -as the : [u'Count', u'most', u'wheels', u'front', u'handcuffs', u'commonplace', u'church', u'son', u'Ballarat', u'old', u'strange', u'weeks', u'country', u'jury', u'one', u'wind', u'burning', u'tide', u'inspector', u'blue', u'clock', u'fancies', u'bell', u'lamp', u'horse', u'carriage', u'train', u'dropping', u'secret', u'child'] -suddenly shrieked : [u'out'] -Simon alone : [u','] -she endeavoured : [u'to'] -without either : [u'signature', u'his'] -foreign tongue : [u'in'] -considerably after : [u'midnight'] -tm eBooks : [u'with', u'are'] -. Drink : [u'this'] -things packed : [u'and'] -I determined : [u'to', u','] -march. : ['PP'] -her clever : [u'stepfather'] -a bedroom : [u'and', u','] -doors the : [u'night'] -Men at : [u'his'] -All these : [u'I'] -blacksmith over : [u'a'] -the ruin : [u'of'] -Not him : [u'."'] -Kindly turn : [u'round'] -the derbies : [u'."'] -cannot make : [u'our', u'any'] -illness through : [u'which'] -wonderful manager : [u'and'] -paper from : [u'him', u'the', u'his'] -ever spoken : [u'of'] -in China : [u',', u'.'] -be almost : [u'inexplicable', u'as'] -Holmes struck : [u'the'] -be put : [u'to'] -new client : [u'.'] -he asked : [u'with', u'.', u'. "', u', "', u'a', u'in', u'at', u','] -eager and : [u'beautiful'] -is evidently : [u'trying'] -obese, : [u'pompous'] -date on : [u'which'] -arrived upon : [u'Christmas', u'the'] -BUT NOT : [u'LIMITED'] -income, : [u'she', u'and', u'which'] -from Serpentine : [u'mews'] -do when : [u'she'] -some errand : [u','] -railings which : [u'bordered'] -commands my : [u'wife'] -his jaw : [u'resting'] -been working : [u'upon'] -holiday, : [u'so'] -elementary, : [u'but'] -little opening : [u'for'] -Ordering my : [u'cab'] -may confess : [u'at'] -face all : [u'drawn'] -000 pounds : [u';', u',', u'at'] -' face : [u'clouded'] -debts of : [u'honour'] -its vehemence : [u'.'] -windows, : [u'while', u'so', u'with'] -either with : [u'the'] -windows. : [u'This', 'PP', u'Suddenly'] -' 60 : [u"'"] -beneath his : [u'head'] -long pipe : [u'and'] -unkempt, : [u'staring'] -whether anything : [u'had'] -had found : [u'ourselves', u'his', u'within'] -perplexity from : [u'it'] -, jump : [u','] -by winding : [u'up'] -instantly arrested : [u','] -to study : [u'his'] -had reached : [u'Baker', u'the'] -suspecting him : [u','] -will carry : [u'conviction'] -was forced : [u'to'] -stand. : [u'Colonel'] -advice will : [u'be'] -vain to : [u'argue'] -probably aware : [u'that'] -himself from : [u'his'] -and still : [u'we', u'more'] -the answers : [u'to'] -89, : [u'not'] -" Most : [u'certainly'] -was admiring : [u'your'] -daughter as : [u'long'] -distinctly professional : [u'."'] -to vex : [u'us'] -truly as : [u'if'] -of dismay : [u'on'] -yourself think : [u'that'] -then off : [u'to'] -his speed : [u'down'] -her head : [u'and', u'.', u','] -regurgitation of : [u'water'] -does something : [u'very'] -"' Come : [u',', u'!'] -with no : [u'more', u'explanation', u'very', u'actual'] -! Gone : [u','] -Walsall, : [u'where'] -missing gems : [u'.'] -balls and : [u'a'] -usually leave : [u'to'] -of constables : [u'with', u'up'] -future annoyance : [u'.'] -ancestral house : [u'at'] -make the : [u'thing', u'case', u'matter', u'best', u'easy', u'maximum'] -fifteen to : [u'twenty'] -braced himself : [u'to'] -killed eight : [u'years'] -passed and : [u'nothing'] -awake, : [u'thinking', u'but'] -with a : [u'gibe', u'keen', u'kindly', u'black', u'small', u'richness', u'brooch', u'thick', u'deep', u'matter', u'gesture', u'yawn', u'garden', u'face', u'cap', u'nurse', u'cry', u'sardonic', u'questioning', u'very', u'quick', u'heavy', u'wrinkled', u'smile', u'camera', u'huge', u'head', u'quill', u'little', u'tack', u'sense', u'hand', u'pale', u'stare', u'great', u'plunge', u'weak', u'promise', u'feather', u'bland', u'slight', u'ghastly', u'moustache', u'cold', u'request', u'gun', u'woman', u'steely', u'purely', u'rake', u'hard', u'game', u'pained', u'grey', u'shade', u'long', u'foreign', u'start', u'revolver', u'newly', u'heart', u'shattered', u'strong', u'subdued', u'flush', u'pipe', u'bent', u'reply', u'limp', u'country', u'touch', u'dirty', u'line', u'coloured', u'grin', u'red', u'hurried', u'good', u'week', u'whistle', u'coat', u'sigh', u'sharp', u'sidelong', u'drawn', u'barred', u'provision', u'hunting', u'thousand', u'sudden', u'bright', u'high', u'low', u'dangerous', u'supply', u'soft', u'twig', u'last', u'lantern', u'lamp', u'round', u'despairing', u'chinchilla', u'force', u'cloud', u'pleasant', u'twinkle', u'group', u'clergyman', u'kind', u'frowning', u'man', u'massive', u'heaving', u'passion', u'scream', u'sneer', u'snow', u'greater', u'sweet', u'wooden', u'cup', u'weariness', u'pair', u'slipper', u'wave', u'turn', u'certain', u'sour', u'most', u'horrible'] -turned out : [u'splendidly', u'the'] -Despite these : [u'efforts'] -askance at : [u'him'] -your efforts : [u'and'] -we rolled : [u'into'] -His appearance : [u','] -holding it : [u'out'] -shape, : [u'hard', u'seeing'] -the tickets : [u'."'] -beat his : [u'native', u'head'] -three pipe : [u'problem'] -a passion : [u'also', u'such'] -crime that : [u'you'] -farther from : [u'danger'] -the blundering : [u'of'] -afternoon and : [u'walked'] -country side : [u','] -this obliging : [u'youth'] -City of : [u'London'] -I prepare : [u'for'] -this stranger : [u'and'] -and shouting : [u'were'] -obvious precaution : [u".'"] -the objections : [u'are'] -have judged : [u'it'] -is recovered : [u'."'] -man either : [u'to'] -very absorbing : [u'."'] -it drop : [u'until'] -an apology : [u'for', u',"', u','] -and submit : [u'it'] -months I : [u'find'] -, occasionally : [u'to'] -worker. : [u'There'] -answered with : [u'his', u'the', u'a'] -table. : [u'"', 'PP', u'Holmes', u'There', u'Of', u'Ryder', u'Then', u'He', u'It', u'I'] -are one : [u'who', u'or'] -table, : [u'behind', u'was', u'and', u'on', u'I'] -are suggestive : [u'.'] -was some : [u'strange'] -may remain : [u'in'] -Of what : [u'?"', u'day'] -Smart fellow : [u','] -passed between : [u'my'] -good too : [u'good'] -all knowledge : [u',', u'which'] -gloomily. : ['PP'] -thoroughfare in : [u'which'] -Rucastle expressed : [u'a'] -strongest motives : [u'for'] -chink and : [u'window'] -men were : [u'never'] -women, : [u'and', u'but'] -strange visitor : [u'. "', u','] -women. : [u'It'] -takings but : [u'I'] -see no : [u'marks', u'society', u'less', u'difficulty'] -fourteen, : [u'who', u'Patience'] -was already : [u'deeply', u'dusk', u'answered', u'a', u'at', u'in'] -and limbs : [u'of'] -me do : [u'so'] -two corner : [u'seats'] -really some : [u'scruples'] -large towns : [u','] -have an : [u'influence', u'exact', u'inspector', u'American', u'answer', u'only'] -the savage : [u'creature'] -her rights : [u','] -come," : [u'she'] -retained the : [u'missing'] -billet. : ['PP'] -his remark : [u'about', u'appear'] -routine of : [u'everyday', u'life', u'our'] -shaking them : [u'off'] -this city : [u'of'] -must apparently : [u'have'] -have at : [u'least', u'the'] -characteristics to : [u'which'] -a broken : [u'bell', u'man'] -have as : [u'to'] -timid in : [u'drawing'] -there are : [u'seventeen', u'no', u'more', u'men', u'reasons', u'one', u'two', u'points', u'successive', u'many', u'some', u'a', u'sentimental', u'others', u'widespread', u'nearly', u'the', u'cigars', u'steps', u'women', u'usually', u'several'] -else biassed : [u'.'] -highest in : [u'England'] -. Let : [u'us', u'the', u'me'] -and annoyance : [u','] -united strength : [u'causing', u'.'] -light. " : [u'It'] -sensationalism which : [u'has'] -. " Her : [u'husband'] -step out : [u','] -lace which : [u'fringed'] -round upon : [u'the'] -very amiable : [u'person'] -instincts? : [u'I'] -. Those : [u'are', u','] -least ready : [u'to'] -, deep : [u'lined'] -shutter, : [u'and', u'heavily'] -stump among : [u'the'] -shoulder. " : [u'Oh'] -lazily who : [u'my'] -business turn : [u'.'] -district, : [u'and', u'for'] -SHERLOCK HOLMES : [u'***', u',--', u':--'] -his very : [u'soul', u'best', u'eyes', u'own', u'curly'] -very long : [u'.', u'time', u'and', u'before'] -newspapers until : [u'at'] -so scared : [u'by'] -the brim : [u'for'] -dipping continuously : [u'into'] -it straight : [u','] -your hands : [u'."', u'and', u'now'] -observe the : [u'second', u'colour'] -coronet again : [u','] -about which : [u'I'] -and indeed : [u'was'] -within 90 : [u'days'] -or not : [u',', u'."'] -little relation : [u'between'] -and actions : [u'.'] -me whether : [u'it', u'my', u'I'] -true wedding : [u'after'] -edge there : [u'peeped'] -the signature : [u'is'] -room swung : [u'slowly'] -. May : [u'we', u'I'] -sheets, : [u'for'] -his stepdaughter : [u"'"] -bonniest, : [u'brightest'] -complete as : [u'we'] -other day : [u','] -such reparation : [u'as'] -any disclaimer : [u'or'] -This aroused : [u'my'] -return ticket : [u'in'] -started me : [u'laughing', u'off'] -very large : [u'affair', u'bath', u'flat', u'room'] -Boots which : [u'extended'] -appears as : [u'Mr'] -trim as : [u'possible'] -in English : [u", '"] -own fields : [u','] -housekeeper, : [u'yet'] -a scissors : [u'grinder'] -housekeeper' : [u's'] -I forgot : [u'that'] -problem. : [u'I', u'When', u'And', u'It', 'PP'] -problem, : [u'and', u'which'] -be offensive : [u'to'] -unpapered and : [u'uncarpeted'] -deep for : [u'words'] -more from : [u'a'] -the ruddy : [u'faced'] -knowledge. : [u'Palmer'] -knowledge, : [u'which'] -, give : [u'it'] -who thrust : [u'her'] -creature which : [u'he'] -victim off : [u'."'] -informality about : [u'their'] -beaten in : [u'by'] -knowledge; : [u'and'] -menaced. : [u'It'] -tree during : [u'the'] -any features : [u'of'] -whole appearance : [u'.'] -within 30 : [u'days'] -shall come : [u'back', u'down'] -Miss Roylott : [u','] -dug out : [u'like'] -the softer : [u'passions'] -slit between : [u'two'] -of lectures : [u'into'] -word with : [u'us', u'Moran', u'you'] -blowing in : [u'our'] -turned up : [u'.', u'the', u'one', u',', u'which'] -ordered him : [u'to'] -the green : [u'room', u'grocer'] -trembling all : [u'over'] -; no : [u'one'] -silver, : [u'poured'] -both hinted : [u'at'] -. Pancras : [u'Hotel'] -the stump : [u'among', u'of'] -mad insane : [u'."'] -IRENE NORTON : [u','] -circulation is : [u'more'] -which contained : [u'a'] -coroner come : [u'to'] -residence in : [u'the'] -jumping which : [u'in'] -morning a : [u'peasant'] -my joy : [u'at'] -rain, : [u'as', u'with'] -unlike each : [u'other'] -Miss Holder : [u'.', u'?"'] -, Salt : [u'Lake'] -of creatures : [u'from'] -sit here : [u'comfortably', u','] -League of : [u'the'] -wired to : [u'Bristol', u'Gravesend'] -and breakfast : [u'?"'] -something perhaps : [u'of'] -City branch : [u'of'] -But was : [u'there'] -them off : [u','] -the shouting : [u'crowd', u'of'] -Give her : [u'her'] -this black : [u'business'] -the reward : [u'offered', u','] -deeply interested : [u'in'] -) within : [u'30'] -, raise : [u'the'] -when Holmes : [u'pulled', u'returned', u'struck', u'rose'] -have notes : [u'of'] -beige, : [u'but'] -more dense : [u'than'] -the cigar : [u'holder', u'which'] -to join : [u'a', u'him'] -been torn : [u'from', u'away'] -violence of : [u'the'] -anyone having : [u'a'] -let you : [u'know', u'see'] -beamed on : [u'me'] -this wing : [u'are'] -this wind : [u'swept'] -seemed altogether : [u'past'] -mine and : [u'began'] -down four : [u'golden'] -asked several : [u'practical'] -advertisement sheet : [u'of'] -doubled it : [u'over'] -, bushy : [u','] -absolutely follow : [u'my'] -He rose : [u'as'] -fagged by : [u'a'] -quietly. : [u'It', 'PP'] -quietly, : [u'sings', u'sir', u'we'] -Old as : [u'is'] -in these : [u'little', u'days', u'rooms', u'recent', u'parts', u'deserted', u'works'] -by considering : [u'the'] -which all : [u'this', u'my'] -sat all : [u'this'] -unwise to : [u'place'] -name was : [u'new', u'William', u'strange', u'indeed'] -bullion is : [u'much'] -and Mary : [u'my'] -grass and : [u'a', u'of'] -a villain : [u'would', u','] -emotion in : [u'a'] -gold convoy : [u'came'] -granting the : [u'son'] -intentions and : [u'has'] -anyone from : [u'coming'] -work on : [u'which', u'a'] -some band : [u'of'] -work of : [u'the'] -a sudden : [u'blow', u'pluck', u'ejaculation', u'idea', u'effort', u'light', u'buzzing', u'turn', u'indisposition'] -s affections : [u'from'] -org While : [u'we'] -and thought : [u'little'] -I charged : [u'with'] -from several : [u'printed'] -the dull : [u'neutral', u'eyes'] -common crowd : [u'of'] -made up : [u'his', u'her', u'my', u'all', u'your', u'."', u'about', u'that', u',', u'.'] -such complete : [u'information'] -walk on : [u'Thursday'] -but come : [u"!'"] -If we : [u'could', u'were'] -her which : [u'was'] -flattened out : [u'upon'] -from below : [u',', u',"', u'.'] -inspector was : [u'staggered', u'mistaken'] -close by : [u'the'] -so powerful : [u'an'] -brought a : [u'pack', u'tinge', u'gush', u'gentleman'] -looking eagerly : [u'into'] -seen and : [u'observed'] -wedding breakfast : [u'."'] -circumstances you : [u'would'] -night and : [u'ran', u'running', u'bustled', u'find'] -of beef : [u'from'] -my brother : [u',', u'died'] -lamp from : [u'him'] -not use : [u'it'] -My eye : [u'caught'] -stick upon : [u'the'] -shadows there : [u'glimmered'] -sable. : [u'Born'] -: April : [u'18'] -some traces : [u'of'] -Holmes caught : [u'me'] -full refund : [u'of'] -amount of : [u'writing', u'foresight'] -accompli. : ['PP'] -foremost citizens : [u'of'] -, freckled : [u'like'] -happened when : [u'Mr'] -yet the : [u'result'] -and contrition : [u'which'] -seeing the : [u'coronet'] -slip through : [u'my'] -confederate? : [u'A'] -in compliance : [u'with'] -father expiring : [u'upon'] -drew one : [u'of'] -solely through : [u'the'] -think myself : [u'that'] -covered their : [u'traces'] -me anxious : [u'to'] -" Your : [u'Majesty', u'cases', u'hands', u'experience', u'French', u'father', u'own', u'reasoning', u'beer', u'sister', u'presence', u'morning', u'son', u'boy'] -I slink : [u'away'] -loitering here : [u'always'] -so disturbed : [u'and'] -despaired of : [u'."'] -take up : [u'as'] -the right : [u'side', u'bell', u'forefinger', u'hand', u'must', u'leg', u'path', u'and', u'is', u',', u'time', u'track'] -clearer both : [u'to'] -cellar stretched : [u'out'] -station at : [u'which'] -and alternating : [u'from'] -am now : [u'sleeping', u'about'] -little and : [u'indulge'] -left handed : [u',', u'gentleman', u'man'] -in wax : [u'vestas'] -horror and : [u'pity', u'astonishment', u'loathing'] -eight in : [u'the'] -million human : [u'beings'] -already run : [u'to'] -the trivial : [u'."'] -confined to : [u'that', u'Londoners', u'one'] -that two : [u'middle', u'men', u'of'] -of impending : [u'misfortune'] -not see : [u'that', u'how', u'some', u'the', u'anyone', u'you'] -me arrested : [u'at'] -the normal : [u'condition'] -gas jet : [u'.'] -Vere St : [u'.'] -very light : [u'.'] -disclaim all : [u'liability'] -the carriage : [u'to', u'and', u',', u'.', u'came', u'drove', u'go'] -with coppers : [u'.'] -refreshingly unusual : [u'.'] -isolation and : [u'of'] -says about : [u'outdoor'] -Lascar scoundrel : [u'of'] -in no : [u'less', u'way', u'very'] -a court : [u'of'] -body exhibited : [u'no'] -mask," : [u'continued'] -you saved : [u'him'] -' WITH : [u'NO'] -wavering down : [u'upon'] -hedges stretching : [u'from'] -bedroom that : [u'morning'] -merest fabrication : [u','] -and disappointed : [u'man'] -voice was : [u'gentle', u'just'] -keeps off : [u'other'] -word for : [u'it'] -a claim : [u'to', u".'", u'.', u'that'] -glasses a : [u'little'] -on with : [u'my', u'Mr', u'you', u'your'] -one feasible : [u'explanation'] -He included : [u'us'] -time might : [u'be'] -quarters received : [u'.', u".'"] -bald in : [u'the'] -confidant. : [u'They'] -confidant, : [u'the'] -come to : [u'a', u'the', u'night', u'light', u'consult', u'harm', u'that', u'live', u'me', u'an', u'you', u'us', u'his', u'stay', u'believe', u'?"', u'Stoke', u'these', u'my', u'Winchester'] -Was she : [u'his', u'in'] -no answering : [u'smile'] -catch some : [u'allusion', u'glimpse'] -horrible exposure : [u'of'] -nice a : [u'bell'] -Absolutely none : [u'."'] -faced fellow : [u'standing'] -inner flap : [u','] -meaning I : [u'have'] -free education : [u'and'] -, come : [u',', u'what', u'.'] -coloured velvet : [u','] -this lady : [u"'", u'in', u',', u'who'] -full upon : [u'me'] -be deeply : [u'distrusted'] -s fire : [u'.'] -Pon my : [u'word'] -aristocratic club : [u','] -terrible than : [u'the'] -, noblest : [u','] -staccato fashion : [u','] -who might : [u'play', u'give'] -as puzzled : [u'as'] -Foundation at : [u'the'] -dreadful end : [u'of'] -just beginning : [u'to'] -could manage : [u'it', u'there'] -, lost : [u'sight'] -beside you : [u'.'] -life of : [u'it', u'martyrdom', u'an'] -' slurred : [u'and'] -maid and : [u'her'] -orange, : [u'brick'] -Your boy : [u','] -guide stopped : [u'and'] -tops with : [u'rich'] -a gaping : [u'fireplace'] -object for : [u'his'] -life or : [u'in'] -attempted to : [u'ascend'] -as bachelors : [u'in'] -the songs : [u'and'] -taken a : [u'strong', u'sudden', u'quick'] -formed local : [u'branches'] -his shoulders : [u'was', u'. "', u',', u'bowed', u'.', u'and'] -recognised character : [u'in'] -for taking : [u'an'] -making love : [u'himself'] -rocket, : [u'fitted', u'rushed'] -and devote : [u'an'] -He answered : [u'that'] -that colour : [u'.'] -heels came : [u'the'] -charming a : [u'young'] -trouble about : [u'my'] -deal table : [u','] -I have : [u'seldom', u'changed', u'both', u'no', u'just', u'come', u'heard', u'one', u'already', u'to', u'been', u'not', u'made', u'more', u'hopes', u'seen', u'the', u'listened', u'ever', u'got', u'a', u'in', u'lost', u'only', u'nothing', u'known', u'often', u'some', u'every', u'never', u'an', u'royal', u'had', u'scored', u'found', u'trained', u'given', u'devoted', u'here', u'alluded', u'caught', u'done', u'ordered', u'driven', u'always', u'learned', u'grasped', u',', u'sinned', u'led', u'now', u'none', u'brought', u'peeped', u'lived', u'felt', u'endeavoured', u'told', u'spun', u'them', u'spent', u'my', u'excellent', u'added', u'hoped', u'used', u'spoken', u'watched', u'little', u'received', u'taken', u'sworn', u'read', u'reason', u'bored', u'longed', u'it', u'almost', u'during', u'reasons', u'described', u'thought', u'myself', u'confided', u'traced', u'said', u'."', u'really', u'kept', u'shown', u'drawn', u'determined', u'very', u'nearly', u'solved', u'notes', u'treated', u'!--', u'asked', u'three', u'spoiled', u'.', u'opened', u'misjudged', u'figured', u'touched', u'devised', u'promised', u'met', u'gathered', u'surprised', u'frequently'] -world. : [u'It', 'PP', u'Now'] -lasting any : [u'longer'] -world, : [u'to', u'and', u'for'] -hurried words : [u','] -Has it : [u'returned'] -Colonel Openshaw : [u'.', u'had'] -nervous clasping : [u'and'] -bustled off : [u'upon'] -he wore : [u'across', u'tinted', u'in', u'some'] -rain of : [u'charity'] -little mystery : [u'.'] -I suspected : [u'.'] -ended by : [u'doing'] -thoroughly understand : [u'the'] -, goes : [u'Sherlock', u'out'] -remarkable brilliant : [u'which'] -your real : [u','] -was Isa : [u'Whitney'] -to cringe : [u'and'] -. Whoa : [u','] -which our : [u'visitor', u'fads'] -contains 2 : [u','] -yesterday. : ['PP'] -how crushing : [u'a'] -yesterday, : [u'some', u'which', u'occurred', u'and'] -winds, : [u'ate', u'and'] -facts of : [u'the'] -filled a : [u'shelf'] -that case : [u'I', u'we', u','] -his gossip : [u'.'] -bang out : [u'of'] -suited me : [u'so'] -my acquaintance : [u'of'] -harvest which : [u'he'] -8. : [u'txt', u'zip', 'PP', u'You'] -have misjudged : [u'him'] -, see : [u'that', u'Sections'] -inquiries," : [u'said'] -unusual boots : [u'!'] -the children : [u',"'] -, set : [u'fire', u'his', u'forth'] -of watered : [u'silk'] -the barricade : [u'which'] -made it : [u'a', u'possible', u'impossible', u'clear'] -is only : [u'one', u'five', u'just', u'found', u'where', u'now', u'she', u'fair'] -called last : [u'week'] -sob heavily : [u'into'] -had shown : [u'Horner', u'signs', u". '"] -their united : [u'strength'] -horsey men : [u'.'] -himself master : [u'of'] -good aunt : [u'at'] -look forward : [u'to'] -hoarse yell : [u'of'] -incorrigible, : [u'and'] -, clear : [u'whistle'] -a yellow : [u'line', u'backed'] -maiden sister : [u','] -at Harrow : [u'.', u','] -hardly explain : [u'to', u'it'] -so astute : [u'a'] -of bed : [u','] -dimly through : [u'them'] -side was : [u'a'] -be one : [u'of', u'to'] -turn of : [u'affairs'] -cold beef : [u'and'] -reigning families : [u'of'] -, portly : [u','] -support. : ['PP'] -her with : [u'a', u'the'] -Scotland one : [u'week'] -cab together : [u','] -follows. : ['PP'] -am saving : [u'a'] -for begging : [u'?"'] -undoubtedly to : [u'be'] -as truly : [u'as'] -, after : [u'the', u'all', u'a', u'opening', u'passing', u'he', u'following', u'we', u'going', u'what'] -this horrible : [u'man', u'affair'] -about round : [u'my'] -Farm upon : [u'the'] -did also : [u','] -as taken : [u'out'] -I daresay : [u'that', u'.'] -this crowd : [u'for'] -' ll : [u'do', u'be', u'crack', u'swing', u'see', u'tell', u'checkmate', u'have', u'go', u'come', u'know', u'state', u'take', u'lock', u'never', u'find', u'set', u'answer', u'swear', u'call', u'throw', u'serve', u'remember'] -crop came : [u'down'] -clenched hands : [u'in'] -confederate that : [u'the'] -been good : [u'enough'] -might still : [u'flatter'] -to attain : [u'than'] -are hinting : [u'at'] -narrated by : [u'this'] -warning to : [u'them'] -presuming that : [u'what'] -seated himself : [u'and'] -case," : [u'he', u'I', u'said'] -mastiff. : [u'I', 'PP'] -she closed : [u'and', u'the'] -night should : [u'bring'] -. Wilson : [u',', u'?"', u'. "', u'?', u"!'", u'.', u"'"] -early hours : [u'of'] -occasion some : [u'months'] -his known : [u'eccentricity'] -by returning : [u'to'] -of hope : [u'which', u'back'] -reasoning and : [u'observing', u'extraordinary'] -a cart : [u'containing'] -pipe dangling : [u'down'] -me something : [u'in'] -be to : [u'get', u'him', u'me', u'open', u'your'] -bank what : [u'they'] -sign when : [u'it'] -secure, : [u'and'] -there you : [u'ask'] -about Miss : [u'Adler'] -, performed : [u','] -that afternoon : [u'so'] -His chin : [u'was'] -this fail : [u','] -companion speedily : [u'overtook'] -good and : [u'kind'] -on him : [u'than', u'yet', u','] -times three : [u'times'] -any pretext : [u'set'] -robbery in : [u'order'] -driven several : [u'miles'] -If she : [u'does', u'were', u'had', u'can'] -lame. : ['PP'] -from Mrs : [u'.'] -bottom at : [u'last'] -arrange the : [u'extracts'] -our time : [u','] -Oxford Street : [u'to', u'.'] -not worth : [u'your'] -Early that : [u'morning'] -of laurel : [u'bushes'] -land on : [u'the'] -You fail : [u','] -it clearer : [u'.'] -t best : [u'pleased'] -re mad : [u'!'] -her confidential : [u'maid'] -as if : [u'uncertain', u'the', u'it', u'to', u'you', u'she', u'they', u'he', u'on', u'a', u'I'] -deep tones : [u'of'] -comfortable, : [u'easy'] -stepping into : [u'the'] -worry about : [u'my'] -Sir George : [u'Burnwell', u'and', u"'"] -. Jones : [u','] -frame of : [u'mind'] -marriage would : [u'mean', u'be'] -as it : [u'is', u'should', u'was', u'appeared', u'might', u'would', u'happens', u'seemed', u'appears', u'looks', u'afterwards', u'has', u'happened', u'were', u'goes', u'did', u'occurred', u'seems'] -coloured tint : [u'.'] -permission and : [u'without'] -as is : [u'the', u'all', u'in'] -Or to : [u'sit', u'cut'] -exchanged for : [u'the'] -sunk upon : [u'his'] -notice which : [u'I'] -depend upon : [u'the', u'your', u'it', u'my'] -still have : [u'the'] -impressed by : [u'the', u'their'] -her joy : [u'. "'] -the inquiry : [u'."', u'.'] -is clear : [u'.', u'enough', u'and', u'from', u'that'] -true solution : [u'of'] -item in : [u'another'] -My groom : [u'and'] -so lonely : [u'and'] -some thirty : [u'years'] -of half : [u'and', u'a'] -amount to : [u'88', u'27'] -mine if : [u'I'] -loved each : [u'other'] -Most certainly : [u'it'] -the day : [u'when', u'and', u'.', u'before', u'of', u',', u'which', u'after'] -Severn, : [u'found'] -an unsolved : [u'problem'] -the cathedral : [u','] -my troubles : [u'and'] -it through : [u'the', u'this'] -the iron : [u'safe'] -first and : [u'was', u'looked', u'third'] -matter out : [u','] -above your : [u'right'] -page boy : [u','] -certainly among : [u'the'] -not sink : [u'.'] -put their : [u'own'] -time that : [u'I', u'we', u'he', u'their', u'she', u'the', u'a', u'no', u'this', u'her'] -but beyond : [u'that'] -the words : [u'when', u'. "', u'of', u':', u'came', u'I'] -also all : [u'the'] -a frightened : [u'horse'] -together by : [u'that'] -alarm of : [u'fire'] -which seemed : [u'to', u'the', u'quite'] -protruded out : [u'of'] -a finer : [u'field'] -murderers of : [u'John'] -. Problems : [u'may'] -us no : [u'suggestive'] -the advice : [u'of', u'which'] -free access : [u'to'] -stones turned : [u'over'] -beryl. : [u'Boots'] -newspaper shop : [u','] -business which : [u'was'] -to understand : [u'the', u'it', u'a'] -' Cooee : [u"'", u"!'"] -chance; : [u'but'] -so I : [u'just', u'bought', u'offered', u'wrote', u'deduced', u'smoked', u'trust', u'came', u'made', u'dressed', u'tied', u'shall', u'picked', u'went', u'congratulate', u'think', u'locked', u'retired', u'took'] -indeed committed : [u'an'] -my ring : [u'and'] -circumstances, : [u'and'] -s business : [u'to', u'at', u'is', u'was', u'papers'] -circumstances. : [u'Again'] -a crumpled : [u'envelope', u'letter'] -of training : [u'entirely', u'."'] -it must : [u'be', u'have'] -the crucial : [u'points'] -settle this : [u'little'] -coach house : [u'.'] -send it : [u'on'] -must really : [u'ask'] -any moment : [u'be', u'.'] -was clearly : [u'to', u'so', u'never', u'the'] -squat diamond : [u'shaped'] -light through : [u'the'] -tracks for : [u'six'] -fell to : [u'the'] -compress the : [u'earth'] -round impressions : [u'on'] -two people : [u'saw'] -the original : [u'building', u'disturbance'] -also is : [u'the'] -The grass : [u'was'] -forward and : [u'the', u'his', u'sinking', u'looked', u'patting', u'shaking', u'peering', u'had', u'confronted'] -be fatal : [u',', u'to'] -or eight : [u'different', u'feet'] -has dried : [u'itself'] -, take : [u'my', u'care'] -also in : [u'the', u'a', u'his'] -was determined : [u'to', u'that'] -sheer frenzy : [u'of'] -Of her : [u'I'] -by name : [u','] -amalgam which : [u'has'] -you so : [u'much', u'.'] -some possible : [u'explanation'] -my maid : [u','] -only half : [u'buttoned', u'an', u'a'] -then only : [u'when'] -different matter : [u'.'] -edges of : [u'the'] -east of : [u'the', u'London'] -last which : [u'was'] -anything very : [u'funny', u'peculiar'] -always to : [u'say', u'remember', u'lock', u'get'] -. Etherege : [u','] -postmarks of : [u'those'] -settled on : [u'him'] -beside him : [u'.', u'for', u',', u'on'] -beside his : [u'chair'] -their letter : [u'.'] -, middle : [u'sized', u'aged'] -rending, : [u'tearing'] -been warned : [u'against'] -suspicious, : [u'I', u'because'] -my intrusion : [u','] -Baker is : [u'an', u'a'] -wages so : [u'as'] -yellow line : [u','] -clear voice : [u'into'] -go for : [u'very', u'days', u'nothing'] -winding staircases : [u','] -35 walking : [u'through'] -said Vincent : [u'Spaulding'] -Just see : [u'how'] -grief has : [u'got'] -from immediately : [u'behind'] -travels for : [u'Westhouse'] -considerable share : [u'in'] -suggested by : [u'his'] -the long : [u'drive', u'swash', u'run', u'lash', u'cherry'] -them he : [u'has'] -extent permitted : [u'by'] -grief had : [u'been'] -present any : [u'feature'] -and reckless : [u','] -Philadelphia), : [u'which'] -the time : [u',', u'that', u'.', u'stated', u'when', u'of', u'rather', u'which', u'in', u'and', u'?"', u'the'] -know who : [u'sold'] -seems absurdly : [u'simple'] -Whose, : [u'then'] -think with : [u'some'] -remained indoors : [u'all'] -French offices : [u','] -Francisco, : [u'Cal', u'a'] -in swiftly : [u'.'] -nobleman swung : [u'his'] -re angry : [u','] -chief feature : [u'."'] -shoulders bowed : [u','] -with premature : [u'grey'] -has frequently : [u'brought'] -monarch and : [u'the'] -forgive anything : [u'that'] -is Lestrade : [u'!'] -business man : [u'.'] -caused him : [u'to'] -own little : [u'adventures', u'methods', u'income', u'deposit', u'practice', u'office', u'things'] -with politics : [u','] -close in : [u'swiftly'] -he passed : [u'over', u'away', u'his'] -very formidable : [u',"'] -house thus : [u'apparelled'] -,-- MARY : [u".'"] -maid tapping : [u'at'] -this estate : [u','] -him once : [u'a'] -heels, : [u'and', u'with'] -up we : [u'waited'] -Unless this : [u'is'] -lined with : [u'flame'] -." VII : [u'.'] -against accepting : [u'unsolicited'] -sat huddled : [u'up'] -its least : [u'important'] -the average : [u'story'] -far side : [u'of'] -looking pale : [u'and'] -dropping in : [u',"'] -allow him : [u'to'] -, springing : [u'to'] -it closing : [u'in'] -a wrinkled : [u'velvet'] -talking with : [u'his'] -grin of : [u'rage'] -business nor : [u'anything'] -good worker : [u'.'] -Shipping Company : [u'.'] -serious news : [u'this'] -ll answer : [u'her'] -would burst : [u'out'] -. Think : [u'of'] -the allusions : [u'to'] -apart. : ['PP'] -of poetry : [u'.'] -these bedrooms : [u'the'] -manage there : [u'for'] -or group : [u'of'] -Then Sherlock : [u'Holmes'] -how strange : [u'it'] -dates and : [u'names'] -The ideal : [u'reasoner'] -allowance, : [u'that'] -these reasons : [u'I'] -and shone : [u'on'] -and trim : [u'side', u'as'] -water in : [u'your'] -not charge : [u'anything', u'a'] -woods which : [u'lined'] -which should : [u'settle', u'have'] -Thursday and : [u'came', u'Friday'] -s cruelty : [u'to'] -the creature : [u'flapped', u'hiss', u','] -their violence : [u'that'] -so formidable : [u'an'] -He shrugged : [u'his'] -lunch on : [u'the'] -forming his : [u'conclusions'] -capable performer : [u'but'] -With these : [u'he', u'I'] -office after : [u'me'] -a likely : [u'ruse'] -an oath : [u". '"] -state the : [u'case'] -ill dressed : [u'vagabond'] -trifle and : [u'yet'] -single out : [u'the'] -not knowing : [u'what'] -to engage : [u'in'] -, low : [u'room', u','] -the morose : [u'Englishman'] -his chambers : [u'.'] -fierce energy : [u'of'] -curling red : [u'feather'] -and fixed : [u'one'] -sound him : [u'upon'] -and cigarette : [u'tobacco'] -Boone. : ['PP'] -Boone, : [u'his', u'and', u'as'] -the capture : [u'of'] -spare? : [u'Have'] -income," : [u'he'] -, AND : [u'ANY'] -Holmes and : [u'I', u'ran', u'submitted'] -its force : [u'.'] -s The : [u'Adventures'] -anything for : [u'copies'] -it continues : [u'.'] -she will : [u'do', u'refuse', u'not', u'have'] -gentleman ask : [u'you'] -met her : [u'end', u'mysterious', u'several', u'slipping'] -charge anything : [u'for'] -answering the : [u'look', u'other'] -counsellor, : [u'and'] -" Upon : [u'what'] -yours with : [u'its'] -How came : [u'the'] -a supper : [u'and'] -upon these : [u'things'] -the wound : [u', "', u','] -James never : [u'did'] -much influence : [u'over'] -the incident : [u',', u'of'] -a thing : [u'is', u'as', u'which', u'like', u'in', u'beyond'] -wind swept : [u'market'] -thrown in : [u'your'] -ran free : [u'in'] -lit street : [u'. "'] -threw across : [u'his'] -glints and : [u'sparkles'] -English provincial : [u'town'] -families and : [u'to'] -sickness came : [u'over'] -want any : [u'friends'] -served to : [u'weaken', u'turn'] -dead of : [u'the'] -small lateral : [u'columns'] -is old : [u'and'] -dark leaves : [u'shining'] -a Project : [u'Gutenberg'] -recovered something : [u'of'] -more cunning : [u'than'] -whose evidence : [u'is'] -the sharp : [u'sound', u'clang', u'rattling'] -to push : [u'her'] -warnings of : [u'the'] -have detected : [u'and'] -while we : [u'resided'] -The latter : [u'led', u'is'] -a perplexing : [u'position'] -bent her : [u'to'] -floor on : [u'which'] -how dangerous : [u'it'] -eightpence for : [u'a'] -her neck : [u',', u'and'] -Holmes pulled : [u'me', u'down'] -his faults : [u',', u'as'] -Sophy Anderson : [u'",'] -Beeches ADVENTURE : [u'I'] -other little : [u'things', u'weaknesses'] -glances at : [u'her', u'the'] -short stock : [u'with'] -. Godfrey : [u'Norton'] -a long : [u',', u'cigar', u'journey', u'time', u'silence', u'series', u'draught', u'day', u'fight', u'term', u'frock', u'thin', u'drawn', u'grey', u'building', u'ulster', u'newspaper', u'mirror', u'light'] -had promised : [u'to'] -india rubber : [u'bands'] -feet again : [u'and'] -while Wooden : [u'leg'] -She said : [u'nothing'] -chuckled heartily : [u'. "'] -value your : [u'advice'] -first to : [u'Gross', u'take', u'have', u'rush'] -Rucastle came : [u'down', u'out'] -is Helen : [u'Stoner'] -very prompt : [u'and'] -the fellow : [u'more', u'says'] -his wont : [u','] -platform. : [u'In', 'PP'] -platform, : [u'his'] -wet foot : [u'had'] -the ice : [u'crystals'] -foppishness, : [u'with'] -run for : [u'it'] -so cunning : [u'that'] -he gasped : [u'.', u'. "'] -ventilate. : [u'With'] -beat. : [u'The'] -only a : [u'very', u'few', u'joke', u'lad', u'quarter', u'foot', u'line', u'loose'] -and danger : [u'also'] -been unfortunate : [u'enough'] -pass backward : [u'and'] -himself, : [u'with', u'as', u'covered', u'and', u'shrugged', u'for', u'a'] -himself. : [u'He', 'PP', u'I'] -is John : [u'Openshaw', u'Robinson'] -formalities, : [u'have'] -herself. : [u'Father', u'While', 'PP'] -work associated : [u'in', u'with'] -utilise all : [u'the'] -put there : [u'a'] -almost come : [u'to'] -, asked : [u'for', u'me'] -Pool. : ['PP', u'It'] -have lived : [u'rent', u'happily'] -Pool, : [u'which', u'and', u'with'] -led up : [u'to'] -have afforded : [u'a'] -led us : [u'in', u'down'] -difficulty in : [u'recognising', u'the', u'engaging', u'undoing', u'entering', u'finding', u'getting'] -. " Hold : [u'up'] -Morning Chronicle : [u'of'] -, stepping : [u'over'] -calling, : [u'with'] -any mystery : [u'in'] -seven years : [u'of', u'in', u"'", u'that', u','] -She hurried : [u'from'] -mad! : [u'Here'] -mad. : [u'Sometimes', u'I'] -mad, : [u'and', u'Elise', u'unreasoning'] -numbers of : [u'the'] -the recesses : [u'of'] -greater perils : [u'than'] -We rattled : [u'through'] -his mischance : [u'in'] -avoided the : [u'society'] -reared itself : [u'from'] -colleague has : [u'been'] -the electric : [u'blue'] -with chagrin : [u'and'] -and shattered : [u','] -that not : [u'only'] -barque' : [u'Lone'] -is hardly : [u'a', u'safe'] -observed the : [u'proceedings'] -of hers : [u'possibly'] -barque" : [u'Sophy'] -the web : [u'they'] -bedroom window : [u'is', u'was', u'about'] -his breast : [u',', u'and'] -that mean : [u'?'] -orders that : [u'Arthur'] -future only : [u'could'] -red covered : [u'volume'] -very bed : [u'in'] -death of : [u'Wallenstein', u'the', u'Dr'] -if an : [u'action'] -of ribbed : [u'silk'] -training entirely : [u','] -insanely, : [u'in'] -are his : [u'keys'] -than anyone : [u'else'] -Within there : [u'was'] -Small, : [u'stout'] -distributing, : [u'performing'] -Paddington Station : [u'.', u','] -but sat : [u'with'] -collection will : [u'remain'] -voters and : [u'the'] -he sealed : [u'it'] -something interesting : [u'!"'] -PGLAF), : [u'owns'] -not snap : [u'the'] -you for : [u'a', u'some', u'this', u'having', u'your', u'if', u'any', u'the', u'damages'] -him nearly : [u'every'] -inspection of : [u'his', u'the'] -did the : [u'bushy', u'Sholtos', u'coroner', u'gipsies', u'same', u'police'] -strange tales : [u'of'] -dark incidents : [u'of'] -seen upon : [u'the'] -insensibility that : [u'evening'] -is less : [u'and', u'illuminated', u'than'] -, upon : [u'a', u'the', u'terms', u'which', u'my'] -venomous beast : [u'.'] -rattle off : [u'down'] -agent. : [u'I'] -you shave : [u'by'] -gun and : [u'strolled', u'held'] -bag as : [u'he'] -was unable : [u'to'] -There could : [u'be'] -be got : [u'off'] -pride and : [u'pulled', u'the'] -wide awake : [u','] -than his : [u'deserts', u'left', u'own', u'companion', u'words', u'violence'] -me know : [u'when', u'your', u'what'] -plays no : [u'part'] -silence that : [u'foul'] -better view : [u','] -hard fight : [u'against'] -and wondering : [u'lazily', u'what'] -light into : [u'this'] -Company. : [u'Now'] -bar across : [u'the'] -end without : [u'putting'] -second copy : [u'is'] -, much : [u'may', u'the', u'more', u'younger', u'paperwork'] -? Would : [u'she'] -own delicate : [u'and'] -absolutely quiet : [u'one'] -Seldom goes : [u'out'] -swordsman, : [u'lawyer'] -first hansom : [u','] -thousand things : [u'come'] -s the : [u'worst', u'list', u'last', u'big', u'common', u'village', u'end'] -clutching at : [u'the'] -his cloak : [u'and'] -The centre : [u'door'] -did very : [u'wisely'] -also was : [u'opened'] -life into : [u'each'] -shouted, : [u'struggling', u'beside'] -fasteners which : [u'a'] -But then : [u',', u'it', u'the'] -to refuse : [u'any', u'?"'] -the secret : [u',', u'was'] -at double : [u'the'] -certain that : [u'it', u'some', u'he', u'I', u'you'] -immense stream : [u'of'] -unpleasantness. : [u'Do'] -keenly at : [u'the', u'Holmes', u'her'] -not overhear : [u'what'] -no word : [u'has'] -Paddington which : [u'would'] -a weakening : [u'nature'] -Sand. : ['PP'] -protested that : [u'he'] -a queen : [u'she'] -, " of : [u'course'] -from ennui : [u',"'] -taking your : [u'money'] -the certainty : [u'that'] -wake up : [u','] -police!' : [u'I'] -, " on : [u'the'] -Read it : [u'aloud', u'!"'] -which lead : [u'up', u'towards'] -innocence. : ['PP', u'It'] -the neighbourhood : [u'in', u'.', u',', u'and', u'of'] -scheming man : [u'.'] -.' But : [u'I'] -applicable taxes : [u'.'] -appeared surprised : [u'at'] -sluggishly beneath : [u'us'] -knocked off : [u'the'] -or waned : [u'in'] -me hopes : [u'."', u'?"'] -Wait a : [u'little'] -," she : [u'answered', u'cried', u'said', u'began'] -balancing whether : [u'I'] -knock sleepy : [u'people'] -regards your : [u'hair'] -expected them : [u'to'] -look for : [u'help'] -are as : [u'good', u'I'] -with hanging : [u'jowl'] -Hosmer wrote : [u'and'] -are at : [u'their', u'present', u'liberty'] -drove up : [u'to', u'we'] -to sell : [u'it', u'his'] -delight belonged : [u'to'] -appearing on : [u'the'] -Edward Street : [u','] -something quite : [u'unforeseen'] -fold over : [u'his'] -normal condition : [u'of'] -; " it : [u'is', u"'", u'comes'] -birds to : [u'a'] -misfortune impressed : [u'me'] -her. : ['PP', u'It', u'We', u'What', u'And', u'In', u'So'] -Burnwell is : [u'.'] -her, : [u'but', u'had', u'and', u'for', u'beckoning', u'Watson', u'whispered', u'the', u'as', u'she', u'you', u'he'] -the felt : [u'by'] -works to : [u'protect'] -her! : [u'I'] -every evil : [u'passion'] -between you : [u'and'] -her; : [u'but'] -learned something : [u'!'] -her? : [u'It'] -proceed with : [u'your'] -still drunk : [u'?"'] -minutes until : [u'we'] -supper and : [u'then', u'follow'] -the reeds : [u'which', u'.'] -Adler?" : [u'I'] -10s. : [u'Every'] -the groom : [u'.'] -second my : [u'sister'] -vilest alleys : [u'in'] -dread which : [u'it'] -were shown : [u'up', u'to'] -laid beside : [u'his'] -report, : [u'where'] -not been : [u'drawn', u'able', u'over', u'in', u'for', u'home', u'swept', u'brushed', u'so', u'wasted', u'heard', u'ascertained', u'disappointed', u'slept', u'cleared', u'standing', u'fed'] -was caused : [u'by'] -like anything : [u'of'] -his bed : [u',', u'and'] -perhaps as : [u'well'] -tire, : [u'and'] -of importance : [u'to', u',', u'that', u'.'] -on that : [u'absolute'] -perhaps that : [u'you'] -the panel : [u'with'] -sitting. : [u'He'] -exert ourselves : [u'to'] -Holmes after : [u'a'] -her luggage : [u'when'] -got him : [u'here'] -the weight : [u'of', u'would'] -Balzac once : [u'.'] -finger. : ['PP', u'All'] -very perturbed : [u'expression'] -finger, : [u'which'] -pursuers. : [u'But'] -do tell : [u'him'] -sharp for : [u'dinner'] -something be : [u'?'] -average takings : [u'but'] -tears. : [u'I'] -positions. : [u'These'] -house of : [u'Dr', u'Mr', u'white'] -exclude them : [u'when'] -' clock : [u',"', u'I', u'precisely', u'in', u'this', u',', u'he', u'tomorrow', u'that', u'?"', u'when', u'Lestrade', u'before', u'is', u'on', u'she', u'train', u'the', u'.', u'at', u'Sherlock'] -house on : [u'the', u'fire'] -may arrive : [u'at'] -member of : [u'the', u'your', u'an'] -., glass : [u'sherry'] -anywhere. : [u'He'] -his motives : [u'were'] -brisk manner : [u'of'] -She dropped : [u'her'] -Right of : [u'Replacement'] -pie with : [u'a'] -' escapade : [u'with'] -my night : [u'of', u'could', u"'"] -lay deep : [u'upon'] -a dummy : [u',"', u','] -Kramm, : [u'a'] -of criminals : [u'.'] -Kramm. : ['PP'] -new offices : [u'.'] -are worth : [u'considering'] -BALLARAT. : ['PP'] -carried out : [u'two', u'of', u'about', u'my'] -Shillings have : [u'not'] -affairs have : [u','] -His form : [u'had'] -visitor, " : [u'the', u'and', u'is'] -her pen : [u'too'] -still pressed : [u'together'] -9, : [u'1890'] -9. : ['PP', u'If'] -hence my : [u'preference'] -the proper : [u'authorities'] -you fasten : [u'all'] -paying over : [u'all'] -realise as : [u'we'] -invisible but : [u'unnoticed'] -shown. ' : [u'Why'] -which this : [u'advertisement', u'man'] -came before : [u'me'] -in excavating : [u'fuller'] -a black : [u'mark', u'vizard', u'veil', u'gap', u'felt', u'bar', u'top', u'canvas'] -little birds : [u','] -are nearing : [u'the'] -the guilty : [u'parties'] -one owns : [u'a'] -from what : [u'I', u'you', u'that'] -greasy backed : [u'one'] -named Oakshott : [u','] -involved by : [u'your'] -and questionable : [u'memory'] -never did : [u'wish', u',', u'it'] -acquaintance to : [u'Baker'] -the rumble : [u'of'] -avoiding the : [u'sensational'] -, office : [u'like'] -the manner : [u'which', u'and'] -disregarding my : [u'remonstrance'] -then down : [u'again'] -a wedding : [u'morning', u'dress'] -voice into : [u'an'] -he slept : [u'badly'] -" Threatens : [u'to'] -forefinger, : [u'and', u'but'] -forefinger. : [u'Her'] -him from : [u'extreme', u'America', u'the', u'New', u'endeavouring'] -to start : [u'upon', u'in'] -signature or : [u'address'] -missed all : [u'that'] -my thumb : [u',', u'used', u'had', u'and'] -." Again : [u'Holmes'] -analysis of : [u'cause', u'the'] -and small : [u'like'] -with Sherlock : [u'Holmes'] -grasping Sherlock : [u'Holmes'] -fortunate enough : [u'to'] -same to : [u'you'] -4700 pounds : [u'for'] -first is : [u'Dr'] -elements blown : [u'in'] -youth, : [u'either', u'though', u'took', u'it'] -be discreet : [u'and'] -provision of : [u'this'] -same post : [u'brought'] -any doubts : [u'which'] -very easy : [u'matter', u'.'] -" Seeing : [u'that'] -forward against : [u'the'] -Its power : [u'was'] -This would : [u'be'] -suggestiveness of : [u'thumb'] -a Dane : [u','] -no shaking : [u'them'] -straight off : [u','] -father make : [u'any'] -less would : [u'bring'] -discover what : [u'is'] -say of : [u'this'] -have turned : [u'his'] -evidence to : [u'corroborate', u'the'] -lady entered : [u'the'] -say on : [u'a'] -landau with : [u'their'] -which king : [u'?"'] -a simple : [u'case'] -stepdaughter has : [u'been'] -say or : [u'do'] -He led : [u'us'] -own by : [u'will'] -? Could : [u'your', u'you'] -! La : [u'Scala'] -his ways : [u'.', u','] -801) : [u'596'] -funny one : [u',"'] -forever too : [u'late'] -congratulated me : [u'warmly'] -foul and : [u'venomous'] -pulled and : [u'butted'] -what appears : [u'to'] -A SCANDAL : [u'IN'] -on Thursday : [u'and'] -had spent : [u'his', u'the', u'so'] -with expectancies : [u'for'] -gold," : [u'whispered'] -the discrepancy : [u'about'] -the coachman : [u'with', u'had', u','] -deduction and : [u'of'] -from me : [u'.', u',', u",'", u'with'] -Doctor," : [u'murmured', u'he', u'said'] -I understand : [u'that', u',', u'.'] -our plans : [u'."', u'.'] -! You : [u'have', u'seem', u'do', u'are', u"'", u'see', u'want', u'put', u'should', u'say', u'will', u'surprise'] -a wicked : [u'world'] -and gazed : [u'at', u'about'] -nor seen : [u'the'] -that district : [u','] -most of : [u'the', u'my'] -from my : [u'post', u'father', u'old', u'lips', u'right', u'employers', u'bed', u'companion', u'room', u'lamp', u'wound', u'wounded', u'pursuers', u'friends', u'own', u'penetrating'] -the spell : [u'had'] -all very : [u'well', u'quietly'] -pale and : [u'his', u'worn', u'filled', u'gave'] -nitrate of : [u'silver'] -to amuse : [u'myself'] -writer was : [u'on'] -father was : [u'going', u'actually', u'absent', u'a'] -your son : [u"'", u'came', u',', u'knew', u'saw', u'struck', u'.', u';', u'allow'] -the direction : [u'of', u'in'] -matter even : [u'more'] -remained upon : [u'the'] -was empty : [u'.', u','] -will answer : [u'your'] -winding stone : [u'steps'] -things for : [u'the', u'some'] -lit station : [u'after'] -cigar after : [u'all'] -own door : [u'flew'] -husband the : [u'chances'] -drives out : [u'at'] -It gave : [u'even', u'the'] -of use : [u'to', u'."', u';'] -a lot : [u'of'] -a low : [u'voice', u'den', u',', u'whistle', u'ceiling', u'laugh', u'door', u'hill'] -abomination. : [u'I'] -your address : [u'had', u'?"', u'.', u','] -your bird : [u',"'] -I sit : [u'contains'] -a visit : [u'to', u','] -had become : [u'of', u'suddenly', u'a'] -a massive : [u'head', u','] -resources and : [u'borrowed'] -drawn and : [u'grey'] -her wooden : [u'legged'] -my records : [u'."'] -distribute or : [u'redistribute'] -free in : [u'a'] -threw off : [u'my'] -accused, : [u'as'] -often thought : [u','] -page we : [u'have'] -horrible affair : [u'."', u'up'] -of Saxe : [u'Coburg'] -the pick : [u'of'] -at. : [u'It', u'We'] -stood behind : [u'that'] -musician, : [u'being'] -staples. : [u'It'] -his agitation : [u'.'] -swinging lamp : [u','] -. Paul : [u"'"] -and exchanging : [u'visits'] -at? : [u'Let'] -a reward : [u'of'] -mysteries which : [u'had'] -any particular : [u'state', u'paper'] -Opera of : [u'Warsaw'] -man alive : [u'who'] -of electronic : [u'works'] -226 Gordon : [u'Square'] -was while : [u'you'] -year in : [u'my', u','] -white satin : [u'shoes'] -brains out : [u','] -some dreadful : [u'hand'] -Many people : [u'are'] -you will : [u'be', u'know', u'throw', u'find', u'excuse', u'play', u'not', u'allow', u'observe', u'contradict', u'come', u'keep', u'go', u'soon', u'draw', u'readily', u'wait', u'give', u'have', u'look', u'lay', u'recollect', u'leave', u'do', u'state', u'perhaps', u'postpone', u'kindly', u'question', u'succeed', u'break', u'support'] -lit up : [u'his'] -and Archery : [u'and'] -the crisp : [u'rattle', u'smoothness'] -a rake : [u'.'] -the distaff : [u'side'] -unprecedented a : [u'position'] -understand was : [u'what'] -honourable title : [u'of'] -as yet : [u'see'] -positively slovenly : [u'as'] -heavy chamois : [u'leather'] -just now : [u'.', u'?"', u',', u".'", u'by'] -Gutenberg"), : [u'you'] -PIPS When : [u'I'] -see that : [u'there', u'I', u'all', u'you', u'the', u'a', u'both', u'we', u'his', u'it', u'he', u'no', u'Mrs', u'she', u'your', u'two', u'anyone', u'someone', u'our', u'Holmes'] -treated the : [u'singular'] -Holmes took : [u'a', u'up', u'it'] -, anatomy : [u'unsystematic'] -our task : [u'to'] -worm eaten : [u'oak'] -friends would : [u'be'] -not lose : [u'a', u'hope', u'an'] -cleared yet : [u'.'] -have tried : [u'and'] -such an : [u'absolute', u'expenditure', u'hour', u'address', u'offer'] -up beside : [u'the'] -of playing : [u'backgammon'] -enthusiastic and : [u'rubbed'] -large blue : [u'dressing'] -nation. : [u'He'] -easily comply : [u'with'] -such as : [u'his', u'Mr', u'I', u'it', u'might', u'we', u'he', u'my', u'a', u'creation', u','] -shall know : [u'all'] -was round : [u'the'] -Surely. : [u'Bring'] -ill kempt : [u'and'] -examined her : [u'for'] -Frank was : [u'that', u'really', u'all', u'right'] -or Madame : [u','] -how you : [u'deduce', u'work', u'would', u'saved', u'reach'] -to reach : [u'the'] -sit gossiping : [u'here'] -magistrate refused : [u'to'] -black shade : [u'.'] -going the : [u'same'] -a little : [u'more', u'after', u'knot', u'moist', u'off', u'fortune', u'awkward', u'in', u'square', u'funny', u'too', u'souvenir', u'trying', u'and', u'handkerchief', u'purple', u'above', u'bald', u'late', u'worn', u'pale', u'paradoxical', u',', u'quick', u'singular', u'detour', u'reed', u'cry', u'note', u'.', u'monograph', u'good', u'green', u'face', u'help', u'talk', u'blonde', u'slip', u'supper', u'theory', u'paint', u'problem', u'rat', u'shed', u'huffed', u'resentment', u'light', u'cold', u'before', u'breakfast', u'stimulant', u'place', u'close', u'of', u'lower', u'past', u'out', u'bend', u'to', u'faster', u'stately', u'sharp', u'nut', u'."', u'secret', u'clearer', u'disturbed', u'from', u',"', u'reward', u'triangular', u'German', u'startled', u'fancy', u'creature', u'sideways', u'management', u'passage', u'pallet'] -some clothes : [u'and'] -at eleven : [u'o'] -surpliced clergyman : [u','] -could correctly : [u'describe'] -and many : [u'a', u'fees'] -, apart : [u'from'] -a sympathy : [u'between'] -intellectual is : [u'of'] -chamber was : [u'panelled', u'larger'] -any files : [u'containing'] -Armour and : [u'Architecture'] -which shows : [u'that', u','] -very anxious : [u'that', u'to'] -his barmaid : [u'wife'] -was wrongfully : [u'accused'] -Frequently. : ['PP'] -upon conjecture : [u'and'] -who agree : [u'to'] -strong set : [u'aquiline'] -! There : [u'was'] -solved it : [u'?"', u'."'] -scandals have : [u'eclipsed'] -planter in : [u'Florida'] -would induce : [u'the', u'her'] -the north : [u'and', u'side', u','] -: 15 : [u'train', u'."', u".'"] -: 14 : [u'from'] -duties to : [u'my'] -our visitor : [u'had', u'which', u'answered', u'. "', u', "', u"'", u'detailed', u'of'] -lenient view : [u'of'] -at these : [u'scattered', u'lonely'] -roused his : [u'anger'] -drunk, : [u'and'] -cellar like : [u'a'] -. Though : [u'clear'] -or else : [u'he', u'biassed', u'as', u'I'] -somewhat luxuriant : [u','] -so utterly : [u'spoiled'] -drunk; : [u'and'] -slim youth : [u'in'] -me away : [u'to'] -coming from : [u'the'] -and turned : [u'it', u'the', u'his', u'once', u'as', u'quickly', u'back'] -A likely : [u'story'] -to Paris : [u'to'] -the fury : [u'with'] -small rain : [u'of'] -' Why : [u'shouldn'] -a fiver : [u'on'] -called Maudsley : [u','] -in Winchester : [u','] -fast. : [u'I'] -quite enthusiastic : [u'and'] -a trumpet : [u'of'] -' Who : [u'did'] -is Mrs : [u'.'] -for me : [u'to', u',', u'.', u'and', u'?', u'!', u'in', u'lay', u'was'] -gazing up : [u'at'] -vanished away : [u'by', u','] -until four : [u'in'] -the story : [u'makes', u'was', u'of', u'to', u','] -not ventilate : [u'.'] -wheels as : [u'the'] -had caught : [u'his', u'a'] -Lord Backwater : [u'tells', u"'", u','] -Holmes hailed : [u'a'] -, tossing : [u'aside'] -the cringing : [u'figure'] -using a : [u'form'] -lives near : [u'Harrow'] -lay his : [u'hands'] -for my : [u'intrusion', u'week', u'assistance', u'father', u'dear', u'pains', u'own', u'friend', u'skill', u'sister', u'stepfather', u'coming', u'cashier', u'curiosity', u'art'] -. Early : [u'that'] -a spirit : [u'case'] -wander so : [u'continually'] -a horrid : [u'red'] -panted. : ['PP'] -hand when : [u'he', u'I'] -and all : [u'was', u'else', u'that', u'its', u'went', u'the', u'of', u'those', u'associated', u'access'] -cannot, : [u'as', u'take', u'with', u'and'] -to possess : [u';'] -the inhabited : [u'wing'] -body slightly : [u'bent'] -Perfectly so : [u'."'] -Fresh scandals : [u'have'] -Watson? : [u'Could'] -and roused : [u'its'] -Rucastle took : [u'me'] -thick man : [u'with'] -and amid : [u'the'] -maids, : [u'why'] -rascally Lascar : [u'who'] -apparently the : [u'richer'] -said or : [u'to'] -may safely : [u'be', u'trust', u'say'] -twenty seven : [u'years'] -Watson. : [u'And', u'I', u'You', u'Would', u'We', u'He', 'PP', u'Draw'] -tight, : [u'and'] -Watson, : [u'that', u'if', u'who', u'I', u'have', u'before', u'you', u'we', u'let', u'what', u'for', u'and', u'when', u'with', u'our', u'this', u'how', u'without', u'but', u'founded', u'put'] -green, : [u'unhealthy'] -here with : [u'me'] -eyes wandered : [u'continually'] -client may : [u'rest'] -as yours : [u'."', u'.'] -. Folk : [u'who'] -debt to : [u'my'] -alone could : [u'have'] -had brought : [u'a', u'with', u'up', u'back', u'out', u'in', u'the', u'it'] -from Pondicherry : [u',', u'in'] -before this : [u'gentleman', u'.', u'unpleasant'] -been sent : [u'down'] -back again : [u',', u'.'] -to utilise : [u'all'] -produced. : [u'There'] -and gone : [u'.'] -medical experience : [u'would'] -with matters : [u'which'] -Atlantic. : [u'An'] -note in : [u'the'] -good girl : [u'in'] -typewriter, : [u'and'] -he digs : [u'for'] -, Reading : [u','] -land before : [u'they'] -issue of : [u'this'] -by himself : [u'and'] -be," : [u'said'] -to week : [u'between'] -to both : [u'of'] -in most : [u'countries'] -in Middlesex : [u','] -seven hours : [u'I'] -portly client : [u'puffed'] -formed any : [u'definite'] -whip across : [u'your'] -, any : [u'such', u'old', u'agent'] -is thickly : [u'wooded'] -the present : [u'?"', u'case', u'instance', u'moment', u'prices', u'free'] -a Chinese : [u'coin'] -King may : [u'do'] -good with : [u'my'] -middle size : [u','] -Capital and : [u'Counties'] -more developed : [u'."'] -, and : [u'that', u'the', u'alternating', u'occupied', u'clearing', u'finally', u'with', u'to', u',', u'indicated', u'my', u'a', u'throwing', u'since', u'without', u'do', u'saw', u'for', u'he', u'so', u'give', u'which', u'I', u'every', u'hereditary', u'is', u'his', u'then', u'perhaps', u'you', u'those', u'received', u'as', u'returns', u'dashing', u'often', u'knew', u'what', u'it', u'moustached', u'brushed', u'waving', u'of', u'Godfrey', u'before', u'vouching', u'generally', u'there', u'she', u'will', u'at', u'general', u'several', u'they', u'by', u'in', u'took', u'servant', u'became', u'also', u'we', u'an', u'came', u'started', u'how', u'occasionally', u'slow', u'west', u'Pope', u'right', u'some', u'gazed', u'congratulated', u'tugged', u'blotting', u'let', u'seven', u'Mr', u'locked', u'on', u'suited', u'hoped', u'no', u'who', u'indeed', u'McFarlane', u'disappeared', u'yet', u'why', u'forger', u'though', u'be', u'quite', u'personally', u'led', u'not', u'all', u'together', u'such', u'stained', u'felt', u'peep', u'leading', u'vulgar', u'acknowledge', u'her', u'sent', u'shrugged', u'said', u'after', u'Hosmer', u'mother', u'when', u'remember', u'fifth', u'grey', u'Holmes', u'sallow', u'doubly', u'keeps', u'hence', u'from', u'ends', u'danger', u'Turner', u'two', u'among', u'even', u'may', u'having', u'had', u'found', u'over', u'would', u'and', u'this', u'Dr', u'God', u'must', u'once', u'carries', u'shall', u'one', u'written', u'cigarette', u'ushering', u'outstanding', u'Watson', u'our', u'made', u'whatever', u'if', u'say', u'others', u'have', u'probably', u'afterwards', u'rising', u'send', u'leave', u"'", u'were', u'was', u'turning', u'', u'leaning', u'politics', u'self', u'therefore', u'Florida', u'usually', u'C', u'whose', u'tearing', u'pin', u'sobbed', u'sit', u'terraced', u'chins', u'peering', u'unkempt', u'looking', u'instantly', u'put', u'seen', u'lit', u'maybe', u'lived', u'Mrs', u'results', u'explained', u'only', u'ending', u'beside', u'springing', u'smoothing', u'out', u'away', u'brought', u'spent', u'sitting', u'eventually', u'cracked', u'many', u'carrying', u'seeing', u'vanished', u'spotted', u'has', u'could', u'Peterson', u'its', u'read', u'Horner', u'protested', u'these', u'any', u'gave', u'prosperity', u'quick', u'fell', u'take', u'suddenly', u'behind', u'prying', u'hurried', u'knock', u'Hampshire', u'absolutely', u'met', u'rushed', u'revolved', u'drove', u'chimney', u'marked', u'bent', u'hurling', u'pointed', u'ventilators', u'cast', u'still', u'lashed', u'hastened', u'abode', u'laughed', u'joined', u'laid', u'due', u'darting', u'within', u'possibly', u'little', u'capable', u'pressed', u'turned', u'did', u'dragged', u'lay', u'just', u'looked', u'next', u'myself', u'their', u'Tudor', u'dates', u'Miss', u'very', u'light', u'swinging', u'left', u'went', u'your', u'bowing', u'something', u'tumbled', u'presently', u'never', u'pa', u'followed', u'Frank', u'dropped', u'nothing', u'being', u'imposing', u'well', u'writhed', u'peeped', u'devote', u'forming', u'taking', u'thrusting', u'threw', u'finding', u'ran', u'preserved', u'inquiry', u'another', u'are', u'drawing', u'ladies', u'start', u'none', u'insects', u'again', u'moving', u'huge', u'drew', u'yesterday', u'slipped', u'across', u'fastened', u'straight', u'Toller', u'whether', u'('] -right track : [u'.'] -chuckled to : [u'himself'] -into custody : [u'.'] -skull. : [u'I'] -of movement : [u','] -. Aloysius : [u'Doran'] -; ' we : [u"'"] -after opening : [u'a'] -his lantern : [u'and'] -to shake : [u'nerves', u'my'] -is included : [u'.'] -my morning : [u',', u'visitor'] -drunken sallies : [u'from'] -blood from : [u'my'] -got worse : [u','] -I worn : [u'the'] -nicely, : [u'Doctor', u'and', u'with'] -their past : [u'.'] -nicely. : [u'In', u'Then'] -the chance : [u'.', u'."', u'came'] -was extinguished : [u','] -a walk : [u'in'] -the deeds : [u'of'] -slate coloured : [u','] -that beggarman : [u','] -through, : [u'and'] -The trees : [u'and'] -proof positive : [u'that'] -regretted the : [u'impulse', u'rashness'] -ambition, : [u'the'] -campaigner, : [u'and'] -very vulnerable : [u'from'] -, until : [u'the', u'those', u'one', u'we', u'it', u'at', u'with', u'he', u'my'] -sends me : [u'health'] -beyond my : [u'powers'] -to fight : [u'.'] -struck gold : [u','] -view until : [u'he'] -my part : [u'.', u','] -must still : [u'refuse'] -country outside : [u'the'] -carry conviction : [u'with'] -Whatever were : [u'you'] -subject of : [u'interest'] -whiskers of : [u'that'] -foreseen the : [u'possibility'] -preventing his : [u'stepdaughter'] -find many : [u'tragic'] -out its : [u'mission'] -a certainty : [u'.'] -seemed safer : [u'to'] -had influence : [u'over'] -subject or : [u'a'] -to span : [u'it'] -reputation of : [u'being'] -, Eglonitz : [u'here'] -dozen yards : [u'or', u'of'] -Paramore. : [u'All'] -whose hair : [u'is'] -contemplation of : [u'a'] -with fresh : [u'blood'] -strange coincidences : [u','] -deadly story : [u'linked'] -sort was : [u'a'] -unobservant public : [u','] -snow and : [u'his'] -quietly digesting : [u'their'] -so dark : [u'as'] -leaving it : [u'.'] -all the : [u'readers', u'men', u'tags', u'holes', u'other', u'morning', u'preposterous', u'clues', u'steps', u'recent', u'time', u'years', u'keys', u'chain', u'results', u'facts', u'furniture', u'clothes', u'coins', u'secrets', u'evening', u'same', u'proofs', u'way', u'money', u'work', u'hubbub', u'problems', u'plugs', u'particulars', u'papers', u'notices', u'trouble', u'police', u'windows', u'snow', u'enthusiasm', u'terms', u'individual'] -forfeit your : [u'whole'] -political influence : [u'might'] -and Lady : [u'Clara', u'Alicia'] -known firm : [u','] -sponge, : [u'and'] -were as : [u'unlike', u'silent', u'pestered', u'good'] -sponge. : ['PP'] -were at : [u'.', u'last', u'first', u'the', u'least'] -you care : [u'to'] -a holiday : [u',', u'from'] -has been : [u'waylaid', u'no', u'my', u'good', u'committed', u'in', u'a', u'more', u'to', u'referred', u'seriously', u'shattered', u'upon', u'submitted', u'loading', u'waiting', u'done', u'of', u'used', u'an', u'gummed', u'settled', u'recently', u'hung', u'missed', u'for', u'knocked', u'hereditary', u'until', u'pierced', u'here', u'exceptionally', u'arranged', u'made', u'compelled', u'taken', u'thrown', u'possible', u'set', u'that', u',', u'subjected', u'driven', u'several', u'so', u'urged', u'offered', u'considered', u'much', u'quite', u'drinking', u'some'] -instant when : [u'the'] -swing of : [u'his'] -had pulled : [u'up'] -trees, : [u'we', u'with'] -out upon : [u'the', u'his', u'it', u'our'] -!" she : [u'cried', u'repeated'] -Adler papers : [u'."', u','] -change which : [u'had'] -funny about : [u'it'] -iron trough : [u','] -brought out : [u'in', u'the'] -front pew : [u'at'] -slurring over : [u'of'] -brother or : [u'a'] -beneath us : [u'.'] -river steamboats : [u'.'] -he continued : [u',', u'. "', u'to'] -brother of : [u'the'] -a suite : [u'of'] -lamp sits : [u'a'] -of May : [u'2nd'] -morning as : [u'we'] -been strong : [u'for'] -morning at : [u'Ross'] -leather shoes : [u','] -forward for : [u'him'] -thoroughly good : [u'girl'] -trap door : [u'at'] -He hastened : [u'upstairs'] -vary with : [u'every'] -eBook, : [u'complying'] -thing; : [u'but'] -qualifications. : [u'I'] -delicate that : [u'I'] -was found : [u'that', u'lying', u'in', u'the'] -such purity : [u'and'] -teeth still : [u'meeting'] -black figure : [u'like'] -thing. : [u'However', 'PP', u'After'] -thing, : [u'but', u'what', u'too'] -joking. : [u'What', 'PP'] -large villa : [u',', u'which'] -a moody : [u'silence'] -even one : [u'of'] -, JEPHRO : [u'RUCASTLE'] -, " well : [u'?"'] -contents had : [u'been'] -ignorant that : [u'their'] -think of : [u'food', u'leaving', u'nothing', u'."', u'it', u'writing', u'Baxter', u'revenge', u'such', u'that', u'all', u'him', u'the', u'our'] -own case : [u','] -transition from : [u'a'] -minutes past : [u'four'] -our door : [u'had', u'and'] -he pursue : [u'this'] -absolutely depend : [u'upon'] -closed the : [u'door', u'shutters', u'locket', u'entrance', u'window'] -throw no : [u'light'] -blue triumphant : [u'cloud'] -The murder : [u'was'] -things that : [u'he', u'you'] -detail which : [u'might', u'I'] -in satisfying : [u'its'] -your breakfast : [u'has'] -times repeated : [u'.'] -dried sticks : [u','] -a train : [u'to', u'for', u'from', u'back', u'at'] -, hum : [u'!'] -was stamped : [u'with'] -Why should : [u'I', u'she', u'you', u'they'] -hunt down : [u'.'] -sovereign, : [u'and'] -pass he : [u'had'] -the grace : [u'and', u'of'] -thus apparelled : [u','] -grey, : [u'with', u'and', u'lichen'] -or relations : [u'of'] -no representations : [u'concerning'] -same direction : [u'."'] -couple at : [u'home'] -several quiet : [u'little'] -s plan : [u'."'] -square room : [u','] -more vacancies : [u'than'] -in prison : [u'?"', u'!"'] -twelve months : [u'I'] -seeing a : [u'cab'] -urged against : [u'my'] -of Miss : [u'Irene', u'Mary'] -lengths to : [u'which'] -" that : [u'this'] -enter. : [u'With'] -community in : [u'the'] -my lens : [u'.', u','] -The will : [u'is'] -me swear : [u','] -to pronounce : [u'as'] -my dread : [u'of'] -stone could : [u'not'] -work during : [u'the'] -ingenuity failed : [u'ever'] -Away we : [u'went'] -he might : [u'be', u'take', u'care', u'prove', u'have', u'come', u',', u'find', u'solder', u'direct', u'settle', u'still'] -and her : [u'bedroom', u'fingers', u'little', u'expression', u'limbs', u'sweetheart'] -Never. : ['PP'] -one rogue : [u'has'] -strange it : [u'was'] -fee of : [u'20'] -foot path : [u'over'] -strange in : [u'its'] -a revolver : [u',', u'in'] -fee or : [u'expense', u'distribute'] -before taking : [u'the'] -drive which : [u'led'] -. Light : [u'a'] -sufficient punishment : [u'."'] -waiting for : [u'the', u'us', u'him', u'you', u'her', u'me'] -promise that : [u'he'] -end had : [u'not'] -great deal : [u'of'] -chain of : [u'events'] -across the : [u'sleeves', u'upper', u'Park', u'front', u'road', u'broadest', u'room', u'sky', u'tail', u'lawn', u'bedroom', u'Atlantic', u'outside'] -six back : [u'.'] -an ordinary : [u'plumber'] -live there : [u'longer'] -. Known : [u'to'] -we turned : [u'round', u'from'] -quickly through : [u'a'] -an order : [u'to'] -to donate : [u'royalties', u'.'] -light in : [u'the', u'his'] -could outweigh : [u'the'] -my companions : [u','] -seek his : [u'fortune'] -and leave : [u'it'] -hair the : [u'squat'] -you helped : [u'in'] -. Insensibly : [u'one'] -passion and : [u'gloomy'] -Black Jack : [u'of'] -wood and : [u'close', u'under'] -" Six : [u'out'] -his flaming : [u'head'] -motioned for : [u'air'] -sharply. ' : [u'I', u'You'] -inscrutable as : [u'ever'] -can spare : [u'."'] -chair with : [u'the', u'his'] -absolutely needed : [u'."'] -. ' They : [u'will'] -rustic surroundings : [u','] -pass these : [u'shutters'] -snow from : [u'his'] -of surprise : [u'as', u'.', u','] -mystery of : [u'the'] -met our : [u'eyes'] -attitude and : [u'manner'] -visitor had : [u'left', u'recovered'] -though in : [u'order'] -but not : [u'before', u'hurt', u'where', u'limited'] -but now : [u'I', u','] -night there : [u'.'] -, Camberwell : [u'."'] -was with : [u'his', u'a', u'them'] -Hay Moulton : [u'.'] -who lives : [u'upon', u'near', u'in'] -the alarm : [u'of', u',', u'took', u'.'] -the struggle : [u'and', u'.'] -with rounded : [u'shoulders'] -came back : [u'from', u'again', u'.', u'to', u'alive', u'alone', u'."', u'before'] -though it : [u'was', u'sounds', u'were', u'had'] -the rearing : [u'of'] -him without : [u'question', u'observing'] -band by : [u'the'] -described in : [u'paragraph'] -has shown : [u'himself'] -? We : [u'waited'] -flattening it : [u'out'] -behind his : [u'small'] -The fat : [u'man'] -behind him : [u'.', u',', u'. "', u'when'] -License when : [u'you'] -glossy when : [u'you'] -do then : [u'?"', u'?'] -rather puzzled : [u','] -statement. : ['PP'] -poor sister : [u'Julia'] -. Saturday : [u'would'] -rather startled : [u'gaze'] -wave of : [u'his'] -woods picking : [u'flowers'] -my words : [u'. "'] -enormous fortune : [u'in'] -years," : [u'said'] -half dozen : [u'at'] -TWISTED. : ['PP'] -to hold : [u'him'] -So perfect : [u'was'] -books. : [u'Round'] -it entailed : [u'upon'] -doubt or : [u'in'] -so good : [u'a', u'as'] -windows as : [u'we'] -grinder, : [u'who'] -examining minutely : [u'the'] -advertisements, : [u'but'] -Hague last : [u'year'] -by beating : [u'upon'] -of sea : [u'weed'] -monosyllable she : [u'gave'] -lived with : [u'them'] -own point : [u'of'] -in dreadful : [u'earnest'] -door mat : [u'.'] -stirring yet : [u','] -packet. : [u'It'] -packet, : [u'and'] -Here he : [u'comes', u'is'] -to confirm : [u'the'] -statements concerning : [u'tax'] -volume and : [u'a'] -a similar : [u'mark', u'whistle'] -By degrees : [u'Mr', u'he'] -any word : [u'processing'] -ebbing tide : [u'might'] -cravat, : [u'which', u'and'] -papers they : [u'mean'] -something entirely : [u'different'] -strikes very : [u'much'] -servants' : [u'escapade'] -somewhat headstrong : [u'by'] -any work : [u'in', u'on'] -town about : [u'an'] -which followed : [u'.'] -servants. : [u'My', u'There'] -the sea : [u'waves'] -the banker : [u'with', u"'", u'had', u'impatiently', u'made', u'.', u','] -subject for : [u'conversation'] -Internal Revenue : [u'Service'] -warm, : [u'maybe'] -other place : [u','] -to accurately : [u'state'] -hand and : [u'at', u'sleeve', u'a', u'five', u'displayed', u'crawled', u'gave', u'that', u'coldly', u'chatted', u'the', u'had'] -then one : [u'day'] -without flying : [u'away'] -increasing our : [u'connection'] -the major : [u','] -these signs : [u'of'] -conclusions were : [u'was'] -:. : ['PP'] -sinking. : [u'He'] -see what : [u'others', u'may', u'use', u'is', u'would', u'passed', u'was'] -:' : [u'Lost'] -stair within : [u'a'] -:" : [u'Good', u'MY', u'TO', u'Have', u'Mr', u'4th', u'Between', u'Hotel', u'The', u'DEAR'] -account for : [u'such'] -led the : [u'way'] -THE FOUNDATION : [u','] -outsides of : [u'the'] -soda and : [u'a'] -DAMAGE. : ['PP'] -vile weather : [u','] -forty five : [u'.'] -He followed : [u'me'] -be incapable : [u'.'] -it five : [u'little'] -the rat : [u','] -remarkable inquiry : [u','] -flames under : [u'.'] -miss my : [u'rubber'] -winding up : [u'every', u'the'] -natural under : [u'the'] -defined. : [u'The'] -sick for : [u'months'] -milk does : [u'not'] -a cashbox : [u','] -threw my : [u'arms'] -will read : [u'it', u'to'] -looked twice : [u'at'] -morrow morning : [u'."', u'between'] -is acting : [u'for', u'already'] -He squatted : [u'down'] -carpenter. : ['PP'] -strict rules : [u'of'] -find that : [u'I', u'he', u'there', u'all', u'out'] -I remained : [u'unconscious'] -here last : [u'week'] -furniture warehouse : [u','] -or fraud : [u','] -and Turner : [u'had'] -education and : [u'encyclopaedias'] -been lying : [u'open', u'in'] -the diadem : [u'he'] -he ran : [u'swiftly', u'he'] -better go : [u',', u'in'] -my opinion : [u'on'] -yard, : [u'and', u'though', u'from'] -yard. : [u'There'] -least until : [u'after'] -obtruded itself : [u'upon'] -painful than : [u'his'] -violent start : [u'and'] -but Arthur : [u'caught'] -great difficulty : [u'in'] -in foolscap : [u','] -police regulations : [u'he'] -I lay : [u'upon', u'awake', u'on', u'.', u'listening'] -was by : [u'all'] -this moment : [u'in', u'a', u'.'] -Moran this : [u'day'] -but learned : [u'from'] -have in : [u'the', u'our', u'bringing', u'you'] -So,' : [u'said'] -there does : [u'not'] -is probably : [u'familiar'] -four year : [u'old'] -bizarre. : [u'But'] -both upon : [u'the'] -terrible is : [u'it'] -saw, : [u'at', u'to', u'in'] -What shall : [u'I'] -saw. : [u'In'] -disagreeable task : [u'.'] -which purport : [u'to'] -pretty, : [u'and'] -the folks : [u'would'] -who wore : [u'those'] -arrival at : [u'the'] -was this : [u'nocturnal', u'very', u'dark'] -you very : [u'well'] -worn the : [u'blue'] -burgled. : ['PP'] -up hopes : [u'which'] -child by : [u'the'] -both locked : [u'your'] -little to : [u'do', u'me', u'the'] -met Mr : [u'.'] -, remains : [u'to'] -eccentricity, : [u'brought'] -formidable," : [u'he'] -and can : [u'have'] -coin hanging : [u'from'] -certainly it : [u'does'] -throw you : [u'to'] -O." : [u'Then'] -without delay : [u'."'] -distinctly upon : [u'my'] -may come : [u'to'] -any statements : [u'concerning'] -cracked edge : [u','] -was struck : [u',', u'from', u'cold'] -last Saturday : [u"'"] -have plenty : [u'of'] -copper, : [u'but'] -from behind : [u'.', u'a'] -had fortunately : [u'entered'] -Horner were : [u'in'] -his bosom : [u'.'] -hotel waiter : [u','] -trifling details : [u'which'] -shutter open : [u','] -sit in : [u'the'] -assistant was : [u'a'] -old pals : [u'and'] -minute knowledge : [u'which'] -. To : [u'Sherlock', u'me', u'speak', u'be', u'day', u'the', u'take', u'Holmes', u'morrow', u'carry', u'do', u'learn', u'SEND', u'donate'] -pets which : [u'the'] -marble. : ['PP'] -at 1000 : [u'pounds'] -the quarters : [u'of'] -losing her : [u'self'] -set the : [u'matter', u'dog', u'engine'] -be safe : [u'with', u'.', u'from'] -one house : [u'as'] -no explanation : [u'save', u'?"'] -have worked : [u'with'] -were lost : [u'.'] -' finger : [u'tips'] -How on : [u'earth'] -has less : [u'now', u'foresight'] -? Describe : [u'it'] -but confirm : [u'his'] -red head : [u',', u'to', u'of'] -You can : [u'understand', u'leave', u'see', u'imagine', u'at', u'pass', u'hardly', u'easily'] -But why : [u'are', u"?'"] -and observed : [u'.'] -man turns : [u'his'] -started up : [u'in'] -mad with : [u'grief'] -seven weeks : [u'later', u'elapsed', u'represented'] -lined, : [u'craggy'] -said never : [u'to'] -and kindly : [u'that'] -Hart is : [u'the'] -hastened upstairs : [u','] -jealously, : [u'however'] -a formidable : [u'man'] -drove out : [u'to'] -become suddenly : [u'deranged'] -stated in : [u'his'] -and looked : [u'me', u'impatiently', u'at', u'it', u'up', u'there', u'back', u'about', u'out', u'in', u'hard'] -good ground : [u'to'] -point was : [u'what'] -read aloud : [u'to'] -and timid : [u'woman'] -my special : [u'knowledge', u'province'] -. Deeply : [u'as'] -moonless nights : [u'."'] -the schemer : [u'falls'] -. However : [u',', u'that', u'innocent'] -after our : [u'interview', u'return'] -deserted streets : [u','] -apparelled, : [u'but'] -medical views : [u'."'] -disguise as : [u'long'] -share in : [u'clearing'] -still glimmered : [u'in'] -myself clear : [u'?"'] -or the : [u'grace', u'bullion', u'great', u'mark', u'songs', u'door', u'morose', u'police', u'thud', u'exclusion'] -passage outside : [u'was'] -idea was : [u'very'] -t be : [u'legal', u'charged', u'burgled', u'frightened'] -is possible : [u'that', u',', u'."'] -see whether : [u'it', u'the', u'anything', u'we'] -Holmes stuck : [u'his'] -himself down : [u'into', u'in', u'with', u'suddenly', u'upon'] -soft tread : [u'pass'] -side whiskered : [u','] -quiet thinker : [u'and'] -confirm the : [u'strange'] -We found : [u'him', u'the'] -appeals to : [u'us'] -show where : [u'he', u'the'] -our correspondence : [u'with'] -and papers : [u'?'] -, ill : [u'kempt'] -great trouble : [u',"'] -pa wouldn : [u"'"] -all covered : [u'with'] -laid his : [u'grip'] -caress. : ['PP'] -propound one : [u'.'] -thousand wrinkles : [u','] -manager and : [u'I', u'housekeeper'] -you discover : [u'a'] -first." : [u'He'] -be deduced : [u'from'] -stalls wrapped : [u'in'] -the deeper : [u','] -soon after : [u'father'] -I backed : [u'a'] -Horner in : [u'the'] -wonder that : [u'he', u'it', u'no', u'you', u'such'] -occasionally predominated : [u'in'] -you saw : [u'him', u'all'] -my husband : [u'.'] -you say : [u'that', u'so', u',', u'?"'] -s cigar : [u'.'] -very drunk : [u';'] -waste time : [u'over'] -, shading : [u'his'] -22nd. : [u'Twenty'] -horses were : [u'in'] -22nd, : [u'just'] -This morning : [u'he'] -the highest : [u'pitch', u'point', u'in', u'importance', u','] -"' Death : [u",'"] -certainly," : [u'answered'] -gave evidence : [u'as'] -quietly entered : [u'the'] -and drove : [u'back', u'to', u'for', u'out', u'me'] -object which : [u'had'] -early' : [u'60'] -this electronic : [u'work'] -it at : [u'the', u'all', u'arm'] -it as : [u'he', u'she', u'the', u'well', u'highly', u'sure', u'a', u'correct', u'though'] -her disappearance : [u'.'] -safer and : [u'better'] -. ' From : [u'India'] -it proves : [u'to'] -quiet!" : [u'said'] -greatcoat. : [u'As'] -Their papers : [u'they'] -a morning : [u',', u'."', u'drive', u'paper'] -it proved : [u'.'] -I guessed : [u'as'] -greeting appeared : [u'to'] -s all : [u'I', u'clear', u'right'] -, square : [u'room'] -died from : [u'some'] -three gems : [u'out', u'had', u'in'] -answered advertisements : [u','] -great blue : [u'triumphant'] -tattoo marks : [u'and'] -which terminated : [u'at'] -personal beauty : [u'.'] -vacuous face : [u'of', u','] -Arthur. : [u'He', 'PP'] -. ' And : [u'the'] -stick to : [u'defend'] -open out : [u'into', u'upon'] -hopes that : [u'she'] -big armchair : [u'with'] -really mere : [u'commonplaces'] -fire engines : [u'were'] -are set : [u'forth'] -out he : [u'exchanged'] -call with : [u'the'] -be set : [u'aside'] -made my : [u'way', u'special', u'dark'] -me upon : [u'the', u'an', u'business', u'any', u'my'] -right of : [u'replacement'] -quite alone : [u'when'] -moment her : [u'knees'] -to confound : [u'me'] -small" : [u'g', u't'] -made me : [u'reveal', u'prick', u'angry', u'mad', u'swear', u'quite', u'think', u'wish'] -my shoulder : [u'.'] -almost time : [u'that'] -of Kent : [u'."'] -softer passions : [u','] -7s. : [u'6d'] -those that : [u'are'] -small, : [u'unburned', u'winding', u'office', u'square', u'wiry'] -superior, : [u'being'] -there gipsies : [u'in'] -meet us : [u'here', u'with', u'she'] -my questioning : [u'glances'] -the queer : [u'things'] -scores of : [u'my'] -shortly announced : [u'in'] -admirable things : [u'for'] -Beside the : [u'couch'] -, plumber : [u','] -which allowed : [u'a'] -plans of : [u'Mr'] -I live : [u'at'] -broad black : [u'hat'] -shoulder high : [u'and'] -Between a : [u'slop'] -., and : [u'why'] -Parr, : [u'the', u'who'] -more have : [u'done'] -. Once : [u'we', u'only'] -a process : [u'of'] -UNCLE:-- : [u'I'] -quite too : [u'funny', u'good', u'transparent'] -so exceedingly : [u'definite'] -my say : [u'.'] -s dying : [u'words'] -to high : [u'words'] -had quite : [u'persuaded'] -" Terrible : [u'!'] -ringing the : [u'bell'] -. Frank : [u'wouldn', u'said', u'had'] -That and : [u'a'] -exactly similar : [u'circumstances'] -traces were : [u'lost'] -no say : [u'in'] -that right : [u'cuff'] -, shapeless : [u'blurs'] -written on : [u'Monday'] -in other : [u'words', u'respects'] -had returned : [u'from', u'.', u'to', u'with'] -much attracted : [u'by'] -days I : [u'was', u'had', u'would'] -white forehead : [u', "'] -worrying her : [u'until'] -take my : [u'advice', u'goose', u'word'] -Cornwall the : [u'next'] -The matter : [u'was', u'passed', u'is'] -he can : [u'put', u'get', u'lay', u'hardly'] -lifted and : [u'conveyed'] -to provide : [u'a', u'volunteers'] -throbbed with : [u'dull'] -have sought : [u'a'] -have excluded : [u'the'] -printed and : [u'given'] -you succeeded : [u'?"', u'by'] -to travel : [u'."', u'the'] -be sure : [u'!"'] -take me : [u'long', u'all'] -cruel and : [u'selfish'] -hand upraised : [u'I'] -attention the : [u'outsides'] -became audible : [u'a'] -may remember : [u'the'] -that window : [u'hand', u','] -we did : [u'all'] -to Savannah : [u'.'] -after eight : [u'o'] -Even a : [u'wife'] -likely that : [u'Henry', u'we'] -though; : [u'so'] -with instructions : [u'to'] -wall has : [u'been'] -repay what : [u'you'] -not easy : [u'to', u'in'] -to bear : [u'upon', u'the', u'"--'] -strong language : [u'to'] -my pains : [u'.'] -heard Mr : [u'.'] -impulsively as : [u'she'] -position you : [u'can'] -ever came : [u'before'] -was practically : [u'accomplished'] -acquirement of : [u'wealth'] -the swinging : [u'lamp'] -page. : ['PP'] -loudly for : [u'my'] -, evidently : [u'newly', u'in'] -remark. : ['PP'] -quite distinctly : [u'upon'] -reasoning is : [u'certainly'] -three years : [u',', u'old', u'ago'] -the sitting : [u'room', u'rooms'] -be unnecessary : [u'.'] -deduced a : [u'blunt', u'little', u'ventilator'] -noise which : [u'has', u'awoke'] -her hair : [u'was', u'had'] -others which : [u'represent'] -same by : [u'applying'] -the fattest : [u".'"] -dry at : [u'low'] -out money : [u'is'] -so keen : [u'a'] -possessions of : [u'the'] -piece were : [u'at'] -a gang : [u','] -may depend : [u'upon'] -had closed : [u'the', u'again'] -no difficulty : [u'in', u','] -a bit : [u',', u'of'] -In what : [u'way'] -these circumstances : [u'the'] -was thoroughly : [u'at', u'earning'] -. " Here : [u'it', u'is', u'you', u'he'] -the minds : [u'of'] -a different : [u'matter', u'man', u'way'] -I merely : [u'shared'] -pretence of : [u'a'] -afternoon. : [u'We', u'So', u'I'] -afternoon, : [u'and', u'Miss', u'I', u'Lestrade'] -expect you : [u','] -Company.' : [u'It'] -" Coming : [u'on'] -men are : [u'is'] -pushed open : [u'the'] -not detracted : [u'in'] -or by : [u'the', u'e'] -, rough : [u'surface'] -Is purely : [u'nominal'] -special license : [u','] -but get : [u'into'] -something or : [u'other'] -prices of : [u'the'] -to warn : [u'me'] -something. : [u'Find'] -; had : [u'struggled'] -something, : [u'so', u'Mr'] -homeward journey : [u'I'] -may expect : [u'us', u'that'] -not, : [u'I', u'but', u'why', u'Mr', u'seeing', u'sir', u'it', u'and', u'dad', u'believe', u'you', u'however', u'he'] -not. : ['PP', u'But', u'However', u'It', u'You', u'Was', u'Did'] -been home : [u'for'] -something! : [u'Where'] -has lost : [u'a', u'all'] -little reputation : [u','] -thirty years : [u'of', u','] -, Anstruther : [u'would'] -could look : [u'over'] -little purple : [u'plush'] -describe a : [u'whole'] -" Nearly : [u'eleven'] -reason for : [u'leaving'] -org For : [u'additional'] -stood sullenly : [u'with'] -she his : [u'client'] -into details : [u'."'] -my look : [u'of'] -, that : [u'you', u'there', u'the', u'she', u'for', u'he', u'I', u'my', u',"', u'they', u'is', u'whatever', u'some', u'something', u'maiden', u'was', u'!', u'can', u'in', u'of', u'upon', u'.', u'a', u'we', u'when', u'weakness', u'instead', u'if', u'it', u'his', u'man', u'little', u'even', u'be', u'cry', u'that', u'only', u'night', u'which', u'to', u'would', u'need', u'before', u'settles', u'Miss', u'arise'] -little lower : [u'down'] -XI. : [u'The', u'THE'] -, although : [u'they', u'its', u'there', u'it', u'he', u'I', u'what'] -a lenient : [u'view'] -me preach : [u'to'] -Crime is : [u'common'] -might befall : [u'.'] -for nothing : [u'?'] -keys, : [u'which'] -many a : [u'little'] -was mere : [u'chance'] -Felstein, : [u'and'] -hall window : [u',', u'with'] -severe reasoning : [u'from'] -slowly away : [u','] -see exactly : [u'what'] -blind. : [u'He', u'That'] -sneer upon : [u'his', u'the'] -rid of : [u',', u'that', u'the', u'what'] -was aware : [u'of', u'that', u','] -have taken : [u'it', u'you', u'place', u'fresh'] -until my : [u'uncle'] -at having : [u'broken', u'been'] -tired and : [u'keep'] -be read : [u'upon', u'by'] -I bore : [u'you'] -situation became : [u'absolutely'] -serves me : [u'so'] -sacrifice my : [u'poor'] -. International : [u'donations'] -four years : [u'.'] -name has : [u'not'] -opposing the : [u'carpet'] -valuable than : [u'the'] -all this : [u',', u'points', u'seems', u'bears', u'.', u'?"', u'cross', u'happened', u'while'] -small points : [u'in', u','] -threats. : [u'This'] -body be : [u'dressed'] -it twice : [u'vigorously'] -have peeped : [u'through'] -the proof : [u'.'] -who threw : [u'itself'] -this evening : [u'.', u'at', u','] -Kent. : [u'We', u'See', 'PP'] -come late : [u'.'] -setter, : [u'liver'] -goose on : [u'your'] -! He : [u'was', u'gives'] -" Wait : [u'a'] -who held : [u'a'] -slightly bent : [u','] -face to : [u'face', u'the'] -from Sherlock : [u'Holmes'] -reaped in : [u'a'] -and lock : [u'and'] -no idle : [u'one'] -she came : [u'away', u','] -she replaced : [u'it'] -down the : [u'room', u'street', u'dimly', u'advertisement', u'column', u'hole', u'road', u'platform', u'Boscombe', u'sheet', u'facts', u'right', u'letter', u'volume', u'river', u'steps', u'narrow', u'lane', u'London', u'Waterloo', u'stone', u'prisoner', u'passage', u'ill', u'wall', u'lawn', u'lamp', u'corridor', u'rope', u'levers', u'stairs', u'tradesmen', u'blind'] -boyish face : [u','] -' Tragedy : [u'Near'] -will suggest : [u'what'] -he driving : [u'back'] -beginning in : [u'the'] -by six : [u'almost'] -distributing a : [u'Project'] -founded by : [u'an'] -my troubling : [u'you'] -. Black : [u'Jack'] -I yelled : [u'with', u". '"] -, doubtless : [u'among', u','] -a magician : [u',"'] -stretching his : [u'long'] -people, : [u'who', u'perhaps', u'and', u'you'] -one years : [u',', u'of'] -was lined : [u'with'] -legal. : ['PP'] -her out : [u'into', u'of', u'again'] -be interpreted : [u'to'] -of introducing : [u'you', u'to'] -When my : [u'father', u'dear'] -most extraordinary : [u'contortions', u'matters'] -a toy : [u'would'] -be taken : [u'to', u'up', u'.', u".'"] -forceps lying : [u'upon'] -his costume : [u'.'] -for 40 : [u'pounds'] -meal. : [u'When'] -side, : [u'well', u'and', u'until', u'there', u'tapped', u'but'] -hesitating fashion : [u'at'] -the Coburg : [u'branch'] -long swash : [u'of'] -why does : [u'he'] -glancing quickly : [u'round'] -nursery. : ['PP'] -lane, : [u'where', u'and'] -By profession : [u'I'] -companion in : [u'to'] -dress, : [u'the', u'presumably', u'I', u'it', u'again', u'nor'] -earning a : [u'copper'] -dress. : [u'She', u'No', u'In', 'PP', u'I'] -restrictions whatsoever : [u'.'] -capital by : [u'which'] -knew better : [u'than'] -should suspect : [u'him', u','] -have listened : [u'to'] -many reasons : [u'to'] -is Holmes : [u'?"'] -dear doctor : [u','] -quest of : [u'.'] -I noticed : [u','] -through Baker : [u'Street'] -doubly secure : [u'on'] -was lost : [u','] -and proofread : [u'public'] -lost. : ['PP', u'Nothing', u'He', u'Might'] -level with : [u'his'] -thief? : [u'Did'] -an appropriate : [u'dress'] -disturb him : [u'in'] -robbery at : [u'the'] -I forbid : [u'you'] -directed upward : [u'to'] -chains of : [u'events'] -of several : [u'passers', u'footsteps', u'similar'] -on to : [u'the', u'propose', u'it', u'this', u'Kilburn', u"'", u'Paris'] -everything in : [u'its', u'Mr'] -gem known : [u'as'] -everything is : [u'fastened'] -" Tell : [u'me'] -whole Bohemian : [u'soul'] -drove away : [u'in', u'.'] -crossed it : [u','] -the required : [u'check'] -German speaking : [u'country'] -a breath : [u','] -the affair : [u'so', u'.', u'now', u'of'] -white teeth : [u'still'] -lobster if : [u'he'] -but flight : [u','] -correct in : [u'saying'] -gentleman who : [u'desires', u'lost'] -old town : [u'a'] -how did : [u'you', u'he'] -police might : [u'not'] -the hint : [u'from'] -my pay : [u'ransacked'] -should hear : [u'by', u'of'] -son only : [u'caught'] -Where could : [u'I'] -cloud from : [u'his'] -network of : [u'volunteer'] -bright as : [u'possible', u'day'] -force which : [u'must'] -it." : [u'A', u'It', u'He'] -freely sharing : [u'Project'] -his extreme : [u'exactness', u'anxiety'] -June, ' : [u'89'] -pay is : [u'good'] -a branded : [u'thief'] -can jump : [u'it'] -Conan. : ['PP'] -their object : [u'was'] -still looking : [u'keenly'] -? Why : [u'should'] -ask whether : [u'you'] -facts as : [u'far'] -delicate for : [u'communication'] -loudly expressed : [u'admiration'] ---" had : [u'not'] -not touch : [u'me'] -cousins from : [u'across'] -in carrying : [u'out'] -s chambers : [u'in'] -he used : [u'to', u'a'] -Just two : [u'months'] -and helped : [u'himself'] -over into : [u'the'] -late Elias : [u'Whitney'] -madness. : [u'Of'] -he uses : [u'lime'] -weeks elapsed : [u'between', u'.'] -whispered into : [u'my'] -nerves a : [u'shudder'] -some hours : [u'.'] -was gone : [u'.', u".'", u'I', u'he', u'through'] -!" which : [u'was'] -and helper : [u'in', u'to'] -wife like : [u'birds'] -followed. : ['PP'] -go up : [u'any', u'."'] -order might : [u'lead'] -steely glitter : [u'.'] -three doors : [u'in'] -s not : [u'a', u'such', u'short', u'actionable', u'our', u'got', u'been'] -Crane Water : [u','] -Out of : [u'the'] -retire for : [u'the'] -rather intricate : [u'matter'] -Then perhaps : [u',', u'you', u'I'] -family seat : [u','] -coolness. " : [u'I'] -not yet : [u'returned', u'opened', u'nine', u'grasped', u'twenty', u'done', u'three', u'quite'] -those mysteries : [u'which'] -own house : [u". '", u'."'] -a disagreeable : [u'task'] -get seven : [u'years'] -police formalities : [u','] -hurried into : [u'the'] -buttoned only : [u'in'] -strange, : [u'since', u'wild', u'low', u'but', u'out'] -be happy : [u'to', u'in', u'until', u'under'] -as one : [u'who'] -Eyford to : [u'night'] -colour upon : [u'his'] -slim, : [u'with'] -mahogany. : [u'There'] -are like : [u'a'] -fanlight. : [u'Just'] -the parted : [u'blinds'] -to him : [u',', u'as', u'.', u'?"', u'before', u'to', u'."', u'that', u'in', u'when', u'by', u'myself', u'at', u'for'] -a bee : [u'in'] -permit either : [u'me'] -rattled, : [u'and'] -by which : [u'I', u'he', u','] -has befallen : [u'you'] -to hit : [u'upon'] -equal to : [u'it'] -tree of : [u'a'] -to his : [u'cold', u'verbs', u'invariable', u'keeping', u'Majesty', u'hawk', u'feet', u'wife', u'homely', u'lips', u'head', u'heart', u'fate', u'son', u'remark', u'supporters', u'refusal', u'rustic', u'bed', u'natural', u'account', u'appearance', u'back', u'foot', u'talk', u'eyes', u'plantation', u'room', u'known', u'credit', u'knowledge', u'death', u'friends', u'ring', u'destiny', u'heels', u'identity', u'chin', u'habits', u'club', u'desk', u'notice', u'bloodless', u'dress', u'rooms', u'finger', u'unhappy', u'chamber', u'bosom', u'will', u'instructions', u'chemical'] -leave that : [u'to', u'question'] -half raised : [u'in'] -a bet : [u',"'] -From their : [u'conversation'] -your position : [u'of', u'very'] -own devilish : [u'trade'] -special knowledge : [u'of'] -Goodwins and : [u'not'] -relaxed his : [u'rigid'] -grew very : [u'thick'] -precious a : [u'thing'] -Just as : [u'he', u'I'] -gold earrings : [u','] -weapon or : [u'other'] -is my : [u'friend', u'business', u'pocket', u'lens', u'intimate', u'strong', u'belief', u'secretary', u'point', u'wife', u'niece', u'right'] -the provinces : [u'of'] -altogether invaluable : [u'to'] -New Mexico : [u'.'] -it earnestly : [u", '"] -but all : [u'stained'] -size and : [u'shape'] -not beautiful : [u'in'] -made during : [u'the'] -behind those : [u'.'] -" Excellent : [u'.', u'!'] -to electronic : [u'works'] -as architects : [u','] -; a : [u'client'] -jury stated : [u','] -angry indeed : [u','] -entered the : [u'passage', u'room', u'cell', u'house'] -moved out : [u'yesterday'] -of pedestrians : [u'.'] -partner and : [u'helper'] -! Prima : [u'donna'] -beginnings without : [u'an'] -his plate : [u'.'] -cut short : [u'by'] -" Will : [u'you'] -were vainly : [u'striving'] -his hawk : [u'like'] -the North : [u'.'] -pits which : [u'abound'] -was arranged : [u','] -waited, : [u'I', u'all'] -week when : [u'I'] -just read : [u'it'] -even thinks : [u'that'] -abruptly; : [u'and'] -t fall : [u'down'] -precious, : [u'so'] -got better : [u'at'] -blinds in : [u'the'] -push, : [u'the'] -such person : [u'."'] -for falling : [u'in'] -chaffering I : [u'got'] -idler who : [u'has'] -that anything : [u'dishonourable'] -company," : [u'said'] -who will : [u'not', u'win', u'certainly', u'leave'] -kettle. : [u'The'] -just time : [u','] -or Mr : [u'.'] -was pacing : [u'the', u'up'] -scandal. : ['PP'] -scandal, : [u'and'] -?' One : [u'would'] -thick bell : [u'rope'] -be absurd : [u'to'] -the father : [u'was', u"'", u'and', u'of'] -heart into : [u'my'] -a meditative : [u'mood'] -) 596 : [u'1887'] -the slip : [u'and'] -a start : [u',', u'that', u'.'] -so by : [u'way', u'the', u'discovering'] -puzzle it : [u'out'] -engines were : [u'vainly'] -might settle : [u'his'] -may entirely : [u'rely'] -Pray compose : [u'yourself'] -was you : [u','] -a stare : [u'and'] -have shown : [u'that', u'your', u'us', u'him', u'you', u'extraordinary'] -appeared, : [u'a', u'and'] -who you : [u'were', u'are'] -my story : [u'with', u'.', u'."', u'to', u'now'] -reaching Project : [u'Gutenberg'] -dead," : [u'cried'] -late," : [u'she', u'said'] -handsome commission : [u'through'] -yet she : [u'had'] -neither head : [u'nor'] -submitted to : [u'the', u'us', u'him', u'my'] -has come : [u'away', u'out', u'so', u'from', u'my', u'back'] -proposition which : [u'I'] -. Fairbank : [u'was'] -explaining. ' : [u'Omne'] -building to : [u'Dr'] -shall reconsider : [u'my'] -services, : [u'but', u'and'] -services. : [u'All'] -shall go : [u'in', u'mad', u'down', u'upstairs'] -full face : [u'of'] -pile of : [u'crumpled'] -Some cold : [u'beef'] -a dreadful : [u'mess', u','] -wife received : [u'a'] -conviction of : [u'young'] -he writhed : [u'and'] -fess sable : [u'.'] -myth. : [u'There'] -knew who : [u'had'] -business as : [u'much'] -night by : [u'the'] -requests, : [u'for'] -difficult it : [u'is'] -day lately : [u'.'] -grew stronger : [u'.'] -sundial,' : [u'I'] -aided by : [u'a'] -also an : [u'ex'] -business there : [u'.'] -hastened here : [u'when'] -sitting there : [u',', u'in'] -The passage : [u'outside'] -purchasing one : [u','] -room behind : [u'me'] -," said : [u'I', u'he', u'Holmes', u'our', u'a', u'Jabez', u'Mr', u'Jones', u'the', u'Sherlock', u'John', u'she', u'Lestrade', u'old', u'my', u'Inspector', u'Bradstreet', u'Baker', u'Miss', u'Lord', u'Mrs'] -and trap : [u','] -recent occurrences : [u','] -in itself : [u'implies', u'a', u','] -believed it : [u'?', u"?'"] -not retained : [u'by'] -studies. : ['PP'] -I flash : [u'a'] -their traces : [u'."', u'in'] -leave a : [u'photograph', u'permanent'] -; " this : [u'beauty'] -"' Arthur : [u"!'"] -He gives : [u'me'] -not copy : [u','] -so thick : [u'with'] -and older : [u'jewels'] -acid, : [u'told'] -copy, : [u'display', u'a', u'or', u'if'] -speaking country : [u'in'] -and advice : [u'looks'] -incalculable. : [u'The'] -From East : [u'London'] -Yesterday. : ['PP'] -makes you : [u'quite'] -Yesterday, : [u'however'] -Lestrade shot : [u'an'] -' had : [u'arrived'] -many disagreements : [u'about'] -flooring was : [u'also'] -morning paper : [u'from', u'of'] -hardly from : [u'the'] -worthy fellow : [u'very'] -breakfast and : [u'whispered'] -the efforts : [u'of'] -were by : [u'a'] -the price : [u'of'] -glove buttons : [u'.'] -someone, : [u'then', u'but', u'and'] -would cover : [u'the'] -in pitch : [u'darkness'] -respectable, : [u'as'] -thin fingers : [u'in'] -him myself : [u'."'] -his accomplice : [u"'"] -felt a : [u'sudden'] -is such : [u'a'] -down completely : [u'.'] -sharp face : [u'and'] -to Gross : [u'&'] -, choosing : [u'his'] -entered my : [u'consulting'] -determined that : [u'nothing', u'the'] -our cases : [u'we', u'which'] -gambler in : [u'the'] -attempted suicide : [u'of'] -Use part : [u'of'] -usual in : [u'my'] -peculiar to : [u'China', u'him'] -bare slabs : [u'of'] -the room : [u'swiftly', u'in', u'.', u'what', u'with', u'and', u',', u'for', u'one', u'as', u'?"', u'collecting', u'was', u'save', u'which', u'could', u'he', u'from', u'to', u'."', u'while', u';', u'without', u'she', u'again'] -the roof : [u'was', u'had', u'. "'] -my adventure : [u'.', u',"'] -hat since : [u','] -Spies and : [u'thieves'] -blood stains : [u'upon'] -Stoper has : [u'very'] -only remained : [u'your'] -distributed Project : [u'Gutenberg'] -tm Project : [u'Gutenberg'] -vehemence. : [u'They'] -late in : [u'the'] -chink between : [u'the'] -buttons. : [u'Suddenly'] -). Section : [u'1'] -earth,' : [u'said'] -darkened. : [u'His'] -monogram upon : [u'the'] -You won : [u"'"] -touched the : [u'wealth'] -with theft : [u'.'] -Crown. : ['PP'] -permission in : [u'writing'] -at not : [u'having'] -attempts to : [u'establish'] -fire. " : [u'Oscillation', u'You'] -a chink : [u'between'] -stopped in : [u'front'] -, sings : [u'at'] -reached us : [u'.'] -coroner in : [u'his'] -officials. : [u'One'] -cord. : [u'The'] -my company : [u'for'] -averted eyes : [u'.'] -drunken frenzy : [u'and'] -one hand : [u',', u'and', u'upon'] -who came : [u'bustling'] -opium pipe : [u'dangling'] -a love : [u'matter'] -my view : [u','] -s hands : [u'.'] -buttoning up : [u'his'] -Very right : [u'!'] -even your : [u'skill'] -Wilson started : [u'up'] -foolish freak : [u'when'] -, " I : [u'should', u'must', u'do', u'only', u'forgot', u'am', u'say', u'feared', u'thought', u'have', u'seem', u'at', u'cannot', u'think'] -Farintosh," : [u'said'] -be true : [u'to', u';', u'.'] -which Openshaw : [u'carried'] -a tall : [u'man', u',', u'dog'] -twitching and : [u'shattered'] -transparent, : [u'and'] -a talk : [u'as'] -used to : [u'make', u'be', u'send', u'say', u'write', u'lodge', u'sleep', u'occupy', u'open', u'call'] -shaking in : [u'all'] -solution of : [u'some', u'so', u'the'] -country bred : [u'."'] -villas, : [u'when'] -consciousness that : [u'she'] -He caught : [u'up'] -German and : [u'saw'] -, " a : [u'gentleman'] -his hands : [u'clasped', u'into', u',', u'softly', u'all', u'in', u'up', u'. "', u'frantically', u'."', u'?"', u'.', u'and', u'he', u'the', u'together'] -which led : [u'to', u'up', u'away', u'into'] -answers and : [u'averted'] -rooms once : [u'more'] -had paid : [u'the'] -carriage. : [u'Now', u'It'] -carriage, : [u'was', u'and', u'the', u'on'] -and Oxford : [u'.'] -effect which : [u'this', u'gives', u'is'] -is looking : [u'up'] -said Mrs : [u'.'] -standing between : [u'the'] -free life : [u'of'] -it against : [u'the'] -recover the : [u'Irene', u'gem'] -have promised : [u'Mr'] -respond to : [u'such'] -mine to : [u'have', u'influence'] -practical joke : [u",'"] -skin. : [u'I'] -? A : [u'precious', u'lover'] -, settling : [u'himself'] -father on : [u'the'] -business," : [u'he'] -. " Now : [u',', u'we', u'lead'] -your toe : [u'caps'] -really I : [u'think'] -frighten a : [u'chap'] -very convincing : [u','] -go no : [u'farther'] -Holmes closed : [u'his'] -a blind : [u'fool'] -so readily : [u'assume'] -parties. : ['PP'] -he himself : [u'has'] -as Jones : [u'clutched'] -neat brown : [u'gaiters'] -one that : [u'I', u'the', u'stood'] -up one : [u'side', u'shaking'] -enthusiasm which : [u'has'] -for four : [u'or'] -really a : [u'very'] -most outr : [u'results'] -best laid : [u'of'] -flowers. : [u'She', u'It'] -the Openshaw : [u'unbreakable'] -ground floor : [u','] -snow was : [u'cut'] -we believe : [u'her'] -containing several : [u'people'] -hands clasped : [u'behind'] -it pointing : [u'in'] -Frank out : [u'of'] -compunction at : [u'that'] -not care : [u'to'] -London quite : [u'so'] -3, : [u'a', u'the', u'this'] -or perhaps : [u'that'] -his small : [u'fat', u'black', u'eyes'] -if it : [u'hadn', u'were', u'was', u'is', u'went', u'continues', u'gave', u'once', u'had', u'would', u'may'] -heavy hunting : [u'crop'] -for otherwise : [u'I'] -KIND, : [u'EXPRESS'] -I fail : [u'to'] -been ploughed : [u'into'] -preference for : [u'a'] -: How : [u'was'] -solved my : [u'problem'] -overtook Frank : [u'.'] -has passed : [u'through', u','] -all must : [u'come'] -. " Incredible : [u'imbecility'] -a magnificent : [u'specimen'] -commission which : [u'had'] -half crowns : [u'by'] -random tracks : [u','] -two middle : [u'aged'] -been less : [u'than'] -warning or : [u'sound', u'token'] -convenience, : [u'and'] -brown chest : [u'of'] -walked. : [u'His'] -and into : [u'it', u'the'] -remained outside : [u','] -plan. : ['PP'] -grass within : [u'a'] -and spotted : [u'in'] -excellent character : [u','] -inspector has : [u'formed'] -Petersfield. : [u'Those'] -suddenly bent : [u'his'] -inspector had : [u'said'] -fantastic than : [u'this'] -cast down : [u'and', u", '"] -out a : [u'photograph', u'lens', u'piece', u'small', u'little', u'note'] -cease to : [u'be'] -eyes shining : [u'brightly', u','] -my disposal : [u','] -have whatever : [u'bears'] -never, : [u'Mary'] -have just : [u'called', u'been', u'come', u'time', u'as', u'received'] -other rogue : [u'incites'] -Ah!" : [u'said'] -! sweating : [u'rank'] -instantly expired : [u'.'] -give the : [u'alarm'] -8 or : [u'1'] -black veil : [u',', u'over'] -From comparing : [u'notes'] -.' There : [u'is', u'are'] -his resolution : [u','] -They talk : [u'of'] -The country : [u'roads'] -stress is : [u'laid'] -I? : [u'You'] -predominates the : [u'whole'] -A most : [u'painful'] -my speech : [u'.'] -a pheasant : [u','] -keen nature : [u'.'] -Beeches, : [u'five', u'near', u'Mr', u'having'] -clock before : [u'he'] -to deceive : [u'a'] -led me : [u'through'] -computer codes : [u'that'] -and pay : [u'our'] -lying upon : [u'the'] -army, : [u'and'] -I laid : [u'the'] -and dipped : [u'her'] -old scar : [u'ran'] -! Had : [u'he'] -incredulity. " : [u'I'] -the saucer : [u'of'] -I ejaculated : [u'after', u'.'] -in uniform : [u'rushing'] -the unknown : [u'gentleman'] -the logic : [u'rather'] -and learned : [u'that'] -looks, : [u'this'] -tobacco haze : [u','] -in miners : [u"'"] -Darlington substitution : [u'scandal'] -I liked : [u'and', u','] -wife tell : [u'Mrs'] -whole riverside : [u','] -and parted : [u'lips'] -wronged. : [u'I'] -once more : [u'and', u'.', u',', u'for', u'on', u'?', u'. "', u'upon', u'in', u'into', u'to', u'hurry'] -. Hum : [u'!'] -higher court : [u'than'] -yellow, : [u'pasty'] -oscillates, : [u'and'] -you cause : [u'.'] -the setting : [u'sun'] -you mind : [u'reading'] -dinner into : [u'a'] -, wears : [u'thick'] -, really : [u'!"', u',', u'!'] -. Behind : [u'there'] -it. : [u'How', u'As', u'Hence', 'PP', u'I', u'You', u'It', u'In', u'The', u'Pray', u'Finally', u'From', u'But', u'We', u'He', u'And', u'Then', u'Here', u'Why', u'There', u'If', u'Yet', u'Now', u'Or', u'Might', u'Out', u'Its', u'Get', u'By', u'Have', u'Close', u'What', u'Public', u'Any', u'However', u'Are', u'One', u'Oh', u'An', u'His', u'Both'] -it, : [u'give', u'the', u'I', u'or', u'then', u'crowded', u'glanced', u'and', u'after', u'until', u'but', u'there', u'Mr', u'he', u'in', u'too', u'sticking', u'uncle', u'at', u'it', u'for', u'drew', u'belongs', u'of', u'since', u'Holmes', u'Watson', u'probably', u'which', u'dressed', u'however', u'to', u'as', u'was', u'went', u'woods', u'sir', u'you'] -efforts were : [u'in', u'at'] -are in : [u'quest', u'a', u'the', u'search', u'my'] -building in : [u'front'] -For answer : [u'Holmes'] -it' : [u's', u'll'] -those boots : [u'and'] -suggestive. : [u'So', u'You', u'Now'] -it! : [u'You', u'Then'] -it? : [u'He', u'I', u'Did', u'Ah', u'Who'] -our united : [u'strength'] -a light : [u'.', u'upon', u'house', u'sleeper', u'and', u'up', u'sprang', u'in', u'blue'] -he cannot : [u'escape'] -teeth and : [u'hurling', u'whistled'] -Mary Sutherland : [u',', u'. "', u'.'] -passage, : [u'paused', u'and', u'in', u'opened', u'my', u'but', u'through'] -passage. : [u'One'] -great, : [u'hand'] -it behind : [u'him'] -guard yourself : [u'too'] -advantage now : [u'of'] -but those : [u'are'] -all. : [u'Hold', u'The', 'PP', u'This', u'You', u'However', u'Still', u'But', u'He', u'I', u'Drink', u'Yet', u'My', u'A'] -all, : [u'I', u'if', u'from', u'we', u'it', u'try', u'as', u'why', u'take', u'proves', u'Maggie', u'and', u'Watson', u'either', u'then', u'to', u'being', u'do', u'Mr', u'what'] -one beneath : [u'.'] -went out : [u'of', u',', u'to', u'."', u'little', u'for'] -all? : [u'I', u'If'] -dog might : [u'be'] -all; : [u'but'] -without any : [u'warning', u'reply', u'preliminary'] -my arms : [u',', u'to', u'round'] -t pulled : [u'up'] -strange train : [u'of'] -of Ormstein : [u','] -left by : [u'our', u'the'] -which never : [u'have'] -the fishes : [u"'"] -of these : [u'days', u'papers', u'last', u'sots', u'garments', u'stains', u'nocturnal', u'wings', u',', u'cases', u'newcomers', u'gems', u'is'] -the lean : [u'figure'] -striving to : [u'keep'] -chat this : [u'little'] -singular warning : [u'or'] -I wired : [u'to'] -extraordinary circumstances : [u'connected'] -perhaps in : [u'attempting'] -tendencies of : [u'a'] -with that : [u'of', u'unless', u'bird'] -no marks : [u'."', u'of'] -perhaps it : [u'would', u'is', u'may', u'was'] -Sigismond von : [u'Ormstein'] -in breath : [u'of'] -cards and : [u'to'] -speak of : [u'the', u'danger'] -K., : [u'and'] -a limp : [u';'] -was half : [u'dragged', u'up'] -blue. : [u'It'] -knots of : [u'people'] -entirely rely : [u'on'] -shimmering brightly : [u'in'] -tut!' : [u'he'] -right hand : [u'is', u'and', u'side', u'.', u'was', u'block', u'the'] -advice and : [u'help', u'to'] -over that : [u'dark', u'threshold'] -repute in : [u'the'] -young Openshaw : [u'to', u'has', u"'"] -up two : [u'hours'] -Inner Temple : [u'.'] -out and : [u'seized', u'walk', u'burst', u'associate', u'out', u'six', u'laid', u'came', u'round'] -or online : [u'at'] -see Sherlock : [u'Holmes'] -printed description : [u'.'] -Holmes up : [u'the'] -in accordance : [u'with'] -Wilson. " : [u'Never', u'Why'] -low laugh : [u'and'] -ft. : [u'seven'] -stair. : [u'The', u'I'] -occur to : [u'my', u'the', u'him', u'you', u'a', u'it'] -very exacting : [u','] -Turkish slippers : [u'.'] -some such : [u'matter'] -states that : [u'while'] -. Half : [u'a'] -appeared. : ['PP'] -Street a : [u'number'] -were stirring : [u','] -I be : [u'of'] -your doors : [u'at'] -believed my : [u'statement'] -" Lord : [u'Robert'] -things were : [u'to'] -now for : [u'my'] -forming the : [u'tradesmen'] -lady could : [u'not', u'have'] -Melan Dr : [u'.'] -ever he : [u'set'] -so tangled : [u'a'] -this floor : [u'."'] -river by : [u'the'] -had named : [u". '"] -even deeper : [u','] -dropped asleep : [u','] -each and : [u'all'] -The smoke : [u'and'] -wronged by : [u'a'] -good man : [u',', u'should'] -those whimsical : [u'little'] -horror of : [u'my'] -niece and : [u'the'] -Backwater, : [u'Lord'] -the originator : [u'of'] -of myself : [u'in', u',"'] -the apartment : [u'.', u'with'] -expound. : ['PP'] -. Each : [u'daughter'] -and broadened : [u'as'] -forward, : [u'fell', u'wrung', u'and', u'threw', u'seized', u'examining', u'with', u'who'] -cane came : [u'home'] -forward. : [u'In'] -he took : [u'down', u'a', u'it', u'five', u'the', u'me'] -"' Oh : [u',', u",'"] -are you : [u'going', u'doing', u'not', u'?"', u'driving', u',', u'?', u'sure', u'getting'] -the dates : [u','] -several scattered : [u'drops'] -coronet at : [u'double', u'all'] -Something like : [u'fear'] -misjudged him : [u'!"'] -the thirty : [u'nine', u'six'] -stone into : [u'the', u'money'] -a Testament : [u','] -hot. : ['PP'] -I might : [u'rely', u'get', u'be', u'at', u'have', u'find', u'catch', u'hardly', u'leave', u'change'] -nerves worked : [u'up'] -on looking : [u'over'] -looked surprised : [u'and'] -for yourself : [u',', u'that', u'."'] -her sex : [u'.'] -means obvious : [u'to'] -numerous locations : [u'.'] -opinion on : [u'a'] -seen quarrelling : [u'he'] -links to : [u','] -close upon : [u'four', u'six', u'the'] -The speckled : [u'band'] -uses a : [u'cigar'] -Good morning : [u','] -first at : [u'the'] -she wouldn : [u"'"] -hotels. : ['PP', u'There'] -1883. : [u'His'] -"' Pon : [u'my'] -heather tweed : [u'with'] -seeing my : [u'look'] -fashion, : [u'choosing', u'ordered', u'and'] -fashion. : ['PP', u'He'] -wish. : ['PP', u'Perhaps'] -Whittington. : [u'The'] -donations($ : [u'1'] -unwelcome social : [u'summonses'] -seeing me : [u'and', u'.'] -sense to : [u'light'] -the honeymoon : [u'would', u';'] -in several : [u'companies', u'of', u'places'] -locked it : [u'up', u'in', u'again'] -excuse will : [u'avail'] -to relate : [u'and'] -least tenfold : [u'what'] -the occasional : [u'cry', u'bright'] -" God : [u'help', u'bless', u'knows'] -amused. : ['PP'] -been uncomfortable : [u'with'] -when compared : [u'to'] -be determined : [u'is', u'by'] -" you : [u'can'] -tips together : [u'and', u'. "', u','] -for despair : [u'."'] -Then that : [u'will', u'explains'] -1878, : [u'after'] -easier in : [u'my'] -some evil : [u'influence'] -the attention : [u'of'] -ends, : [u'clean'] -Azure, : [u'three'] -" None : [u'."', u'at', u'of', u'.', u'save'] -deduction which : [u'was'] -music on : [u'the'] -which sat : [u'a'] -A confidential : [u'servant'] -adds that : [u'within'] -Your son : [u'had'] -fatal, : [u'but', u'or'] -not wish : [u'to', u'a', u'us', u'anything'] -with reason : [u','] -a three : [u'pipe', u'legged'] -weave, : [u'while'] -wet it : [u'seems'] -short and : [u'perhaps'] -thin hands : [u'.'] -of beer : [u',"', u'from'] -were killed : [u','] -occurred in : [u'the', u'connection', u'your'] -the fugitives : [u'disappeared'] -. Jump : [u'up'] -may cause : [u'you'] -the locality : [u'appeared'] -tried," : [u'said'] -pains were : [u'wasted'] -wallowed all : [u'over'] -several little : [u'changes'] -more patent : [u'facts'] -until midnight : [u','] -weeks. : [u'It', u'When'] -weeks, : [u'with'] -slowly reopened : [u'his'] -words to : [u'each', u'gain', u'thank', u'Holmes'] -gospel, : [u'for'] -an orphan : [u'and'] -has heard : [u'of', u'the'] -cripple!" : [u'said'] -and out : [u'at', u'into', u'came', u'pirates'] -the boot : [u','] -and our : [u'party', u'friend', u'threats', u'lunch'] -the book : [u'upon', u'that'] -matter stands : [u'at', u'thus'] -impressions. : [u'I'] -and relatives : [u'.'] -soon I : [u'found'] -implicating Flora : [u'Millar'] -think I : [u'ever', u"'", u'shall', u'have', u'could'] -trusty tout : [u','] -, Brixton : [u'Road'] -many causes : [u'clbres'] -absolute secrecy : [u'for', u'is', u','] -into Farrington : [u'Street'] -very capable : [u'performer'] -reference beside : [u'the'] -Speckled Band : [u''] -or determine : [u'the'] -Norton was : [u'evidently'] -no notice : [u'of', u".'"] -a labyrinth : [u'of'] -the line : [u'of', u', "'] -a clump : [u'of'] -!' he : [u'said', u'shouted', u'cried'] -that father : [u'came'] -entirely see : [u'all'] -small public : [u'house'] -affairs," : [u'said'] -as her : [u'presence', u'word', u'clothes'] -must press : [u'it'] -None save : [u'my'] -a felony : [u','] -the personality : [u'of'] -ring the : [u'bell'] -estate in : [u'Sussex'] -you waiting : [u',"', u'an'] -own sake : [u',"'] -here?" : [u'he'] -which threatens : [u'you'] -docketing all : [u'paragraphs'] -stage ha : [u'!'] -spent the : [u'last', u'whole', u'time'] -opinion can : [u'do'] -country walk : [u'on'] -of dignity : [u'and'] -your assistance : [u','] -bound from : [u'Reading'] -not take : [u'it', u'place', u'me', u'any'] -hardly reached : [u'the'] -his left : [u'.', u'handedness', u'thumb'] -" Plain : [u'Vanilla'] -shrieked and : [u'fainted'] -" Kindly : [u'look'] -knee. : [u'Five'] -knee, : [u'I'] -you with : [u'these', u'human', u'the'] -hired a : [u'trap'] -It struck : [u'cold', u'me'] -He went : [u'alone'] -" Game : [u'for'] -sleeve. : [u'In', 'PP'] -sleeve, : [u'but'] -silence, : [u'which', u'with', u'each', u'Watson', u'broken', u'during'] -chance that : [u'he'] -her nose : [u','] -we emerged : [u'.', u'into'] -of camp : [u'life'] -sterner, : [u'but'] -immediate departure : [u','] -waited a : [u'little'] -, unfettered : [u'by'] -Pooh!' : [u'said'] -this or : [u'any'] -find an : [u'account', u'enemy', u'extra'] -The left : [u'arm'] -garden were : [u'to'] -eyebrows. : [u'"'] -off other : [u'lovers'] -imbecile in : [u'his'] -is madly : [u','] -incidents should : [u'be'] -not troubled : [u'to'] -slab, : [u'turning'] -mantelpiece with : [u'his'] -quite clear : [u'that', u'to'] -, raised : [u'the'] -recovered gems : [u'to'] -happily together : [u'in'] -Alice the : [u'shock'] -same weight : [u'and'] -walls are : [u'sound'] -blowing, : [u'rushed'] -mouths. : ['PP'] -The furniture : [u'was'] -possible; : [u'it'] -low doors : [u','] -burning poison : [u'waxed'] -the papers : [u'?"', u'are', u'here', u'that', u',', u'which', u'on', u'must', u'I', u'.', u'about', u'diligently', u'of'] -great risk : [u','] -when examining : [u'the'] -entered with : [u'a'] -own request : [u','] -were putty : [u'."'] -you provide : [u'access'] -just at : [u'present', u'the', u'this'] -just as : [u'he', u'you', u'I', u'a', u'mine', u'well', u'it', u'we', u'good'] -, masculine : [u'face'] -door lest : [u'the'] -only yesterday : [u'that'] -be with : [u'you', u'the'] -I dropped : [u'my', u'off'] -works if : [u'you'] -the perpetrators : [u'.'] -this chamber : [u'.'] -died I : [u'felt'] -this season : [u'you'] -throwing it : [u'out'] -short of : [u'thirty', u'1100'] -the sinister : [u'cripple', u'German', u'door', u'house'] -Republican lady : [u'to'] -what purpose : [u'that', u'."'] -locked you : [u'lay'] -has little : [u'time', u'to'] -benefactor of : [u'the'] -the corridor : [u'.', u'lamp', u'from', u'and'] -of tension : [u','] -most incisive : [u'reasoner'] -days ago : [u'.', u'some', u'I'] -will pay : [u'it'] -nor motion : [u'.'] -the attics : [u','] -Indirectly it : [u'may'] -no actual : [u'ill'] -my service : [u'a'] -docks, : [u'breathing'] -Holmes thrust : [u'his'] -allowing this : [u'brute'] -guard our : [u'secret'] -last he : [u'asked', u'cut', u'smoothed', u'became'] -may clear : [u'him'] -my dressing : [u'room'] -astonished, : [u'as'] -destined to : [u'fall'] -inches, : [u'and'] -drawing room : [u',', u'that', u'sofa'] -the coins : [u'upon'] -as for : [u'their'] -answered, " : [u'but'] -the band : [u'of', u'!'] -deal in : [u'this'] -came the : [u'little', u'stone', u'goose', u'occasional', u'colonel'] -s Thumb : [u''] -quite invaluable : [u'as'] -only hear : [u'the'] -nothing at : [u'all'] -cane at : [u'the'] -suggest the : [u'idea'] -snapped the : [u'salesman'] -representations concerning : [u'the'] -a delusion : [u'from'] -own grounds : [u'.'] -most kindly : [u'put'] -King employed : [u'an'] -quite impossible : [u'to', u",'"] -have even : [u'contributed'] -shown to : [u'be'] -slowly sank : [u'and'] -communication. : [u'And'] -. O : [u'."'] -a sombre : [u'yet'] -that hour : [u',', u'we'] -was wild : [u','] -long series : [u'of'] -readable form : [u'accessible'] -even broke : [u'into'] -have ever : [u'listened', u'done', u'come', u'seen', u'heard', u'believed'] -which seem : [u'to'] -. K : [u'.', u".!'", u".,'", u".';", u'.,'] -offered to : [u'typewrite', u'him', u'give', u'me'] -meet any : [u'little'] -arrest. : ['PP'] -myself a : [u'branded'] -arrest, : [u'or'] -. E : [u'.', u'below'] -away," : [u'said'] -black ceiling : [u'was'] -( for : [u'I'] -had received : [u'no'] -. " Do : [u'you', u'come'] -He advanced : [u'slowly'] -a rifled : [u'jewel'] -low hill : [u','] -His death : [u'was'] -muttering under : [u'his'] -He is : [u'dark', u'a', u'dead', u'still', u',', u'not', u'as', u'asleep', u'so', u'said', u'looking', u'older', u'round', u'one', u'small'] -sided boots : [u'.'] -surprise. : ['PP', u'Astonishment', u'I'] -surprise, : [u'the', u'was', u'threw', u'and'] -your best : [u'attention'] -either an : [u'innocent'] -are found : [u'again', u'never'] -consoled young : [u'McCarthy'] -of easy : [u'berths'] -the western : [u'border'] -his should : [u'ever'] -have thrown : [u'him', u'in'] -terrible change : [u'came'] -crisp February : [u'morning'] -request that : [u'they'] -the ways : [u'of'] -fancy to : [u'me'] -panel in : [u'the'] -like and : [u'had'] -the mask : [u'from'] -cut him : [u'over'] -annoyed at : [u'your', u'not'] -to myself : [u'by', u'.'] -has gone : [u'to'] -. " These : [u'are'] -father?" : [u'asked'] -me leave : [u'it'] -bicycling. : [u'He'] -no idea : [u'that', u'how', u'.', u'what'] -contrast to : [u'it', u'his', u'the'] -woman' : [u's'] -asked in : [u'a'] -Hold it : [u'up'] -white cloth : [u'and'] -to flash : [u'out'] -. 7 : [u'or', u'and', u'.'] -And, : [u'first', u'I', u'above', u'indeed'] -scared by : [u'his'] -!' she : [u'whispered', u'cried'] -advised by : [u'him'] -the lake : [u',', u'.'] -houses here : [u'.'] -a device : [u'for'] -vain, : [u'for'] -Carefully as : [u'I'] -fleshless nose : [u','] -. 2 : [u'is', u'.'] -named. ' : [u'There'] -always wind : [u'up'] -I gained : [u'through', u'the', u'?"'] -affecting to : [u'disregard'] -ascend the : [u'stairs'] -that need : [u'cause'] -any such : [u'body', u'theory', u'person'] -been detailing : [u'this'] -the things : [u'which', u'had'] -gasped. " : [u'I'] -It only : [u'remains'] -much surprised : [u'and', u'at', u'if'] -" Nous : [u'verrons'] -than ever : [u',', u'.'] -ve lost : [u'your'] -. Accustomed : [u'as'] -you to : [u'night', u'throw', u'your', u'chronicle', u'Mr', u'be', u'realise', u'come', u'start', u'go', u'tell', u'say', u'do', u'anything', u'observe', u'crack', u'take', u'thoroughly', u'implore', u'use', u'hear', u'condescend', u'wear', u'the', u'have'] -naturally. : [u'By'] -quite dramatic : [u','] -Colonel Lysander : [u'Stark'] -contradict me : [u'if'] -?""' : [u'December', u'Sold'] -upon terms : [u'of'] -subtle powers : [u'of'] -should occur : [u'to'] -was directed : [u'towards'] -called a : [u'cab'] -pipe problem : [u','] -Aldershot, : [u'the'] -continued my : [u'companion'] -and tore : [u'the', u'him'] -forward with : [u'such', u'a', u'me'] -not got : [u'mine', u'blood'] -shall continue : [u'my', u'with'] -. Windibank : [u'that', u'came', u'draws', u'did', u',', u'gave', u',"', u'sprang', u'.', u'!"'] -Prussian War : [u'.'] -a mews : [u'in'] -emaciation seemed : [u'to'] -blows, : [u'for'] -words of : [u'his', u'the', u'broken', u'apology', u'mine'] -a wash : [u',"'] -cocked his : [u'head'] -tallow stain : [u','] -legs. : [u'As'] -know," : [u'said'] -the sole : [u'in', u','] -constraint and : [u'made'] -the American : [u'. "'] -s waiting : [u'maid'] -decoyed away : [u'by'] -Lip VII : [u'.'] -I journeyed : [u'down'] -word of : [u'the', u'news', u'complaint'] -figure outlined : [u'against'] -beer from : [u'the'] -small cut : [u'which'] -slight infirmity : [u'of'] -hook just : [u'above'] -ball. : ['PP', u'What'] -word or : [u'writing', u'a'] -that remark : [u'that'] -hot day : [u','] -over these : [u'rooms', u'papers'] -, obese : [u','] -ordnance map : [u'of'] -box, : [u'like'] -usual country : [u'hotel'] -lost, : [u'if'] -quarrelling near : [u'Boscombe'] -sir! : [u'He', u'See', u'Oh'] -refund from : [u'the'] -that clear : [u'voice'] -and surmise : [u'than'] -to pay : [u'him', u'short', u'over', u'for'] -stroke of : [u'eleven'] -These are : [u'daring', u'young', u'the', u'very'] -You observed : [u'that'] -worthy of : [u'being'] -82 and : [u"'"] -broken English : [u'at'] -nor the : [u'photograph', u'reverse'] -the firm : [u',', u'for'] -match these : [u','] -and comfortable : [u'double'] -the fire : [u'and', u',', u'."', u'in', u'. "', u'.', u'!', u'spinning', u'until'] -substitution scandal : [u'it'] -, rooms : [u'8s'] -files containing : [u'a'] -nothing since : [u'breakfast'] -, each : [u'mumbling', u'in', u'of'] -weakening nature : [u'.'] -were going : [u'to', u'on'] -pleading face : [u'was'] -which puzzled : [u'us'] -that year : [u'.'] -infinitely stranger : [u'than'] -secure and : [u'permanent'] -tresses together : [u','] -, borrow : [u'so'] -for further : [u'inquiries'] -paper edition : [u'.'] -fee for : [u'obtaining', u'access', u'copies'] -thrust into : [u'red', u'the'] -a solution : [u'by', u'as'] -very injured : [u'expression'] -His cheeks : [u'were'] -commerce flowing : [u'in'] -huge vault : [u'or'] -, extremely : [u'dirty'] -the descending : [u'piston'] -solid all : [u'round'] -an aristocratic : [u'pauper', u'club'] -to details : [u',"'] -right little : [u'finger'] -and fairly : [u'strong'] -exceptionally strong : [u'in'] -came right : [u'away', u'over'] -all efforts : [u'were'] -stretching from : [u'the'] -some fifty : [u'yards'] -", of : [u'the'] -, Project : [u'Gutenberg'] -A precious : [u'stone'] -desperation, : [u'he'] -earth, : [u'which'] -be remembered : [u','] -you from : [u'Mrs', u'your', u'copying'] -strange transformer : [u'of'] -my business : [u'came', u'to', u','] -raise the : [u'cry', u'bar', u'money'] -be allowed : [u'to'] -the occasion : [u'."'] -old battered : [u'felt'] -In the : [u'case', u'present', u'meantime', u'surgeon', u'latter', u'first', u'dim', u'bathroom', u'road', u'cells', u'larger', u'last', u'dress', u'pocket', u'card', u'second', u'middle', u'scuffle'] -own seal : [u'."'] -an interest : [u'in'] -yet grasped : [u'the'] -idea that : [u'he', u'the', u'she'] -with restless : [u'frightened'] -or torn : [u'right'] -tenacious as : [u'a'] -could object : [u". '"] -not advertise : [u'?"', u'."'] -equally clear : [u'that'] -pay good : [u'money'] -illustrate. : [u'Some'] -are scattered : [u'throughout'] -ugly wound : [u'upon'] -, sunburnt : [u'man'] -in allowing : [u'this'] -the King : [u'.', u'reproachfully', u'of', u'is', u'to', u'without', u'hoarsely', u'and', u'employed', u'; "', u'had'] -cheap. : ['PP'] -the armchair : [u'which'] -eyes fixed : [u'on', u'vacantly', u'full', u'upon'] -met the : [u'eye', u'solicitation'] -influence over : [u'him', u'her'] -afraid the : [u'doctor'] -three teeth : [u'were'] -noblest in : [u'the'] -trace it : [u','] -. 31 : [u'Lyon'] -hastily closing : [u'the'] -deduce. : ['PP'] -the footpaths : [u'were'] -drive back : [u'to'] -your suspicions : [u'when'] -" Having : [u'once'] -. Clair : [u'has', u"'", u'by', u'is', u'went', u'had', u'walked', u',', u'.', u'and', u'through', u'was'] -, lichen : [u'blotched'] -sighing note : [u'of'] -tags of : [u'his'] -. Down : [u'the'] -another woman : [u','] -sight seems : [u'to'] -! Jump : [u','] -empty upon : [u'the'] -stout bearing : [u','] -such a : [u'shabby', u'dear', u'youth', u'fellow', u'sight', u'very', u'head', u'will', u'sum', u'good', u'place', u'hurry', u'dramatic', u'result', u'damning', u'union', u'blow', u'scent', u'populous', u'man', u'temptation', u'case', u'day', u'collection', u'room', u'two', u'way', u'night', u'quiet', u'trifle', u'state', u'one', u'poison', u'commission', u'start', u'mixed', u'crisis', u'theory', u'comfortable', u'dress', u'situation', u'user'] -accepted in : [u'a'] -She brought : [u','] -storm grew : [u'higher'] -other suitor : [u'for'] -" One : [u'more', u'day', u'moment', u'of', u'?"', u'tallow', u'horse'] -his affairs : [u';'] -, starting : [u'in'] -most complete : [u'manner'] -doing so : [u".'", u'were'] -never persuade : [u'me'] -light as : [u'to'] -effected. : [u'He'] -possible you : [u'do'] -no further : [u'evidence', u'steps', u'particulars', u'interest'] -horrible life : [u'of'] -were blocked : [u'by'] -consult my : [u'index'] -or providing : [u'access'] -at Paddington : [u'as'] -wooden stool : [u'there'] -nearing the : [u'end'] -being present : [u'save'] -such I : [u'had'] -widest variety : [u'of'] -, since : [u'you', u'the', u'we', u',', u'he', u'it'] -three have : [u'been'] -shot with : [u'premature'] -consult me : [u'?"', u'in', u'professionally'] -went towards : [u'the'] -rack. : [u'"', 'PP'] -hundred and : [u'fifty'] -address your : [u'letters'] -chemical test : [u'was'] -seemed the : [u'darker'] -seats I : [u'shall'] -man. " : [u'There'] -relapsing into : [u'his'] -a cause : [u'of'] -police agent : [u',', u'loftily'] -though at : [u'each'] -empty room : [u','] -lie. : ['PP'] -door shut : [u'just'] -story as : [u'that'] -then ran : [u'swiftly'] -and disreputable : [u'clothes', u'hard'] -intend to : [u'do'] -were printed : [u'upon'] -animal. : [u'Her'] -real name : [u',"', u'is'] -to abuse : [u'your'] -He raised : [u'his'] -though an : [u'absolute'] -those lords : [u'and'] -sympathy and : [u'freemasonry', u'indignation'] -salesman named : [u'Breckinridge'] -much for : [u'me', u'the', u'Mr', u'you'] -counsel. : [u'Old'] -rolling hills : [u'around'] -some foul : [u'and', u'plot'] -calculated using : [u'the'] -way merely : [u'in'] -all pointed : [u'in', u'to'] -the quick : [u',', u'analysis', u'.'] -"' There : [u'is', u'are'] -loose every : [u'night'] -last with : [u'his'] -little son : [u'.'] -abhorrent to : [u'his'] -two scattered : [u'villages'] -rather over : [u'the'] -certainly. : ['PP', u'But'] -stealthily along : [u'the'] -certainly, : [u'certainly', u'if'] -the many : [u'causes'] -wished us : [u'to'] -crackling fire : [u',', u'.'] -backed one : [u','] -adjective which : [u'she'] -been reading : [u'the'] -at seven : [u'sharp', u'.'] -woman grabs : [u'at'] -so homely : [u'a'] -you must : [u'come', u'stay', u'on', u'at', u'have', u'not', u'open', u'turn', u'cease', u'comply', u',', u'obtain', u'return'] -directions until : [u'there'] -the leather : [u'is', u'bag'] -about their : [u'license'] -can often : [u'do'] -tie. : [u'I'] -slowly open : [u'.'] -tie, : [u'his'] -), the : [u'work'] -to undergo : [u'the'] -her terrible : [u'fate'] -left a : [u'square', u'tidy', u'match', u'fragment'] -sponge like : [u'the'] -pluck at : [u'my'] -without an : [u'ending'] -a character : [u'of', u"?'"] -quite peculiar : [u'to'] -principal points : [u'about'] -small man : [u'with'] -head by : [u'putting'] -cannot allow : [u'that'] -his innocence : [u',', u'in', u'.'] -strong presumption : [u'that'] -he begged : [u'me'] -Who are : [u'you'] -public scandal : [u'would', u',"'] -thumb and : [u'I'] -the dressing : [u'room', u'table'] -been very : [u'handy', u'shamefully', u'kind'] -thumb over : [u'his'] -precaution should : [u'be'] -limitation set : [u'forth'] -has your : [u'business'] -that Mrs : [u'.'] -suffer shipwreck : [u'if'] -linen bag : [u'with'] -love for : [u'Irene'] -purpose. : [u'Well', u'The', 'PP'] -250 pounds : [u','] -features were : [u'gravely'] -?" He : [u'ran', u'raised', u'looked', u'spoke', u'took', u'sank', u'slipped', u'picked', u'opened'] -he presently : [u':'] -brought with : [u'him'] -and unforeseen : [u'manner'] -socket along : [u'which'] -the thousand : [u'.'] -Is that : [u'your'] -posterior third : [u'of'] -with reference : [u'to'] -"' Undoubtedly : [u'so'] -he set : [u'off', u'foot'] -Berkshire in : [u'the'] -who this : [u'prisoner'] -not retired : [u'to'] -VI. : [u'The', u'THE'] -up my : [u'ears', u'pen', u'arms', u'mind', u'spirits'] -playing backgammon : [u'and'] -he see : [u'it'] -wicket gate : [u','] -previous morning : [u';'] -little note : [u'.'] -precaution because : [u'I'] -of Lord : [u'Robert', u'St', u'Southerton'] -given him : [u'up'] -trace. : [u'But'] -lamp there : [u'as'] -the clink : [u'of'] -lonely, : [u'for'] -!'"' : [u'What', u'You', u'Only'] -ladies wander : [u'about'] -read a : [u'good'] -repulsive sneer : [u'to'] -seen anything : [u'so'] -leaning against : [u'the'] -heavens!" : [u'cried', u'she', u'I'] -gate to : [u'see'] -evidently newly : [u'studied'] -are unable : [u'to'] -given his : [u'own'] -lead us : [u'.'] -lead up : [u'from', u'to'] -bizarre and : [u'outside'] -proceedings which : [u'may'] -policeman or : [u'a'] -, trying : [u'hard'] -Simon shook : [u'his'] -schoolmaster in : [u'Chesterfield'] -father became : [u'a'] -s story : [u'were', u','] -slight tremor : [u'of'] -find this : [u'Hosmer'] -little enough : [u'of', u'consideration', u'in'] -must appear : [u'prominently'] -happy thought : [u'seized'] -heard upon : [u'the'] -us know : [u'what'] -I trust : [u'that', u'you', u','] -windows in : [u'it', u'the'] -and warmed : [u'my'] -surgeon. : ['PP'] -. Jabez : [u'Wilson'] -surgeon' : [u's'] -grim or : [u'his'] -works based : [u'on'] -, perhaps : [u',', u'?"', u'I', u'from', u'to', u'she', u'you', u'it', u';', u'even', u',"'] -in them : [u'which', u'to'] -a slit : [u'between'] -those are : [u'the'] -her fair : [u'personal'] -stroke to : [u'him'] -what could : [u'have', u'it'] -silent Englishman : [u','] -her her : [u'head'] -to weave : [u','] -beer," : [u'he'] -names. : ['PP'] -every day : [u',', u'.', u'lately'] -the flies : [u','] -full accounts : [u'.'] -a pew : [u','] -ensuring that : [u'the'] -plain questions : [u','] -ready enough : [u'to'] -newly severed : [u'human'] -and myself : [u'.'] -cold woodcock : [u','] -our engagement : [u'lasting'] -From all : [u'I'] -in office : [u'!"'] -know how : [u'he', u'we', u'to', u'the', u'subtle'] -bring his : [u'little'] -really cannot : [u'undertake'] -bring him : [u'in', u'back', u'out', u'round'] -peering and : [u'benevolent'] -a California : [u'millionaire'] -equally uncompromising : [u'manner'] -fear sprang : [u'up'] -were little : [u'children', u'likely'] -About five : [u'ft'] -woman may : [u'be'] -breach of : [u'promise'] -laughed very : [u'heartily'] -an instance : [u'of'] -he noticed : [u'my'] -was dead : [u'the'] -burnished metal : [u'in'] -tread was : [u'marked'] -arms and : [u'began'] -if any : [u'harm', u'misfortune', u')'] -thrown over : [u'his'] -. Upon : [u'the'] -read nothing : [u'except'] -ladies half : [u'their'] -more favourable : [u'to'] -bedded one : [u'."'] -depressing and : [u'subduing'] -love himself : [u'."'] -offended dignity : [u'.'] -both think : [u','] -piece. : ['PP'] -Gregory B : [u'.'] -the intruder : [u'by'] -tm web : [u'site'] -week to : [u'week', u'the'] -brought you : [u'back'] -for this : [u'marriage', u'is', u'information', u'last', u'poor', u'was'] -libraries, : [u'or'] -little blonde : [u'woman'] -Watson?" : [u'he', u'asked'] -" Come : [u'in', u'with', u',"'] -cleaver," : [u'said'] -changes carried : [u'out'] -and started : [u'off', u'for'] -is always : [u'THE', u'under', u'far', u'at', u'either', u'of', u'awkward', u'instructive', u'a', u'as'] -passage and : [u'through', u'a'] -successive entries : [u'that'] -I expected : [u',', u'.', u'to', u'them'] -the age : [u'of'] -safe and : [u'sound', u'turned', u'should'] -live with : [u'him', u'their'] -one end : [u'to', u'of'] -have. : [u'And', 'PP', u'When'] -has never : [u'been', u'yet'] -I ascended : [u'the'] -though comely : [u'to'] -was engaged : [u'in'] -said Bradstreet : [u'. "'] -with him : [u'.', u',', u'the', u'and', u'."', u'in', u'with', u'?"', u';', u'through'] -with his : [u'whole', u'head', u'coat', u'wheel', u'own', u'forefinger', u'thick', u'eyes', u'thin', u'stick', u'methods', u'finger', u'fingertips', u'long', u'bright', u'hands', u'serving', u'father', u'back', u'barmaid', u'lens', u'pen', u'son', u'death', u'jaw', u'whip', u'tiny', u'friend', u'disappearance', u'face', u'hat', u'right', u'huge', u'cane', u'heavy', u'compasses', u'wedding', u'arms', u'brows', u'family', u'chin', u'powerful', u'feet', u'valet', u'lids'] -these efforts : [u','] -saw what : [u'it'] -. Leave : [u'Paddington'] -visit the : [u'scene'] -he choked : [u'and', u','] -but exceedingly : [u'hot'] -been anything : [u'against'] -to discuss : [u'what', u'my'] -few weeks : [u'before'] -manner indicated : [u','] -a time : [u',', u'for', u'it', u'in'] -her statement : [u'she'] -after midnight : [u'.'] -where you : [u'are', u'rest', u'should', u'found', u'got', u'live'] -becomes. : [u'Still'] -their heads : [u'to', u'might'] -becomes, : [u'then'] -this gentleman : [u',', u'anything', u'and', u'in'] -extraordinary story : [u'of', u'.'] -glance into : [u'the'] -brow and : [u'a'] -second opportunity : [u'to'] -soon receive : [u'a'] -later, : [u'upon', u'I'] -later. : [u'It'] -the running : [u'down'] -, noiseless : [u'fashion'] -circle with : [u'Eyford'] -the cold : [u'dank'] -were brought : [u'together', u'out'] -1869, : [u'the'] -fellow will : [u'rise', u'not'] -violent temper : [u'.'] -conceal it : [u'?"'] -those out : [u'and'] -the name : [u'of', u'was', u'is', u'I', u',', u'which', u'and'] -something distinctly : [u'novel'] -outer edge : [u'of'] -correspondence with : [u'this'] -of Goodge : [u'Street'] -Farm rent : [u'free'] -him cut : [u'a'] -has carried : [u'it', u'himself', u'his'] -very many : [u'minutes', u'other'] -"' A : [u'dozen'] -fruitless labour : [u'and'] -been telling : [u'you'] -wear. : [u'The'] -then Frank : [u'went'] -, rushed : [u'from', u'into', u'back', u'at'] -noted even : [u'so'] -and rising : [u'from'] -hung a : [u'very'] -companion, " : [u'I', u'that'] -what his : [u'conclusions'] -shining slits : [u'amid'] -s premises : [u','] -direction he : [u'was'] -A few : [u'seconds', u'country', u'yards', u'moments'] -reserve it : [u'for'] -the impossibility : [u'of'] -." Ryder : [u'quivered', u'passed'] -mother said : [u'she'] -to morrow : [u'afternoon', u',', u'.', u"?'", u'?"', u'."', u'morning', u'if', u',"'] -his records : [u'of'] -" Stolen : [u'."', u','] -Toller!" : [u'cried'] -a pitiable : [u'state'] -My stepdaughter : [u'has'] -hear by : [u'post'] -occasionally to : [u'embellish'] -or corrupt : [u'data'] -rushed from : [u'the'] -poison. : ['PP'] -fall down : [u'and'] -frightened horse : [u','] -happy under : [u'your'] -News, : [u'Standard'] -unpleasant night : [u'which'] -more than : [u'once', u'just', u'his', u'150', u'I', u'such', u'ever', u'one', u'an', u'a', u'750', u'five', u'thirty', u'is', u'that', u'it', u'possible', u'random', u'sufficient'] -other had : [u'run'] -questioning and : [u'rather', u'thoughtful'] -least,' : [u'said'] -dog, : [u'as'] -approaching it : [u','] -you sit : [u'on'] -word the : [u'man', u'whole'] -you never : [u'heard', u'had', u'--"', u'been'] -, your : [u'friend', u'Majesty', u'client', u'household', u'example', u'stepfather', u'father', u'secret', u'rooms', u'statement', u'son', u'lad', u'own', u'use'] -seen her : [u'since', u'husband', u'at'] -it in : [u'twenty', u'that', u'spite', u'peace', u'this', u'the', u'The', u'a', u'any', u'person'] -Pray step : [u'into'] -. Yes : [u','] -forced to : [u'admit', u'go', u'use', u'raise', u'acquiesce'] -the heading : [u"'"] -it if : [u'he', u'possible'] -anything like : [u'that'] -go from : [u'here'] -inn over : [u'there'] -Palmer and : [u'Pritchard'] -s conduct : [u'had'] -it is : [u'not', u'of', u'almost', u'."', u'probable', u'always', u'impossible', u',', u'.', u'just', u'splendid', u'really', u'no', u'a', u'possible', u'all', u'still', u'time', u'usually', u'my', u'perhaps', u'far', u'you', u'profoundly', u'to', u'conjectured', u'very', u'that', u'surely', u'the', u'indeed', u'absolutely', u'more', u",'", u'necessary', u'quite', u',"', u'recovered', u'Kate', u'Friday', u'true', u'your', u'his', u'better', u'!"', u'obvious', u'also', u'extremely', u'blue', u'as', u'something', u'out', u'concerned', u'unlikely', u'fastened', u'such', u'for', u'likely', u'anything', u'only', u'too', u'in', u'south', u": '", u'currently', u'an', u'said', u'--"', u'correct', u'childish', u'important', u'unwise', u'hardly', u'after', u'hardest', u'certain', u'frequently', u'because', u'upon', u'one', u'clear', u'so', u'posted'] -felony with : [u'impunity'] -fists, : [u'and'] -my conclusions : [u'as'] -buttoned, : [u'and', u'it'] -businesslike precaution : [u'should'] -from left : [u'to'] -temper to : [u'lecture'] -passed over : [u'this', u'her'] -even less : [u'so'] -peculiar mixture : [u'of'] -long effort : [u'to'] -. ' Hullo : [u"!'", u'!'] -a knife : [u'and', u'could'] -you certainly : [u'have'] -it together : [u'.'] -un' : [u'protruding'] -are steps : [u'on'] -gash seemed : [u'to'] -not he : [u'heard'] -The sun : [u'was'] -whose eyes : [u'rested'] -brows were : [u'drawn'] -mania has : [u'been'] -now of : [u'my'] -, whence : [u'he', u'it'] -to sink : [u','] -are waiting : [u'for'] -followed shortly : [u'by'] -exceedingly hot : [u'day', u'headed'] -most lucrative : [u'means'] -dark as : [u'it'] -happily at : [u'Horsham'] -know of : [u'the', u'no'] -were forced : [u'to'] -minute and : [u'yet'] -and peep : [u'in'] -here are : [u'four', u'three', u'the'] -, moistened : [u'his'] -, scrawled : [u'over'] -path and : [u'amid', u'walked'] -was burning : [u'brightly'] -. Redistribution : [u'is'] -Then who : [u'could'] -been waylaid : [u'.'] -I passed : [u'the', u'down', u'out', u'outside', u'his', u',"', u'along', u'round', u'you'] -and changed : [u'my'] -., breakfast : [u'2s'] -thought sometimes : [u'that'] -slits amid : [u'the'] -stretched up : [u'in'] -saw Arthur : [u'with'] -revolver and : [u'laid'] -what absolutely : [u'unforeseen'] -Holmes thoughtfully : [u'. "', u','] -compass among : [u'us'] -danseuse at : [u'the'] -my bedroom : [u'wall', u'again', u'window'] -ground. " : [u'You'] -will excuse : [u'this', u'my', u'me'] -there broke : [u'from'] -Paul' : [u's'] -the coolest : [u'and'] -their investigations : [u'.'] -this money : [u','] -' AS : [u'IS'] -standi now : [u'is'] -than formerly : [u','] -behind us : [u',', u'.'] -would imply : [u'.'] -a bride : [u"'"] -even here : [u'we', u'in'] -accused in : [u'their'] -thing which : [u'she', u'I'] -convert to : [u'and'] -yellow band : [u','] -a fowl : [u'fancier'] -and trousers : [u','] -clock tomorrow : [u'evening'] -lay my : [u'finger'] -sister had : [u'told', u'met'] -the skirt : [u'of'] -any one : [u'of'] -in bed : [u'.', u','] -apparition. : ['PP'] -up among : [u'the'] -higher stake : [u'to'] -donations received : [u'from'] -Heh. : ['PP'] -such weight : [u'it'] -little nervous : [u'disturbance'] -belated party : [u'of'] -and led : [u'down', u'into', u'the'] -They would : [u'have'] -only catch : [u'some'] -here comes : [u'the'] -smartest man : [u'in'] -How was : [u'it'] -and likely : [u'to'] -and let : [u'me', u'us', u'the'] -Turner had : [u'an', u'a'] -Redistribution is : [u'subject'] -our stones : [u'at'] -, sent : [u'the'] -rate.' : [u'She'] -was why : [u'she'] -sinister history : [u'.'] -A Juryman : [u':'] -hardly said : [u'the'] -German books : [u'were'] -quotes Balzac : [u'once'] -was who : [u'gave'] -be alone : [u'.'] -for easy : [u'concealment'] -tossed a : [u'crumpled'] -the whitewashed : [u'corridor'] -his arms : [u'.', u'my', u'and', u'akimbo', u'folded'] -, ' can : [u'you'] -are dealing : [u'with'] -her finger : [u'into'] -Ay, : [u'bodies'] -suspicious and : [u'questioning'] -I frequently : [u'found'] -sad, : [u'anxious'] -hardly looked : [u'at'] -is let : [u'loose'] -holder), : [u'the'] -us like : [u'a'] -church first : [u','] -communicated with : [u'his', u'the'] -?" Something : [u'like'] -pressed down : [u'the'] -come for : [u'half', u'advice'] -an inn : [u'of'] -emerged from : [u'the'] -silk and : [u'secured', u'the'] -25 pounds : [u'.'] -an accessory : [u'to'] ---" you : [u'have'] -. Email : [u'contact'] -be glad : [u'if', u'to'] -to finding : [u'this'] -great panoply : [u'she'] -whole position : [u'forever'] -evidence against : [u'him'] -the seven : [u'years'] -apart from : [u'the'] -this intention : [u','] -a series : [u'of'] -Spence Munro : [u',', u".'"] -produced and : [u'distributed'] -By this : [u'time'] -searching gaze : [u'.'] -own bird : [u','] -other occupations : [u".'"] -of shelter : [u'and'] -wardrobe. : [u'And', 'PP'] -points of : [u'my'] -you consider : [u'that', u'the'] -damage or : [u'cannot'] -thirty nine : [u'enormous', u','] -which he : [u'had', u'explained', u'could', u'disentangled', u'might', u'opened', u'was', u'treated', u'held', u'is', u'wore', u'cannot', u'enlarged', u'would', u'still', u'never', u'has', u'can', u'perched', u'raised', u'anoints', u'knew', u'unravelled', u'consulted', u'shook', u'digs', u'closed', u'achieved', u'unlocked', u'placed', u'did', u'bowed', u'exposed', u'frequently', u'told'] -thin cane : [u','] -mark the : [u'house'] -overcoat, : [u'in'] -become engaged : [u'then'] -blue tinted : [u'paper'] -What!" : [u'Sherlock', u'he'] -Eight weeks : [u'passed'] -commonplace a : [u'crime'] -fantastic talk : [u','] -grim and : [u'strange'] -going, : [u'and', u'Watson'] -going. : [u'I', 'PP'] -silence broken : [u'only'] -entangled with : [u'this'] -whisper, : [u'and'] -from injuring : [u'another'] -grinning at : [u'my'] -his approach : [u','] -justice will : [u'be'] -give one : [u'of'] -may some : [u'day'] -deed at : [u'a'] -tawny tinted : [u','] -his singular : [u'introspective', u'character', u'account', u'dying'] -it about : [u'with'] -cut both : [u'ways'] -firm in : [u'the'] -There has : [u'been'] -describes as : [u'being'] -mangled, : [u'into'] -He did : [u'tell'] -Openshaw did : [u'before'] -example to : [u'hand'] -recoiled in : [u'horror'] -YOU HAVE : [u'NO'] -wild clatter : [u'of'] -met seemed : [u'to'] -wait you : [u'at'] -your arm : [u'?"'] -writing( : [u'or'] -bearing in : [u'vegetables'] -the ground : [u'. "', u',', u'floor', u'--"', u'to', u'.', u'but', u'I'] -their tents : [u','] -grey gables : [u'and'] -rest about : [u'that'] -a slim : [u'youth'] -sweet womanly : [u'caress'] -too generous : [u'with'] -the inquirer : [u'flitted'] -gloomy intervals : [u'of'] -League has : [u'a'] -her dark : [u'dress', u'eyebrows'] -tightly round : [u'his', u'the'] -coat tails : [u'."'] -began to : [u'walk', u'think', u'examine', u'ask', u'sob', u'call', u'laugh', u'move', u'come', u'sink', u'stare', u'steal', u'be', u'speak', u'run', u'admire', u'tell', u'amuse'] -the possibility : [u'of'] -ll crack : [u'a'] -course the : [u'pay'] -Very long : [u'and'] -his knees : [u'upon', u','] -best inspect : [u'a'] -first example : [u'to'] -a brown : [u'board', u'crumbly'] -seedy coat : [u','] -roofs of : [u'the'] -would break : [u'her', u'their'] -inspect a : [u'few'] -expressed admiration : [u'of'] -always fill : [u'me'] -t we : [u'be'] -prohibition against : [u'accepting'] -borne a : [u'stain'] -Web pages : [u'for'] -What will : [u'you', u'he', u'the'] -The nobleman : [u'swung'] -generations to : [u'come'] -thudding noise : [u'came'] -cheerily as : [u'we'] -his blazing : [u'red'] -water through : [u'one'] -Hankey' : [u's'] -could desire : [u'about'] -inquiries on : [u'the'] -disappointed. : [u'There'] -secrecy, : [u'you'] -away round : [u'to'] -easily. : ['PP'] -interesting one : [u',"', u'."'] -she had : [u'probably', u'resolved', u'been', u'a', u'written', u'left', u'entered', u'passed', u'spoken', u'given', u'actually', u'no', u'ceased', u'not', u'struck', u'caught', u'come', u'some', u'only', u'gone', u'made', u'become', u'repented', u',', u'spent', u'married', u'fainted', u'lost', u'an', u'divined'] -at 4557 : [u'Melan'] -suddenly an : [u'idea'] -cabby drove : [u'fast'] -other block : [u'.'] -!" replied : [u'our'] -out into : [u'the', u'a', u'smoke'] -. in : [u'height'] -lengthened out : [u'until'] -she has : [u'been', u'a', u'not', u'said', u'turned', u'left', u'made', u'known', u'refused', u'only', u'anything', u'passed', u'met'] -where four : [u'lines'] -rushed forward : [u',', u'to'] -ladder should : [u'be'] -working as : [u'he'] -unsolved problem : [u'upon'] -fourth day : [u'after'] -a pen : [u',', u'.', u'. "'] -wire to : [u'the'] -clearly so : [u'scared'] -excitement. " : [u'I', u'There'] -looking up : [u'in', u'at'] -his pen : [u'in'] -into business : [u'with'] -of ruin : [u'.'] -his pea : [u'jacket'] -opened by : [u'a'] -nurtured man : [u'.'] -event of : [u'our', u'that'] -removed. : [u'Saturday', u'Of'] -! you : [u'have', u'find', u'thief'] -even giving : [u'me'] -let some : [u'light'] -in enclosure : [u','] -saw William : [u'Crowder'] -lowliest manifestations : [u'that'] -road. : ['PP', u'He', u'A'] -road, : [u'two', u'and', u'a'] -not so : [u'much', u'impossible', u'very'] -Hatherley' : [u's'] -they? : [u'Who'] -refusal to : [u'answer', u'give'] -lay back : [u'in', u'without'] -errand. : ['PP', u'However'] -errand, : [u'as', u'and'] -persuade myself : [u'that'] -approach him : [u','] -walking through : [u'Swandam'] -pips to : [u'A'] -. SIMON : [u".'"] -contraction, : [u'has'] -, grasping : [u'Sherlock'] -!"" : [u'Then', u'What', u'And', u'But', u'To', u'So', u'Yes', u'Very', u'The', u'He', u'Oh', u'Get', u'No', u'That', u'Well', u'I', u'On', u'It', u'When'] -suddenly as : [u'it'] -, woods : [u'on'] -Paradol Chamber : [u','] -all that : [u'there', u'is', u',', u'?"', u'was', u'I', u'he', u'district', u'caught', u'occurred', u'it', u'we', u'my', u'had', u'way', u',"', u'."', u'you', u'Miss', u'the', u'remains'] -Surrey side : [u'.'] -the objection : [u'might'] -to their : [u'heels', u'nature', u'beat', u'owner', u'master', u'whereabouts'] -in formats : [u'readable'] -minutes with : [u'his'] -then began : [u'walking'] -I hope : [u'that', u'a', u'we', u'to'] -the enclosure : [u'is'] -us here : [u'at'] -her ledgers : [u'and'] -addressing Wilhelm : [u'Gottsreich'] -the foot : [u'of', u'path', u'paths'] -some compromising : [u'letters'] -was tied : [u'to'] -the wood : [u'and', u',', u"?'", u'until', u'.', u'work'] -. Duncan : [u'Ross'] -any chance : [u'of', u'to'] -sure which : [u';'] -small estate : [u'in', u'of'] -made about : [u'such'] -April 18 : [u','] -since, : [u'although', u'then', u'as', u'to'] -since. : [u'I', u'There', u'Was'] -cold morning : [u'of'] -my hand : [u'so', u'.', u'to', u',', u'at', u'upon', u'warmly', u'in', u'upraised', u'is', u'when', u'and'] -Two days : [u'ago', u'later'] -you how : [u'quick', u'I', u'you', u'fond', u'interested'] -? They : [u'put'] -to ascend : [u'the'] -reach. : [u'A', u'The', 'PP', u'With'] -the recent : [u'papers'] -That white : [u'one'] -" Terse : [u'and'] -my last : [u'place'] -. General : [u'Terms', u'Information'] -wooden floor : [u'of'] -safeguard myself : [u','] -and gentleman : [u'. "'] -Lestrade observed : [u'. "'] -the problem : [u'.', u'connected'] -this problem : [u',"'] -Then pray : [u'send'] -queen she : [u'would'] -each successive : [u'instance'] -all comprehensive : [u'glances'] -very plain : [u'tale'] -As the : [u'daughter'] -smearing my : [u'face'] -compliment when : [u'you'] -you used : [u'.', u'to'] -pallet bed : [u','] -notes afterwards : [u'it'] -could not : [u'help', u'be', u'have', u'confide', u'at', u'tell', u'love', u'possibly', u'imagine', u'only', u'come', u'unravel', u'invent', u'lose', u'give', u'shake', u'wish', u'account', u'conceal', u'ascend', u'pierce', u'sleep', u'move', u'hear', u'restrain', u'quite', u'think', u'get', u'but', u'bear', u'trust', u'wonder', u'do', u'take', u'explain', u'say', u'ask', u'dream', u",'", u'live'] -myself out : [u'of'] -guard himself : [u','] -You made : [u'some'] -Once only : [u'had'] -directors have : [u'had'] -, ' have : [u'you'] -we got : [u'the', u'a'] -six into : [u'the'] -are, ' : [u'Mrs'] -odd cases : [u'in'] -We both : [u'thought', u'sprang', u'put', u'sat'] -you good : [u'night', u',', u'authority'] -may walk : [u'to'] -coins upon : [u'which'] -a nature : [u'such'] -was unknown : [u'to'] -clattered down : [u'the'] -floor there : [u'was'] -house mahogany : [u'.'] -scar, : [u'which'] -we filed : [u'into'] -finger tips : [u'together', u'upon', u','] -much less : [u'than', u'striking', u'amiable'] -My mistress : [u'told'] -lest there : [u'might'] -defeated in : [u'the'] -it still : [u'wanted', u'lay'] -How quiet : [u'and'] -and sensational : [u'trials'] -29, : [u'2002'] -printed editions : [u','] -Arthur Conan : [u'Doyle'] -entity to : [u'whom'] -diamond shaped : [u'head'] -played in : [u'this'] -. Far : [u'away', u'from'] -. Grimesby : [u'Roylott'] -the handle : [u'and', u','] -ending, : [u'while'] -' oeuvre : [u'c'] -s narrative : [u'which', u'.'] -room collecting : [u'pillows'] -she answered : [u', "', u'me'] -bring one : [u'of'] -You knew : [u'that'] -1 through : [u'1'] -slow staccato : [u'fashion'] -your young : [u'ladies'] -as its : [u'complete'] -prominently displaying : [u'the'] -not more : [u'dense', u'so', u'than'] -people and : [u'some'] -locked, : [u'with', u'and'] -woke one : [u'morning'] -but thirty : [u'now', u'at'] -for protection : [u'in'] -maiden," : [u'he'] -up his : [u'calves', u'mind', u'pea', u'hat', u'hand', u'pipe', u'hands', u'coat', u'chair', u'search'] -American origin : [u'."'] -seems rather : [u'sad', u'useless'] -kindly take : [u'us'] -a prompt : [u'and'] -outbreaks of : [u'the'] -mission which : [u'he'] -very seriously : [u'menaced', u'to'] -have trusted : [u'your'] -his data : [u'were'] -energetic measures : [u'on'] -attained. : ['PP'] -grey roofs : [u'of'] -a dishonoured : [u'man'] -son? : [u'You'] -complete a : [u'disguise'] -bridge of : [u'his'] -and is : [u'now', u'remarkable'] -and it : [u'widened', u'was', u'still', u'need', u'had', u'is', u'rapidly', u'disappeared', u'has', u'seemed', u'would', u'comes', u'could', u'fell', u'did', u'will', u'takes'] -his fortunes : [u','] -had charge : [u'of'] -father married : [u'again'] -broadened and : [u'broadened'] -leaf and : [u'did'] -horror. " : [u'I'] -introduction to : [u'him'] -neck of : [u'a'] -think Flora : [u'would'] -and if : [u'McCarthy', u'I', u'she', u'it', u'you'] -ask, : [u'do'] -. Get : [u'out'] -and in : [u'the', u'an', u'ten', u'silence', u'this', u'a', u'that', u'1887', u'spite', u'half', u'it', u'admiring', u'my', u'her', u'which', u'running', u'five', u'order', u'return', u'so'] -already done : [u'.'] -compared to : [u'the'] -scent of : [u'some'] -this from : [u'his'] -what turn : [u'things'] -pushed past : [u'the'] -excessive sum : [u'for'] -One. : ['PP'] -as cruel : [u'and'] -find words : [u'to'] -at hand : [u'.'] -own reward : [u'.', u';'] -to whom : [u'?"', u'the', u'of', u'she', u'we', u'I', u'you'] -to conceal : [u'it', u'some'] -deceptive than : [u'an'] -then in : [u'justice'] -," murmured : [u'Holmes'] -matter should : [u'be'] -the arms : [u'of'] -cascade of : [u'children'] -bell and : [u'was', u'called', u'the'] -note written : [u'in'] -a degree : [u','] -surprise as : [u'we'] -been getting : [u'yourself'] -his plantation : [u','] -craggy features : [u','] -America when : [u'he'] -your help : [u',', u'to', u'.', u'."'] -Bradstreet thoughtfully : [u'. "'] -or address : [u'.'] -then it : [u'is', u'occurred'] -Have just : [u'been'] -were meetings : [u','] -Carbuncle VIII : [u'.'] -woman could : [u'be'] -, gone : [u'to'] -example is : [u'an'] -push her : [u'way'] -it aloud : [u'."'] -how she : [u'had'] -widened the : [u'field'] -, yes : [u',', u'!', u'.', u';', u",'", u',"'] -and discretion : [u',', u'must', u'.'] -, yet : [u'it', u'as'] -myself free : [u'and'] -the force : [u',', u'of'] -briefly these : [u':'] -a chance : [u'of', u'as'] -why the : [u'more'] -idle one : [u','] -Never was : [u'such'] -you dragged : [u'the'] -worth quite : [u'a'] -in Rucastle : [u"'"] -and official : [u'page'] -Very much : [u'so'] -cocaine and : [u'ambition', u'tobacco'] -books, : [u'and', u'Bill', u'mostly'] -detective in : [u'him'] -, curious : [u'to'] -married me : [u'and'] -some solid : [u'grounds'] -This also : [u'was'] -the worse : [u'for'] -explained in : [u'the'] -his throat : [u'sat'] -here four : [u'letters'] -noting every : [u'little'] -pulled down : [u'over', u'from'] -Carlo, : [u'my'] -a kind : [u'of'] -been twenty : [u'seven'] -s knees : [u'. "'] -afternoon so : [u'enwrapped'] -change my : [u'position', u'dress'] -other party : [u'distributing'] -out much : [u'in'] -, began : [u'to', u'talking'] -liberty of : [u'doubting', u'bringing'] -Hosmer came : [u'for'] -OWNER, : [u'AND'] -takes a : [u'considerable'] -to keep : [u'two', u'at', u'out', u'her', u'an', u'a', u'up', u'the', u'people'] -and tell : [u'us'] -wife would : [u'be'] -with outstretched : [u'hands'] -room sofa : [u','] -was possible : [u'to', u'that'] -his bundle : [u'a'] -at scratch : [u'and'] -creature back : [u'into'] -the worst : [u'of'] -she ever : [u'gone'] -see many : [u'objections'] -was admirably : [u'done'] -examined every : [u'fact'] -dollars won : [u'at'] -be back : [u'before', u'in'] -thumb should : [u'have'] -that slip : [u'of'] -the slab : [u','] -now come : [u'to'] -anything being : [u'found'] -in fear : [u'of'] -glamour of : [u'his'] -probably know : [u'so'] -address of : [u'the'] -taking and : [u'of'] -last entry : [u'?"'] -The stout : [u'gentleman'] -who told : [u'me'] -were associated : [u'with'] -an entirely : [u'erroneous', u'wrong'] -he wanted : [u'to', u'he'] -then that : [u'quite'] -bought under : [u'half'] -box I : [u'noticed'] -be nothing : [u'to'] -was when : [u'we', u'I'] -theory of : [u'mine'] -original observer : [u','] -egg that : [u'ever'] -hear that : [u'somewhere', u'it'] -and cloudless : [u'.'] -, madam : [u'."', u',', u'?"', u',"', u",'"] -folk were : [u'not'] -makes no : [u'representations'] -. Off : [u'I'] -know little : [u'of'] -occupied his : [u'immense'] -dying and : [u'a'] -rapidly formed : [u'local'] -wandering away : [u'with'] -other exit : [u'could'] -the nerve : [u'to'] -night bird : [u','] -his strong : [u'set', u'box'] -notes and : [u'records', u'figures'] -was putting : [u'in'] -subduing in : [u'the'] -a letter : [u'.', u'from', u'with', u'unobserved', u'on'] -her bride : [u"'"] -larger than : [u'your', u'that'] -a smile : [u'as', u'.'] -She never : [u'came'] -Swindon, : [u'and'] -anoints with : [u'lime'] -hat is : [u'three'] -young. : [u'I', u'She'] -a tunnel : [u'to'] -hat in : [u'his', u'one'] -unlocked his : [u'strong'] -. Might : [u'I'] -London banks : [u'.'] -Moulton. : [u'The'] -chance of : [u'arrest', u'a', u'getting', u'finding', u'talking'] -been some : [u'informality', u'foul', u'attempt', u'villainy'] -stopped at : [u'the', u'last'] -a shock : [u'of', u'to'] -heavily upon : [u'my'] -has nerve : [u'and'] -bitterness. " : [u'I'] -The presence : [u'of'] -it conclusive : [u'."'] -may account : [u'also'] -ascertaining what : [u'part'] -easy berths : [u'to'] -murmured. " : [u'That'] -compromising letters : [u','] -can' : [u't'] -too tender : [u'hearted'] -has troubled : [u'you'] -personally concerned : [u',"'] -practical test : [u'.'] -society was : [u'formed', u'coincident'] -Windibank draws : [u'my'] -acquire so : [u'deep'] -very singular : [u'points', u'business'] -the stranger : [u'with', u'from', u'. "'] -for any : [u'sort', u'hesitation', u'inconvenience', u'words', u'little', u'chance', u'particular'] -These good : [u'people'] -having every : [u'characteristic'] -would spend : [u'in'] -the formidable : [u'letters'] -following a : [u'will'] -minded Nonconformist : [u'clergyman'] -have, : [u'no', u'as', u'and', u'however', u'be', u'I'] -can, : [u'but'] -Archive Foundation : [u'("', u'.', u'at', u'."', u'and', u',', u'was', u'is', u'are'] -me certain : [u'that'] -could be : [u'reached', u'more', u'the', u'saved', u'discovered', u'of', u'passed', u'designed', u'.', u'no', u'found', u'."', u'freely'] -stamped with : [u'the'] -built, : [u'very', u'sallow'] -be forced : [u'to'] -a position : [u'."'] -who the : [u'deuce'] -without your : [u'having'] -hearts. : [u'I'] -Jem?' : [u'says'] -fit to : [u'wear'] -clad, : [u'with'] -alleys in : [u'London'] -are naturally : [u'secretive'] -cudgelled my : [u'brains'] -two in : [u'the'] -imbecile Lestrade : [u','] -fellow, : [u'who', u'that', u'though', u'is', u'some', u'I', u'a', u'was', u'there', u'can', u'what'] -local brewer : [u','] -went upstairs : [u'together'] -one small : [u'job'] -picked myself : [u'up'] -puzzled as : [u'everyone'] -your advertisement : [u'."'] -Pray sit : [u'down'] -His hand : [u'when', u'closed'] -returning at : [u'last'] -is because : [u'it'] -and uncarpeted : [u','] -get away : [u'from', u'with', u',', u'."'] -not advise : [u'me'] -within their : [u'reach'] -like lightning : [u'across'] -asked you : [u','] -s writing : [u','] -been worth : [u'an'] -Holmes fell : [u'upon'] -mind by : [u'the'] -power. : [u'I', 'PP'] -power, : [u'and', u'by'] -me ungrateful : [u'."', u'for'] -notes. : [u'When'] -notes, : [u'three'] -footmarks, : [u'no'] -direction, : [u'with', u'that'] -he come : [u'?"', u'with'] -little children : [u','] -American. " : [u'It'] -opinion from : [u'the'] -Cross for : [u'the'] -Who were : [u'these'] -accurately state : [u'all'] -me names : [u'enough'] -night when : [u'he', u'she'] -power to : [u'his', u'reward'] -Street into : [u'Oxford'] -we turn : [u'our'] -wrist in : [u'his'] -in Tennessee : [u','] -cleared from : [u'London'] -old Toller : [u','] -saying to : [u'me', u'you'] -glanced down : [u'the', u'.', u'at'] -rate. : [u'In'] -rate, : [u'she', u'that', u'it'] -waistcoat with : [u'a'] -anything that : [u'turned', u'may', u'I'] -could command : [u'a'] -me until : [u'he'] -terrible mistake : [u'had'] -of standing : [u'on'] -confectioner' : [u's'] -. " And : [u'now', u'since', u'pray', u'perhaps', u'my'] -to Ross : [u'with'] -s address : [u'?"', u'you'] -accustomed to : [u'doing', u'keep', u'use', u'set'] -s jury : [u'."', u'.'] -Tiptoes! : [u'tiptoes'] -apprenticed to : [u'Venner'] -self poisoner : [u'by'] -always of : [u'use'] -put on : [u'seven', u'your', u'a', u'my', u'as', u'his'] -the observer : [u'excellent', u'who'] -draw back : [u'now'] -circle, : [u'and'] -same time : [u',', u'as', u',"'] -" Tired : [u'looking'] -with age : [u','] -my investigations : [u'outside'] -wore the : [u'girl'] -gentleman staying : [u'with'] -talk to : [u','] -should still : [u'talk'] -and some : [u'coming', u'wear', u'hundreds', u'very'] -instantly lit : [u'the'] -which compelled : [u'our'] -, must : [u'be'] -than it : [u'might', u'promised', u'could'] -the stake : [u'will'] -to' : [u'Frisco'] -Twelve struck : [u','] -search me : [u'and'] -used," : [u'said'] -to choose : [u'and'] -parley from : [u'my'] -influence upon : [u'European'] -a disguise : [u',', u'the', u'.'] -That left : [u'foot'] -least will : [u'honour'] -walks with : [u'a'] -common, : [u'is'] -force! : [u'This'] -beside which : [u'on'] -force, : [u'and', u'but'] -force. : ['PP', u'Perhaps'] -well groomed : [u'and'] -had to : [u'look', u'tell', u'deal', u'do', u'go', u'move', u'change', u'love', u'confess', u'play', u'be'] -and pin : [u'point'] -My doctor : [u'says'] -poured out : [u'some'] -of Paul : [u"'"] -and waist : [u'high'] -coming to : [u'the', u'our', u'consult'] -on consideration : [u'of'] -him get : [u'in', u'out'] -this Gladstone : [u'bag'] -maybe you : [u'can'] -, cultured : [u'face'] -any preliminary : [u'sound'] -go anywhere : [u'.'] -shall meet : [u'you'] -! Come : [u"!'", u','] -are apt : [u'to'] -question depended : [u'whether'] -explanation. : ['PP', u'And', u'He', u'You', u'The'] -and sly : [u'looking'] -not conducting : [u'the'] -he silent : [u','] -than me : [u';'] -she come : [u'at'] -an effort : [u'to'] -beat the : [u'pavement', u'best'] -Mary! : [u'Your'] -, stay : [u'in'] -who lost : [u'his'] -occupant of : [u'the'] -Her prolonged : [u'absence'] -motive for : [u'securing'] -that something : [u'had', u'was', u'be'] -than my : [u'neighbours', u'average', u'words'] -quite so : [u'!', u'bulky', u'common', u'prompt'] -, paid : [u'Whitney', u'our'] -and possibly : [u'other'] -my cap : [u'on'] -had last : [u'been'] -whole situation : [u'became'] -rest it : [u'upon'] -gives his : [u'first'] -heads and : [u'pay'] -rest in : [u'peace'] -up by : [u'quite', u'four', u'leaps', u'muttering'] -acute and : [u'original'] -my cab : [u'to'] -mischance in : [u'breaking'] -digs for : [u'another'] -you within : [u'90'] -our landlady : [u'had'] -one time : [u'that', u'among', u'.', u'Secretary'] -she should : [u'interfere', u'be'] -to us : [u'.', u'. "', u'from', u'to', u'of', u',', u'this', u'as', u"?'", u'for'] -, complying : [u'with'] -thoroughly examined : [u','] -but swayed : [u'his'] -also to : [u'his', u'send'] -white one : [u'over', u'with'] -flourished in : [u'spite'] -into a : [u'church', u'moody', u'roar', u'small', u'huge', u'four', u'hansom', u'chair', u'gigantic', u'long', u'cry', u'doddering', u'hearty', u'groan', u'gallop', u'deep', u'scream', u'well', u'supper', u'stream', u'curve', u'grove', u'corner', u'low', u'fair', u'carriage', u'porch', u'bedroom', u'certainty', u'cab', u'brown', u'desultory', u'narrow', u'series', u'serious', u'grin', u'state'] -on duty : [u'near', u'?"', u','] -advertisement how : [u'long'] -My overstrung : [u'nerves'] -magnifico,' : [u'you'] -A tall : [u','] -into. : ['PP', u'The'] -black canvas : [u'bag'] -into, : [u'but'] -pick him : [u'?"'] -towards the : [u'Edgeware', u'vacant', u'blaze', u'unusual', u'fire', u'vestry'] -grey cloak : [u',', u'."'] -apt to : [u'be'] -the acetones : [u','] -agreement by : [u'keeping'] -in quest : [u'of', u'."'] -his hideous : [u'face'] -Oxford. : [u'His'] -town before : [u'telling'] -books were : [u'scattered'] -Isa Whitney : [u',', u"'"] -with this : [u'eBook', u'young', u'very', u'machine', u'awful', u'investigation', u'old', u'thought', u'file', u'work', u'agreement'] -bar it : [u'behind'] -face could : [u'not'] -. Will : [u'you'] -the probability : [u'the'] -beginning without : [u'you'] -their papers : [u'.'] -But of : [u'what'] -Because there : [u'are'] -a sweet : [u'womanly'] -and Hosmer : [u'wrote'] -but here : [u"'"] -who deserved : [u'punishment'] -sleepers, : [u'holding'] -sailing ship : [u'.', u'reaches'] -Farewell, : [u'then'] -26s. : [u'4d'] -minor matters : [u'until'] -electronic work : [u',', u'and', u'by', u'is', u'or', u'under', u'within'] -observe, : [u'this', u'if', u'is', u'Watson', u'Mr'] -observe. : [u'You', u'The', u'She'] -Cosmopolitan. : [u'Pray'] -the Goodwins : [u'and'] -immediately in : [u'front'] -cave, : [u'I'] -off again : [u'on'] -two days : [u'for', u'since', u',', u'.', u'ago', u'after'] -police were : [u'at'] -. Obviously : [u'they', u'something'] -maid brought : [u'in'] -Monday was : [u'an'] -Holmes. " : [u'It', u'This', u'Your', u'Hum', u'And', u'That', u'I', u'As', u'He', u'Was', u'Have', u'They', u'Pray', u'You', u'Surely', u'Yes'] -Well," : [u'he', u'said'] -the loss : [u'of', u'was', u'.'] -signed the : [u'statement', u'paper'] -Well,' : [u'said'] -clergyman all : [u'ready'] -to copy : [u'out'] -day when : [u'the', u'my'] -possibly need : [u','] -go,' : [u'said'] -witness it : [u'.'] -To tell : [u'the'] -sounds funny : [u','] -sits a : [u'woman'] -presence here : [u','] -and with : [u'almost', u'the', u'you', u'a', u'reason', u'your', u'my', u'her'] -which pattered : [u'down'] -more about : [u'fowls', u'this', u'the'] -be too : [u'late', u'limp'] -B.' : [u'are'] -burned, : [u'had'] -But the : [u'note', u'writing', u'maiden', u'deception', u'mystery', u'letter', u'creature', u'twelve', u'inspector', u'gems', u'instant', u'money', u'reason'] -too little : [u'?'] -why he : [u'would', u'should'] -twenty six : [u'of', u','] -very young : [u'.'] -father brought : [u'her'] -has had : [u'a', u'cut', u'no', u'the', u'her'] -, Grand : [u'Duke'] -more worn : [u'than'] -part he : [u'was', u'has'] -expect company : [u'.'] -attempts at : [u'bank'] -you trace : [u'it'] -hat to : [u'show'] -a warning : [u'sent'] -his sponge : [u','] -chance to : [u'hit', u'have', u'pass'] -consideration of : [u'the', u'some'] -pounds, : [u'to', u'which', u'is', u'in'] -pounds. : ['PP', u'I', u'Each', u'My'] -decidedly nautical : [u'appearance'] -" For : [u'heaven', u'two'] -coronet in : [u'his', u'her'] -spouting fire : [u'at'] -lip in : [u'a'] -pounds? : [u'There'] -them that : [u'it', u'another'] -pounds; : [u'and'] -with rage : [u". '"] -back door : [u'.'] -trains in : [u'Bradshaw'] -the jeweller : [u"'"] -Roylott which : [u'tend'] -Precisely. : [u'And', 'PP', u'You', u'It'] -difficulty, : [u'heh'] -have breakfast : [u'afterwards'] -6d. : ['PP'] -whole business : [u'came', u'was'] -that Flora : [u'decoyed'] -did before : [u'him'] -fresh convulsion : [u'seized'] -of danger : [u'."', u'.', u'yet'] -THE COPPER : [u'BEECHES'] -. ' For : [u'the'] -Persian saying : [u", '"] -. Look : [u'at', u'out'] -near King : [u"'"] -peculiar tint : [u'of', u','] -centre, : [u'bushy', u'on'] -centre. : [u'The', 'PP'] -large as : [u'a'] -s time : [u'we'] -pushed back : [u'the'] -common signal : [u'between'] -might suit : [u'me'] -wisp, : [u'but'] -have handled : [u'them'] -true value : [u','] -have vengeance : [u'upon'] -that absolute : [u'logical'] -the linoleum : [u'.'] -marked a : [u'chink'] -couch was : [u'a'] -he got : [u'me'] -that cut : [u'and'] -how maddening : [u'it'] -, earth : [u'smelling'] -that bird : [u','] -like my : [u'friend'] -certainly repay : [u'what'] -many minutes : [u'are', u'.'] -of fair : [u'tonnage'] -events which : [u'led'] -logician of : [u'Baker'] -Your sister : [u'is', u'asked'] -knowing my : [u'past'] -by his : [u'whole', u'dress', u'peculiar', u'long', u'injuries', u'screams', u'life', u'eager', u'mischance', u'heavy', u'professional', u'manner', u'tooth', u'left'] -so startling : [u'in'] -social summonses : [u'which'] -startled gaze : [u'.'] -seeing you : [u'and', u'again', u'.'] -third door : [u','] -by him : [u'to', u'in', u'.', u'that'] -ill trimmed : [u'lawn'] -when Mr : [u'.'] -Greenwich. : [u'Two'] -cup of : [u'coffee', u'tea', u'hot'] -." carved : [u'upon'] -the Blue : [u'Carbuncle'] -may arise : [u'.'] -may, : [u'however'] -may. : [u'You', u'In'] -relation between : [u'them', u'the'] -the rules : [u'is'] -every direction : [u','] -been by : [u'no'] -affliction also : [u'is'] -this one : [u'twelve', u'comes', u',"'] -The note : [u'was'] -apply to : [u'copying'] -been over : [u'good'] -the cry : [u'of', u'and'] -keep his : [u'little'] -Hanover Square : [u','] -suggested that : [u'the', u'it', u'we', u'I'] -Helen Stoner : [u',', u'heard'] -those metal : [u'bars'] -. Next : [u'day'] -Paddington by : [u'the'] -harm unless : [u'we'] -Scott! : [u'Jump'] -sounds a : [u'little'] -call over : [u'here'] -we not : [u'done'] -we now : [u'learn'] -is danger : [u'for'] -just finished : [u'my'] -draught. : ['PP'] -our hydraulic : [u'engineer'] -clue while : [u'it'] -swear, : [u'with', u'and'] -evening before : [u'I', u','] -fond he : [u'was'] -these bleak : [u'autumnal'] -in breaking : [u'the'] -where my : [u'thumb'] -unfortunate one : [u'for'] -dishonourable would : [u'be'] -locked the : [u'door'] -fare, : [u'but', u'and'] -evidence; : [u'but'] -around Aldershot : [u','] -country. : [u'We', u'One', u'If', u'It', u'I', u'But'] -country, : [u'there', u'notably', u'and', u'sir', u'my'] -occupant. : [u'The', u'Having'] -evidence. : [u'You'] -some crime : [u'."'] -Gravesend and : [u'learned'] -go out : [u'."', u'in', u'close', u'to', u'much', u'for'] -had struggled : [u'with'] -dozen from : [u'a'] -was from : [u'the', u'Sherlock', u'Pondicherry', u'her'] -must within : [u'a'] -Holder, : [u'of', u'that', u'we', u'I'] -Holder. : [u'Might', u'We', u'You', 'PP'] -the life : [u'which'] -to subscribe : [u'to'] -an amateur : [u'that'] -Holder& : [u'Stevenson'] -might grow : [u'to'] -sprang round : [u','] -that goose : [u'.'] -Holder? : [u'There'] -simple test : [u'if'] -troubles were : [u'in'] -had remarkably : [u'small'] -nothing else : [u'."', u'would', u'had', u'save', u'to'] -not point : [u'out'] -brow. " : [u'It'] -nice and : [u'complimentary'] -town until : [u'the'] -talk if : [u'I'] -I shook : [u'my'] -were the : [u'tinted', u'following', u'main', u'equinoctial', u'normal', u'only', u'principal', u'finest', u'maids', u'same'] -she rushed : [u'down'] -, sinking : [u'back'] -grey Harris : [u'tweed'] -talk it : [u'over'] -fancies must : [u'be'] -is rather : [u'more', u'a', u'vague'] -may be : [u'interested', u'some', u',', u'so', u'of', u'enough', u'remembered', u'one', u'in', u'solved', u'deduced', u'many', u'thrown', u'wanting', u'more', u'taken', u'expected', u'striking', u'put', u'cleared', u'explained', u'the', u'that', u'forced', u'set', u'on', u'following', u'back', u'less', u'committed', u'modified', u'stored'] -ordinary black : [u'hat'] -to George : [u'Sand'] -guilty, : [u'why'] -blue cloud : [u'wreaths'] -the chest : [u'and'] -altar. : [u'I', 'PP'] -vague, : [u'and'] -altar, : [u'and'] -of discoloured : [u','] -in anger : [u','] -s two : [u'of'] -and mother : [u'said'] -last train : [u'from', u".'", u'to'] -without taking : [u'part'] -at 809 : [u'North'] -Rucastle, : [u'walking', u'however', u'showing', u'both', u'who', u'if', u'so'] -of Wallenstein : [u','] -' jumping : [u'a'] -suit, : [u'who'] -Had I : [u'been'] -Fritz!' : [u'she'] -had all : [u'three'] -window so : [u'suddenly'] -red cravat : [u','] -to apply : [u'the', u',', u'for'] -adapt himself : [u'to'] -now dead : [u';'] -were," : [u'he'] -large for : [u'easy'] -happen when : [u'you'] -ruefully, : [u'pointing'] -be clearly : [u'marked'] -ruefully. : [u'It'] -a better : [u'man', u'time', u'.', u'view', u'grown', u'lined', u'fit'] -You doubt : [u'its'] -cheer me : [u'up'] -she impressed : [u'me'] -walks into : [u'my'] -it flew : [u'upon'] -snow, : [u'so', u'and'] -and ends : [u'on'] -cries. : [u'The'] -off for : [u'the', u'Pope', u'Hatherley', u'Streatham'] -place near : [u'the'] -exciting. : [u'For'] -too crowded : [u','] -the January : [u'of'] -His face : [u'fell', u'flushed', u'was', u'set'] -bring me : [u'along', u'down'] -and two : [u'officers', u'months', u'people', u'or', u'years', u'men', u'dozen', u'curving', u'and'] -hideous and : [u'distorted'] -beggar and : [u'in'] -why. : ['PP'] -deceive a : [u'coroner'] -why, : [u'then'] -floor a : [u'wedding'] -no less : [u'than'] -His tangled : [u'beard'] -fill a : [u'vacancy'] -beginning of : [u"'", u'this'] -ever observed : [u'that'] -as possible : [u'.', u'with', u',', u'I', u'at', u'that'] -certificates. : ['PP'] -upper ones : [u'empty'] -characteristics with : [u'which'] -From India : [u"!'"] -introducing to : [u'his'] -judge you : [u',"'] -this afternoon : [u',"', u',', u'."'] -him carrying : [u'a'] -problem connected : [u'with'] -read over : [u'the'] -more creditable : [u'to'] -within seven : [u'miles'] -prisoner. : [u'"'] -THE TWISTED : [u'LIP'] -stepped from : [u'her', u'the'] -consideration. : ['PP'] -sum I : [u'may'] -prisoner' : [u's'] -Five little : [u'livid'] -be hanged : [u','] -edition. : ['PP'] -maid rushed : [u'across'] -inaccurate or : [u'corrupt'] -slowly into : [u'the'] -conversation ensued : [u'which'] -affair must : [u'be'] -nearly correct : [u'than'] -very bulky : [u'boxes'] -FULL LICENSE : [u'***'] -in then : [u'.'] -moment he : [u'had'] -doubts will : [u'very'] -and waited : [u'behind', u'by', u'there'] -spirit case : [u'and'] -flew upon : [u'the'] -finally abandoned : [u'Holmes'] -bumping of : [u'the'] -of hot : [u'metal', u'coffee'] -Are you : [u'a', u'satisfied', u'hungry', u',', u'sure'] -of how : [u'the', u'very'] -although its : [u'contents'] -a chestnut : [u'."'] -and future : [u'generations'] -in conversation : [u'with'] -good plan : [u'of'] -can hardly : [u'be', u'take', u'avoid', u'see', u'explain', u'get', u'expect'] -the meaning : [u'of'] -looked impatiently : [u'at'] -sleuth hound : [u','] -lunch upon : [u'the'] -, belongs : [u'to'] -with something : [u'of', u'perhaps'] -blinds gazing : [u'down'] -brought it : [u'up', u'down'] -About nine : [u'o'] -brought in : [u'the', u'contact', u'a', u'to'] -aside the : [u'paper', u'advertisement'] -bluster and : [u'took'] -us your : [u'best'] -but Mr : [u'.'] -, Where : [u'are'] -nature took : [u'him'] -gone I : [u'unlocked'] -those hours : [u'of'] -she suddenly : [u'heard', u'shrieked', u'threw'] -Esq., : [u'of'] -was folded : [u'across'] -," remarked : [u'Holmes', u'our', u'the', u'Sherlock', u'my'] -needed it : [u'."'] -the society : [u'of', u',', u'was', u"'", u'papers'] -earth are : [u'you'] -comes she : [u'may'] -. Stay : [u'where'] -note book : [u'and'] -his analytical : [u'skill'] -less illuminated : [u'than'] -something had : [u'happened', u'occurred'] -from crime : [u'to'] -had expected : [u'to'] -lay listless : [u','] -all quite : [u'beside'] -forehead and : [u'settled'] -and streaked : [u'with'] -c)( : [u'3'] -hastening in : [u'the'] -days later : [u'that', u'this'] -disregard what : [u'is'] -wicked world : [u','] -advantage of : [u'it', u'the', u'me'] -, thinking : [u'over'] -had rights : [u'of'] -absence I : [u'received'] -Young Openshaw : [u'shall'] -brow, : [u'set'] -. Yet : [u'the', u',', u'I', u'we', u'this', u'it', u'when', u'his'] -terror rose : [u'up'] -rubbed his : [u'long', u'hands'] -thought is : [u'correct'] -thought it : [u'as', u'was', u'better', u'well', u'time'] -by repeated : [u'blows'] -with which : [u'he', u'she', u'I', u'it', u'the', u'such', u'to', u'crime'] -There have : [u'been'] -engineer, " : [u'is'] -his powerful : [u'magnifying'] -thought in : [u'my'] -requirements of : [u'paragraphs'] -and a : [u'sneer', u'gasogene', u'half', u'bulge', u'large', u'pair', u'long', u'strongly', u'drunken', u'gentleman', u'surpliced', u'glass', u'rough', u'moment', u'letter', u'drab', u'square', u'faded', u'girl', u'deal', u'short', u'few', u'brown', u'cup', u'magnifying', u'quarter', u'hand', u'shock', u'snigger', u'man', u'hesitating', u'look', u'fringe', u'general', u'tap', u'slight', u'glitter', u'verdict', u'grey', u'bundle', u'desperate', u'tapping', u'small', u'register', u'splash', u'nervous', u'lady', u'gin', u'supply', u'low', u'chronicler', u'star', u'little', u'lucky', u'box', u'telephone', u'pile', u'forceps', u'most', u'guttering', u'black', u'broad', u'great', u'baboon', u'thumb', u'tooth', u'gaping', u'dressing', u'horrid', u'bachelor', u'woman', u'baleful', u'weapon', u'bright', u'tide', u'cigar', u'bride', u'marriage', u'compressed', u'commanding', u'constable', u'shorter', u'young', u'note', u'second', u'test', u'perpetual', u'sad', u'basketful', u'tall'] -preliminary sound : [u'in'] -the heavens : [u'.'] -which rests : [u'upon'] -some secret : [u'hoard', u'sorrow'] -not disturb : [u'him'] -mud stains : [u'from'] -His grandfather : [u'was'] -?'" : [u'I', u'The', u'But'] -it goes : [u'."', u'to'] -suppose you : [u'know'] -improbable, : [u'must'] -and I : [u'may', u'trust', u'could', u'was', u'mean', u'went', u'am', u'will', u'saw', u'have', u'caught', u'remain', u'would', u'know', u'understand', u'should', u'had', u'surveyed', u'asked', u'took', u'shall', u'hope', u'beg', u'want', u'agree', u'thought', u"'", u'heard', u'just', u'find', u'can', u',', u'think', u'sent', u'wrote', u'see', u'found', u'did', u'walked', u'really', u'set', u'met', u'pondered', u'believe', u'wish', u'fear', u'volunteered', u'threw', u'observe', u'made', u'knew', u'felt', u'carried', u'ran', u'on', u'were', u'only', u'must', u'gazed', u'stood', u'instantly', u'cannot', u'poured', u'came', u'reached', u'behind', u'kept', u'examined', u'pointed', u'shuddered', u'fell', u'sprang', u'confess', u';', u'won', u'determined', u'stay', u'feel', u'repeat', u'clapped', u'answered', u'write', u'laughed', u'concealed', u'drew', u'assure', u'said', u'soon', u'once', u'turned', u'.', u'rushed'] -a monograph : [u'upon'] -and B : [u'cleared'] -and C : [u"'--"] -running as : [u'hard'] -ask you : [u'not', u'how', u'to', u'one', u'."', u'whether', u'now', u'a', u'that'] -bear to : [u'see'] -could strike : [u'.'] -and 4 : [u'and'] -little regard : [u'for'] -is!" : [u'He'] -facts were : [u'very'] -horse could : [u'go'] -ventilator at : [u'the'] -acquaintance of : [u'the'] -! Where : [u'are'] -planks. ' : [u'Is'] -professional beggar : [u','] -me with : [u'your', u'some', u'interest', u'a', u'the', u'great', u'her', u'his'] -is still : [u'with', u'lying', u'remembered', u'hot', u'one'] -and muttering : [u'under'] -successive instance : [u'of'] -net Title : [u':'] -should bring : [u'an'] -shaving is : [u'less'] -eleven o : [u"'"] -Left his : [u'lodgings'] -from Paddington : [u'Station', u'and', u'which'] -show that : [u'I'] -just in : [u'time'] -OF DAMAGES : [u'-'] -other terms : [u'of'] -moving my : [u'chair'] -upon request : [u','] -sandwiched in : [u'between'] -Our visitor : [u'glanced', u'bore', u'collapsed', u'had', u'gave', u'half', u'staggered'] -places over : [u'the'] -possibly be : [u'discovered', u'.'] -staying there : [u'while'] -and determination : [u'.'] -of delicacy : [u'.'] -asked as : [u'I'] -asked at : [u'last'] -have leaped : [u'back'] -sandwiched it : [u'between'] -advice upon : [u'the'] -really very : [u'good'] -little before : [u'seven'] -heed to : [u'the'] -Stevenson, : [u'of'] -The singular : [u'incident'] -equinoctial gales : [u'had', u'that'] -taketh the : [u'tiger'] -ladder was : [u'not'] -. " Only : [u'one', u'two'] -us all : [u'about', u'in'] -in its : [u'details', u'results', u'crop', u'inception', u'least', u'legal', u'own', u'due', u'vehemence', u'original'] -separate us : [u','] -be renamed : [u'.'] -however long : [u'he'] -carried me : [u'in'] -jumped five : [u'little'] -bath sponge : [u'.'] -bulky, : [u'but'] -force that : [u'we'] -speedily drawn : [u','] -Mauritius. : [u'As'] -woman bent : [u'over'] -easier to : [u'attain'] -upraised I : [u'could'] -with what : [u'you', u'I'] -. Sherlock : [u'Holmes'] -they suggested : [u'that'] -You owe : [u'a'] -was shocked : [u'by'] -both girls : [u'had'] -leads into : [u'the'] -travel a : [u'little'] -not possible : [u'that'] -told, : [u'and'] -guardsmen who : [u'were'] -were found : [u'in', u'floating'] -. "' Lord : [u'Robert'] -," groaned : [u'our', u'the'] -earn into : [u'the'] -him then : [u','] -assistance of : [u'his'] -you." : [u'That', u'And'] -efforts and : [u'donations'] -or using : [u'any'] -you made : [u'me', u'an'] -you.' : [u'He'] -stood within : [u'its'] -re marriage : [u'.'] -him they : [u'found'] -half her : [u'fortune'] -lady can : [u'get'] -cannot persuade : [u'you'] -, Neville : [u'St'] -was pulled : [u'back'] -highest point : [u'.'] -small table : [u','] -latter is : [u'always'] -more mysterious : [u'and'] -invention of : [u'bicycling'] -row broke : [u'out'] -Menendez THE : [u'ADVENTURES'] -rocket from : [u'under'] -to read : [u'the', u'a', u'aloud'] -his keeping : [u'.'] -employee of : [u'the'] -professional round : [u'.'] -be spent : [u'in'] -odour of : [u'lime'] -of metallic : [u'deposit'] -of Heaven : [u"!'"] -visits? : [u'Was'] -some attention : [u'to'] -and complex : [u'story'] -have tomfoolery : [u'of'] -available with : [u'this'] -she alone : [u'had'] -in pencil : [u'upon', u'over'] -doctor met : [u'his'] -by silver : [u','] -convulse the : [u'nation'] -met me : [u',', u'here'] -He doesn : [u"'"] -the generations : [u'who'] -sons my : [u'uncle'] -Commons, : [u'where'] -be safer : [u'and'] -confine my : [u'attentions'] -from his : [u'shelves', u'cigarette', u'chair', u'face', u'pocket', u'finger', u'small', u'words', u'bundle', u'own', u'father', u'waistcoat', u'fingers', u'Lascar', u'bed', u'assailants', u'hat', u'armchair', u'sleeves', u'soothing', u'room', u'excursion', u'reverie', u'point', u'smokes', u'seat', u'cynical', u'grasp', u'shoes', u'smiling', u'mother'] -stepfather hastily : [u'closing'] -the pile : [u'. "'] -grew less : [u'keen'] -pluck her : [u'husband'] -stout, : [u'florid'] -the cloak : [u'.', u'which'] -from him : [u'and', u'."', u',', u'?"', u'to', u'by', u'.'] -getting out : [u'of'] -covered land : [u'which'] -Death,' : [u'said'] -shirt protruding : [u'through'] -came through : [u'the'] -the coming : [u'of'] -gain an : [u'influence'] -which struck : [u'us', u'her', u'me'] -police,' : [u'I'] -hand appeared : [u','] -Lestrade with : [u'dignity', u'some'] -rather upon : [u'conjecture'] -future, : [u'for'] -future. : [u'I', u'As'] -his rigid : [u'attitude'] -ornaments. : [u'Her'] -, except : [u'when'] -other cab : [u'in'] -entertaining one : [u',"'] -Next day : [u'I'] -grass. : [u'He'] -the Waterloo : [u'Bridge'] -pause, : [u'during'] -friend too : [u'.'] -still lying : [u'in'] -meet her : [u'."', u','] -?" : [u'Witness', u'It'] -four lines : [u'of'] -is its : [u'own'] -holding the : [u'coronet'] -few feet : [u'of'] -4 and : [u'the'] -A slow : [u'and'] -could suggest : [u'the'] -hope of : [u'earning', u'seeing', u'safety', u'finding'] -a decidedly : [u'nautical'] -shown out : [u'by'] -afterwards they : [u'remembered'] -and fastened : [u'as', u'at'] -! what : [u'a', u'an'] -memory, : [u'as', u'too'] -not account : [u'in'] -memory. : ['PP', u'In', u'I', u'The'] -stethoscope, : [u'I'] -ve wasted : [u'time'] -rage. ' : [u'You', u'I'] -had carried : [u'off'] -slit through : [u'which'] -come with : [u'us', u'me', u'you'] -all done : [u'in'] -are confirmed : [u'as'] -What did : [u'you', u'she', u'the', u'they'] -visible to : [u'you', u'me'] -a Hebrew : [u'rabbi'] -aid of : [u'their', u'the', u'a'] -conduct the : [u'inquiry'] -the grasp : [u'of'] -the grass : [u'beside', u'within', u'with'] -was most : [u'suggestive', u'instructive', u'probable'] -absolutely unique : [u','] -attention instantly : [u'became'] -a homely : [u'little'] -be produced : [u'.'] -low, : [u'monotonous', u'clear'] -a sovereign : [u'if', u',', u'on', u'from'] -square miles : [u'.'] -this note : [u'of', u':'] -less moment : [u'to'] -families of : [u'Europe'] -who was : [u'thoroughly', u'equally', u'very', u'nearly', u'also', u'by', u'at', u'this', u'certainly', u'charged', u'a', u'suffering', u'introduced', u'absolutely', u'far', u'the', u'it', u'her', u'as', u'waiting', u'said'] -Suddenly there : [u'was'] -wanting in : [u'the', u'our', u'this'] -ink upon : [u'the'] -and exchange : [u'willingly'] -an important : [u'factor', u'highway'] -unreasoning aversion : [u'to'] -son appeared : [u'to'] -Never in : [u'my'] -short drive : [u','] -, dash : [u'it'] -black gap : [u'like'] -eligible. : [u'Apply'] -came late : [u'one'] -it you : [u'wish', u'want'] -motion to : [u'me', u'him'] -them down : [u'."', u'and'] -he carefully : [u'examined'] -record where : [u'any'] -town as : [u'a'] -German I : [u'could'] -the authorities : [u'to'] -s voice : [u'.', u'and'] -TO WARRANTIES : [u'OF'] -dimly catch : [u'a'] -a sunbeam : [u'in'] -stately business : [u'premises'] -who appeals : [u'to'] -still refuse : [u'.'] -first had : [u'walked'] -leaving,' : [u'said'] -lot with : [u'me'] -try other : [u'means'] -amiable disposition : [u','] -absolutely certain : [u'that'] -its highest : [u'pitch'] -goodness the : [u'house'] -eight weeks : [u','] -had left : [u'the', u'his', u'us', u'him', u'my', u',', u'was', u'only', u'an', u'it', u'a', u'them'] -Chesterfield, : [u'where'] -could, : [u'however', u'of'] -whose grief : [u'has'] -feet as : [u'he'] -is never : [u'very'] -surgeon at : [u'the'] -a cheery : [u'fire'] -really to : [u'the'] -his lens : [u'not', u'he', u'in'] -any way : [u'.', u'for', u'with'] -Some little : [u'distance', u'time'] -astonishment. : [u'He', 'PP'] -astonishment, : [u'a', u'that', u'when', u'the'] -a clatter : [u'upon'] -tie between : [u'them'] -had for : [u'years'] -states where : [u'we'] -take this : [u'precaution', u'chair'] -all through : [u'this'] -and handed : [u'it'] -authorities to : [u'the'] -room swiftly : [u','] -his marriage : [u'might'] -singular dying : [u'reference'] -here was : [u'indeed'] -wrong in : [u'his'] -Barton, : [u'who'] -midnight, : [u'and', u'but'] -levers drowned : [u'my'] -perfection, : [u'and'] -wrong if : [u'we'] -contributed to : [u'the'] -character the : [u'dual'] -when McCarthy : [u'laid'] -midnight. : ['PP', u'I'] -little newspaper : [u'shop'] -were tied : [u'in'] -was wide : [u'awake'] -refined looking : [u'man'] -Jersey in : [u'the'] -computers including : [u'obsolete'] -known agency : [u'for'] -they chased : [u'each'] -to begin : [u'a', u'with'] -assistance they : [u'need'] -desire to : [u'see', u'know'] -beget sympathy : [u'and'] -Fancy his : [u'having'] -teeth were : [u'exposed'] -ungrateful. : ['PP'] -amused by : [u'her'] -went down : [u'there', u'to'] -frequent contact : [u'with'] -task of : [u'placing'] -not absolutely : [u'certain'] -any tax : [u'upon'] -our field : [u'and'] -object might : [u'be'] -his repeated : [u'visits'] -commands as : [u'a'] -or mountains : [u','] -wind blowing : [u'in'] -with violet : [u'ink'] -bringing me : [u'to'] -the trespasser : [u'whom'] -even without : [u'complying'] -, destitute : [u'as'] -advice to : [u'poor', u'young'] -footmarks had : [u'pressed'] -but generally : [u'recognised'] -variable, : [u'geology'] -occupation, : [u'and', u'but'] -occupation. : [u'My', 'PP'] -been standing : [u'smiling'] -yet Mr : [u'.'] -terror when : [u'last'] -good fat : [u'goose'] -erroneous conclusion : [u'which'] -projecting from : [u'the'] -the fragment : [u'of'] -about town : [u'.'] -massive mould : [u','] -thing always : [u'appears'] -much attention : [u'at'] -to identify : [u'.', u','] -left both : [u'of'] -truth that : [u'in'] -chest with : [u'an'] -arranged our : [u'little'] -." were : [u'scrawled'] -say there : [u'was'] -door which : [u'led', u'faced'] -mere vagueness : [u'to'] -followed Holmes : [u'up'] -with Holmes : [u',', u'in'] -accustomed was : [u'I'] -two with : [u'my'] -and doors : [u'the'] -still observed : [u'the'] -intrusion, : [u'I'] -faintly the : [u'rattle'] -the opinion : [u'that'] -you trying : [u'to'] -high a : [u'degree'] -most energetic : [u'agent'] -previous conviction : [u'for'] -own high : [u'power'] -cheeks, : [u'all', u'with', u'and'] -he placed : [u'upon', u'his'] -simple faith : [u'of'] -be possible : [u'for'] -pass through : [u'."', u'the'] -sat by : [u'the'] -you convince : [u'the'] -conceal what : [u'you'] -hour matters : [u'will'] -music, : [u'while', u'and'] -both sprang : [u'in'] -Produced by : [u'an'] -the late : [u'Irene', u'Ezekiah', u'Elias'] -Who was : [u'he', u'the'] -colour into : [u'his'] -aid from : [u'the'] -few grateful : [u'words'] -quite correct : [u",'"] -thousands? : [u'They'] -delicacy and : [u'harmony'] -was also : [u'aware', u'an', u'not', u'thoroughly'] -is picking : [u'up'] -little difficulties : [u','] -" Before : [u'the'] -public were : [u'present'] -15 train : [u'from'] -expenditure as : [u'they'] -for breakfast : [u'."'] -subject to : [u'which', u'the'] -by examining : [u'the'] -key gently : [u'in'] -screamed, ' : [u'you'] -never any : [u'mystery'] -may let : [u'some'] -way and : [u'she'] -was becoming : [u'ungovernable'] -years and : [u'have', u'two', u'eight', u'whose'] -ready to : [u'morrow', u'flash', u'turn', u'back', u'engage', u'give', u'pay'] -two streets : [u'he'] -young person : [u',', u'should'] -matters right : [u','] -They were : [u'admirable', u'all', u'a', u'on', u'found', u'waiting', u'always', u'evidently'] -man without : [u'heart'] -I imagine : [u'in', u'that'] -got mine : [u'yet'] -the passage : [u',', u'window', u'I', u'and', u'.', u'until', u'lamp', u'gazing'] -friends at : [u'all'] -6d., : [u'cocktail', u'glass'] -waiting this : [u'two'] -, seized : [u'the'] -add that : [u'his'] -its throat : [u'as'] -with such : [u'a', u'success', u'force', u'skill', u'attractions'] -On receiving : [u'this'] -But Holmes : [u'shook'] -More than : [u'that', u'once'] -escaping continually : [u'from'] -into silence : [u','] -. Therefore : [u'he', u'it'] -pushed backward : [u'.'] -banged, : [u'and'] -and forehead : [u'.'] -rogue has : [u'the'] -the Daily : [u'Telegraph'] -me now : [u',', u'with'] -as near : [u'each'] -by direct : [u'descent'] -veil over : [u'her'] -door open : [u',', u".'"] -Four, : [u'and'] -Four. : ['PP'] -questioning glances : [u'.', u'at'] -syllables. : [u'He'] -listened for : [u'an'] -Pray give : [u'us', u'me'] -eaves. : [u'That'] -here it : [u'is'] -what began : [u'it'] -here is : [u'a', u'my', u'her', u'Lestrade', u'the', u'what'] -anyone anywhere : [u'at'] -pretty diversity : [u'of'] -here in : [u'the', u'my', u'a', u'an'] -been erected : [u'against'] -Holmes grinned : [u'at'] -a weak : [u'throat'] -soothing his : [u'manner'] -will remember : [u'that'] -by all : [u'the', u'accounts'] -, living : [u'the', u'but'] -the natural : [u'effect'] -doubt find : [u'waiting'] -a woman : [u"'", u'. "', u'thinks', u'oh', u'!"', u'has', u',', u'should', u'wants', u'very', u".'", u'."', u'whose', u'may', u'of', u'appeared', u'bent', u'who', u'could', u'had'] -in ten : [u'minutes'] -for three : [u'days', u'or'] -free handed : [u'gentleman'] -stupid, : [u'but'] -it difficult : [u'to', u'."'] -Additional terms : [u'will'] -. Perhaps : [u',', u'I', u'."', u'you', u'the', u'it'] -detective that : [u'ever'] -which Mr : [u'.'] -Alice is : [u'her'] -some three : [u'or'] -arrived I : [u'was'] -a fellow : [u'for', u'countryman'] -deep in : [u'one'] -extreme importance : [u'.'] -wild scream : [u'of'] -the laughing : [u'stock'] -were few : [u'and'] -giving me : [u'time'] -been settled : [u','] -seek a : [u'theory'] -we can : [u'have', u'get', u'do', u"'", u'only', u'deduce', u'establish', u'then', u'talk', u'hardly', u'set', u'our'] -otherwise neatly : [u'dressed'] -for that : [u'purpose', u'.', u'reason', u'last', u'is'] -hardly see : [u'what', u'how'] -stepfather about : [u'this'] -aid us : [u'in'] -Hullo!' : [u'I'] -then suddenly : [u'the', u'tailing', u'in', u','] -a schoolmaster : [u'in'] -with astonishment : [u'.', u','] -wondering whether : [u'I'] -soon devised : [u'a'] -or distributing : [u'this', u'any', u'Project'] -denied everything : [u'.'] -finger and : [u'held'] -escape from : [u'the'] -, residing : [u'alone'] -weight of : [u'the', u'this', u'crystallised'] -heads as : [u'well'] -." She : [u'pulled', u'hurried', u'stood', u'raised', u'dropped', u'rose'] -keener pleasure : [u'than'] -some business : [u'to'] -and moving : [u'my'] -dense than : [u'my'] -careful examination : [u'of', u'through'] -discuss it : [u'while', u'in'] -stile, : [u'and', u'"'] -no hair : [u'on'] -moisture, : [u'as'] -without putting : [u'myself', u'my'] -save a : [u'great', u'crippled', u'dog', u'few', u'single', u'little'] -legged with : [u'his'] -silvered over : [u'and'] -this lucky : [u'chance'] -and earn : [u'twice'] -am arrested : [u'."'] -of gas : [u'lit'] -When. : ['PP'] -" BALLARAT : [u'."'] -taken. : [u'It', u'But', 'PP'] -he carelessly : [u", '"] -it became : [u'a', u'clear'] -there had : [u'been', u'ever'] -They might : [u'be'] -the Gravesend : [u'postmark'] -cart containing : [u'several'] -for you : [u'.', u'are', u".'", u',', u',"', u'and', u'have', u'Jem', u'to', u'will'] -lets him : [u'loose'] -the dawn : [u'be'] -house for : [u'five'] -his forefinger : [u'upon'] -s gun : [u','] -paced about : [u'the'] -tracks of : [u'the', u'a'] -Her dress : [u'was'] -and come : [u'.'] -and stood : [u'very', u'with'] -poor man : [u','] -shortcomings. : ['PP'] -a grin : [u'. "', u'of'] -fate play : [u'such'] -would look : [u'askance', u'at'] -care, : [u'and', u'for'] -into knots : [u'.'] -care. : [u'I'] -confess is : [u'more'] -or her : [u'lawyer', u','] -pray send : [u'him'] -your applicable : [u'taxes'] -with burning : [u'tallow'] -what has : [u'become', u'happened', u'passed', u'frightened'] -chimneys, : [u'however', u'showed'] -man dying : [u'from'] -its terrible : [u'occupant'] -be avoided : [u'to'] -had indeed : [u'been'] -then most : [u'certainly'] -Holmes she : [u'is', u'bade'] -carbolised bandages : [u'.'] -what had : [u'become', u'happened', u'occurred'] -matter fairly : [u'clear'] -makes one : [u'for'] -knife and : [u'opened'] -out crisply : [u'and'] -put us : [u'out', u'both', u'on'] -finds his : [u'first'] -wave him : [u'away'] -definite result : [u'.'] -shiver," : [u'said'] -masterly grasp : [u'of'] -far for : [u'me'] -charge, : [u'I'] -what he : [u'will', u'could', u'had', u'foresaw', u'would', u'knows', u'called', u'says', u'said'] -key was : [u'used', u'not'] -this man : [u'worked', u'from', u'Boone', u'was', u'could', u'ordered', u'Horner', u'Breckinridge', u'when'] -. Do : [u'you', u'not', u'I'] -right on : [u'to', u'."'] -those poor : [u'rabbits'] -fear she : [u'should'] -Doyle Posting : [u'Date'] -pew handed : [u'it'] -this may : [u'save'] -. Dr : [u'.'] -to hope : [u'that'] -remarks was : [u'rather'] -the grounds : [u'very', u',', u'of', u'at', u'with'] -of future : [u'annoyance'] -four pound : [u'a'] -days for : [u'their', u'you'] -s warning : [u'to'] -paternal advice : [u'and'] -, rubbing : [u'his'] -frightened you : [u','] -was seated : [u'in'] -and bowed : [u'her', u'shoulders'] -the Lord : [u',', u'that'] -deal with : [u'one', u'a'] -startled me : [u',', u'beyond'] -people on : [u'the'] -a sum : [u'for', u'as', u'ten', u'to'] -him away : [u'to', u'like'] -people of : [u'her'] -here when : [u'the'] -all engaged : [u'for'] -neighbour. : [u'At'] -sleep more : [u'heavily'] -Swandam Lane : [u'.', u'is', u',', u'on', u'?"'] -late riser : [u','] -efforts, : [u'Project'] -no place : [u'about'] -I seemed : [u'to'] -wind had : [u'screamed'] -under strange : [u'conditions'] -earned it : [u'.'] -and hand : [u'me'] -strong Indian : [u'cigars'] -those drunken : [u'sallies'] -both to : [u'absolute', u'the', u'her'] -transcription errors : [u','] -imperturbably. : ['PP'] -some respects : [u','] -he dropped : [u'it', u'heavily'] -She used : [u'to'] -her society : [u','] -found myself : [u'mumbling', u'in', u'free', u'inside', u'lying', u'that', u'without'] -bright little : [u'eyes'] -are brought : [u'in'] -I waited : [u'I', u',', u'in', u'until'] -better now : [u','] -better not : [u'to', u'speak'] -each time : [u'the', u'she'] -does it : [u'come'] -troubles have : [u'been'] -was still : [u',', u'raised', u'balancing', u'confused', u'there', u'between', u'bleeding', u'sharing', u'dangerously', u'open', u'smiling'] -beam of : [u'light'] -Once we : [u'diverted'] -. Victor : [u'Hatherley'] -broader, : [u'and'] -intimate personal : [u'affairs'] -dark in : [u'the'] -you giving : [u'your'] -The firm : [u'does'] -so through : [u'Oxford', u'Wigmore', u'a'] -rack the : [u'old'] -there would : [u'be'] -rest the : [u'more'] -about money : [u'and'] -calamity could : [u'have'] -resist the : [u'fascination'] -southern China : [u'and'] -a room : [u'had', u'.'] -loss was : [u'a'] -light heel : [u'marks'] -all minor : [u'matters'] -opened. : [u'Holmes'] -opened, : [u'and'] -chase," : [u'observed'] -We do : [u'all', u'not'] -abode of : [u'my'] -Patersons in : [u'the'] -limits, : [u'and'] -drawn the : [u'gossips'] -all attention : [u','] -a desperate : [u'man'] -led retired : [u'lives'] -This hat : [u'is', u'has'] -This has : [u'been'] -I exclaimed : [u'in', u'.'] -the propagation : [u'and'] -the thin : [u','] -SUCH DAMAGE : [u'.'] -Whatever your : [u'reasons'] -but rather : [u'to'] -would suddenly : [u'come'] -12th. : [u'Visited'] -gum, : [u'the'] -access to : [u'a', u'Project', u'electronic', u',', u'the', u'or', u'other'] -door with : [u'the'] -sort. ' : [u'From'] -." Striding : [u'through'] -Street every : [u'night'] -! smack : [u'!'] -which wander : [u'freely'] -a gin : [u'shop'] -tinted note : [u'paper'] -rather complicates : [u'matters'] -his rival : [u'vanished'] -you promise : [u',', u'me'] -, many : [u'pointed'] -I changed : [u'my'] -expected in : [u'such'] -now another : [u'vacancy'] -den in : [u'the', u'which'] -quite distinctive : [u'."'] -gift of : [u'silence'] -get to : [u'the', u'Lee', u'him'] -own master : [u','] -, spoke : [u'of'] -light sleeper : [u','] -the military : [u'neatness'] -' 90 : [u','] -these fields : [u'and'] -It goes : [u'to'] -chemistry eccentric : [u','] -of this : [u'question', u'obliging', u'rather', u'tangled', u'case', u'sort', u'horror', u'and', u"'", u'kind', u'particular', u'new', u'battered', u'hat', u'forty', u'chain', u'!"', u'fellow', u'?"', u'blue', u'poor', u'narrow', u'investigation', u'noise', u'wound', u'fleshless', u'small', u'gang', u'remarkable', u'very', u'affair', u'horrible', u'crime', u'morning', u'man', u'strange', u'extraordinary', u'part', u'black', u'license', u'eBook', u'Project', u'agreement', u'work', u'electronic', u'or'] -Gravesend. : [u'Well'] -have left : [u'my'] -swung himself : [u'up'] -The cellar : [u'!'] -Lestrade, : [u'whom', u'being', u'of', u'winking', u'as', u'rising'] -his consequential : [u'way'] -Majesty," : [u'said'] -following each : [u'date'] -been gummed : [u','] -without hindrance : [u'from'] -took a : [u'heavy', u'note', u'good', u'step', u'folded', u'small', u'fancy', u'large', u'house', u'few'] -training. : ['PP', u'The'] -step backward : [u','] -for whatever : [u'might'] -having taken : [u'opium'] -wrist could : [u'only'] -ostensibly as : [u'a'] -tone, : [u'but'] -of Victoria : [u',"'] -were worn : [u'through'] -brilliant talker : [u','] -lady waiting : [u'for'] -before whom : [u'you'] -of drunken : [u'frenzy', u'feet'] -know its : [u'size'] -holes than : [u'I'] -he hurried : [u'from'] -your little : [u'problem'] -crowd to : [u'protect'] -you. : ['PP', u'And', u'Now', u'Pray', u'This', u'There', u'You', u'Let', u'I', u'If', u'The', u'Thank', u'Here', u'For', u'So', u'We', u'That', u'It', u'Yours', u'Good', u'They', u'Ah'] -he vanished : [u'into'] -you, : [u'and', u'however', u'if', u'ran', u'Mr', u'I', u'Jones', u'who', u'sir', u'in', u'as', u'Miss', u'Holmes', u'Lestrade', u'John', u'Watson', u'was', u'Mrs', u'Bradstreet', u'my', u'all', u'just', u'then', u'Maggie', u'you', u'to', u'but', u'a', u'since', u'indeed', u'founded', u'that', u'provided', u'first', u'for', u'have'] -the heavy : [u'hall', u',', u'iron', u'yellow'] -the reasoner : [u'should'] -circle. " : [u'This'] -you' : [u've', u'll', u'd', u're', u'AS'] -eyes tell : [u'me'] -hard before : [u'his'] -you! : [u'You'] -We are : [u'but', u'spies', u'close', u'at', u'in', u'on', u'only', u'now', u'faddy', u'willing'] -tips upon : [u'the'] -you; : [u'it', u'but', u'and'] -Alpha were : [u'town'] -of Baxter : [u"'"] -wearing it : [u'short'] -a prank : [u'upon'] -and addressed : [u'it'] -second daughter : [u'of'] -to build : [u'an'] -through woods : [u'or'] -than might : [u'at'] -be embarrassed : [u'by'] -tax identification : [u'number'] -are. : [u'I', 'PP', u'You', u'Whoa', u'And', u'But', u'Must'] -are, : [u'Egria', u'to', u'as', u'and', u'if', u'Jack', u'Peterson', u'I', u'they', u'Mr', u'so', u'all'] -cat, : [u'and'] -cat. : [u'But'] -a sweeping : [u'bow'] -for copies : [u'of'] -and permanent : [u'future'] -? Poor : [u'father'] -grate, : [u'which'] -LEAGUE I : [u'had'] -see my : [u'little', u'husband', u'way', u'own'] -, gentlemen : [u','] -adjusted that : [u'very'] -school at : [u'Walsall'] -have recovered : [u'yourself'] -glanced sharply : [u'across'] -having the : [u'insolence', u'use'] -in justice : [u'to'] -in our : [u'lodgings', u'cellar', u'police', u'search', u'short', u'arrangements', u'hands', u'way', u'lives', u'faces', u'operations', u'direction', u'future', u'bow', u'room', u'rooms'] -see me : [u'.', u'here', u'?"', u'upon', u'when'] -father took : [u'it', u'over'] -were each : [u'to'] -think neither : [u'.'] -may chance : [u'to'] -keep yourself : [u'out'] -, pulling : [u'up', u'on', u'at'] -for assault : [u'and'] -t mind : [u'breaking', u'my', u'me'] -everywhere, : [u'seen'] -by affecting : [u'to'] -put myself : [u'in'] -deposit all : [u'over'] -c' : [u'est'] -know very : [u'well'] -stone came : [u'from'] -pressing need : [u'for'] -up reporting : [u'and'] -lent the : [u'ostlers'] -the punishment : [u'of'] -then roused : [u'his'] -countries are : [u'in'] -are faddy : [u'people'] -a cheetah : [u'and', u'is', u','] -easy way : [u'in'] -that severe : [u'reasoning'] -legally required : [u'to'] -! Twelve : [u'struck'] -told of : [u'the'] -little help : [u'."'] -been driven : [u'from', u'to'] -." X : [u'.'] -was engaging : [u'my'] -wife hear : [u'all'] -Have you : [u'never', u'a', u'ever', u'the', u'heard', u'an', u'followed', u'her', u'dragged', u'good', u'it', u'your', u'managed'] -rival vanished : [u'; "'] -. " How : [u'did', u'could', u'do'] -police fellows : [u'there'] -we eventually : [u'received'] -country was : [u'unknown'] -little chamber : [u','] -it seemed : [u'safer', u'to', u'!', u',', u'a', u'unnecessary'] -driver. : ['PP'] -pictures, : [u'libraries'] -quiet when : [u'she'] -towards a : [u'definite'] -inside pocket : [u'of'] -said it : [u'should'] -can find : [u'.', u'them'] -ears have : [u'already'] -or heard : [u'anything'] -his peculiar : [u'action'] -professional qualifications : [u'.'] -office at : [u'the'] -The man : [u'who', u'sprang', u"'", u'sat', u'married', u'burst', u'seemed', u'hesitated', u'in'] -chill wind : [u'blowing'] -mess, : [u'but'] -, wrung : [u'my'] -along which : [u'it'] -. Briefly : [u','] -the smallest : [u'sample', u'problems'] -wicked little : [u'eyes'] -You work : [u'your'] -it upon : [u'the', u'our'] -dressing in : [u'my'] -a successful : [u'banking'] -require such : [u'a'] -advantages of : [u'a'] -anteroom, : [u'and'] -uneasy. : [u'Why'] -inner consciousness : [u'anything'] -his assailants : [u';'] -her back : [u'and', u',', u'into', u'I'] -Hunter down : [u'from'] -mine here : [u','] -already imperilled : [u'the'] -been alive : [u'."'] -snow away : [u'while'] -glimmered little : [u'red'] -placed it : [u'when', u'in'] -most important : [u'.', u'."', u'business', u','] -feather of : [u'a'] -"' Absolute : [u'and'] -Fire!" : [u'The', u'Thick'] -absolutely unforeseen : [u'and'] -gossiping here : [u','] -land ever : [u'since'] -all 50 : [u'states'] -other clerks : [u'about'] -we knew : [u'that'] -drawer. : [u'At', u'It'] -hardened my : [u'heart'] -advise. : ['PP'] -with dirt : [u'that'] -seen those : [u'symptoms'] -was blocked : [u'with'] -though how : [u'he'] -non profit : [u'501'] -drawer? : [u'With'] -excitement, : [u'who'] -others besides : [u'ourselves'] -excitement. : ['PP'] -harm and : [u'that'] -simply wish : [u'to'] -surface where : [u'the'] -Again Holmes : [u'raved'] -of bottles : [u'and'] -head. " : [u'If', u'I', u'Many', u'The'] -Baker can : [u'have'] -your lamp : [u'there'] -American and : [u'came'] -retired lives : [u','] -is derived : [u'from'] -a gold : [u'watch', u'convoy', u'mine'] -your Majesty : [u'would', u'.', u',', u'all', u"'", u',"', u'say'] -maybe, : [u'if'] -events so : [u'closely'] -enough that : [u'the'] -took professional : [u'chambers'] -of fuller : [u"'"] -The incident : [u'however'] -no survivor : [u'from'] -dusk we : [u'saw'] -quite certain : [u'that', u','] -his story : [u'.'] -unhappy boy : [u','] -lustrous black : [u'hair'] -And good : [u'night'] -every moment : [u'now'] -every meal : [u'by'] -commence, : [u'and'] -absolutely uncontrollable : [u'in'] -is James : [u'Ryder'] -until there : [u'was'] -drawn blinds : [u'and'] -openings for : [u'those'] -Globe, : [u'Star'] -inquiry may : [u'but'] -he put : [u'us'] -seen too : [u'much'] -McCarthy and : [u'his'] -get this : [u'not'] -Boone had : [u'thrust', u'to'] -who could : [u'hardly', u'distinguish', u'this', u'it'] -Gutenberg. : ['PP'] -of having : [u'her', u'taken', u'abstracted', u'upon', u'been'] -share your : [u'opinion'] -something clever : [u','] -noble lord : [u'has'] -these recent : [u'developments'] -there when : [u'I', u'the'] -extremity to : [u'save'] -, opened : [u'a', u'your', u'the'] -his guilt : [u';'] -ever put : [u'your'] -soon rouse : [u'inquiry'] -all fiction : [u'with'] -Merryweather is : [u'a', u'the'] -my shop : [u'.'] -instructive. : ['PP', u'But'] -us try : [u'to'] -flaw? : [u'Do'] -neither us : [u'nor'] -colonel himself : [u','] -details as : [u'to'] -beckoning to : [u'her'] -horses' : [u'hoofs'] -to either : [u'of'] -horses, : [u'and'] -flaw, : [u'however'] -Victoria Street : [u'(', u'.'] -just cause : [u'of'] -further end : [u'of'] -uncle burned : [u'the'] -Tudor on : [u'the'] -For example : [u','] -The ejaculation : [u'had'] -man says : [u'is'] -all as : [u'far'] -of variety : [u',"'] -but two : [u'feet', u'months'] -February in : [u"'"] -then her : [u'sister', u'father'] -the beautiful : [u'creature', u'Stroud', u'woman'] -devil who : [u'has'] -was almost : [u'as'] -directed towards : [u'a'] -of yesterday : [u','] -the lights : [u'of'] -is likely : [u'to', u'that'] -gentleman called : [u'Mr'] -with sleepy : [u'bewilderment'] -To Eyford : [u','] -. ' Tell : [u'Mary'] -linen, : [u'and'] -Hebrew rabbi : [u'and'] -scribbled a : [u'receipt'] -obstinate. : ['PP'] -geese?' : [u'and', u'One'] -other woman : [u','] -forgotten. : ['PP'] -wig. : [u'Even'] -prevent her : [u'from'] -my correspondence : [u'has'] -telling her : [u'that'] -his family : [u'have', u".'", u'and'] -still much : [u'to'] -," Holmes : [u'remarked', u'answered', u'continued', u'interposed'] -wedding after : [u'all'] -canvas bag : [u'in'] -opium smoke : [u','] -German who : [u'is', u'writes'] -Norton, : [u'of', u'bachelor', u'as'] -bundle a : [u'copy'] -small factory : [u'at'] -hand made : [u'London'] -Victoria. : ['PP'] -promised to : [u'bring', u'be', u'wait'] -very painful : [u'event'] -authorities. : [u'The'] -Victoria! : [u'That'] -compunction about : [u'shooting'] -Of Friday : [u','] -sum as : [u'a'] -are where : [u'their'] -Lone Star : [u",'", u"'", u'"', u'."'] -so secluded : [u','] -this advertisement : [u'had'] -toe caps : [u'is'] -Why does : [u'fate'] -ceiling and : [u'a'] -torn at : [u'the'] -and held : [u'it', u'him', u'up', u'out'] -stay here : [u'.'] -at Bristol : [u','] -You fill : [u'me'] -and touched : [u'him'] -little country : [u'town'] -this epistle : [u'. "'] -work by : [u'people'] -Doran' : [u's'] -considering. : ['PP'] -the defective : [u'work'] -here upon : [u'a'] -agreement, : [u'you', u'disclaim', u'the', u'and'] -shabby fare : [u','] -old trick : [u'."', u'of'] -foolscap, : [u'and'] -Mary but : [u'which'] -case within : [u'my'] -two things : [u'about', u'which'] -gentleman of : [u'whom'] -horse and : [u'trap'] -twice. : [u'He'] -twice, : [u'as'] -strange arrangements : [u'which'] -lethargy which : [u'was'] -a drawer : [u'which'] -to indemnify : [u'and'] -just wondering : [u'whether'] -doings: : [u'of'] -cost our : [u'unfortunate'] -only other : [u'cab'] -hate to : [u'meet'] -to your : [u'practice', u'door', u'Majesty', u'case', u'deadliest', u'wife', u'house', u'aunt', u'sister', u'room', u'nerves', u'wishes', u'machine', u'co', u'papers', u'ears', u'advantage', u'son', u'dressing', u'uncle', u'consideration', u'help'] -rule," : [u'said'] -To an : [u'English', u'end'] -at once : [u'that', u'furnish', u'to', u';', u',', u'.', u'?"', u'put', u'upon', u'by', u'as', u'into', u".'", u'not', u'went', u'convinced', u'see', u'before'] -slang of : [u'the'] -bring your : [u'Majesty'] -and am : [u'loved', u'not'] -and an : [u'elderly', u'extra', u'engagement', u'exclamation', u'uncertain', u'appropriate', u'occasional', u'ill', u'abstracted', u'expression'] -a whip : [u'across'] -tomboy, : [u'with'] -am lost : [u'without'] -and at : [u'the', u'such', u'least'] -stoutly swore : [u'that'] -thin a : [u'man'] -am glad : [u'to', u'of'] -what took : [u'place'] -leave my : [u'estate'] -myself and : [u'took'] -even, : [u'according'] -screamed and : [u'the', u'shrunk'] -hard day : [u"'"] -disappeared into : [u'his', u'the', u'your'] -object in : [u'deserting', u'my'] -no society : [u'and'] -; the : [u'one', u'stone', u'real', u'deed'] -rearranging my : [u'own'] -leave me : [u'so', u','] -as they : [u'were', u'came', u'chased', u'once', u'are'] -Its 501 : [u'('] -had inflicted : [u'upon'] -gates, : [u'and'] -points on : [u'which'] -See what : [u'my'] -on whom : [u'I'] -scored by : [u'six'] -feelings. : [u'I'] -"' Certainly : [u",'", u'not'] -sitting down : [u'once', u'in', u'and'] -wish I : [u'knew'] -village," : [u'said'] -, CONSEQUENTIAL : [u','] -:"' : [u'I', u'Ku', u'MY', u'The'] -have often : [u'thought'] -bred," : [u'snapped'] -way among : [u'the'] -." That : [u'was'] -Not even : [u'your'] -. 4th : [u','] -as narrated : [u'by'] -prove to : [u'be'] -the Duchess : [u'of'] -confusion which : [u'the'] -very smiling : [u'face'] -doors in : [u'a'] -company which : [u'he'] -wiser heads : [u'than'] -saw his : [u'tall', u'father', u'wicked', u'face', u'bare'] -London should : [u'take'] -for granted : [u'until'] -d be : [u'as'] -very foolish : [u'thing'] -saw him : [u'motion', u'raise', u'that', u'as', u'get', u'last', u'sitting', u',', u'scribble', u'with', u'?"', u'.', u'carrying'] -passing over : [u'an'] -family itself : [u'is'] -Upon the : [u'second'] -to play : [u'."', u'heavily', u'then'] -your periodic : [u'tax'] -to call : [u'to', u'.', u'upon', u',', u'Holmes', u'the', u'about'] -run back : [u'again', u'swiftly'] -a constant : [u'state'] -my pigments : [u'and'] -gems, : [u'and', u'Mr'] -gems. : ['PP', u'Even'] -who seemed : [u'to'] -shall not : [u'use', u'long', u'need', u'find', u'feel', u'keep', u'have', u'say', u'void'] -my pockets : [u'with'] -shall now : [u'have', u'carry', u'continue', u'see'] -s singular : [u'character'] -gems; : [u'but', u'the'] -bored or : [u'to'] -to smoke : [u'.'] -using it : [u'.'] -will suffer : [u'shipwreck'] -come right : [u'away'] -I warn : [u'you'] -be good : [u'enough', u'bye'] -else does : [u';'] -do now : [u'that'] -do not : [u'pronounce', u'observe', u'take', u'know', u'wish', u'see', u'let', u'allow', u'quite', u'think', u'encourage', u'change', u'mean', u'."', u'be', u'ventilate', u'waste', u'yourself', u'make', u'succeed', u'search', u'treat', u'inconvenience', u'hear', u'present', u'charge', u'agree', u'claim', u'solicit', u'necessarily'] -face of : [u'the', u'Miss', u'disappointment', u'it', u'a'] -of managing : [u'it'] -too theoretical : [u'and'] -much fear : [u'that'] -your aunt : [u"'"] -our trap : [u'should', u'at'] -an engagement : [u','] -to remove : [u'crusted', u'the', u'them'] -minutely the : [u'cracks'] -only of : [u'his'] -strange fantastic : [u'poses'] -which wasn : [u"'"] -John; : [u'we'] -premises that : [u'they'] -could she : [u'do', u',', u'mean'] -in monosyllables : [u','] -the comical : [u'side'] -John, : [u'the'] -his only : [u'son', u'child'] -I sprang : [u'from', u'up', u'to'] -AGREEMENT WILL : [u'NOT'] -me forever : [u'!'] -John' : [u's'] -his drug : [u'created'] -from. : ['PP', u'If'] -for months : [u'on', u'after'] -good money : [u'for'] -Lascar was : [u'known', u'at'] -sentence, : [u'but', u'he', u'with'] -sentence. : [u'As'] -any missing : [u",'"] -shook out : [u'upon'] -with another : [u'effort'] -will put : [u'the'] -farm or : [u'by'] -a sliding : [u'panel'] -sill gave : [u'little'] -not necessary : [u'that'] -a satisfaction : [u'to'] -the attempts : [u'of'] -enough consideration : [u'at'] -the glasses : [u','] -then at : [u'that', u'least', u'any'] -said Sherlock : [u'Holmes'] -deadly and : [u'chronic'] -copying and : [u'distributing'] -affection for : [u'Arthur'] -have ordered : [u'a'] -, ringing : [u'the', u'note'] -, now : [u'!"', u',', u'bright', u'faint', u'."', u'?"'] -, not : [u'far', u'for', u'only', u'very', u'bitten', u'even', u'knowing', u'more', u'long', u'now', u'a', u'to', u'the'] -is equally : [u'certain', u'valid'] -, nor : [u'given', u'would', u'have', u'seen'] -of Fenchurch : [u'Street'] -exception of : [u'his'] -say when : [u'he'] -No wind : [u','] -a circle : [u'with'] -of and : [u'all'] -daughter had : [u'disappeared'] -unlocked the : [u'door'] -sound in : [u'body', u'the'] -burrowing. : [u'The'] -very deep : [u'sleep', u'waters', u'business'] -takes the : [u'obvious', u'cake'] -She rose : [u'briskly', u'at'] -this room : [u'."', u'.', u'for'] -greet her : [u', "'] -, broke : [u'off'] -, unique : [u'."'] -spot where : [u'he'] -or left : [u'the'] -wrong scent : [u'.'] -bad for : [u'her'] -wedged in : [u'as'] -called me : [u'names'] -anxious that : [u'there', u'you'] -be lonely : [u','] -. Imagine : [u','] -light duties : [u','] -could smell : [u'Dr'] -in two : [u'days'] -on account : [u'of'] -and conveyed : [u'somewhere'] -a tree : [u'until', u'.'] -receipts, : [u'and'] -Only as : [u'much'] -large one : [u'which'] -Eglonitz here : [u'we'] -But look : [u'at'] -flight, : [u'when', u'and', u'but'] -flight. : [u'Holmes', u'That'] -Some five : [u'years'] -looks very : [u'seasonable'] -, she : [u'is', u'has', u'had', u'replaced', u'does', u'hurried', u'gave', u'would', u'ran', u'was', u'suddenly', u'rushed', u'met', u'sprang', u'retorted', u'may', u'answered', u'seemed', u'rose', u'did', u'read', u'went', u'flattered'] -are deeply : [u'marked'] -whistle which : [u'had'] -found your : [u'father'] -manifestations that : [u'the'] -the trap : [u'out', u',', u'rattled'] -formerly, : [u'pointing', u'which'] -fell from : [u'her'] -first train : [u'to'] -pursued me : [u'.'] -San Francisco : [u','] -seen enough : [u'now'] -I know : [u'that', u'where', u',', u'very', u'without', u'you', u'the', u'nothing', u'it', u'his', u'him', u'all', u'some', u'everything', u'I', u'no', u'."'] -, laughing : [u'. "', u'; "', u',', u'at'] -I wouldn : [u"'"] -suddenly and : [u'as'] -"' Keep : [u'your'] -removed the : [u'transverse'] -were left : [u'in'] -of Wight : [u'."'] -, started : [u'for'] -wild and : [u'free'] -news for : [u'you'] -him a : [u'companion', u'sleepless', u'couple', u'dash', u'gaol', u'gentleman', u'decidedly', u'wish', u'price', u'very'] -of hair : [u'as', u',', u'ends', u'.'] -his activity : [u','] -You are : [u'right', u'sure', u'to', u'not', u'very', u'yourself', u'hungry', u'a', u'the', u'engaged', u'too', u'certainly', u'endeavouring', u'screening', u'Holmes', u'fresh', u'probably', u'mad', u'all', u'fatigued', u'doing', u'looking', u'in'] -a cracked : [u'edge'] -always either : [u'worthless'] -at liberty : [u'to', u'.'] -in there : [u"!'"] -but unnoticed : [u','] -or writing : [u"?'"] -depended whether : [u'I'] -up here : [u'.'] -arm to : [u'turn'] -glove was : [u'torn'] -given room : [u'for'] -no doubt : [u';', u'depicted', u'familiar', u'that', u',', u'you', u'suggested', u'travel', u'strike', u'it', u'of', u'.', u'indirectly', u'as', u'they', u'quietly', u'a', u'find', u'at'] -country hedge : [u'upon'] -tell your : [u'story'] -stretched out : [u'his', u'to', u'in', u'upon'] -- Except : [u'for'] -You put : [u'me'] -errors, : [u'a'] -Boscombe Pool : [u',', u'is', u'.', u'was'] -uncomfortable with : [u'her'] -as our : [u'client', u'word'] -Oh! : [u'I', u'you'] -admire his : [u'taste'] -a church : [u'.'] -among women : [u'.'] -season. : [u'He', u'I'] -us both : [u'into', u'instantly', u'good'] -machine goes : [u'readily'] -Hotel. : [u'Hosmer'] -made no : [u'remarks', u'inquiries'] -a sinister : [u'result', u'history'] -?' He : [u'spoke', u'was'] -outhouse which : [u'stands'] -conjecture into : [u'a'] -has really : [u'quite'] -to which : [u'she', u'I', u'we'] -Kilburn, : [u'where'] -Kilburn. : [u'There', u'I'] -Franco Prussian : [u'War'] -child who : [u'may'] -Simon very : [u'mercifully'] -steel. : [u'She'] -sharing Project : [u'Gutenberg'] -save for : [u'one', u'an', u'a'] -might with : [u'propriety'] -manner. : [u'So', 'PP', u'He'] -manner, : [u'his', u'and', u'as', u'of'] -s guilt : [u'?"'] -I locked : [u'it'] -delight, : [u'everything'] -legs towards : [u'the'] -to work : [u'.', u'out', u'upon'] -opportunity. : [u'I'] -slowly round : [u'and'] -man or : [u'devil', u'men'] -supply them : [u'.'] -sympathy for : [u'all'] -man on : [u'the', u'this'] -treatment from : [u'Mr'] -His extreme : [u'love'] -may discriminate : [u'.'] -ll tell : [u'you', u'our'] -struck from : [u'behind', u'immediately', u'my'] -s description : [u'of'] -man of : [u'strong', u'honour', u'whom', u'your', u'considerable', u'a', u'temperate', u'the', u'learning', u'immense', u'about', u'great', u'evil'] -me up : [u',', u'.'] -thing beyond : [u'myself'] -history of : [u'the'] -for myself : [u'."', u'and'] -say in : [u'anything'] -turns also : [u'with'] -gasped Hatherley : [u'.'] -Testament, : [u'that', u'and'] -he wished : [u'to'] -lawyer. : [u'That', u'There', 'PP'] -lawyer, : [u'and'] -slight forward : [u'stoop'] -rising. : ['PP'] -are legally : [u'required'] -own impression : [u'as'] -knows his : [u'own'] -singular incident : [u'made'] -Yet we : [u'have'] -knows him : [u'."', u'will'] -You dragged : [u'them'] -towards it : [u".'", u'.', u'and'] -opening part : [u'but'] -an answer : [u'to'] -candle in : [u'the', u'her'] -very erect : [u','] -its occupant : [u'.'] -object to : [u'our'] -the bushy : [u'whiskers'] -lodgings and : [u'found'] -will perhaps : [u'be'] -fact that : [u'the', u'he', u'his', u'there', u'my', u'we', u'Miss', u'our'] -the trains : [u'in'] -I perceive : [u'that', u'also', u'upon'] -that just : [u'at'] -the office : [u'just', u'.', u'."', u'but', u',', u'during', u'after', u'he', u'of', u'behind'] -have elapsed : [u'since'] -only drawback : [u'is', u'which'] -soothing tones : [u'which'] -data! : [u'data'] -both burst : [u'out'] -witted youth : [u','] -speedily overtook : [u'the'] -. Putting : [u'his'] -mumbled a : [u'few'] -calculate your : [u'applicable'] -this will : [u'prove'] -it over : [u'to', u'for', u'."', u'.', u'his', u',', u'rather', u'with', u'and', u'in'] -can twist : [u'steel'] -self respect : [u',"', u'."'] -saw you : [u'."', u',', u'last', u'coming'] -von Ormstein : [u','] -undo the : [u'hasp'] -curiosity, : [u'until', u'so', u'though'] -your bed : [u'and'] -professional investigations : [u','] -go farther : [u','] -a rifle : [u'.'] -he handed : [u'it', u'me'] -found out : [u'of'] -interesting case : [u',', u'it'] -the murderers : [u'of'] -talked so : [u'.'] -chosen, : [u'inspiring', u'doubtless'] -between the : [u'stones', u'parted', u'time', u'Hatherley', u'edge', u'father', u'years', u'threat', u'mail', u'double', u'wharf', u'sheets', u'sweet', u'boards', u'two', u'lines', u'crime', u'different'] -where our : [u'red'] -it right : [u'ourselves', u".'", u'.', u'there', u'to'] -fresh clue : [u'.'] -a fad : [u'or'] -papers in : [u'order'] -the neighbours : [u','] -your profession : [u'.'] -License for : [u'all'] -little Alice : [u'.'] -you no : [u'doubt', u'inconvenience'] -to Mr : [u'.'] -richer pa : [u'grew'] -both rushed : [u'upon'] -he remain : [u'away'] -gone away : [u'.'] -judgment, : [u'the'] -their singular : [u'warning'] -white stones : [u'turned'] -This woman : [u'might'] -feel its : [u'hard'] -steal over : [u'me'] -myself liking : [u'to'] -to corroborate : [u'your'] -tm and : [u'future'] -sent to : [u'the'] -sympathetic sister : [u'or'] -me." : [u'The', u'He'] -remarked Holmes : [u',', u'.', u'as', u', "', u'. "', u'when'] -my Frank : [u"'"] -The daughter : [u'was', u'told'] -things to : [u'you'] -effort of : [u'the'] -relations to : [u'her'] -start upon : [u'your'] -arms to : [u'cover'] -were shining : [u'coldly'] -a wreck : [u'and'] -think you : [u'know', u'will', u'would', u'a'] -employs me : [u'wishes'] -to propose : [u'to'] -but no : [u'superscription', u'coins', u'trace', u'jest'] -Miss Stoner : [u'has', u',"', u'.', u'turned', u'did', u'was', u',', u'nor', u'and', u'to'] -one matter : [u'has'] -what steps : [u'did'] -litter of : [u'papers'] -fluttered out : [u'from'] -and ushering : [u'in'] -asked the : [u'King'] -struck at : [u'the'] -Ferguson remained : [u'outside'] -hearty laugh : [u'. "'] -crushed in : [u'the'] -am able : [u'to'] -by binding : [u'you'] -none which : [u'present'] -Turn over : [u'those'] -the fascination : [u'of'] -dark eyebrows : [u'. "'] -possible?" : [u'gasped'] -Berkshire village : [u'.'] -softly to : [u'himself'] -leakage, : [u'which'] -monomaniac. : [u'With'] -injured man : [u'.'] -Northumberland Avenue : [u','] -father; : [u'but'] -tm depends : [u'upon'] -father? : [u'Did'] -ever come : [u'within'] -facility. : ['PP'] -definite. : ['PP'] -r.' : [u'There'] -, kept : [u'alive'] -father, : [u'though', u'but', u'and', u'I', u'at', u'who', u'whence', u'was', u'as'] -father. : [u'She', u'I', 'PP', u'Yet', u'Still', u'My'] -father! : [u'Of'] -market price : [u'.', u'."'] -the trifling : [u'details'] -robberies which : [u'had'] -father' : [u's'] -came on : [u'to'] -like a : [u'man', u'rabbit', u'coster', u'full', u'rat', u'dog', u'herd', u'child', u'cashbox', u'sheep', u'sheet', u'star', u'vice', u'cleaver', u'butcher', u'few', u'magician', u'pistol', u'plover', u'very'] -was fastened : [u'for'] -their efforts : [u'were'] -she not : [u'have'] -nine enormous : [u'beryls'] -have really : [u'got', u'done', u'some'] -rank sweating : [u"!'"] -and heated : [u'metal'] -to wash : [u'linen'] -am myself : [u'one', u'.', u'a', u'to'] -a plunge : [u','] -confirm his : [u'guilt'] -you swear : [u'to'] -. Nearly : [u'all'] -a course : [u'of'] -he wouldn : [u"'"] -a baboon : [u',', u'.', u'."'] -charming manners : [u','] -has his : [u'faults', u'own'] -brought, : [u'I'] -am ashamed : [u'of'] -headgear began : [u'to'] -Helen! : [u'It'] -commonplace face : [u'is'] -you not : [u'merely', u'find', u'see', u'yourself', u'heard', u'deduce', u'come', u'conducting', u'to', u'think', u'wait', u'?"', u'only', u',', u'the', u'understand'] -you now : [u'that', u','] -eight different : [u'points'] -ve done : [u'our'] -buttons out : [u'of'] -which any : [u'of'] -the remaining : [u'provisions'] -upon delay : [u'."'] -Which dealer : [u"'"] -We may : [u'take'] -there darted : [u'what'] -very straight : [u'to'] -for dawdling : [u','] -made so : [u'immense'] -of Lee : [u',"', u'."', u','] -" Boscombe : [u'Valley'] -for dinner : [u'.'] -My stepfather : [u'learned', u'has', u"'"] -important and : [u'less', u'lowliest'] -opened eye : [u'of'] -reason from : [u'what', u'insufficient'] -pa grew : [u'the'] -I stood : [u'as', u'firm', u'gazing', u'one', u'in'] -any visitors : [u'if'] -the retired : [u'Saxe'] -your guilt : [u'more'] -27 pounds : [u'10s'] -weekly county : [u'paper'] -just ask : [u'you'] -that Arthur : [u'should', u'had'] -the play : [u'will'] -provided, " : [u'I'] -instance of : [u'your', u'crime'] -a pleasure : [u'to'] -German for : [u"'"] -been urged : [u'against'] -facts should : [u'now'] -no compunction : [u'about'] -Holmes sternly : [u'. "'] -prisoner gone : [u'.'] -lose not : [u'an'] -his chest : [u'and', u'with'] -his waterproof : [u'to'] -" From : [u'what', u'Hatherley', u'East', u'his', u'the'] -were treatises : [u'on'] -the programme : [u','] -." Lestrade : [u'looked', u'laughed', u'shrugged', u'shot', u'rose'] -minutes in : [u'the'] -A, : [u'and', u'B'] -A. : [u'You', u'By'] -bet is : [u'off'] -seemed absurdly : [u'agitated'] -wall at : [u'the'] -nearer twelve : [u'.'] -excellent. : ['PP', u'I'] -to grown : [u'men'] -been given : [u'me', u'against', u'to'] -Filled with : [u'the'] -curious voice : [u','] -astronomy, : [u'and'] -metal, : [u'told', u'for'] -metal. : [u'Someone'] -become you : [u'.'] -mercifully and : [u'thank'] -were deeply : [u'stirred'] -really old : [u'Toller'] -whose anxious : [u'ears'] -struck Sir : [u'George'] -always less : [u'distinct'] -), when : [u'my'] -man gives : [u'his', u'who'] -He certainly : [u'needs'] -better postpone : [u'my'] -trees? : [u'That'] -letter arrived : [u'on'] -all use : [u'of'] -gap like : [u'the'] -curly brimmed : [u'hat'] -has dropped : [u'into'] -singular story : [u'which'] -Maggie,' : [u'says'] -entity providing : [u'it'] -little things : [u'that', u'are', u'about', u'.'] -as startled : [u'as'] -heard faintly : [u'the'] -richer man : [u','] -frock coat : [u',', u'.', u'faced', u'was'] -found so : [u'easy'] -Watson here : [u'can'] -absolute ruin : [u'that'] -, ' I : [u'shall', u'have', u'opened', u'will', u"'"] -this Mr : [u'.'] -cut by : [u'the'] -been concerned : [u'in'] -a copyright : [u'or', u'notice'] -whose residence : [u'is'] -more and : [u'passing'] -catastrophe. : [u'Then'] -cooped up : [u','] -link between : [u'two'] -He slipped : [u'an', u'his'] -s words : [u','] -the maiden : [u'is', u'herself'] -ring," : [u'said'] -itself shoulder : [u'high'] -and eggs : [u','] -splendidly. : [u'Dr'] -Mrs. : [u'Turner', u'Etherege', u'St', u'Henry', u'Hudson', u'Oakshott', u'Farintosh', u'Stoner', u'Francis', u'Moulton', u'Rucastle', u'Toller'] -I seated : [u'myself'] -have said : [u',', u'my', u'that'] -while even : [u'one'] -and doubly : [u'secure'] -Windigate by : [u'name'] -settled our : [u'new'] -remarkably small : [u'feet'] -to prepare : [u')'] -new patient : [u',"'] -why I : [u'did', u'urged', u'was', u'have', u'had', u'hastened'] -only passenger : [u'who'] -and sinister : [u'business', u'enough'] -so made : [u'sure'] -as none : [u'knew'] -booted man : [u','] -six troopers : [u'and'] -! where : [u'?"'] -new quest : [u'might'] -stake will : [u'be'] -weeks before : [u'that', u'my'] -she values : [u'most'] -unnecessary. : [u'Three'] -ordered one : [u','] -crib all : [u'ready'] -explain how : [u'he', u'it'] -can pass : [u'him', u'through'] -smallest problems : [u'are'] -station yourself : [u'close'] -singular adventures : [u'of', u'which'] -neighbourhood and : [u'hung'] -withdrawn as : [u'suddenly'] -marked and : [u'the'] -park at : [u'five'] -. Voil : [u'tout'] -revenge, : [u'or'] -with knitted : [u'brows'] -bridge for : [u'something'] -I shuddered : [u'to'] -have come : [u'incognito', u'at', u'.', u'now', u'up', u'for', u'to', u'from', u'in', u'on', u',"', u'upon'] -unfortunate accident : [u','] -consult," : [u'said'] -extreme chagrin : [u'and'] -sister appear : [u'at'] -pen too : [u'deep'] -cut your : [u'hair'] -But you : [u'can', u'have', u"'", u'are', u'see', u'will', u'were', u'do', u'may', u'would', u'shall'] -hand which : [u'the'] -am all : [u'impatience', u'off', u'in', u'attention'] -to everybody : [u'who'] -before leaving : [u'home', u'you'] -elapsed between : [u'the'] -our fair : [u'cousins'] -obviously caused : [u'by'] -being excellent : [u'company'] -decline and : [u'took'] -Holmes?" : [u'he', u'asked'] -her maid : [u'that', u'."', u'?"'] -shall get : [u'the'] -play. : ['PP', u'A'] -hundred would : [u'have'] -The end : [u'may'] -your view : [u'.'] -devote an : [u'hour'] -writing me : [u'a'] -all be : [u'."'] -these twenty : [u'years'] -Lestrade held : [u'information'] -of me : [u',', u'.', u',"', u'."', u'to'] -what interest : [u'could'] -of my : [u'former', u'trifling', u'kingdom', u'inquiry', u'mouth', u'hand', u'own', u'most', u'belief', u'companion', u'having', u'assistant', u'companions', u'little', u'clients', u'duties', u'arrival', u'window', u'father', u'relations', u'analysis', u'first', u'adventure', u'natural', u'cases', u'attainments', u'lip', u'late', u'town', u'friend', u'association', u'bed', u'power', u'situation', u'mother', u'only', u'beloved', u'grip', u'sister', u'cane', u'morning', u'handkerchief', u'work', u'fields', u'neighbours', u'friends', u'patron', u'errand', u'ignorance', u'room', u'fifty', u'wearisome', u'speech', u'death', u'night', u'limbs', u'Afghan', u'client', u'other', u'second', u'leaving', u'reach', u'dressing', u'story', u'wife', u'time', u'laughter', u'bedroom', u'trunk', u'hobbies', u'dress'] -reparation as : [u'is'] -to catch : [u'the'] -understand your : [u'thinking'] -little resentment : [u','] -sympathy between : [u'us'] -tide was : [u'at'] -Monica in : [u'the'] -all stained : [u'and'] -chuckled. : ['PP'] -the burning : [u'poison'] -settled down : [u'once'] -hurrying down : [u'to'] -pulled back : [u'?"'] -was employing : [u'his'] -been offered : [u'to'] -son allow : [u'himself'] -he exposed : [u'himself'] -forever a : [u'mystery'] -anything, : [u'but'] -may use : [u'this'] -quiet and : [u'respectable', u'innocent', u'sweet', u'gentle', u'patient'] -couch, : [u'and', u'I'] -into it : [u'.', u'and', u'the', u'."'] -mystery!" : [u'I'] -" TO : [u'THE'] -violent, : [u'we', u'and'] -he realised : [u'how'] -laugh and : [u'put'] -. "' L : [u"'"] -new investigation : [u'.'] -usual,' : [u'she'] -SCANDAL IN : [u'BOHEMIA'] -roar of : [u'laughter', u'the'] -housekeeper now : [u','] -police court : [u'."', u',"', u',', u'business'] -being out : [u'of'] -your pocket : [u'."', u'.'] -cracked, : [u'exceedingly'] -Not only : [u'that'] -" To : [u'ruin', u'Clotilde', u'do', u'an', u'smoke', u'the', u'tell', u'eat'] -sent it : [u'yet', u'to'] -Wallenstein, : [u'and'] -edge came : [u'in'] -Not social : [u','] -and revolved : [u'slowly'] -Adler. : [u'All', u'The', 'PP'] -Adler, : [u'of', u'to', u'spinster', u'as', u'or'] -. Its : [u'disappearance', u'splendour', u'power', u'outrages', u'owner', u'finder', u'501', u'business'] -numerous glass : [u'factories'] -brought an : [u'advocate'] -man are : [u'continually'] -, without : [u'any', u'being', u'either', u'flying', u'anything', u'rest', u'anyone', u'ever', u'even', u'affectation', u'a', u'prominently'] -rent free : [u'."', u'on'] -were hollowed : [u'out'] -should strongly : [u'recommend'] -those deductive : [u'methods'] -blotches of : [u'lichen'] -little springs : [u','] -vanishing of : [u'the'] -voice before : [u',"'] -hansom and : [u'drive'] -fallen in : [u','] -you startled : [u'me'] -crop from : [u'the'] -gulp, : [u'and'] -dislike to : [u'the'] -you receive : [u'much', u'specific'] -" Miss : [u'Roylott'] -for us : [u'."', u'.', u'to', u'in', u'upon', u'with', u'now', u',', u'if'] -fulfilment, : [u'in'] -afterwards seen : [u'walking'] -stretched down : [u'in'] -hung down : [u'beside', u'to'] -and Attica : [u','] -to tax : [u'his'] -out there : [u'jumped', u','] -hereditary kings : [u'of'] -bell wire : [u'.'] -ounce of : [u'shag'] -2 is : [u'an'] -faded and : [u'stagnant'] -it between : [u'two'] -a story : [u'as'] -violin player : [u','] -Doran, : [u'the', u'whose', u'at', u'in'] -speech before : [u'we'] -Clair and : [u'swore'] -completed the : [u'impression', u'cure'] -ejaculation or : [u'cry'] -an advantage : [u'.'] -conjectured that : [u'he'] -case lying : [u'upon'] -singular introspective : [u'fashion'] -easily controlled : [u'when'] -no cost : [u'and'] -the conjecture : [u'which'] -been serving : [u'his'] -chamber of : [u'the'] -stood open : [u'and'] -sweet, : [u'loving'] -The newcomers : [u'were'] -swollen glands : [u'when'] -mean a : [u'complete'] -not need : [u'you'] -corrupt data : [u','] -me instead : [u'of'] -aquiline, : [u'and'] -left foot : [u'of'] -envelope in : [u'one'] -? Well : [u','] -the dint : [u'of'] -along and : [u'slipped'] -keep the : [u'two', u'stone', u'flames', u'appointment', u'matter'] -lanes. : [u'It'] -things are : [u'very', u'infinitely', u'going'] -mine all : [u'the'] -caged up : [u'in'] -theories and : [u'fancies'] -silver upon : [u'his'] -master' : [u's'] -.' are : [u'legible'] -this suite : [u','] -they discovered : [u'its'] -master, : [u'you'] -a dangerous : [u'man', u'pet'] -a signal : [u'which', u'to'] -ever see : [u'a'] -of mercy : [u'!"'] -clump of : [u'laurel', u'trees', u'copper'] -boys were : [u'killed'] -aristocratic features : [u'.'] -works unless : [u'you'] -the scoundrel : [u'."'] -Yet, : [u'with'] -his grasp : [u'and'] -, blue : [u'tinted'] -murdering and : [u'driving'] -Seven!" : [u'I'] -noting anything : [u'else'] -nor given : [u'to'] -to admit : [u'such', u'that'] -month in : [u'my'] -vestry. : [u'She'] -an old : [u'trick', u'dog', u'woman', u'friend', u'rusty', u'campaigner', u'briar', u'scar', u'house', u'clock', u'elastic', u'maxim', u'chest', u'rickety'] -left us : [u', "', u'in', u'standing'] -a credit : [u'to'] -main force : [u'a'] -rails, : [u'I'] -name and : [u'the'] -hotel abomination : [u'.'] -with Moran : [u','] -more likely : [u'to', u'that'] -the strongest : [u'terms'] -black eyes : [u'. "'] -things you : [u'can'] -enough for : [u'all'] -daily press : [u','] -with so : [u'charming', u'large', u'fixed', u'much'] -but concentrate : [u'yourself'] -the hospitality : [u'of'] -It swelled : [u'up'] -gentleman sprang : [u'out'] -Then Mr : [u'.'] -light sprang : [u'up', u'into'] -grasped this : [u'truth'] -we hope : [u',', u'that'] -having charming : [u'manners'] -of paragraphs : [u'1'] -sense in : [u'Hafiz'] -she carries : [u'it'] -word would : [u'he'] -all horrible : [u'to'] -bye to : [u'any'] -s up : [u','] -with fear : [u'and', u','] -small study : [u'of'] -be excellent : [u'if'] -narrow path : [u'between'] -researches which : [u'he'] -when once : [u'his', u'she'] -. Bradstreet : [u'had'] -she carried : [u'the'] -Was the : [u'photograph', u'window', u'remainder'] -other indications : [u','] -you keep : [u'that', u'yourself'] -the swag : [u'.'] -cold day : [u','] -cotton wadding : [u'and'] -double possibility : [u'.'] -direction during : [u'the'] -me when : [u'all'] -you should : [u'apply', u'be', u'take', u'absolutely', u'come', u'have', u'suspect', u'dwell', u'find'] -MAN WITH : [u'THE'] -me first : [u'I'] -"' Gone : [u'to'] -scandal threatened : [u'to'] -mining. : [u'He'] -round that : [u'breakfast'] -telling how : [u'we'] -us from : [u'amid'] -news that : [u'the'] -, passing : [u'over', u'quite'] -thought as : [u'much'] -thought at : [u'first', u'the'] -yesterday morning : [u'the'] -said earnestly : [u'. "'] -would buy : [u'an'] -, limping : [u'step'] -shoulders and : [u'raised'] -broken only : [u'by'] -nerves failed : [u'me'] -bird of : [u'prey'] -mentioned it : [u'. "'] -sides with : [u'one'] -I expect : [u'that'] -for current : [u'donation'] -new acquaintance : [u'to', u'upon'] -ruthless man : [u'who'] -value of : [u'which'] -connected not : [u'with'] -activity, : [u'however'] -Its disappearance : [u','] -14, : [u'000'] -and grating : [u'wheels'] -flashed through : [u'my'] -DAMAGES EVEN : [u'IF'] -away I : [u'was'] -become of : [u'the', u'Mr', u'him'] -to for : [u'some'] -connection with : [u'it', u'Mr', u'Boscombe', u'the', u'any', u'my', u'his'] -of coming : [u'into'] -fishes. : ['PP'] -The pipe : [u'was'] -fishes' : [u'scales'] -That hurts : [u'my'] -advanced large : [u'sums'] -and associate : [u'him', u','] -, occurred : [u'on'] -faced man : [u','] -to fathom : [u'.'] -have carried : [u'out', u'this'] -upper lip : [u','] -until one : [u'knee'] -or three : [u'times', u'fields', u'bills'] -stumbled slowly : [u'from'] -the minute : [u'knowledge', u'and'] -of black : [u',', u'lace'] -whatever danger : [u'threatened'] -lady died : [u'of'] -back. ' : [u'I'] -have nearly : [u'all'] -up through : [u'the'] -forger. : [u'He'] -and declared : [u'my'] -aged and : [u'new'] -barricade which : [u'Miss'] -ladyship' : [u's'] -instructive in : [u'all'] -Herefordshire. : [u'The'] -bear. : [u'If'] -advice looks : [u'upon'] -Near Lee : [u','] -CASE OF : [u'IDENTITY'] -s clothes : [u'.'] -In one : [u'of'] -went and : [u'saw'] -footmarks might : [u'make'] -roads seem : [u'to'] -the boy : [u'in', u'was'] -the box : [u'and', u'I', u'out', u'of', u'."', u'room'] -I feared : [u'to', u'as', u'lest'] -any risks : [u'I'] -public opinion : [u'can'] -followed and : [u'a'] -based on : [u'the', u'this'] -Ryder threw : [u'himself'] -He hurried : [u'to'] -?" Holmes : [u'twisted', u'was', u'shook'] -s work : [u'.', u'has', u'suit', u',', u'."'] -, east : [u','] -, easy : [u'going'] -pocket Petrarch : [u','] -s medical : [u'adviser'] -lantern with : [u'the'] -is asleep : [u',"'] -but its : [u'volunteers'] -, lay : [u'the'] -taken you : [u'fully'] -ADLER. : ['PP'] -eagerness, : [u'her', u'and'] -tore him : [u'away'] -the tendencies : [u'of'] -round both : [u'hat'] -had reasoned : [u'myself'] -unforeseen manner : [u'.'] -by quite : [u'a'] -clearer. : [u'I'] -mysterious it : [u'proves'] -berth. : ['PP'] -the gloss : [u'with'] -, wrote : [u'her'] -parts which : [u'lie'] -slippery, : [u'so'] -his habit : [u'when'] -perfect reasoning : [u'and'] -neither fascinating : [u'nor'] -All has : [u'turned'] -was easy : [u'to'] -months ago : [u'.', u'."', u'to', u'the'] -was peeling : [u'off'] -family and : [u'an'] -bed in : [u'which', u'another', u'your'] -dressed people : [u','] -was undoubtedly : [u'to', u'some'] -good spirits : [u'?"'] -machine that : [u'the'] -the outset : [u'.'] -be circumspect : [u','] -, " Mr : [u'.'] -, glancing : [u'out', u'at', u'over', u'keenly', u'from', u'up', u'quickly', u'about', u'into'] -of sleepers : [u','] -I feel : [u'a', u'that', u'dissatisfied', u'better', u'sure', u'it'] -beauty would : [u'have'] -street but : [u'the'] -arrived. : [u'I', 'PP', u'Ha'] -flushed with : [u'crying'] -Holmes cases : [u'between'] -washing it : [u'down'] -whose character : [u'has'] -they. : ['PP'] -note of : [u'it', u'the', u'yours'] -clears gradually : [u'away'] -Prendergast how : [u'you'] -my veins : [u'.'] -ran ran : [u'as'] -is Wednesday : [u'.'] -reading it : [u'that'] -soldier. : [u'Others'] -won at : [u'last'] -her lawyer : [u'.'] -of dust : [u'upon'] -Together we : [u'rushed'] -town in : [u','] -blaze. : ['PP'] -salt that : [u'I'] -half mad : [u'to', u'with'] -a gipsy : [u'had'] -very impertinent : [u'!'] -these conclusions : [u'before'] -company has : [u'its'] -had got : [u'when', u'home', u'before'] -geology profound : [u'as'] -a fear : [u'for'] -The culprit : [u'is'] -leaves of : [u'the'] -heap of : [u'shag'] -only looked : [u'in'] -I remember : [u',', u'rightly', u'.', u'right', u'aright', u'that', u'nothing'] -houses. : [u'Finally', u'A', 'PP'] -and prying : [u'its'] -houses, : [u'until', u'and', u'each'] -had solved : [u'my'] -you owe : [u','] -my cane : [u'came'] -may ruin : [u'all'] -supporting himself : [u','] -asked. " : [u'How', u'He'] -must have : [u'a', u'almost', u'been', u'some', u'dropped', u'had', u',', u'belonged', u'an', u'spent', u'something', u'bitterly', u'one', u'started', u'bled', u'done', u'read', u'this', u'rushed'] -MARY. : ['PP'] -suppose that : [u'you', u'I', u'everyone', u'we', u'so', u'your'] -a rule : [u',', u',"', u'in'] -bring you : [u'to', u'there', u'down'] -and water : [u',', u'within'] -to dilate : [u'with'] -no red : [u'headed'] -I implored : [u'the', u'him'] -ulster and : [u'bonnet'] -him. " : [u'Just', u'It', u'Listen'] -Keep your : [u'forgiveness'] -net/ : [u'license'] -expensive habits : [u'.'] -, having : [u'thumped', u'closed', u'lit', u'quite', u'someone', u'regard', u'a', u'served', u'obeyed', u'charming', u'apparently', u'put'] -be fruitless : [u'labour'] -this noise : [u'which'] -shall spend : [u'the'] -for earrings : [u'?"'] -not scorn : [u'her'] -no change : [u'in'] -horror stricken : [u','] -client carried : [u'on'] -collapsed, : [u'although'] -mind, : [u'and', u'would', u'you', u'ever', u'for'] -he the : [u'only'] -mind. : [u'He', u'She', 'PP', u'I', u'What'] -be quite : [u'solid'] -this American : [u'be'] -tax deductible : [u'to'] -asked. : ['PP', u'You', u'I'] -asked, : [u'glancing', u'keenly', u'smiling', u'tapping', u'for', u'facing'] -, " they : [u'are'] -Very likely : [u'not', u'.', u'I'] -an aunt : [u','] -years of : [u'age', u'our', u'waiting'] -ceiling was : [u'coming', u'only'] -were straw : [u','] -then abandoned : [u'his'] -wandering rather : [u'far'] -the bigger : [u'the'] -fiery red : [u'hair', u'.'] -threw on : [u'my'] -has rather : [u'an'] -getting 100 : [u'pounds'] -In San : [u'Francisco'] -furnished us : [u'with'] -excuse to : [u'move'] -and monogram : [u'upon'] -In fact : [u','] -that turned : [u'up'] -very full : [u'and', u'accounts'] -heiress is : [u'not'] -about my : [u'troubles', u'wife', u'feelings', u'future'] -, coarsely : [u'clad'] -enthusiastic musician : [u','] -Did she : [u'know'] -my foot : [u'over'] -years at : [u'a'] -judge from : [u'the'] -represented, : [u'as'] -about me : [u',', u'.'] -might direct : [u'.'] -call her : [u','] -the bumping : [u'of'] -sombre and : [u'deserted'] -I decide : [u'upon'] -tragedy. : [u'Shall', 'PP'] -himself up : [u'in', u'onto'] -the lodger : [u'at'] -than that : [u',', u'which', u'.', u'of', u'it'] -received came : [u'late'] -events leading : [u'from'] -among them : [u'Miss', u'was'] -photograph becomes : [u'a'] -were none : [u'.'] -should he : [u'remain', u'possess'] -already use : [u'to'] -Holmes stooped : [u'to'] -finding them : [u'."'] -mat to : [u'knock'] -a monarch : [u'and'] -with high : [u'autumnal', u'collar'] -so grim : [u'or'] -orgies had : [u'always'] -right out : [u'from', u'of'] -biassed. : [u'If'] -tm' : [u's'] -narratives, : [u'beginnings', u'its'] -exacted from : [u'you'] -The table : [u'was'] -done save : [u'the'] -making of : [u'a'] -implore you : [u'to'] -remaining provisions : [u'.'] -tide. : [u'But'] -Copyright laws : [u'in'] -who loves : [u'art'] -owed to : [u'the'] -edge to : [u'a'] -screamed upon : [u'the'] -' with : [u'the'] -able to : [u'advise', u'.', u'bring', u'guide', u'keep', u'give', u'enter', u'look', u'deny', u'spring', u'understand', u'gather', u'go', u'sell', u'see', u'make', u'accurately', u'utilise', u'ascertain', u'write', u'tell', u'avert', u'strike', u'post', u'find', u'form', u'take'] -Anyhow, : [u'I', u'he'] -in word : [u'or'] -sinewy neck : [u'.'] -writing another : [u'little'] -the pair : [u'might', u'which'] -was throbbing : [u'painfully'] -Then he : [u'stood', u'walked', u'took', u'suddenly', u'followed', u'lit', u'sealed', u'might', u'stepped', u'did', u'broke', u'turned', u'struck', u'closed', u'offered', u'passed', u'became', u'handed', u'tried'] -except Leadenhall : [u'Street'] -the pain : [u". '", u'of'] -convincing, : [u'as'] -the kingdom : [u'of'] -sinister cripple : [u'who'] -Lascar," : [u'said'] -and beside : [u'that'] -first place : [u','] -as themselves : [u','] -colonel received : [u'an'] -no parents : [u'or'] -hardihood to : [u'return'] -He overdid : [u'it'] -upon your : [u'fortunes', u'new', u'work', u'toe', u'case', u'hat', u'compliance', u'judgment', u'son'] -and slipped : [u'behind', u'through'] -bringing. : ['PP'] -eager face : [u'and', u'.'] -the security : [u'is', u'of', u'sufficient'] -petty feeling : [u','] -Merryweather stopped : [u'to'] -and harmony : [u','] -learn, : [u'the', u'Miss'] -situation lies : [u'in'] -down from : [u'the', u'Ballarat', u'between', u'his', u'London'] -, beautifully : [u'situated'] -less so : [u'."', u'than'] -position in : [u'which'] -packed between : [u'layers'] -a lawyer : [u'.'] -reopened his : [u'eyes'] -And he : [u'is', u'said'] -of weedy : [u'grass'] -shouted Mr : [u'.'] -one door : [u'of'] -independent start : [u'in'] -friends in : [u'the'] -computers. : [u'It'] -two rounds : [u'of'] -quickly to : [u'Miss'] -glances. : [u'"', 'PP'] -a waste : [u'of'] -and knock : [u'sleepy'] -earth in : [u'one', u'the'] -will break : [u'her', u'down', u'it'] -, touching : [u'me'] -said Lestrade : [u'as', u'with', u',', u'.'] -step forward : [u'and', u'.', u','] -shouting crowd : [u'I'] -softly together : [u'and'] -see we : [u'have'] -at three : [u'o', u'.'] -"' Surely : [u'it'] -forth en : [u'bloc'] -The salesman : [u'nodded', u'chuckled'] -tomfoolery of : [u'this'] -it rather : [u'disconnected'] -little quick : [u'in'] -police think : [u'of'] -I arrived : [u'.', u'the', u',', u'at'] -expectancy, : [u'there'] -doorway, : [u'and'] -the evidence : [u'.'] -miles or : [u'so'] -mercy!" : [u'The', u'he'] -are trivial : [u','] -was close : [u'upon'] -emigrated to : [u'America'] -source. : [u'He'] -remarked. " : [u'I', u'What', u'Nothing', u'This', u'If', u'His'] -and nothing : [u'happened', u'stranger'] -he followed : [u'a', u'me'] -secrecy over : [u'this'] -, Peterson : [u',', u'!"'] -miles of : [u'town', u'Reading', u'country'] -my interest : [u'every', u'to'] -miles on : [u'the'] -luncheon. : [u'You'] -B' : [u's'] -womanly caress : [u'.'] -lain there : [u'a'] -B. : [u'Newby'] -the wall : [u'.', u'at', u',', u'with'] -equally certain : [u','] -half drew : [u'it'] -banker or : [u'her'] -was important : [u'.'] -seized her : [u'and'] -of paramount : [u'importance'] -her quick : [u'feminine', u','] -really knows : [u'him'] -that business : [u'of', u'myself'] -several warnings : [u'that'] -his relatives : [u'should'] -He sat : [u'at'] -. Irene : [u'Adler'] -only touch : [u'the'] -a mole : [u','] -a copper : [u','] -can quite : [u'understand', u'imagine'] -ran up : [u'stairs', u'and'] -not fear : [u',"'] -grey dust : [u'of'] -got our : [u'stones'] -got out : [u'of', u'there', u'from'] -desire your : [u'name'] -pierce so : [u'complete'] -now desirous : [u'of'] -B division : [u','] -madam, : [u'I', u'that', u'would', u'ladies'] -lameness. : ['PP'] -The bedroom : [u'window'] -a comfortable : [u'sofa', u'looking'] -a gallop : [u'. "'] -to where : [u'they', u'I', u'he'] -. Male : [u'costume'] -beauty during : [u'our'] -the Hampshire : [u'border'] -stake; : [u'and'] -deep an : [u'influence'] -absolutely clear : [u'.'] -the blackest : [u'treachery'] -gales had : [u'set'] -, Frank : [u'and'] -there, : [u'again', u'ready', u'turning', u'although', u'doubtless', u'sitting', u'pushed', u'adding', u'where', u'whoa', u'and', u'an', u'living', u'imbedded', u'having', u'that', u'or'] -destroy all : [u'copies'] -taking a : [u'long', u'step'] -snuff, : [u'that', u'then', u'Doctor'] -capital mistake : [u'to'] -she. : ['PP', u'"'] -transformed when : [u'he'] -she, : [u'a', u'pressing', u'trying', u'with', u'and', u'looking', u'as'] -dark room : [u'up'] -there. : ['PP', u'And', u'A', u'I', u'In', u'Both', u'There', u'You', u'Oh', u'She', u'This', u'But', u'Mr', u'Do'] -passing the : [u'front'] -carried it : [u'off'] -year and : [u'found', u'this', u'more'] -Just tell : [u'us'] -supplied to : [u'the'] -bent knees : [u','] -night after : [u'dinner'] -been wound : [u'up'] -his victim : [u'off'] -for very : [u'much'] -their master : [u'.', u"'"] -which looked : [u'keenly', u'out', u'at', u'from'] -breakfast table : [u',', u'.', u'so', u'and'] -chuckled grimly : [u'. "'] -there' : [u's'] -only wonder : [u'I'] -Foundation The : [u'Project'] -eyes and : [u'looked', u'placed', u'parted', u'forehead', u'staring'] -pictures within : [u'the'] -times, : [u'except', u'he', u'became', u'shook'] -times. : ['PP'] -, believe : [u'it'] -; he : [u'is', u'had'] -to test : [u'a'] -even threatening : [u'her'] -gaped in : [u'the', u'front'] -note to : [u'say'] -and energetic : [u'measures'] -is south : [u','] -Holmes standing : [u','] -have communicated : [u'with'] -knew by : [u'experience'] -there? : [u'The', u'Ah'] -groom and : [u'my'] -cell, : [u'and'] -cell. : [u'The'] -proofread public : [u'domain'] -of orange : [u'hair'] -detracted in : [u'the'] -trademark. : [u'Project', u'It', u'Contact'] -addition, : [u'I'] -clergyman were : [u'just'] -there; : [u'and'] -two very : [u'singular', u'much'] -clergyman beamed : [u'on'] -effects. : [u'He', u'There'] -problem of : [u'the'] -sailor customer : [u'of'] -was informed : [u'by'] -blow must : [u'have'] -."" : [u'Seven', u'Then', u'Quite', u'Frequently', u'How', u'This', u'Peculiar', u'Not', u'I', u'But', u'You', u'Kindly', u'Precisely', u'No', u'Pooh', u'My', u'Stolen', u'Imitated', u'Bought', u'We', u'Oh', u'It', u'Your', u'She', u'Five', u'So', u'To', u'And', u'Pray', u'Absolutely', u'Which', u'Nor', u'Yes', u'That', u'Where', u'Pshaw', u'What', u'He', u'On', u'A', u'Well', u'Ah', u'Very', u'There', u'Grave', u'As', u'Was', u'Why', u'At', u'Hum', u'Third', u'Evidently', u'John', u'Indeed', u'Were', u'Ha', u'Most', u'One', u'Thank', u'Mr', u'They', u'Of', u'Who', u'Certainly', u'The', u'Circumstantial', u'Coming', u'In', u'Could', u'An', u'Really', u'Anyhow', u'Nous', u'All', u'His', u'Holmes', u'Farewell', u'Give', u'None', u'When', u'Nothing', u'Tut', u'Has', u'Do', u'Save', u'From', u'Excellent', u'More', u'Good', u'Texas', u'Proceed', u'Some', u'If', u'Mrs', u'Now', u'Upon', u'Murdered', u'Unless', u'Had', u'Game', u'Is', u'Dirty', u'Would', u'God', u'Did', u'Nay', u'By', u'Fine', u'Warm', u'D', u'Will', u'Or', u'Here', u'Whatever', u'Alas', u'Showing', u'Two', u'Miss', u'Dark', u'Yet', u'Pending', u'Can', u'Subtle', u'With', u'Perhaps', u'Tired', u'Away', u'Undoubtedly', u'Come', u'Whose', u'Tell', u'Terse', u'Before', u'Such', u'Lord', u'Her', u'Have', u'Lady', u'American', u'Still', u'Should', u'Eh', u'Without', u'Are', u'Terrible', u'Deserted', u'For', u'Just', u'Let'] -. About : [u'five', u'1869', u'sunset', u'two', u'this'] -."' : [u'The', u'Thank', u'Come', u'Why', u'Have', u'Never', u'Oh', u'Tell', u'Well', u'This', u'It', u'My', u'Dear', u'In', u'Ten', u'That', u'No', u'Then', u'Pon', u'Do', u'Here', u'Death', u'They', u'I', u'What', u'Some', u'And', u'Whatever', u'Where', u'Gone', u'Mr', u'Yes', u'How', u'Most', u'Perhaps', u'We', u'Very', u'Fritz', u'Oct', u'Next', u'Precisely', u'You', u'Not', u'Look', u'Arthur', u'There', u'At', u'May', u'Hampshire', u'Or', u'Ah', u'If', u'DEAR', u'Jephro', u'Don', u'Photography', u'So'] -all others : [u'I'] -my case : [u'to'] -here at : [u'six'] -a fuss : [u'made'] -sat day : [u'after'] -the dining : [u'room'] -an offer : [u'seemed'] -his methods : [u'would'] -father Joseph : [u'.'] -case would : [u'then'] -Arthur!' : [u'I'] -one little : [u'item'] -And here : [u'he', u'is', u'comes'] -downward in : [u'a'] -, its : [u'silence', u'effect', u'black'] -commission for : [u'you'] -been slept : [u'in'] -little dark : [u'punctures'] -Your hands : [u','] -freely until : [u'I'] -importance which : [u'can'] -Tottenham Court : [u'Road'] -so self : [u'evident'] -for advice : [u'."'] -the socket : [u'along'] -" Never : [u'mind', u'to', u'."', u'better'] -own curiosity : [u'.'] -the importance : [u'of'] -The self : [u'reproach'] -so eagerly : [u'for'] -this rather : [u'fantastic'] -Holmes would : [u'hurry'] -any binary : [u','] -you understand : [u',', u'that', u'by', u'?"', u'.'] -govern what : [u'you'] -skylight above : [u'was'] -man whose : [u'knowledge', u'disgust', u'pleasant', u'character'] -paper which : [u'had', u'you'] -three now : [u'.'] -men whose : [u'hair'] -passage between : [u'the'] -first walk : [u'that'] -never went : [u'wrong'] -to horror : [u'and'] -miserable ways : [u'of'] -tout,' : [u'as'] -an incident : [u'in'] -the finest : [u'that'] -old servants : [u','] -Embankment is : [u'not'] -above was : [u'open'] -the alterations : [u','] -less innocent : [u'aspect'] -AK, : [u'99712'] -possible at : [u'least'] -and ending : [u'in'] -trying to : [u'do', u'utter', u'your', u'tear', u'straighten'] -see this : [u'little', u'other'] -! And : [u'the', u'his'] -," broke : [u'in'] -because my : [u'friend'] -the most : [u'perfect', u'extreme', u'incisive', u'beautiful', u'resolute', u'inextricable', u'preposterous', u'singular', u'difficult', u'complete', u'determined', u'outr', u'important', u'lovely', u',', u'remarkable', u'maddening', u'absolute', u'solemn', u'horrible', u'fleeting', u'select', u'expensive', u'extraordinary', u'precious', u'dangerous', u'genial', u'pleasant', u'excellent', u'probable', u'interesting', u'part', u'amiable', u'profound'] -better. : [u'It', u'The', u'Boone', u'I', u'She', u'Capital'] -heiress to : [u'the'] -the moss : [u',', u'where'] -the bitter : [u'sneer', u'end'] -spare your : [u'Majesty'] -night the : [u'low', u'most'] -breaking out : [u'into'] -whatever he : [u'might'] -a saucer : [u'of'] -gentleman thanking : [u'me'] -old ally : [u','] -a surgeon : [u'."'] -her lover : [u'through'] -my inquiry : [u'.'] -all deserted : [u'.'] -pardon. : ['PP', u'As'] -slight, : [u'and', u'sir'] -all else : [u'would'] -." There : [u'were', u'is', u'was'] -four geese : [u'at'] -common. : ['PP', u'Logic'] -main fault : [u','] -the providing : [u'of'] -son stood : [u'listening'] -quite new : [u','] -coat alone : [u'?"'] -skill, : [u'and'] -as silent : [u'and', u'as'] -the temporary : [u'office'] -so suddenly : [u'that', u'upon', u'."'] -tinge of : [u'colour'] -with writhing : [u'limbs'] -advice in : [u'every'] -of returning : [u'home'] -a day : [u',', u'or', u'for', u'."', u'and', u'by'] -into another : [u'room'] -think they : [u'found', u'were'] -confess, : [u'to', u'I'] -affairs. : [u'I', u'Now', u'A'] -poker into : [u'the'] -just observed : [u'that'] -also discreet : [u'and'] -apartment with : [u'flushed'] -and remanded : [u'for'] -that damage : [u'or'] -of wife : [u'and'] -trouser. : [u'As'] -present. : [u'Your', 'PP', u'I'] -present, : [u'Doctor', u'and', u'then'] -deadly dizziness : [u'and'] -something about : [u"'", u'that'] -is absolutely : [u'puzzled', u'true', u'needed', u'unique', u'all', u'essential'] -ensued which : [u'led'] -stimulant. : ['PP'] -nature such : [u'as'] -able in : [u'four'] -assistant answered : [u'it'] -our love : [u','] -damning case : [u',"'] -well for : [u'his', u'you'] -you get : [u'them'] -He shall : [u'find'] -stopped under : [u'a'] -handkerchief over : [u'his'] -had also : [u'a', u'fled'] -occasion to : [u'unpack'] -has broken : [u'him', u'the'] -, Monday : [u'was'] -, Lucy : [u'Parr'] -send them : [u'the'] -one which : [u'is', u'remains', u'has', u'your', u'it', u'I', u'looked'] -the park : [u'at'] -the part : [u'he', u'which'] -the fall : [u'of', u'in', u';', u'.'] -boy open : [u'his'] -a gas : [u'jet'] -have removed : [u'all'] -is fastened : [u'to', u"?'"] -four days : [u'.', u'to'] -this place : [u'?', u'.'] -thither I : [u'travelled'] -in preventing : [u'his'] -strong for : [u'years'] -and contemplative : [u'mood'] -present strange : [u'and'] -the thought : [u'of'] -of computers : [u'including'] -88 pounds : [u'10s'] -were was : [u'more'] -somewhat the : [u'resemblance'] -the smoke : [u'rocket', u'still'] -Jones. " : [u'He'] -set fire : [u'to'] -of hundreds : [u'of'] -his temples : [u'with'] -arrived here : [u'last'] -deeply marked : [u'and'] -, roasting : [u'at'] -light, : [u'now', u'one', u'for', u'and', u'holding'] -cord and : [u'removed'] -official Project : [u'Gutenberg'] -prison. : ['PP'] -parents. : [u'Don'] -secretive, : [u'and'] -did she : [u'vanish', u'do', u'speak'] -a sardonic : [u'eye'] -you look : [u'?"', u'on'] -not gone : [u'more'] -St. : [u'John', u'Monica', u'Paul', u'James', u'Saviour', u'Pancras', u'Augustine', u'George', u'Clair', u'Simon'] -vainly striving : [u'to'] -right shirt : [u'sleeve'] -the wreck : [u'and'] -strange gentleman : [u','] -the death : [u'of'] -a noise : [u'like'] -throwing back : [u'her'] -lying in : [u'our', u'strange', u'an'] -waiting silently : [u'for'] -the sponge : [u'like'] -that dark : [u'lantern'] -down beside : [u'the', u'him'] -. HUNTER : [u'."'] -Frank and : [u'I'] -tone as : [u'though'] -his blood : [u'was'] -where' : [u's'] -conveyed into : [u'the'] -whole matter : [u'.', u'to'] -both downstairs : [u','] -perfectly true : [u'.'] -whenever he : [u'saw'] -ever your : [u'loving'] -standing upon : [u'the'] -endeavoured to : [u'conceal', u'tie', u'force', u'push', u'sound', u'help'] -and goose : [u'to'] -been spent : [u'in'] -God!" : [u'I', u'he'] -Has a : [u'white'] -trusted your : [u'wife'] -in money : [u'matters'] -fully into : [u'my'] -shall expect : [u'the', u'you'] -Very naturally : [u'.', u'not'] -safe as : [u'if'] -that anyone : [u'could', u'is'] -have accepted : [u'such'] -the stair : [u',', u'I', u'within', u'.'] -arm. : [u'To', 'PP'] -arm, : [u'and'] -denied him : [u'a'] -waiting. : ['PP', u'Frank', u'Then'] -waiting, : [u'I', u'that'] -low over : [u'his'] -is nothing : [u'else', u'very', u'new', u'so', u'which', u'more'] -even of : [u'understanding', u'instruction', u'the'] -he assures : [u'me'] -dear Watson : [u',"', u','] -even on : [u'a', u'such'] -, aided : [u'by'] -gibe and : [u'a'] -a very : [u'serious', u'unexpected', u'different', u'good', u'stout', u'large', u'stay', u'full', u'easy', u'capable', u'shiny', u'massive', u'injured', u'shy', u'excitable', u'interesting', u'bad', u'few', u'tricky', u'violent', u'positive', u'quick', u'hard', u'cocksure', u'considerable', u'obstinate', u'real', u'precise', u'busy', u'short', u'remarkable', u'affectionate', u'careful', u'quiet', u'coarse', u'strong', u'deep', u'great', u'seedy', u'honest', u'ordinary', u'simple', u'pretty', u'amiable', u'old', u'unusual', u'gentle', u'heavy', u'extraordinary', u'small', u'long', u'plain', u'fashionable', u'lovely', u'friendly', u'perturbed', u'grave', u'sweet', u'humble', u'limited', u'strange', u'smiling', u'foolish', u'kind', u'tall', u'brave', u'cunning', u'fat'] -easily done : [u'.'] -black as : [u'a'] -wish you : [u'a', u'would', u',', u'were', u'to', u'all'] -doubtless from : [u'the'] -be trusted : [u'with'] -best and : [u'keenest'] -years he : [u'had', u'continued'] -false teeth : [u'and'] -her direction : [u'and'] -is profoundly : [u'true'] -came to : [u'me', u'an', u'you', u'the', u'settle', u'be', u'live', u'my', u'find', u'Lee', u'Stoke', u'himself', u'I', u'believe', u'think', u'a', u'examine', u'myself', u'look', u'London', u'Mr', u'seek', u'nothing', u"'", u'Baker'] -with rich : [u'brown'] -will observe : [u',', u',"'] -hand, ' : [u'K'] -. seven : [u'in'] -. Anyhow : [u','] -you wanted : [u'to'] -to restore : [u'lost'] -and gentlemanly : [u'he'] -face, " : [u'it'] -laugh. : ['PP'] -Accustomed as : [u'I'] -struck a : [u'light', u'match', u'rich', u'gong'] -of driving : [u'it'] -using very : [u'strong'] -and iron : [u'piping'] -a peaked : [u'cap'] -saw no : [u'one'] -Jose. : ['PP'] -Meredith, : [u'if'] -capture of : [u'mice'] -next Assizes : [u'.'] -thousand will : [u'cover'] -hollow of : [u'my', u'his'] -of agitation : [u','] -" Five : [u'attempts'] -in ready : [u'money'] -use the : [u'carriage', u'disjecta', u'official'] -say nothing : [u'of', u','] -blinds and : [u'the'] -long before : [u',', u'my', u'we'] -fair tonnage : [u'which'] -Beeches my : [u'life'] -busy with : [u'his', u'her'] -down, : [u'talking', u'clapped', u'sometimes', u'I', u'got', u'taking', u'waggled', u'just', u'so', u'but', u'Mr', u'glancing', u'and'] -down. : ['PP', u'"', u'What', u'They', u'I'] -come!' : [u'she'] -corroboration. : [u'I'] -be another : [u'thing'] -How he : [u'did'] -dropped heavily : [u'into'] -office is : [u'located'] -cried with : [u'all'] -passing light : [u'.'] -said at : [u'last'] -overdid it : [u'.'] -said as : [u'she', u'he'] -a forceps : [u'lying'] -while poor : [u'Frank'] -office in : [u'Leadenhall'] -be extremely : [u'obliged'] -so so : [u'.'] -lichen upon : [u'the'] -to maintaining : [u'tax'] -, disregarding : [u'my'] -within, : [u'and'] -Until after : [u'the'] -within. : [u'Then'] -accommodate myself : [u'to'] -over rather : [u'ruefully'] -but there : [u',', u'is', u'are', u'were', u'came', u'all', u'was'] -us warmly : [u'. "'] -were both : [u'in', u'downstairs'] -bright morning : [u'sunshine', u'was'] -observe," : [u'said'] -operation. : ['PP', u'I'] -operation, : [u'and'] -three o : [u"'"] -done more : [u'than'] -he that : [u'his', u'Mr'] -, brilliant : [u','] -spattered with : [u'mud'] -busier still : [u'this'] -grace of : [u'God'] -with intervals : [u'of'] -down one : [u'of'] -never got : [u'tallow'] -some other : [u'building', u'obvious', u'motive', u'place', u'topic'] -library of : [u'electronic'] -will see : [u'what', u'that', u'me'] -in contact : [u'with'] -trust that : [u'we', u'I', u'you', u'our'] -to none : [u','] -else had : [u'ever', u'been'] -skin of : [u'his'] -heartily for : [u'some'] -shining upon : [u'his'] -she were : [u'a', u'ill'] -her plans : [u'so'] -company dropping : [u'in'] -vanish away : [u'and'] -us upon : [u'the'] -by taking : [u'out'] -profession, : [u'and'] -start, : [u'that'] -profession. : ['PP', u'It', u'He', u'This', u'Still'] -This stone : [u'is'] -weak throat : [u','] -Very few : [u'governesses'] -so ill : [u'that', u'natured'] -respectable life : [u'.'] -comical side : [u'of'] -erected against : [u'the'] -so there : [u'was', u'is', u'only'] -old rusty : [u'key'] -remark fell : [u'unheeded'] -gold and : [u'seven'] -surest information : [u'that'] -happy until : [u'you'] -She had : [u'small', u'written', u'hardly', u'the', u'married', u'a', u'gone', u'engaged'] -reputation among : [u'women'] -worse as : [u'Alice'] -thoroughfare. : [u'Holmes'] -maids joined : [u'in'] -the night : [u'must', u'of', u"?'", u'the', u'in', u',', u'is', u'there', u'.', u".'", u'before', u'I', u'he'] -My name : [u",'", u',"', u'is', u','] -building was : [u'of'] -record of : [u'strangers', u'sin'] -nearly filled : [u'a'] -companion answered : [u'in'] -treat myself : [u'to'] -English capital : [u'.'] -were duly : [u'paid'] -lover or : [u'was'] -eventually completed : [u'by'] -sill, : [u'but', u'when'] -only seven : [u'miles'] -formed your : [u'conclusions', u'opinion'] -done my : [u'duty'] -out my : [u'orders', u'revolver', u'commission', u'bunch'] -was cut : [u'up'] -done me : [u'the'] -explanation to : [u'the'] -approach, : [u'for'] -world to : [u'match', u'his'] -pooh! : [u'Forgery'] -Hall. : ['PP'] -low den : [u'in'] -Hall, : [u'is'] -of perfect : [u'equality'] -Merryweather as : [u'we'] -them ashamed : [u'of'] -that while : [u'she'] -missing piece : [u'were'] -" Save : [u','] -easy concealment : [u'about'] -cringing figure : [u'.'] -simple it : [u'would'] -locked. : ['PP', u'I', u'One'] -cheerless, : [u'with'] -the tray : [u'I'] -lamp in : [u'her', u'his'] -shall never : [u'be', u'forget', u'let', u'see'] -weeks represented : [u'the'] -still raised : [u'to'] -zero, : [u'I'] -his breadth : [u'seemed'] -some light : [u'into'] -a question : [u'.', u'of', u'or', u'whether', u','] -wrinkled newspaper : [u'from'] -. James : [u"'", u'Windibank', u'McCarthy', u'never', u'and', u'Ryder'] -placed at : [u'our'] -storm and : [u'rain'] -The reaction : [u'of'] -A diamond : [u','] -grip," : [u'he'] -corner holding : [u'three'] -Lane is : [u'a'] -and firmness : [u'.'] -sink. : [u'He'] -hot coffee : [u','] -having read : [u'De'] -human experience : [u'this'] -conduct of : [u'the'] -without a : [u'witness', u'struggle', u'sign', u'care', u'horrible', u'situation', u'word'] -sink, : [u'and'] -data, : [u'transcription'] -data. : [u'Insensibly', u'The', u'May', u'I'] -expect that : [u'within', u'more'] -it came : [u'from', u'here'] -and said : [u'there', u'that'] -Surrey family : [u'of'] -K three : [u'times'] -to hide : [u'anything', u'the'] -, glisten : [u'with'] -allowed her : [u'to'] -He asked : [u'for'] -Henry Bakers : [u'in'] -indoors most : [u'of'] -much depends : [u'upon'] -advertisement from : [u'you'] -length, : [u'threw'] -as likely : [u'?"'] -door myself : [u'because'] -suggest what : [u'measures'] -7 Pope : [u"'"] -a ring : [u'to', u'.', u'at', u',"', u'."', u'in'] -any Defect : [u'you'] -produce your : [u'confession'] -acting already : [u'in'] -that last : [u'sentence'] -swept off : [u'his'] -claim me : [u'until'] -senior partner : [u'in'] -came into : [u'my', u'mine', u'the'] -a country : [u'walk', u'district', u'hedge'] -neither favourably : [u'nor'] -door I : [u'found', u'seemed'] -RUCASTLE. : ['PP'] -the heels : [u'hardly', u'of'] -be inhabited : [u'at'] -grip loosened : [u','] -door when : [u'I'] -Ryder passed : [u'his'] -man,' : [u'said'] -sidelong glance : [u'.'] -country town : [u'of'] -man," : [u'he', u'said', u'she'] -the cleverness : [u'of'] -never come : [u'back'] -Calcutta, : [u'where'] -your undertaking : [u'."'] -mood which : [u'occasionally'] -little aid : [u'.'] -,' and : [u'a'] -notices. : ['PP'] -really don : [u"'"] -tooth or : [u'a'] -tiniest iota : [u'from'] -matter really : [u'strikes'] -our wants : [u','] -shaking limbs : [u'came'] -They still : [u'live'] -hindrance from : [u'one'] -loafing men : [u'at'] -places. : [u'A', u'The'] -timbered park : [u'stretched'] -and expected : [u'obedience'] -envelope which : [u'he', u'was'] -the reptile : [u"'"] -." I : [u'could', u'did', u'rose', u'took', u'placed', u'smiled', u'had', u'shook', u'walked', u'groaned', u'seated', u'nodded', u'dashed', u'sponged', u'rushed'] -remained, : [u'it'] -remained. : [u'The'] -already remarked : [u'to'] -Its finder : [u'has'] -." A : [u'slow', u'flush', u'quick', u'large', u'small'] -collar turned : [u'up'] -my return : [u'I'] -All my : [u'medical'] -cry brought : [u'back'] -comes our : [u'expedition'] -age of : [u'twenty'] -Ormstein, : [u'hereditary', u'Grand'] -Coventry, : [u'which'] -hands were : [u'tied'] -evolve before : [u'your'] -striking face : [u'attracted'] -side from : [u'which'] -write letters : [u','] -empty wing : [u",'"] -the state : [u'of', u'applicable'] -with sundials : [u'and'] -should come : [u'to', u'late', u','] -travelled. : [u'Twice'] -8s., : [u'breakfast'] -a fifty : [u'guinea'] -lad could : [u'not'] -bless my : [u'soul'] -there longer : [u'without'] -anything without : [u'your'] -serious indeed : [u'!'] -already explained : [u','] -them as : [u'far'] -The tip : [u'had'] -them at : [u'a', u'his'] -her little : [u'bundle', u'problem', u'income', u'son'] -come in : [u',', u'at', u'.', u'by'] -of grass : [u'and'] -Ballarat to : [u'Melbourne'] -came in : [u'and', u'."', u'then', u'by', u'just', u'.', u',', u'he'] -her imprudence : [u'in'] -A series : [u'of'] -give an : [u'air', u'opinion'] -lady who : [u'sleeps', u'had', u'is', u'appeals'] -last, " : [u'that'] -hand warmly : [u'.'] -Abbots and : [u'Archery'] -staring out : [u'at'] -his day : [u'in'] -"' About : [u'the'] -what Hugh : [u'Boone'] -And sit : [u'in'] -fresh part : [u'that'] -shown you : [u'how'] -so easily : [u'acquired'] -horrible to : [u'me'] -, 1869 : [u',"'] -to remember : [u'the', u'that', u'every'] -way a : [u'most'] -suppressing only : [u'the'] -very thin : [u','] -chalk pit : [u'unfenced'] -Americans in : [u'the'] -Behind there : [u'was'] -has guessed : [u'Miss'] -little plans : [u'.'] -a recess : [u'behind'] -to twenty : [u'sheets'] -consulting you : [u'."'] -way I : [u'can', u'didn', u'saw', u'came', u'am'] -not mad : [u'.'] -his grounds : [u'and'] -wears thick : [u'soled'] -that reason : [u'that'] -modified and : [u'printed'] -I married : [u','] -even dimly : [u'imagine'] -might care : [u'to'] -yours aside : [u'for'] -noise came : [u'from'] -, thanks : [u'to'] -comfortable double : [u'bedded'] -treble key : [u'.'] -Monday I : [u'had', u'have'] -any dress : [u'which'] -travelled, : [u'and'] -the terror : [u'which', u'of'] -Julia went : [u'there'] -proved that : [u'he'] -stood on : [u'the'] -sister thinks : [u'that'] -do us : [u'some'] -Division, : [u'on'] -patron had : [u'made'] -now, : [u'Mr', u'Doctor', u'and', u'for', u'in', u'you', u'as', u'with', u'when', u'there', u'but', u'Watson', u'through', u'Miss', u'we', u'thanks', u'Lord', u'so', u'alas', u'is', u'if'] -now. : ['PP', u'It', u'In', u'The', u'Had', u'I', u'He', u'And'] -. Hitherto : [u'his'] -be expostulating : [u'with'] -C. : [u'Well', u'The'] -murder. : [u'There', 'PP'] -soon he : [u'found'] -the hand : [u'which', u',', u'type', u'that'] -my cries : [u'.'] -Frenchman or : [u'Russian'] -he died : [u'it', u'?'] -delirium. : [u'A'] -delirium, : [u'sometimes'] -sheet, : [u'and'] -most beautiful : [u'of'] -planned the : [u'robbery'] -ring upon : [u'the'] -from being : [u'satisfied', u'out', u'some'] -glass still : [u'keeps'] -dashing, : [u'never'] -goose now : [u','] -postpone my : [u'analysis'] -man Horner : [u'is', u','] -Both Miss : [u'Stoner'] -a game : [u'keeper', u'leg'] -John Turner : [u',', u',"'] -papers? : [u'What', u'I'] -half a : [u'crown', u'dozen', u'sovereign', u'column', u'mile'] -by me : [u'for'] -commonplace; : [u'for'] -insisted upon : [u'her', u'my'] -by my : [u'inspection', u'uncle', u'friend', u'ghastly', u'violence', u'description', u'employer'] -is after : [u'nine'] -papers, : [u'and', u'following', u'evidently', u'to', u'since', u'but'] -smiled and : [u'shook'] -papers. : ['PP', u'I', u'It', u'Inspector', u'If'] -shall I : [u'say', u'do', u'ever'] -over. : ['PP', u'Then'] -over, : [u'with', u'for', u'however', u'rearranging', u'and'] -brought the : [u'letter', u'writer', u'gems'] -so obvious : [u'that'] -raise his : [u'hand', u'eyes'] -call purely : [u'nominal'] -2 per : [u'cent'] -inquiries which : [u'must'] -over; : [u'for'] -still keeps : [u'very'] -coming. : ['PP'] -go mad : [u'if'] -grey trousers : [u'.'] -clanking of : [u'the'] -light house : [u'.'] -claim. : [u'We'] -claim, : [u'took'] -bold or : [u'less'] -spot upon : [u'my'] -. ' How : [u'could'] -forehead, " : [u'you'] -proceeded afterwards : [u'to'] -smoke. : [u'She'] -smoke, : [u'and'] -one comes : [u'from'] -but admirably : [u'balanced'] -criminal man : [u','] -he soothingly : [u','] -near my : [u'father'] -credit that : [u'it'] -swung his : [u'glasses'] -and side : [u'whiskered'] -will lay : [u'before'] -complaint against : [u'me'] -Church of : [u'St'] -LIABILITY, : [u'BREACH'] -shoulder; " : [u'he'] -lounging figure : [u'of'] -composed himself : [u',', u'to'] -here began : [u'to'] -inexplicable. : [u'Nothing'] -matter must : [u'be'] -am a : [u'widower', u'very', u'little', u'practical', u'dying', u'light', u'dangerous', u'hydraulic', u'man'] -and concern : [u'.'] -was pitch : [u'dark'] -a groan : [u'as'] -precautions can : [u'guard'] -concept of : [u'a'] -look a : [u'credit'] -it clear : [u'to'] -hoped," : [u'suggested'] -plain wooden : [u'chair'] -Michael S : [u'.'] -of promoting : [u'the', u'free'] -pierced, : [u'so'] -them write : [u'exactly'] -of who : [u'you'] -that somewhere : [u'far'] -, staring : [u'down', u'into', u'out'] -Hunter had : [u'described'] -very handy : [u'.'] -come away : [u'to', u'from'] -be on : [u'the', u'a'] -sound at : [u'heart'] -death was : [u'seven', u'little'] -be of : [u'no', u'the', u'some', u'use', u'any', u'a', u'assistance', u'little', u'value', u'an', u'more'] -ill that : [u'his'] -over fifty : [u'1000'] -on we : [u'should'] -it last : [u'night'] -yourself open : [u'to'] -an ex : [u'Australian'] -casting vote : [u'to'] -labour we : [u'separated'] -fairly strong : [u'of'] -one whom : [u'he'] -found herself : [u'at', u'.'] -dark hair : [u'and'] -a flickering : [u'oil'] -the crocuses : [u'promise'] -him every : [u'particular'] -On examining : [u'it'] -know when : [u'you', u'he', u'I'] -and closed : [u'the'] -the Count : [u'Von'] -widespread rumours : [u'as'] -not contain : [u'a'] -window behind : [u'him'] -was told : [u'me', u','] -our lunch : [u'awaited'] -so pretty : [u'a'] -rather of : [u'the'] -form had : [u'filled'] -to Streatham : [u'since', u'and'] -leads a : [u'sedentary'] -the bags : [u'?'] -sheep in : [u'a'] -whole thing : [u'.', u'was'] -to reward : [u'you', u','] -. Newby : [u''] -gaping fireplace : [u','] -altar faced : [u'round'] -the extreme : [u'darkness', u'limits'] -business already : [u",'", u'.'] -easy when : [u'the'] -sat beside : [u'him'] -a desultory : [u'chat'] -surprise at : [u'the'] -you also : [u'to', u'have'] -truth, : [u'for', u'recoil', u'I', u'the', u'that', u'Mr'] -quite epicurean : [u'little'] -possession of : [u'a', u'the', u'all', u'that'] -H Division : [u','] -man sank : [u'his'] -me good : [u'day'] -indirectly responsible : [u'for'] -described by : [u'the'] -you find : [u'out', u'you', u'a', u'it', u'them'] -Jones, : [u'the', u'of', u'it'] -Jones. : ['PP'] -a slice : [u'of'] -gin shop : [u','] -it soon : [u','] -, putting : [u'a'] -He beckoned : [u'to'] -were submitted : [u'to'] -little off : [u'the'] -concerts, : [u'drives'] -its bill : [u'open'] -associated in : [u'my', u'any'] -continually gaining : [u'light'] -the wintry : [u'sun'] -been hanged : [u'on'] -saddles at : [u'the'] -took two : [u'swift', u'steps'] -with others : [u'.'] -lead the : [u'way'] -brushed the : [u'cross'] -doubt upon : [u'all', u'that'] -essential absolute : [u'secrecy'] -any connection : [u'."'] -waited upon : [u'the'] -another instant : [u'he', u'.'] -frightened. : [u'All', u'Send'] -eye up : [u'and'] -theories. : [u'Good'] -of ruby : [u'red'] -the brass : [u'box'] -how quickly : [u'the'] -several people : [u'on', u'in', u'and'] -reported there : [u'during'] -small railed : [u'in'] -glance over : [u'my'] -*** Produced : [u'by'] -apology," : [u'he'] -care in : [u'the'] -I never : [u'felt', u'!"', u'hope', u'dared', u'hear', u'have', u'went', u'will', u'know', u'heard', u'noticed', u'saw', u'doubted'] -yesterday," : [u'said'] -girl said : [u'."'] -my confidant : [u','] -instant entered : [u'her'] -wind was : [u'howling'] -interim. : ['PP'] -our homeward : [u'journey'] -trained reasoner : [u'to'] -S." : [u'carved'] -hint to : [u'you'] -friend will : [u'not'] -the enemy : [u"'"] -eventually received : [u'came'] -got when : [u'we'] -clear from : [u'what'] -concisely to : [u'you'] -be dry : [u'presently'] -were really : [u'odd', u'accidents'] -all three : [u'standing', u'read', u'away'] -serious one : [u'to'] -run swiftly : [u','] -e mail : [u')'] -silly talk : [u'I'] -was clear : [u'enough', u'to', u'.'] -for access : [u'to'] -frequently for : [u'half'] -family ruin : [u'was'] -gesture of : [u'desperation', u'a', u'despair'] -was sealed : [u'.'] -fly out : [u'of'] -confusion): : [u'I'] -how long : [u'had', u','] -streamed the : [u'light'] -wrongfully accused : [u'of'] -family was : [u'at'] -much interested : [u'and'] -Louisiana, : [u'the'] -lie? : [u'His'] -and glided : [u'from'] -herself was : [u'most'] -take?" : [u'I'] -settled his : [u'bill'] -lateness caused : [u'me'] -appeared upon : [u'the'] -hat actually : [u'brushed'] -eat it : [u'."', u'!"'] -the curious : [u'voice', u'conditions'] -scattered. : [u'Colonel'] -myself plain : [u'?"'] -," announced : [u'our'] -safer to : [u'wait'] -it gives : [u'.'] -as no : [u'doubt', u'one'] -detective was : [u'attired'] -his attention : [u'to', u'instantly'] -day after : [u'day', u'the', u'I', u'their'] -the stones : [u'.', u'he'] -consider that : [u'he', u'she', u'a'] -the daily : [u'press'] -follow up : [u'this'] -nine in : [u'the'] -was eventually : [u'recovered', u'completed'] -to one : [u'of', u'thing', u'day', u'side'] -stood before : [u'the'] -evening," : [u'said'] -will talk : [u'about', u'this'] -the only : [u'applicant', u'possible', u'other', u'man', u'son', u'one', u'chance', u'native', u'geese', u'point', u'passenger', u'daughter', u'gainer', u'problem', u'drawback', u'notable', u'thought'] -Lodge to : [u'meet'] -shall certainly : [u'do', u'come', u'be'] -in England : [u',', u'.', u'suggests', u"?'", u'."', u'a', u'are'] -discretion, : [u'whom'] -unless our : [u'doors'] -Cobb, : [u'the'] -eventually married : [u','] -silence all : [u'the'] -must owe : [u'something'] -waiting who : [u'wished'] -when she : [u'travelled', u'sings', u'comes', u'married', u'has', u'reached', u'hears', u'was', u'meets', u'met', u'complained', u'finished', u'heard', u'saw', u'consults'] -himself know : [u'.'] -stars that : [u'we'] -are quite : [u'new', u'recent'] -a pillow : [u'beneath'] -given the : [u'repulsive'] -and filling : [u'my'] -guilty one : [u'."'] -within assuring : [u'them'] -exceedingly dusty : [u','] -this deposit : [u'was'] -managing it : [u','] -shall then : [u'most', u'look'] -fair sum : [u'of'] -that hypothesis : [u'will'] -an exposure : [u'!'] -bars of : [u'his', u'an'] -chest of : [u'drawers'] -poultry supplier : [u'.\'"'] -mean the : [u'little'] -are tired : [u'and'] -. " Shillings : [u'have'] -Tankerville Club : [u'scandal'] -necessarily keep : [u'eBooks'] -of Identity : [u''] -the open : [u'window', u',', u'market', u'skylight'] -Under these : [u'circumstances'] -put his : [u'pipe', u'glass', u'hand', u'two', u'lips'] -loosed the : [u'dog'] -make out : [u',', u'nothing'] -aside her : [u'constraint'] -elastic was : [u'missing'] -room could : [u'not'] -face flushed : [u'and'] -it returned : [u'to'] -bowing. " : [u'Pray'] -no communication : [u'between'] -second wedding : [u'."'] -the shadow : [u'of', u'upon'] -We did : [u'at'] -he suddenly : [u'sprang', u'rolled'] -And what : [u'does', u'of', u'then', u'are', u'did', u'else', u'do', u'conclusions', u'salary'] -pay him : [u'but'] -continued, : [u'glancing', u'flushing', u'seeing', u'disregarding', u'buttoning'] -closed like : [u'a'] -any manner : [u'indicated'] -away behind : [u'a'] -And your : [u'address', u'mother', u'father'] -, Jack : [u",'"] -lids. : [u'Then'] -for six : [u'o', u'or', u'weeks'] -lids, : [u'and'] -one upon : [u'the'] -effect a : [u'rescue'] -a weaver : [u'by'] -millions of : [u'red'] -still gesticulating : [u','] -smarter assistant : [u','] -elderly gentleman : [u'with'] -not notice : [u'the'] -straight enough : [u'.'] -his worst : [u'.'] -these cases : [u',', u'but', u'which'] -been galvanised : [u'.'] -little talk : [u'with'] -were likely : [u'to'] -No except : [u'that'] -his conviction : [u'of'] -might very : [u'well'] -shouted, " : [u'to'] -Perhaps, : [u'Mr', u'Mrs'] -Perhaps. : ['PP'] -shouted, ' : [u'first'] -soul. : [u'At', u'This', u'Besides'] -soul, : [u'remained'] -a disputatious : [u'rather'] -might fly : [u'from'] -sum due : [u'to'] -perturbed at : [u'the'] -soul! : [u'here'] -, viewing : [u','] -clothes in : [u'his'] -he became : [u'a', u'the'] -to fainting : [u'.'] -Lestrade and : [u'I'] -and crawled : [u'swiftly'] -his hard : [u','] -little German : [u','] -could wink : [u"!'"] -headed, : [u'and'] -office during : [u'that'] -" 10th : [u'.'] -a minister : [u'in'] -Indian cigars : [u',', u'which'] -summarise. : [u'I'] -by mortal : [u'eye'] -lock and : [u'bar'] -counts for : [u'a'] -a coroner : [u"'"] -solemnly to : [u'both'] -look up : [u'at', u'the'] -additional terms : [u'imposed'] -knees upon : [u'the'] -in rubbing : [u'down'] -of absolute : [u'ignorance'] -else, : [u'I'] -" Small : [u','] -else. : ['PP', u'There', u'But', u'He'] -incident in : [u'my'] -body oscillated : [u'backward'] -slam his : [u'door'] -shall most : [u'certainly'] -her name : [u'.'] -ever again : [u'be'] -credit to : [u'be', u'the'] -A ventilator : [u'is'] -She passed : [u'down'] -else? : [u'She'] -married my : [u'mother', u'boy'] -all sure : [u'by'] -not for : [u'talk', u'me', u'the'] -into Berkshire : [u'in'] -of Irene : [u'Adler'] -quite against : [u'my'] -of Ballarat : [u'."', u'was'] -this written : [u'above'] -, buried : [u'among', u'in'] -Ross; ' : [u'neither'] -have formed : [u'some', u'your'] -pearl grey : [u'trousers'] -With an : [u'apology'] -moustache and : [u'a'] -forced open : [u','] -clothes were : [u'found', u'all', u'there'] -ledger upon : [u'the'] -punishment more : [u'.'] -by a : [u'sharp', u'better', u'woman', u'bright', u'man', u'protestation', u'heavy', u'long', u'left', u'very', u'warning', u'steep', u'similar', u'Dane', u'horrible', u'person', u'bet', u'loud', u'gambler', u'correspondent', u'strong', u'frantic', u'park', u'process', u'mere', u'user'] -by e : [u'mail'] -others that : [u'occur'] -Stoner. : [u'You'] -Stoner, : [u'and', u'the', u'of', u'we', u'laying'] -What steps : [u'will'] -assistant is : [u'not'] -by U : [u'.'] -I carefully : [u'examined'] -in fold : [u'upon'] -post me : [u'up'] -naturally annoyed : [u'at'] -here which : [u'need'] -and retired : [u'to'] -pulled his : [u'chair'] -! this : [u'may', u','] -settled upon : [u'the'] -January, ' : [u'85'] -China and : [u'is'] -upstairs instantly : [u'with'] -near Horsham : [u'.'] -just while : [u'I'] -toe and : [u'light'] -any effort : [u'of'] -join in : [u'it'] -bears upon : [u'the', u'my'] -"' We : [u'have', u'are'] -by wearing : [u'it'] -Club scandal : [u'."'] -bite. : [u'I'] -registers and : [u'files'] -paper. " : [u'The'] -laws in : [u'most'] -Some three : [u'hours'] -trained myself : [u'to'] -garment was : [u'a'] -the care : [u'of'] -the card : [u'upon', u'case'] -crawl down : [u'the'] -could easily : [u'do', u'get', u'give'] -own writing : [u'!"'] -bearing, : [u'therefore'] -." What : [u'a'] -thief!' : [u'I'] -a four : [u'wheeler'] -form an : [u'opinion'] -chair beside : [u'him'] -An accident : [u','] -negroes, : [u'and'] -too delicate : [u'for'] -pounds for : [u'the', u'every'] -Large sitting : [u'room'] -cream, : [u'are'] -cream. : [u'These', u'This'] -like her : [u','] -a surpliced : [u'clergyman'] -vanished as : [u'suddenly'] -unknown gentleman : [u'who'] -originator of : [u'the'] -glancing into : [u'the'] -vacancy was : [u'filled'] -makes a : [u'considerable'] -the betrothal : [u'was'] -fed for : [u'two'] -did my : [u'best'] -, ever : [u'again'] -may stop : [u'his'] -after it : [u'was'] -taken down : [u'the'] -Lady Alicia : [u'Whittington'] -really odd : [u'ones'] -men waiting : [u'for'] -night chemical : [u'researches'] -back with : [u'his'] -easy until : [u'I'] -drawing. : ['PP'] -their eccentricity : [u'.'] -, crowded : [u'in'] -She little : [u'knew'] -shadow of : [u'a', u'the'] -. Come : [u'!', u'along', u'in', u'on', u'this', u'at'] -lit his : [u'pipe'] -broad one : [u'and'] -abusive expressions : [u'towards'] -, modification : [u','] -swish of : [u'the'] -you coming : [u'downstairs'] -street was : [u'an'] -a single : [u'flaming', u'branch', u'lady', u'room', u'fact', u'bone', u'bright', u'half', u'sleepy', u'article', u'child'] -better in : [u'every'] -found upon : [u'the'] -to devote : [u'the'] -, otherwise : [u'neatly'] -eyes bent : [u'upon'] -are seventeen : [u'steps'] -groan as : [u'she'] -a technical : [u'character'] -me abruptly : [u'into', u';'] -laying out : [u'money'] -stands upon : [u'the'] -my grandfather : [u'had'] -Friday evening : [u','] -their sailing : [u'ship'] -only gainer : [u'by'] -round shape : [u','] -of breath : [u','] -impulse, : [u'and'] -view, : [u'but', u'for', u'talking', u'be', u'however'] -view. : [u'But'] -inquiries. : [u'I', 'PP'] -shall seek : [u'it'] -putty, : [u'and'] -putty. : ['PP'] -your having : [u'gone', u'it'] -use you : [u'could'] -smashed the : [u'shop'] -with being : [u'concerned'] -strong nature : [u'when', u','] -on neither : [u'collar'] -nearest, : [u'to'] -sleep easy : [u'at'] -he comes : [u',', u'.', u'back'] -and chin : [u','] -and inconsequential : [u'narrative'] -format other : [u'than'] -medium on : [u'which'] -A moment : [u'later'] -and drew : [u'from'] -own police : [u'.'] -very possible : [u'that'] -REPLACEMENT OR : [u'REFUND'] -very possibly : [u'in'] -half the : [u'doctors', u'night'] -is very : [u'bad', u'fortunate', u'serious', u'clear', u'suggestive', u'possible', u'much', u'probable', u'ill', u'unlike', u'ingenious', u'well', u'interesting', u'essential', u'kind', u'awkward', u'natural', u'rich', u'expressive', u'good', u'anxious', u'obvious', u'easy'] -Revenue Service : [u'.'] -gipsies, : [u'and'] -and forty : [u'hours'] -Service. : [u'The'] -as so : [u'many', u'serious'] -been for : [u'him', u'my', u'better'] -a loss : [u'to'] -our' : [u'Co'] -back or : [u'a'] -I approached : [u'the', u'.'] -back on : [u'the', u'its'] -grew the : [u'poorer'] -locality appeared : [u'to'] -back of : [u'that', u'one', u'Tottenham', u'me'] -break down : [u'."'] -as before : [u'myself'] -either a : [u'lover'] -up," : [u'said'] -During all : [u'the'] -woven round : [u'him'] -therefore, : [u'to', u'I', u'hardly', u'and', u'that', u'though'] -am about : [u'to'] -swelled up : [u'louder'] -morning until : [u'four'] -yes. : [u'Save', u'It', u'I'] -yes, : [u'sir', u'mother', u'Mr', u'I', u'of', u'easily', u'you', u'with'] -other fashion : [u'."'] -plied my : [u'trade'] -at midnight : [u'of', u','] -the hydraulic : [u'press', u'engineer'] -chin sunk : [u'upon'] -moody silence : [u','] -yes! : [u'Retired', u'In', u'he'] -speech of : [u'his'] -fine theories : [u'.'] -yes; : [u'I', u'plenty'] -a feather : [u'of'] -were lounging : [u'up'] -of visiting : [u'the'] -gigantic column : [u'of'] -s cry : [u'of'] -s principal : [u'office'] -he perched : [u'himself'] -day a : [u'gold', u'stream'] -state of : [u'things', u'reaction', u'excitement', u'agitation', u'nervous', u'affairs', u'insensibility', u'change', u'Mississippi'] -round him : [u'.', u'and', u'when'] -had on : [u'hand', u'neither'] -round his : [u'house', u'head'] -a regular : [u'prison'] -obtain permission : [u'for', u'in'] -garden behind : [u'into'] -day I : [u'was'] -asking your : [u'advice'] -thumb had : [u'been'] -Holmes dryly : [u'.'] -policy in : [u'extending'] -probably return : [u'to'] -my man : [u','] -but none : [u'the', u'of', u'which', u'ever', u'commonplace'] -cough--" : [u'had'] -their maintenance : [u'.'] -know no : [u'one'] -return by : [u'the'] -why should : [u'I', u'you', u'she', u'he', u'not', u'your'] -there came : [u'a', u'to', u'doubtless'] -still puffing : [u'at', u','] -that it : [u'means', u'is', u'was', u'seemed', u'would', u'may', u'has', u'disappeared', u'should', u'had', u'helps', u'twinkled', u'flew', u'formed', u'must', u'might', u'will', u'did', u'won'] -in chief : [u'over'] -enter Dr : [u'.'] -an exhilarating : [u'nip'] -but Hosmer : [u'was'] -a weapon : [u'which', u'like'] -an income : [u'of'] -that if : [u'the', u'there', u'I', u'they', u'we', u'both', u'it', u'anyone', u'she'] -the jury : [u';', u',', u'had', u'stated'] -must open : [u'the'] -rough one : [u','] -that in : [u'every', u'less', u'your', u'such', u'his', u'which', u'this', u'a', u'these'] -carriage drove : [u'away'] -letter with : [u'a'] -him up : [u'for'] -the engagement : [u'when'] -a crown : [u'a', u'.'] -some there : [u'."'] -was safe : [u'in', u',', u'with'] -play a : [u'deep', u'considerable'] -But pray : [u'tell'] -further evidence : [u','] -pockets, : [u'he', u'began', u'and'] -submit the : [u'whole'] -the railings : [u'which'] -evidence showed : [u'that'] -now?" : [u'I', u'He', u'cried'] -some difficulties : [u'.'] -Head attendant : [u'at'] -soon saw : [u'I'] -was founded : [u'by'] -upon business : [u'.'] -only his : [u'trousers'] -upon us : [u'like', u'."'] -into an : [u'armchair', u'insinuating', u'envelope', u'agency', u'empty'] -some ex : [u'Confederate'] -struck savagely : [u'at'] -indicate some : [u'evil'] -A greater : [u'distance'] -boat. : [u'Sherlock'] -see how : [u'you', u'strongly', u'quickly', u'they', u'it', u'all', u'the', u'he'] -" Fancy : [u'his'] -country surgeon : [u'and'] -A horrible : [u'doubt'] -plain tale : [u'.'] -, opening : [u'the'] -such body : [u'.'] -very heads : [u'of'] -other question : [u',"'] -the wrist : [u'and', u','] -the baying : [u'of'] -facts most : [u'directly'] -a brother : [u'or'] -gentlemen are : [u'flying', u'badly'] -a coat : [u'of', u'to', u'alone', u'which'] -first how : [u'I'] -Simon to : [u'honour', u'me'] -sweetheart? : [u'I'] -fluttered off : [u'among'] -our expedition : [u'.', u'of'] -spent. : ['PP'] -, tearing : [u'sound'] -taken opium : [u'?"'] -question whether : [u'Mr', u'I', u'justice'] -large number : [u'of', u'merely'] -country hotel : [u'abomination'] -glare flashing : [u'into'] -a benefactor : [u'of'] -His defence : [u'was'] -hanging from : [u'your'] -was late : [u'before', u'in'] -we approached : [u',', u'it'] -The road : [u'in', u'topped', u'is'] -or even : [u'of', u'two'] -have baffled : [u'his', u'all'] -recovered his : [u'consciousness', u'senses'] -powerful and : [u'well'] -nurse girl : [u','] -of brace : [u'of'] -is hung : [u','] -from London : [u'when', u'."', u',', u'to', u'in'] -a Mr : [u'.'] -, pale : [u',', u'faced'] -having had : [u'an'] -, " he : [u'has'] -would venture : [u'to'] -fainting in : [u'the'] -deadly black : [u'shadow'] -his neck : [u'.'] -yellow backed : [u'novel'] -to resist : [u'.'] -voice, : [u'which', u'and', u'their', u'changing'] -voice. : ['PP', u'I'] -decide upon : [u'our'] -been said : [u'during'] -been nearer : [u'twelve'] -a bridge : [u'for'] -those criminals : [u'were'] -D. : [u'D', u'The'] -theories," : [u'cried'] -pallor of : [u'her'] -Wait in : [u'patience'] -missing stones : [u'.'] -, were : [u'abhorrent', u'sufficient', u'the', u'twins', u'printed', u'within', u'from', u'bloodless', u'all'] -uttering very : [u'abusive'] -, ready : [u'handed', u'to'] -found ourselves : [u'in', u'as', u'at'] -of us : [u',', u';', u'and', u'he', u'.', u'who', u'with', u'in', u'through', u'could', u'had', u'care'] -have reason : [u'to'] -billycock but : [u'as'] -again be : [u'happy'] -observed to : [u'be'] -which might : [u'throw', u'be', u'have', u'help', u'seem', u'suit'] -, right : [u'in', u'out'] -having thumped : [u'vigorously'] -inquest. : [u'In', u'The'] -inquest, : [u'and'] -followed them : [u'from', u'up'] -OR BREACH : [u'OF'] -who lounged : [u'round'] -marks and : [u'have'] -wherever Sir : [u'George'] -whole party : [u'proceeded'] -in hand : [u','] -Amoy River : [u'in'] -which hung : [u'down'] -are sent : [u'over'] -from McCarthy : [u'junior'] -shoving him : [u'back'] -that Francis : [u'H'] -." Lord : [u'St'] -of proof : [u'with'] -Has only : [u'one'] -ceased to : [u'enter', u'love', u'strike', u'be'] -miles off : [u'.', u'by'] -attention of : [u'whoever', u'the'] -company?" : [u'he'] -taller by : [u'his'] -showed, : [u'made'] -voraciously, : [u'washing'] -: Did : [u'your', u'you'] -For seven : [u'hours'] -which drove : [u'him'] -the farms : [u'which'] -The family : [u'was', u'of'] -out while : [u'I'] -troopers and : [u'six'] -of gipsies : [u'who'] -drove for : [u'four', u'at'] -seared into : [u'my'] -puzzling, : [u'just'] -How our : [u'hydraulic'] -bonny thing : [u',"'] -until his : [u'new', u'eyes'] -hit upon : [u'the', u'some'] -make in : [u'the'] -Street rooms : [u',', u'to'] -We live : [u'very'] -shall walk : [u'down', u'out'] -make it : [u'clear', u'self', u'all', u'a', u'clearer', u'out'] -"' Dearest : [u'do'] -see any : [u'connection', u'of'] -found matters : [u'as'] -a rat : [u'in', u'.', u',', u'could'] -study his : [u'system'] -your time : [u','] -of stepping : [u'in'] -it left : [u'behind'] -thinking that : [u'I'] -every particular : [u'."', u'that'] -his cheeks : [u',', u'was'] -a damning : [u'series'] -Kill it : [u'and'] -some going : [u'up'] -A sandwich : [u'and'] -come cheap : [u'."'] -without looking : [u'."'] -again this : [u'afternoon'] -the better : [u'classes'] -constant state : [u'of'] -bills were : [u'all'] -never will : [u'be', u'again'] -morning visitor : [u'. "'] -was howling : [u'outside'] -love and : [u'am', u'gratitude'] -It makes : [u'a', u'you'] -came doubtless : [u'from'] -minutes to : [u'twelve', u'the', u'accompany'] -excellent argument : [u'with'] -characteristic defects : [u'.'] -trade, : [u'and'] -frightened by : [u'their'] -this put : [u'in'] -with news : [u'as'] -evidence of : [u'this'] -holder found : [u'at'] -I at : [u'last', u'the', u'his', u'once'] -is entirely : [u'a'] -I often : [u'take'] -I as : [u'I', u'we'] -and wallowed : [u'all'] -and letters : [u'who'] -as large : [u'as'] -inn and : [u'drove'] -news this : [u'morning'] -be chaffed : [u'by'] -, displaying : [u'or', u','] -crown a : [u'packet'] -exposed to : [u'such'] -far out : [u'in'] -crest and : [u'monogram'] -at one : [u'door', u'time', u'side', u'end', u'of'] -you went : [u'for', u'out'] -watched this : [u'Lascar'] -much knowledge : [u'of'] -boy brought : [u'round'] -a flight : [u'of'] -simplest means : [u'first'] -most expensive : [u'hotels'] -printed slip : [u'to'] -step. : ['PP'] -abutted on : [u'the', u'our'] -this be : [u"?'"] -pleasant fashion : [u'until'] -to establish : [u'himself'] -ourselves who : [u'are'] -steady, : [u'well'] -OF WARRANTY : [u'OR'] -intrusions into : [u'his'] -hands before : [u'his', u'I'] -cocaine injections : [u','] -the custody : [u'of'] -and peering : [u'eyes', u'through', u'at'] -American millionaire : [u','] -. Some : [u'letters', u',', u'of', u'little', u'scaffolding', u'woman', u'states'] -so simple : [u'as', u'a', u'and'] -your case : [u',"', u'for', u'considerably', u'unfinished', u'."', u'as', u','] -go right : [u'on'] -sketch out : [u'at'] -Problems may : [u'be'] -"' May : [u'I'] -now inhabited : [u'.'] -for example : [u',', u'?"', u'.'] -and ruthless : [u'man'] -of nervous : [u'tension'] -, what : [u'do', u'a', u'is', u'interest', u'could', u'did', u'absolutely', u'does', u'on', u'o', u'happened', u'clue', u"'", u'for', u'shall', u'I', u'was', u'occurred', u'use'] -get back : [u'the', u'.'] -course of : [u'events', u'a', u'keeping', u'the', u'action', u'lectures'] -Mississippi and : [u'granted'] -lie back : [u','] -door he : [u'brought'] -in Northumberland : [u'Avenue'] -secret society : [u'was'] -keen witted : [u','] -found. : ['PP'] -bars, : [u'which'] -hurried by : [u'.'] -among employers : [u'in'] -a coster : [u"'"] -. Despite : [u'these'] -incidents of : [u'the', u'which'] -s ear : [u'.'] -the widest : [u'variety', u'array'] -t wait : [u'up'] -much to : [u'say', u'do', u'the', u'pack'] -some very : [u'strong', u'bulky'] -was carrying : [u'was'] -breakfast, : [u'and'] -An important : [u'addition'] -Hunter; " : [u'the'] -The year : [u"'"] -as merry : [u'and'] -the water : [u'was', u'.', u'police', u'jug', u','] -no additional : [u'cost'] -." Dr : [u'.'] -and shirt : [u'."'] -lid from : [u'it'] -the white : [u'cheeks', u'wrist', u'cloth', u'creases'] -once went : [u'very'] -marm. : ['PP'] -glance at : [u'our', u'each', u'my'] -humming a : [u'tune'] -convulsion seized : [u'her'] -talking to : [u'Lord'] -anyone of : [u'our', u'my'] -arrows, : [u'has'] -living with : [u'my'] -fireplace. " : [u'I'] -chamber for : [u'an'] -without some : [u'little', u'advice'] -nucleus and : [u'focus'] -heavily into : [u'it', u'the'] -and rocked : [u'himself'] -boomed out : [u'every'] -boots! : [u'They'] -garden has : [u'already'] -to marry : [u'them', u'my', u'anyone', u'him'] -made sure : [u'that'] -mortgage. : [u'The'] -patent leather : [u'shoes'] -case there : [u'is', u'are'] -Now he : [u'looks'] -you wish : [u'?"', u'it', u'to', u'--"', u'me'] -dark lantern : [u'."', u'.', u'with'] -me these : [u'twenty'] -so unfortunately : [u'lost'] -marriage had : [u'drifted'] -looking out : [u'of', u','] -that fuller : [u"'"] -stands thus : [u'.'] -room in : [u'uncontrollable', u'which', u'his'] -degree and : [u'went'] -and shouted : [u'through'] -the Allegro : [u',', u'.'] -and thank : [u'our'] -questioning an : [u'eye'] -were past : [u'Reading'] -sat staring : [u'with'] -inflamed face : [u'and'] -the wagons : [u'on'] -even Holmes : [u"'"] -waves. : [u'My'] -the weird : [u'business'] -take the : [u'first', u'matter', u'knee', u'senders', u'flies', u'basket', u'place'] -days at : [u'Bristol'] -conversation soon : [u'flagged'] -services to : [u'one'] -acquaintance, : [u'and'] -young, : [u'and', u'he', u'some', u'not'] -acquaintance. : ['PP'] -accident during : [u'the'] -to meet : [u'her', u'him', u'at', u'it', u',"', u'us', u'you', u'an', u'and'] -blow has : [u'always'] -cloth and : [u'glimmer'] -absence. : ['PP'] -the crime : [u'the', u'."', u'.', u'that', u'and'] -looks like : [u'one', u'it'] -bag. : [u'Come', 'PP'] -have thought : [u'a', u'there', u'that', u'was', u'sometimes'] -bag, : [u'and'] -only my : [u'carriage', u'honour'] -acid upon : [u'his'] -bore every : [u'mark'] -simple case : [u';'] -the horse : [u'with', u"'", u'.', u'on', u'could', u'was'] -of Briony : [u'Lodge'] -every morning : [u'in', u',', u'emerge'] -own age : [u'.', u'and'] -But a : [u'very', u'cripple', u'human', u'terrible'] -a dress : [u'indoors'] -was keeping : [u','] -other building : [u'.'] -the bulky : [u'Jones'] -the usual : [u'symptom', u'country', u'routine', u'round'] -ideas of : [u'whistles'] -die for : [u'.'] -afternoon." : [u'She'] -him no : [u'harm'] -cry to : [u'which'] -was formerly : [u'a'] -gossip. : [u'Good'] -Moulton, : [u'you', u'for', u'an'] -stood one : [u'morning'] -But I : [u'am', u'hear', u'want', u'must', u'see', u'would', u'take', u',', u"'", u'understand', u'think', u'shall', u'presume', u'have', u'don', u'saw', u'cannot'] -lip had : [u'fallen'] -he tried : [u'to', u'the'] -home from : [u'an'] -may absolutely : [u'depend'] -great sympathy : [u'for'] -Wedding. : ['PP'] -seek the : [u'company'] -night," : [u'said'] -county coroner : [u'asked'] -within earshot : [u'.'] -deeply moved : [u'.'] -fit was : [u'on'] -made!" : [u'He'] -little breakfast : [u'with'] -gate. : [u'This', u'Mr'] -found, : [u'as', u'and', u'she', u'rather', u'which', u'nor'] -she refers : [u'in'] -other up : [u'to'] -other clients : [u'the'] -barricaded door : [u'corresponded'] -of chestnut : [u'.'] -were planning : [u','] -your bedroom : [u'the'] -vague theories : [u',"'] -the variety : [u'which'] -ruined coronet : [u'was'] -! Both : [u'could'] -quest upon : [u'which'] -answer for : [u'your'] -, caught : [u'the', u'up'] -slipped the : [u'note'] -. From : [u'time', u'the', u'all', u'north', u'what', u'my', u'under', u'that', u'amid', u'outside', u'their'] -spent so : [u'short'] -fat manager : [u'and'] -conclusive. : ['PP'] -provide a : [u'copy', u'full', u'replacement', u'secure'] -more piquant : [u'details'] -lips to : [u'reply', u'my', u'tell'] -gipsy had : [u'done'] -sovereigns for : [u'my'] -and start : [u'for'] -his vows : [u'to'] -for he : [u'sprang', u'is', u'was', u'said', u'had', u'soon', u'appears', u'has', u'may', u'raised', u'loves', u'explained'] -. Inspector : [u'Barton', u'Bradstreet'] -thrill of : [u'terror'] -shot out : [u'of', u'in'] -our Continental : [u'Gazetteer'] -, plainly : [u'furnished'] -offered a : [u'field', u'reward'] -, incisive : [u'reasoning'] -of lime : [u'cream'] -of limb : [u','] -associate, : [u'Dr'] -of every : [u'vessel', u'man', u'portion'] -the tongs : [u'and'] -his supposed : [u'suicide'] -country roads : [u'seem'] -damp was : [u'breaking'] -you please : [u',', u'."'] -we crossed : [u'over'] -by putting : [u'it'] -" Well : [u',', u'."', u'?"', u'then', u',"'] -such times : [u'I'] -reports, : [u'performances'] -was sixteen : [u'I'] -and drive : [u'to'] -let me : [u'congratulate', u'know', u'just', u'preach', u'expound', u'live', u'do', u'out', u'have', u'say'] -staff. : ['PP'] -looking a : [u'little'] -those letters : [u'back', u'come', u'?"'] -a brooch : [u'which'] -light and : [u'being', u'looked', u'attacked', u'the'] -destroyed by : [u'Colonel'] -while I : [u'eat', u'still', u'fix', u'am', u'watched', u'at', u'conduct', u'sat', u'continue', u'satisfy', u'take'] -Absolutely. : ['PP'] -suggested Holmes : [u', "'] -His knees : [u'were'] -examination showed : [u'that'] -Her father : [u'is'] -before his : [u'crackling', u'rival', u'mother'] -before him : [u'that', u'. "', u'."'] -ever met : [u'.'] -," a : [u'"'] -disliked the : [u'intrusion'] -shows, : [u'my'] -one locked : [u'.'] -than this : [u'morning', u'."'] -life do : [u'not'] -cause is : [u'excellent'] -sign of : [u'it', u'his', u'a', u'any', u'him', u'cuff', u'the'] -while a : [u'number', u'woman'] -no signs : [u'of'] -to someone : [u'in'] -came home : [u'in', u'and', u'from'] -very unlike : [u'his'] -the old : [u'town', u'and', u'trick', u'Persian', u'country', u'days', u'man', u'papers', u'hat', u'ancestral', u'family', u'park', u'room', u'English', u'editions'] -appeared before : [u'the'] -got fairly : [u'to'] -," I : [u'remarked', u'said', u'answered', u'observed', u'exclaimed', u'ejaculated', u'read', u'asked', u'cried'] -COPPER. : ['PP'] -of sodden : [u'grass'] -sleepers from : [u'their'] -That the : [u'writer', u'man'] -tobacco. : [u'Having', u'Those', u'And'] -went up : [u'to'] -tobacco, : [u'and'] -his calves : [u','] -. " It : [u'is', u'has', u'it', u'makes', u'may', u'was', u"'", u'appeared', u'gave', u'would'] -sorry for : [u'having'] -just be : [u'in'] -linked to : [u'the'] -not give : [u'.', u'in'] -white, : [u'almost', u'while', u'with'] -, blazing : [u','] -. " If : [u'you', u'ever', u'the', u'his', u'I'] -expense over : [u'this'] -this lonely : [u'woman'] -the injury : [u'as'] -did some : [u'shopping'] -where she : [u'can', u'found', u'fattened', u'sat', u'is'] -complete truth : [u'.'] -parted blinds : [u'gazing'] -the volume : [u', "'] -we provide : [u'this'] -she whispered : [u", '"] -and freemasonry : [u'among'] -the Crown : [u'Inn', u'."'] -hospitality of : [u'their'] -the lady : [u'on', u',', u';', u'and', u"'", u'loves', u'had', u'she', u'herself', u'as', u'to', u'is', u'.', u'."', u'who', u'could', u'. "', u'lived'] -gaol. : ['PP'] -eddy between : [u'the'] -princess. : [u'Now'] -a cloud : [u'in', u'of'] -inherit Plantagenet : [u'blood'] -upon either : [u'side'] -painfully, : [u'and'] -reliance upon : [u'your'] -news has : [u'consoled'] -was recalled : [u'to'] -in for : [u'felony'] -thing than : [u'fog'] -barred tailed : [u'ones'] -clearing James : [u'McCarthy'] -thing that : [u'put'] -walked both : [u'ways'] -This case : [u','] -every vessel : [u'which'] -shows quite : [u'remarkable'] -is covered : [u'at'] -Lee," : [u'said'] -cart to : [u'the'] -to propound : [u'one'] -the devil : [u",'", u"'", u'together', u'!"'] -Let' : [u's'] -a pencil : [u'and'] -Most people : [u'start'] -are often : [u'created'] -immense strength : [u','] -as pale : [u'as'] -little brain : [u'attic'] -detective indifferent : [u'and'] -a widespread : [u','] -bitter night : [u','] -dog who : [u'is'] -enter through : [u'the'] -drawing the : [u'veil'] -with you : [u'alone', u'."', u',', u'?"', u'that', u'presently', u'to', u'.', u'in', u".'", u'as', u'but'] -of old : [u'.', u'gold', u'trunks', u'country'] -indications, : [u'but'] -was invariably : [u'locked'] -have openly : [u'confessed'] -November 29 : [u','] -finished, : [u'however'] -did manual : [u'labour'] -McCarthy laid : [u'his'] -is accessed : [u','] -the conversation : [u'soon'] -iodoform, : [u'with'] -the Southern : [u'states'] -revolver into : [u'your'] -exit could : [u'be'] -a barred : [u'door', u'tail'] -a mere : [u'vulgar', u'pittance', u'detail', u'whim', u'oversight'] -the thumb : [u',', u'should'] -went away : [u'."'] -Sherlock Holmes : [u',', u'she', u"'", u'."', u'by', u'staggered', u'.', u'were', u',"', u'and', u'stopped', u', "', u'was', u'had', u'as', u'welcomed', u'impatient', u'sat', u'clapped', u'alone', u'!"', u'returned', u'took', u'.\'"', u'cases', u'. "', u'closed', u'seemed', u'sprang', u'upon', u'laughed', u'glanced', u'looked', u'hailed', u'standing', u'ran', u'pulled', u'leaned', u'left', u'stepped', u'pushed', u'rather'] -lead me : [u'down'] -really, : [u'it', u'I', u'when'] -deceased wife : [u',"'] -of joy : [u'our', u'was'] -dry presently : [u'.'] -God knows : [u'I'] -weaver by : [u'his'] -it rose : [u'.'] -vile, : [u'stupefying'] -the investigation : [u'which', u'into'] -individuality as : [u'a'] -keen desire : [u'to'] -fellow." : [u'Striding'] -the signs : [u'of'] -all off : [u'colour'] -. Head : [u'attendant'] -more clearly : [u'what'] -much of : [u'what', u'Rucastle'] -charge at : [u'that'] -cut and : [u'the'] -your filthy : [u'hands'] -cynical speech : [u'and'] -stale and : [u'unprofitable'] -dowry. : ['PP', u'Not'] -your cry : [u'of'] -half turned : [u','] -my coat : [u',', u'sleeve'] -fall the : [u'guardsmen'] -of foolscap : [u'paper'] -they worth : [u"?'"] -Some ten : [u'or'] -to solve : [u'so', u'is', u'this'] -OF MERCHANTIBILITY : [u'OR'] -foresaw some : [u'danger'] -five hundred : [u'pounds', u'to'] -advertisement in : [u'all'] -stagger, : [u'and'] -never heard : [u'of'] -new role : [u'I'] -I sold : [u'my'] -cinder with : [u'the'] -for and : [u'were'] -at another : [u'formidable'] -entirely while : [u'we'] -crowd for : [u'your'] -start that : [u'the'] -not mistaken : [u',', u'.'] -contained that : [u'which'] -rummaged and : [u'read'] -to force : [u'her', u'the'] -the inspector : [u'of', u'has', u'was', u'realise', u'remained', u'. "', u'had', u'.', u', "', u'with', u',', u'and'] -this Hosmer : [u'Angel'] -step brisk : [u','] -done the : [u'thing', u'same'] -a theory : [u',', u'tenable'] -a painful : [u'and'] -and became : [u'a'] -of tea : [u'. "', u'.'] -of ten : [u'miles'] -cut his : [u'head'] -when he : [u'became', u'speaks', u'refers', u'ought', u'died', u'was', u'might', u'suddenly', u'comes', u'parted', u'would', u'saw', u'made', u'had', u'enters', u'shook', u'wrote', u'returns', u'hears', u'returned', u'entered', u'felt', u'came'] -as good : [u'as', u'a'] -cut the : [u'cord'] -which corresponds : [u'to'] -and stepped : [u'himself'] -scenes and : [u'under'] -dashing up : [u'Wellington'] -words came : [u'to'] -being discovered : [u'.'] -or remove : [u'the'] -their work : [u'the', u'.'] -arguments, : [u'metallic'] -choked and : [u'laughed'] -its bearings : [u','] -confessed to : [u'having'] -false alarm : [u'.', u','] -a dark : [u'silhouette', u',', u'lantern', u'figure'] -been quite : [u'willing', u'drunk'] -mad or : [u'dreaming'] -place without : [u'a'] -the current : [u'of'] -some villainy : [u'here'] -tossing aside : [u'the'] -his reason : [u'for', u'.'] -Arthur with : [u'the'] -" Did : [u'he', u'you', u'your'] -dreadful sentinel : [u'sent'] -the Strand : [u'."'] -drug created : [u'dreams'] -first volume : [u'of'] -unconscious, : [u'and'] -certainty that : [u'something', u'it'] -thirty now : [u'."'] -and Architecture : [u'and'] -knife. : ['PP'] -threw any : [u'light'] -fitted to : [u'perfection'] -was walking : [u'alone', u',', u'down', u'in'] -London hotels : [u'."'] -line asking : [u'me'] -hand that : [u'lay'] -chair he : [u'watched'] -end wall : [u',', u'."'] -whether, : [u'in'] -hurried from : [u'the', u'there'] -I visited : [u'in'] -the surgeon : [u"'", u'at'] -opened from : [u'below'] -sobbed like : [u'a'] -inconvenience you : [u'.'] -. ' Mr : [u'.'] -hang from : [u'it', u'a'] -awakened me : [u'.'] -forgo his : [u'Bohemian'] -I always : [u'was'] -slowly and : [u'heavily'] -to rise : [u'within'] -start with : [u'a'] -brains to : [u'find', u'crime'] -old books : [u','] -case behind : [u'which'] -Godfrey Norton : [u',', u'was', u'came'] -freed during : [u'the'] -occipital bone : [u'had'] -trivial, : [u'and', u'I'] -. While : [u'she'] -disappearance of : [u'Openshaw', u'Mr', u'the', u'these'] -problem we : [u'have'] -soothing sound : [u','] -blind as : [u'a'] -self under : [u'obligations'] -Hayling, : [u'aged'] -deuce that : [u'could'] -back without : [u'wincing'] -head terribly : [u'injured'] -" Really : [u',', u'!'] -very remarkable : [u'narrative', u'inquiry'] -those papers : [u'and'] -DAMAGES- : [u'Except'] -years old : [u'.', u'at'] -the laugh : [u'was'] -4th, : [u'rooms'] -4th. : [u'Hudson'] -, tawny : [u'tinted'] -I raise : [u'my'] -listened with : [u'the', u'a'] -cause him : [u'to'] -Now the : [u'question'] -nothing? : [u'Why'] -fatal night : [u'Dr'] -may give : [u'him', u'an'] -school companion : [u'.'] -then diving : [u'down'] -the cloth : [u'was'] -of steel : [u'.'] -older than : [u'myself', u'me', u'himself', u'Arthur'] -joke for : [u'them'] -nothing, : [u'and', u'but'] -nothing. : [u'Presently', u'You', u'It', 'PP', u'At', u'The'] -seriously wronged : [u'by'] -you intend : [u'to'] -verbatim account : [u'of'] -up against : [u'that'] -to China : [u'.'] -befall it : [u'.'] -interest could : [u'anyone'] -ve been : [u'on'] -lengthy visit : [u'to'] -an elderly : [u'woman'] -a second : [u'thought', u'floor', u'double', u'opportunity'] -t near : [u'as'] -hours, : [u'and', u'three'] -hours. : ['PP', u'This'] -little stimulant : [u'."'] -A flush : [u'stole', u'sprang'] -my mouth : [u'than', u',', u'.'] -enormous beryls : [u",'"] -eat, : [u'for'] -eligible yourself : [u'for'] -sequence of : [u'events'] -had said : [u',', u'that', u'to'] -tresses. : [u'The'] -. 4d : [u'.'] -fantastic business : [u'of'] -a neat : [u'little'] -dreadful hours : [u'might'] -proof of : [u'a', u'the'] -It cuts : [u'into'] -considerable state : [u'of'] -and discovered : [u'the'] -because he : [u'was'] -you found : [u'the', u'so', u'me', u'yourself'] -it intently : [u'.'] -, paying : [u'4'] -my refusal : [u'.'] -"' How : [u'far', u'would'] -: The : [u'Adventures'] -be conspicuous : [u'.'] -, inferred : [u'that'] -very weary : [u'and'] -pair which : [u'he'] -been measured : [u'for'] -so bound : [u'to'] -once when : [u'I'] -father went : [u'from'] -the bleeding : [u'came'] -would enable : [u'us'] -the symptoms : [u'.'] -Holmes drove : [u'in'] -using the : [u'method'] -calling the : [u'attention'] -peep in : [u'at'] -broad shoulders : [u'. "'] -is surely : [u'very'] -commission as : [u'that'] -commenting upon : [u'it'] -good three : [u'pound'] -understood that : [u'I', u'there'] -forecastle of : [u'an'] -cheerful frame : [u'of'] -shade whiter : [u'.'] -right time : [u'.'] -We must : [u'be', u'have', u'sit', u'come'] -Hold up : [u','] -finally secure : [u'the'] -no property : [u'of'] -paced to : [u'and'] -as set : [u'forth'] -short before : [u'you'] -conceal yourselves : [u'behind'] -averse to : [u'its', u'it', u'a', u'the', u'this'] -am afraid : [u'so', u'that', u',"', u',', u'the'] -for words : [u'.'] -border of : [u'the', u'Surrey'] -London, " : [u'it'] -some scruples : [u'as'] -own." : [u'As'] -the threshold : [u'the', u'at'] -Hunter back : [u'to'] -you getting : [u'on'] -thank goodness : [u','] -and butted : [u'until'] -less suggestive : [u'than'] -be dull : [u','] -information," : [u'said'] -goose came : [u'from'] -Turner himself : [u'was'] -certain types : [u'of'] -pick for : [u'40'] -rope or : [u'so'] -their authenticity : [u'?"'] -inhabited at : [u'all'] -being concerned : [u'in'] -white cardboard : [u'about'] -at their : [u'wits', u'last'] -, laying : [u'down', u'my', u'them', u'her'] -simple a : [u'question'] -possession, : [u'a'] -possession. : ['PP', u'If'] -from men : [u"'"] -difficult, : [u'but'] -good stone : [u'is'] -difficult. : ['PP', u'For'] -they stole : [u'.'] -Winchester to : [u'morrow', u'meet'] -,' which : [u'is', u'was'] -upon that : [u'point'] -, drove : [u'to'] -which occasionally : [u'predominated'] -treachery to : [u'Holmes'] -her cheeks : [u','] -marrying his : [u'son'] -E. : [u'8', u'Unless', u'1', u'2', u'7', u'9', u'3', u'4', u'5', u'6'] -define it : [u',"'] -behind me : [u'.', u',', u'clutching'] -to Warsaw : [u','] -remarked the : [u'other', u'driver', u'plain', u'strange'] -E" : [u'with'] -sat on : [u'either'] -this narrow : [u'wing'] -faculties of : [u'deduction'] -but affectionate : [u'and'] -basket chair : [u'.'] -my feelings : [u'.'] -behind my : [u'back'] -small brass : [u'box'] -But really : [u'I'] -sun was : [u'shining'] -repaid by : [u'having'] -the highroad : [u',', u'at'] -must pack : [u'at'] -barred tail : [u'.', u',', u"?'"] -the Copper : [u'Beeches'] -ventilator before : [u'ever'] -business part : [u'of'] -single sheet : [u'upon'] -great yellow : [u'blotches'] -He flicked : [u'the'] -The Five : [u'Orange'] -quick feminine : [u'eye'] -, thrown : [u'out'] -from California : [u'with'] -cut up : [u'as'] -a return : [u'ticket'] -found Briony : [u'Lodge'] -lover, : [u'which'] -usual symptom : [u'is'] -was decoyed : [u'away'] -flying across : [u'a'] -heart which : [u'was', u'I'] -comply either : [u'with'] -heard me : [u'remark'] -in order : [u'to', u'that'] -performed at : [u'St'] -friends to : [u'hush'] -get there : [u'before'] -the terrible : [u'event'] -this table : [u'and', u','] -deeper than : [u'either'] -absorb all : [u'my'] -are critical : [u'to'] -the slide : [u'across'] -the brown : [u'opium'] -tm electronic : [u'works', u'work'] -deal upon : [u'her'] -family. : [u'She', u'We', 'PP'] -family, : [u'and'] -Very, : [u'indeed'] -dwell upon : [u'it'] -Very. : [u'But'] -consternation by : [u'the'] -over you : [u'in'] -loves art : [u'for'] -most part : [u'with'] -safe in : [u'his'] -dangerous men : [u'in'] -are important : [u','] -, followed : [u'by', u'shortly', u'me', u'on'] -instance, : [u'by'] -crib in : [u'Scotland'] -the printed : [u'description'] -without noting : [u'anything'] -that when : [u'she', u'Mr', u'I', u'they', u'Whitney', u'you'] -not personally : [u'threatened'] -You must : [u'leave', u'not', u'find', u'yourself', u'know', u'act', u'get', u'put', u'also', u'assert', u'be', u'have', u'lock', u'confine', u'make', u'speak', u'require'] -little methods : [u','] -electric blue : [u'and', u'dress'] -gang of : [u'roughs'] -. " Remember : [u','] -her ways : [u','] -re entering : [u'her'] -the deep : [u'blue', u'sea', u'mystery', u'chalk', u'tones', u'toe'] -indebted to : [u'you'] -A mole : [u'could'] -printed the : [u'treble'] -, poured : [u'in'] -in entering : [u'the'] -could but : [u'silence', u'recover'] -there should : [u'be'] -confirmed as : [u'Public'] -that quite : [u'settles'] -, ascended : [u'to'] -and original : [u'observer'] -have not : [u'observed', u'much', u'seen', u'been', u'heard', u'had', u'offered', u'yet', u'come', u'.', u'a', u'treated', u',', u'sat', u'received', u'met'] -have now : [u'taken', u'been', u'married', u'fled'] -race," : [u'said'] -, more : [u'than'] -engagement, : [u'which'] -quarters at : [u'Baker'] -who finds : [u'himself'] -is blue : [u'in'] -Von Kramm : [u',', u'."'] -she rose : [u'to', u'hurriedly'] -her injured : [u'wrist'] -s forty : [u'one'] -remarked after : [u'a'] -A mad : [u','] -Therefore it : [u'is'] -it here : [u',', u'with', u'in', u'?"', u'and'] -know some : [u'of'] -A man : [u'entered', u'dying', u'had'] -after eleven : [u'o'] -week in : [u'order'] -span it : [u'across'] -no means : [u'obvious', u'of', u'."', u'relaxed'] -tide receded : [u'.'] -the whishing : [u'sound'] -heading' : [u'Tragedy'] -continually visited : [u'him'] -not join : [u'in'] -prodigiously stout : [u'man'] -, keenly : [u'interested'] -were never : [u'together', u'to'] -" Fine : [u'birds'] -age. : [u'I', u'But', u'One'] -, humming : [u'a'] -age, : [u'clean', u'but', u'an', u'is', u'I', u'which', u'for', u'with'] -computer virus : [u','] -of greater : [u'or'] -knew well : [u','] -doubt a : [u'pity'] -himself was : [u'averse'] -doing living : [u'in'] -might leave : [u'the'] -affairs in : [u'this'] -inflicted upon : [u'myself'] -a smart : [u'little'] -never for : [u'an'] -whispered words : [u'of'] -charge for : [u'the'] -try to : [u'let', u'forget', u'come'] -sympathetic smile : [u','] -used between : [u'Australians'] -brilliantly lit : [u','] -examining it : [u','] -at Walsall : [u','] -last flung : [u'it'] -the wretched : [u'boy'] -he offered : [u'to'] -sometimes he : [u'would'] -the gravel : [u'drive'] -earth one : [u'of'] -the books : [u',', u'upon', u"?'"] -spine, : [u'and'] -NOT BE : [u'LIABLE'] -other one : [u'.', u',', u'from'] -examined with : [u'deep'] -Openshaw' : [u's'] -loomed like : [u'dark'] -these is : [u'correct'] -, hot : [u'blooded'] -, how : [u'do', u'is', u'simple', u'can', u'are', u'did', u'we', u'dangerous', u'terrible', u'could', u'curious', u'to'] -Openshaw. : [u'For', u'He'] -promise me : [u'that'] -Openshaw, : [u'but', u'and'] -a tiny : [u'pilot'] -gentleman walks : [u'into'] -between Sir : [u'George'] -ferocious quarrels : [u'with'] -meddler. : ['PP'] -plaster was : [u'peeling'] -instep where : [u'the'] -quench what : [u'might'] -, south : [u','] -betrothal was : [u'publicly'] -Temple, : [u'and'] -crash of : [u'the'] -woods or : [u'mountains'] -you paid : [u'a', u'the', u'for'] -our red : [u'headed'] -absolved from : [u'the'] -s town : [u'bred'] -to explain : [u'how', u'.', u'the'] -from seven : [u'or'] -well within : [u'the'] -would need : [u'to'] -existence there : [u','] -wants were : [u'few'] -disturbance, : [u'in', u'has'] -disconnected, : [u'I'] -British tradesman : [u','] -a twinkle : [u'in'] -the keyhole : [u','] -call them : [u','] -"' Dear : [u'me'] -eyes made : [u'it'] -Holmes traced : [u'his'] -performing, : [u'displaying', u'distributing', u'copying'] -streets until : [u'we'] -laughed at : [u'what', u'for'] -path than : [u'is'] -And since : [u'you'] -will replace : [u'the'] -formerly a : [u'danseuse'] -a well : [u'lit', u'dressed', u'known'] -in January : [u", '", u'and'] -divined that : [u'I'] -provide access : [u'to'] -generally of : [u'a'] -keeper adds : [u'that'] -who goes : [u'much'] -volley. : [u'Three'] -away at : [u'the'] -! Well : [u','] -volunteer and : [u'Jose'] -is subject : [u'to'] -other lovers : [u'by'] -generally assisting : [u'in'] -sucked away : [u'into'] -late Irene : [u'Adler'] -at your : [u'having'] -her life : [u'and'] -Holmes upon : [u'the'] -gambler, : [u'an'] -the absolute : [u'stillness', u'pallor'] -wealth for : [u'which'] -arteries which : [u'conveyed'] -blasted my : [u'life'] -my private : [u'safe'] -suddenly there : [u'broke'] -is precious : [u','] -edge that : [u'it'] -revealed it : [u'to'] -frighten Kate : [u'poor'] -he couldn : [u"'"] -volunteers with : [u'the'] -thank your : [u'Majesty'] -beautiful hair : [u'cut'] -he remarks : [u','] -devil. : [u'When', 'PP'] -. That : [u'is', u'will', u'sounded', u'trick', u'carries', u',', u'was', u"'", u'bears', u'the', u'he', u'fatal', u'and', u'second', u'brought', u'dreadful'] -was rejoiced : [u'to'] -his handwriting : [u'was'] -getting these : [u'fields'] -learned all : [u'the', u'that'] -of earning : [u'a'] -At nine : [u'o'] -to perfection : [u','] -London do : [u'not'] -three men : [u'waiting'] -logical proof : [u'which'] -every fact : [u'connected'] -Done about : [u'the'] -mottled all : [u'over'] -save some : [u'twisted'] -and life : [u'into'] -otherwise I : [u'shall'] -table stood : [u'a'] -flowing sluggishly : [u'beneath'] -do unless : [u'it'] -lawn and : [u'examined', u'vanished'] -Lascar at : [u'a'] -Above the : [u'woods'] -and foreseen : [u'conclusions'] -another standpoint : [u'."'] -recovered yourself : [u','] -dark inside : [u'the'] -it twinkled : [u'like'] -were trimmed : [u'at'] -wedding clothes : [u'and'] -of Proosia : [u','] -took, : [u'that'] -neighbouring fields : [u'.'] -your uncle : [u'of', u',', u'last'] -be crowded : [u','] -in a : [u'false', u'sensitive', u'nature', u'dark', u'dreadful', u'German', u'lane', u'great', u'knot', u'good', u'few', u'quiet', u'corner', u'general', u'recess', u'double', u'very', u'single', u'broad', u'coquettish', u'nervous', u'day', u'week', u'hansom', u'vulgar', u'hurry', u'trap', u'petty', u'telegram', u'cab', u'yellow', u'perplexing', u'visitor', u'gaol', u'word', u'cage', u'sort', u'pen', u'little', u'verdict', u'civilised', u'note', u'gale', u'series', u'steamer', u'chair', u'strange', u'pitiable', u'twitter', u'high', u'short', u'coat', u'basket', u'dream', u'peaked', u'perpetual', u'twist', u'facility', u'purple', u'Scotch', u'slow', u'hopeless', u'cloudless', u'quavering', u'cosy', u'crackling', u'considerable', u'low', u'dog', u'month', u'railway', u'cushion', u'voice', u'gentle', u'long', u'suit', u'hearty', u'carriage', u'cold', u'foreign', u'tone', u'gruff', u'moment', u'dead', u'way', u'blaze', u'late', u'speedy', u'mining', u'less', u'different', u'stately', u'pea', u'listless', u'lady', u'paper', u'friendly', u'sweeping', u'pew', u'sombre', u'successful', u'young', u'woman', u'disputatious', u'boiling', u'nutshell', u'grey', u'row', u'jesting', u'line', u'constant', u'format', u'physical', u'number'] -intense emotion : [u'during'] -gentleman seated : [u'by'] -headache, : [u'when'] -! he : [u'!', u'is'] -Witness( : [u'with'] -simple as : [u'copying'] -himself with : [u'any'] -must know : [u'that', u',"'] -stop dead : [u','] -not himself : [u'know'] -determine. : [u'As'] -occurred during : [u'the'] -wine cellar : [u'."'] -my right : [u',', u'hand'] -hall when : [u'we'] -an idea : [u'more', u'of', u'who', u'that', u'came'] -you everything : [u'which', u','] -be any : [u'competition', u'very', u'missing'] -principal things : [u'which'] -chair a : [u'little'] -was peculiar : [u'to'] -work with : [u'which', u'the'] -this really : [u'takes'] -basketful of : [u'linen'] -cousin walking : [u'very'] -In another : [u'instant'] -lies before : [u'us'] -and was : [u'hot', u'shown', u'using', u'hauling', u'standing', u'left', u'even', u'able', u'screening', u'lying', u'advised', u'speeding', u'struck', u'gazing', u'stamped', u'dressing', u'making', u'carried', u'ready', u'scraping', u'hanging', u'busy', u'not', u'down', u'in', u'endeavouring', u'introduced', u'looking', u'conscious'] -tickets when : [u'he'] -last witness : [u'.'] -even for : [u'a'] -outstanding, : [u'drooping'] -force her : [u'way'] -but without : [u'noting', u'finding', u'success', u'result'] -drop his : [u'bird'] -all a : [u'very'] -a meaning : [u'to'] -McCarthy was : [u'walking', u'very', u'in', u'the', u'acquitted'] -key. : ['PP'] -their salary : [u'beforehand'] -Witness: : [u'He', u'It', u'I', u'Nothing'] -one and : [u'opened', u'was', u'two', u'one'] -would send : [u'it', u'him', u'you'] -cannot see : [u'that', u'how'] -all I : [u'have', u'hear', u'care', u'say', u'knew', u'had'] -terms from : [u'this'] -southern suburb : [u','] -circle. : [u'But', u'He'] -Londoners, : [u'and'] -his sides : [u'.'] -masonry. " : [u'Hum'] -the gum : [u','] -sat Dr : [u'.'] -remarks were : [u'suddenly'] -The rapidity : [u'with'] -an excessive : [u'sum'] -his monogram : [u','] -the dregs : [u'of'] -your health : [u','] -long list : [u'at'] -when there : [u',', u'were', u'is', u'was'] -just possible : [u'that', u','] -a vile : [u'alley'] -stones at : [u'1000'] -utterly had : [u'he'] -also fled : [u'at'] -his will : [u'.'] -some comic : [u','] -am the : [u'King', u'last'] -My wife : [u'was', u'is'] -letter across : [u'to'] -this license : [u',', u'and'] -work and : [u'not', u'you', u'the'] -Bohemia and : [u'of'] -had three : [u'consultations'] -never said : [u'a'] -brow he : [u'had'] -book that : [u'Francis'] -to conceive : [u'.', u'the'] -she began : [u','] -man who : [u'first', u'wrote', u'had', u'was', u'is', u'gets', u'has', u'might', u'entered', u'deserved', u'really', u'can', u'sat', u'goes', u'abandons', u'leads', u'will', u'takes', u'wishes', u'loves'] -it glints : [u'and'] -is Mr : [u'.'] -lives, : [u'though'] -note taking : [u'and'] -visitor detailed : [u'to'] -sudden buzzing : [u'in'] -follow? : [u'It'] -sharp enough : [u'to'] -My sole : [u'duties'] -unclaspings of : [u'his'] -cab to : [u'carry', u'wait'] -clock when : [u'we', u'Sherlock'] -identity. : ['PP'] -nez at : [u'either'] -write exactly : [u'alike'] -his pocket : [u'and', u'. "', u'.', u',', u'he'] -remarks very : [u'carefully'] -the space : [u'of'] -purpose that : [u'could'] -such force : [u'that'] -the dual : [u'nature'] -from danger : [u'when'] -accomplished; : [u'and'] -be raising : [u'money'] -not solicit : [u'donations', u'contributions'] -That McCarthy : [u'senior'] -left parietal : [u'bone'] -s own : [u'account'] -that matter : [u','] -. Bankers : [u"'"] -had shot : [u'him'] -absorbing. : ['PP'] -knee rested : [u'upon'] -snoring on : [u'the'] -may but : [u'confirm'] -whitewashed building : [u'in'] -what measures : [u'I'] -took us : [u'to'] -an anteroom : [u','] -when our : [u'turn', u'visitor', u'visitors'] -you note : [u'the'] -when out : [u'from'] -said ten : [u'miles'] -assistant, ' : [u'and'] -vigorously upon : [u'the'] -one of : [u'his', u'the', u'them', u'whom', u'those', u'my', u'these', u'Clark', u'absolute', u'your'] -determine by : [u'a'] -that press : [u'.'] -walking clothes : [u','] -virtue. : [u'He'] -, distribute : [u'or'] -their isolation : [u'and'] -them in : [u'the', u'their', u'a'] -right enough : [u'."'] -one or : [u'two'] -You infer : [u'that'] -of times : [u'."'] -he threw : [u'himself', u'them'] -and reaction : [u'of'] -own deathbeds : [u','] -Toller serenely : [u'.'] -formidable gate : [u'.'] -change her : [u'mind', u'plans'] -silent for : [u'a', u'some'] -prove it : [u',"'] -. Vincent : [u'Spaulding'] -pile, : [u'while', u'too'] -I been : [u'here', u'recognised', u'sterner'] -a lawn : [u'of'] -bag with : [u'him'] -work suit : [u'you'] -than the : [u'whole', u'official', u'time', u'other', u'words', u'Assizes', u'opium', u'conclusion', u'truth', u'interest', u'sequence', u'result', u'banker'] -hearing was : [u'so'] -deposit was : [u'a'] -Carolinas, : [u'Georgia'] -deep thought : [u'. "', u','] -my post : [u'by'] -someone from : [u'America'] -help overhearing : [u'the'] -morocco case : [u'which'] -stone in : [u'my'] -what indirect : [u'or'] -returned from : [u'Bristol', u'his', u'the'] -parish clock : [u','] -entered his : [u'room'] -whom. : ['PP'] -love him : [u'."'] -larger ones : [u'upon'] -stone is : [u'.', u'not'] -the culprit : [u'.'] -hope. : [u'I'] -hope, : [u'and', u'be'] -said to : [u'be', u'her', u'have'] -and swore : [u'that'] -any friends : [u','] -from Westhouse : [u'&'] -little matters : [u'like'] -here again : [u'I', u'before'] -be charged : [u'with'] -working a : [u'claim'] -effect were : [u'to'] -masses of : [u'nickel'] -Round his : [u'brow'] -Spaulding said : [u','] -, money : [u','] -original" : [u'Plain'] -and umbrella : [u',"'] -need smoking : [u','] -you admitted : [u'him'] -this system : [u'of'] -briskly into : [u'the'] -comfortably and : [u'tell'] -right path : [u'as', u'it'] -she shrieked : [u'and'] -baggy grey : [u'shepherd'] -trail in : [u'this'] -Stoner turned : [u'white'] -loathed every : [u'form'] -Hunter, : [u'if', u'for', u'that', u'my'] -Hunter. : [u'I', 'PP', u'Do'] -straight into : [u'the'] -reasons may : [u'be'] -preposterous practical : [u'joke'] -are looking : [u'for'] -Hunter' : [u's'] -spoils of : [u'victory'] -the law : [u'?"', u'now', u';', u'should', u'.', u'cannot', u'would', u'of'] -due order : [u'."'] -less keen : [u'as'] -the lad : [u'says', u',', u'who', u'slipped', u'could'] -s right : [u'!'] -seconds of : [u'her', u'being'] -said. " : [u'Of', u'They', u'If', u'The', u'Theories', u'I', u'Do'] -policeman within : [u'hail'] -come at : [u'a', u'once', u'all', u'the', u'some'] -Rucastle was : [u'perfectly'] -they are : [u',', u'waiting', u'very', u'quite', u'attained', u'.', u'a', u'set'] -the hidden : [u'wickedness'] -its relation : [u'to'] -he live : [u','] -son was : [u'following', u'kneeling', u'away'] -gaze, : [u'and'] -long had : [u'he'] -, precise : [u'but'] -Valley Mystery : [u''] -he made : [u'her', u'his', u'quite', u'one', u'friends', u'no', u'neither', u'the'] -two questions : [u','] -, struck : [u'a'] -point about : [u'the'] -large a : [u'sum', u'brain'] -where did : [u'they', u'you'] -silence I : [u'heard'] -plans very : [u'seriously'] -in 1846 : [u".'"] -, Georgia : [u',', u'."'] -McCarthy threatened : [u'.'] -to accommodate : [u'myself'] -what moment : [u'the'] -trade mark : [u'upon'] -bullet which : [u'I'] -calls less : [u'than'] -, telling : [u'her'] -pistol clinked : [u'upon'] -makes me : [u'anxious', u'shiver', u'uneasy'] -Near Waterloo : [u'Bridge'] -erred perhaps : [u'in'] -VIOLET HUNTER : [u'."'] -loss to : [u'know'] -of reference : [u'beside'] -to glancing : [u'a'] -payment which : [u'was'] -as shortly : [u'announced', u'and'] -yourself to : [u'your', u'the'] -other since : [u'we'] -! Square : [u','] -: about : [u'four'] -chair and : [u'paced', u'gave', u'was', u'picked', u'let', u'stared', u'examined', u'shaking', u'my', u'laughed', u'passed', u',', u'turned'] -tried and : [u'failed'] -brave fellow : [u',"'] -offers to : [u'donate'] -cellar, " : [u'I'] -confirmation of : [u'compliance'] -coat sleeve : [u'was'] -and were : [u'worn', u'frequently', u'mostly', u'not', u'beginning', u'shown', u'about', u'waiting', u'ordered', u'so'] -Someone has : [u'loosed'] -said old : [u'Turner'] -engaged after : [u'the'] -protruded from : [u'his'] -is typewritten : [u'.'] -into two : [u'hard'] -or PGLAF : [u'),'] -send down : [u'to'] -house before : [u'this'] -pocket. : ['PP', u'There', u'I', u'An', u'In'] -has then : [u'been'] -, Irene : [u'Adler'] -the circle : [u'of', u'. "'] -where strangers : [u'could'] -could lay : [u'my'] -church but : [u'not'] -were several : [u'people', u'little'] -A stable : [u'boy'] -doubts and : [u'fears'] -as impulsively : [u'as'] -he?" : [u'said', u'He'] -we travelled : [u'back'] -body of : [u'his', u'Lady'] -line, " : [u'I'] -wounded thumb : [u'.'] -this horror : [u'still'] -the cushioned : [u'seat'] -what right : [u'had'] -red. : [u'Now', u'Her', u'In'] -has occurred : [u'to', u'in'] -yourself for : [u'one'] -., cocktail : [u'1s'] -my wearisome : [u'journey'] -and Germans : [u'.'] -handling of : [u'large'] -piece from : [u'the'] -examination. : ['PP'] -on of : [u'your'] -the Hall : [u',', u'."'] -await him : [u'when'] -sacrifice and : [u'that'] -a cloudless : [u'sky'] -were asked : [u'to'] -married the : [u'daughter'] -There I : [u'parted'] -there jumped : [u'five'] -So now : [u'we', u'!"'] -a powerful : [u'and'] -some play : [u'.'] -escaped from : [u'the'] -I wished : [u'to'] -she might : [u'be', u'think', u'escape', u'have'] -about 60 : [u'pounds'] -air was : [u'full'] -to decide : [u'.'] -was able : [u'to', u',', u'with'] -then leaving : [u'me'] -I grew : [u'richer', u'more'] -luck with : [u'my'] -than before : [u'.'] -may help : [u'us', u'to'] -damning series : [u'of'] -. Sit : [u'down'] -. Just : [u'a', u'two', u'hold', u'ring', u'as', u'read', u'before', u'beyond'] -! Oh : [u','] -sister asked : [u'me', u'for'] -magnifying lens : [u',', u'. "'] -carriage and : [u'read', u'into'] -law cannot : [u',', u'accomplish'] -other, : [u'while', u'they', u'and', u'Frank', u'pausing', u'as', u'noting', u'so'] -A thousand : [u'pounds', u'things'] -other. : [u'My', u'I', 'PP', u'Anyhow', u'You', u'In'] -any inconvenience : [u'that'] -children," : [u'groaned'] -Was your : [u'sister'] -simple that : [u'I'] -improvisations and : [u'his'] -covered her : [u'bride'] -laws. : ['PP'] -matter away : [u'with'] -bulldog and : [u'as'] -my heart : [u',', u'.', u'began', u'into', u'that', u'which'] -us for : [u'help'] -to Bristol : [u'for'] -deletions to : [u'any'] -payments and : [u'credit'] -is terror : [u'."'] -is involved : [u'by'] -single branch : [u'office'] -senior met : [u'his'] -dressing gown : [u',', u'.'] -alone can : [u'attain'] -waistcoat a : [u'crumpled'] -Mary. : [u'They'] -anything so : [u'fine', u'simple', u'outr'] -gaol bird : [u'for'] -souvenir from : [u'the'] -Mary, : [u'who', u'has', u'it'] -grey carpet : [u','] -opened my : [u'door'] -profession I : [u'am'] -permitted by : [u'the', u'U'] -extreme anxiety : [u'lest'] -so thither : [u'I'] -has cruelly : [u'wronged'] -large bath : [u'sponge'] -writing without : [u'further'] -trustees are : [u'at'] -, pink : [u'tinted'] -at Mr : [u'.'] -, Helen : [u",'"] -practical man : [u',"'] -the pillow : [u'.'] -official page : [u'at'] -will open : [u'.'] -deadly urgency : [u'of'] -so many : [u'of', u'as', u'in', u'reasons', u'which', u'more', u'pistol'] -the evenings : [u'transform'] -the baboon : [u'."'] -had cut : [u'the', u'within', u'his'] -sum to : [u'a'] -more painful : [u'than'] -sleeps in : [u'the'] -more strange : [u','] -very busy : [u'day'] -cab in : [u'the'] -at arm : [u"'"] -appears from : [u'an'] -would fain : [u'have'] -he bowed : [u'solemnly', u'and'] -Mary? : [u'Impossible'] -of herself : [u'."'] -other that : [u'she'] -high white : [u'forehead'] -third of : [u'the', u'which'] -your eyes : [u",'", u'open'] -other than : [u'Sherlock', u'the', u'well', u'"'] -begin with : [u','] -City first : [u','] -third on : [u'the'] -Flora was : [u'a'] -then much : [u'surprised'] -its way : [u'to', u'.', u'in'] -can put : [u'away'] -defective or : [u'damaged'] -If an : [u'individual'] -pushing his : [u'way'] -of laughter : [u'.'] -all we : [u'can'] -glitter of : [u'moisture'] -to Winchester : [u'to', u','] -am surprised : [u'that'] -amazing powers : [u'in'] -creaking of : [u'an'] -your curiosity : [u'.'] -get what : [u'we'] -and picked : [u'up'] -"' Put : [u'the'] -is impossible : [u'for', u'to', u',"'] -Bridge Road : [u'we'] -man save : [u'his'] -Great Lord : [u'of'] -proficient in : [u'his'] -and to : [u'know', u'follow', u'think', u'wait', u'attend', u'get', u'preserve', u'begin', u'grown', u'come', u'have', u'ask', u'carry', u'recognise', u'retire', u'punish', u'make', u'the', u'having', u'sleep', u'let', u'show', u'consult', u'be', u'point', u'Lord', u'refrain', u'squander', u'add', u'her', u'change'] -will look : [u'upon'] -" Frankly : [u','] -Saxon families : [u'in'] -been called : [u'upon', u'away'] -bloodstains. : [u'He'] -water, : [u'and', u'for'] -water. : [u'The', 'PP'] -ghost at : [u'first'] -culprit is : [u'--"'] -discoloured. : [u'There'] -he held : [u'up', u'in', u',', u'1000'] -through Swandam : [u'Lane'] -had noticed : [u'during'] -s wax : [u'which'] -calling loudly : [u'for'] -nor my : [u'gravity'] -her seat : [u'as'] -drew the : [u'dog', u'drawer'] -exposed himself : [u'to'] -hesitation. : [u'Your'] -line. : [u'You'] -line, : [u'and', u'the'] -are obviously : [u'of'] -Holmes calmly : [u'. "'] -habits looking : [u'at'] -a beautiful : [u'moonlight'] -highest importance : [u','] -smoke and : [u'shouting'] -seem most : [u'fortunate'] -do their : [u'own', u'work'] -his grey : [u'eyes'] -better proceed : [u'to'] -bone, : [u'so'] -employ, : [u'James'] -ask a : [u'little'] -!' said : [u'Vincent', u'he', u'Mr'] -presented as : [u'great'] -rest is : [u'of', u'familiar'] -She told : [u'me', u'him'] -company for : [u'his', u'the'] -column of : [u'print', u'The', u'smoke', u'the'] -husband and : [u'to'] -some future : [u'date'] -one rather : [u'intricate'] -out, : [u'which', u'I', u'the', u'but', u'death', u'his', u'when', u'and', u'to', u'doubled', u'as', u'calling', u'it', u'put', u'for', u'was', u'in'] -seven sharp : [u'for'] -way downstairs : [u'as'] -dinner. : [u'Seldom', 'PP'] -dinner, : [u'I'] -three missing : [u'.', u'stones'] -somewhere far : [u'out'] -wrack was : [u'drifting'] -branch office : [u','] -son to : [u'Turner', u'marry'] -strange contrast : [u'between'] -had sat : [u'up', u'down', u'puffing', u'all'] -turning round : [u','] -, burned : [u'yellow'] -" Inspector : [u'Bradstreet'] -But she : [u'will', u'could'] -may save : [u'us'] -the furniture : [u'that', u'in', u'of'] -unbreakable tire : [u','] -requirements are : [u'not'] -extraordinary league : [u'.'] -harness. : ['PP'] -glass sherry : [u','] -any country : [u'outside'] -he uttered : [u'it'] -constraint. : ['PP'] -they once : [u'were'] -, yellow : [u'gloves'] -17 King : [u'Edward'] -altered. : ['PP'] -any statement : [u'to'] -they really : [u'abutted'] -interrupted you : [u'.'] -I alone : [u'.'] -remember any : [u'other'] -madman coming : [u'along'] -was driven : [u'over'] -desired to : [u'be'] -February morning : [u','] -unpleasant interruption : [u','] -little red : [u'circles', u'and'] -premises were : [u'ready'] -sky, : [u'and', u'flecked'] -is slight : [u','] -disturbing than : [u'a'] -without wide : [u'spread'] -of reasoning : [u'and', u'by'] -that part : [u'.', u'is', u'of'] -same age : [u','] -order breakfast : [u','] -of bullion : [u'is'] -For many : [u'years'] -know father : [u'didn'] -s remarks : [u'about'] -I and : [u'all'] -bridge, : [u'no', u'with'] -key fitted : [u'to'] -always very : [u'careful'] -replacement copy : [u',', u'in'] -and manner : [u'told', u'of'] -sister to : [u'know'] -and opened : [u'from', u'the'] -of Peterson : [u"'", u',', u'that'] -simple cooking : [u'and'] -said John : [u'Clay', u'Openshaw'] -medical aid : [u'from'] -a planter : [u'in'] -him would : [u'be', u'induce'] -the Globe : [u','] -he meet : [u'his'] -pages for : [u'current'] -bright sun : [u'and'] -is incalculable : [u'.'] -will feel : [u'sure'] -every turn : [u','] -farthest from : [u'the'] -Paddington and : [u'were'] -Instead of : [u'making'] -them again : [u'just', u'!"'] -saw nothing : [u'remarkable', u'.'] -my hobbies : [u",'"] -his mouth : [u'.', u'to', u'for', u'before'] -two hard : [u'black'] -beauty of : [u'the'] -late visit : [u'to'] -of great : [u'delicacy', u'gravity', u',', u'personal'] -any copy : [u'of'] -not much : [u'time', u'more', u'in'] -Amid the : [u'action'] -so on : [u'of'] -Prince then : [u'.'] -everything that : [u'may'] -and whose : [u'residence', u'absolute'] -trusted with : [u'matters'] -single long : [u'.'] -twist facts : [u'to'] -be left : [u'till'] -six o : [u"'"] -low door : [u','] -had waited : [u'a', u'outside'] -smoothness of : [u'a'] -character of : [u'its', u'a', u'an', u'this', u'parents'] -you doing : [u'in', u'with', u'there'] -closely you : [u'must'] -Should it : [u'prove'] -smaller crimes : [u','] -secreting. : [u'Why'] -To Holmes : [u','] -England just : [u'before'] -simple life : [u'that'] -pipe was : [u'still'] -he met : [u'his'] -with their : [u'steaming', u'fists', u'conundrums', u'papers', u'dark', u'old'] -pulling on : [u'his'] -' judgment : [u'that'] -to introduce : [u'a', u'you'] -discovered him : [u','] -had tramped : [u'into'] -Let you : [u'have'] -rending cloth : [u'as'] -passion such : [u'as'] -or less : [u'interest', u'murderous'] -without compromising : [u'his'] -of crime : [u',', u'or', u'.'] -turning towards : [u'anyone'] -thin old : [u'man'] -dog!" : [u'cried'] -a cap : [u'at'] -love, : [u'but'] -, Hanover : [u'Square'] -work," : [u'said', u'he'] -a cat : [u'in', u'.'] -of snuff : [u'. "', u','] -bad and : [u'that'] -length by : [u'telling'] -acquaintance are : [u'going'] -a cab : [u'came', u'."', u'to', u'with', u'within', u'?"', u'outside', u',', u'by', u'and', u'together'] -the tops : [u'with'] -clue. : [u'Then', u'The', u'There', 'PP'] -is stirring : [u'yet'] -rabbit warren : [u'which'] -returned me : [u'the'] -have done : [u'what', u'the', u'it', u'nothing', u'very', u',', u'before', u'single', u'better', u'wisely', u'so', u'my', u'a', u'to', u'.', u'him', u'you', u'well'] -WILSON" : [u'in'] -just throwing : [u'out'] -" Grave : [u'enough'] -quick blush : [u'passed'] -infer that : [u'she'] -paragraphs 1 : [u'.'] -matter drop : [u'and'] -lose such : [u'a'] -every poor : [u'devil'] -chase, : [u'and'] -hills there : [u','] -chase. : [u'All'] -matters immensely : [u'."'] -been women : [u'in'] -slow and : [u'heavy'] -establishment, : [u'were'] -extending down : [u'past'] -upon. : [u'There', u'For', u'Who'] -lap, : [u'and'] -Is the : [u'poor', u'security'] -going off : [u'to'] -her very : [u'significant'] -woods on : [u'three'] -the dog : [u'at', u'whip', u'cart', u'might', u'!"', u'.'] -he whispered : [u'. "', u'into', u','] -straining ears : [u'.'] -earlier than : [u'usual'] -caps, : [u'and'] -really the : [u'end', u'only'] -the epistle : [u'.'] -jovial as : [u'ever'] -stick in : [u'his'] -who frequent : [u'the'] -be pushed : [u'as'] -once a : [u'day', u'week'] -this rude : [u'meal'] -had," : [u'said'] -the shape : [u'of'] -a shrimp : [u'it'] -Arthur and : [u'Mary'] -, would : [u'not', u'you', u'have', u'go', u'it', u'be', u'commence'] -Then I : [u'must', u'fail', u'shall', u'am', u',', u'can', u'called', u'asked', u'made', u'rang', u'could', u'do', u'seized', u'suggest', u'went', u'thought', u'walked', u'have', u"'", u'saw', u'trust', u'started', u'will', u'looked'] -business@ : [u'pglaf'] -tm is : [u'synonymous'] -allowed anyone : [u'to'] -trust to : [u'general'] -gales that : [u'year'] -amusing, : [u'though'] -expected, : [u'that', u'his', u'lounging'] -expected. : [u'On'] -once I : [u'have'] -no sister : [u'of'] -brought about : [u'for'] -connivance and : [u'assistance'] -continued Holmes : [u',', u', "'] -business. : [u'A', 'PP', u'Sherlock', u'It', u'He', u'Up'] -business, : [u'for', u'Watson', u'sir', u'there', u'then', u'but', u'since'] -a thick : [u',', u'bell'] -link rings : [u'true'] -Grave enough : [u'!"'] -business; : [u'but'] -, entirely : [u'cleared'] -larger crimes : [u'are'] -begin it : [u'by'] -carried the : [u'bird', u'precious'] -as serious : [u'as'] -are being : [u'made'] -A Case : [u'of'] -them Miss : [u'Turner'] -restraint and : [u'firmness'] -looking man : [u',', u'that'] -pompous, : [u'and'] -" Ample : [u'."'] -the rope : [u'. "', u'or', u'was', u'and'] -and swollen : [u'glands'] -as I : [u'looked', u'have', u'understand', u'was', u'expected', u'could', u'had', u'will', u'told', u'call', u'would', u'can', u'knew', u'entered', u'hoped', u'live', u'used', u'always', u'said', u'know', u'rushed', u'ran', u'glanced', u'listened', u'did', u'ascended', u'examined', u'learn', u'dropped', u'arrived', u'am', u'bent', u'lay', u'.', u'happened', u'spoke', u'followed', u'remarked', u'came', u'stood', u'approached', u'should', u'passed', u'felt'] -clank of : [u'the'] -detective force : [u'!'] -lady. : ['PP', u'There', u'I'] -bandaged me : [u','] -rich man : [u'.'] -virus, : [u'or'] -photograph; : [u'but'] -a horrible : [u'scar', u'scandal', u'exposure', u'worrying'] -Arthur, : [u'a', u'who', u'went'] -train from : [u'Charing', u'Waterloo', u'Paddington'] -still sounding : [u'the'] -? Already : [u'I'] -uncompromising manner : [u'to'] -s worth : [u'quite'] -if to : [u'strike', u'ask'] -into his : [u'own', u'pockets', u'bedroom', u'face', u'armchair', u'chair', u'thin', u'cheeks', u'pocket', u'head'] -photograph. : ['PP', u'And', u'It'] -, Jones : [u',', u'?"'] -photograph, : [u'your', u'it'] -seemed quite : [u'enthusiastic', u'exaggerated'] -the weather : [u'had'] -When Dr : [u'.'] -had occasion : [u'some', u'to'] -Arthur' : [u's'] -From outside : [u'came'] -diligently of : [u'late'] -devotedly, : [u'but'] -the thresholds : [u'of'] -caution. : [u'The'] -was moving : [u'under'] -asked for : [u'Alice', u'a', u'it'] -brown opium : [u'smoke'] -You really : [u'did', u'are'] -work or : [u'any', u'a', u'group'] -man to : [u'apply', u'see', u'the', u'fall', u'whom'] -he doing : [u'there'] -I blinked : [u'up'] -cashbox, : [u'in'] -the decline : [u'of'] -way past : [u'her'] -interested and : [u'wished'] -Perhaps you : [u'had', u'will', u'have'] -bridegroom from : [u'having'] -midst of : [u'a', u'the', u'my'] -the awful : [u'consequences'] -skinned, : [u'with', u'rubbing'] -hold of : [u',"'] -often be : [u'lost'] -wanted her : [u'to'] -is middle : [u'aged'] -had business : [u'in'] -burst of : [u'anger'] -commercial redistribution : [u'.'] -. Getting : [u'a'] -though very : [u'often'] -my situation : [u'lies'] -duty near : [u'Waterloo'] -borrow so : [u'trifling'] -as specified : [u'in'] -window. " : [u'A'] -Rather than : [u'I'] -now we : [u'must'] -into each : [u'of'] -same performance : [u'was'] -out between : [u'this'] -a feeling : [u'something', u'of', u'that'] -complete manner : [u'one'] -should both : [u'be'] -our sitting : [u'room'] -actually in : [u'sight'] -Fenchurch Street : [u'."', u','] -. Ha : [u'!'] -chasing is : [u'incalculable'] -pillow beneath : [u'his'] -To donate : [u','] -had we : [u'not'] -working hypothesis : [u'that', u'for'] -he strode : [u'out'] -and rather : [u'startled'] -massive iron : [u'gate'] -lenses, : [u'would'] -The young : [u'man', u'lady'] -acts as : [u'assistant'] -quickly between : [u'the'] -rest assured : [u'that'] -spellbound to : [u'this'] -protesting, : [u'to'] -thanks. : [u'He'] -discovery that : [u'this'] -; you : [u'have'] -struggling to : [u'break'] -a miners : [u"'"] -His hair : [u','] -crime or : [u'not'] -question now : [u'was'] -have favoured : [u'me'] -very black : [u'against'] -crime of : [u'which'] -needed to : [u'have'] -mind of : [u'the', u'man'] -Savannah the : [u'mail'] -of Lebanon : [u','] -sometimes that : [u'it'] -Very glad : [u'to'] -mind on : [u'a'] -, fully : [u'dressed'] -was locked : [u'as'] -exact purpose : [u'was'] -better discuss : [u'it'] -Briefly, : [u'Watson'] -not," : [u'said'] -weary of : [u'advertising'] -nor myself : [u'liking'] -than he : [u'.'] -One evening : [u','] -been returning : [u'from'] -pray what : [u'am', u'did'] -of evil : [u',', u'reputation'] -a fierce : [u'eddy', u'old'] -" Do : [u'you', u'not'] -uncle of : [u'the'] -only had : [u'I'] -a jesting : [u'tone'] -the upper : [u'part', u'lip', u'floor'] -he pointed : [u'out', u'to'] -dear old : [u'homesteads'] -" Dr : [u'.'] -. ' Not : [u'at'] -you missed : [u'all'] -wearing a : [u'mask'] -" Project : [u'Gutenberg'] -received a : [u'telegram', u'letter'] -on Wednesday : [u'brought', u'last'] -home. : ['PP', u'In', u'Tell', u'Obviously', u'We'] -home, : [u'no', u'she', u'I', u'Miss'] -hear a : [u'true', u'low', u'sound'] -Philadelphia. : [u'Mr'] -always be : [u'associated', u'true', u'in'] -my trunk : [u'.', u','] -means relaxed : [u'his'] -lassitude from : [u'his'] -glasses, : [u'slight', u'masked', u'the'] -means taking : [u'possession'] -things of : [u'which'] -apology is : [u'needed'] -be someone : [u'from'] -Holland. : [u'Beyond'] -veil from : [u'men'] -Holland, : [u'though'] -I ask : [u'you', u'who', u'whether', u',', u'where'] -next week : [u','] -gradually, : [u'until'] -should take : [u'a', u'an'] -and marry : [u'her'] -Its splendour : [u'was'] -have suddenly : [u'assumed'] -large woman : [u'with'] -consequences to : [u'me'] -nothing in : [u'the', u'it', u'his', u'that'] -excellent if : [u'it'] -Rockies, : [u'where'] -was awakened : [u'by'] -those dreadful : [u'hours'] -blooded and : [u'reckless'] -ordered to : [u'this'] -not wake : [u'you'] -had small : [u'round'] -ever since : [u'.', u'I', u'as'] -ll call : [u'a'] -or conscience : [u'.'] -bulky Jones : [u'from'] -novel, : [u'and'] -had ill : [u'usage'] -novel. : [u'The'] -fleecy white : [u'clouds'] -lived happily : [u'at'] -Surrey. : ['PP'] -OF CONTRACT : [u'EXCEPT'] -though, : [u'as', u'indeed'] -guess what : [u'the', u'it'] -house that : [u'morning'] -there have : [u'been'] -tinted spectacles : [u'and'] -little shining : [u'slits'] -empty when : [u'you'] -yellow wreaths : [u'.'] -walking down : [u'the'] -our dinner : [u'into'] -James' : [u's'] -cut within : [u'the'] -at six : [u'o', u'.', u'hundred'] -his tobacco : [u'with'] -, unlocking : [u'and', u'it'] -James. : [u'Oh'] -no hat : [u'since'] -succeed in : [u'discovering', u'proving', u'clearing'] -idea came : [u'to', u'into'] -vigorously than : [u'ever'] -So determined : [u'was'] -an interesting : [u'study', u'case', u'one'] -have watched : [u'the', u'this'] -ruby red : [u'.'] -Take a : [u'pinch'] -and sit : [u'here'] -approach us : [u'with'] -broken into : [u','] -that an : [u'evil', u'attempt'] -Christ' : [u's'] -and six : [u'of', u'back'] -. Yours : [u'faithfully'] -is England : [u','] -set foot : [u'in'] -note paper : [u'which', u'."', u'.'] -that as : [u'long', u'I'] -that moment : [u'for', u'there', u'her'] -same peculiar : [u'tint'] -explain this : [u'matter'] -Defects," : [u'such'] -highest, : [u'noblest'] -gone and : [u'the'] -or mine : [u',"'] -reason that : [u'the', u'we'] -the Jezail : [u'bullet'] -favourable to : [u'me'] -whole debts : [u'at'] -a pack : [u'of'] -liberty. : [u'Far'] -exceeded all : [u'that'] -curled upon : [u'itself'] -even more : [u'flurried', u'highly', u'simple', u'terrible', u'affected', u'painful'] -be late : [u'."'] -man pulled : [u'his'] -round my : [u'feet'] -closely allied : [u'.'] -round me : [u','] -. Instead : [u'of'] -fresh blood : [u'.'] -the collection : [u'of', u'are'] -and attacked : [u'it'] -my companion : [u"'", u',', u'.', u', "', u'with', u'. "', u'shook', u'speedily', u'by', u'quietly', u'imperturbably', u'sat', u'answered', u'rose'] -skirts. : [u'The'] -long ulster : [u','] -life than : [u'when'] -pocket. " : [u'It', u'Hullo'] -thrown by : [u'the'] -I carried : [u'my', u'the'] -a sitting : [u'room'] -free and : [u'was'] -" allow : [u'me'] -natured a : [u'little'] -trick of : [u'staining', u'vanishing', u'stepping'] -it mean : [u',', u'?"'] -That circle : [u'is'] -life that : [u'I', u'he'] -make any : [u'statement', u'statements'] -feet with : [u'the'] -I guess : [u'you'] -Here you : [u'are'] -names enough : [u",'"] -! data : [u'!', u'!"'] -fiercely at : [u'the'] -fee which : [u'would'] -not fitted : [u'for'] -perhaps to : [u'these'] -with confederates : [u','] -to hospital : [u'."'] -like he : [u'did'] -stones he : [u'held'] -done yet : [u','] -putting my : [u'foot'] -see solved : [u','] -B." : [u'were'] -alike. : [u'Some'] -apparently adjusted : [u'that'] -you derive : [u'from'] -that cry : [u'raised'] -I in : [u'the'] -and selfish : [u'and'] -glad, : [u'I', u'for'] -the kindness : [u'to'] -him kindly : [u'on'] -SPECKLED. : ['PP'] -I signed : [u'the'] -bird," : [u'said'] -shape in : [u'which'] -very unlikely : [u'."'] -he derives : [u'this'] -their mouths : [u'.'] -and will : [u',', u'be'] -bleak autumnal : [u'evenings'] -endless succession : [u'of'] -stuff, : [u'with'] -your acquaintance : [u'?"'] -" By : [u'train', u'all', u'no', u'the', u'this'] -been prosecuted : [u'for'] -small chamber : [u'is'] -was shut : [u'and'] -which vanished : [u'immediately'] -chain, : [u'and', u'the', u'we'] -to fall : [u'foul', u'into'] -morning." : [u'He'] -case backward : [u'and'] -the fresh : [u'information'] -mantelpiece. : ['PP', u'He'] -to Major : [u'Prendergast'] -during which : [u'he', u'Holmes', u'I'] -wayside hedges : [u'were'] -and shot : [u'a'] -all huddled : [u'in'] -to Hosmer : [u'.', u'Angel'] -walked swiftly : [u'and', u'round'] -The unusual : [u'salary'] -in Upper : [u'Swandam'] -She laid : [u'her'] -England my : [u'mother'] -else as : [u'a'] -keeper came : [u','] -evening train : [u'."'] -his passion : [u'.', u'was'] -little from : [u'the'] -before seven : [u'o'] -these perils : [u'are'] -its results : [u'that'] -When she : [u'wouldn'] -some part : [u'of'] -letters get : [u'more'] -coroner was : [u'because'] -How can : [u'you', u'we'] -Great Scott : [u'!'] -should use : [u'it'] -where he : [u'has', u'was', u'had', u'rose', u'remained', u'can', u'lived', u'recovered', u'could', u'stood'] -Freebody, : [u'who'] -by people : [u'who'] -prevent an : [u'outbreak'] -their power : [u'."'] -laugh. " : [u'Shillings', u'They'] -favour me : [u'with'] -good scar : [u'and'] -her skin : [u'.'] -rings true : [u'."'] -the ideas : [u'of'] -him through : [u'the'] -sudden idea : [u'came'] -idea what : [u'she'] -My marriage : [u'had'] -to spare : [u'?', u'Alice'] -children. : [u'He', 'PP', u'This'] -nothing of : [u'half', u'the', u'it', u'much', u'this', u'such'] -children, : [u'and'] -match, : [u'and', u'were'] -the creases : [u'of'] -briskly from : [u'her'] -moisture upon : [u'the'] -speak with : [u'him'] -before my : [u'own', u'friend'] -watch chain : [u'in', u','] -while his : [u'gently', u'eyes', u'lips', u'deep', u'hair'] -PURPOSE. : ['PP'] -it fell : [u'over', u'.'] -bride. : ['PP'] -bride, : [u'Mr', u'who'] -blown in : [u'upon'] -shall take : [u'them', u'nothing', u'no', u'your', u'you', u'up'] -some muttered : [u'to'] -unfortunate bridegroom : [u'moves'] -of that : [u'?"', u'time', u',"', u'colour', u'window', u'sottish', u'building', u'floor', u'very', u'cut', u'goose', u'dreadful', u',', u'fellow', u'which', u'.'] -great people : [u'.'] -to follow : [u'your', u'the', u'them', u'you', u'it'] -misfortune to : [u'get'] -pointing to : [u'a'] -nothing on : [u'save'] -sigh of : [u'relief'] -the Tankerville : [u'Club'] -" Between : [u'nine'] -she sprang : [u'at'] -He sank : [u'his'] -pounds! : [u'Great'] -a chinchilla : [u'beard'] -urgency of : [u'this'] -excellent material : [u','] -reach some : [u'definite'] -grasped the : [u'results'] -vague that : [u'it'] -importance in : [u'clearing', u'the'] -that has : [u'befallen'] -hope we : [u'may'] -the general : [u'public'] -be that : [u'of', u'you', u'if'] -no great : [u'deduction', u'difficulty', u'pleasure', u'consequence'] -of disappointment : [u'came', u'.'] -keep up : [u'your', u'my', u'with'] -days in : [u'Victoria', u'Bristol'] -feeling away : [u'with'] -You didn : [u"'"] -Dundee. : [u'If'] -down they : [u'should', u'came'] -flagged. : [u'At'] -black waistcoat : [u','] -room as : [u'a', u'impulsively'] -dropped off : [u'to'] -he observed : [u'. "', u'a', u','] -; " and : [u'what', u'I'] -. Shall : [u'be'] -in silence : [u'for', u',', u'to', u'all', u'when'] -death, : [u'and', u'had', u'I'] -and joined : [u'us'] -death. : ['PP', u'My', u'I', u'The'] -doctor won : [u"'"] -gentlemen who : [u'can'] -moments later : [u'I', u'a', u'he'] -this great : [u'city', u'panoply'] -grace from : [u'the'] -ADVENTURE VI : [u'.'] -reached home : [u'that'] -other until : [u'he'] -you dig : [u'fuller'] -help me : [u'in', u'to', u'!"', u',', u'!', u'.'] -appointment of : [u'importance'] -a government : [u'appointment'] -other intellectual : [u'property'] -been on : [u'his', u'the', u'a'] -dived down : [u'the'] -under Hood : [u','] -been of : [u'my', u'the', u'material', u'most', u'red', u'no', u'a'] -I make : [u'a', u'nothing', u'by', u'myself', u'it'] -lie and : [u'look'] -its due : [u'order'] -our marriage : [u'.'] -room early : [u','] -in notes : [u',"'] -mouth for : [u'all'] -the hands : [u'of', u'to'] -a murderous : [u'attack'] -wretch of : [u'hideous'] -rather vague : [u'.'] -spare rooms : [u'up'] -No bad : [u'?"'] -G' : [u'with'] -G" : [u'with'] -strong as : [u'my'] -easily do : [u'it'] -key will : [u'fit'] -the production : [u','] -machine very : [u'thoroughly'] -always means : [u'an'] -to address : [u'.', u'?"'] -part but : [u'also'] -now," : [u'he', u'my', u'I'] -great claret : [u'importers'] -now,' : [u'said'] -gold kindled : [u'at'] -buy so : [u'expensive'] -anything more : [u'than'] -Above all : [u','] -Outside the : [u'wind'] -times by : [u'men'] -it gave : [u'my'] -"' Very : [u'likely', u'good', u'well'] -He begged : [u'my'] -fancies, : [u'you'] -nothing to : [u'do', u'go', u'disturb'] -us into : [u'the'] -swim and : [u'not'] -a nutshell : [u'.'] -plans. : [u'I', 'PP', u'That'] -carefully round : [u'it'] -keep one : [u';'] -horrid red : [u','] -plans, : [u'and'] -particular." : [u'He'] -in private : [u'clothes', u'that'] -March, : [u'1888', u'1883', u'1869'] -heart turned : [u'to'] -Scandinavia. : [u'You', 'PP'] -they said : [u'?"'] -was nothing : [u'remarkable', u'in', u'which', u'else', u'of', u'.'] -Then how : [u'many'] -nothing but : [u'a', u'flight'] -was out : [u'of', u','] -you longer : [u'.'] -lurid spark : [u'upon', u'which'] -of country : [u'which'] -piled all : [u'round'] -the greatest : [u'interest', u'concentration', u'importance', u'attention', u'consternation', u'danger'] -although they : [u'impressed'] -matter again : [u'."'] -we wanted : [u'for'] -or four : [u'years', u'days'] -the paragraph : [u'in'] -dawdling, : [u'especially'] -problems are : [u'of'] -satisfy him : [u','] -a bitter : [u'night'] -offices round : [u','] -walking with : [u'a', u'this'] -was brisk : [u','] -can serve : [u'you'] -him alone : [u'.'] -royal duke : [u','] -gentleman waiting : [u'who'] -name it : [u'."'] -name is : [u'no', u'Vincent', u'different', u'not', u'that', u'Hugh', u'Sherlock', u'John', u'James', u'Helen', u'familiar', u'Armitage', u'Francis'] -Eyford Station : [u".'", u'we'] -observation of : [u'his', u'trifles'] -alley lurking : [u'behind'] -all if : [u'he'] -and behind : [u'this'] -all in : [u'his', u'the', u'a'] -( available : [u'with'] -he shouted : [u", '", u', "', u'. "', u','] -outcry behind : [u'me'] -celebrated Mr : [u'.'] -wrinkled, : [u'and', u'bent'] -The door : [u'of', u'itself'] -. Was : [u'it', u'dressed', u'there', u'Under', u'the'] -and research : [u'.'] -night sitting : [u'.'] -blocked by : [u'old'] -Lestrade of : [u'Scotland'] -three in : [u'the'] -for his : [u'hand', u'chambers', u'curious', u'son', u'bills', u'rooms', u'clay', u'manner', u'eye', u'resolution', u'face', u'age'] -possible object : [u'of'] -kicks and : [u'shoves'] -question of : [u'barometric', u'cubic', u'hydraulics'] -precise as : [u'to'] -referred to : [u'me', u'the', u'some', u'.'] -In a : [u'man', u'hundred', u'word', u'few', u'very', u'quarter', u'fit'] -likely ruse : [u'enough'] -. " As : [u'to'] -s smoke : [u'rocket'] -newcomers were : [u'Colonel'] -whispered Holmes : [u'. "', u'.'] -foil. : [u'Our'] -HUNTER. : ['PP'] -by certain : [u'arguments'] -works by : [u'freely'] -flapped and : [u'struggled'] -. " Ah : [u'yes', u','] -used, : [u'then', u'thoroughfare'] -life was : [u'very'] -used. : [u'If', u'It', 'PP'] -dangers that : [u'threaten'] -be natural : [u'under'] -of Breckinridge : [u'upon'] -and bar : [u'it', u'your'] -the brandy : [u'brought'] -her more : [u'interesting'] -At present : [u'it'] -the bridegroom : [u'from', u'),', u',', u'for', u'.'] -considerably in : [u'any'] -napoleons packed : [u'between'] -case depends : [u'.'] -very stay : [u'at'] -in light : [u'from'] -face blanched : [u'with'] -Holmes answered : [u'. "'] -seen there : [u'.'] -the relation : [u'between'] -The Lord : [u'St'] -FOR ACTUAL : [u','] -west to : [u'east'] -turned and : [u'ran', u'clattered'] -Meningen, : [u'second'] -the place : [u'clean', u'where', u'.', u'?', u'might', u'of', u'in', u'was'] -crushed. : [u'Holmes'] -last my : [u'heart'] -place a : [u'very'] -danger of : [u'being'] -the strength : [u'of'] -very gentle : [u','] -he gave : [u'a', u'him', u'quite'] -is." : [u'He'] -hurried forward : [u',', u'to'] -takes his : [u'daily'] -the snow : [u'of', u'from', u',', u'which', u'in', u'away', u'was'] -whether justice : [u'will'] -a handkerchief : [u'wrapped'] -committed an : [u'indiscretion'] -t believe : [u'it'] -fine indeed : [u'.'] -mouth, : [u'and'] -mouth. : [u'Therefore', u'It', u'Holmes'] -will know : [u'all', u'that'] -closing in : [u'upon'] -door corresponded : [u'clearly'] -corporation organized : [u'under'] -small panel : [u'was'] -harmony, : [u'and'] -and perfectly : [u'fresh'] -spend in : [u'his'] -closing it : [u'once'] -college; : [u'for'] -first pew : [u'.'] -at Halifax : [u','] -cracked in : [u'several'] -read in : [u'this', u'the'] -take comfort : [u'too'] -at ease : [u','] -her sister : [u'must', u'had', u'could'] -a general : [u'shriek', u'air'] -unforeseen catastrophe : [u'has'] -horrid scar : [u'which'] -!" We : [u'travelled', u'had', u'passed'] -read it : [u'together', u'for', u'very', u'out', u'from', u'to'] -any family : [u'.'] -salary with : [u'me'] -org Section : [u'4'] -before telling : [u'my'] -Among my : [u'headings'] -the middle : [u'of', u'one', u'window', u'size', u'height'] -I speak : [u'."', u'.'] -will get : [u'her'] -a greater : [u'distance', u'sense'] -comparatively modern : [u','] -is infinitely : [u'stranger'] -sun. : [u'Down'] -cases in : [u'which'] -became riveted : [u','] -know the : [u'strict', u'military', u'steps', u'people', u'young'] -Englishman. : [u'Early'] -got among : [u'bad'] -page sleep : [u'out'] -?" Miss : [u'Stoner'] -I behind : [u'him'] -extraordinary announcement : [u'.'] -see now : [u'that'] -boot slitting : [u'specimen'] -unhappy young : [u'man'] -great crisis : [u'is'] -past life : [u'that'] -balance of : [u'probability'] -a wave : [u',', u'of'] -our cellar : [u'.'] -satisfaction to : [u'his'] -garden with : [u'a'] -as prompt : [u'.'] -upon its : [u'side', u'hinges', u'terrible', u'master'] -marriage also : [u'but'] -end to : [u'make', u'the', u'that', u'a'] -or remark : [u'fell'] -charge is : [u'absurd'] -similar mark : [u','] -word to : [u'a', u'either'] -their pictures : [u','] -inspiring pity : [u'by'] -indirectly from : [u'any'] -valuable product : [u','] -been sterner : [u','] -! Then : [u'you', u'let'] -seldom seen : [u'a'] -the issue : [u'of'] -short grass : [u'which'] -, noting : [u'every'] -I should : [u'have', u'much', u'be', u'marry', u'like', u'continue', u'not', u'run', u'perch', u'value', u'hear', u'ask', u'prefer', u'think', u'become', u'wish', u'certainly', u'send', u'recommend', u'say', u'very', u'know', u'--"', u'call', u'desire', u'prolong', u'strongly', u'never', u'judge', u'tell', u'secure', u'find', u'or', u'do', u'feel', u'suspect'] -that point : [u'.'] -must discuss : [u'it'] -the damp : [u'was'] -expect. : [u'It'] -one could : [u'dimly', u'pass', u'find'] -the PROJECT : [u'GUTENBERG'] -Hill. : [u'I'] -To SEND : [u'DONATIONS'] -very small : [u'ones', u'place'] -. Better : [u'make'] -One of : [u'the', u'his', u'them', u'these', u'our'] -jewels which : [u'you'] -find remunerative : [u'investments'] -settled myself : [u'down'] -the foreman : [u';'] -" Starving : [u'.'] -newcomer must : [u'sit'] -way. " : [u'Our'] -and darting : [u'like'] -quiet little : [u'villages'] -was serious : [u'.'] -threatened to : [u'affect', u'raise'] -. Special : [u'rules'] -laws alone : [u'swamp'] -must commence : [u','] -her night : [u'dress'] -Westaway' : [u's'] -barmaid, : [u'finding'] -additional cost : [u','] -daubing them : [u'with'] -! tiptoes : [u'!'] -was watching : [u'me'] -Which was : [u'it'] -had arrived : [u'here', u'upon'] -cold to : [u'see', u'our'] -puffing and : [u'blowing'] -my trade : [u','] -them still : [u",'"] -an Indian : [u'cigar'] -s knee : [u'.'] -cannot admire : [u'his'] -us very : [u'clearly'] -on inquiring : [u'at'] -shrug of : [u'his'] -cursed stock : [u'mixed'] -." We : [u'had', u'descended', u'sat', u'made', u'both', u'got', u'were', u'passed'] -it any : [u'longer'] -long mirror : [u'.'] -of rattled : [u','] -groaned our : [u'visitor'] -cloth. : [u'No'] -in astonishment : [u'.'] -your opinion : [u',', u'about', u'!'] -the third : [u'day', u'from', u'my', u'chamber', u'demand', u',', u'drawer'] -, well : [u'furnished', u'dressed', u',', u'groomed', u'and', u'opened', u'known'] -now been : [u'doing', u'drawn'] -the appearance : [u'of', u'which', u'and'] -chamber, : [u'so', u'with'] -cross his : [u'path'] -incites the : [u'man'] -does a : [u'bit'] -perfect equality : [u','] -passed outside : [u','] -cart at : [u'the', u'Winchester'] -cart which : [u'throws'] -patient( : [u'for'] -the poorer : [u'was'] -last client : [u'of'] -last sentence : [u','] -the Aberdeen : [u'Shipping'] -estates extended : [u'over'] -before the : [u'fire', u'door', u'magistrates', u'coroner', u'blow', u'night', u'morning', u'roof', u'disappearance', u'ceremony', u'wedding', u'altar'] -had you : [u'lived'] -patient, : [u'as', u'she'] -a strong : [u'emotion', u'presumption', u'part', u'balance', u'smell', u',', u'nature', u'proof', u'frost', u'factor'] -They could : [u'only'] -streaming umbrella : [u'which'] -getting yourself : [u'very'] -are personally : [u'concerned'] -patient. : ['PP'] -banking business : [u'as'] -firm for : [u'which'] -fabrication, : [u'for'] -rushed past : [u'him'] -At Waterloo : [u'we'] -a change : [u'in'] -severely. " : [u'You'] -to suicide : [u'?"'] -call about : [u'once'] -behind. : [u'It', u'That', u'One', 'PP'] -filthy hands : [u',"'] -required check : [u'.'] -strange errand : [u','] -us the : [u'boots', u'exact', u'truth', u'essential', u'bet', u'full'] -States, : [u'and', u'we', u'check'] -in Bradshaw : [u',"'] -the cord : [u'which', u'and'] -you consult : [u'my'] -rare good : [u'fortune'] -the police : [u'agent', u'station', u'report', u'and', u',', u'court', u'.', u",'", u'."', u'?"', u'of', u'regulations', u'are', u'appeared', u'authorities', u'might', u'to', u';', u'have', u'inspector', u"!'", u'find', u'formalities', u'think', u'were'] -sleepless night : [u'.'] -from any : [u'steps', u'region', u'of'] -presses against : [u'the'] -narrative, : [u'but'] -inspector. : ['PP'] -narrative. : [u'I', 'PP', u'Then', u'When'] -entries that : [u'A'] -probable. : ['PP', u'And'] -maiden is : [u'not'] -morning papers : [u',', u'all'] -saved me : [u'from'] -his golden : [u'pince', u'eyeglasses'] -clear up : [u'these', u'the', u'all'] -page in : [u'red'] -it also : [u'.', u".'"] -offered no : [u'objection', u'opposition'] -any gentleman : [u'ask'] -her glove : [u'buttons'] -duty?" : [u'asked'] -chair upon : [u'which'] -oldest Saxon : [u'families'] -1 to : [u'$'] -yet might : [u'appear'] -festivities, : [u'is'] -a living : [u'.'] -see each : [u'other'] -a lovely : [u'woman'] -a passage : [u','] -shall find : [u'me', u'them'] -was upon : [u'the', u'their'] -that perhaps : [u'you', u'he'] -away down : [u'in'] -He disappeared : [u'into', u'so'] -George Sand : [u'."'] -It' : [u's'] -still one : [u'left'] -in whom : [u'I', u'the'] -police are : [u'hurrying', u'to'] -remarked at : [u'last'] -been saying : [u'to'] -this marriage : [u'rather', u'may'] -satin shoes : [u'and'] -both glove : [u'and'] -, insisted : [u'upon'] -wish she : [u'had'] -home and : [u'made', u'forbidding', u'roused', u'changed'] -will allow : [u','] -Lestrade," : [u'he', u'said', u'drawled'] -acquaintance," : [u'said'] -bed and : [u'cushions', u'spent', u'eightpence', u'that'] -has given : [u'her', u'its'] -not dare : [u'to'] -supper had : [u'been'] -or any : [u'other', u'files', u'part', u'Project'] -every possible : [u'detail', u'combination', u'precaution'] -letters" : [u'L'] -abandoned his : [u'attempts'] -his evidence : [u';', u'to'] -letters, : [u'and', u'upon', u'then', u'which', u'for', u'why', u'if'] -letters. : [u'But', 'PP'] -lost property : [u'to'] -would find : [u'that'] -short thick : [u'man'] -claim upon : [u'Lord'] -voices from : [u'above'] -his manner : [u',', u'suggested', u'.', u'that', u'was'] -Bible. : [u'Oh'] -to perform : [u',', u'myself'] -himself by : [u'swimming'] -under any : [u'other'] -every other : [u'consideration'] -face disfigured : [u'by'] -look which : [u'I'] -sofa, : [u'placed', u'and'] -watch you : [u','] -from Cannon : [u'Street'] -pain. ' : [u'There'] -funny that : [u'I'] -than fog : [u',"'] -real insight : [u'into'] -staying with : [u'them', u'him'] -lamp your : [u'son'] -literature of : [u'the'] -man knew : [u'my'] -carried away : [u'."', u','] -a baby : [u'her'] -have hurried : [u'round'] -a person : [u'on', u'who'] -heavily at : [u'cards'] -declared that : [u'she', u'he'] -" Whatever : [u'your'] -combined to : [u'give'] -in upon : [u'me', u'us', u'the', u'his', u'your'] -displayed in : [u'his'] -backward and : [u'forward'] -talker, : [u'and'] -label, : [u'with'] -our bell : [u'until'] -legal crime : [u'."'] -that whoever : [u'addressed'] -frequently together : [u'.'] -cloth was : [u'cleared'] -none the : [u'less', u'wiser'] -and Holmes : [u'had', u',', u'was'] -only doubt : [u"--'"] -clients to : [u'vex'] -ll swing : [u'for'] -, questioning : [u'glances', u'gaze'] -which showed : [u'by', u'me'] -corner. " : [u'I'] -ceaseless tread : [u'of'] -most preposterous : [u'position'] -Clotilde Lothman : [u'von'] -opium. : [u'The', 'PP'] -answered me : [u'like', u'abruptly'] -to men : [u'whose'] -not?" : [u'said'] -veil which : [u'hangs'] -answered my : [u'companion', u'visitor'] -though rather : [u'elementary'] -bargain, : [u'you'] -, spongy : [u'surface'] -brickish red : [u'.'] -it struck : [u'me'] -"' Tell : [u'me'] -are successive : [u'entries'] -face, : [u'extending', u'and', u'though', u'while', u'which', u'there', u'as', u'even', u'drooping', u'sloping', u'uncertain', u'seared', u'high', u'she', u'freckled', u'opened'] -answers to : [u'those'] -oaths which : [u'a'] -recent services : [u'to'] -appointment this : [u'morning'] -player, : [u'boxer'] -scrawled in : [u'red'] -you both : [u'to', u'locked', u';'] -and fear : [u'and'] -face; : [u'but'] -; someone : [u'had'] -by Mrs : [u'.'] -Burnwell tried : [u'to'] -crimes, : [u'and'] -And so : [u'in', u'do', u'you'] -to young : [u'ladies'] -shoes. " : [u'I'] -and have : [u'even', u'never', u'a', u'their', u'this', u'used', u'now', u'an', u'looked'] -clouds of : [u'smoke'] -level of : [u'intuition'] -poetic and : [u'contemplative'] -saw where : [u'Boots'] -but fortunately : [u'I'] -be ashamed : [u'of'] -who required : [u'my'] -knot in : [u'front'] -popular with : [u'all'] -wearer perspired : [u'very'] -On the : [u'issue', u'contrary', u'inspector', u'other', u'Hatherley', u'inside', u'fourth', u'third', u'very', u'table', u'one', u'whole', u'right', u'left', u'next'] -wines. : [u'They'] -refreshed his : [u'memory'] -dissatisfied with : [u'the'] -God sends : [u'me'] -to while : [u'away'] -are three : [u'hundred', u'men', u'separate', u'missing'] -yet three : [u'when'] -with dark : [u'hair'] -least criminal : [u'man'] -his orgies : [u'had'] -very shy : [u'man'] -. Turn : [u'over'] -, thrust : [u'them'] -no confession : [u'could'] -moment when : [u',', u'no', u'Holmes', u'he', u'your'] -the dealer : [u"'"] -Holmes seemed : [u'to'] -most perfect : [u'reasoning', u'happiness'] -sideways, : [u'that'] -Holmes blandly : [u'. "', u', "'] -the empire : [u",'"] -them, " : [u'they'] -with Toller : [u'hurrying'] -were, : [u'it', u'too', u'but', u'right', u'of'] -were. : [u'They'] -It appears : [u'that'] -suspicion would : [u'rest'] -his sleeves : [u'without'] -fellow upon : [u'the'] -windows to : [u'see'] -is 64 : [u'6221541'] -call at : [u'four', u'the', u'half'] -chalk mixture : [u'which'] -household," : [u'he'] -the details : [u',', u'are', u'should', u'."'] -which took : [u'many'] -always secure : [u'me'] -of Morcar : [u"'", u'the', u'upon'] -estate of : [u'Birchmoor'] -the main : [u'arteries', u'facts', u'points', u'building', u'chamber', u'PG'] -the mail : [u'boat'] -church, : [u'and'] -Because it : [u'would'] -they do : [u'their'] -the maid : [u'who', u'brought', u'that', u',', u'will', u'tapping', u'a', u'and'] -reed girt : [u'sheet'] -between Australians : [u'.'] -cannot quite : [u'hold'] -for such : [u'elaborate', u'nice', u'a'] -think,' : [u'he'] -unmistakable signs : [u'of'] -the least : [u'interested', u'."', u'.', u'ray', u'to', u'clue'] -sprang out : [u'.', u'of', u',', u'into'] -spared you : [u'when'] -knew how : [u'he', u'you'] -asking to : [u'be'] -the unconscious : [u'man'] -The son : [u','] -make donations : [u'to'] -turning it : [u'over'] -character, : [u'with', u'he', u'an', u'however'] -character. : [u'His', u'God', 'PP'] -roofs, : [u'and'] -suggestive of : [u'resolution'] -turning in : [u'her', u'and'] -observe that : [u'there', u',', u'your', u'you'] -cannot survive : [u'without'] -iron gate : [u'.'] -placed upon : [u'the', u'record'] -I get : [u'back'] -two feet : [u'deep'] -panel just : [u'above'] -All red : [u'headed'] -work our : [u'own'] -heart. : [u'With', 'PP', u'You', u'She', u'The', u'Not'] -heart, : [u'and', u'but'] -may elect : [u'to'] -companion noiselessly : [u'closed'] -enwrapped in : [u'the'] -principles of : [u'her'] -Gate, : [u'where'] -She watched : [u'us'] -Crown Prince : [u'then'] -in creating : [u'the'] -gave quite : [u'a'] -robbery having : [u'been'] -nothing until : [u'the', u'then', u'I', u'seven'] -rummaged amid : [u'his'] -tassel actually : [u'lying'] -them right : [u'enough'] -light grey : [u'eyes'] -Written in : [u'pencil'] -Men. : [u'It'] -Plain Vanilla : [u'ASCII'] -definitely announced : [u'his'] -, approached : [u'by'] -precursor of : [u'his'] -repay you : [u'.'] -made, : [u'as', u'a', u'which'] -made. : [u'Twice', u'We'] -Doctor as : [u'no'] -door so : [u'as'] -fierce quarrel : [u'broke'] -was absent : [u'from'] -finding what : [u'I'] -to rush : [u'to', u'into'] -leaves and : [u'dried'] -would follow : [u'?', u'from'] -harmless from : [u'all'] -looked startled : [u'. "'] -that floor : [u'there'] -kindly that : [u'I'] -injuries which : [u'neither'] -last hurried : [u'glance'] -accordance with : [u'paragraph', u'this'] -all his : [u'mental', u'giant', u'strength'] -understanding between : [u'Sir'] -contraction like : [u'our'] -contact with : [u'all', u'burning'] -perfect. : [u'Leave'] -naked feet : [u'.'] -advance, : [u'with'] -passed round : [u'the'] -mixed, : [u'Watson'] -kingdom to : [u'have'] -on down : [u'a'] -blue rings : [u'into'] -had turned : [u'down', u'to', u'his', u'up'] -so moist : [u'was'] -the wet : [u'foot'] -you reached : [u'the'] -atmosphere. : [u'Three'] -were marked : [u'at'] -to cut : [u'both', u'your'] -was for : [u'the', u'which'] -gentlemanly he : [u'was'] -shake down : [u".'"] -the slam : [u'of'] -master of : [u'his', u'the'] -sign the : [u'paper'] -den, : [u'and', u'what', u'until'] -machine overhauled : [u','] -laughed in : [u'the'] -for Lestrade : [u'was'] -strange pets : [u'which'] -, allowed : [u'me'] -unfortunate lady : [u'died'] -the skin : [u'of'] -soothingly, : [u'bending'] -clamped to : [u'the'] -room were : [u'all'] -followed recent : [u'events'] -circumstances are : [u'of'] -certainly to : [u'muster'] -his searching : [u'fashion'] -sorely, : [u'and'] -I was : [u'returning', u'seized', u'aware', u'also', u'addressing', u'mad', u'only', u'young', u'at', u'already', u'to', u'certain', u'not', u'compelled', u'still', u'just', u'half', u'I', u'sure', u'conspiring', u'determined', u'really', u'about', u'afraid', u'a', u'often', u'always', u'so', u'in', u'there', u'staggered', u'ascertaining', u'engaged', u'set', u'.', u'pledged', u'never', u'then', u'busy', u'informed', u'following', u'doing', u'concerned', u'inclined', u'more', u'known', u'firm', u'forced', u'sixteen', u'quite', u'asked', u'glad', u'unable', u'well', u'newly', u'Isa', u'walking', u'certainly', u'wondering', u'quickly', u'weary', u'saving', u'arrested', u'speaking', u'recommended', u'out', u'leaning', u'feeling', u'handling', u'myself', u'able', u'too', u'probably', u'the', u'awakened', u'very', u'apprenticed', u'thinking', u'fortunate', u'stepping', u'ten', u'thoroughly', u'under', u'admiring', u'recalled', u'conscious', u'shaken', u'far', u'amused', u'kind', u'alive', u'wrong', u'seated', u'overwhelmed', u'alone', u'soon', u'wide', u'placed', u'eager', u'shocked', u'right', u'clear', u'repelled', u'shown', u',', u'driven', u'disappointed', u'told', u'standing', u'naturally', u'accustomed', u'preoccupied', u'all', u'keenly', u'foolish', u'frightened', u'Miss'] -A fortnight : [u'went'] -To eat : [u'it'] -which crime : [u'may'] -have allowed : [u'anyone'] -through Oxford : [u'Street'] -a governess : [u'for'] -and burst : [u'into'] -of fidelity : [u'exacted'] -clasping and : [u'unclasping'] -. If : [u'not', u'this', u'the', u'she', u'my', u'you', u'they', u'we', u'that', u'I', u'he', u'it', u'Horner', u',', u'there', u'an', u'any'] -the suspicion : [u'of', u'that'] -some two : [u'years', u'and'] -. In : [u'his', u'this', u'two', u'the', u'that', u'another', u'these', u'a', u'each', u'spite', u'fact', u'ten', u'front', u'her', u'one', u'an', u'my', u'only', u'life', u'dress', u'2001'] -effect would : [u'also'] -. Is : [u'it', u'that', u'the'] -But come : [u'in'] -" Exactly : [u'so'] -. It : [u'was', u'seldom', u'is', u'only', u'would', u'must', u'hadn', u'seems', u'looked', u'will', u'lay', u'might', u"'", u'seemed', u'cost', u'read', u'has', u'brings', u'ran', u'had', u'corresponds', u'grew', u'drove', u'looks', u'may', u'rested', u'proved', u'becomes', u'took', u'arrived', u'came', u'cuts', u'laid', u'could', u'swelled', u'struck', u'gave', u'appears', u'walked', u'exists'] -work out : [u'the'] -slurred and : [u'the'] -work for : [u'you'] -lady herself : [u'loomed'] -evidence, : [u'I'] -a cashier : [u'in'] -grandfather had : [u'two'] -effort, : [u'straightened', u'much'] -dressed. : [u'You', 'PP'] -occupant, : [u'perhaps'] -dressed, : [u'very', u'has', u'when', u'by', u'and', u'with'] -their track : [u'.'] -. This : [u'account', u'way', u'ring', u'gentleman', u'is', u'American', u'assistant', u'business', u'also', u'observation', u'fellow', u'would', u'strange', u'terrible', u'man', u'may', u'dust', u'stone', u'year', u'we', u'press', u'was', u'looks', u'dress', u'he', u'morning', u'case', u'note', u'ground', u'barricaded', u'child'] -surrounded by : [u'none'] -gives the : [u'charm'] -Burnwell has : [u'been'] -and retained : [u'.', u'the'] -ago in : [u'a'] -command and : [u'to'] -Miss Violet : [u'Hunter'] -entity that : [u'provided'] -make allowance : [u'for'] -this long : [u'narrative'] -let the : [u'young', u'county', u'police'] -either shoulder : [u'and'] -grey suit : [u','] -for help : [u"?'", u'and', u',', u'gone'] -tie under : [u'his'] -nip in : [u'the'] -reward of : [u'1000'] -from New : [u'Mexico'] -poor rabbits : [u'when'] -crisis is : [u'over'] -Joseph. : [u'My'] -a lantern : [u',', u'.', u'in'] -medium, : [u'a', u'you'] -approached the : [u'house', u'door'] -Watson and : [u'I'] -Nay, : [u'he'] -article of : [u'a'] -be busy : [u'this'] -custody of : [u'the'] -House of : [u'Ormstein'] -exact spot : [u'at'] -gathered up : [u'the'] -business was : [u'still', u'a'] -she eclipses : [u'and'] -without further : [u'parley', u'opportunities'] -impatience to : [u'be'] -of running : [u'footfalls', u'feet'] -the manifold : [u'wickedness'] -lit and : [u'shone'] -You comply : [u'with'] -believe her : [u'to'] -highly suspicious : [u','] -difference. : [u'It'] -" When : [u'Mrs', u'I', u'my', u'you', u'Dr', u'did', u'evening', u'we', u'he'] -value?' : [u'he'] -guard, : [u'came'] -footmen declared : [u'that'] -homely little : [u'room'] -the consciousness : [u'that'] -deep blue : [u'cloak'] -additional contact : [u'information'] -telegram upon : [u'this'] -MERCHANTIBILITY OR : [u'FITNESS'] -was breaking : [u'through', u'when'] -and generally : [u'assisting'] -emerged in : [u'five', u'no'] -country of : [u'those'] -no wish : [u'to'] -round. : [u'But', u'His'] -round, : [u'but', u'hanging', u'with', u'like', u'he', u'and', u'where', u'jovial'] -it bears : [u'upon'] -and wig : [u'.'] -what are : [u'they', u'you'] -the curve : [u'of'] -accomplishment. : [u'It'] -help the : [u'lady', u'King', u'trespasser'] -in nose : [u'and'] -your intelligence : [u'by'] -lay awake : [u',', u'half'] -sharp eyed : [u'coroner'] -the blind : [u'.'] -some misgivings : [u'of'] -their fire : [u','] -THUMB Of : [u'all'] -saucer of : [u'milk'] -like this : [u',', u'noised'] -same brilliant : [u'reasoning'] -capacity for : [u'self'] -great amethyst : [u'in'] -among his : [u'old', u'hair'] -my beloved : [u'sister'] -. ' Which : [u'is'] -not such : [u'a'] -other means : [u".'"] -the glint : [u'of'] -Horner was : [u'arrested'] -beech, : [u'the'] -any assistance : [u','] -As to : [u'Mary', u'your', u'the', u'his', u'what', u'Mrs', u'reward', u'my', u'Holmes', u'who', u'Miss'] -the banks : [u'of'] -new problem : [u'.'] -the warnings : [u'."', u'of'] -place about : [u'the'] -see in : [u'the'] -be busier : [u'still'] -it self : [u'lighting'] -eye turned : [u'upon'] -Absolutely no : [u'clue'] -confess that : [u'I', u'the', u'it'] -tell my : [u'tale'] -As I : [u'passed', u'drove', u'expected', u'glanced', u'waited', u'entered', u'dressed', u'grew', u'approached', u'turned', u'opened', u'ran', u'descended', u'gave', u'have', u'came', u'was', u'strolled', u'stood'] -check book : [u'?'] -hurt a : [u'fly'] -tooth brush : [u'are'] -and questioning : [u'an'] -depends upon : [u'our', u'and'] -machine which : [u'has'] -reason why : [u'she', u'he', u'I'] -Maggie?' : [u'I'] -As a : [u'rule'] -visit an : [u'old'] -went from : [u'home'] -by chance : [u';'] -That he : [u'should'] -have suggested : [u'the'] -talk in : [u'safety'] -vulgar intrigue : [u'.'] -play for : [u'a'] -hardly visible : [u'.'] -its keen : [u'white'] -straightened it : [u'out'] -would get : [u'quite'] -; tinted : [u'glasses'] -it to : [u'an', u'him', u'them', u'a', u'be', u'affect', u'the', u'your', u'our', u'pieces', u'"', u'some', u'turn', u'satisfy', u'you', u'know', u'my', u'observe'] -refers to : [u'her'] -do better : [u'.'] -had run : [u'out', u'back', u'swiftly'] -away for : [u'days'] -cannot find : [u'words'] -better do : [u'as'] -our minds : [u'for'] -sometimes for : [u'weeks'] -country district : [u'not'] -something akin : [u'to'] -Sutherland to : [u'be'] -the basin : [u'of'] -spoken of : [u'Swandam'] -be where : [u'she'] -Holmes carelessly : [u'. "'] -get corroboration : [u'.'] -eyes to : [u'the', u'do'] -thick with : [u'the', u'dirt'] -his wet : [u'feet'] -deserted rooms : [u','] -behind the : [u'high', u'curtain'] -she lived : [u'with'] -back his : [u'son'] -really abutted : [u'on'] -motion like : [u'a'] -district not : [u'very'] -for present : [u'expenses'] -, INDIRECT : [u','] -be fond : [u'of'] -earth can : [u'be'] -or men : [u'are'] -Miss Irene : [u'Adler', u','] -be much : [u'surprised'] -there glimmered : [u'little'] -shake off : [u'the'] -innocent of : [u'this'] -in half : [u'an'] -have aroused : [u'your'] -narrow strip : [u','] -extraordinary contortions : [u'.'] -your chamber : [u'then'] -he seized : [u'my'] -melon seeds : [u'or'] -Dear me : [u"!'", u'!'] -which happened : [u'to'] -add the : [u'very'] -" Coarse : [u'writing'] -just put : [u'on'] -, homely : [u'as'] -on far : [u'slighter'] -great House : [u'of'] -essential, : [u'Miss'] -Kindly tell : [u'us'] -savagely. : [u'I'] -goose into : [u'the'] -shelf for : [u'the'] -solicitation requirements : [u','] -valid. : [u'I'] -This went : [u'on'] -, besides : [u'the', u'Mr'] -tube at : [u'night'] -in planning : [u'the'] -whip swiftly : [u'from'] -evening dress : [u','] -perhaps less : [u'suggestive'] -, seeing : [u'what', u'that', u'my', u'perhaps'] -heavy upon : [u'it'] -was writing : [u'me'] -during this : [u'inquiry'] -superscription except : [u'Leadenhall'] -our course : [u'of'] -he straightened : [u'himself'] -a hard : [u'fight', u'headed', u'man'] -drink, : [u'the', u'had', u'at', u'and'] -drink. : [u'Twice'] -extended hand : [u','] -by swimming : [u','] -and presently : [u','] -creatures from : [u'India'] -was arrested : [u'and', u'as', u'the'] -us right : [u'on'] -than possible : [u';'] -say' : [u'sir'] -enough before : [u'the'] -First Posted : [u':'] -orders were : [u'to'] -trumpet of : [u'his'] -say. : [u'I', 'PP', u'Don', u'She'] -strengthen our : [u'resources'] -say, : [u'Doctor', u'Mr', u'touch', u'dear', u"'", u'Watson', u'my', u'Peterson', u'madam', u'with', u'seems', u'then', u'farther', u'occasionally'] -to renew : [u'her'] -stone at : [u'once'] -sympathy of : [u'the'] -to Clay : [u"'"] -have both : [u'seen'] -showed me : [u',', u'how', u'that'] -and which : [u'were', u'are', u'to', u'it', u'he', u'a', u'transmit', u'lured'] -confined in : [u'the'] -summons to : [u'Odessa'] -took down : [u'a', u'from'] -has 220 : [u'pounds'] -Ah yes : [u','] -really! : [u'I'] -most instructive : [u'."'] -ominous bloodstains : [u'upon'] -stand, : [u'it'] -invariably locked : [u',', u'.'] -' end : [u'what'] -this trusty : [u'tout'] -hanging by : [u'the'] -why did : [u'you', u'he'] -suggestive one : [u'."'] -renew her : [u'entreaties'] -decrepit figure : [u'had'] -my will : [u'.'] -the nature : [u'of'] -your troubles : [u'."'] -thoughts turning : [u'in'] -wings, : [u'like'] -cost me : [u'something'] -be interested : [u'in'] -indeed exceeded : [u'all'] -again whenever : [u'she'] -field and : [u'was'] -local Herefordshire : [u'paper'] -brought back : [u'his', u'in'] -large black : [u'linen'] -to write : [u'every', u'letters'] -Just beyond : [u'it'] -the lid : [u'.', u'was', u'from'] -well face : [u'the'] -having too : [u'much'] -walked round : [u'it', u'the'] -Union. : ['PP'] -once been : [u'shown'] -these hot : [u'fits'] -fifty yards : [u'across'] -dusty and : [u'cheerless'] -became engaged : [u'.', u'to'] -not come : [u'in', u'to', u'at', u'back', u'either'] -my custom : [u'to', u",'"] -all over : [u',', u'the', u'it', u',"', u'with', u'in', u'.'] -very careful : [u'examination', u','] -was searching : [u'his'] -mind you : [u'so'] -burden to : [u'them'] -powers so : [u'sorely'] -barred door : [u','] -daring men : [u','] -I suddenly : [u'heard'] -elderly man : [u',', u'with'] -. Bring : [u'him'] -her confederate : [u'?'] -injuries were : [u'such'] -bedroom the : [u'window'] -near Petersfield : [u'.'] -has long : [u'been'] -trampled grass : [u'.'] -the presence : [u'of'] -am not : [u'mistaken', u'accustomed', u'sure', u'more', u'convinced', u'quite', u'over', u'intruding', u'hysterical', u'very', u'joking', u'retained', u'a', u'easy'] -finished my : [u'tea'] -you these : [u'results'] -pocket is : [u'a'] -so the : [u'observer', u'place', u'Foundation'] -died it : [u'was'] -begged a : [u'fortnight'] -boot to : [u'his'] -a good : [u'deal', u'cause', u'look', u'worker', u'turn', u'man', u'one', u',', u'husband', u'scar', u'fat', u'article', u'three', u'drive', u'seven', u'hundred', u'sized', u'strong', u'seaman'] -not fall : [u'upon'] -I owe : [u'you', u','] -the cell : [u'.'] -surprise. " : [u'Do'] -for photography : [u'.', u','] -newcomers our : [u'client'] -any sort : [u". '", u'of', u'from'] -gained through : [u'one'] -I fix : [u'the'] -but to : [u'name', u'get'] -broke in : [u'the'] -bunch of : [u'keys'] -habits so : [u'far'] -the stairs : [u'and', u',', u'which', u'."', u'.', u'I', u', "', u'as', u'together'] -upper floor : [u','] -the West : [u'End'] -very annoyed : [u'at'] -brain attic : [u'stocked'] -material for : [u'showing'] -close the : [u'window', u'door', u'front'] -category. : [u'You'] -gentleman," : [u'said'] -rising, " : [u'and'] -Then when : [u'you'] -different. : ['PP', u'It'] -to each : [u'candidate', u'of', u'other'] -picking flowers : [u'.'] -enemies, : [u'or'] -to Project : [u'Gutenberg'] -enemies. : [u'I'] -particularly to : [u'two'] -horribly mangled : [u','] -brushed for : [u'weeks'] -Royalty payments : [u'', u'should'] -lamp still : [u'stood'] -our new : [u'companion', u'visitor', u'acquaintance', u'eBooks'] -have brought : [u'some', u'an', u'a', u'trouble'] -was amiss : [u'with'] -green room : [u'for'] -?" His : [u'eyes'] -, covered : [u'those', u'her'] -placed, : [u'I'] -few centuries : [u'ago'] -a possibility : [u'of'] -easy and : [u'common'] -his pockets : [u',', u'for'] -whole place : [u'is', u'been'] -stop it : [u'.'] -so a : [u'happy'] -a non : [u'profit'] -Peter Jones : [u','] -nearly one : [u'o'] -again I : [u'just', u'sat', u'laughed'] -them but : [u'just'] -which must : [u'always', u'draw', u'have', u'be', u'within'] -are seeking : [u'employment'] -kind to : [u'leave', u'me', u'her'] -interest which : [u'sprang'] -often vanish : [u'before'] -medical man : [u'are'] -returns from : [u'her'] -corner. : [u'Then'] -INDEMNITY- : [u'You'] -corner, : [u'a', u'still', u'saw'] -in animated : [u'conversation'] -as this : [u'was', u'Miss', u'.', u'that', u'matter'] -a not : [u'over'] -delicate part : [u'which'] -my ignorance : [u'of'] -the impunity : [u'with'] -shops and : [u'stately'] -motion. : ['PP'] -these disreputable : [u'clothes'] -conveyed no : [u'meaning'] -he have : [u'done'] -come. ' : [u'A'] -shock of : [u'very', u'orange'] -contents. : ['PP'] -snow. : [u'That'] -If you : [u'will', u'leave', u'can', u'two', u'don', u'find', u'would', u'remember', u'won', u'come', u'show', u'choose', u'but', u'have', u'were', u'please', u'should', u'could', u'do', u'paid', u'are', u'wish', u'discover', u'received'] -wedding was : [u'arranged'] -letters for : [u'blackmailing'] -pipe down : [u'upon'] -them seemed : [u'to'] -responsible for : [u'Dr', u'her'] -curves past : [u'about'] -tunes which : [u'he'] -But soon : [u'he'] -moss where : [u'he'] -Stoke Moran : [u'.', u',', u'back', u'to', u'this', u'."', u'?"', u'Manor'] -, seems : [u'to'] -to Briony : [u'Lodge'] -smoking to : [u'cocaine'] -two storied : [u'brick', u','] -security sufficient : [u"?'"] -now with : [u'a', u'so'] -I recall : [u'the'] -eyes upon : [u'my', u'each'] -recommence your : [u'narrative'] -be right : [u'.'] -held up : [u'a', u'the', u'one'] -Violence of : [u'temper'] -two stories : [u'.'] -single flaming : [u'beryl'] -these last : [u'which'] -anything but : [u'real'] -unusual thing : [u'to'] -what secret : [u'it'] -a valuable : [u'product'] -interest me : [u'extremely'] -McCarthy kept : [u'two'] -surmise as : [u'to'] -own ink : [u','] -Jack with : [u'the'] -You should : [u'be', u'have'] -bring the : [u'matter', u'business'] -be alive : [u'or', u','] -my occupation : [u','] -was plainly : [u'furnished', u'but'] -his lank : [u'wrists'] -and respectable : [u',', u'life'] -objection might : [u'be'] -cargo. : [u'By'] -themselves in : [u'communication'] -stood upon : [u'the'] -He carried : [u'a'] -instant that : [u'we', u'I', u'she'] -The lens : [u'discloses'] -explained away : [u'.'] -followed after : [u'him'] -sight and : [u'typewriting'] -personally into : [u'it'] -clearly to : [u'bring'] -tightly behind : [u'him'] -little pallet : [u'bed'] -fastened. : ['PP'] -" Beyond : [u'the'] -which are : [u'of', u'really', u',', u'going', u'so', u'worth', u'displayed', u'suggestive', u'rolled', u'not', u'very', u'to', u'sent', u'outside', u'next', u'the', u'confirmed'] -philanthropist or : [u'a'] -being less : [u'bold'] -bound to : [u'have', u'Hosmer', u'disappoint', u'Savannah', u'say'] -alias. : ['PP'] -dull, : [u'indeed'] -my point : [u'.', u'."'] -every sufferer : [u'over'] -hoarsely. " : [u'All'] -were new : [u'to', u'raised'] -uniform and : [u'it'] -features of : [u'interest'] -of another : [u",'", u'.'] -streets of : [u'the', u'London'] -beautifully defined : [u'.'] -It rested : [u'upon'] -anxiety. : ['PP'] -on saying : [u'that'] -have twice : [u'been'] -. Are : [u'you'] -machine.' : [u'He'] -, clean : [u'shaven', u'cut'] -see over : [u'these'] -gentleman much : [u'hurt'] -once not : [u'only'] -jump until : [u'I'] -nothing more : [u'.', u'crude', u'deceptive', u'to'] -fought in : [u'Jackson'] -merely that : [u'Holmes'] -screening him : [u'or'] -Striding through : [u'the'] -him know : [u'that'] -very pretty : [u'villain', u'diversity', u'girl'] -was thrown : [u'over', u'from', u'by'] -of compliance : [u'.', u'for'] -and delicacy : [u'and', u'in'] -are past : [u'.', u'."'] -solid iron : [u','] -If it : [u'had'] -table of : [u'which'] -convenient hour : [u"?'"] -very funny : [u',"'] -insane. : ['PP'] -relic of : [u'my'] -table on : [u'the'] -trough of : [u'a'] -The place : [u'we'] -brave, : [u'for'] -his mother : [u'and', u','] -six almost : [u'parallel'] -Why,' : [u'says'] -, libraries : [u','] -Why," : [u'said', u'he'] -all associated : [u'files'] -nothing better : [u'than'] -hullo, : [u'here'] -was responsible : [u'for'] -pair of : [u'beauties', u'wonderfully', u'bushy', u'the', u'very', u'high', u'white', u'his', u'glasses'] -final step : [u'I'] -earth. : ['PP', u'To'] -any other : [u'name', u'idler', u'day', u'little', u'suitor', u'weapon', u'people', u'engagement', u'fashion', u'work', u'Project', u'party'] -I poured : [u'out'] -my trouble : [u'to'] -in Dundee : [u'it'] -; too : [u'much'] -either upon : [u'his'] -s wit : [u'.'] -old family : [u'seat'] -pew at : [u'the'] -are paying : [u'to'] -one over : [u'yonder'] -hedge upon : [u'either'] -something passing : [u'through'] -we passed : [u'down', u'at', u'out'] -A chair : [u'had'] -of sherry : [u'pointed'] -to fix : [u'the'] -which promises : [u'to'] -groom out : [u'of'] -useless, : [u'however', u'since'] -Jump up : [u'here'] -be before : [u'me'] -dull eyes : [u'had'] -day had : [u'nothing'] -bought a : [u'penny', u'small'] -slip to : [u'the'] -London Bridge : [u'.'] -formed the : [u'opinion'] -depositors. : [u'One'] -taken it : [u'out', u'upstairs'] -drew itself : [u'shoulder'] -notice that : [u'of'] -A loud : [u'thudding'] -murders, : [u'a'] -fellow said : [u'that'] -Here are : [u'your', u'the', u'his'] -strength. : ['PP', u'At', u'Together'] -I dine : [u'at'] -cannot imagine : [u'."', u'.', u'how'] -fastened to : [u'a'] -. " They : [u'would', u'used', u'may', u'might', u'are', u'have'] -lens discloses : [u'a'] -oath. ' : [u'Tell'] -certain amount : [u'of'] -. " Then : [u'I', u'that'] -need. : [u'It', 'PP'] -" Was : [u'there', u'he', u'the', u'your', u'she'] -an absolute : [u'imbecile', u'darkness'] -he stopped : [u'under'] -eccentric conduct : [u'had'] -She will : [u'not'] -two visitors : [u'vanished'] -taste," : [u'I'] -night of : [u'May', u'adventure'] -flushing up : [u'to', u'at'] -her room : [u',', u'.', u'was'] -answer I : [u'confess'] -a disappointment : [u'to'] -days since : [u'you'] -some coldness : [u','] -two matters : [u'of'] -considerable sums : [u'of'] -may tell : [u'you'] -point very : [u'straight'] -pausing only : [u'at'] -terrible secret : [u'society'] -is but : [u'one', u'a'] -or distributed : [u':'] -" Here : [u'is', u'we', u'?"'] -He found : [u','] -a physical : [u'medium'] -START: : [u'FULL'] -me my : [u'dear', u'violin'] -duplicate bill : [u'.'] -older jewels : [u'every'] -great gravity : [u'was'] -at Christmas : [u'.', u'two'] -his name : [u'was', u'will', u'."', u','] -special subject : [u'.'] -that they : [u'would', u'really', u'cared', u'had', u'should', u'appeared', u'were', u'brought', u'are', u'can', u'exactly', u'may', u'have'] -Spaulding, : [u'and', u'he'] -Spaulding. : [u"'", 'PP'] -put themselves : [u'in'] -He seemed : [u'quite'] -goose slung : [u'over'] -readable by : [u'the'] -will leave : [u'that', u'the', u'in', u'no', u'your'] -Regent Street : [u',', u'with'] -pick of : [u'her'] -his overcoat : [u',', u'. "'] -open eyed : [u','] -full market : [u'price'] -following enigmatical : [u'notices'] -we expected : [u'to'] -considerable fortune : [u'in'] -high and : [u'waist'] -tradespeople, : [u'so'] -exclamation in : [u'German'] -who leaves : [u'the'] -hear your : [u'Majesty', u'real'] -were rather : [u'cumbrous'] -of cuff : [u'or'] -keen white : [u'teeth'] -. " Surely : [u'this'] -so hand : [u'me'] -doing for : [u'some'] -armchair. " : [u'You'] -have covered : [u'all'] -luck during : [u'this'] -take care : [u'of'] -his rustic : [u'surroundings'] -, than : [u'to', u'that'] -To protect : [u'the'] -d had : [u'the'] -You did : [u'not', u'it', u','] -so we : [u'shut', u'may', u'drew', u'passed', u'just', u'came'] -whatever. : [u'There'] -a plain : [u'one', u'answer', u'wooden', u'clothes'] -a business : [u'man', u'already', u'."', u'turn'] -mission. : [u'You'] -window with : [u'my'] -a plaid : [u'perhaps'] -month. ' : [u'You'] -vestas. : [u'Some'] -that chair : [u'."'] -miss anything : [u'of'] -indeed a : [u'mystery', u'fact', u'gigantic', u'door'] -corner dashed : [u'forward'] -deep lined : [u','] -expenses of : [u'their'] -awake half : [u'the'] -and earnestly : [u'at'] -indeed I : [u'do'] -know if : [u'evil'] -he spoke : [u'there', u'the', u',', u'of', u'he', u". '"] -predominated in : [u'him'] -way. : ['PP', u'He', u'I', u'When', u'Folk', u'You'] -way, : [u'since', u'Doctor', u'please', u'with', u'is', u'if', u'that', u'in', u'about', u'would', u'and', u'there', u'I', u'perhaps', u'but'] -their land : [u'contained', u'before'] -information in : [u'his'] -this weather : [u'.'] -, excuse : [u'me'] -a snow : [u'clad'] -rush of : [u'steps', u'constables'] -become a : [u'public'] -was piled : [u'all'] -long after : [u'my'] -; " a : [u'man'] -of voices : [u'from'] -Nothing could : [u'have', u'be'] -known Surrey : [u'family'] -remark to : [u'break'] -date during : [u'the'] -critical to : [u'reaching'] -natural enemies : [u','] -shop, : [u'the', u'approached'] -shop. : [u'You'] -vanished; " : [u'I'] -from another : [u'standpoint'] -sings at : [u'concerts'] -married Lord : [u'St'] -twig. : ['PP'] -that before : [u'."', u'?"', u'taking'] -indiscreetly playing : [u'with'] -remarkable bird : [u'it'] -had accomplished : [u'so'] -moist earth : [u'.'] -person has : [u'a'] -depend so : [u'entirely'] -tall dog : [u'cart'] -of drink : [u'.', u','] -Making our : [u'way'] -and tear : [u'about'] -purpose can : [u'be'] -afternoon he : [u'sat'] -framed himself : [u'in'] -the ball : [u'."'] -posted at : [u'http'] -. " Never : [u'was'] -have happened : [u'?', u'in', u'between', u','] -K of : [u'the'] -the stevedore : [u'who'] -was composed : [u'of'] -sized fellow : [u','] -port of : [u'London'] -would not : [u'be', u'go', u'hear', u'risk', u'dare', u'have', u'remain', u'answer', u'listen', u'speak', u'miss', u'think', u'tell', u'object', u'advise'] -left glove : [u'.'] -" Capital : [u'!'] -Ryder. : ['PP', u'Pray'] -Ryder, : [u'upper', u'of', u'that'] -more of : [u'the', u'Hugh', u'your'] -We stepped : [u','] -Ryder' : [u's'] -more on : [u'the'] -allusions to : [u'a'] -' re : [u'hunting', u'looking', u'mad', u'angry'] -just two : [u'years', u'little'] -would crawl : [u'down'] -hung like : [u'an'] -the grime : [u'which'] -could my : [u'hair'] -drive. : ['PP'] -when my : [u'way', u'father', u'uncle', u'sister', u'companion', u'eye', u'brother'] -drive, : [u'starting', u'but', u'then', u'and'] -rocked himself : [u'to'] -disadvantage, : [u'they'] -in Sherlock : [u'Holmes'] -I; : [u'but'] -bred. : ['PP'] -huddled in : [u'a'] -And has : [u'your'] -dashed some : [u'brandy'] -strong lock : [u'?"'] -only native : [u'born'] -instant in : [u'bringing'] -breaks down : [u'under'] -I, : [u'rather', u'with', u'when', u'glancing', u'who', u'handing', u'laughing', u'you', u'sitting', u'examining', u'"', u'after', u'smiling', u'considerably', u"'"] -I. : [u'A', 'PP', u'His', u'It', u'And', u'I', u"'", u'He', u'The'] -theory by : [u'means'] -I' : [u've', u'll', u'm', u'd'] -dazed with : [u'astonishment'] -his chair : [u'and', u',', u'in', u'with', u'now', u'once', u'up', u'he', u'as', u'.', u'showed', u'very'] -Remember the : [u'card'] -, violin : [u'player'] -of incidents : [u'should'] -her pleading : [u'face'] -window which : [u'leads'] -met speciously : [u'enough'] -home with : [u'my', u'odd', u'you'] -Holmes quietly : [u'; "', u'. "', u'.'] -bird will : [u'be'] -will no : [u'doubt'] -we set : [u'off'] -round are : [u'part'] -very distinct : [u','] -creature flapped : [u'and'] -say whether : [u'the'] -disfigured by : [u'a'] -thing," : [u'remarked', u'answered', u'said'] -been caused : [u'by'] -we see : [u'that'] -suddenly tailing : [u'off'] -Freemasonry. : ['PP'] -Sutherland has : [u'troubled'] -the cabs : [u'go'] -volume, " : [u'that'] -in addition : [u',', u'to'] -a terrified : [u'woman'] -woman appeared : [u'with'] -engagement at : [u'that'] -any furniture : [u'above'] -the rocket : [u','] -a prosecution : [u'must'] -strange effects : [u'and'] -power of : [u'such', u'making'] -the return : [u'to'] -the twentieth : [u'of'] -waited I : [u'should'] -hundred yards : [u'from', u'or'] -style. : [u'By'] -under half : [u'a'] -we be : [u'married'] -clay; : [u'but'] -possible. : [u'The', u'Turner', 'PP', u'He'] -earth does : [u'this'] -possible, : [u'however', u'and', u'so', u'but'] -deeds of : [u'hellish'] -stood and : [u'talked'] -she slept : [u'.'] -rifle. : [u'This'] -had raised : [u'my'] -quality. : [u'Look'] -west I : [u'had'] -the gold : [u'mines', u',', u'chasing', u'corners'] -what women : [u'are'] -which need : [u'smoking'] -have spent : [u'the', u'!"'] -been out : [u'in', u'with', u'to'] -driving with : [u'my'] -stains from : [u'any', u'a'] -often had : [u'a'] -them less : [u'so'] -saw clearly : [u'not'] -the writer : [u'was', u'."'] -very wrinkled : [u','] -same," : [u'whined'] -address, : [u'which', u'and'] -address. : ['PP', u'Yes', u'I', u'Oh'] -sleep out : [u'of'] -in admiring : [u'the'] -deluded when : [u','] -" Away : [u'they', u'we'] -solution by : [u'the'] -he desires : [u'to'] -its mission : [u'of'] -premises, : [u'and', u'but'] -recommend you : [u'also', u'to'] -premises. : ['PP'] -mtier, : [u'and'] -questioning. : [u'I'] -no obstacle : [u'to'] -tapped on : [u'the'] -lashed so : [u'savagely'] -. Should : [u'it', u'I'] -of last : [u'year', u'Monday', u'night'] -to examine : [u'minutely', u'its', u'."', u'the', u'it'] -roughs who : [u'assaulted'] -the repulsive : [u'sneer'] -distribute this : [u'work'] -. " Data : [u'!'] -were that : [u'he'] -out nothing : [u'save'] -the poison : [u'or', u'fangs'] -For all : [u'these', u'the'] -hollowed out : [u'by'] -opening between : [u'two'] -him home : [u'a', u'in'] -looking across : [u'at'] -am but : [u'thirty'] -our neighbours : [u','] -plush upon : [u'her'] -to befall : [u'it'] -as man : [u'could'] -important factor : [u'in'] -cigar holder : [u',', u'?"'] -Station we : [u'saw'] -suspect him : [u'."'] -hold out : [u'while'] -or sound : [u','] -was mad : [u'insane'] -right angle : [u'at'] -have started : [u'early'] -have carte : [u'blanche'] -interested I : [u'am'] -proves nothing : [u'.'] -she. " : [u'You', u'I', u'Well', u'How', u'Her'] -she. ' : [u'It'] -children over : [u'to'] -into words : [u'to'] -, so : [u'that', u'I', u'we', u',', u'it', u'kindly', u'there', u'what', u'McCarthy', u'moist', u'long', u'the', u'hand', u'if', u'as', u'old', u'much', u'sudden', u'so', u'he', u'a', u'when', u'thick'] -so very : [u'shiny', u'sharp', u'young', u'kind'] -bent on : [u'felony'] -, viewed : [u','] -held 1000 : [u'pounds'] -where Mr : [u'.'] -smoke laden : [u'and'] -lock it : [u'up'] -a grove : [u'at'] -medical adviser : [u','] -observing him : [u'.'] -judgment that : [u'I'] -quill pen : [u','] -a crab : [u','] -to trace : [u'some', u'her'] -his constitution : [u'has'] -I keep : [u'it'] -you my : [u'word'] -Our cabs : [u'were'] -last eight : [u'years'] -been left : [u'by', u'behind'] -the money : [u'.', u',', u'just', u'of', u'and', u'which', u'should', u'in', u'!"', u'('] -looking about : [u'for'] -at Coventry : [u','] -of steam : [u'escaping'] -as may : [u'be'] -force from : [u'behind'] -and heavily : [u'.', u'veiled'] -key turn : [u'in'] -my God : [u',', u'!'] -courtesy for : [u'which'] -delusion from : [u'a'] -an hour : [u',', u'before', u'matters', u'and', u'."', u'instead', u'.', u'the', u"'", u'we', u'ago', u'I', u'there', u'to', u'or', u'on'] -do or : [u'cause'] -moisture on : [u'his'] -more damning : [u'case'] -," such : [u'as'] -if only : [u'as'] -troubles. : ['PP'] -never meant : [u'for'] -including how : [u'to'] -was let : [u'to'] -had foretold : [u','] -, lighting : [u'a'] -That sounded : [u'ominous'] -unlike those : [u'of'] -this register : [u'and'] -then looked : [u'round'] -the disgrace : [u'.'] -Ah," : [u'said'] -got brain : [u'fever'] -, save : [u'with', u'that', u'for', u'only', u'some'] -my success : [u'.'] -would it : [u'bore', u'be'] -was she : [u'to'] -you prefer : [u'it'] -numbers after : [u'their'] -the parish : [u'clock', u'who'] -there to : [u'see', u'personate'] -jutting pinnacles : [u'which'] -considerable success : [u'.'] -class of : [u'society'] -stock, : [u'paying'] -for Project : [u'Gutenberg'] -very carefully : [u'.', u'from', u'and', u'round'] -investments for : [u'our'] -beginning to : [u'get', u'look', u'be'] -. Contact : [u'the'] -two o : [u"'"] -hearts, : [u'do', u'and'] -convinced now : [u'that'] -. Across : [u'his'] -Cassel Felstein : [u','] -downstairs, : [u'but', u'on', u'and'] -her forearm : [u'. "'] -downstairs. : [u'As'] -unfortunate acquaintance : [u'so'] -, washing : [u'it'] -always managed : [u'to'] -scorn her : [u'advice'] -life appears : [u'to'] -and dropped : [u'to', u'his', u'them'] -call, : [u'for'] -call. : ['PP', u'She'] -early enough : [u'."'] -line a : [u'little'] -destitute as : [u'I'] -quite to : [u'fill'] -make neither : [u'head'] -sheet of : [u'thick', u'his', u'note', u'water', u'paper', u'sea', u'blue', u'the'] -bank robbery : [u'that'] -and say : [u',', u'no'] -concern in : [u'the'] -and sat : [u'down', u'day', u'silent'] -famous coronet : [u','] -and saw : [u'a', u'scrawled', u',', u'us', u'the', u'Frank', u'that', u'him'] -his pipe : [u'down', u',', u'with'] -the advertisement : [u'column', u',', u", '", u'.', u'how', u'of', u'about', u'sheet', u'columns'] -papers to : [u'illustrate'] -that open : [u'window'] -Some scaffolding : [u'had'] -in view : [u'of'] -a recognised : [u'character'] -you read : [u'?"'] -complying with : [u'the'] -to tie : [u'my'] -its exact : [u'meaning'] -making a : [u'trumpet', u'fool', u'row'] -muttering that : [u'no'] -hall table : [u'.'] -protruding fingers : [u'and'] -has accumulated : [u'the'] -any steps : [u'which', u'until'] -son' : [u's'] -gravely. " : [u'It', u'I'] -take us : [u'at'] -son, : [u'a', u'Mr', u'and', u'for', u'as', u'you', u'so', u'my', u'Arthur', u'who', u'finding', u'told'] -the obvious : [u'facts', u'course', u'fact'] -son. : ['PP', u'The', u'He', u'Her'] -spring up : [u'among'] -applicable to : [u'this'] -cracks between : [u'the'] -, distinctly : [u'professional'] -The method : [u'was'] -be cunning : [u'devils'] -a cry : [u'and', u'of', u'for', u','] -was elbowed : [u'away'] -son; : [u'but', u'he'] -triumphant cloud : [u'from'] -the scissors : [u'grinder', u'of'] -operatic stage : [u'ha'] -left my : [u'armchair', u'chair', u'miserable'] -or west : [u'I'] -an emerald : [u'snake'] -promptly, : [u'closing'] -chaff which : [u'may'] -seat and : [u'was', u'stood'] -the badge : [u'of'] -left me : [u';', u'by', u'my', u','] -set any : [u'tax'] -One horse : [u'?"'] -not appear : [u'against', u'to'] -preparations have : [u'gone'] -of damages : [u'.'] -effort he : [u'braced'] -steadings peeped : [u'out'] -your theory : [u'.'] -cleaned and : [u'scraped'] -year 1858 : [u'.'] -but my : [u'own', u'station', u'mind', u'curiosity'] -s dressing : [u'room'] -any humiliation : [u'."'] -forget for : [u'half'] -lunch at : [u'Swindon'] -14 from : [u'Cannon'] -rise to : [u'the'] -von Saxe : [u'Meningen'] -porter with : [u'a'] -merely the : [u'wild'] -retired Saxe : [u'Coburg'] -agreement. : [u'If', u'There', u'See'] -had strange : [u'fads'] -struggled frantically : [u','] -look came : [u'over'] -point is : [u','] -for robbery : [u'having'] -expostulating with : [u'them'] -; they : [u'had'] -house to : [u'the', u'see'] -should, : [u'according'] -should. : ['PP'] -a considerable : [u'amount', u'interest', u'sum', u'difference', u'household', u'state', u'share', u'dowry', u'part', u'effort'] -way has : [u'escaped'] -shall learn : [u'nothing'] -I write : [u'from'] -steps descending : [u'the'] -; then : [u'he', u'that'] -long silence : [u'. "', u','] -you said : [u'that', u'just', u'you'] -tenable. : ['PP'] -coloured, : [u'broad'] -off to : [u'make', u'violin', u'France', u'bed', u'sleep', u'seek', u'some'] -allow, : [u'is'] -time and : [u'showed', u'looking', u'pledged'] -foie gras : [u'pie'] -more stress : [u'is'] -You will : [u'excuse', u'find', u'remember', u'first', u',', u'leave', u'tell', u'sign', u'ask', u'observe', u'not', u'be', u'see'] -extreme love : [u'of'] -He used : [u'to'] -charming climate : [u'of'] -outside air : [u'!"'] -morning and : [u'make'] -very brightly : [u','] -to Londoners : [u','] -her key : [u'turn'] -under it : [u'.'] -me carte : [u'blanche'] -to discover : [u'what', u'that', u'the'] -fathom. : ['PP', u'Once'] -pips which : [u'would'] -how quick : [u'and'] -shown Horner : [u'up'] -parted lips : [u','] -whether it : [u'answered', u'will', u'was'] -my advice : [u',', u'in'] -was drenched : [u'with'] -SIMON. : ['PP'] -in memory : [u'of'] -stepfather do : [u'to', u'then'] -introduced by : [u'him'] -. Very : [u'much', u'retiring', u'long', u'likely', u'few'] -drew on : [u'our'] -else in : [u'the'] -of time : [u'to', u',', u'and'] -where pa : [u'was'] -proposal and : [u'all'] -were admirable : [u'things'] -always. : [u'Kindly'] -following the : [u'guidance', u'future'] -I chose : [u"?'"] -Gottsreich Sigismond : [u'von'] -laughed indulgently : [u'. "'] -recalled to : [u'myself'] -following sentence : [u','] -Large masses : [u'of'] -! Living : [u'in'] -to resolve : [u'all', u'our'] -an individual : [u'and', u'work', u'Project'] -would slam : [u'his'] -broke off : [u'by'] -machine at : [u'the'] -will sign : [u'it'] -successors. : [u'Did'] -his return : [u','] -Elias and : [u'my'] -common looking : [u'person'] -prevent it : [u'?'] -quite understand : [u'your', u'that', u'was'] -doubt familiar : [u'to'] -back by : [u'his', u'some'] -the officials : [u'.'] -coat had : [u'remained'] -, even : [u'as', u'on', u'in', u'execution', u'if', u'though', u'of'] -come of : [u'this'] -stepped swiftly : [u'forward'] -, stretched : [u'down'] -his agent : [u'to'] -lean figure : [u'of'] -) your : [u'periodic'] -t you : [u'see', u'?"', u'dare', u'ever'] -clutches of : [u'a', u'such'] -My messenger : [u'reached'] -really dead : [u'.'] -white waistcoat : [u','] -of foresight : [u','] -professional matter : [u'that'] -of docketing : [u'all'] -clear field : [u'.'] -wife he : [u'disguised'] -no robbery : [u','] -fragment of : [u'a'] -chagrined. : [u'He'] -my hearing : [u'was'] -come on : [u'this'] -ate is : [u'country'] -shouldn' : [u't'] -there a : [u'secret', u'few', u'dark', u'half', u'couple', u'police', u'cellar'] -British barque : [u'"'] -Have your : [u'pistol'] -crime until : [u'he'] -his club : [u',', u'debts'] -Creating the : [u'works'] -. Amid : [u'the'] -Boone instantly : [u','] -from Holmes : [u'that'] -intellectual problem : [u'.'] -that foul : [u'tongue'] -an influence : [u'upon', u'over'] -the Atkinson : [u'brothers'] -Europe have : [u'shown'] -promise well : [u',"'] -week after : [u'.'] -Gone was : [u'the'] -Holmes pushed : [u'open', u'back', u'him'] -growing under : [u'it'] -fluffy pink : [u'chiffon'] -sign to : [u'me'] -end of : [u'that', u'the', u'our', u'this', u'his', u'it', u'my', u'time', u'your', u'a'] -measures I : [u'took'] -urging his : [u'son'] -floating about : [u'.'] -burst out : [u'into', u'of'] -the hat : [u'had', u'of', u'upon', u'securer'] -much public : [u'attention'] -It may : [u'be', u'seem', u'not', u'well', u'give', u'have', u',', u'stop', u'turn', u'only'] -memoir of : [u'him'] -acquaintance with : [u'his'] -and from : [u'the', u'our', u'that'] -, ha : [u',', u'!'] -were quarrels : [u','] -, he : [u'waved', u'tore', u'stretched', u'pulled', u'driving', u"'", u'set', u'has', u'came', u'did', u'went', u'was', u'had', u'looked', u'told', u'leaned', u'appears', u'conveniently', u'ought', u'remarked', u'could', u'naturally', u'rushed', u'stumbled', u'took', u'would', u',', u'laid', u'straightened', u'declared', u'gives', u'will', u'broke', u'found', u'never', u'is', u'refused', u'established', u'beat', u'suffered', u'shut', u'spoke', u'started', u'might', u'whispered', u'hurried', u'walked', u'denied', u'tried', u'begged', u'ordered', u'kept', u'produced'] -neck and : [u'sleeves', u'wrists'] -and proposed : [u'that'] -some bitterness : [u'. "'] -your fiver : [u','] -wing,' : [u'I'] -morocco casket : [u'in'] -? Ha : [u','] -mysteries and : [u'improbabilities'] -be expected : [u'in', u'to'] -? He : [u'said', u'takes', u'conceives', u'had'] -round with : [u'crates'] -Your case : [u'is'] -Prosper. : ['PP'] -closed somewhere : [u'.'] -strong in : [u'the'] -moon was : [u'shining'] -wealth so : [u'easily'] -lock to : [u'the'] -paper was : [u'made'] -quiet air : [u'of'] -Holmes turned : [u'over', u'to'] -step which : [u'leads'] -there I : [u'met', u'was', u'found', u'used'] -he has : [u'secreted', u'cruelly', u'at', u'been', u'done', u'his', u'not', u'the', u'suffered', u'helped', u'blasted', u'220', u'reaped', u'heard', u'already', u'accumulated', u'now', u'had', u'gas', u'assuredly', u'broken', u'less', u'endeavoured', u'played', u'always', u'followed', u'knowledge', u'a', u'frequently', u'little'] -Now where : [u'did'] -will enter : [u'Dr'] -rounded shoulders : [u','] -he had : [u'accomplished', u'apparently', u'adopted', u'left', u'intrusted', u'a', u'half', u'never', u'dropped', u'been', u'set', u'heard', u'seen', u'parted', u'some', u'drifted', u'listened', u'gone', u'started', u'borrowed', u'married', u'spent', u'told', u'an', u'found', u'that', u'driven', u'stated', u',', u'no', u'then', u'picked', u'the', u'tossed', u'come', u'done', u'evidently', u'once', u'drenched', u'two', u'on', u'promised', u'either', u'shown', u'closed', u'staggered', u'met', u'sold', u'not', u'remained', u'caged', u'laid', u'ever', u'brought', u'as', u'fixed', u'taken', u'settled', u'named', u'again', u'only', u'stronger', u'to', u'deserved', u'passed', u'pursued', u'emerged', u'sat'] -to face : [u'with'] -the text : [u','] -the excitement : [u'of'] -devil,' : [u'he'] -Some friend : [u'of'] -you hungry : [u','] -an interview : [u'with'] -trap rattled : [u'back'] -put up : [u'the', u'our'] -little. : [u'I', 'PP'] -little, : [u'shabby', u'you', u'if', u'is', u'plainly', u'Mr', u'and'] -pipe between : [u'his'] -never go : [u'into'] -a few : [u'centuries', u'minutes', u'days', u'hundred', u'words', u'hours', u'clumps', u'years', u'paces', u'hurried', u'lights', u'square', u'inferences', u'others', u'of', u'acres', u'moments', u'fleecy', u'feet', u'patients', u'whispered', u'weeks', u'particulars', u'things', u'months', u'yards', u'drops', u'more', u'grateful'] -little' : [u'Hosmer'] -dimly lit : [u'street'] -quarrel. : [u'She', 'PP'] -doubt its : [u'value'] -little? : [u'Too'] -a fee : [u'which', u'for', u'or'] -were playing : [u'for'] -having broken : [u'the'] -were such : [u'as', u'commands'] -a distinct : [u'proof', u'odour', u'element', u'sound'] -of Swandam : [u'Lane'] -Watson has : [u'not'] -present a : [u'singular', u'more'] -symptoms. : [u'Ha'] -and composed : [u'himself'] -story and : [u','] -Fowler was : [u'a'] -, chemistry : [u'eccentric'] -below," : [u'said'] -sallies from : [u'which'] -points for : [u'you'] -sense that : [u'he'] -murderous attack : [u'?"'] -s hat : [u','] -society with : [u'his'] -, explaining : [u'that'] -dear to : [u'him'] -s body : [u'is'] -small one : [u','] -for your : [u'argument', u'deed', u'services', u'coming', u'friends'] -a shawl : [u'round'] -stone to : [u'Kilburn'] -I eat : [u','] -who know : [u'him', u'little'] -charities and : [u'charitable'] -possibly find : [u'this'] -cleared, : [u'or', u'so'] -cleared. : ['PP'] -sits in : [u'her'] -lad who : [u'drove'] -most singular : [u'which', u'that', u'and'] -nothing," : [u'said'] -, uncle : [u"?'"] -cleared" : [u'just'] -individual and : [u'becomes'] -humiliation. : ['PP'] -this fleshless : [u'man'] -especially Thursday : [u'and'] -he never : [u'did', u'came', u'got'] -old country : [u'.', u'houses', u'house'] -lodge in : [u'Swandam'] -was mistaken : [u','] -AGREE THAT : [u'YOU', u'THE'] -all at : [u'the'] -s office : [u','] -orange from : [u'the'] -he went : [u'up', u'off', u'out', u',', u'prospecting'] -curious termination : [u','] -mile drive : [u'before', u'?"'] -Could he : [u'throw'] -did break : [u'it'] -three at : [u'the'] -order of : [u'the', u'time'] -treasure, : [u'he'] -since the : [u'name', u'doctor', u'marriage', u'ruined', u'evening'] -wife might : [u'give'] -earnestly up : [u'.'] -fair proportion : [u'do'] -readily understand : [u'that'] -harmonium beside : [u'the'] -were reported : [u'there'] -very glad : [u'if', u'now'] -otherwise everything : [u'was'] -John Clay : [u',', u'.', u',"', u'serenely'] -thoughts. : [u'We'] -were worked : [u'up'] -light shining : [u'upon'] -be laid : [u'out'] -or charges : [u'.'] -well have : [u'been'] -lovely Surrey : [u'lanes'] -; " so : [u'now'] -Texas, : [u'I'] -would just : [u'walk', u'ask'] -, gently : [u'waving', u'remove'] -my thrill : [u'of'] -Lordship. " : [u'I'] -facet may : [u'stand'] -call to : [u'morrow', u'mind'] -will show : [u'you'] -information: : [u''] -roof had : [u'fallen'] -not unnatural : [u'that', u'if'] -be delirium : [u'.'] -Donations to : [u'the'] -Calhoun. : ['PP'] -repairs, : [u'you'] -from? : [u'I'] -information. : [u'In'] -and would : [u'come', u'have', u'be', u'burst', u'accept', u'like'] -professional chambers : [u'in'] -reeds. : [u'Oh'] -he said : [u'.', u'as', u',', u'cordially', u'gravely', u'that', u', "', u'. "', u'when', u'at'] -secret of : [u'his'] -not write : [u'?'] -disappointment came : [u'up'] -work mine : [u'.'] -was her : [u'confederate'] -news came : [u'for'] -the shuttered : [u'window'] -much larger : [u'at', u'ones'] -an inarticulate : [u'cry'] -suppose. : ['PP'] -?"" : [u'I', u'My', u'Well', u'How', u'You', u'Why', u'None', u'There', u'Absolutely', u'To', u'Threatens', u'Because', u'Certainly', u'It', u'Some', u'Not', u'When', u'Entirely', u'Where', u'Her', u'Surely', u'She', u'At', u'Yesterday', u'Never', u'From', u'What', u'The', u'Yes', u'About', u'In', u'No', u'Small', u'Oh', u'Nothing', u'A', u'Ten', u'That', u'Had', u'He', u'Mr', u'On', u'Having', u'If', u'Ample', u'Ah', u'We', u'Is', u'ARAT', u'Except', u'By', u'They', u'Have', u'Nearly', u'Of', u'As', u'Ay', u'Near', u'One', u'His', u'Very', u'But', u'With', u'Many', u'Only', u'Precisely', u'Here', u'This', u'Give', u'Breckinridge', u'Excuse', u'Perfectly', u'Always', u'Sometimes', u'Exactly', u'Your', u'Indeed', u'Dr', u'Experience', u'Alice', u'Lady', u'Extremely', u'Arthur', u'God', u'Who', u'Pray', u'Wait', u'Their', u'Through'] -of cigars : [u','] -off among : [u'the'] -house into : [u'Saxe'] -say it : [u'is'] -Beyond these : [u'signs'] -say is : [u'really'] -and cheeks : [u','] -a Fashionable : [u'Wedding'] -beloved sister : [u'."'] -mean?" : [u'I'] -the broadest : [u'part'] -the column : [u'. "', u', "'] -already made : [u'up', u'a'] -improved by : [u'practice', u'wearing'] -Holmes; " : [u'that', u'the', u'so', u'this'] -away while : [u'waiting'] -upon one : [u'of', u'side'] -before," : [u'said'] -window; : [u'someone'] -Burnwell and : [u'your'] -I to : [u'his', u'do', u'find'] -tangle indeed : [u'which'] -he braved : [u'the'] -a usual : [u'signal'] -frowning brow : [u'and'] -meddle with : [u'my'] -found her : [u'biography', u'more', u'to'] -read as : [u'follows'] -window. : ['PP', u'The', u'At', u'I', u'These'] -window, : [u'to', u'and', u'I', u'he', u'there', u'reopening', u'rose', u'endeavoured', u'undo', u'hoping', u'cut', u'while', u'hand', u'sprang', u'ascended', u'where', u'with', u'so', u'nor'] -sidled down : [u'into'] -exposed in : [u'a'] -most unique : [u'things'] -cupboard of : [u'the'] -a tallish : [u'man'] -then we : [u'have'] -little adventures : [u'."'] -torn right : [u'out'] -matter over : [u'with', u'."'] -some twisted : [u'cylinders'] -turning over : [u'the'] -first glance : [u'is', u'so'] -with stout : [u'cord'] -compliance for : [u'any'] -months after : [u'our', u'.'] -Whitney was : [u'once'] -owe a : [u'very'] -set aquiline : [u'features'] -instant Mrs : [u'.'] -?" A : [u'tall'] -am following : [u'you'] -Bradstreet, : [u'sir', u'how', u'"', u'B', u'of'] -doubt quietly : [u'slipped'] -?" I : [u'carefully', u'asked', u'ejaculated', u'held', u'took', u'gasped', u'cried'] -Street.' : [u'That'] -instantly attracted : [u'my'] -? This : [u'woman'] -fidelity exacted : [u'upon'] -The devil : [u'knows'] -shot a : [u'questioning', u'few'] -floor and : [u',', u'ceiling'] -over all : [u'the'] -his little : [u'brain', u'boy', u'game'] -would return : [u'.', u'to'] -imbecile as : [u'not'] -who ask : [u'for'] -!) can : [u'copy'] -," Lestrade : [u'observed'] -the lonely : [u'life'] -is dark : [u',', u'to'] -You agree : [u'to'] -leading down : [u'to'] -proceeded to : [u'the'] -of milk : [u'which', u'does', u','] -been forced : [u'open', u'before'] -four pipes : [u'I'] -bright light : [u'shone'] -escaped my : [u'memory'] -station after : [u'eleven'] -servant and : [u'rushed'] -being interesting : [u'.'] -have written : [u'that'] -earth into : [u'bricks'] -Doran. : [u'Esq', u'Two', 'PP'] -anxiously in : [u'the'] -stolen. : ['PP'] -pals and : [u'determined'] -flare. : ['PP'] -stick two : [u'or'] -displaying or : [u'creating'] -I painted : [u'my'] -track which : [u'led', u'ran'] -have none : [u',"'] -eyes cast : [u'down'] -are sure : [u'that', u'of'] -and interested : [u'on'] -house more : [u'precious'] -J. : [u'O'] -forget that : [u'I', u'dreadful'] -touch that : [u'coronet'] -you!" : [u'said', u'cried', u'He'] -corridors, : [u'passages'] -nerves of : [u'steel'] -small thin : [u'volume'] -they should : [u'use', u'do', u'proceed', u'have', u'make'] -, " come : [u'to'] -, law : [u'abiding'] -attached to : [u'a', u'me'] -his main : [u'fault'] -Bermuda Dockyard : [u','] -herself that : [u'she'] -must assert : [u'that'] -begging in : [u'the'] -a chap : [u'for'] -find. : [u'Did', u'It'] -discovered and : [u'reported'] -the artist : [u'had'] -connection and : [u'the'] -reasons," : [u'I'] -he closed : [u'the', u'upon'] -undertaking." : [u'She'] -which streamed : [u'the', u'up'] -an only : [u'daughter', u'child', u'son'] -and moustache : [u';'] -convinced of : [u'it'] -mentioned to : [u'you'] -It must : [u'be', u',', u'have', u'stop', u'always'] -days to : [u'spare', u'reclaim'] -little fleecy : [u'white'] -was slighted : [u'like'] -" Danger : [u'!'] -are going : [u'on', u'to', u'."'] -there," : [u'said'] -came for : [u'us', u'.', u'a'] -passage in : [u'front'] -bar. : [u'Then'] -He ran : [u'round', u'when', u'up'] -main arteries : [u'which'] -responses which : [u'were'] -peeped round : [u'the'] -and shaking : [u'in', u'his', u'limbs'] -union. : ['PP'] -discover the : [u'least'] -course instantly : [u'strike'] -such theory : [u'."'] -were to : [u'be', u'have', u'meet', u'stay', u'come', u'turn', u'befall'] -established a : [u'very', u'large'] -Angel began : [u'to'] -former, : [u'she'] -for 4000 : [u'pounds'] -cared to : [u'apply', u'confess'] -assistance to : [u'me', u'you'] -, met : [u'in'] -knew, : [u'was', u'but', u'be', u'been'] -their wits : [u"'"] -Yet it : [u'was'] -You want : [u'to'] -slighted like : [u'and'] -case and : [u'a', u'the'] -artistic. : ['PP', u'I'] -exactly alike : [u'.'] -Yet if : [u'the'] -more into : [u'a'] -tails. : ['PP'] -coming upon : [u'those'] -been engaged : [u'for'] -engineer, : [u'16A', u'and', u'Inspector'] -peering through : [u'the'] -engineer. : [u'Left'] -stole. : [u'I'] -DISTRIBUTOR UNDER : [u'THIS'] -a glitter : [u'of'] -wound dressed : [u','] -the hollow : [u'of'] -However that : [u'may'] -the rascally : [u'Lascar'] -sending a : [u'line', u'written'] -visited him : [u'and'] -tunnel to : [u'some'] -C was : [u'visited'] -nominal. : ['PP'] -we cannot : [u'risk', u'count', u'make', u'and'] -know now : [u'why', u'.'] -written the : [u'name'] -establish himself : [u'in'] -settles the : [u'matter', u'question'] -own way : [u'in', u'to'] -likely enough : [u'that'] -his teeth : [u'and'] -certainly been : [u'favoured'] -and seized : [u'the'] -The circumstances : [u'are'] -who? : [u'I'] -the slight : [u'frost'] -any traces : [u'of', u'in'] -from death : [u'.'] -who, : [u'it', u'when', u'as'] -if your : [u'visitor', u'hair', u'husband', u'mind'] -brace of : [u'cold'] -heard Lord : [u'St'] -expressed a : [u'delight'] -cunning and : [u'as'] -where, : [u'as', u'by'] -unimpeachable. : [u'We'] -is frequently : [u'in'] -is much : [u'larger', u'less'] -supporters, : [u'though'] -sovereign if : [u'you'] -perils are : [u'?"'] -of free : [u'education'] -forty hours : [u','] -independent in : [u'little'] -remarked, : [u'endeavouring', u'looking', u'returning', u'holding', u'a', u'the', u'and', u'Mr'] -found never : [u','] -remarked. : ['PP'] -might rely : [u'on'] -page, : [u'he'] -season you : [u'shave'] -and features : [u','] -terraced with : [u'wooden'] -Augustine. : ['PP'] -along those : [u'lines'] -vulgar enough : [u'.'] -Case of : [u'Identity'] -up all : [u'the', u'that'] -all fears : [u'to'] -his before : [u'breakfast'] -hushing the : [u'thing'] -closed his : [u'eyes'] -white stone : [u','] -wonderful!" : [u'I'] -uncle last : [u'night'] -dark hollow : [u'of'] -wife out : [u'and'] -s earth : [u'is', u'in', u',', u'was', u",'"] -already noticed : [u'the'] -she fell : [u'to'] -the links : [u'which'] -mines. : ['PP'] -little figure : [u'of'] -mines, : [u'where'] -, face : [u'downward'] -, homeward : [u'bound'] -we came : [u'out', u'to', u'right'] -lodge. : [u'I'] -of consulting : [u'you'] -been everywhere : [u','] -been he : [u'who'] -consuming an : [u'ounce'] -the gaslight : [u','] -were yourself : [u'struck'] -slung over : [u'his'] -those incidents : [u'which'] -, written : [u'with'] -no longer : [u'about', u'oscillates', u'against', u';', u'desired'] -my pen : [u'to'] -volunteer support : [u'.'] -man should : [u'be', u'possess', u'keep', u'have'] -he squeezed : [u'out'] -that single : [u'advertisement'] -band!' : [u'There'] -then conducted : [u'us'] -band!" : [u'whispered'] -upon himself : [u'.'] -a serious : [u'difference', u'case', u'investigation'] -my best : [u'to', u'land'] -should go : [u',', u'on'] -Now for : [u'the', u'Mr'] -my duties : [u'to', u','] -buying a : [u'pair'] -adopted her : [u','] -house. ' : [u'I'] -a vitriol : [u'throwing'] -small parcel : [u'of'] -is usual : [u'in'] -outside was : [u'empty'] -between our : [u'houses'] -, carrying : [u'it', u'the'] -there they : [u'have'] -s amusement : [u','] -you but : [u'make', u'he'] -probably with : [u'his'] -in Bloomsbury : [u'at'] -capital!' : [u'He'] -capital. : [u'Holmes'] -glitter. : [u'His'] -and lifeless : [u'as'] -singular tragedy : [u'of'] -modification, : [u'or'] -and pa : [u'was'] -the full : [u'market', u'purport', u'facts', u'face', u'effect', u'terms', u'Project', u'extent'] -lay yourself : [u'open'] -peculiar experiences : [u'."'] -tossed my : [u'rocket'] -pockets of : [u'his'] -French. : [u'It'] -Nothing less : [u'would'] -French, : [u'a'] -heard that : [u'voice', u'you', u'the', u'I', u','] -not easily : [u'controlled'] -Countess of : [u'Morcar'] -resolute as : [u'themselves'] -lips as : [u'she'] -lips at : [u'the'] -hard felt : [u'hat'] -or there : [u','] -staring down : [u'the'] -The small : [u'boy', u'matter'] -according to : [u'the', u'his'] -? Here : [u'is'] -very foul : [u'mouthed'] -dangling down : [u'as', u'from'] -not let : [u'your', u'me'] -his goose : [u','] -his harness : [u'were'] -cellar," : [u'said'] -of papers : [u'upon', u'which', u'."', u'until'] -and successfully : [u'for'] -the guard : [u','] -his shirt : [u'and'] -Better close : [u'the'] -these may : [u'be'] -a new : [u'leaf', u'patient', u'man', u'wedding'] -less than : [u'six', u'once', u'that', u'the', u'26s', u'my', u'five', u'seven', u'1000', u'an', u'you', u'forty', u'twenty'] -cease using : [u'and'] -. " Frank : [u'here'] -parcel of : [u'considerable'] -,' I : [u'answered', u'read', u'said', u'cried', u'asked'] -in communication : [u'with'] -case to : [u'the', u'me', u'do'] -ill gentlemen : [u','] -houses looked : [u'out'] -Stoner has : [u'been'] -, probably : [u'drink', u'by'] -neither sound : [u'nor'] -responded Holmes : [u'.'] -position to : [u'the'] -luggage when : [u'she'] -private word : [u'with'] -punish the : [u'guilty'] -seven or : [u'eight'] -time he : [u'remained', u'would'] -and penetrating : [u'grey'] -middle sized : [u'fellow', u'man'] -you advance : [u','] -under such : [u'obligations'] -whose absolute : [u'reliability'] -and do : [u'not', u'you', u'what', u'a'] -in you : [u'.', u','] -solicit donations : [u'in'] -laughed until : [u'he', u'I'] -, neither : [u'fascinating', u'Miss', u'house'] -diadem he : [u'laid'] -were merely : [u'a'] -changed his : [u'costume', u'whole'] -granted until : [u'I'] -any letters : [u'of'] -of water : [u'some', u'.', u'outside', u'through'] -had let : [u'myself'] -in patience : [u'.--'] -what, : [u'then'] -and anger : [u'all'] -vulgar, : [u'comfortable'] -electronically, : [u'the'] -stared into : [u'the'] -what salary : [u'do'] -kneeling with : [u'his'] -caught something : [u'which'] -Holmes cheerily : [u'as', u'. "'] -was Frank : [u';'] -for some : [u'minutes', u'few', u'time', u'years', u'weeks', u'days', u'little', u'months'] -into view : [u'at'] -always under : [u'the'] -and deadly : [u'.'] -rich material : [u'.'] -clearly marked : [u'as'] -words were : [u'needed', u'hardly'] -Toller still : [u'drunk'] -note?" : [u'he'] -some dark : [u'coloured', u'coat'] -word as : [u'to'] -with pennies : [u'and'] -determined to : [u'see', u'have', u'settle', u'preserve', u'start', u'go', u'wait', u'do'] -windows before : [u'I'] -Could you : [u'swear'] -blowing blue : [u'rings'] -., Mr : [u'.'] -plugs and : [u'dottles'] -or whether : [u'I', u'we', u'the'] -Our party : [u'is'] -now standing : [u'in'] -e,' : [u'and'] -our dear : [u'Arthur'] -my escape : [u'.'] -laughed, : [u'I'] -laughed. : [u'He'] -England are : [u'getting'] -presented more : [u'singular'] -been notorious : [u'in'] -my boy : [u',', u'has', u'all'] -vigorously across : [u'and'] -intently. : [u'I'] -was off : [u'in', u'once'] -low ceiling : [u'and'] -rather darker : [u'than'] -committed," : [u'said'] -gives zest : [u'to'] -tortured child : [u','] -unburned margins : [u'which'] -counterpaned bed : [u'in'] -pipes, : [u'four'] -column. " : [u'Here'] -:-- I : [u'feel', u'am'] -illustrious client : [u'.'] -general impressions : [u','] -and Arthur : [u'were'] -eavesdroppers. : ['PP'] -my results : [u'.'] -out splendidly : [u'.'] -sick with : [u'fear'] -can save : [u'you'] -and keenest : [u'for'] -events as : [u'narrated'] -between two : [u'rooms', u'very', u'of', u'neat', u'rounds', u'planks'] -will cover : [u'the'] -purses and : [u'expensive'] -to such : [u'a', u'absolute', u'humiliation'] -finally announced : [u'her'] -large sheet : [u'of'] -our story : [u'right'] -pay over : [u'fifty'] -the finger : [u'.'] -cross bar : [u'of'] -novel and : [u'of'] -was within : [u'earshot'] -distinct element : [u'of'] -states of : [u'the'] -dozen at : [u'the'] -grievance against : [u'this'] -two blunders : [u'in'] -, close : [u'in'] -and moustached : [u'evidently'] -t drop : [u'.'] -could they : [u'have'] -of Arthur : [u"'"] -of speech : [u'.'] -subject in : [u'the'] -improbable that : [u'he'] -sixteen I : [u'was'] -clatter of : [u'steps'] -were on : [u'the', u'a'] -shining, : [u'her'] -were of : [u'the', u'a', u'this', u'solid', u'brown', u'wood', u'iron'] -some months : [u'ago', u'.'] -, " what : [u'do', u'on', u'are'] -Had this : [u'lady'] -cabman said : [u'that'] -replacement or : [u'refund'] -get clear : [u'upon'] -" described : [u'in'] -heard anyone : [u'whistle'] -hearty supper : [u','] -nor have : [u'I'] -. Above : [u'all', u'the'] -the liberty : [u'of'] -tut, : [u'tut'] -blue dress : [u'will', u','] -tut! : [u'I', u'sweating'] -reasoner. : [u'And'] -rules, : [u'set'] -reasoner, : [u'when'] -on either : [u'side'] -they impressed : [u'me'] -catch glimpses : [u'of'] -some degree : [u'of'] -bedroom, : [u'whence', u'and', u'which', u'through', u'flung'] -bedroom. : [u'Thrust', u'My'] -years studied : [u'the'] -clock I : [u'should'] -never hear : [u'of'] -caraffe. : ['PP'] -I known : [u'him'] -see Mr : [u'.'] -Because she : [u'has'] -; so : [u'you', u'when', u'it', u'in', u'I', u'if', u'at', u'he', u'thither'] -deal. : [u'However'] -of Surrey : [u',', u'."'] -his chamber : [u'and'] -, only : [u'three', u'provoked', u'one', u'that'] -note, : [u'Doctor', u'paid', u'leaning', u'it', u'Mr'] -allied. : [u'It'] -note. : [u'Having', 'PP', u'And', u'As'] -horrible cry : [u'to'] -piping, : [u'not'] -Holmes a : [u'grievous'] -asked a : [u'thing'] -always that : [u'they'] -cupboard, : [u'and'] -paragraphs concerning : [u'men'] -that made : [u'me'] -marry them : [u'without'] -By an : [u'examination'] -failed. : ['PP'] -s room : [u'you', u',', u'."'] -blood upon : [u'the'] -public support : [u'and'] -trouble to : [u'you'] -as creation : [u'of'] -ordered fresh : [u'rashers'] -over one : [u'of'] -The papers : [u'which'] -a writ : [u'served'] -deduced from : [u'it', u'his'] -sallow Malay : [u'attendant'] -implacable spirits : [u'upon'] -dangers which : [u'encompass'] -us, " : [u'what', u'because'] -Sunday school : [u'treat'] -chair by : [u'the'] -cellar at : [u'present'] -all red : [u'headed'] -since gives : [u'a'] -attic stocked : [u'with'] -. As : [u'I', u'to', u'he', u'it', u'far', u'a', u'you', u'evening', u'Cuvier', u'we', u'she', u'regards', u'the', u'well'] -father had : [u'this', u'many', u'a', u'fallen'] -those singular : [u'adventures'] -. At : [u'present', u'three', u'the', u'his', u'two', u'first', u'last', u'nine', u'such', u'eleven', u'dusk', u'my', u'one', u'least', u'any', u'that'] -convincing evidence : [u'of'] -. Ah : [u','] -our houses : [u'to'] -semicircle which : [u'was'] -. An : [u'Eley', u'inspection', u'examination', u'important', u'ordinary', u'elderly'] -good thing : [u','] -me here : [u'to', u'.', u'and'] -father has : [u'never'] -cannot now : [u'entirely'] -London to : [u'this', u'inquire'] -which presents : [u'any'] -interview between : [u'the'] -sufficed to : [u'satisfy'] -Light a : [u'cigar'] -a farthing : [u'from'] -think it : [u'is', u'was', u'all', u'very', u'right', u'points'] -we lay : [u'in'] -of some : [u'new', u'sort', u'little', u'strange', u'heavy', u'service', u'deadly', u'14', u'resistless', u'belated', u'mystery', u'crime', u'few', u'hunted', u'assistance'] -resource and : [u'determination'] -heartily, : [u'with'] -heartily. : ['PP'] -Watson," : [u'he', u'said'] -frenzy and : [u'would'] -said you : [u"'"] -, adding : [u'that'] -whoso snatches : [u'a'] -a pea : [u'jacket'] -pattered against : [u'the'] -heavy yellow : [u'wreaths'] -Garden. : ['PP'] -On ascertaining : [u'that'] -ticket in : [u'the'] -little questioning : [u'glance'] -could every : [u'morning'] -left hand : [u'side', u','] -Harrow. : [u'Now'] -Harrow, : [u'and', u'of'] -entry. : ['PP'] -the Rockies : [u','] -topped a : [u'low'] -slopes down : [u'to'] -little book : [u'?"'] -can speak : [u'as'] -ball you : [u'met'] -can thoroughly : [u'rely'] -secured every : [u'night'] -would always : [u'be', u'carry', u'wind'] -all paid : [u'in'] -She died : [u'just'] -remanded for : [u'further'] -face behind : [u'it'] -much typewriting : [u'?"'] -as she : [u'left', u'half', u'lived', u'had', u'did', u'saw', u'spoke', u'listened', u'was', u'thought'] -was answered : [u'by'] -mister," : [u'said'] -appropriate dress : [u','] -, managed : [u'to'] -.-- NEVILLE : [u".'"] -other things : [u'were', u'?"'] -No reference : [u'to'] -digesting their : [u'breakfasts'] -unmarried one : [u'reaches'] -Never trust : [u'to'] -Times and : [u'smoking'] -if they : [u'were', u'always', u'may', u'believed', u'believe'] -disappointment to : [u'me'] -to attend : [u'to'] -moist red : [u'paint'] -and how : [u'the', u'came', u'they', u'all', u'she', u'your', u'to'] -the Underground : [u'as', u'and'] -quickly the : [u'deed'] -of repulsion : [u','] ---' This : [u'account'] -nine now : [u',"'] -fields, : [u'filled'] -Countess to : [u'part', u'say'] -. Does : [u'that', u'not'] -only she : [u'to'] -like that : [u',', u'yet', u'to', u'.', u'of', u'before', u".'"] -keeper brought : [u'it'] -success that : [u'the', u'he'] -the wharf : [u'and'] -fee is : [u''] -Missing," : [u'it'] -seared with : [u'a'] -chemical studies : [u'.'] -" Fire : [u'!"'] -"' Entirely : [u".'"] -scale, : [u'and'] -favoured with : [u'extraordinary'] -to charge : [u'.', u'him', u'a'] -will very : [u'much', u'soon'] -worn to : [u'a'] -without clay : [u'."'] -wasted time : [u'enough'] -own head : [u'.'] -Web site : [u'which', u'includes'] -hear of : [u'it', u'Hosmer', u'such', u'our'] -vacancy open : [u'which'] -The paper : [u'was'] -,' of : [u'course'] -tell us : [u'all', u'now', u'the', u'and', u'what', u'makes'] -shading his : [u'eyes'] -superior to : [u'the'] -refusal. : ['PP'] -huffed. ' : [u'Which'] -perplexing position : [u'.'] -confession at : [u'the'] -warning I : [u'had'] -we fattened : [u'it'] -other unusually : [u'large'] -a disturbance : [u'at'] -"' From : [u'Dundee'] -a crippled : [u'wretch'] -meaning to : [u'it', u'me'] -river flowing : [u'sluggishly'] -so entirely : [u'upon'] -: What : [u'did', u'was', u'do'] -in McQuire : [u"'"] -gun as : [u'the'] -examining the : [u'wound', u'trough', u'furniture'] -! there : [u'has'] -that third : [u'name'] -rest you : [u'will'] -our turn : [u'came'] -brisk tug : [u'.'] -hinted at : [u'a'] -and beautiful : [u'face', u'?"', u'countryside'] -May 2nd : [u'."'] -matter first : [u'."'] -basin of : [u'Trafalgar'] -whispering fashion : [u'of'] -, please : [u'!"', u'visit'] -she heard : [u'that'] -nearest chair : [u'.'] -was softened : [u'by'] -specific permission : [u'.'] -she hears : [u'that'] -at Hatherley : [u'about'] -is rare : [u'.'] -his cuttings : [u'.'] -" Where : [u',', u'did', u'is', u'does', u'to'] -indignation among : [u'the'] -called myself : [u'is'] -after their : [u'names', u'flight'] -out for : [u'me', u'4000', u'five', u'a'] -twelve o : [u"'"] -was thinking : [u'of', u','] -., Principal : [u'of'] -of men : [u'.', u'with'] -figure of : [u'the', u'Colonel'] -cruelly wronged : [u'.'] -I became : [u'suspicious', u'as', u'consumed'] -in ferocious : [u'quarrels'] -my eyes : [u'tell', u'are', u'caught', u','] -real effect : [u'were'] -himself has : [u'been'] -took over : [u'the'] -walked several : [u'times'] -horrors enough : [u'before'] -appointment in : [u'the'] -aware in : [u'which'] -contrary," : [u'said'] -ease, : [u'and'] -contrary,' : [u'said'] -Lucy Parr : [u','] -the stall : [u'with', u'which'] -the landscape : [u'.'] -whispered; " : [u'did'] -complained of : [u'was', u'a'] -the transverse : [u'bar'] -a drunken : [u'looking'] -# 1661 : [u']'] -happened, : [u'I', u'and', u'sir', u'then'] -happened. : ['PP', u'Do'] -oppressively respectable : [u'frock'] -lonely life : [u'of'] -he watched : [u'the'] -my methods : [u'.'] -look rather : [u'than'] -any fees : [u'or'] -this other : [u'one', u'goose', u'page'] -happened? : [u'And'] -was about : [u'to', u'ten'] -her entreaties : [u'when'] -the sequence : [u'of'] -he kept : [u'on'] -Jackson' : [u's'] -line to : [u'let', u'the', u'pa'] -set his : [u'lips'] -stable boy : [u'had', u'sleeps', u'waiting'] -got home : [u'all'] -by. : ['PP', u'This'] -, ' but : [u'I'] -by, : [u'it', u'during'] -a capital : [u'mistake', u'sentence'] -or 120 : [u'pounds'] -matter implicates : [u'the'] -Rucastle is : [u'not'] -Winchester at : [u'midday', u'11'] -purport of : [u'his'] -uncontrollable agitation : [u'.', u','] -This dust : [u','] -sensational trials : [u'in'] -waved me : [u'to'] -':"' : [u'The'] -, harmless : [u'from'] -human nature : [u".'"] -Who is : [u'this', u'on'] -window outside : [u','] -adhesive, : [u'and'] -slight leakage : [u','] -he lit : [u'his', u'the'] -saw an : [u'ill'] -Your advice : [u'will'] -little practice : [u','] -by keeping : [u'this'] -heard all : [u'that'] -swung slowly : [u'open'] -the loudly : [u'expressed'] -By its : [u'light'] -had very : [u'full'] -of bringing : [u'the'] -scuffle downstairs : [u'when'] -a social : [u'stride'] -engaging my : [u'own'] -the mud : [u'stains', u'bank'] -adding that : [u'he'] -his voice : [u'that', u'was', u'--"'] -black ink : [u','] -necessary that : [u'the', u'I'] -letter from : [u'Westhouse', u'him', u'the'] -day being : [u'Saturday'] -, 17 : [u'King'] -showed us : [u'the', u'very'] -those simple : [u'cases'] -rely upon : [u'my', u'you'] -; there : [u'were'] -, ' get : [u'away'] -respect. : [u'She', 'PP'] -second thought : [u','] -he came : [u'down', u'up', u'by', u'to', u'back', u'home', u'in'] -were needed : [u'.'] -or persons : [u'in'] -And perhaps : [u','] -K. : [u'K', u'repeated', u'ceases'] -questionable one : [u'."'] -think would : [u'happen'] -lit a : [u'dark'] -was soon : [u'remedied', u'evident', u'the', u'asleep', u'made'] -passed up : [u'the'] -of twelve : [u'or'] -and also : [u'in', u'a', u'of', u'that'] -reasoning," : [u'I'] -and logician : [u'of'] -I find : [u'him', u'that', u'it', u'an', u'many'] -, Star : [u','] -one son : [u','] -loved you : [u','] -puny plot : [u'of'] -Manor House : [u'.'] -about new : [u'eBooks'] -Sir, : [u'I'] -were bolted : [u'.'] -boundary between : [u'the'] -behind, : [u'and', u'though'] -as well : [u'as', u'."', u'to', u'that', u',"', u'be', u'.', u'for', u'face', u','] -ever found : [u'myself'] -, leave : [u'to'] -distinct, : [u'and'] -past than : [u'of'] -Germans. : [u'I'] -his pictures : [u'.', u'within'] -introspective fashion : [u'.', u'which'] -having an : [u'employ'] -name derived : [u'from'] -writhing towards : [u'it'] -done a : [u'considerable', u'good', u'very'] -and subduing : [u'in'] -our lodgings : [u'in'] -is her : [u'carriage', u'maid', u'name', u'ring'] -to pick : [u'up'] -cold for : [u'the'] -putting ourselves : [u'in'] -lowest estimate : [u'would'] -really got : [u'it'] -articles and : [u'thought'] -the buckles : [u'.'] -spare you : [u'for'] -after listening : [u'to'] -make merry : [u'over'] -there all : [u'traces'] -several words : [u','] -: 30 : [u'this', u'."'] -twelve. : [u'He'] -sitting rooms : [u'being', u'.'] -twelve, : [u'and', u'but'] -You suppose : [u'that'] -letter unobserved : [u'.'] -plucked at : [u'his'] -stall with : [u'the'] -, almost : [u'womanly'] -remarks before : [u'leaving'] -thought I : [u"'", u'had', u'heard'] -right up : [u'to', u'in'] -sparkles. : [u'Of'] -or grieved : [u'.'] -not call : [u'at'] -The Embankment : [u'is'] -than seven : [u'places'] -prosecuted for : [u'begging'] -same relative : [u'position'] -thought a : [u'little'] -pale lately : [u'.'] -could see : [u'nothing', u'Holmes', u'Mr', u',', u'the', u'by', u'that', u'a', u'him', u'in', u'at', u'from', u'out', u'what'] -was accused : [u'of'] -only caught : [u'a', u'the'] -took out : [u',', u'my', u'your', u'a'] -den. : ['PP', u'It'] -the autumn : [u'of'] -mind without : [u'being'] -The sleeper : [u'half'] -the daylight : [u','] -original building : [u'of'] -his having : [u'the'] -stamp lay : [u'upon'] -turn it : [u'on'] -deadliest snake : [u'in'] -and most : [u'energetic', u'unique', u'daring'] -link in : [u'a', u'my'] -relations were : [u'really'] -should say : [u'to', u','] -afraid that : [u'you', u'I', u'it', u'they', u'my', u'that'] -was using : [u'my'] -Her jacket : [u'was'] -snap the : [u'bond'] -greasy leather : [u'cap'] -me all : [u'about', u'?"', u'my'] -admitted him : [u'into'] -such places : [u','] -ever before : [u'been'] -cried Miss : [u'Hunter'] -word' : [u'band'] -little paint : [u','] -niece; : [u'but'] -all for : [u'openness'] -one' : [u's'] -reach your : [u'results'] -word, : [u'Watson', u'I', u'it', u'my', u'for'] -word. : [u'I', 'PP'] -one, : [u'too', u'and', u'so', u'the', u'it', u'Henry', u'laying', u'white', u'who', u'or', u'Mr', u'that', u'no', u'since', u'when', u'as', u'for'] -one. : [u'You', u'One', 'PP', u'He', u'There', u'But', u'I', u'She', u'When'] -that didn : [u"'"] -All right : [u',"', u','] -to surprise : [u'her'] -as that : [u'again', u'."', u',', u"?'", u'which'] -gently that : [u'it'] -hand closed : [u'like'] -even traced : [u'them'] -one; : [u'and'] -true, : [u'and', u'then', u'some'] -true. : [u'And', 'PP', u'Singularity', u'The'] -true; : [u'and'] -the others : [u'were', u',', u'."', u'.', u'being'] -come well : [u'.'] -description of : [u'him', u'Mr', u'any', u'his', u'you'] -No sound : [u'came'] -, slammed : [u'the'] -amiable manner : [u'.'] -obvious at : [u'a'] -, four : [u'pipes', u'successive'] -we arranged : [u'our'] -would make : [u'their', u'all', u'it', u'me'] -live under : [u'my'] -beef from : [u'the'] -,' the : [u'other'] -took next : [u'.'] -alert manner : [u'.'] -lined waistcoat : [u'.'] -and able : [u'to'] -t do : [u'really', u'it', u'.'] -seemed unnecessary : [u'to'] -draw up : [u'to', u','] -thousand. : [u'We'] -LIP Isa : [u'Whitney'] -, flesh : [u'coloured'] -believe?" : [u'said'] -Encyclopaedia' : [u'which'] -bedrooms in : [u'this'] -concerned in : [u'it', u'the', u'some'] -Encyclopaedia" : [u'down'] -hall door : [u'and', u'banged', u',', u'has'] -indicated by : [u'that'] -an occupant : [u'of'] -made all : [u'sure'] -matter is : [u'not', u'a', u'too', u'of'] -THE FIVE : [u'ORANGE'] -and blocked : [u'with'] -veiled, : [u'who'] -one possible : [u'solution'] -matter in : [u'my', u'which'] -remarked as : [u'we', u'he'] -my surprise : [u',', u'and', u'that', u'the'] -you deduce : [u'it', u'from', u'that', u'the'] -safe with : [u'us', u'her'] -the trademark : [u'license', u'owner'] -brilliant, : [u'many'] -a middle : [u'sized'] -imagination and : [u'too'] -his pain : [u'.'] -had either : [u'fathomed'] -liberated, : [u'have'] -legs out : [u'towards'] -s arm : [u'in'] -come pestering : [u'me'] -walls were : [u'carefully', u'of'] -s art : [u','] -this McCarthy : [u','] -, walking : [u'with', u'up'] -exact knowledge : [u'of'] -pray that : [u'we'] -off down : [u'the'] -know it : [u',', u'well'] -' band : [u",'"] -disturb the : [u'usual'] -merit. : [u'All'] -s statement : [u'to'] -unfettered by : [u'any'] -extraordinary calamity : [u'could'] -the music : [u',', u'at'] -and covered : [u'over'] -for political : [u'purposes'] -save himself : [u'by'] -will soon : [u'have', u'make', u'be', u'receive'] -told her : [u'mother', u'that'] -We soothed : [u'and'] -person," : [u'said'] -lover he : [u'would'] -fall upon : [u'the'] -nothing new : [u'to'] -an employ : [u'who'] -you take : [u'when', u'?"', u'for'] -" Whose : [u'house'] -All he : [u'wants'] -my week : [u"'"] -purpose was : [u'for'] -the peculiarities : [u'of'] -and even : [u',', u'for', u'of', u'the', u'in', u'Holmes', u'threatening'] -a comical : [u'pomposity'] -best what : [u'he'] -rather think : [u'he'] -that," : [u'murmured', u'observed', u'said', u'he'] -His grip : [u'has'] -can do : [u'nothing', u'pretty', u'to', u'in', u'anything', u'with'] -disjecta membra : [u'of'] -Pray draw : [u'up'] -butcher' : [u's'] -Robbery. : [u'John'] -back the : [u'frill', u'gems'] -clutched the : [u'mantelpiece'] -weighted coat : [u'had'] -terrified that : [u'I'] -follow me : [u'?"'] -they believed : [u'my'] -His nostrils : [u'seemed'] -' safes : [u'had'] -first independent : [u'start'] -the word : [u'the', u"'"] -no apology : [u'is', u'to'] -to taking : [u'you'] -the work : [u'is', u"?'", u'of', u'as', u'.', u'can', u',', u'and', u'in', u'from', u'on', u'electronically'] -rich. : ['PP'] -follow my : [u'advice'] -rich, : [u'but'] -one I : [u'was', u'chose'] -Many men : [u'have'] -a precious : [u'stone'] -conversation coming : [u'in'] -The window : [u'was'] -passage I : [u'heard'] -Data! : [u'data'] -stared down : [u'into'] -this while : [u'busy'] -was unlocked : [u','] -and hastened : [u'downstairs'] -the length : [u'of'] -reconsidered my : [u'position'] -glass as : [u'though'] -help suspecting : [u'him', u'that'] -realism pushed : [u'to'] -real bad : [u'and'] -following my : [u'father'] -and horrible : [u'crime', u'enough'] -. After : [u'all', u'that', u'an'] -a startled : [u'look'] -without complying : [u'with'] -held me : [u'was'] -point in : [u'favour', u'the'] -lived, : [u'and'] -lived. : ['PP', u"'"] -main building : [u'to'] -worrying sound : [u'which'] -comes down : [u'with'] -carefully from : [u'seven'] -enough and : [u'sinister', u'horrible'] -so unnatural : [u'as'] -proprietor, : [u'they'] -The Morning : [u'Chronicle'] -her stealthily : [u'open'] -Fashionable Wedding : [u"':"] -gentle breathing : [u'of'] -elbow. : [u'It'] -was afterwards : [u'seen'] -the Bow : [u'Street'] -always laughed : [u'at'] -told us : [u'as', u'that', u'a', u'of'] -his screams : [u','] -Wednesday brought : [u'before'] -peculiarly strong : [u'and'] -these, : [u'one', u'whom', u'and'] -caught me : [u'by'] -, anyone : [u'providing'] -it occurred : [u'to', u'.'] -been missed : [u'by'] -these: : [u'Some', u'about'] -that suggested : [u'at'] -from Eyford : [u'Station', u','] -witnesses depose : [u'that'] -forced before : [u'now'] -?' he : [u'asked', u'stammered'] -was seized : [u'with', u'and'] -started that : [u'he'] -one word : [u'would'] -unless you : [u'receive', u'comply'] -us lose : [u'not'] -MISS HUNTER : [u':--'] -small clump : [u'of'] -deadly paleness : [u'in'] -anything else : [u'of', u'.', u'for'] -would ever : [u'take'] -a chain : [u','] -friend with : [u'the', u'whom'] -, lack : [u'lustre'] -a chair : [u'beside', u',', u'and'] -coat pocket : [u','] -rubber after : [u'all'] -poured brandy : [u'down'] -its original : [u'"'] -, ' Mrs : [u'.'] -his fat : [u'hands'] -, ' 85 : [u','] -confided my : [u'trouble'] -practically ANYTHING : [u'with'] -through my : [u'poor', u'mind', u'fingers', u'refusal'] -old man : [u'sank', u'; "', u'signed', u'solemnly', u',', u'at', u'furiously', u'is'] -, ' 89 : [u'there'] -different incidents : [u'of'] -pass the : [u'forbidden'] -too soon : [u','] -Suddenly, : [u'to', u'with', u'amid', u'however', u'without'] -been recently : [u'cut'] -bridegroom of : [u'Miss'] -had followed : [u'and'] -To do : [u'nothing', u'this'] -you observe : [u',', u'anything', u'the', u'any'] -of sin : [u'than'] -presence, : [u'I', u'she'] -. ' May : [u'I'] -a bulldog : [u'and', u'chin'] -carpet bag : [u'politicians'] -records of : [u'the', u'crime', u'our'] -The sewing : [u'machine'] -a doctor : [u',', u'does'] -near? : [u'There'] -employed in : [u'an'] -my remonstrance : [u'. "'] -was wrong : [u'in', u'and'] -gas light : [u'that'] -of about : [u'60', u'fifty'] -corner from : [u'the'] -cloak. : [u'Now', 'PP'] -clearly as : [u'I'] -cloak, : [u'smokes', u'went'] -your relish : [u'for'] -narrow winding : [u'staircases'] -Not a : [u'bit', u'word', u'bite'] -a terrible : [u'change', u'injury'] -roots of : [u'his'] -boy to : [u'put', u'apologise'] -that lamp : [u'sits'] -huge bundle : [u'in'] -spoke there : [u'was'] -June 19th : [u'."'] -kept up : [u'forever'] -very ill : [u','] -a despairing : [u'gesture'] -Frank went : [u'off'] -teetotaler, : [u'there'] -Vegetarian Restaurant : [u','] -have occurred : [u'between', u'.'] -Not I : [u'."'] -married in : [u'the'] -rouse inquiry : [u','] -Monday we : [u'may'] -may not : [u'prove', u'be', u',', u'come'] -was saving : [u'considerable'] -Rucastles went : [u'away'] -make bricks : [u'without'] -paint. : [u'I'] -. Naturally : [u','] -his black : [u'clay', u'letter'] -or have : [u'you'] -safety and : [u'lay'] -11: : [u'15', u'30'] -and dashing : [u',', u'up'] -as cunning : [u'as', u'and'] -in judicial : [u'moods'] -nothing fit : [u'to'] -governess for : [u'five'] -that money : [u'troubles'] -has to : [u'be', u'tell'] -, this : [u'Vincent', u'is', u'woman', u'relentless', u'thing', u'beauty', u'trusty', u'work'] -occasional friend : [u'of'] -, thin : [u'fingers', u',', u'form', u'old', u'breathing', u'legs'] -long he : [u'might'] -tm mission : [u'of'] -am no : [u'official', u'doubt'] -7th. : [u'Set'] -I hate : [u'to'] -had watched : [u'the'] -a popular : [u'man'] -if these : [u'people'] -had lit : [u'a'] -strength upon : [u'it'] -McCarthys were : [u'fond', u'seen'] -information as : [u'I', u'was'] -in getting : [u'leave'] -have evidently : [u'seen'] -night journey : [u','] -." Our : [u'visitor', u'client'] -half an : [u'hour'] -shone upon : [u'her'] -one hinders : [u".'"] -for Westhouse : [u'&'] -until we : [u'had', u'drew', u'emerged', u'were', u'are'] -by doing : [u'."'] -howl of : [u'the'] -share my : [u'love', u'uncle'] -correspondence has : [u'certainly'] -shall investigate : [u'the'] -and away : [u'we'] -came upstairs : [u'there'] -his smiling : [u'father'] -boxes driving : [u'rapidly'] -preserve a : [u'weapon'] -half fainting : [u'upon'] -terror which : [u'lies'] -meant it : [u'for'] -mad elements : [u'blown'] -cloak and : [u'laid', u'close'] -by making : [u'love'] -duty would : [u'be'] -was quietly : [u'dressed'] -Jove!" : [u'he'] -on re : [u'entering'] -relation to : [u'crime'] -as did : [u'the'] -some hunted : [u'animal'] -flashing into : [u'my'] -ignorant folk : [u'who'] -. Up : [u'to'] -little black : [u'jet'] -they could : [u'get', u'have'] -stalls bore : [u'the'] -and concisely : [u'to'] -it anyhow : [u','] -cast his : [u'eyes'] -now definitely : [u'announced'] -The goose : [u'we', u','] -might tell : [u'us'] -in Philadelphia : [u'),'] -bearings, : [u'deduce'] -abstracted fashion : [u'which'] -It read : [u'in'] -can easily : [u'think', u'imagine', u'comply'] -one male : [u'visitor'] -mention her : [u'under'] -turn in : [u'the'] -. Having : [u'taken', u'measured', u'done', u'found', u'once', u'laid', u'no'] -induce the : [u'Countess'] -can thank : [u'you'] -provide volunteers : [u'with'] -has the : [u'face', u'makings', u'temporary', u'very', u'shutters', u'main'] -down just : [u'as', u'after'] -got them : [u'right'] -address asking : [u'him'] -the busybody : [u'!"'] -seen such : [u'a', u'deadly'] -his rooms : [u',', u'.', u'at'] -For Christ : [u"'"] -very kind : [u',', u'to', u'of', u",'", u'spoken'] -armchair beside : [u'the'] -science lost : [u'an'] -mere vulgar : [u'intrigue'] -which held : [u'me', u'his'] -whirling through : [u'the'] -the silent : [u'Englishman'] -upon anything : [u'which'] -the free : [u'distribution'] -my employers : [u','] -its disadvantages : [u','] -too funny : [u'.'] -in twenty : [u'minutes'] -a calf : [u','] -Doyle This : [u'eBook'] -would mean : [u','] -a call : [u'for'] -back dejected : [u';'] -as soon : [u'as'] -all rushed : [u'down'] -back alone : [u','] -Angel came : [u'to'] -dark silhouette : [u'against'] -puffing, : [u'still'] -away through : [u'the'] -remain away : [u'from'] -maid a : [u'card'] -he poured : [u'brandy'] -! Give : [u'him'] -going up : [u'in'] -s deposition : [u'it'] -investigations outside : [u'."'] -Simon said : [u'something'] -, 16A : [u','] -little use : [u',"'] -entirely, : [u'is'] -second glance : [u','] -I snatched : [u'it'] -method of : [u'doing'] -. Indeed : [u','] - - - -Holmes slowly reopened his eyes she eclipses and predominates the whole matter . James Windibank running at the breakfast table so that it has proved that he walks with a woman has been taken from him , he ordered , and met there a couple of years ago to be gone ." He rushed fiercely forward , threw her arms about my feelings . Some preposterous practical joke ,' said deadend [' said] . -WITH THE TWISTED LIP deadend [TWISTED LIP] . -You give me one for Christmas , with an inflamed face and hurled it upon the rug and looking defiantly at Lestrade . " One morning , so that I was under the circumstances , and next moment I fell into talk about George Meredith , if we drive to Baker Street , " it deadend [" it] . diff --git a/Students/Dave Fugelso/Session 4/trigram.py b/Students/Dave Fugelso/Session 4/trigram.py deleted file mode 100644 index 11065fef..00000000 --- a/Students/Dave Fugelso/Session 4/trigram.py +++ /dev/null @@ -1,183 +0,0 @@ -''' - -Trigram.py - -Sherlock Holmes Trigram exercise. - -Read in the entire text of Sherlock Holmes and create an entire set of trigrams for every pair of words in the novel. I'll print out some statistics, -then attempt to write a paragraph or two. - -I am going to use the punctuation in the text, including paragraph markers. - -Haven't decided how to choose next work from list or what to do about dead ends. - - -''' - -import io -import re -import string -import random - - - -def buildTrigram (source): - ''' - Read a text file and build a trigram. Read each line, split by ' ' and '-', keeping the punctuation. Separate the - punctuation and add to the trigram separately as needed. - ''' - - try: - text = io.open(source, 'r') - except: - print 'File not found.' - return - - reading = True - first = '' - second = '' - third = '' - trigram = dict() - while reading: - line = text.readline() - - if line: - line = line[:len(line)-1] - #Use a regular expression to parse the line with punctuation. Yes- getting ahead again but found this on Stack Overflow. - words = re.split('(\W+)', line) - words = [word for word in words if word != u' ' and word != u'--' and word != u'-' and word != u''] - - for i in range (0, len(words)): - first = second - second = third - third = words[i].strip() - if first != '' and second != '': - if second[0] in string.punctuation: - key = first+second - else: - key = first+' '+second - key = key.strip() - if trigram.has_key(key): - if third not in trigram[key]: - trigram[key].append (third) - else: - trigram[key] = [third] - - first = second - second = first - - # add a paragraph, which we'll mark with 'PP' and clear first, second - if len(words) == 0: - key = second+'.' - if trigram.has_key(key): - if 'PP' not in trigram[key]: - trigram[key].append('PP') - else: - trigram[key] = ['PP'] - first = '' - second = '' - else: - reading = False - - text.close() - return trigram - -def trigramFacts(t): - ''' - Display interesting facts on the trigram. - ''' - print "There are {} entries".format (len(t)) - - #Find largest trigram and print any that have only one member - largestName = '' - largestNum = 0 - print 'The following entries have only one entry:' - for key in t: - if len(t[key]) > largestNum: - largestNum = len(t[key]) - largestName = key - if len(t[key]) == 1: - print key, - print ' : ', - print t[key] - - print "\n\nThe entries with the most entries is '{}' with {} entries".format (largestName, largestNum) - - -def createParagraph(t, n): - ''' - Create a paragraph or two using the built trigram - up to n words. - ''' - num = 0 - - #create a list of trigrams starts with a capital letter (doesn't work all that well with proper nouns... no time to fix) - starters = list() - for key in t.keys(): - if key[0].isupper(): - starters.append(key) - - while num < n: - #Get a starting point with no punctuation and starts with a cap letter? - start = starters[random.randrange(0, len(starters)-1)] - print start, - print ' ', - num += 2 - buildingSentence = True - key = start - - while buildingSentence: - num += 1 - key = key.strip() - if t.has_key(key): - if len(t[key]) == 1: - nextword = t[key][0] - else: - nextword = t[key][random.randrange(0, len(t[key]) -1)] - if nextword == 'PP': - print - print - buildingSentence = False - else: - print nextword, - if nextword[0] == '.': - #print '. ' - buildingSentence = False - else: - # get next key - oldkey = key.split() - if len(oldkey) == 1: - key = key[len(key)-1] - else: - key = oldkey[1] - - if nextword[0] in string.punctuation: - key = key + nextword - else: - key = key + ' ' + nextword - else: - #dead end, we could discard this sentence or back track, but I'm going put a period on it. - print 'deadend ['+key+']', - print '.' - buildingSentence = False - -def printTrigram (t): - ''' - Print out trigram dictionary for testing purposes. - ''' - print '\n\nTrigraphs' - for key in t: - print key, - print ':', - print t[key] - print '\n\n' - -if __name__ == "__main__": - basePath = "../../../slides_sources/source/homework/" - short_sherlock_source = basePath + "sherlock_small.txt" - sherlock_source = basePath + "sherlock.txt" - #t = buildTrigram (short_sherlock_source) - t =buildTrigram (sherlock_source) - printTrigram (t) - #trigramFacts(t) - createParagraph(t, 100) - diff --git a/Students/Dave Fugelso/Session 5/args_lab.py b/Students/Dave Fugelso/Session 5/args_lab.py deleted file mode 100644 index d38cc4f2..00000000 --- a/Students/Dave Fugelso/Session 5/args_lab.py +++ /dev/null @@ -1,25 +0,0 @@ -''' - -Write a function that has four optional parameters (with defaults): -fore_color -back_color -link_color -visited_color -Have it print the colors (use strings for the colors) -Call it with a couple different parameters set - -''' - -def variableColors(fore_color = 'white', back_color='black', link_color='blue', visited_color='dark_blue'): - print 'Colors:', fore_color, back_color, link_color, visited_color - -if __name__ == "__main__": - colors = ('red', 'white', 'blue', 'green') - more_colors={'back_color': 'yellow', 'link_color':'brown', 'visited_color':'mauve', 'fore_color': 'orange'} - variableColors() - variableColors('red', 'white', 'blue', 'green') - variableColors(*colors) - variableColors(**more_colors) - variableColors(fore_color='purple', back_color='pink') - variableColors(link_color='purple', visited_color='pink') - \ No newline at end of file diff --git a/Students/Dave Fugelso/Session 5/comprehensions_lab.py b/Students/Dave Fugelso/Session 5/comprehensions_lab.py deleted file mode 100644 index 2d2e760f..00000000 --- a/Students/Dave Fugelso/Session 5/comprehensions_lab.py +++ /dev/null @@ -1,16 +0,0 @@ -''' -Comprehension lab - -Various and sundry comprehensions plus unit testing. - -I did all the lab comprehensions and understood them. Not sure if I was supposed to reproduce them here. But decided to do the code_bat problem with testing. - -''' - -def count_evens (l): - return len ([num for num in l if num % 2 == 0]) - -if __name__ == "__main__": - assert (count_evens([2, 1, 2, 3, 4]) == 3) - assert (count_evens([2, 2, 0]) == 3) - assert (count_evens([1, 3, 5]) == 0) \ No newline at end of file diff --git a/Students/Dave Fugelso/Session 5/dict_and_set_comprehensions.py b/Students/Dave Fugelso/Session 5/dict_and_set_comprehensions.py deleted file mode 100644 index 3b738ce9..00000000 --- a/Students/Dave Fugelso/Session 5/dict_and_set_comprehensions.py +++ /dev/null @@ -1,88 +0,0 @@ -''' -Lets revisiting the dict/set lab - see how much you can do with comprehensions instead. - -Specifically, look at these: - -First a slightly bigger, more interesting (or at least bigger..) dict: - -food_prefs = {"name": u"Chris", - u"city": u"Seattle", - u"cake": u"chocolate", - u"fruit": u"mango", - u"salad": u"greek", - u"pasta": u"lasagna"} -1. Print the dict by passing it to a string format method, so that you get something like: - -"Chris is from Seattle, and he likes chocolate cake, mango fruit, -greek salad, and lasagna pasta" -2. Using a list comprehension, build a dictionary of numbers from zero to fifteen and the hexadecimal equivalent (string is fine). - -Do the previous entirely with a dict comprehension - should be a one-liner -4. Using the dictionary from item 1: Make a dictionary using the same keys but with the number of "A"s in each value. You can do this either by editing -the dict in place, or making a new one. If you edit in place, make a copy first! - -5. Create sets s2, s3 and s4 that contain numbers from zero through twenty, divisible 2, 3 and 4. - -Do this with one set comprehension for each set. -What if you had a lot more than 3? - Dont Repeat Yourself (DRY) -create a sequence that holds all three sets -loop through that sequence to build the sets up - so no repeated code. -Extra credit: do it all as a one-liner by nesting a set comprehension inside a list comprehension. (OK, that may be getting carried away!) -''' - -food_prefs = {"name": u"Chris", u"city": u"Seattle", u"cake": u"chocolate", u"fruit": u"mango", u"salad": u"greek", u"pasta": u"lasagna"} - -if __name__ == "__main__": - - #1. Print the dict by passing it to a string format method, so that you get something like: - #"Chris is from Seattle, and he likes chocolate cake, mango fruit, greek salad, and lasagna pasta" - print "{name} is from {city}, and he likes {cake} cake, {fruit} fruit, {salad} salad, and {pasta} pasta.".format(**food_prefs) - - #2. Using a list comprehension, build a dictionary of numbers from zero to fifteen and the hexadecimal equivalent (string is fine). - d =dict() - print [d.setdefault(n,hex(n)) for n in range(0, 15)] - print d - - - #3.Do the previous entirely with a dict comprehension - should be a one-liner - print {n:hex(n) for n in range(0, 15)} - - - #4. Using the dictionary from item 1: Make a dictionary using the same keys but with the number of "A"s in each value. You can do this either by editing - #the dict in place, or making a new one. If you edit in place, make a copy first! - print {key:food_prefs[key].replace('a',str( food_prefs[key].count('a'))) for key in food_prefs} - print food_prefs - - - #5. Create sets s2, s3 and s4 that contain numbers from zero through twenty, divisible 2, 3 and 4. - - #Do this with one set comprehension for each set. - #What if you had a lot more than 3? - Dont Repeat Yourself (DRY) - #create a sequence that holds all three sets - #loop through that sequence to build the sets up - so no repeated code. - #Extra credit: do it all as a one-liner by nesting a set comprehension inside a list comprehension. (OK, that may be getting carried away!) - s2 = {n for n in range(0, 21) if n % 2 == 0} - s3 = {n for n in range(0, 21) if n % 3 == 0} - s4 = {n for n in range(0, 21) if n % 2 == 0} - print s2, s3, s4 - # or - print [ {n for n in range(0, 21) if n%m == 0} for m in range(2, 5)] - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Students/Dave Fugelso/Session 5/mailroom.py b/Students/Dave Fugelso/Session 5/mailroom.py deleted file mode 100644 index 3cd01a26..00000000 --- a/Students/Dave Fugelso/Session 5/mailroom.py +++ /dev/null @@ -1,230 +0,0 @@ -""" - -Dave Fugelso, UW Python Course (Developing on Windows so didn't make this an executable script.) - -UPDATED: For Session 4. - - 1. Uses ValueError exception on numeric input - 2. Uses sum to calculate total donations (Just a fix from last week) - 3. Uses a Dict to hold donor names instead of a list. Key is donor name and value is list of donations. - 4. Remove unnecessary line continuations in Donors initialization. - -And, - - 5. Write a full set of letters to everyone to individual files on disk - 6. See if you can use a dict to switch between the users selections - 7. Try to use a dict and the .format() method to do the letter as one big template -- rather than building up a big string in parts. - - -Mail Room - -You work in the mail room at a local charity. Part of your job is to write incredibly boring, repetitive emails thanking your donors for their generous gifts. -You are tired of doing this over an over again, so yo've decided to let Python help you out of a jam. - -Write a small command-line script called mailroom.py. As with Task 1, This script should be executable. The script should accomplish the following goals: - -It should have a data structure that holds a list of your donors and a history of the amounts they have donated. This structure should be populated at -first with at least five donors, with between 1 and 3 donations each -The script should prompt the user (you) to choose from a menu of 2 actions: 'Send a Thank You' or 'Create a Report'. -If the user (you) selects 'Send a Thank You', prompt for a Full Name. -If the user types 'list', show them a list of the donor names and re-prompt -If the user types a name not in the list, add that name to the data structure and use it. -If the user types a name in the list, use it. -Once a name has been selected, prompt for a donation amount. -Verify that the amount is in fact a number, and re-prompt if it isn't. -Once an amount has been given, add that amount to the donation history of the selected user. -Finally, use string formatting to compose an email thanking the donor for their generous donation. Print the email to the terminal and return to the original prompt. -It is fine to forget new donors once the script quits running. - -If the user (you) selected 'Create a Report' Print a list of your donors, sorted by total historical donation amount. -Include Donor Name, total donated, number of donations and average donation amount as values in each row. -Using string formatting, format the output rows as nicely as possible. The end result should be tabular (values in each column should align with those above and below) -After printing this report, return to the original prompt. -At any point, the user should be able to quit their current task and return to the original prompt. -From the original prompt, the user should be able to quit the script cleanly -First, factor your script into separate functions. Each of the above tasks can be accomplished by a series of steps. Write discreet functions that accomplish individual steps and call them. - -Second, use loops to control the logical flow of your program. Interactive programs are a classic use-case for the while loop. - -Put the functions you write into the script at the top. - -Put your main interaction into an if __name__ == '__main__' block. - -Finally, use only functions and the basic Python data types you've learned about so far. There is no need to go any farther than that for this assignment. - -As always, put the new file in your student directory in a session03 directory, and add it to your clone early. Make frequent commits with good, clear messages about what you are doing and why. - -When you are done, push your changes and make a pull request. -""" - -import operator -import datetime - -#Donor list - -donors = { 'Dave Fugelso': [3000, 6000, 4000], - 'Barb Grecco': [5000], - 'Ken Johnson': [500, 250, 50, 80], - 'Jack Bell': [55, 55, 55, 55, 55], - 'Alejandro Escobar': [25, 25] - } - -def listDonors (): - ''' - List donors. - ''' - for key in donors: - print key, donors[key] - -def report (): - ''' - Create a report with Name, Total Donation, Number of Donation and average donation size. Print largest donor first. - ''' - - # go through list and calculate donor metrics - for key in donors: - print key, donors[key], sum(donors[key]) - - #print it out - print '\n\nDonor\t\t\t\tAmount\t\tNumber of Donations\t\tAverage Donation' - print '-----\t\t\t\t------\t\t-------------------\t\t----------------' - - # Sorting a dict by sum of the values... kinda tough. Fond a great lambda func to do that on Stack Overflow, but - # in the spirit of not getting to far out from the current topic, going to create a list and use the same sort. - - # iterate over the dictionary and create a list of donor, totals - #Check here later to see f we can geta list of keys without iterating.... TBD - sortlist = list() - for key in donors: - sortlist.append ( key ) - - for donorName in sorted(sortlist, key=lambda individual: sum(donors[individual]), reverse=True): - print donorName, - if len(donorName) < 15: - print '\t\t\t', - else: - print '\t\t', - print sum(donors[donorName]), - print '\t\t\t', - if len(donors[donorName]) > 0: - print len(donors[donorName]), - print '\t\t\t', - print sum(donors[donorName]) / len(donors[donorName]) - else: - print '0\t\tNA' - print '\n\n\n\n' - -def thankYou (fullname, donations): - ''' - Send off a thank you note to a single donor. - ''' - print '\n\n\n\n\t\t\t\t\t',datetime.date.today() - print '\nOur Charity Name\nAddress\nEtc\n\n\n' - name = fullname.split() - print 'Dear '+name[0]+':\n' - if len(donations) <= 1: - print 'Thank you for your donation of ', - print donations[0] - print '.' - else: - print 'Thank you for your donations of ', - for i in range (0, len(donations)-1): - print donations[i], - print ',', - print ' and ', - print donations[len(donations)-1], - print '.' - print '\nWe look forward to serving our community blah blah blah.\n\nSincerely, \n\nOur Charity.\n\n\n\n' - - -def thankYouString (fullname, donations): - ''' - Send thank you letter using format instead of piecing the string together. Return the string instead of printing. - ''' - donationString = '' - if len(donations) > 1: - for dollars in donations[:len(donations)-2]: - donationString += str(dollars)+', ' - donationString += 'and ' + str(donations[len(donations)-1]) - else: - donationString = str(donations[0]) - thankYouString = '\n\n\n\n\t\t\t\t\t{date}\nOur Charity Name\nAddress\nEtc\n\n\nDear {name}:\nThank you for your donation(s) of {donations}. \ -We look forward to serving our community blah blah blah.\n\nSincerely, \n\nOur Charity.\n\n\n\n' - return thankYouString.format(date=datetime.date.today(), name=fullname, donations=donationString) - - -def addDonor (name): - ''' - Add <name> to the list of donors and get the amounts of donation. - ''' - donations = [] - amount = 0 - while amount >= 0: - inp = raw_input ('Add amount of donation one at a time. Enter \'-1\' to finish: ') - try: - amount = int(inp) - if amount > 0: - donations.append(amount) - except ValueError: - print ('Input must be a number.') - amount = 0 - donors[name] = donations - - - - -def processDonors (): - ''' - Interact with administrator to manage donor list. - ''' - processing = True - while processing: - action = raw_input ("Select 'Send a Thank You(S)', 'Send Thank you to All(A), ('Create a report(C)', or 'Quit(Q)': ") - if action.upper() == 'S' or action.upper() == 'SEND A THANK YOU': - thankYouProcessing = True - while thankYouProcessing: - name = raw_input ("Find donor (F), add a donor ('A') or ('Add'), or list all donors ('L') or ('List') or 'E' or 'End' to go to main menu: ") - if name.upper() == 'L' or name.upper() == 'LIST': - listDonors() - elif name.upper() == 'E' or name.upper() == 'END': - thankYouProcessing = False - elif name.upper() == 'F' or name.upper() == 'FIND': - donorNames = donors.keys() - l = len (donors) - print 'Use arrow keys to find donor then select <Enter>' - selected = False - nameIndex = 0 - import msvcrt - prevch = 0 - while not selected: - if prevch != 224: - print '\r \r'+ donorNames[nameIndex], '(Enter to select):', - ochars = ord(msvcrt.getch()) - if ochars == 72 and nameIndex > 0: - nameIndex -= 1 - elif ochars == 80 and nameIndex < len (donors)-1: - nameIndex += 1 - elif ochars == 13: - thankYou (donorNames[nameIndex], donors[donorNames[nameIndex]]) - selected = True - - else: - if name in donors.keys(): - thankYou (name, donors[name]) - else: - addDonor(name) - elif action.upper() == 'Q' or action.upper == 'QUIT': - processing = False - elif action.upper() == 'A' or action.upper() == 'ALL': - for name in donors.keys(): - file_out = open(name+'.txt', 'w') - file_out.write (thankYouString (name, donors[name])) - file_out.close() - elif action.upper() == 'C' or action.upper == 'Create a report'.upper(): - report() - else: - print 'Unrecognized input.' - - -if __name__ == "__main__": - processDonors () \ No newline at end of file diff --git a/Students/Dave Fugelso/Session 6/base_element.txt b/Students/Dave Fugelso/Session 6/base_element.txt deleted file mode 100644 index 8e677a6c..00000000 --- a/Students/Dave Fugelso/Session 6/base_element.txt +++ /dev/null @@ -1,4 +0,0 @@ - <html> - Some string - some other string - </html> diff --git a/Students/Dave Fugelso/Session 6/body_and_paragraph_element.txt b/Students/Dave Fugelso/Session 6/body_and_paragraph_element.txt deleted file mode 100644 index 33364cb7..00000000 --- a/Students/Dave Fugelso/Session 6/body_and_paragraph_element.txt +++ /dev/null @@ -1,6 +0,0 @@ - <body> - Some body text - </body> - <p> - some paragraph text - </p> diff --git a/Students/Dave Fugelso/Session 6/html_render.py b/Students/Dave Fugelso/Session 6/html_render.py deleted file mode 100644 index f7576d3a..00000000 --- a/Students/Dave Fugelso/Session 6/html_render.py +++ /dev/null @@ -1,316 +0,0 @@ -''' -html_render.py - -Python Certification Course -Nov 8, 2014 - -Pretty print an html string - -''' - - - -class Element(object): - ''' - Step One, create the element class. - ''' - tag = 'html' - indent = ' ' - attributes = '' - - def __init__ (self, content=None, **attributes): - if content: - self.contents = [content] - else: - self.contents = [] - self.attributes = ' '.join([' {}="{}"'.format(key, val) for key,val in attributes.items()]) - - def append(self, added_content): - ''' - Add content to existing content, if any. - ''' - self.contents.append (added_content) - - def render (self, file_out, ind = ''): - ''' - Render the line to file_out.write. - ''' - - file_out.write (ind + '<'+self.tag+self.attributes+'>\n') - for content in self.contents: - - if isinstance(content, Element): - content.render(file_out, ind + self.indent) - else: - file_out.write (ind+self.indent+content+'\n') - file_out.write (ind+'</'+self.tag+'>\n') - - -''' -Step 2, 3 -''' - - -class bodyElement (Element): - ''' - Sub class Element to replace tag 'html' with 'body' - ''' - tag = 'body' - -class pElement (Element): - ''' - Sub class Element to replace tag 'html' with 'p' (paragraph) - ''' - tag = 'p' - -class headElement (Element): - ''' - Sub class Element to replace tag 'html' with 'head' - ''' - tag = 'head' - -class OneLineTag (Element): - ''' - Re-defines render top print on one line. - ''' - def render (self, file_out, ind = ''): - ''' - Render the line to file_out.write. - ''' - - for content in self.contents: - file_out.write (ind+'<'+self.tag+'>'+content+'</'+self.tag+'>'+'\n') - -class titleElement (OneLineTag): - ''' - Sub class Element to replace tag 'html' with 'title' - ''' - tag = 'title' - -#Step 5 - -class SelfClosingTag(Element): - ''' - Uses Element's init and replaces render with self closer. - ''' - def render (self, file_out, ind = ''): - if len(self.contents) > 0: - file_out.write (ind+'<'+self.tag+' '+self.contents[0]+'/>\n') - else: - file_out.write (ind+'<'+self.tag+' />\n') - - -class brElement (SelfClosingTag): - tag = 'br' - -class hrElement (SelfClosingTag): - tag = 'hr' - - -#step 6 -class anchorElement (OneLineTag): - ''' - Add a link element. Overrides __init__ - ''' - tag = 'a' - def __init__(self, url, link): - self.contents = [' href="https://github.com/%7B%7D">{}'.format(url,link)] - - def render (self, file_out, ind = ''): - ''' - Render the line to file_out.write. - ''' - file_out.write (ind+'<'+self.tag+self.contents[0]+'/>\n') - - -#step 7 -class ulElement (Element): - tag = 'ul' - -class liElement (Element): - tag = 'li' - -class headerElement(OneLineTag): - ''' - Create tag based on header level. Redefines __init__ and calls base class __init__. - ''' - def __init__ (self, level, content=None): - self.tag = 'h{}'.format(level) - super(headerElement, self).__init__(content) - -class htmlElement (Element): - ''' - Override render to ass DOCTYPE and call base class render. - ''' - def render (self, file_out, ind = ''): - ''' - Render the line to file_out.write. - ''' - file_out.write (ind+'<!DOCTYPE html>\n') - return super(htmlElement, self).render(file_out, ind) - -class metaElement (SelfClosingTag): - tag = 'meta' - -#------------------------------------------------------------------------------------------------------------------------------------------------- -# Test code - - -def testStepOne (): - e = Element ('Some string') - e.append ('some other string') - file_out = open('step1.txt', 'w') - e.render (file_out, ' ') - file_out.close() - -def testStepTwo(): - e = Element ('Some string') - b = bodyElement ('Some body text') - p = pElement ('some paragraph text') - e.append (b) - e.append(p) - file_out = open('step2.txt', 'w') - e.render (file_out, ' ') - file_out.close() - -def testStepThree(): - e = Element ('Some string') - t = titleElement('Title Line Here') - b = bodyElement ('Some body text') - h = headElement('Header line') - p = pElement ('some paragraph text') - e.append (t) - e.append (h) - e.append (b) - b.append(p) - file_out = open('step3.txt', 'w') - e.render (file_out, ' ') - file_out.close() - -def testStepFour(): - e = Element ('Some string') - t = titleElement('Title Line Here') - b = bodyElement ('Some body text') - h = headElement('Header line') - p = pElement ('some paragraph text', style="text-align: center; font-style: oblique;", color="255") - e.append (t) - e.append (h) - e.append (b) - b.append(p) - file_out = open('step4.txt', 'w') - e.render (file_out, ' ') - file_out.close() - -def testStepFive(): - e = Element ('Some string') - t = titleElement('Title Line Here') - b = bodyElement ('Some body text') - h = headElement('Header line') - p = pElement ('some paragraph text', style="text-align: center; font-style: oblique;", color="255") - hr = hrElement () - br = brElement() - e.append (t) - e.append (h) - e.append (b) - b.append (p) - b.append (hr) - b.append (br) - file_out = open('step5.txt', 'w') - e.render (file_out, ' ') - file_out.close() - -def testStepSix(): - e = Element ('Some string') - t = titleElement('Title Line Here') - b = bodyElement ('Some body text') - h = headElement('Header line') - p = pElement ('some paragraph text', style="text-align: center; font-style: oblique;", color="255") - hr = hrElement () - br = brElement() - anchor = anchorElement('http://http//stackoverflow.com/questions', 'Get help here!') - e.append (t) - e.append (h) - e.append (b) - b.append (p) - b.append (hr) - b.append (br) - b.append (anchor) - file_out = open('step6.txt', 'w') - e.render (file_out, ' ') - file_out.close() - -def testStepSeven(): - e = Element ('Some string') - t = titleElement('Title Line Here') - b = bodyElement ('Some body text') - h = headElement('Header line') - e.append(t) - p = pElement ('some paragraph text', style="text-align: center; font-style: oblique;", color="255") - hr = hrElement () - br = brElement() - header = headerElement (2, 'Now Hear This!') - anchor = anchorElement('http://http//stackoverflow.com/questions', 'Get help here!') - e.append (h) - e.append (b) - b.append (header) - b.append (p) - b.append (hr) - b.append (br) - b.append (anchor) - ul = ulElement(None, style="line-height:200%", id="TheList") - li1 = liElement ('The first item in a list') - li2 = liElement ('This is the second item', style="color: red") - li3 = liElement ('And this is a') - li3.append(anchor) - li3.append('to StackOverflow') - ul.append(li1) - ul.append(li2) - ul.append(li3) - b.append(ul) - file_out = open('step7.txt', 'w') - e.render (file_out, ' ') - file_out.close() - -def testStepEight(): - base = htmlElement ('Some string') - t = titleElement('Title Line Here') - m = metaElement ('charset="UTF-8"') - b = bodyElement ('Some body text') - h = headElement() - h.append(m) - h.append(t) - p = pElement ('some paragraph text', style="text-align: center; font-style: oblique;", color="255") - hr = hrElement () - br = brElement() - header = headerElement (2, 'Now Hear This!') - anchor = anchorElement('http://http//stackoverflow.com/questions', 'Get help here!') - base.append (h) - base.append (b) - b.append (header) - b.append (p) - b.append (hr) - b.append (br) - b.append (anchor) - ul = ulElement(None, style="line-height:200%", id="TheList") - li1 = liElement ('The first item in a list') - li2 = liElement ('This is the second item', style="color: red") - li3 = liElement ('And this is a') - li3.append(anchor) - li3.append('to StackOverflow') - ul.append(li1) - ul.append(li2) - ul.append(li3) - b.append(ul) - file_out = open('step8.txt', 'w') - base.render (file_out, ' ') - file_out.close() - -if __name__ == '__main__': - testStepOne() - testStepTwo() - testStepThree() - testStepFour() - testStepFive() - testStepSix() - testStepSeven() - testStepEight() diff --git a/Students/Dave Fugelso/Session 6/lambda_lab.py b/Students/Dave Fugelso/Session 6/lambda_lab.py deleted file mode 100644 index 84f16862..00000000 --- a/Students/Dave Fugelso/Session 6/lambda_lab.py +++ /dev/null @@ -1,57 +0,0 @@ -''' -Write a function that returns a list of n functions, such that each one, when called, will return the input value, incremented by an increasing number. - -Use a for loop, lambda, and a keyword argument - -( Extra credit ): - -Do it with a list comprehension, instead of a for loop - -Not clear? heres what you should get - - -In [96]: the_list = function_builder(4) -### so the_list should contain n functions (callables) -In [97]: the_list[0](2) -Out[97]: 2 -## the zeroth element of the list is a function that add 0 -## to the input, hence called with 2, returns 2 -In [98]: the_list[1](2) -Out[98]: 3 -## the 1st element of the list is a function that adds 1 -## to the input value, thus called with 2, returns 3 -In [100]: for f in the_list: - print f(5) - .....: -5 -6 -7 -8 -### If you loop through them all, and call them, each one adds one more -to the input, 5... i.e. the nth function in the list adds n to the input. - -''' - -def function_build(n): - l = [] - for i in range(n): - l.append(lambda x,j=i:x+j) - return l - -if __name__ == "__main__": - the_list = function_build(4) - print the_list[0](2) - print the_list[1](2) - for f in the_list: - print f(5) - - #And now in a list comprehension - the_list = [lambda x,j=i:x*j for i in range(5)] - print the_list[0](2) - print the_list[1](2) - for f in the_list: - print f(5) - - - - \ No newline at end of file diff --git a/Students/Dave Fugelso/Session 6/sample_html.txt b/Students/Dave Fugelso/Session 6/sample_html.txt deleted file mode 100644 index f2687e95..00000000 --- a/Students/Dave Fugelso/Session 6/sample_html.txt +++ /dev/null @@ -1,27 +0,0 @@ -<!DOCTYPE html> -<html> - <head> - <meta charset="UTF-8" /> - <title>PythonClass = Revision 1087: - - -

    PythonClass - Class 6 example

    -

    - Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text -

    -
    -
      -
    • - The first item in a list -
    • -
    • - This is the second item -
    • -
    • - And this is a - link - to google -
    • -
    - - \ No newline at end of file diff --git a/Students/Dave Fugelso/Session 6/step1.txt b/Students/Dave Fugelso/Session 6/step1.txt deleted file mode 100644 index 8e677a6c..00000000 --- a/Students/Dave Fugelso/Session 6/step1.txt +++ /dev/null @@ -1,4 +0,0 @@ - - Some string - some other string - diff --git a/Students/Dave Fugelso/Session 6/step2.txt b/Students/Dave Fugelso/Session 6/step2.txt deleted file mode 100644 index ac4212cc..00000000 --- a/Students/Dave Fugelso/Session 6/step2.txt +++ /dev/null @@ -1,9 +0,0 @@ - - Some string - - Some body text - -

    - some paragraph text -

    - diff --git a/Students/Dave Fugelso/Session 6/step3.txt b/Students/Dave Fugelso/Session 6/step3.txt deleted file mode 100644 index f8cb8ed6..00000000 --- a/Students/Dave Fugelso/Session 6/step3.txt +++ /dev/null @@ -1,13 +0,0 @@ - - Some string - Title Line Here - - Header line - - - Some body text -

    - some paragraph text -

    - - diff --git a/Students/Dave Fugelso/Session 6/step4.txt b/Students/Dave Fugelso/Session 6/step4.txt deleted file mode 100644 index a4ab24fe..00000000 --- a/Students/Dave Fugelso/Session 6/step4.txt +++ /dev/null @@ -1,13 +0,0 @@ - - Some string - Title Line Here - - Header line - - - Some body text -

    - some paragraph text -

    - - diff --git a/Students/Dave Fugelso/Session 6/step5.txt b/Students/Dave Fugelso/Session 6/step5.txt deleted file mode 100644 index 6aafc828..00000000 --- a/Students/Dave Fugelso/Session 6/step5.txt +++ /dev/null @@ -1,15 +0,0 @@ - - Some string - Title Line Here - - Header line - - - Some body text -

    - some paragraph text -

    -
    -
    - - diff --git a/Students/Dave Fugelso/Session 6/step6.txt b/Students/Dave Fugelso/Session 6/step6.txt deleted file mode 100644 index 555c041a..00000000 --- a/Students/Dave Fugelso/Session 6/step6.txt +++ /dev/null @@ -1,16 +0,0 @@ - - Some string - Title Line Here - - Header line - - - Some body text -

    - some paragraph text -

    -
    -
    - Get help here!/> - - diff --git a/Students/Dave Fugelso/Session 6/step7.txt b/Students/Dave Fugelso/Session 6/step7.txt deleted file mode 100644 index 810c6525..00000000 --- a/Students/Dave Fugelso/Session 6/step7.txt +++ /dev/null @@ -1,30 +0,0 @@ - - Some string - Title Line Here - - Header line - - - Some body text -

    Now Hear This!

    -

    - some paragraph text -

    -
    -
    -
    Get help here!/> - - - diff --git a/Students/Dave Fugelso/Session 6/step8.txt b/Students/Dave Fugelso/Session 6/step8.txt deleted file mode 100644 index 17daa369..00000000 --- a/Students/Dave Fugelso/Session 6/step8.txt +++ /dev/null @@ -1,31 +0,0 @@ - - - Some string - - - Title Line Here - - - Some body text -

    Now Hear This!

    -

    - some paragraph text -

    -
    -
    -
    Get help here!/> - - - diff --git a/Students/Dave Fugelso/Session 7/Circle.py b/Students/Dave Fugelso/Session 7/Circle.py deleted file mode 100644 index 59503916..00000000 --- a/Students/Dave Fugelso/Session 7/Circle.py +++ /dev/null @@ -1,65 +0,0 @@ -''' - -Defines Circle Class. - -''' - -from math import pi - -class Circle (object): - ''' - Defines methods and attributes that apply to a circle. - ''' - def __init__(self, radius): - self.radius = float(radius) - - @property - def diameter(self): - return self.radius * 2. - - @diameter.setter - def diameter (self, val): - self.radius = val/2. - - def area(self): - ''' - Calculate the area of this circle - ''' - return self.radius*self.radius * pi - - @classmethod - def from_diameter(cls, diameter): - return cls(diameter/2.) - - def __repr__(self): - return 'Circle.Circle({})'.format(self.radius) - - def __str__(self): - return 'Circle wih radius {}'.format(self.radius) - - def __add__(self, other): - if isinstance(other, Circle): - return Circle (self.radius + other.radius) - else: - self.radius += other - return self - - def __mul__(self, other): - if isinstance(other, Circle): - return Circle (self.radius * other.radius) - else: - self.radius *= other - return self - - def __rmul__(self, other): - self.radius *= other - return self - - def __gt__(self, other): - return self.radius > other.radius - - def __lt__(self, other): - return self.radius < other.radius - - def __eq__(self, other): - return self.radius == other.radius \ No newline at end of file diff --git a/Students/Dave Fugelso/Session 7/circle_test.py b/Students/Dave Fugelso/Session 7/circle_test.py deleted file mode 100644 index dcb73450..00000000 --- a/Students/Dave Fugelso/Session 7/circle_test.py +++ /dev/null @@ -1,81 +0,0 @@ -''' -These are all the unit test to make sure circle works as expected. - -Really taking these seriously as feedback from last homework assignment indicated I should. -I skipped the unit tests and did step tests. Not this time! -''' - -import Circle -import unittest -import math - -class TestCircleClass (unittest.TestCase): # note didn't save class notes. Wrote this first! - - def test_create_circle(self): - # First test, instantiate the circle class - c = Circle.Circle (3) - print c.radius - - def test_get_diameter(self): - c = Circle.Circle (3.) # Test fetching diameter - print c.diameter - - def test_set_diameter(self): - c = Circle.Circle (3.) # Test setting diameter - c.diameter = 7 - print c.diameter - assert c.diameter == 7. - assert c.radius == 3.5 - - def test_area (self): - c = Circle.Circle (3.) - print c.area() - assert c.area() == math.pi * 9. - - def test_alternate_constructor(self): - c = Circle.Circle.from_diameter(8) - print c.diameter - print c.radius - assert c.diameter == 8 - assert c.radius == 4 - - def test_repr_and_str_builtins(self): - c = Circle.Circle(4) - print c - print 'Expected: "Circle with radius: 4.000000"' - - print repr(c) - print 'Expected: "Circle(4)"' - - d = eval(repr(c)) - print d - print 'Expected: "Circle(4)"' - - def test_add_and_mul(self): - c1 = Circle.Circle(2) - c2 = Circle.Circle(4) - print c1 + c2 - print 'Expected: "Circle(6)"' - print c2 * 3 - print 'Expected: "Circle(12)"' - print 3 * c2 - print 'Expected: "Circle(12)"' - - def test_comparisons (self): - c1 = Circle.Circle(2) - c2 = Circle.Circle(4) - c3 = Circle.Circle(4) - - assert c1 < c2 - assert not c1 > c3 - assert not c1 == c2 - assert c2 == c3 - - def test_sort(self): - circles = [Circle.Circle(6), Circle.Circle(7), Circle.Circle(8), Circle.Circle(4), Circle.Circle(0), Circle.Circle(2), Circle.Circle(3), Circle.Circle(5), Circle.Circle(9), Circle.Circle(1)] - print circles - print circles.sort() - -if __name__ =='__main__': - unittest.main() - \ No newline at end of file diff --git a/Students/Dave Fugelso/Session 8/Sparse.py b/Students/Dave Fugelso/Session 8/Sparse.py deleted file mode 100644 index 1e1014ac..00000000 --- a/Students/Dave Fugelso/Session 8/Sparse.py +++ /dev/null @@ -1,80 +0,0 @@ -''' -Sparse Array - -Note, missed class out of town so not quite sure I know what this needs to do. - -But, only store elements that have values and assume that the key is 0 to n-1 where n is the total -length of the array. - -__init__ is how? -static length or allow to grow/shrink? - -Decisions: - -1. Init with just a length. -2. May explicitly change size with setSize. Deletes entries out of range on shrink. -3. Use set to populate array - -Implement with dictionary - -''' - -class Sparse(object): - - _length = 0 - array = {} - def __init__(self, size): - self._length = size; - - @property - def length (self): - return self._length - - @length.setter - def length (self, newlength): - ''' - if expanding just change length, but if shortening, delete entries greater than range. - ''' - if newlength < self._length: - for index in self.array.keys(): - if index >= self._length: - self.array.pop(index, None) - self._length = newlength - - def __len__(self): - ''' - Len for iteration. - ''' - return self._length - - def __getitem__(self, index): - ''' - return element at index or zero if none. - ''' - if index < 0 or index >= self.length: - raise IndexError ('Sparse Array out of range') - else: - return self.array.get(index, 0) - - def __setitem__ (self, index, value): - ''' - Set item if in range. If value is zero, remove item. - ''' - if index < 0 or index >= self.length: - raise IndexError ('Sparse Array out of range') - elif value == 0: - self.array.pop(index, None) - else: - self.array[index] = value - - def __delitem__ (self, index): - ''' - Delete an item. - ''' - if index < 0 or index >= self.length: - raise IndexError ('Sparse Array out of range') - else: - self.array.pop(index, None) - - - \ No newline at end of file diff --git a/Students/Dave Fugelso/Session 8/generator_solution.py b/Students/Dave Fugelso/Session 8/generator_solution.py deleted file mode 100644 index cf952c15..00000000 --- a/Students/Dave Fugelso/Session 8/generator_solution.py +++ /dev/null @@ -1,104 +0,0 @@ -def y_xrange(start, stop, step=1): - i = start - while i < stop: - yield i - i += step - - - -def intsum(): - ''' - keep adding the next integer - - 0 + 1 + 2 + 3 + 4 + 5 + ... - - so the sequence is: - - 0, 1, 3, 6, 10, 15 ..... - ''' - i = 0 - sum = 0 - - while True: - sum = i + sum - yield sum - i += 1 - - -def intsum2(): - ''' - test_generator has a intsum2... dunno why - ''' - i = 0 - sum = 0 - - while True: - sum = i + sum - yield sum - i += 1 - -def doubler(): - ''' - Doubler: - Each value is double the previous value: - - 1, 2, 4, 8, 16, 32, - ''' - sum = 1 - while True: - yield sum - sum += sum - -def fib(): - ''' - Fibonacci sequence: - The fibonacci sequence as a generator: - - f(n) = f(n-1) + f(n-2) - - 1, 1, 2, 3, 5, 8, 13, 21, 34... - ''' - yield 1 - x = 0 - y = 1 - while True: - yield x+y - x, y = y, x+y - - - - - -def isprime(n): - '''check if integer n is a prime''' - # make sure n is a positive integer - n = abs(int(n)) - # 0 and 1 are not primes - if n < 2: - return False - # 2 is the only even prime number - if n == 2: - return True - # all other even numbers are not primes - if not n & 1: - return False - # range starts with 3 and only needs to go up the squareroot of n - # for all odd numbers - for x in range(3, int(n**0.5)+1, 2): - if n % x == 0: - return False - return True - -def prime(): - ''' - Prime numbers: - Generate the prime numbers (numbers only divisible by them self and 1): - - 2, 3, 5, 7, 11, 13, 17, 19, 23... - ''' - i = 2 - while True: - while not isprime (i): - i += 1 - yield i - i += 1 \ No newline at end of file diff --git a/Students/Dave Fugelso/Session 8/iterator.py b/Students/Dave Fugelso/Session 8/iterator.py deleted file mode 100644 index 3d621d74..00000000 --- a/Students/Dave Fugelso/Session 8/iterator.py +++ /dev/null @@ -1,8 +0,0 @@ -''' -Extend iterator_1 to do xrange-like iteration -''' - -from iterator_1 import IterateMe_1 - -class iterator (IterateMe_1): - diff --git a/Students/Dave Fugelso/Session 8/test_generator.py b/Students/Dave Fugelso/Session 8/test_generator.py deleted file mode 100644 index cf02fae5..00000000 --- a/Students/Dave Fugelso/Session 8/test_generator.py +++ /dev/null @@ -1,78 +0,0 @@ -""" -test_generator.py - -tests the solution to the generator lab - -can be run with py.test or nosetests -""" - -import generator_solution as gen - - -def test_intsum(): - - g = gen.intsum() - - assert g.next() == 0 - assert g.next() == 1 - assert g.next() == 3 - assert g.next() == 6 - assert g.next() == 10 - assert g.next() == 15 - - -def test_intsum2(): - - g = gen.intsum2() - - assert g.next() == 0 - assert g.next() == 1 - assert g.next() == 3 - assert g.next() == 6 - assert g.next() == 10 - assert g.next() == 15 - - -def test_doubler(): - - g = gen.doubler() - - assert g.next() == 1 - assert g.next() == 2 - assert g.next() == 4 - assert g.next() == 8 - assert g.next() == 16 - assert g.next() == 32 - - for i in range(10): - j = g.next() - - assert j == 2**15 - - -def test_fib(): - g = gen.fib() - - assert g.next() == 1 - assert g.next() == 1 - assert g.next() == 2 - assert g.next() == 3 - assert g.next() == 5 - assert g.next() == 8 - assert g.next() == 13 - assert g.next() == 21 - - -def test_prime(): - g = gen.prime() - - assert g.next() == 2 - assert g.next() == 3 - assert g.next() == 5 - assert g.next() == 7 - assert g.next() == 11 - assert g.next() == 13 - assert g.next() == 17 - assert g.next() == 19 - assert g.next() == 23 - diff --git a/Students/Dave Fugelso/Session 8/test_iterator.py b/Students/Dave Fugelso/Session 8/test_iterator.py deleted file mode 100644 index b11c8ca3..00000000 --- a/Students/Dave Fugelso/Session 8/test_iterator.py +++ /dev/null @@ -1,14 +0,0 @@ -''' -test_iterating class -''' - - -from iterator import Sparse -import unittest - -def test_iteration(self): - for i in iterator_inst(0, 50, step=1): - - -if __name__ =='__main__': - unittest.main() \ No newline at end of file diff --git a/Students/Dave Fugelso/Session 8/test_sparse.py b/Students/Dave Fugelso/Session 8/test_sparse.py deleted file mode 100644 index 41d47002..00000000 --- a/Students/Dave Fugelso/Session 8/test_sparse.py +++ /dev/null @@ -1,100 +0,0 @@ -''' -Sparse array unit tests. - -Note: I didn't see that there was a test_sparse_array in solutions... - -''' - -from Sparse import Sparse -import unittest - - -class TestSparseClass (unittest.TestCase): - - def populate_array(self, s): - s[5] = 100 - s[15] = 99 - s[25] = 98 - s[35] = 97 - s[45] = 96 - s[55] = 95 - - - def test_create_sparse(self): - # Create and print a spare array w/100 elements - s = Sparse (100) - print s - - def test_get_item (self): - s = Sparse (100) - self.populate_array(s) - assert s[5] == 100 - assert s[6] == 0 - - def test_del (self): - s = Sparse (100) - self.populate_array(s) - del (s[5]) - assert s[5] == 0 - - - def test_range_set_get(self): - s = Sparse (100) - self.populate_array(s) - with self.assertRaises(IndexError) as context: - i = s[-1] - self.assertEqual(context.exception.message, 'Sparse Array out of range') - - with self.assertRaises(IndexError) as context: - i = s[100] - self.assertEqual(context.exception.message, 'Sparse Array out of range') - - with self.assertRaises(IndexError) as context: - s[-1] = 5 - self.assertEqual(context.exception.message, 'Sparse Array out of range') - - with self.assertRaises(IndexError) as context: - s[100] = 5 - self.assertEqual(context.exception.message, 'Sparse Array out of range') - - with self.assertRaises(IndexError) as context: - del (s[100]) - self.assertEqual(context.exception.message, 'Sparse Array out of range') - - with self.assertRaises(IndexError) as context: - del(s[-1]) - self.assertEqual(context.exception.message, 'Sparse Array out of range') - - #with self.assertRaises(IndexError) as context: - # s[0] = 5 - #self.assertEqual(context.exception.message, 'Sparse Array out of range') - - def test_resize (self): - s = Sparse (100) - self.populate_array(s) - - # test smaller - s.length = 50 - with self.assertRaises(IndexError) as context: - a = s[55] - self.assertEqual(context.exception.message, 'Sparse Array out of range') - - # test back to larger - s.length = 100 - s[55] = 100 - assert (s[55] == 100) - - def test_iteration (self): - s = Sparse (100) - self.populate_array(s) - index = 0 - for val in s: - print index, val - assert val == s[index] - index += 1 - - - -if __name__ =='__main__': - unittest.main() - \ No newline at end of file diff --git a/Students/Dave Fugelso/Session 9/p_wrapper.py b/Students/Dave Fugelso/Session 9/p_wrapper.py deleted file mode 100644 index f209701d..00000000 --- a/Students/Dave Fugelso/Session 9/p_wrapper.py +++ /dev/null @@ -1,32 +0,0 @@ -''' -p_wrapper.py - -Define p_wrapper and tag_wrapper decorators. - -Since we aren't saving any state info will not use callable class. For p_wrapper. - -For tag_wrapper gonna make it callable class - -''' - - - -def p_wrapper (func): - def string_return (string): - return '

    '+string+'

    ' - return string_return - -class tag_wrapper (object): - - def __init__(self, tag): - #print "Inside __init__()" - self.tag = tag - - def __call__(self, string): - #print "Inside __call__()" - def tagged_line (string): - # print 'decorator' - # print '<'+self.tag+'> '+string+' ' - return '<'+self.tag+'> '+string+' ' - return tagged_line - diff --git a/Students/Dave Fugelso/Session 9/test_timer.py b/Students/Dave Fugelso/Session 9/test_timer.py deleted file mode 100644 index 8ee0c949..00000000 --- a/Students/Dave Fugelso/Session 9/test_timer.py +++ /dev/null @@ -1,15 +0,0 @@ -''' -Test timer context manager. -''' - -from timer import * - -def test_timer(): - print 'test' - with Timer() as t: - for i in range(100000): - i = i ** 20 - print t.elapsed_time() - assert t.elapsed_time() > 0 - -test_timer() \ No newline at end of file diff --git a/Students/Dave Fugelso/Session 9/timer.py b/Students/Dave Fugelso/Session 9/timer.py deleted file mode 100644 index e703016e..00000000 --- a/Students/Dave Fugelso/Session 9/timer.py +++ /dev/null @@ -1,22 +0,0 @@ -import time - -class Timer (object): - ''' - Context manager that prints elapsed time on exit. - ''' - def __init__(self): - print 'init' - pass - - - def __enter__(self): - print 'enter' - self.start = time.time() - return self - - def __exit__(self, exc_type, exc_val, exc_tb): - print 'Exit' - self.end = time.time() - - def elapsed_time (self): - return self.end - self.start diff --git a/Students/Dave Fugelso/args_lab.py b/Students/Dave Fugelso/args_lab.py deleted file mode 100644 index 0353e812..00000000 --- a/Students/Dave Fugelso/args_lab.py +++ /dev/null @@ -1,22 +0,0 @@ -''' - -Write a function that has four optional parameters (with defaults): -fore_color -back_color -link_color -visited_color -Have it print the colors (use strings for the colors) -Call it with a couple different parameters set - -''' - -def variableColors(fore_color = 'white', back_color='black', link_color='blue', visited_color='dark_blue'): - print 'Colors:', fore_color, back_color, link_color, visited_color - -if __name__ == "__main__": - colors = ('red', 'white', 'blue', 'green') - variableColors() - variableColors('red', 'white', 'blue', 'green') - variableColors(colors) - variableColors(fore_color='purple', back_color='pink') - \ No newline at end of file diff --git a/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/MUST --- missing_char.py b/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/MUST --- missing_char.py deleted file mode 100644 index f99602d2..00000000 --- a/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/MUST --- missing_char.py +++ /dev/null @@ -1,30 +0,0 @@ -# Question:Given a non-empty string and an int n, return a new string where -# the char at index n has been removed. The value of n will be a valid index -# of a char in the original string (i.e. n will be in the range 0..len(str)-1 inclusive). -# -# See example below: -# missing_char('kitten', 1) → 'ktten' -# missing_char('kitten', 0) → 'itten' -# missing_char('kitten', 4) → 'kittn' - -# My solution -def missing_char(str, n): - strlength = len(str) - if n == 0: - str1 = str[1:strlength] - return str1 - elif n == strlength: - str1 = str[:(strlength-1)] - return str1 - else: - str1 = str[0:n] + str[(n+1):strlength] - return str1 -# End - -# Better solution: - -def missing_char(str, n): - front = str[:n] # up to but not including n - back = str[n+1:] # n+1 through end of string - return front + back -# End diff --git a/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/diff21.py b/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/diff21.py deleted file mode 100644 index 019208e6..00000000 --- a/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/diff21.py +++ /dev/null @@ -1,6 +0,0 @@ -def diff21(n): - if n > 21: - return 2*abs(21-n) - else: - return abs(21-n) - diff --git a/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/front3.py b/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/front3.py deleted file mode 100644 index 58e0d024..00000000 --- a/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/front3.py +++ /dev/null @@ -1,6 +0,0 @@ -def front3(str): - if len(str) >= 3: - return str[:3] + str[:3] + str[:3] - else: - return str + str + str - diff --git a/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/front_back.py b/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/front_back.py deleted file mode 100644 index efd70bd4..00000000 --- a/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/front_back.py +++ /dev/null @@ -1,10 +0,0 @@ -def front_back(str): - if len(str) == 1: - return(str) - else: - front = str[:1] - back = str[len(str)-1:] - middle = str[1:(len(str)-1)] - newstr = back + middle + front - return newstr - diff --git a/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/makes10.py b/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/makes10.py deleted file mode 100644 index 96b82dfd..00000000 --- a/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/makes10.py +++ /dev/null @@ -1,6 +0,0 @@ -def makes10(a, b): - if a == 10 or b == 10 or a + b == 10: - return True - else: - return False - diff --git a/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/monkey_trouble.py b/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/monkey_trouble.py deleted file mode 100644 index 0d262783..00000000 --- a/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/monkey_trouble.py +++ /dev/null @@ -1,8 +0,0 @@ -def monkey_trouble(a_smile, b_smile): - if a_smile and b_smile: - return True - elif not a_smile and not b_smile: - return True - else: - return False - diff --git a/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/near_hundred.py b/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/near_hundred.py deleted file mode 100644 index 6c71f52a..00000000 --- a/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/near_hundred.py +++ /dev/null @@ -1,6 +0,0 @@ -def near_hundred(n): - if (abs(100 - n) <= 10) or (abs(200 - n) <= 10): - return True - else: - return False - diff --git a/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/not_string.py b/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/not_string.py deleted file mode 100644 index 24773c31..00000000 --- a/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/not_string.py +++ /dev/null @@ -1,5 +0,0 @@ -def not_string(str): - if str.find("not") == 0: - return str - else: - return "not" + " " + str diff --git a/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/parrot_trouble.py b/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/parrot_trouble.py deleted file mode 100644 index e645d3bc..00000000 --- a/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/parrot_trouble.py +++ /dev/null @@ -1,6 +0,0 @@ -def parrot_trouble(talking, hour): - if talking and (hour < 7 or hour >20): - return True - else: - return False - diff --git a/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/pos_neg.py b/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/pos_neg.py deleted file mode 100644 index 19ff5b75..00000000 --- a/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/pos_neg.py +++ /dev/null @@ -1,8 +0,0 @@ -def pos_neg(a, b, negative): - if (a < 0 and b > 0 and not negative) or (a > 0 and b < 0 and not negative): - return True - elif (negative and a < 0 and b < 0): - return True - else: - return False - diff --git a/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/sleep_in.py b/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/sleep_in.py deleted file mode 100644 index 8ef2380a..00000000 --- a/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/sleep_in.py +++ /dev/null @@ -1,6 +0,0 @@ -def sleep_in(weekday, vacation): - if not weekday or vacation: - return True - else: - return False - diff --git a/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/sum_double.py b/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/sum_double.py deleted file mode 100644 index f94efaa5..00000000 --- a/Students/Hui Zhang/Session 1/CodingBat/Warmup-1/sum_double.py +++ /dev/null @@ -1,6 +0,0 @@ -def sum_double(a, b): - if a == b: - return 2*(a + b) - else: - return a + b - diff --git a/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/MUST --- Wrong --- arrary123.py~ b/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/MUST --- Wrong --- arrary123.py~ deleted file mode 100644 index 4ffb5a42..00000000 --- a/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/MUST --- Wrong --- arrary123.py~ +++ /dev/null @@ -1,18 +0,0 @@ -def array123(nums): - n = len(nums) - if n < 3: - return(False) - elif n == 3: - if nums[0] == 1 and nums[1] == 2 and nums[2] == 3: - return(True) - else: - return(False) - elif n > 3: - count1 = 0 - for i in range(0,n-2): - if (nums[i] == 1) and (nums[i+1] == 2) and (nums[i+2] == 3): - count1 = count1 + 1 - if count1 >= 1: - return(True) - else: - return(False) diff --git a/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/MUST --- Wrong --- last2.py~ b/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/MUST --- Wrong --- last2.py~ deleted file mode 100644 index 51040e6f..00000000 --- a/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/MUST --- Wrong --- last2.py~ +++ /dev/null @@ -1,4 +0,0 @@ -def last2(str): - str1 = str[-2:] - n = str.count(str1) -1 - return(n) diff --git a/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/MUST --- arrary123.py b/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/MUST --- arrary123.py deleted file mode 100644 index 4ffb5a42..00000000 --- a/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/MUST --- arrary123.py +++ /dev/null @@ -1,18 +0,0 @@ -def array123(nums): - n = len(nums) - if n < 3: - return(False) - elif n == 3: - if nums[0] == 1 and nums[1] == 2 and nums[2] == 3: - return(True) - else: - return(False) - elif n > 3: - count1 = 0 - for i in range(0,n-2): - if (nums[i] == 1) and (nums[i+1] == 2) and (nums[i+2] == 3): - count1 = count1 + 1 - if count1 >= 1: - return(True) - else: - return(False) diff --git a/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/MUST --- array_count9.py b/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/MUST --- array_count9.py deleted file mode 100644 index b45917f3..00000000 --- a/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/MUST --- array_count9.py +++ /dev/null @@ -1,7 +0,0 @@ -def array_count9(nums): - count1 = 0 - for i in range(len(nums)): - if 9 - nums[i] == 0: - count1 = count1 + 1 - return(count1) - diff --git a/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/MUST --- array_front9.py b/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/MUST --- array_front9.py deleted file mode 100644 index 9baae4cc..00000000 --- a/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/MUST --- array_front9.py +++ /dev/null @@ -1,19 +0,0 @@ -def array_front9(nums): - n = len(nums) - count1 = 0 - if n >= 4: - for i in range(4): - if 9 - nums[i] == 0: - count1 = count1 + 1 - if count1 >= 1: - return(True) - else: - return(False) - else: - for i in range(n): - if 9 - nums[i] == 0: - count1 = count1 + 1 - if count1 >= 1: - return(True) - else: - return(False) diff --git a/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/MUST --- last2.py b/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/MUST --- last2.py deleted file mode 100644 index 36b30de6..00000000 --- a/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/MUST --- last2.py +++ /dev/null @@ -1,10 +0,0 @@ -def last2(str): - str1 = str[-2:] - n = len(str) - count1 = 0 - for i in range(n-1): - # only check substring with length 2 from far left to two to far right in the string. - if i+2 <= n-1: - if str[i:(i+2)] == str1: - count1 = count1 + 1 - return(count1) diff --git a/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/MUST --- string_bits.py b/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/MUST --- string_bits.py deleted file mode 100644 index 8d09becb..00000000 --- a/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/MUST --- string_bits.py +++ /dev/null @@ -1,6 +0,0 @@ -def string_bits(str): - strlength = len(str) - newstr = '' - for i in range(1,strlength+1,2): - newstr = newstr + str[(i-1):i] - return(newstr) diff --git a/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/MUST --- string_match.py b/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/MUST --- string_match.py deleted file mode 100644 index 962d67b4..00000000 --- a/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/MUST --- string_match.py +++ /dev/null @@ -1,9 +0,0 @@ -def string_match(a, b): - count1 = 0 - n = max(len(a),len(b)) - for i in range(n-1): - if i+1 <= len(a) and i+1 <= len(b): - if a[i:(i+2)] == b[i:(i+2)]: - count1 = count1 + 1 - return(count1) - diff --git a/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/MUST --- string_splosion.py b/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/MUST --- string_splosion.py deleted file mode 100644 index 5caf3c0a..00000000 --- a/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/MUST --- string_splosion.py +++ /dev/null @@ -1,9 +0,0 @@ -def string_splosion(str): - newstr = str - newstr2 = str - strlength = len(str) - for i in range(1,strlength+1): - newstr1 = newstr[:(strlength - i)] - newstr2 = newstr1+ newstr2 - return(newstr2) - diff --git a/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/array123-test.py~ b/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/array123-test.py~ deleted file mode 100644 index 0bdf5ffe..00000000 --- a/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/array123-test.py~ +++ /dev/null @@ -1,20 +0,0 @@ -def array123(nums): - print nums - n = len(nums) - print n - count1 = 0 - for i in range(0,3): - if (nums[i] == 1) and (nums[i+1] == 2) and (nums[i+2] == 3): - print i - print nums[i], nums[i+1], nums[i+2] - count1 = count1 + 1 - if count1 >= 1: - print count1 - return(True) - else: - print count1 - return(True) - -array123([1, 1, 2, 3, 1]) - - diff --git a/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/front_times.py b/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/front_times.py deleted file mode 100644 index 3005fb21..00000000 --- a/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/front_times.py +++ /dev/null @@ -1,5 +0,0 @@ -def front_times(str, n): - if len(str) >= 3: - return(n*str[:3]) - else: - return(n*str) diff --git a/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/string_times.py b/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/string_times.py deleted file mode 100644 index 7a389f82..00000000 --- a/Students/Hui Zhang/Session 1/CodingBat/Warmup-2/string_times.py +++ /dev/null @@ -1,3 +0,0 @@ -def string_times(str, n): - return(n*str) - diff --git a/Students/Hui Zhang/Session 1/break_me.py b/Students/Hui Zhang/Session 1/break_me.py deleted file mode 100644 index 1509e671..00000000 --- a/Students/Hui Zhang/Session 1/break_me.py +++ /dev/null @@ -1,98 +0,0 @@ -------------- -------------- -Create a funtcion to trigger AttributeError - -def testatterror(): - n = 5 - n.append(4) - print n - .....: - -In [104]: testatterror() ---------------------------------------------------------------------------- -AttributeError Traceback (most recent call last) - in () -----> 1 testatterror() - - in testatterror() - 1 def testatterror(): - 2 n = 5 -----> 3 n.append(4) - 4 print n - 5 - -AttributeError: 'int' object has no attribute 'append' - -In [105]: - - - - -------------- -------------- -Create a funtcion to trigger TypeError - - -def testtypeerror(): - n = '5' - m = 5 - mn = m + n - print mn - ....: - -In [99]: testtypeerror() ---------------------------------------------------------------------------- -TypeError Traceback (most recent call last) - in () -----> 1 testtypeerror() - - in testtypeerror() - 7 n = '5' - 8 m = 5 -----> 9 mn = m + n - 10 print mn - 11 - -TypeError: unsupported operand type(s) for +: 'int' and 'str' - -In [100]: - - - - -------------- -------------- -Create a funtcion to trigger NameError -def testnameerror(): - print nn - - -In [89]: testnameerror() ---------------------------------------------------------------------------- -NameError Traceback (most recent call last) - in () -----> 1 testnameerror() - - in testnameerror() - 1 def testnameerror(): -----> 2 print nn - 3 - -NameError: global name 'nn' is not defined - - - - -------------- -------------- -Create a function to trigger SyntaxError - -def testnameerror() - print n - -In [85]: def testnameerror() - File "", line 1 - def testnameerror() - ^ -SyntaxError: invalid syntax - diff --git a/Students/Hui Zhang/Session 1/fungrid-p1.py b/Students/Hui Zhang/Session 1/fungrid-p1.py deleted file mode 100644 index 91319efb..00000000 --- a/Students/Hui Zhang/Session 1/fungrid-p1.py +++ /dev/null @@ -1,8 +0,0 @@ -# my fungrid -def fungrid(): - for i in range(0, 2): - print'+ - - - - + - - - - +' - for n in range(0, 4): - print'| | |' - print'+ - - - - + - - - - +' -fungrid() diff --git a/Students/Hui Zhang/Session 1/fungrid-p2.py b/Students/Hui Zhang/Session 1/fungrid-p2.py deleted file mode 100644 index 9a0efeeb..00000000 --- a/Students/Hui Zhang/Session 1/fungrid-p2.py +++ /dev/null @@ -1,9 +0,0 @@ -# my fungrid -n = input('Please input your number:' ) -def fungrid(): - for i in range(0, 2): - print '+' + n*'-' + '+' + n*'-' + '+' - for m in range(0, n): - print '|' + n*' ' + '|' + n*' ' + '|' - print '+' + n*'-' + '+' + n*'-' + '+' -fungrid() \ No newline at end of file diff --git a/Students/Hui Zhang/Session 1/fungrid-p3.py b/Students/Hui Zhang/Session 1/fungrid-p3.py deleted file mode 100644 index 31f3aca5..00000000 --- a/Students/Hui Zhang/Session 1/fungrid-p3.py +++ /dev/null @@ -1,9 +0,0 @@ -# my fungrid -n = input('Please input your number:' ) -def fungrid(): - for i in range(0, 3): - print '+' + n*'-' + '+' + n*'-' + '+' + n*'-' + '+' - for m in range(0, n): - print '|' + n*' ' + '|' + n*' ' + '|' + n*' ' + '|' - print '+' + n*'-' + '+' + n*'-' + '+' + n*'-' + '+' -fungrid() \ No newline at end of file diff --git a/Students/Hui Zhang/Session 1/fungrid.py b/Students/Hui Zhang/Session 1/fungrid.py deleted file mode 100644 index 91319efb..00000000 --- a/Students/Hui Zhang/Session 1/fungrid.py +++ /dev/null @@ -1,8 +0,0 @@ -# my fungrid -def fungrid(): - for i in range(0, 2): - print'+ - - - - + - - - - +' - for n in range(0, 4): - print'| | |' - print'+ - - - - + - - - - +' -fungrid() diff --git a/Students/Hui Zhang/session02/ack.py b/Students/Hui Zhang/session02/ack.py deleted file mode 100644 index d89b2ecd..00000000 --- a/Students/Hui Zhang/session02/ack.py +++ /dev/null @@ -1,18 +0,0 @@ -def ack(m, n): - if m == 0: - return(n + 1) - elif m > 0 and n == 0: - return ack(m - 1, 1) - elif m > 0 and n > 0: - return ack(m -1, ack(m, n - 1)) - -if __name__ == "__main__": - # execute only if run as a script - main() - #for m in range(0, 5): - # for n in range(0, 5): - # ack(m, n) - # print n + 1 - #print "All Tests Pass" - - diff --git a/Students/Hui Zhang/session02/series.pyc b/Students/Hui Zhang/session02/series.pyc deleted file mode 100644 index 05a6bedb..00000000 Binary files a/Students/Hui Zhang/session02/series.pyc and /dev/null differ diff --git a/Students/Hui Zhang/session02/test-ack.py b/Students/Hui Zhang/session02/test-ack.py deleted file mode 100644 index 27713358..00000000 --- a/Students/Hui Zhang/session02/test-ack.py +++ /dev/null @@ -1,48 +0,0 @@ -from ack import ack - - -count1 = 0 -if ack(0, 0) == 1: - count1 = count1 + 1 -if ack(1, 0) == 2: - count1 = count1 + 1 -if ack(2, 0) == 3: - count1 = count1 + 1 -if ack(3, 0) == 5: - count1 = count1 + 1 -if ack(0, 1) == 2: - count1 = count1 + 1 -if ack(1, 1) == 3: - count1 = count1 + 1 -if ack(2, 1) == 5: - count1 = count1 + 1 -if ack(3, 1) == 13: - count1 = count1 + 1 -if ack(0, 2) == 3: - count1 = count1 + 1 -if ack(1, 2) == 4: - count1 = count1 + 1 -if ack(2, 2) == 7: - count1 = count1 + 1 -if ack(3, 2) == 29: - count1 = count1 + 1 -if ack(0, 3) == 4: - count1 = count1 + 1 -if ack(1, 3) == 5: - count1 = count1 + 1 -if ack(2, 3) == 9: - count1 = count1 + 1 -if ack(3, 3) == 61: - count1 = count1 + 1 -if ack(0, 4) == 5: - count1 = count1 + 1 -if ack(1, 4) == 6: - count1 = count1 + 1 -if ack(2, 4) == 11: - count1 = count1 + 1 -if ack(3, 4) == 125: - count1 = count1 + 1 - -if count1 == 20: - print "All Tests Pass" - diff --git a/Students/Hui Zhang/session03/lab61.py b/Students/Hui Zhang/session03/lab61.py deleted file mode 100644 index bae6f0eb..00000000 --- a/Students/Hui Zhang/session03/lab61.py +++ /dev/null @@ -1,29 +0,0 @@ -""" -List Lab# 1 -When the script is run, it should accomplish the following four series of actions: - - Create a list that contains “Apples”, “Pears”, “Oranges” and “Peaches”. - Display the list. - Ask the user for another fruit and add it to the end of the list. - Display the list. - Ask the user for a number and display the number back to the user and the fruit corresponding to that number (on a 1-is-first basis). - Add another fruit to the beginning of the list using “+” and display the list. - Add another fruit to the beginning of the list using insert() and display the list. - Display all the fruits that begin with “P”, using a for loop. -""" - -fruit1 = ['Apples', 'Pears', 'Oranges', 'Peaches'] -print fruit1 -str1 = raw_input("Please input a new fruit name here: ") -fruit1.append(str1) -print fruit1 -inp2 = int(raw_input("Please input a number and i can show you the corresponding fruit: ")) -print "For number: " + str(inp2) +",the corresponding fruit is: " + fruit1[inp2-1] -fruit2 = ['Banana'] + fruit1 -print fruit2 -fruit2.insert(0, 'Mongo') -print fruit2 -for i in range(len(fruit2)): - a1 = fruit2[i] - if a1[0] == 'P': - print a1 diff --git a/Students/Hui Zhang/session03/lab62.py b/Students/Hui Zhang/session03/lab62.py deleted file mode 100644 index 5593c9fb..00000000 --- a/Students/Hui Zhang/session03/lab62.py +++ /dev/null @@ -1,21 +0,0 @@ -""" -List Lab# 2 -Using the list created in previous List Lab# 1: - - Display the list. - Remove the last fruit from the list. - Display the list. - Ask the user for a fruit to delete and find it and delete it. - (Bonus: Multiply the list times two. Keep asking until a match is found. Once found, delete all occurrences.) - -""" -fruit2 = ['Apples', 'Pears', 'Oranges', 'Peaches'] -print fruit2.pop() -fruit3 = 2*fruit2 -print fruit3 -str2 = raw_input("Please input a fruit name here to be removed: ") -fruit4 = [] -for i in range(len(fruit3)): - if fruit3[i] != str2: - fruit4.append(fruit3[i]) -print fruit4 \ No newline at end of file diff --git a/Students/Hui Zhang/session03/lab63.py b/Students/Hui Zhang/session03/lab63.py deleted file mode 100644 index 42bcb0ea..00000000 --- a/Students/Hui Zhang/session03/lab63.py +++ /dev/null @@ -1,25 +0,0 @@ -""" -List Lab# 3 -using the list from series 1: - -Ask the user for input displaying a line like “Do you like apples?” - for each fruit in the list (making the fruit all lowercase). - For each “no”, delete that fruit from the list. - For any answer that is not “yes” or “no”, prompt the user to answer with one of those two values (a while loop is good here): - Display the list. -""" - -fruit1 = ['Apples', 'Pears', 'Oranges', 'Peaches', 'Mongo', 'Banana'] -fruit5 = [] -for i in range(len(fruit1)): - input1 = raw_input("Do you like:" + fruit1[i].lower() + " (yes/no) ?") - while (input1 != 'yes') and (input1 != 'no'): - print "please answer yes or no" - input1 = raw_input("Do you like:" + fruit1[i].lower() + " (yes/no) ?") - if input1 == 'yes': - fruit5.append(fruit1[i]) - # if input1 == 'no': - # continue -for i in range(len(fruit5)): - fruit5[i] = fruit5[i].lower() -print fruit5 diff --git a/Students/Hui Zhang/session03/lab64.py b/Students/Hui Zhang/session03/lab64.py deleted file mode 100644 index 58f5b6c4..00000000 --- a/Students/Hui Zhang/session03/lab64.py +++ /dev/null @@ -1,16 +0,0 @@ -""" -List Lab# 4 -Once more, using the list from series 1: - - Make a copy of the list and reverse the letters in each fruit in the copy. - Delete the last item of the original list. Display the original list and the copy. -""" - -fruit1 = ['Apples', 'Pears', 'Oranges', 'Peaches', 'Mongo', 'Banana'] -fruit6 = fruit1 -fruit7 = [] -for i in range(len(fruit6)): - fruit7.append(fruit6[i][::-1]) -fruit1.pop() -print fruit1 -print fruit7 diff --git a/Students/Hui Zhang/session03/mailroom.py b/Students/Hui Zhang/session03/mailroom.py deleted file mode 100644 index 69a8abf5..00000000 --- a/Students/Hui Zhang/session03/mailroom.py +++ /dev/null @@ -1,14 +0,0 @@ -from mailroomfunction import sendletter -from mailroomfunction import printout - -Userlist = ['Jerry', [10, 20, 30], 'Peter', [5, 6], 'Aly', [3, 4], 'Anisha', [11, 15, 13], 'Chris', [9, 11, 14], 'Vini', [13, 17, 16]] - -input1 = input("To send a Thanks You letter, press '1'\nTo create a report, press '2'\nTo Exit, press '0' \n") - -while input1: - if input1 == 1: - sendletter(Userlist, input1) - input1 = input("To send a Thanks You letter, press '1'\nTo create a report, press '2'\nTo Exit, press '0' \n") - elif input1 == 2: - printout(Userlist, input1) - input1 = input("To send a Thanks You letter, press '1'\nTo Create a report, press '2'\nTo Exit, press '0' \n") diff --git a/Students/Hui Zhang/session03/rot13.py b/Students/Hui Zhang/session03/rot13.py deleted file mode 100644 index 0ad7d3ae..00000000 --- a/Students/Hui Zhang/session03/rot13.py +++ /dev/null @@ -1,22 +0,0 @@ -""" -The ROT13 encryption scheme is a simple substitution cypher where each letter in -a text is replace by the letter 13 away from it (imagine the alphabet as a circle, -so it wraps around). - -This function should preserve whitespace, punctuation and capitalization. -""" - -def rot13(): - from string import maketrans - intab = "AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz" - outtab = "NnOoPpQqRrSsTtUuVvWwXxYyZzAaBbCcDdEeFfGgHhIiJjKkLlMm" - trantab = maketrans(intab, outtab) # Required to call maketrans function. - - str1 = "Zntargvp sebz bhgfvqr arne pbeare" - return str1.translate(trantab) - # the return is 'Magnetic from outside near corner' - -if __name__ == "__main__": - # execute only if run as a script - main() - diff --git a/Students/Hui Zhang/session03/stringformatinglab.py b/Students/Hui Zhang/session03/stringformatinglab.py deleted file mode 100644 index a056114f..00000000 --- a/Students/Hui Zhang/session03/stringformatinglab.py +++ /dev/null @@ -1,31 +0,0 @@ -# Method 1: using string format operator -""" Write a format string that will take: - - ( 2, 123.4567, 10000) - - and produce: - - 'file_002 : 123.46, 1e+04' -""" - -str1 = [2, 123.4567, 10000] -p11 = str("%03d" % str1[0]) -p12 = "file_" + p11 + " :" -p13 = "%8.2f" % 123.4567 -p14 = "%0.e" % 10000 -print p12, p13+",", p14 - - - -# Method 2: using format() -""" Write a format string that will take: - - ( 2, 123.4567, 10000) - - and produce: - - 'file_002 : 123.46, 1e+04' -""" - -str1 = [2, 123.4567, 10000] -"file_{0:03} : {1:>8.2f}, {2:0.0e}".format(2, 123.4567, 10000) \ No newline at end of file diff --git a/Students/Hui Zhang/session04/dictsetlab.py b/Students/Hui Zhang/session04/dictsetlab.py deleted file mode 100644 index a7775f7a..00000000 --- a/Students/Hui Zhang/session04/dictsetlab.py +++ /dev/null @@ -1,86 +0,0 @@ - - -""" - Part #1 - Create a dictionary containing “name”, “city”, and “cake” for “Chris” from “Seattle” who likes “Chocolate”. - Display the dictionary. - Delete the entry for “cake”. - Display the dictionary. - Add an entry for “fruit” with “Mango” and display the dictionary. - Display the dictionary keys. - Display the dictionary values. - Display whether or not “cake” is a key in the dictionary (i.e. False) (now). - Display whether or not “Mango” is a value in the dictionary (i.e. True). -""" - -dict1 = {'name': 'Chris', 'city': 'Seatle', 'cake': 'Chocolate'} -print dict1 -dict1.pop('cake') -print dict1 -dict1['fruit'] = 'Mango' -print dict1.keys() -print dict1.values() -'cake' in dict1 -'Mango' in dict1.values() - - - - -""" - Part #2 - Using the dict constructor and zip, build a dictionary of numbers from zero to fifteen and the hexadecimal - equivalent (string is fine). -""" - -list1 = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15'] -list2 = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'] -dict12 = dict(zip(list1, list2)) -print dict12 - - - - -""" - Part #3 - Using the dictionary from item 1: Make a dictionary using the same keys but with the number of ‘t’s in each - value. -""" -dict1 = {'name': 'Chris', 'city': 'Seatle', 'cake': 'Chocolate'} -print dict1 -dict1['name'] = 'ttt' -dict1['city'] = 'tttt' -dict1['cake'] = 'tt' -print dict1 - - - - -""" - Part #4 - Create sets s2, s3 and s4 that contain numbers from zero through twenty, divisible 2, 3 and 4. - Display the sets. - Display if s3 is a subset of s2 (False) - and if s4 is a subset of s2 (True). -""" - s2 = set([2, 3, 4, 8, 9, 12, 15, 18]) - s3 = set([3, 6, 10]) - s4 = set([2, 4, 8]) - s3.issubset(s2) - s4.issubset(s2) - - - -""" - Part #5 - Create a set with the letters in ‘Python’ and add ‘i’ to the set. - Create a frozenset with the letters in ‘marathon’ - display the union and intersection of the two sets. -""" - - - - - - - - diff --git a/Students/Hui Zhang/session04/exceptionslab.py b/Students/Hui Zhang/session04/exceptionslab.py deleted file mode 100644 index 7b4637e3..00000000 --- a/Students/Hui Zhang/session04/exceptionslab.py +++ /dev/null @@ -1,12 +0,0 @@ -""" - Create a wrapper function, perhaps safe_input() that returns None rather rather than raising - these exceptions, when the user enters ^C for Keyboard Interrupt, or ^D (^Z on Windows) for - End Of File. -""" -def safe-input(): - try: - test_exception = raw_input("Please type something and press Ctrl+C\n Or\n Just press Ctrl+D without typing anything\n to test exceptions: ") - return test_exception - except (KeyboardInterrupt, EOFError): - print 'Exception has been succesfully caught' - return(None) diff --git a/Students/Hui Zhang/session04/fileslab.py b/Students/Hui Zhang/session04/fileslab.py deleted file mode 100644 index 371c8617..00000000 --- a/Students/Hui Zhang/session04/fileslab.py +++ /dev/null @@ -1,63 +0,0 @@ - -import collections - -# initialize variables. -language_list = [] -language_list_1 = [] -language_list_stripped = [] -# -# open students.txt -file = open('students.txt') -# remove students name from string_name_language list, and add all languages to a new list called language_list. -string_name_language = file.readlines() -for item in string_name_language: - language_start_position = item.index(':') - language_items = item[language_start_position + 1: -1] - language_list.append(language_items) - -# remove first element, strip whitespace from elements and remove empty elements from language_list list. -# make a list called language_list_stripped, in which each element contains one or multiple languages. -for item1 in language_list: - item2 = item1.strip() - if item2 != 'languages' and item2 != '': - language_list_stripped.append(item2) - -# make a new list called language_list_1, in which, each element is a list, and each element in the inner list contains ONE language. -for item3 in language_list_stripped: - item4 = item3.split() - language_list_1.append(item4) - -# convert language_list_1 to a new list called language_list_2, in which, each element is a language. -item7 = '' -for item5 in language_list_1: - # convert a list to a string - item6 = ''.join(item5) - if not item6.endswith(','): - item6 = item6 + ',' - item7 = item7 + item6 - -# convert a string called item7 to a list called language_list_2. -# convert language_list_2 to a set, and then convert the set to a new list called language_list_3, and so the elements in language_list_3 are unique. -language_list_2 = item7.split(',') - -# remove all empty elements from the list: language_list_2. -while True: - try: - empty_element_positon = language_list_2.index('') - language_list_2.pop(empty_element_positon) - except ValueError: - break - -language_list_3 = list(set(language_list_2)) - -print 'List all languages that students know :\n' -for item9 in language_list_3: - print item9 - -# get the number of students on each language listed in language_list_3. -counter = collections.Counter(language_list_3) - -print '\n\nList how many students know on each language :\n' -for keys,values in counter.items(): - print(keys) - print(values) diff --git a/Students/Hui Zhang/session04/pathandfile.py b/Students/Hui Zhang/session04/pathandfile.py deleted file mode 100644 index 58df2b81..00000000 --- a/Students/Hui Zhang/session04/pathandfile.py +++ /dev/null @@ -1,6 +0,0 @@ - -import pathlib -pth = pathlib.Path('./') -path_string = str(pth.absolute()) + '/' -for f in pth.iterdir(): - print path_string + str(f) diff --git a/Students/Hui Zhang/session06/Lab-lambda-and-keyword-argument-magic.py b/Students/Hui Zhang/session06/Lab-lambda-and-keyword-argument-magic.py deleted file mode 100644 index f91281d4..00000000 --- a/Students/Hui Zhang/session06/Lab-lambda-and-keyword-argument-magic.py +++ /dev/null @@ -1,40 +0,0 @@ - - -# Use a for loop, lambda, and a keyword argument -l = [] - -for i in range(5): - l.append(lambda x, e = i: e + 5) - - -for f in l: - print f(5) - -#the output is below: -5 -6 -7 -8 -9 - -In [65]: - - -# Do it with a list comprehension, instead of a for loop -l = [] - -for i in range(5): - l.append(lambda x, e = i: e + 5) - - -for f in l: - print f(5) - -#the output is below: -5 -6 -7 -8 -9 - -In [65]: \ No newline at end of file diff --git a/Students/Lottsfeldt_Erik/Session01/break_me.py b/Students/Lottsfeldt_Erik/Session01/break_me.py deleted file mode 100644 index e69de29b..00000000 diff --git a/Students/Lottsfeldt_Erik/Session01/monkey_trouble.py b/Students/Lottsfeldt_Erik/Session01/monkey_trouble.py deleted file mode 100644 index 5c738c29..00000000 --- a/Students/Lottsfeldt_Erik/Session01/monkey_trouble.py +++ /dev/null @@ -1,10 +0,0 @@ -def monkey_trouble(a_smile, b_smile): - if a_smile and b_smile: - return True - if not a_smile and not b_smile: - return True - return False - ## The above can be shortened to: - ## return ((a_smile and b_smile) or (not a_smile and not b_smile)) - ## Or this very short version (think about how this is the same as the above) - ## return (a_smile == b_smile) \ No newline at end of file diff --git a/Students/Lottsfeldt_Erik/Session01/print_grid.py b/Students/Lottsfeldt_Erik/Session01/print_grid.py deleted file mode 100644 index a451a9c1..00000000 --- a/Students/Lottsfeldt_Erik/Session01/print_grid.py +++ /dev/null @@ -1,65 +0,0 @@ -""" -Chris' solution to the week 1 homework problem. - -Note that we hadn't talked about loops yet, so this is a solution with no -loops. - -Note also that there is more than one way to skin a cat -- or code a function -""" -def print_grid(size): - - """ - print a 2x2 grid with a total size of size - - :param size: total size of grid -- it will be rounded if not one more than - a multiple of 2 - """ -number = 2 - box_size = int((size-1) // 2) # size of one grid box -print "box_size:", box_size - # top row -+ top = ('+ ' + '- ' * box_size) * number + '+' + '\n' -+ middle = ('| ' + ' ' * 2 * box_size) * number + '|' + '\n' -+ -+ row = top + middle*box_size -+ -+ grid = row*number + top -+ -+ print grid -+ -+ -+def print_grid2(number, size): -+ """ -+ print a number x number grid with each box of size width and height -+ -+ :param number: number of grid boxes (row and column) -+ -+ :param size: size of each grid box -+ """ -+ # top row -+ top = ('+ ' + '- '*size)*number + '+' + '\n' -+ middle = ('| ' + ' '*2*size)*number + '|' + '\n' -+ -+ row = top + middle*size -+ -+ grid = row*number + top -+ -+ print grid - - -def print_grid3(size): - """ -same as print_grid, but calling print_grid2 to do the work -""" - number = 2 - box_size = (size-1) / 2 # size of one grid box - print_grid2(number, box_size) - - -print_grid(11) -print_grid(7) - -print_grid2(3, 3) -print_grid2(3, 5) - -print_grid3(11) \ No newline at end of file diff --git a/Students/Lottsfeldt_Erik/Session01/sleep_in.py b/Students/Lottsfeldt_Erik/Session01/sleep_in.py deleted file mode 100644 index f9d66bd9..00000000 --- a/Students/Lottsfeldt_Erik/Session01/sleep_in.py +++ /dev/null @@ -1,5 +0,0 @@ -def sleep_in(weekday, vacation): - if not weekday or vacation: - return True - else: - return False \ No newline at end of file diff --git a/Students/Lottsfeldt_Erik/Session01/sum_double.py b/Students/Lottsfeldt_Erik/Session01/sum_double.py deleted file mode 100644 index d59e033b..00000000 --- a/Students/Lottsfeldt_Erik/Session01/sum_double.py +++ /dev/null @@ -1,8 +0,0 @@ -def sum_double(a, b): - # Store the sum in a local variable - sum = a + b - - # Double it if a and b are the same - if a == b: - sum = sum * 2 - return sum \ No newline at end of file diff --git a/Students/Lottsfeldt_Erik/Session02/funky_bools.py b/Students/Lottsfeldt_Erik/Session02/funky_bools.py deleted file mode 100644 index 39c233a4..00000000 --- a/Students/Lottsfeldt_Erik/Session02/funky_bools.py +++ /dev/null @@ -1,9 +0,0 @@ -dist = sqrt( (x1-x2)**2 + (y1-y2)**2 ) - - - -x = 3 -y = 2 - -print (dist) - diff --git a/Students/RPerkins/session01/break_me.py b/Students/RPerkins/session01/break_me.py deleted file mode 100644 index 0f72fdd5..00000000 --- a/Students/RPerkins/session01/break_me.py +++ /dev/null @@ -1,14 +0,0 @@ -def NameWrong(): - d = seven - return -def TypeWrong(): - f = 14.2 - len(f) - return -def SyntaxWrong(): - x = len("four - return -def AtrribWrong(): - f = "1234" - f.rocket - return diff --git a/Students/RPerkins/session01/grid_build.py b/Students/RPerkins/session01/grid_build.py deleted file mode 100644 index 0a5b7a16..00000000 --- a/Students/RPerkins/session01/grid_build.py +++ /dev/null @@ -1,31 +0,0 @@ -def Rowline(size, column): -# prints an "x", then a number of "-"s (scaled by the "size" parameter), -# for each count of the "column" parameter - for i in range(column): - print "+", - for x in range(4 + (size-1)): - print "-", - print "+" # the "bookend" character - return - -def Columnline(size, column): -# prints an "|", then a number of " "s (scaled by the "size" parameter), -# for each count of the "column" parameter - for i in range(column): - print "|", - for x in range(4 + (size-1)): - print " ", - print "|" # the "bookend" character - return - -def PrintGrid(size, row, column): -# the outer loop prints a "row" number of rowlines -# the inner loop prints a number of column lines scaled -# by the "size" parameter - for i in range(row): - Rowline(size, column) - for i in range(4 + (size-1)): - Columnline(size, column) - Rowline(size, column) # the "bookend" row - -PrintGrid(1,2,2) \ No newline at end of file diff --git a/Students/RPerkins/session02/ack.py b/Students/RPerkins/session02/ack.py deleted file mode 100644 index d54b896e..00000000 --- a/Students/RPerkins/session02/ack.py +++ /dev/null @@ -1,46 +0,0 @@ -__author__ = 'Robert W. Perkins' - - -def ack(m, n): - """Return the result of the Ackermann function on m and n""" - if m < 0 or n < 0: - return None - elif m == 0: - return n+1 - elif m > 0 and n == 0: - return ack(m-1, 1) - elif m > 0 and n > 0: - return ack(m-1, ack(m, n-1)) - -# Testing Block -if __name__ == "__main__": - assert ack(-1, 2) is None - assert ack(2, -1) is None - assert ack(-1, -1) is None - assert ack(0, 0) == 1 - assert ack(0, 1) == 2 - assert ack(0, 2) == 3 - assert ack(0, 3) == 4 - assert ack(0, 4) == 5 - assert ack(1, 0) == 2 - assert ack(1, 1) == 3 - assert ack(1, 2) == 4 - assert ack(1, 3) == 5 - assert ack(1, 4) == 6 - assert ack(2, 0) == 3 - assert ack(2, 1) == 5 - assert ack(2, 2) == 7 - assert ack(2, 3) == 9 - assert ack(2, 4) == 11 - assert ack(3, 0) == 5 - assert ack(3, 1) == 13 - assert ack(3, 2) == 29 - assert ack(3, 3) == 61 - assert ack(3, 4) == 125 - # max recursion depth exceeded after this point - #assert ack(4, 0) == 2**2**2-3 - #assert ack(4, 1) == 2**2**2**2-3 - #assert ack(4, 2) == (2**65536)-3 - #assert ack(4, 3) == (2**2**65536)-3 - #assert ack(4, 4) == (2**2**2**65536)-3 - print 'All tests passed' \ No newline at end of file diff --git a/Students/RPerkins/session02/series.py b/Students/RPerkins/session02/series.py deleted file mode 100644 index 97b6eb46..00000000 --- a/Students/RPerkins/session02/series.py +++ /dev/null @@ -1,92 +0,0 @@ -__author__ = 'Robert W. Perkins' - - -def fibonacci(n): - """Return the 'n'th value in the Fibonacci series""" - -# test for input in valid range - if n < 0: - return None - -# test for n == 0 - if n == 0: - return 0 - -# base case is n == 1 - if n == 1: - return 1 - else: - return fibonacci(n-1) + fibonacci(n-2) - -def lucas(n): - """Return the 'n'th value in the Lucas number series""" - -# test for input in valid range - if n < 0: - return None - -# test for n == 0 - if n == 0: - return 2 - -# base case is n == 1 - if n == 1: - return 1 - else: - return lucas(n-1) + lucas(n-2) - -def sum_series(n,first=0,second=1): - """Return the 'n'th value of a variable series""" - - """The first two numbers are passed via 'first' and 'second'and each subsequent element is the sum of the 'n-1'th and 'n-2'th element (yes, i said tooth)""" - -# test for input in valid range - if n < 0: - return None - -# test for n == 0 - if n == 0: - return first - -# base case is n == 1 - if n == 1: - return second - else: - return sum_series(n-1, first, second) + sum_series(n-2,first,second) - - -# Testing Block -if __name__ == "__main__": - - # test fibonacci function for out of range, n == zero, base case, and 18th value in series - assert fibonacci(-3) is None - assert fibonacci(0) == 0 - assert fibonacci(1) == 1 - assert fibonacci(17) == 1597 - - # test lucas function for out of range, n == zero, base case, and 11th value in series - assert lucas(-3) is None - assert lucas(0) == 2 - assert lucas(1) == 1 - assert lucas(10) == 123 - - # tests sum_series function for fibonacci behavior with no optional params - # for out of range, n == zero, base case, and 18th value in series - assert sum_series(-3) is None - assert sum_series(0) == 0 - assert sum_series(1) == 1 - assert sum_series(17) == 1597 - - # tests sum_series function for lucas behavior with lucas series params - # for out of range, n == zero, base case, and 11th value in series - assert sum_series(-3,2,1) is None - assert sum_series(0,2,1) == 2 - assert sum_series(1,2,1) == 1 - assert sum_series(10,2,1) == 123 - - # tests sum_series function for valid results with optional params - # for out of range, n == zero, base case, and 11th value in series - assert sum_series(-3,4,2) is None - assert sum_series(0,4,2) == 4 - assert sum_series(1,4,2) == 2 - assert sum_series(10,4,2) == 246 \ No newline at end of file diff --git a/Students/RPerkins/session03/listlab.py b/Students/RPerkins/session03/listlab.py deleted file mode 100644 index 8ee231a6..00000000 --- a/Students/RPerkins/session03/listlab.py +++ /dev/null @@ -1,56 +0,0 @@ - -#action #1 -basket = ["Apples", "Pears", "Oranges", "Peaches"] -print basket -new_fruit = raw_input('Type in the name of another fruit-->') -fruit = str(new_fruit) -basket.append(fruit) -print basket -fruit_index = raw_input("Type in the fruit index-->") -index = int(fruit_index) -print fruit_index + ': ' + basket[index-1] -new_fruit = raw_input("Type in the name of another fruit-->") -fruit = str(new_fruit) -basket = [fruit] + basket -print basket -new_fruit = raw_input("Type in the name of another fruit-->") -fruit = str(new_fruit) -basket.insert(0, fruit) -print basket -for i in range(len(basket)): - if basket[i][0] == "P": - print basket[i] - -#action 2 -print basket -basket.pop() -print basket -del_fruit = raw_input("Pick a fruit from the list to delete-->") -fruit = str(del_fruit) -if fruit in basket: - for i in range(len(basket)-1): - if basket[i] == fruit: - basket.pop(i) -else: - print 'That fruit is not in the basket' - -#action 3 -deletes = 0 -for i in range(len(basket)): - i = i - deletes - lfruit = None - while not (lfruit == "yes" or lfruit == "no"): - like_fruit = raw_input("Do you like %s-->" % basket[i].lower()) - lfruit = str(like_fruit) - if lfruit == 'no': - basket.pop(i) - deletes += 1 -print basket - -#action 4 -rlist = basket -for i in range(len(basket)): - rlist[i] = rlist[i][::-1] -basket.pop() -print basket -print rlist \ No newline at end of file diff --git a/Students/RPerkins/session03/mailroom.py b/Students/RPerkins/session03/mailroom.py deleted file mode 100644 index 79459ad6..00000000 --- a/Students/RPerkins/session03/mailroom.py +++ /dev/null @@ -1,110 +0,0 @@ -__author__ = 'Robert W. Perkins' - - -def mk_dbase(): - """Create data structure for donor list""" - ndbase = [[], [], [], [], []] - # donor name, sum of donations, donation 1, donation 2, ... - ndbase[0] = ['Jeff McCarthy', 4000, 2500, 1000, 500] - ndbase[1] = ['Tabitha Simmons', 2450, 450, 2000] - ndbase[2] = ['Angela Cartwright', 5500, 5500] - ndbase[3] = ['Billy Murray', 3700, 3450, 250] - ndbase[4] = ['Alexa Dalton', 6940, 240, 1200, 5500] - return ndbase - - -def get_input(): - """Ask user whether to send thank you note or create report and return answer""" - answer = None - while not ((answer == '1') or (answer == '2') or (answer == "q")): - new_answer = raw_input("Enter '1' to Send a Thank-You Note, Enter '2' to Create a Report, Enter 'q' to quit-->") - answer = str(new_answer) - return answer - - -def get_donation(): - """ Prompt for donation amount, validate input, return amount""" - d = u' ' - while not d.isnumeric(): - new_d = raw_input("Enter donation amount (must be numeric)-->") - d = unicode(new_d) - return str(d) - - -def in_dbase(i_name, tar_dbase): - """ Check if name is in dbase and return boolean """ - for i in range(len(tar_dbase)): - if i_name in tar_dbase[i]: - return True - return False - - -def print_email(p_name, p_donation): - """ Print thank you not for donation from p_name """ - print 'Dear %s, Thanks so much for your generous donation of $%s. It is greatly appreciated!' % (p_name, p_donation) - - -def app_record(app_name, app_dbase): - """ Append an existing donor record """ - for i in range(len(app_dbase)): - if app_name in app_dbase[i]: - app_donation = get_donation() - app_dbase[i].append(app_donation) - app_dbase[i][1] += int(app_donation) - print_email(app_name, app_donation) - break - - -def add_record(add_name, add_dbase): - """ Add new donor to database """ - add_donation = get_donation() - new = [add_name, int(add_donation), add_donation] - add_dbase.append(new) - print_email(add_name, add_donation) - - -def thank_you(dbase): - """ Find or create a donor, add new donation, and return a thank you note""" - name = 'list' - while name == 'list': - new_name = raw_input("Enter full name of donor-->") - name = str(new_name) - if not (name == 'list'): - break - else: - for i in range(len(dbase)): - print dbase[i][0] - if in_dbase(name, dbase): - app_record(name, dbase) - else: - add_record(name, dbase) - - -def sum_element(key_dbase): - """set key for sorting on sum element of data structure""" - return key_dbase[1] - - -def mk_report(rep_dbase): - """ Create a sorted list of donors""" - print 'Donor Name\t\t\tTotal Donations\t# of Donations\t\tAverage Donation' - rep_dbase.sort(key=sum_element) - for j in range(len(rep_dbase)): - donor_slice = rep_dbase[j][2:] - num_donations = (len(donor_slice)) - avg_donation = int(rep_dbase[j][1])/num_donations - print '%s\t\t\t%s\t\t\t\t%s\t\t\t\t\t\t%s' % (rep_dbase[j][0], rep_dbase[j][1], num_donations, avg_donation) - - -if __name__ == '__main__': - donor = mk_dbase() - answer = None - while not (answer == "q"): - answer = get_input() - if answer == "q": - break - elif answer == "1": - thank_you(donor) - else: - mk_report(donor) - print "Exiting" \ No newline at end of file diff --git a/Students/RPerkins/session03/rot13.py b/Students/RPerkins/session03/rot13.py deleted file mode 100644 index 4f0af2c0..00000000 --- a/Students/RPerkins/session03/rot13.py +++ /dev/null @@ -1,11 +0,0 @@ -__author__ = 'Robert W. Perkins' - - -def rot_encode(x): - """Return the Rot 13 coding of x""" - return x.encode("rot_13") - - -if __name__ == '__main__': - print rot_encode('Zntargvp sebz bhgfvqr arne pbeare') - assert rot_encode(rot_encode('Zntargvp sebz bhgfvqr arne pbeare')) == 'Zntargvp sebz bhgfvqr arne pbeare' diff --git a/Students/RPerkins/session03/stringlab.py b/Students/RPerkins/session03/stringlab.py deleted file mode 100644 index 82ea2ade..00000000 --- a/Students/RPerkins/session03/stringlab.py +++ /dev/null @@ -1,5 +0,0 @@ -__author__ = 'Robert W. Perkins' - - -print "The first 6 numbers are: %i, %i, %i, %i, %i, %i" % (34,3,234,44,3,4356) -print "file_00%i : %.2f, %.0e" % (2,123.4567,10000) \ No newline at end of file diff --git a/Students/RPerkins/session04/dict_setlab.py b/Students/RPerkins/session04/dict_setlab.py deleted file mode 100644 index eefb49be..00000000 --- a/Students/RPerkins/session04/dict_setlab.py +++ /dev/null @@ -1,51 +0,0 @@ -__author__ = 'Robert W. Perkins' - - -d = {'name': 'Chris', 'city': 'Seattle', 'cake': 'Chocolate'} -print d -d.pop('cake') -print d -d['fruit'] = 'Mango' -print d -print d.keys() -print d.values() -print 'cake' in d -print 'Mango' in d.values() - -int_list = [] -hex_list = [] -for i in range(16): - int_list.append(i) - hex_list.append(hex(i)) - -h_ex={} -for k, l in zip(int_list, hex_list): - h_ex[k] = l -print h_ex - -d_prime = {} -for k, v in d.items(): - d_prime[k] = v.count('t') -print d_prime - -s2 = set() -s3 = set() -s4 = set() -for k in range(20): - if k % 2 == 0: - s2.update([k]) - if k % 3 == 0: - s3.update([k]) - if k % 4 == 0: - s4.update([k]) -print s2 -print s3 -print s4 -print s3.issubset(s2) -print s4.issubset(s2) - -p_set = {'P', 'y', 't', 'h', 'o', 'n'} -p_set.update(['i']) -m_set = frozenset(('m', 'a', 'r', 'a', 't', 'h', 'o', 'n')) -print p_set.union(m_set) -print p_set.intersection(m_set) diff --git a/Students/RPerkins/session04/file_copier.py b/Students/RPerkins/session04/file_copier.py deleted file mode 100644 index 85656b2a..00000000 --- a/Students/RPerkins/session04/file_copier.py +++ /dev/null @@ -1,7 +0,0 @@ -__author__ = 'Robert W. Perkins' - -from_file = './test.txt' -to_file = './test/testcopy.txt' - -indata = open(from_file).read() -open(to_file, 'w').write(indata) diff --git a/Students/RPerkins/session04/kata14.py b/Students/RPerkins/session04/kata14.py deleted file mode 100644 index 68f19861..00000000 --- a/Students/RPerkins/session04/kata14.py +++ /dev/null @@ -1,84 +0,0 @@ -__author__ = 'Robert W. Perkins' -import random - - -def get_book(target): - """ Open target file and read contents into book_data""" - f = open(target) - book_data = f.read() - f.close() - return book_data - - -def strip_newlines(in_text): - """ Replace newlines with spaces""" - return in_text.replace('\n', ' ') - - -def mk_wordlist(in_list): - """Split input string at spaces and return word list""" - return in_list.split(' ') - - -def create_dict(orig_text): - """ Create trigram dictionary""" - trigram = {} - word_list = mk_wordlist(strip_newlines(orig_text)) - for idx, word in enumerate(word_list): - if idx > (len(word_list) - 3): - break - else: - trigram_key = '%s %s' % (word_list[idx], word_list[idx + 1]) - if trigram_key in trigram: - trigram[trigram_key].append(word_list[idx + 2]) - else: - trigram[trigram_key] = [word_list[idx + 2]] - return trigram - - -def get_randomkey(t_gram): - """Return a random key""" - return random.choice(list(t_gram.keys())) - - -def get_newword(word_key, word_dict): - """Return a random word from the list at the provided key""" - new_wordlist = word_dict.get(word_key) - return random.choice(new_wordlist) - - -def create_newbook(trigram_dict, word_limit, w_line): - """Create random output of num_words words, using trigram_dict keys to generate new words""" - start_key = get_randomkey(trigram_dict) - new_word = get_newword(start_key, trigram_dict) - out_list = start_key.split(' ') - out_list.insert(0, '...') - out_list.append(new_word) - left_frame = 0 - - for i in range(word_limit): - for j in range(w_line): - next_key = '%s %s' % (out_list[left_frame+1], out_list[left_frame + 2]) - while not next_key in trigram_dict: - next_key = get_randomkey(trigram_dict) - next_word = get_newword(next_key, trigram_dict) - out_list.append(next_word) - left_frame += 1 - out_list.append('\n') - out_list.append('...') - out_string = ' '.join(out_list) - return out_string - - -if __name__ == '__main__': - # num_words gives the number of words to be generated - # words_line gives the number of words per line - num_words = 200 - words_line = 20 - #source_text = '/intropython/data/sherlock_small.txt' - source_text = '/intropython/data/sherlock.txt' - - new_inbook = get_book(source_text) - new_dict = create_dict(new_inbook) - new_outbook = create_newbook(new_dict, num_words, words_line) - print new_outbook \ No newline at end of file diff --git a/Students/RPerkins/session04/mailroom.py b/Students/RPerkins/session04/mailroom.py deleted file mode 100644 index 9a8e5092..00000000 --- a/Students/RPerkins/session04/mailroom.py +++ /dev/null @@ -1,118 +0,0 @@ -__author__ = 'Robert W. Perkins' - - -def mk_dbase(): - """Create data structure for donor list""" - # donor name = key: sum of donations, donation 1, donation 2, ... - ndbase = { - 'Jeff McCarthy': [4000, 2500, 1000, 500], - 'Tabitha Simmons': [2450, 450, 2000], - 'Angela Cartwright': [5500, 5500], - 'Billy Murray': [3700, 3450, 250], - 'Alexa Dalton': [6940, 240, 1200, 5500] - } - return ndbase - - -def get_input(): - """Ask user whether to send thank you note or create report and return answer""" - - choices = { - '1': 'Enter "1" to Send a Thank-You Note', - '2': 'Enter "2" to Create a Report', - 'q': 'Enter "q" to quit-->' - } - in_put = None - while not in_put in choices: - in_put = raw_input('%s, %s, %s' % (choices['1'], choices['2'], choices['q'])) - return in_put - - -def safe_input(): - try: - new_d = raw_input("Enter donation amount (must be numeric)-->") - except EOFError: - return None - except KeyboardInterrupt: - return None - return int(new_d) - - -def print_email(p_name, p_donation): - """ Print thank you note for donation from p_name """ - ltr_temp = {'Template1': 'Dear {name}, Thanks so much for your generous donation of ${donation}. ' - 'It is greatly appreciated!' - } - - print ltr_temp['Template1'].format(name=p_name, donation=p_donation) - - -def app_record(app_name, app_dict): - """ Append an existing donor record """ - app_donation = safe_input() - app_dict[app_name].append(app_donation) - app_dict[app_name][0] += app_donation - print_email(app_name, app_donation) - - -def add_record(add_name, add_dict): - """ Add new donor to database """ - add_donation = safe_input() - add_dict[add_name] = [add_donation, add_donation] - print_email(add_name, add_donation) - - -def thank_you(donor_dict): - """ Find or create a donor, add new donation, and return a thank you note""" - name = 'list' - while name == 'list': - new_name = raw_input("Enter full name of donor-->") - name = str(new_name) - if not (name == 'list'): - break - else: - for item in donor_dict: - print item - - if name in donor_dict: - app_record(name, donor_dict) - else: - add_record(name, donor_dict) - - -def write_efile(name, donation_list): - """write a donor email to disk named "name".txt""" - to_file = './%s.txt' % name - outdata = 'Dear %s, Thanks so much for your recent generous donation of $%s. ' \ - 'It is greatly appreciated!' % (name, donation_list[-1]) - open(to_file, 'w').write(outdata) - - -#def sum_element(key_dbase): - #"""set key for sorting on sum element of data structure""" - #return key_dbase[1] - - -def mk_report(rep_dict): - """ Create a sorted list of donors""" - print 'Donor Name\t\t\tTotal Donations\t# of Donations\t\tAverage Donation' - #rep_dbase.sort(key=sum_element) - for j, k in rep_dict.items(): - num_donations = len(k)-1 - avg_donation = k[0]/(len(k)-1) - print '%s\t\t\t%s\t\t\t\t%s\t\t\t\t\t\t%s' % (j, k[0], num_donations, avg_donation) - write_efile(j,k) - - -if __name__ == '__main__': - donor = mk_dbase() - answer = None - while not (answer == "q"): - answer = get_input() - if answer == "q": - break - elif answer == "1": - thank_you(donor) - else: - mk_report(donor) - print "Exiting" diff --git a/Students/RPerkins/session04/print_filepath.py b/Students/RPerkins/session04/print_filepath.py deleted file mode 100644 index 22128e94..00000000 --- a/Students/RPerkins/session04/print_filepath.py +++ /dev/null @@ -1,7 +0,0 @@ -__author__ = 'Robert W. Perkins' - -import pathlib - -pth = pathlib.Path('./') -for f in pth.iterdir(): - print '%s\%s' % (pth.absolute(), f) diff --git a/Students/RPerkins/session04/test.txt b/Students/RPerkins/session04/test.txt deleted file mode 100644 index e6d2cb24..00000000 --- a/Students/RPerkins/session04/test.txt +++ /dev/null @@ -1 +0,0 @@ -This is the test file content \ No newline at end of file diff --git a/Students/RPerkins/session04/test/testcopy.txt b/Students/RPerkins/session04/test/testcopy.txt deleted file mode 100644 index e6d2cb24..00000000 --- a/Students/RPerkins/session04/test/testcopy.txt +++ /dev/null @@ -1 +0,0 @@ -This is the test file content \ No newline at end of file diff --git a/Students/RPerkins/session05/arglab.py b/Students/RPerkins/session05/arglab.py deleted file mode 100644 index d4357d9b..00000000 --- a/Students/RPerkins/session05/arglab.py +++ /dev/null @@ -1,23 +0,0 @@ -__author__ = 'Robert W. Perkins' - - -def show_color(fore_color='red', back_color='yellow', link_color='blue', visited_color='ltblue'): - - formatter = 'The fore color is {f_color}\n' \ - 'The back color is {b_color}\n' \ - 'The link color is {l_color}\n' \ - 'The visited color is {v_color}\n' - - print formatter.format(f_color=fore_color, b_color=back_color, l_color=link_color, v_color=visited_color) - - -if __name__ == '__main__': - show_color() - show_color(fore_color='green') - d = { - 'fore_color': 'teal', - 'back_color': 'mauve', - 'link_color': 'ochre', - 'visited_color': 'viridian' - } - show_color(**d) \ No newline at end of file diff --git a/Students/RPerkins/session05/complab.py b/Students/RPerkins/session05/complab.py deleted file mode 100644 index 8db1b29e..00000000 --- a/Students/RPerkins/session05/complab.py +++ /dev/null @@ -1,41 +0,0 @@ -__author__ = 'Robert W. Perkins' - -#feast = ['lambs', 'sloths', 'orangutans', 'breakfast cereals', 'fruit bats'] -#comprehension = [delicacy.capitalize() for delicacy in feast] - -#feast = ['spam', 'sloths', 'orangutans', 'breakfast cereals', 'fruit bats'] -#comprehension = [delicacy for delicacy in feast if len(delicacy) > 6] - -#list_of_tuples = [(1, 'lumberjack'), (2, 'inquisition'), (4, 'spam')] -#comprehension = [ skit * number for number, skit in list_of_tuples ] - -#list_of_eggs = ['poached egg', 'fried egg'] -#list_of_meats = ['lite spam', 'ham spam', 'fried spam'] - -dict_of_weapons = {'first': 'fear', - 'second': 'surprise', - 'third': 'ruthless efficiency', - 'forth': 'fanatical devotion', - 'fifth': None} - -dict_comprehension = { k.upper(): weapon for k, weapon in dict_of_weapons.iteritems() if weapon} - - -if __name__ == '__main__': - - #print comprehension[0] - #print comprehension[2] - #print len(feast) - #print len(comprehension) - #print comprehension[0] - #print len(comprehension[2]) - #print comprehension - #comprehension = [ '{0} and {1}'.format(egg, meat) for egg in list_of_eggs for meat in list_of_meats] - #print len(comprehension) - #print comprehension[0] - #print comprehension - - print 'first' in dict_comprehension - print 'FIRST' in dict_comprehension - print len(dict_of_weapons) - print len(dict_comprehension) diff --git a/Students/RPerkins/session05/count_evens.py b/Students/RPerkins/session05/count_evens.py deleted file mode 100644 index 4fa734c9..00000000 --- a/Students/RPerkins/session05/count_evens.py +++ /dev/null @@ -1,6 +0,0 @@ -__author__ = 'Robert W. Perkins' - - -def ct_evens(in_list): - """Return number of even ints in the given array""" - return len([evens for evens in in_list if evens % 2 == 0]) \ No newline at end of file diff --git a/Students/RPerkins/session05/dict_setcomps.py b/Students/RPerkins/session05/dict_setcomps.py deleted file mode 100644 index f78e8a6b..00000000 --- a/Students/RPerkins/session05/dict_setcomps.py +++ /dev/null @@ -1,45 +0,0 @@ -__author__ = 'Robert W. Perkins' - - -food_prefs = {"name": u"Chris", - u"city": u"Seattle", - u"cake": u"chocolate", - u"fruit": u"mango", - u"salad": u"greek", - u"pasta": u"lasagna"} - -formatter = '{f_name} is from {f_city}, and he likes {f_cake} cake, {f_fruit} fruit, {f_salad} salad, and' \ - ' {f_pasta} pasta' - -print formatter.format(f_name=food_prefs['name'], f_city=food_prefs['city'], f_cake=food_prefs['cake'], - f_fruit=food_prefs['fruit'], f_salad=food_prefs['salad'], f_pasta=food_prefs['pasta']) - -num_list = [(i, hex(i)) for i in range(16)] -hex_dict = dict(num_list) -print hex_dict - -dict_comprehension = {k: hex(k) for k in range(16)} -print dict_comprehension - -food_letters = {food_key: food_prefs[food_key].count('a') for food_key in food_prefs} -print food_letters - -s2 = {z for z in range(21) if z % 2 == 0} -s3 = {z for z in range(21) if z % 3 == 0} -s4 = {z for z in range(21) if z % 4 == 0} -print s2 -print s3 -print s4 - -set_seq = [set(), set(), set()] -for n in range(21): - if n % 2 == 0: - set_seq[0].update([n]) - if n % 3 == 0: - set_seq[1].update([n]) - if n % 4 == 0: - set_seq[2].update([n]) -print set_seq - -ec_list = [{n for n in range(21) if n % (s+2) == 0} for s in range(3)] -print ec_list \ No newline at end of file diff --git a/Students/RPerkins/session05/test_countevens.py b/Students/RPerkins/session05/test_countevens.py deleted file mode 100644 index 2cfa88a9..00000000 --- a/Students/RPerkins/session05/test_countevens.py +++ /dev/null @@ -1,32 +0,0 @@ -__author__ = 'Robert W. Perkins' - - -from count_evens import ct_evens - - -def test_null(): - assert ct_evens([]) == 0 - - -def test_onenone(): - assert ct_evens([1]) == 0 - - -def test_oneone(): - assert ct_evens([42]) == 1 - - -def test_manyevens(): - assert ct_evens([2, 1, 5, 7, 8, 80]) == 3 - - -def test_allevens(): - assert ct_evens([2, 4, 6, 8, 10, 12]) == 6 - - -def test_manynone(): - assert ct_evens([1, 3, 5, 7, 9, 11, 13]) == 0 - - -def test_repeats(): - assert ct_evens([1,2,3,2,3,3,4,2,6,6,3,9,7,4,12]) == 8 \ No newline at end of file diff --git a/Students/RPerkins/session06/html_render.py b/Students/RPerkins/session06/html_render.py deleted file mode 100644 index 4f907857..00000000 --- a/Students/RPerkins/session06/html_render.py +++ /dev/null @@ -1,141 +0,0 @@ -__author__ = 'Robert W. Perkins' - - -#!/usr/bin/env python - -""" -Python class example. -""" - - -class Element(object): - - tag = '' - endtag = '' - indent = '' - - def __init__(self, content=None, **attrib): - self.attrib = attrib - self.content = [content] - - def append(self, new_content): - """Check for existing content and add new_content""" - - if self.content[0] is None: - self.content = [new_content] - else: - self.content.append(new_content) - - def render(self, file_out, ind=""): - """Write tags and call render method on content objects""" - - if self.attrib.get('style') is None: - file_out.write('{tag_indent}{start_tag}\n'.format(tag_indent=self.indent, start_tag=self.tag,)) - else: - file_out.write('{tag_indent}{tag_front} style="{ival}">\n'.format - (tag_indent=self.indent, tag_front=self.tag[:-1], ival=self.attrib.get('style'))) - for item in self.content: - if type(item) == str: - file_out.write(' {out_string}\n'.format(out_string=item)) - else: - item.render(file_out, " ") - file_out.write('{tag_indent}{end_tag}\n'.format(tag_indent=self.indent, end_tag=self.endtag)) - -class Html(Element): - - tag = '' - endtag = '' - - -class P(Element): - - tag = '

    ' - endtag = '

    ' - indent = ' ' - - def render(self, file_out, ind=""): - """Write paragraph content and tags to the file_out StringIO object""" - - if self.attrib.get('style') is None: - file_out.write('{tag_indent}{start_tag}\n'.format(tag_indent=self.indent, start_tag=self.tag,)) - else: - file_out.write('{tag_indent}{tag_front} style="{ival}">\n{element_indent}{content}\n' - '{tag_indent}{end_tag}\n'.format(tag_indent=self.indent, tag_front=self.tag[:-1], - ival=self.attrib.get('style'), - element_indent=ind+self.indent, content=self.content[0], - end_tag=self.endtag)) - - -class Body(Element): - - tag = '' - endtag = '' - indent = ' ' - - -class Head(Element): - - tag = '' - endtag = '' - indent = ' ' - - -class OneLineTag(Element): - - def render(self, file_out, ind=""): - """Write single line elements to the file_out StringIO object""" - - file_out.write('{tag_indent}{start_tag}{content}{end_tag}\n'.format - (tag_indent=self.indent, start_tag=self.tag, - content=self.content[0], end_tag=self.endtag)) - - -class Title(OneLineTag): - - tag = '' - endtag = '' - indent = ' ' - - -class SelfClosingTag(Element): - - indent = ' ' - - def render(self, file_out, ind=""): - """Write tags and call render method on content objects""" - if self.attrib.get('style') is None: - file_out.write('{tag_indent}{start_tag}\n'.format(tag_indent=self.indent, start_tag=self.tag,)) - else: - file_out.write('{tag_indent}{tag_front} style="{ival}"/>\n'.format - (tag_indent=self.indent, tag_front=self.tag[:-2], ival=self.attrib.get('style'))) - - -class Hr(SelfClosingTag): - - tag = '
    ' - - -class Br(SelfClosingTag): - - tag = '
    ' - - -class A(Element): - - tag = '
    ' - endtag = '' - indent = ' ' - - def __init__(self, link, content): - self.link = link - self.content = content - attrib = {} - Element.__init__(self, content, **attrib) - - def render(self, file_out, ind=""): - """Write element tags, link, and content to the file_out StringIO object""" - - file_out.write('{tag_indent}{start_tag} {link}>{content}{end_tag}\n'.format - (tag_indent=self.indent, start_tag=self.tag[:-1], - link=self.link, content=self.content[0], end_tag=self.endtag)) - diff --git a/Students/RPerkins/session06/lambda_lab.py b/Students/RPerkins/session06/lambda_lab.py deleted file mode 100644 index 6dadc801..00000000 --- a/Students/RPerkins/session06/lambda_lab.py +++ /dev/null @@ -1,25 +0,0 @@ -__author__ = 'Robert W. Perkins' - - -def lam_lab(n): - l = [] - for i in range(n): - l.append(lambda x, e=i: x+e) - return l - - -def lam_lab2(num): - - t = [] - [(t.append(lambda x, e=i: x+e)) for i in range(num)] - return t - -if __name__ == '__main__': - - func_outlab = lam_lab(10) - for f in func_outlab: - print f(4) - - comp_outlab = lam_lab2(10) - for g in comp_outlab: - print g(4) diff --git a/Students/RPerkins/session06/run_html_render.py b/Students/RPerkins/session06/run_html_render.py deleted file mode 100644 index 09d9986e..00000000 --- a/Students/RPerkins/session06/run_html_render.py +++ /dev/null @@ -1,231 +0,0 @@ -#!/usr/bin/env python - -""" -a simple script can run and test your html rendering classes. - -Uncomment the steps as you add to your rendering. - -""" -from cStringIO import StringIO - - -# importing the html_rendering code with a short name for easy typing. -import html_render as hr -reload(hr) -#reloding in case you are running this in iPython -# -- want to make sure the latest version is used - - -## writing the file out: -def render(page, filename): - """ - render the tree of elements - - This uses cSstringIO to render to memory, then dump to console and - write to file -- very handy! - """ - - f = StringIO() - page.render(f, " ") - - f.seek(0) - - print f.read() - - f.seek(0) - open(filename, 'w').write(f.read()) - - -## Step 1 -########## - -#page = hr.Element() - -#page.append("Here is a paragraph of text -- there could be more of them, but this is enough" - #" to show that we can do some text") - -#page.append("And here is another piece of text -- you should be able to add any number") - -#render(page, "test_html_output1.html") - -# ## Step 2 -# ########## - -#page = hr.Html() - -#body = hr.Body() - -#body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough " - #"to show that we can do some text")) - -#body.append(hr.P("And here is another piece of text -- you should be able to add any number")) - -#page.append(body) - -#render(page, "test_html_output2.html") - -# # Step 3 -# ########## - -#page = hr.Html() - -#head = hr.Head() -#head.append(hr.Title("PythonClass = Revision 1087:")) - -#page.append(head) - -#body = hr.Body() - -#body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough " - #"to show that we can do some text")) -#body.append(hr.P("And here is another piece of text -- you should be able to add any number")) - -#page.append(body) - -#render(page, "test_html_output3.html") - -# # Step 4 -# ########## - -#page = hr.Html() - -#head = hr.Head() -#head.append(hr.Title("PythonClass = Revision 1087:")) - -#page.append(head) - -#body = hr.Body() - -#body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough " - #"to show that we can do some text", - #style="text-align: center; font-style: oblique;")) - -#page.append(body) - -#render(page, "test_html_output4.html") - -# # Step 5 -# ######### - -#page = hr.Html() - -#head = hr.Head() -#head.append(hr.Title("PythonClass = Revision 1087:")) - -#page.append(head) - -#body = hr.Body() - -#body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough " - #"to show that we can do some text", style="text-align: center; font-style: oblique;")) - -#body.append(hr.Hr()) - -#page.append(body) - -#render(page, "test_html_output5.html") - -# # Step 6 -# ######### - -#page = hr.Html() - -#head = hr.Head() -#head.append(hr.Title("PythonClass = Revision 1087:")) - -#page.append(head) - -#body = hr.Body() - -#body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough " - #"to show that we can do some text", style="text-align: center; font-style: oblique;")) - -#body.append(hr.Hr()) - -#body.append("And this is a ") -#body.append(hr.A("http://google.com/", "link") ) -#body.append("to google") - -#page.append(body) - -#render(page, "test_html_output6.html") - -# # Step 7 -# ######### - -page = hr.Html() - -head = hr.Head() -head.append(hr.Title("PythonClass = Revision 1087:")) - -page.append(head) - -body = hr.Body() - -body.append(hr.H(2, "PythonClass - Class 6 example") ) - -body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough " - "to show that we can do some text", style="text-align: center; font-style: oblique;")) - -body.append(hr.Hr()) - -list = hr.Ul(id="TheList", style="line-height:200%") - -list.append(hr.Li("The first item in a list") ) -list.append(hr.Li("This is the second item", style="color: red")) - -item = hr.Li() -item.append("And this is a ") -item.append(hr.A("http://google.com/", "link") ) -item.append("to google") - -list.append(item) - -body.append(list) - -page.append(body) - -render(page, "test_html_output7.html") - -# # Step 8 -# ######## - -# page = hr.Html() - - -# head = hr.Head() -# head.append( hr.Meta(charset="UTF-8") ) -# head.append(hr.Title("PythonClass = Revision 1087:")) - -# page.append(head) - -# body = hr.Body() - -# body.append( hr.H(2, "PythonClass - Class 6 example") ) - -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text", -# style="text-align: center; font-style: oblique;")) - -# body.append(hr.Hr()) - -# list = hr.Ul(id="TheList", style="line-height:200%") - -# list.append( hr.Li("The first item in a list") ) -# list.append( hr.Li("This is the second item", style="color: red") ) - -# item = hr.Li() -# item.append("And this is a ") -# item.append( hr.A("http://google.com/", "link") ) -# item.append("to google") - -# list.append(item) - -# body.append(list) - -# page.append(body) - -# render(page, "test_html_output8.html") - - - - diff --git a/Students/RPerkins/session06/sample_html.html b/Students/RPerkins/session06/sample_html.html deleted file mode 100644 index f2687e95..00000000 --- a/Students/RPerkins/session06/sample_html.html +++ /dev/null @@ -1,27 +0,0 @@ - - - - - PythonClass = Revision 1087: - - -

    PythonClass - Class 6 example

    -

    - Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text -

    -
    -
      -
    • - The first item in a list -
    • -
    • - This is the second item -
    • -
    • - And this is a - link - to google -
    • -
    - - \ No newline at end of file diff --git a/Students/Readme.rst b/Students/Readme.rst deleted file mode 100644 index aea97a11..00000000 --- a/Students/Readme.rst +++ /dev/null @@ -1,10 +0,0 @@ -This is a dir for student's work. - -If you want to put your work here for review: - -* "fork" this repository in gitHub (make a copy in your own gitHub account) -* Create a directoy in this directory with your name -* put your work in that directory in some organised fashion -* commit those changes to your gitHub repo -* submit a "pull request" - diff --git a/Students/SSchwafel/Notes/10072014.notes b/Students/SSchwafel/Notes/10072014.notes deleted file mode 100644 index 99a3838a..00000000 --- a/Students/SSchwafel/Notes/10072014.notes +++ /dev/null @@ -1,391 +0,0 @@ -Notes for 10/7/2014 -================== - - - None is default return value if a function doesn't return something else - -print grid notes - - Uses NUMBER to make the number of boxes increase without a newline - - top = ('+ ' + '- ' * box_size) * number + '+' + '\n' - - -Git - version control system - -A history of everything you've ever done to your code - -A graph of "states in" which your code has existed - -Graph = places/states with paths between them - -A set of points of time with a history of where you've been - -Each point has a name that uniquely identifies it called a HASH - -HEAD = always there, and always points to the point in time you're currently looking at - -First branch that exists is called Master - -A "branch" is actually just a label that points to a specific point in time - -You can CREATE a branch by using the "branch" command - - This adds a new label to the current commit - But it has not "checked it out" - -use 'git branch' to see which branch is active - -You can use this to switch between branches and make changes in isolation - -Git encourages making lots and lots of SMALL COMMITS - -Branching allows you to keep related sets of work separate from each other - -Simply create a new branch for each session from your repository master branch - -Do your homework in a separate branch so you can submit a separate pull request each week - - THIS IS HOW IT WORKS IN THE REAL WORLD - -(Dozens of branches on a weekly basis) - -The final step in the process is merging the work >> Combines work on one branch with your work on another - - 'git merge session01' - -Sometimes when you merge two branches, you get CONFLICTS - -This happens when the same file was changed in about the same place in two different ways - -Often, git can figure these things out on its own - - You may need to manually edit files to fix the problem - - Look for conflict markers - -<<<<<<<<>>>>>>>>>>>hash2 (stuff from the branch being merged) - - REMOVE CONFLICT MARKERS BEFORE RE-ADDING AND COMMITTING - -git is a "distributed versioning system" ; there's no central repository that serves as the one main repo - -Instead, you work with local repos, and remotes they are connected to - -Clone repositories get an origin remote for free: - -git remote -v - -origin represents where you cloned the repository - -Shows that the local repo originated on the github account - -Class Repo: - - -You want to keep the fork up-to-date with the original copy as the class goes forward - -You can add "remotes" at will, to connect your local repo to other copies of it in different remote locations - -This allows you to grab changes made to the repo in these other locations - -For our class we will add an upstream remote to our local copy that points to the original copy of the material in the UWPC-PythonCert account - -To get updates from new remote, you'll need first to fetch everything - -Finally, you can fetch and then merge changes from the upstream master - - git checkout master - -You can do all in one step with - - git pull upstream master - -git pull fetches changes, brings them locally, and then merges them in - - Just doesn't show what the changes are going to be - git checkout upstream master to SEE what's about to happen - - -You can incorporate this into your daily workflow - - git checkout master - git pull upstream master - git push - [do work] - git commit -a - [add a good commit message] - git push - [Make a pull request] - - -There are graphical tools for Git (maybe check out?) - - -============================================================================ - - -if and elif <---python's way of letting you make decisions - -else is optional, elif are optional - -Multiples ifs will cause ALL of the ifs to be distinct (all things will happen instead of just one) - -Many languages have a "switch", Python does not - -in Python use if, elif, elif, elif, else - - Alternatively, use a dictionary or subclassing - -Lists -> a way to store a bunch of stuff in an ordered fashion. Just like an array or a vector - -a_list = [2,3,4,5] -a_tuple = (2,3,4,) <---TUPLES USE () INSTEAD OF [] - -Biggest difference is that you can change the contents of a list, but not a tuple - - -Loops: - -Sometimes called a 'determinate' loop - -When you need to do something to everything in a sequence - -(you've been using i for item) - - for item in a_list: - print item - -range() builds a list of numbers automatically - -range(6) - [0,1,2,3,4,5] - -================================ -Functions: - - -def fun(x,y): - z = x+y - return z - -xyz are LOCAL - -Symbols bound in Python have a SCOPE - determines where it is visible or what value it has in a given block - -If a value is rebound INSIDE the function, it does not change the value outside of the function - -In general, you should use global bindings mostly for constants (those that are made at the left margin = global) - -Convention: global constants are ALL_CAPS - - Good convention to follow - -We have seen simple parameter lists: - -def fun(x, y z): - - print x, y, z - -These types of params are called "positional" - -When you call a function, you must provide arguments for all positional params in the order they are listed - -You CAN provide default values for paramters in a function definition (this makes them optional) - -def fun(x=1,y=2,z=3) - -Or you can use the param as a keyword to indicate what you mean - -fun(y=4, x=1) - -Once you've provided a keyword argument in this way, you can no longer provide any positional arguments - -e.g. fun(x=5, 6) - -Documentation: - -Leave information in your code about what you were thinking when you wrote it - -There are two approaches to this: - - Comments (in line with code) - #like this one - - Docstrings - - in-line documentation in a number of different places - def complex_function() - """THIS IS A DOCSTRING FOR THIS FUNCTION""" - code code code - - complex_function.__doc__ - - THIS IS A DOCSTRING FOR THIS FUNCTION - - A docstring should be a complete sentence in the form of a command describing what the function does - Should fit on a single line - If more description is needed, make the first line a complete sentence and add more lines below for enhancement - enclose with """ (allows for easy expansion later on) - Always close on the same line if the doc string is only one line - -Recursion: - - We've seen functions that call another function - - If a function calls ITSELF, that's called recursion - - Like with other Functions, a call within a call establishes a call stack - - With recursion, if you are not careful, this stack can get VERY deep - - Python has a limit for how much it can recurse - - Recursion can be useful, especially for a particular set of problems - - For example, take the case of the factorial function - - 5! == 5*4*3*2*1 - - def factorial(x): - if x ==1: - return 1 - else: - return x * factorial(x - 1) - - -Boolean Expressions!: - - What is true or false in Python? - - Booleans: True and False (CAPITALIZED) - - Something or Nothing - - Anything that is SOMETHING is True, anything that is Nothing is False - - bool(something) = is something a True or a False value? - - Nothing = empty string, tuple, dictionary, zero, or anything that returns 0 - - - EVERYTHING ELSE is True - - -Pythonic Boolean: - - Any object, passed to bool() will evaluate to True or False - - if xx == True: - - do_something() - - Bad ^^ ------------------------- - if xx: - - do_something() - - Good ^^ - (Does not test if it exists, just tests if it's True or False) - - Boolean Keywords in Python: and, or, not - - 'and' will return the first operand that evaluates to False, or the last operand if none are True - - 'or' returns the first operand that evaluates to True or the last operand in line - - 'not' is an unary expression and inverts the boolean value of its operand: - - not True -> False - - not False -> True - -Because of the return value of these keywords, you can write concise statements - -Ternary Expressions: - - if something: - - x = a_value - - else: - - x = another_value - - y = 5 if x > 2 else 3 - - -In Python, the boolean types are subclasses of integer: - - True == 1 - True - - False == 0 - True - - - -Whitespace is great because it encourages good formatting - -All statements must be correspondingly indented - - -Other than indenting, space doesn't matter! - -Read PEP 8 (Python Style guide) and install a linter in your editor <---- - -python is all about namespaces -- the "dots" - - name.another_name - - The dot indicates that you're looking for a name in the namespace of the given object - - Namespace is collection of symbols that are bound to values - - You can think of the files that you write that end in .py is a module - - A MODULE is simply a namespace - - A package is a module with other modules inside it - - on a filesystem, this is represented as a directory that contains one or more .py files, one of which must be called __init__.py <---TURNS DIRECTORY FULL OF FILES INTO A PACKAGE - - Then you can import from that directory into another program - - -When you import a module, or a symbol from a module, the Python code is compiled to bytecode, the result is a .pyc file - - This executes ALL CODE AT THE MODULE SCOPE - - For this reason, it is good to avoid module-scope statements that have global side-effect - - -The code in a module is NOT re-run when imported again, it must be explicitly reloaded with - - import modulename - reload(modulename) - - python - m <---if module is somewhere in Python Path (set of directories it looks in) it will be executed - - You can also use the "run" command from within Ipython - -======================================== - - -Implement Ackermann function - - create ack.py in session02 - - write a good docstring - - Ackermann's function is not defined for input values less than 0, so check for that - - Use an if __name__ == "__main__" to test your function - - - Create a Fibonacci script - - Check class site for homework :( diff --git a/Students/SSchwafel/Notes/10142014.notes b/Students/SSchwafel/Notes/10142014.notes deleted file mode 100644 index a9b48008..00000000 --- a/Students/SSchwafel/Notes/10142014.notes +++ /dev/null @@ -1,341 +0,0 @@ -There are seven builtin types in Python that are Sequences: - - strings - unicode strings - lists - tuples - bytearrays - buffers - array.arrays - xrange objects (almost) - -We will be using mostly string types, lists, tuples -- the rest are special - -Everything we say today applies to all sequences -- with minor caveats - -Indexing: - - looking up by index using the subscription operator - - negative index = count from the end - - Asking for an index out of the range == index error - - slicing == getting a range of objects from the sequence - - [start:finish] - - The indices don't decribe the item itself, but rather the place BETWEEN the items - - You do not need to provide start ad finish - - Either 0 or len(string) will be assumed - - s[:-4] start to four from the end - - len(seq[a:]) == b-a - -Slicing takes a third argument = step -- which controls which items are returned - - a_thing[0:15] - - a_thing[0:15:2] = 0,2,4,6,8 <----WAT - - -Slicing != indexing - - indexing will always return a single object - slicing will always return a sequence, even if it's one object long - - - a_tuple[:] == copy of a_tuple - - All sequences support the in and not in membership operators - - - You can include LISTS in LISTS (yo dog) - - l = [1,3,4,5,[4,5]7,8] - - Sequences support concatenation - - - Slicing will give you as much of a sequence as it can, even if the slice is way out of range (indexing will give an error) - - All sequences have a len() you can use it on anything (though it doesn't start at 0) - - min() = minimum value of a sequence - - max() = maximum value of a sequence - - ord(a) = value associated with a == 97 (from ASCII character set) - - string.index('a') = answers "where is a in string" - - Will give the first one if there are multiples - - string.count('a') will give how many of a in string - -PyCon - Raymond Hedinger - watch his stuff - - -lists = [] <---square brackets -list type object as a constructor -> list() "Try and turn this into a list" - -the elements of a list need not be a single type - -each element in a list is a value and can be in multiple lists and have multiple names (or no name) - -Tuples LOOK like a list, but use () instead of [] - -Tuples don't NEED parens. They are defined by commas, not parens. - -If you want a tuple with a single item, put a comma after it - -tuple() to create a tuple out of something else - -each element in a tuple is a value and can be in multiple tuples and have multiple names (or no name) - -Why do we have both? - -Objects are either mutable or immutable. - -mutable = can be changed in place - -immutable CAN NOT CHANGE - -Tuples are immutable - -Lists are MUTABLE: - - In [28]: food = ['spam', 'eggs', 'ham'] - In [29]: food - Out[29]: ['spam', 'eggs', 'ham'] - In [30]: food[1] = 'raspberries' - In [31]: food - Out[31]: ['spam', 'raspberries', 'ham'] - -with a tuple: - - - In [32]: food = ('spam', 'eggs', 'ham') - In [33]: food - Out[33]: ('spam', 'eggs', 'ham') - In [34]: food[1] = 'raspberries' - --------------------------------------------------------------------------- - TypeError Traceback (most recent call last) - in () - ----> 1 food[1] = 'raspberries' - - TypeError: 'tuple' object does not support item assignment - -You can use nested lists to create a pseudo 2D array - -Watch out for passing mutable objects as default values for function parameters - - list.append(add this to list) - -If you have something mutable as a default object (function param) set it =None in the paramters - - def function(x, a_list=None) - -a_list[2:3] = [5,6,7,8,] -a_list - ]34,56,5,6,7,8,23,56] - -Growing the list: - - .append - .insert (add at this index) - .extend (a whole bunch of stuff on the end, add the items themselves (if it's a list, unpack the items)) - -Making the list smaller: - - .pop (remove last item off the list and return) - .remove (remove the last item of the list, or whichever one you want to remove) - - you can use del to delete slices of a list del nums[1:6:2] - -Slicing makes a copy - - In [249]: food = ['spam', ['eggs', 'ham']] - In [251]: food_copy = food[:] - In [252]: food[1].pop() - Out[252]: 'ham' - In [253]: food - Out[253]: ['spam', ['eggs']] - In [256]: food.pop(0) - Out[256]: 'spam' - In [257]: food - Out[257]: [['eggs']] - In [258]: food_copy - Out[258]: ['spam', ['eggs']] - - WATCH OUT FOR REFERENCES - first line here, the second list is copied AND referenced, changing the original changes the copy - -To iterate over and remove, make a copy of the list and mutate the original - list = range(10) - for x in list[:] - etc. - -You can iterate over any sequence with for - .reverse reverses the order of the list without returning - .sort will sort the list - - A METHOD THAT CHANGES SOMETHING IN PLACE RETURNS NONE - - .sort can take a key parameter - - In [137]: def third_letter(string): - .....: return string[2] - .....: - - In [138]: food.sort(key=third_letter) - In [139]: food - Out[139]: ['spam', 'eggs', 'ham'] - - Indexing is fast and constant time: O(1) - x in s proportional to n: O(n) - visiting all is proportional to n: O(n) - operating on the end of list is fast and constant time: O(1) - append(), pop() - operating on the front (or middle) of the list depends on n: O(n) - pop(0), insert(0, v) - But, reversing is fast. Also, collections.deque - - http://wiki.python.org/moin/TimeComplexity - - -If it needs to be mutable - list - -If it needs to be immutable - tuple - -safety when passing to a function - -Lists are usually the same kind of stuff - -Tuples are for grouping things that belong together but may not be the same type - -Dothe same operation to each element -list - -Small collection of values which make a single logical item? -tuple - -To document that these values won’t change? -tuple - -Build it iteratively? -list - -Transform, filter, etc? -list - -Data Visualization in Python book - ask Michel - - -Iteration: - - Doing the same thing again and again - - Python doesn't require you to create indices - if you DO need an index, you can use enumerate - - For should be called "for each" - - Range is useful for looping a certain number of times - - Be advised that loops do not create a local namespace - - Sometimes you want to interrupt or alter the flow of control - - Break or continue - - Break = stop here and forget about it - - Continue = continue AFTER a break - - For loops can take an ELSE clause (when the loop exits normally and doesn't break) - - for x in range(10): - if x == 11: - break - else: - print - -While for when you want to loop a certain amount of times, but you don't know how many - -While is more general than for - - Loop must make "progress" so the condition can become False and the loop will stop - - Can also use a break - - In [156]: import random - In [157]: keep_going = True - In [158]: while keep_going: - .....: num = random.choice(range(5)) - .....: print num - .....: if num == 3: - .....: keep_going = False - -While ALSO has an optional else block - -Strings: - - split and join - - csv = "comma, separated, values" - - csv.split(',') - Gives you a list - - csv.split() <---splits on white space instead of , - - split and join - - csv = "comma, separated, values" - - csv.split(',') - Gives you a list - - csv.split() <---splits on white space instead of , - - .join() <---adds list into string with the parameter before the dot as a divider - - "\n".join(list) <---joins with newline - - sample.upper() <---make uppercase - - .isnumeric() <---check if it's a number - -String Literals! - - backckslash (\) - \a ASCII Bell (BEL) - \b ASCII Backspace (BS) - \n ASCII Linefeed (LF) - \r ASCII Carriage Return (CR) - \t ASCII Horizontal Tab (TAB) - \ooo Character with octal value ooo - \xhh Character with hex value hh - - r"this is a raw string\n" <---wouldn't use carriage return - - raw strings are important for regular expressions - - - ord(i) is its corresponding numerical value - - char(x) turn numerical value into letter - - Use string formatting to build strings (read link) % - - http://docs.python.org/library/stdtypes.html#string-formatting-operations - - Learn this so you can dynamically build a formatted string - - This is being phased out in favor of .format() - - Do string formatting lab - - For ro13 generator, use char/ord to make it easy - diff --git a/Students/SSchwafel/Notes/10212014.notes b/Students/SSchwafel/Notes/10212014.notes deleted file mode 100644 index 4c39ca06..00000000 --- a/Students/SSchwafel/Notes/10212014.notes +++ /dev/null @@ -1,265 +0,0 @@ -Session 04 -================ - - - You almost never need to loop through the indices of a sequence (well, shit). - - zip() <---combines list elements of two lists into pairs - - for x,y in list() - - print x - print y - - enumerate() <---returns the index and the item itself - returns a tuple with the item and the index inside of it - - instead of looping through a sequence, you probably want to use zip/enumerate - - When you add to a string, you are creating a new string <---inefficient - - appending to lists is more efficient, .join()ing is a faster way than: - - for piece in list_of_stuff: - msg += piece - - - You can put a mutable item inside of an immutable object! - - if you're going to delete items from a list, make a copy of the list, then modify in place - - pop() is for taking an item out of a list and then using it - - tuples automatically sort by first number with tuple.sort() - - Sorting by second element in a tuple: - - def sort_fun(item): - return item[1] - - combined sort(key=sort_fun) - - ===== - - assertions are for testing, not for value checking in code - - in operational code should be: - - if m < 0: - raise ValueError - -Dictionaries and Sets: -====================================== -Dictionaries are: - - Associative array - map - hash table - key value pair - -Curly brackets {'key1': 3, 'key2':5} - -d = {} - - d = {'name': 'Brian', 'score': 42} - - >>> d['score'] - 42 - - >>> d = {1: 'one', 0: 'zero'} - - >>> d[0] - 'zero' - - >>> d['non-existing key'] - Traceback (most recent call last): - File "", line 1, in - KeyError: 'non-existing key' - -Keys can be immutable: number, string, tuple - -Hash functions convert arbitrarily large data to a small proxy - -Always return the same proxy for the same input - -MDA, SHA - -Dictionaries hash the key to an integer proxy and use it to find the key and value - -Hashability requires immutability - -Dictionary lookups are VERY EFFICIENT - -Key to value -> Lookup is one way - -Dictionaries have no defined order - this is why index lookups don't work - -'for' iterates over the keys - -is x in dict -> IN checks for KEYS only - -d.keys() = keys -d.value() = values -d.items = tuples of both - -Dictionary Performance - - indexing is fast and constant time: O(1) - x in s constant time: O(1) - visiting all is proportional to n: O(n) - inserting is constant time: O(1) - deleting is constant time: O(1) - - http://wiki.python.org/moin/TimeComplexity - -d.get('this') <---is this key in the dictionary, if not return default value -5 - -for item in d.iteritems(): <---faster - print item - -d.pop('this') <--removes key from dictionary and gives value - -d.setdefault('something', <---key 'value') <------checks if something's in the dictionary, if not, adds it! - -set is an unordered collection of distinct values - -A dictionary with only keys - -Set members must be hashable (like a dictionary) - -no indexing, unordered - -Set used to count distinct values - -frozenset for using as a key in a dictionary - -============================ - -Exceptions -> listen for a particular error and do something if it pops up - -try: - num_in = int(num_in) -except ValueError: - print "Input must be an integer, try again." - -try: - do_something() - f = open('missing.txt') - process(f) # never called if file missing -except IOError: - print "couldn't open missing.txt" -finally: <---runs after exception or not - do_some_clean-up - -Exceptions have an "else" clause that is called if there's no exception - -try: - do_something() - f = open('missing.txt') -except IOError: <----catching the exception means the program still runs - print "couldn't open missing.txt" -else: - process(f) # only called if there was no exception <---only runs if the file is successfully opened - -raise = raises that exception AGAIN <---good place to add extra information - - except (IOError, BufferError, OSError) as the_error: - do_something_with (the_error) - -File Read and Writing: - - - f = open('secrets.txt') - secret_data = f.read() - f.close() - - secret_data is a string! - Most likely need to use Unicode for strings - - - pen('secrets.bin', 'rb') - secret_data = f.read() - f.close() - - f = open('secrets.txt', [mode]) - 'r', 'w', 'a' - 'rb', 'wb', 'ab' - r+, w+, a+ - r+b, w+b, a+b - U - U+ - - These follow the Unix conventions, and aren’t all that well documented in the Python docs. But these BSD docs make it pretty clear: - - http://www.manpagez.com/man/3/fopen/ - - ‘w’ modes always clear the file - - U = makes it easy for different line endings!!!! - -Text is default. Line feeds are Unix-style line feeds. - - Reading part of a file - - header_size = 4096 - f = open('secrets.txt') - secret_header = f.read(header_size) - secret_rest = f.read() - f.close() - -for line in open(''secrets.txt'): - - print line - -(the file object is an iterator!) - - f = open('secrets.txt') - while True: - line = f.readline() - if not line: - break - do_something_with_line() - -File Writing: - - outfile = open('output.txt', 'w') - for i in range(10): - outfile.write("this is line: %i\n"%i) - - -Paths and directories: - - ./ <--current working directory - - or full path - - either work with open() - -os.module <----operating system services - - - os.getcwd() -- os.getcwdu() (u for Unicode) - os.chdir(path) - os.path.abspath() - os.path.relpath() - os.path.split() - os.path.splitext() - os.path.basename() - os.path.dirname() - os.path.join() - (all platform independent) - - - - os.listdir() - os.mkdir() - os.walk() - - shutil module - - look into pathlib - -Homework - - -Do the reading! diff --git a/Students/SSchwafel/Notes/10282014.notes b/Students/SSchwafel/Notes/10282014.notes deleted file mode 100644 index f5836fc6..00000000 --- a/Students/SSchwafel/Notes/10282014.notes +++ /dev/null @@ -1,151 +0,0 @@ -Dictionaries are not ordered - -Standard way = grab keys, sort them, then loop through that - -collections module = additional collection objects that do special things - - collections.OrderedDict <---like a dictionary that keeps track of order - - -d = collectionsns.OrderedDict() - -.strip() removes stuff AT THE ENDS!!!!! - -.translate function is really fast - -Advanced Argument Passing - -========================== - -When you define a function, you can define keyword arguments as defaults - - In [151]: def fun(x,y=0,z=0): - print x,y,z - .....: - In [152]: fun(1,2,3) - 1 2 3 - In [153]: fun(1, z=3) - 1 0 3 - In [154]: fun(1, z=3, y=2) - 1 2 3 - -check for unspecified value: - - def fun(x, y=None): - if y is None: - do_something_different - go_on_here - -Values don't have to be hardcoded, they can be variables: - - In [156]: y = 4 - In [157]: def fun(x=y): - print "x is:", x - .....: - In [158]: fun() - x is: 4 - - Gets evaluated when the function is DEFINED not when it is CALLED!!! - - Function arguments are really just: - a tuple ->>>positional arguments - a dictionary ->>>>>>keyword arguments - - def f(x, y, w=0, h=0): - print "position: %s, %s -- shape: %s, %s"%(x, y, w, h) - - position = (3,4) - size = {'h': 10, 'w': 20} - - >>> f( *position, **size) - position: 3, 4 -- shape: 20, 10 - -You can also pull the parameters out in the function as a tuple and a dict: - - def f(*args, **kwargs): - print "the positional arguments are:", args - print "the keyword arguments are:", kwargs - - - In [389]: f(2, 3, this=5, that=7) - the positional arguments are: (2, 3) - the keyword arguments are: {'this': 5, 'that': 7} - -The format method takes keyword arguments - -Mutability and copies: - - - Mutable objects have contents that can be changed - Immutable objects cannot - - You can have mutable objects inside of immutable objects - -Copying Lists: - - In [29]: list2 = list1[:] - - In [30]: list2 is list1 - Out[30]: False - -Shallow copy = copies at the top level, puts stuff in it, but the stuff it puts in is the same - doesn't copy more than you explicitly tell it to - -a lot of objects have built-in ways to copy themselves - -copy module (import copy) - -copy.copy(listX) - -copy.deepcopy(listX) <----looks at each element and makes a copy, recurses! - - -Dict and list comprehensions!: - - Consider this common for loop structure: - - new_list = [] - for variable in a_list: - new_list.append(expression) - This can be expressed with a single line using a “list comprehension” - - new_list = [expression for variable in a_list] - - [i for i in range(5)] = [0,1,2,3,4,5] - - - [i*4 for i in range(5)] = [0,4,8,12,16] - - - list = [s.upper() for s in list] - - [(i,) for i in range(3) for j in range(4,6)]<----the same as a nested for loop - - Often a conditional in the loop. Do something IF something is true - - - list = [s.upper() for s in list if s.startswith('t')] - - - is something in a set() is faster than is something in a list() - list = [s.upper() for s in list] - - - -Testing: - - import unittest <---original testing system - - You have to write classes and methods :( - - Test file separate from main module - - Alternatives = nose and pytest - - we are going to play with pytest - - Pytest looks for things in current dir that might be tests (test_*) - runs those functions as tests - - Test-driven Development ----> you write the tests before you write the code - - Tests exists, write code until all the tests pass diff --git a/Students/SSchwafel/Notes/11042014.notes b/Students/SSchwafel/Notes/11042014.notes deleted file mode 100644 index 1e3a462d..00000000 --- a/Students/SSchwafel/Notes/11042014.notes +++ /dev/null @@ -1,157 +0,0 @@ -Notes for November 4, 2014 -============================ - - - *args = don't know how many arguments - take all the args and put them in a tuple - - **kwargs = don't know what arguments - - take all kwargs and put them in a dict. - - These are for when you DON'T KNOW HOW MANY ARGUMENTS ARE NEEDED - - - Singleton -> only one of these objects in existence (programming concept) - - Use 'if something is None' not if something == None' - - is = "is this the SAME OBJECT" (not, "does it have the same value") - - Rich Comparisons = - - use IS instead of == for "is _something_ None" - - ======================================================== - - infile = open(infilename, 'rb') <----MAKE SURE YOU USE BINARY MODE! - - ======================================================== - - You don't actually have to use the result of a list comprehension - - - The standard library has a collections module that does some fancy shit - - defaultdict = alternative to setdefault - - Makes sense when the dict is comprised of items that are all the same thing (for example, all lists) - - - Anonymous Functions - ======================================================== - - content can only be an expression, not a statements - - lambda creates a function that takes what arguments you pass, and returns the value of the expression - - f = lambda x,y: x+y - f(2,3) - output -> 5 - - You use Lambda a lot during functional programming - - map -> maps a function onto a sequence of objects - - In [23]: l = [2, 5, 7, 12, 6, 4] - - But if it’s a small function, and you only need it once: - - In [26]: map(lambda x: x*2 + 10, l) - Out[26]: [14, 20, 24, 34, 22, 18] In [24]: def fun(x): - return x*2 + 10 - In [25]: map(fun, l) - Out[25]: [14, 20, 24, 34, 22, 18] - - - Filter applies a function and removes entries that evaluate to false - - - In [27]: l = [2, 5, 7, 12, 6, 4] - In [28]: filter(lambda x: not x%2, l) - Out[28]: [2, 12, 6, 4] - - If you Pass NONE (filter(None, l) to filter, you only get items that evaluate to true - - Reduce reduces a collection to a single object with a function that combines two arguments - - In [30]: l = [2, 5, 7, 12, 6, 4] - In [31]: reduce(lambda x,y: x+y, l) - Out[31]: 36 - - READ DOCUMENTATION ON MAP() - - -Object-Oriented Programming! -=================================== - - Python is a dynamic language (which clashes with some people's interpretation of OO) - - Objects are data and the functions that act on them in one place - - This is the core of encapsulation - - In Python: just another namespace - - Python is written in an OO fashion - - Class: a category of of objects -> particular data and behavior - - Instance: a particular object of a class (a specific circle) - - Object: the general case of an instance --> any value in Python - - Attribute: something that belongs to an object (variable, etc.) - - Method: a function that belongs to a class - - - class something(object): <---creates a class - - type(something) = type - - Simplest Class: - - class Point(object): - - x = 1 - y = 2 - - Point.x -> 1 - - p = Point() - p --> <__main__.Point instance at 0x2de918> - p.x --> 1 - - __init__ special method is called when a new instance of a class is created. You can use it to do any setup you need. - - class Point(object): - def __init__(self, x, y): <------- The instance of the class is passed as the first parameter for every method. - self.x = x - self.y = y - - Using a function within a class namespace (method) - - - class Point(object): - size = 4 - color= "red" - - def get_color(): - return self.color - p3.get_color() - 'red' - - - Inheritance is a way to reuse code of existing objects, or to establish a subtype - - Subclass INHERITS everything from the parent class, but then you can override what it has inherited - -Simplest Subclass: - - class A_subclass(The_superclass): - pass - - ^^^ Exactly the same as The_superclass - - diff --git a/Students/SSchwafel/Notes/11182014.notes b/Students/SSchwafel/Notes/11182014.notes deleted file mode 100644 index 39810549..00000000 --- a/Students/SSchwafel/Notes/11182014.notes +++ /dev/null @@ -1,114 +0,0 @@ -Notes - November 18, 2014 -==================== - - - Subclassing is not for specialization, it's for reusing code - - The subclass is in charge - - - Multiple inheritance - inheriting from more than one class - -class Combined(Super1, Super2, Super3): - -method resolution order - class order of operations - - is it an instance attribute? - Is it a class attribute? - Is it a superclass attribute? - - Is it an attributed of the left-most superclass? - Next? - -Mixins - classes that are designed to add functionality to a class, but can't do much on its own - - animal - - mammal - givebirth() - - Bird - layeggs() - - Where do you put platypus? - - Real world example: FloatCanvas - - - -All of the lcass definitions we've been showing inherit from object - -This is referred to as a "new style" class - -Always subclass from Object - - -super(): <--- use it to call a superclass method, rather than explicitly callin the unbound method on the superclass - -read manpages on super() - -Properties - -Attributes are simple and concise - -But what if you need to add extra behavior? - -class C(object): - _x = None - @property - def x(self): - return self._x - @x.setter - def x(self, value): - self._x = value - -@ <----decoration - -Syntax for wrapping up function with special syntax - -getters/setters/deleters - - -Static and Class Methods: - - Static method is a method that doesn't get 'self' - - @staticmethod - def(a,b): - return a+b - - -Why are static methods useful? They aren't, usually. - -99% of the time you just want a module-level function - -Class Methods - -A class method gets the class object, rather than an instance, as the first argument - -Why? Unlike static methods, class methods are quite common. They are friendly to subclassing - -Properties, Satic Methods, and Class Methods are powerful features of Python's OO model. - - Descriptor Protocol! - -Special Methods! MAgic Methods are the secret sauce to Python's Duck typing. Defining the appropriate special methods in your classes is how you make your classes behave like python Builtins. - -__init__ <---special method - -object.__str__ is what happens when you ask for a string version of an object, for example - - -Protocols - - THe set of special methods needed to emulate a particular type of Python object is called a protocol. - -Your classes can "become" like Python builtins by implementing methods in a given protocol - - -Use special methods when you want your class to act like a "standard" class in some way. - -Look up the special methods you need and define them - - Guide to Python's Magic Methods - diff --git a/Students/SSchwafel/Notes/11252014.notes b/Students/SSchwafel/Notes/11252014.notes deleted file mode 100644 index 65e1e9ec..00000000 --- a/Students/SSchwafel/Notes/11252014.notes +++ /dev/null @@ -1,68 +0,0 @@ -Notes - Nov 25, 2014 - -__iadd__ - - augmented assignment, used for in-place addition; changes object in place - -Making your class behave like builtins! - -callable classes - -a_result = something(some_arguments) - - something <---Class - - __call__)*args, **kwargs) - - if you define a __call__ method, that method will be used when code "calls" an instance of your class - -Non-built-in sequence classes! - -You can create a class that looks like a regular sequence, just add __len__, __getitem_, __setitem__, __delitem__, etc. - - -Iterators and generators - -What goes on in for loops? - - iterators are what makes Python so readable - - an_iterator.__iter__() - - returns the iterator object itself - - an_iterator.next() - - returns next item until there are none, then returns StopIteration - - - What do for loops do? - - itertools -> build cool iterators out of sequences you have - - - -Generators - - generators give you the iterator immediately - - - conceptually - iterators are about various ways to loop over data, - generators generate the data on the fly - - practically - you can use either one either way (and generator is a type of - iterator - - def a_generator_function(params): - some_stuff - yield something - - - a function with 'yield' is a factory for a generator - - gen_a = a_generator() - gen_b a_generator() - - - - diff --git a/Students/SSchwafel/Notes/12022014.notes b/Students/SSchwafel/Notes/12022014.notes deleted file mode 100644 index 1179adea..00000000 --- a/Students/SSchwafel/Notes/12022014.notes +++ /dev/null @@ -1,16 +0,0 @@ -Notes 11/02/2014 -==================== - -You can bind a function to a symbol and return/pass them to functions - -Decorator - function takes function as an argument, gives a function as a return value - -Rebinding the name of a function to the result of calling a decorator on that function is called decoration - -@ <---special operator - -Decorators can be used with anything that is callable - - A decorator is a callable that takes a callable as an argument and returns a callable as a return value. - - diff --git a/Students/SSchwafel/Notes/12092014.notes b/Students/SSchwafel/Notes/12092014.notes deleted file mode 100644 index fb2e499d..00000000 --- a/Students/SSchwafel/Notes/12092014.notes +++ /dev/null @@ -1,75 +0,0 @@ -Notes - 12/9/2014 -==================== - -Unicode and the Persistence of Serialization ---- - - Projects Due at the end of this week! - Friday - -Anything is bytes <-- if it's stored on a disk or sent over a network, it's bytes - -Unicode makes it easier to deal with bytes - -Used to be able to fit everything into a two byte integer, (65,536 chars.) - -Variety of encodings -> way of going between the canonical name of a character, and how it's stored in memory - -Py2 strings are a sequence of bytes - Unicode strings are sequences of platonic characters - -Platonic characters cannot be written to disk or network - - -Python has both str and unicode - -Two ways to work with binary data: - -str and bytes() and bytearray - -In Python 3 bytes and strings are completely different! - -Unicode object lets you work with characters - all the same methods as the string object - - Encoding is converting from unicode object to bytes - - Decoding is converting from bytes to a unicode object - - -import codects -#encoding and decoding stuff - -codecs.encode() -codecs.decode() -codecs.open() #better to use io.open - -Use Unicode in your source files - - - #-*- coding: utf-8 -*- - -The Trick in Using Unicode - Be Consistent: - - Always unicode, never Python strings - - Do the decoding when you input your data - - Decode on input - - Encode on output - - - get default encoding - sys.getdefaultencoding() - - -from __future__ import unicode_literals #<----after running this line u'' is assumed! - - -be aware that you can still get Python 2 strings from other places... - -JSON Requires UTF-8! - -In Python 3, all strings are unicode - -Py3 has two distinct concepts: - - text - uses str object - binary data - uses bytes - - diff --git a/Students/SSchwafel/Notes/9302014.notes b/Students/SSchwafel/Notes/9302014.notes deleted file mode 100644 index fcf4e4a6..00000000 --- a/Students/SSchwafel/Notes/9302014.notes +++ /dev/null @@ -1,312 +0,0 @@ -Class Notes - Day 1 -==================== - - -Lightning Talk - - 5 minutes - must relate to Python somehow, doesn't matter - Somebody wrote a poem - -Python used for - - CS education - Application scripting - Sysadmin - Web apps (Django/Flask) - Scientific Computing - Automated software testing/distributed version control - Research (natural language graph, theory, distributed computing - -Used by: - - Beginners - Professional software developers - Professionals OTHER THAN computer scpialists - -Gets lots of things right: - - Looks nices, makes sense - No ideology about best way to program - No platform preference - Easy to connect to other languages - Large standard library - Larger network of external packages - - -What is python? - - Dynamic language - Byte compiled - Interpreted - - Not like compiled langs. - No type declarations (strings, ints) - Less code means fewer bugs! - - -Dynamic typing - - Type checking and dispatch happen at run-time - - x = a + b - - What is a? - What is b - What does it mean to ad them - a and b can change at any time before this process - - (crunch number programs run slower in Python because it has to check this stuff_ - -Strong typing! - - A + 1 won't work because int(1) and str(A) - - - " If an object behaves as expected at run-time, it’s the right type. " - -Python 2/3 are relatively similar - - Python "Wall of Shame" (a few key packages still not supported) - Most code in the wild is still 2.x - There are ways to write compatibile code (Python Docs) - -Three elements to your environment when working with Python: - - { - Command line - - Your interpreter - - Your editor - } - - -help() - - Exit with q - -dir() = return names in current scope - -Ipython <---use it - -Look these up in Vim Docs! - -{ - Code linting? - A system that will examine your code and tell you things you've done wrong with it - - Jump to function definition -} - -pip - - Python = batteries included - almost everything we need is in the standard library - - Python Package Manager - - -Ipython notes: - - %paste - from the system clipboard - - Tab complete - - Ipython saves the variables from a script run with 'run script.py' from within Ipython - -A file with python code in it is a 'module' or 'script' - - (More on that distinction later on) - Both named *.py - - -All programmin is about manipulating values - -dir(42) all value/stuff built into int(42) - -type() find out the type! - -Basic Value Types - - Numbers (Floats/Ints/Complex numbers (e.g. 42j ) - - Text (" or ') - - Boolean - spelled with capital (also: None object) - -An expression is something that evaluates and results in a value (output) - -A statement "does something" but doesn't result in an output - -This works - - print "the value is", x - -Python automatically adds a newline, you can suppress it with a comment (does add a space) - -Blocks of code are delimited by a colon and indentdation - -Python uses indentation to delineate structure - - This means that in Python, whitespace is significant - Standard is to use five spaces to indent your code - - Tab character and an spaces mean different things to Python - Tab = 8 spaces - NEVER INDENT WITH TABS - Set Vim to map = /s/s/s/s/s - -An expression is made up of values and operators - - Produces a new value - Can be used as a calculator - Int and float arithmetic is different - If ONE of the two values is a float, you get a floating point answer - "Floor division" - I want the integer value of division, // - Python3 does float division by default - -Type Conversion - - Python will try to convert types - Type errors checked at runtime only - Will get type errors mixing Unicode/ASCII - -Symbols are how we give names to these various values - - Symbols must contain __ or letter or letters - Can't start with a number - - Symbols don't have a type; values do - -This is why Python is dynamic - - A symbol is bound by to a value with an = - A value can have many names or none - a = 1 - b = a - b == 1 - - Assignment is a statement, it returns no value - Evaluating the name will return the value to which it is bound - - In most languages, symbols are known as "variables" - But many of you defined a "variable" as something like: "a place in memory that can store values" - That is NOT what a name is - - A name is bound to a value, but has nothing to do with location in memory - - In-place assignment operator = x = 3, x += 1, x == 4 - Works with all mathematical operators - - Multiple assignment: i, j = 4, 5; i = 4, j = 5 - Swap with i, j, = j, i; i = 5, j = 4 - - -You can't actually delete anything in Python - - the del command only unbinds an object - - Python keeps track until something is no longer referred to - - -Identity: - - Every value in Python is an object - - id(x) - Unique number that identifies - Every object is unique and can be tested with id() - - "is" operator will tell us if two objects are the same - - Most useful in debugging - - -== checks to see if two things have the same value - -=! checks to se if things were not equal - -Operator Precedence: - - 4 + 3 * 5 != (4 + 3) * 5 - - Follows PEMDAS - - Use () to do stuff out of order - - This is what the Prof uses frequently - -Python Operator Precedence - - Look up online - -Keywords: some have a special meaning and you can't use them for variable assignments -Python also has a number of builtins: dir(__builtins__) -- these can be rebound? - - Be careful that you didn't redefine something needed in the builtins - This is a bad idea. You might do it accidentally - -Exceptions are how Python tells you something is wrong - - NameError - Python doesn't know about a name - TypeError - You're trying to do something to a type that doesn't work, e.g. int + str - SyntaxError - you probably mistyped something - AttributeError - indicates that you're trying to access a method like s.fred() instead of s.upper() - - -What is a function? - - A self contained chunk of code - - A way to repeat a piece of code - - DRY - don't repeat yourself - - Sometimes it's clean to just put everything by itself - - Functions take and return information - - You define a function with: - - 'def function()' - pass #do nothing - - def is a statement - - Creates a function object - - Creates a local name - - Run a function with function() - - Arguments go in the () - - without parens just gives <--exception? - - If you don't tell a function to return something, it returns the None object - - Functions can call functions and other functions and other functions - - - If you want to return something, put 'return' and then what you want returned - Only one return statement will ever run - Functions can return more than one result - - x,y,z = function() -> Will set all three - - Sometimes you want to pass arguments (parameters) - - def function(x,y,z) - - print x + y + z - - Parameters are what a function takes, arguments are what you give it - - - If you want to do anything interesting, you need an "if" statement - -======================== - -Talk about Python for 5 minutes next week -Work on Python exercises at CodingBat - Get all the warmups done - -Get homework from website - diff --git a/Students/SSchwafel/Project/Draft_InformedVoter.py b/Students/SSchwafel/Project/Draft_InformedVoter.py deleted file mode 100644 index b4531183..00000000 --- a/Students/SSchwafel/Project/Draft_InformedVoter.py +++ /dev/null @@ -1,79 +0,0 @@ -#!/usr/bin/python - -from __future__ import unicode_literals -from pprint import pprint -import urllib2 -import simplejson as json - -#user_local_data = json.load(urllib2.urlopen('http://freegeoip.net/json/')) -user_local_data = json.load(urllib2.urlopen('http://api.ipinfodb.com/v3/ip-city/?key=a648bf3844359d401197bcaa214dd01e0f8c0c6d623ec57f3716fbcafc8262bd&format=json')) - -user_lat = user_local_data['latitude'] -user_long = user_local_data['longitude'] - -#print gathered lat/long -#print user_lat,user_long - -#print """ -# -#You can get your latitude and longitude from http://www.latlong.net/ -# -#""" - -#user_lat = raw_input('Please enter your Latitude: \n') -#user_long = raw_input('Please enter your Longitude: \n') - -#user_lat = '47.653098' -#user_long = '-122.353731' - -lat_long_url = 'https://congress.api.sunlightfoundation.com/districts/locate?latitude={}&longitude={}&apikey=15f4679bdc124cd6a2c6be8666253000'.format(user_lat, user_long) - -congressional_district = json.load(urllib2.urlopen(lat_long_url)) - - -legislators = json.load(urllib2.urlopen('https://congress.api.sunlightfoundation.com/legislators/locate?latitude={}&longitude={}&apikey=15f4679bdc124cd6a2c6be8666253000'.format(user_lat, user_long))) - -for i in legislators['results']: - print i['last_name'] + ' ' + i['bioguide_id'] - -#All Legislators, irrespective of location - -#House only -#legislators = json.load(urllib2.urlopen('https://congress.api.sunlightfoundation.com/legislators?chamber=house&per_page=all&apikey=15f4679bdc124cd6a2c6be8666253000'.format(user_lat, user_long))) - -#All Legislators -#legislators = json.load(urllib2.urlopen('https://congress.api.sunlightfoundation.com/legislators?per_page=all&apikey=15f4679bdc124cd6a2c6be8666253000'.format(user_lat, user_long))) - -#print 'Based on the latitude and longitude provided, your United States Congresspeople are: \n' - - -#Prints Congressman/Congresswoman + First, Last - -def find_legislators(): - - for i in legislators['results']: - print i['last_name'] + ' ' + i['bioguide_id'] - #legislator_ids.append(i) - -#find_legislators() - -#votes_url = json.load(urllib2.urlopen('https://congress.api.sunlightfoundation.com/votes?voter_ids.{}__exists=true&apikey=15f4679bdc124cd6a2c6be8666253000')).format( __ THIS IS WHERE THE UNIQUE ID OF THE LEGISLATOR NEEDS TO BE __ ) - -#pprint(votes_url) - -#def recent_votes(): - - ##THIS IS WHERE YOU ARE GOING TO RETURN THE LAST 10 VOTES BY var = LEGISLATOR - -def print_legislators(): - - for i in legislators['results']: - - if i['chamber'] == 'house' and i['gender'] == 'M': - print 'Congressman {} {} - {} \nPhone: {}\nWebsite: {}\n'.format(i['first_name'],i['last_name'],i['party'],i['phone'],i['website'] ) - if i['chamber'] == 'house' and i['gender'] == 'F': - print 'Congresswoman {} {} - {} \nPhone: {}\nWebsite: {}\n'.format(i['first_name'],i['last_name'],i['party'],i['phone'],i['website'] ) - elif i['chamber'] == 'senate': - print 'Senator {} {} - {} \nPhone: {}\nWebsite: {}\n'.format(i['first_name'],i['last_name'],i['party'],i['phone'],i['website'] ) - -#print_legislators() diff --git a/Students/SSchwafel/Project/GovTrack_InformedVoter.py b/Students/SSchwafel/Project/GovTrack_InformedVoter.py deleted file mode 100644 index 119ca07a..00000000 --- a/Students/SSchwafel/Project/GovTrack_InformedVoter.py +++ /dev/null @@ -1,23 +0,0 @@ - -#List Current Members of Congress with GovTrack -#congresspeople_url = 'https://www.govtrack.us/api/v2/role?current=true&limit=600' - -#One Particular Congressman -#url = 'https://www.govtrack.us/api/v2/person/400054' -# this takes a python object and dumps it to a string which is a JSON -# representation of that object -data = json.load(urllib2.urlopen(congresspeople_url)) - -objects = data['objects'] -#for representative in objects: -# print representative['person']['name'].encode('utf-8') -#pprint(objects[0][person]['sortname']) - -representatives = [] - -for i in objects: - representatives.append(i['person']['sortname'].encode('utf-8')) - -#representatives = sorted(representatives) -#pprint(representatives) - diff --git a/Students/SSchwafel/Project/InformedVoter.py b/Students/SSchwafel/Project/InformedVoter.py deleted file mode 100644 index d171ff07..00000000 --- a/Students/SSchwafel/Project/InformedVoter.py +++ /dev/null @@ -1,94 +0,0 @@ -#!/usr/bin/python - -from __future__ import unicode_literals -from pprint import pprint -import simplejson as json -import sys -import urllib2 - -#This allows printing to the console, including being able to pipe ( | ) the input -reload(sys) -sys.setdefaultencoding("utf-8") - -#Making sure that there is at least one command line argument, if not, is none -if len(sys.argv) == 1: - command_line_argument = None -else: - command_line_argument = sys.argv[1] - -#Finds out the user's IP address for lookup -user_local_data = json.load(urllib2.urlopen('http://api.ipinfodb.com/v3/ip-city/?key=a648bf3844359d401197bcaa214dd01e0f8c0c6d623ec57f3716fbcafc8262bd&format=json')) - -#Set variables for detected lat/long -user_lat = user_local_data['latitude'] -user_long = user_local_data['longitude'] - -#lat_long_url = 'https://congress.api.sunlightfoundation.com/districts/locate?latitude={}&longitude={}&apikey=15f4679bdc124cd6a2c6be8666253000'.format(user_lat, user_long) - -#Look up legislators from API with given lat/long, then store in a var. for later use -legislators = json.load(urllib2.urlopen('https://congress.api.sunlightfoundation.com/legislators/locate?latitude={}&longitude={}&apikey=15f4679bdc124cd6a2c6be8666253000'.format(user_lat, user_long))) - - -#Remnant of abandoned functionality -def find_legislators(): - """This function returns the legislator's last name and unique bioguide id, this would be useful for further, unimplemented features""" - for i in legislators['results']: - print '{} {}'.format(i['last_name'], i['bioguide_id']) - -def print_all_legislators(): - """This function prints all the legislators, then formats according to gender and title""" - - legislators = json.load(urllib2.urlopen('https://congress.api.sunlightfoundation.com/legislators?per_page=all&apikey=15f4679bdc124cd6a2c6be8666253000')) - for i in legislators['results']: - - if i['chamber'] == 'house' and i['gender'] == 'M': - print 'Congressman {} {} - {} \nPhone: {}\nWebsite: {}\n'.format(i['first_name'],i['last_name'],i['party'],i['phone'],i['website'] ) - if i['chamber'] == 'house' and i['gender'] == 'F': - print 'Congresswoman {} {} - {} \nPhone: {}\nWebsite: {}\n'.format(i['first_name'],i['last_name'],i['party'],i['phone'],i['website'] ) - elif i['chamber'] == 'senate': - print 'Senator {} {} - {} \nPhone: {}\nWebsite: {}\n'.format(i['first_name'],i['last_name'],i['party'],i['phone'],i['website'] ) - -def print_manual_legislators(): - """This function prints the legislators of the given lat/long, then formats according to gender and title""" - - print """ - - You can get your latitude and longitude from http://www.latlong.net/ - - """ - - user_lat = raw_input('Please enter your Latitude: \n') - user_long = raw_input('Please enter your Longitude: \n') - - legislators = json.load(urllib2.urlopen('https://congress.api.sunlightfoundation.com/legislators/locate?latitude={}&longitude={}&apikey=15f4679bdc124cd6a2c6be8666253000'.format(user_lat, user_long))) - - for i in legislators['results']: - - if i['chamber'] == 'house' and i['gender'] == 'M': - print 'Congressman {} {} - {} \nPhone: {}\nWebsite: {}\n'.format(i['first_name'],i['last_name'],i['party'],i['phone'],i['website'] ) - if i['chamber'] == 'house' and i['gender'] == 'F': - print 'Congresswoman {} {} - {} \nPhone: {}\nWebsite: {}\n'.format(i['first_name'],i['last_name'],i['party'],i['phone'],i['website'] ) - elif i['chamber'] == 'senate': - print 'Senator {} {} - {} \nPhone: {}\nWebsite: {}\n'.format(i['first_name'],i['last_name'],i['party'],i['phone'],i['website'] ) - -def print_detected_legislators(): - """This function prints the legislators local to the IP address of the user, then formats according to gender and title""" - for i in legislators['results']: - - if i['chamber'] == 'house' and i['gender'] == 'M': - print 'Congressman {} {} - {} \nPhone: {}\nWebsite: {}\n'.format(i['first_name'],i['last_name'],i['party'],i['phone'],i['website'] ) - if i['chamber'] == 'house' and i['gender'] == 'F': - print 'Congresswoman {} {} - {} \nPhone: {}\nWebsite: {}\n'.format(i['first_name'],i['last_name'],i['party'],i['phone'],i['website'] ) - elif i['chamber'] == 'senate': - print 'Senator {} {} - {} \nPhone: {}\nWebsite: {}\n'.format(i['first_name'],i['last_name'],i['party'],i['phone'],i['website'] ) - -if command_line_argument == '--all-legislators': - print_all_legislators() - -elif command_line_argument == None: - print 'Based on the latitude and longitude detected, your United States Congresspeople are: \n' - print_detected_legislators() - -elif command_line_argument == '--manual': - print_manual_legislators() - diff --git a/Students/SSchwafel/Project/README b/Students/SSchwafel/Project/README deleted file mode 100644 index 168b9463..00000000 --- a/Students/SSchwafel/Project/README +++ /dev/null @@ -1,10 +0,0 @@ -README -====== - -Welcome to the Informed Voter app! Right now, it provides the following functionality: - -Lists YOUR legislators based on an IP lookup, by running the program with no argument, these are returned - -Listing ALL legislators currently in Congress (run with the command line argument --all-legislators - -Finding out the representatives of a location via lat/long (access this functionality by running it with the --manual option) diff --git a/Students/SSchwafel/Project/test.py b/Students/SSchwafel/Project/test.py deleted file mode 100644 index ea15c3a0..00000000 --- a/Students/SSchwafel/Project/test.py +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/python - -from __future__ import unicode_literals -from pprint import pprint -import urllib2 -import simplejson as json - -url = json.load(urllib2.urlopen('https://congress.api.sunlightfoundation.com/votes?fields=voters&apikey=15f4679bdc124cd6a2c6be8666253000')) -pprint(url) diff --git a/Students/SSchwafel/session01/break_me.py b/Students/SSchwafel/session01/break_me.py deleted file mode 100644 index 67a71dd1..00000000 --- a/Students/SSchwafel/session01/break_me.py +++ /dev/null @@ -1,20 +0,0 @@ -#!/usr/bin/python - -#Name Error - -#print cat - -#TypeError - -#a = 'one' -#print 1 + a - -#SyntaxError (should have :) - -#def broken() - -#AttributeError - -#a = 1 -#print a.upper() - diff --git a/Students/SSchwafel/session01/google_DAT.py b/Students/SSchwafel/session01/google_DAT.py deleted file mode 100755 index 0be7025e..00000000 --- a/Students/SSchwafel/session01/google_DAT.py +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/python - -import webbrowser -from urllib import quote - -a = raw_input('What are you tryna learn about? ') - -basic_google = 'http://www.google.com/?#q=' -google_plus_query = basic_google + quote(a) -webbrowser.open(google_plus_query, autoraise=True) - diff --git a/Students/SSchwafel/session01/grid.py b/Students/SSchwafel/session01/grid.py deleted file mode 100755 index 5b2a803e..00000000 --- a/Students/SSchwafel/session01/grid.py +++ /dev/null @@ -1,81 +0,0 @@ -#!/usr/bin/python - - - -#characters_wide_tall = input('How many characters wide/tall do you want your box to be?: ') - -## -## This code Works! - Commented to debug -## -#def print_grid(box_dimensions): -# -# box_dimensions = int(box_dimensions) -# -# box_dimensions = (box_dimensions - 3)/2 -# -# print box_dimensions -# -# if box_dimensions % 2 == 0 and box_dimensions != 2: -# -# print '+ ','- ' * box_dimensions,'+ ','- ' * box_dimensions,'+' -# -# for i in range(box_dimensions): -# -# print '| ',' ' * box_dimensions,'| ',' ' * box_dimensions,'| ' -# -# print '+ ','- ' * box_dimensions,'+ ','- ' * box_dimensions,'+' -# -# for i in range(box_dimensions): -# -# print '| ',' ' * box_dimensions,'| ',' ' * box_dimensions,'| ' -# -# print '+ ','- ' * box_dimensions,'+ ','- ' * box_dimensions,'+' -# -# #return True -# -# else: -# -# print "That's an even number, but the box must have an odd-numbered dimension" -# -# return -# -# -# -# - -user_dimensions = raw_input("Please enter how many characters wide you'd like your 3x3 grid: ") - -def print_3x3_grid(box_dimensions): - - box_dimensions = int(user_dimensions) - - box_dimensions = box_dimensions - - print box_dimensions - - if box_dimensions % 3 == 0 and box_dimensions != 3: - - box_dimensions = (box_dimensions - 1) / 3 - - print '+ ','- ' * box_dimensions,'+ ','- ' * box_dimensions,'+','- ' * box_dimensions,'+' - - for i in range(box_dimensions): - - print '| ',' ' * box_dimensions,'| ',' ' * box_dimensions,'| ',' ' * box_dimensions,'| ' - - print '+ ','- ' * box_dimensions,'+ ','- ' * box_dimensions,'+','- ' * box_dimensions,'+' - - for i in range(box_dimensions): - - print '| ',' ' * box_dimensions,'| ',' ' * box_dimensions,'| ',' ' * box_dimensions,'| ' - - print '+ ','- ' * box_dimensions,'+ ','- ' * box_dimensions,'+','- ' * box_dimensions,'+' - - for i in range(box_dimensions): - - print '| ',' ' * box_dimensions,'| ',' ' * box_dimensions,'| ',' ' * box_dimensions,'| ' - - print '+ ','- ' * box_dimensions,'+ ','- ' * box_dimensions,'+','- ' * box_dimensions,'+' - -print_3x3_grid(user_dimensions) - diff --git a/Students/SSchwafel/session01/take_values_grid.py b/Students/SSchwafel/session01/take_values_grid.py deleted file mode 100755 index 03b30ab5..00000000 --- a/Students/SSchwafel/session01/take_values_grid.py +++ /dev/null @@ -1,30 +0,0 @@ -#!/usr/bin/python - - - - -#how_many_boxes_tall = raw_input("How many boxes tall do you want your grid? ") - -def print_grid(): - - width = raw_input("Please enter how many characters wide you'd like your boxes: ") - width = int(width) - - height = raw_input("Please enter how tall you'd like your boxes ") - height = int(height) - - how_many_boxes_wide = raw_input("How many boxes wide do you want your grid? ") - how_many_boxes_wide = int(how_many_boxes_wide) - - for i in range(how_many_boxes_wide): - - print '\n+ ','- ' * width,'+ ' - - for i in range(height): - - print '| ',' ' * width,'| ' - - print '+ ','- ' * width,'+ ' - -print_grid() - diff --git a/Students/SSchwafel/session01/workinprogress_grid.py b/Students/SSchwafel/session01/workinprogress_grid.py deleted file mode 100755 index 6335353c..00000000 --- a/Students/SSchwafel/session01/workinprogress_grid.py +++ /dev/null @@ -1,74 +0,0 @@ -#!/usr/bin/python - - - -#characters_wide_tall = input('How many characters wide/tall do you want your box to be?: ') - -## -## This code Works! - Commented to debug -## -#def print_grid(box_dimensions): -# -# box_dimensions = int(box_dimensions) -# -# box_dimensions = (box_dimensions - 3)/2 -# -# print box_dimensions -# -# if box_dimensions % 2 == 0 and box_dimensions != 2: -# -# print '+ ','- ' * box_dimensions,'+ ','- ' * box_dimensions,'+' -# -# for i in range(box_dimensions): -# -# print '| ',' ' * box_dimensions,'| ',' ' * box_dimensions,'| ' -# -# print '+ ','- ' * box_dimensions,'+ ','- ' * box_dimensions,'+' -# -# for i in range(box_dimensions): -# -# print '| ',' ' * box_dimensions,'| ',' ' * box_dimensions,'| ' -# -# print '+ ','- ' * box_dimensions,'+ ','- ' * box_dimensions,'+' -# -# #return True -# -# else: -# -# print "That's an even number, but the box must have an odd-numbered dimension" -# -# return -# -# -# -# - -how_many_boxes = input("Please enter how many boxes wide you'd like your grid: ") - -def print_3x3_grid(how_many_boxes): - - how_many_boxes = int(how_many_boxes) - - for i in range(how_many_boxes): - - print '+ ', - print '- ', - print '- ', - print '- ', - print '- ', - print '- ', - print '+' - - - for i in range(5): - print '| ',' ' * 7 ,'|' - - print '+ ', - print '- ', - print '- ', - print '- ', - print '- ', - print '- ', - print '+' - -print_3x3_grid(how_many_boxes) diff --git a/Students/SSchwafel/session02/ack.py b/Students/SSchwafel/session02/ack.py deleted file mode 100644 index 3aa5f49e..00000000 --- a/Students/SSchwafel/session02/ack.py +++ /dev/null @@ -1,78 +0,0 @@ -#!/usr/bin/python - - - -print """ - -This program performs Ackermann's Function, as defined by: - -A(m,n) = - - n+1 if m = 0 - - A(m-1) if m > 0 and n = 0 - - A(m-1, A(m, n-1)) if m > 0 and n > 0 - - - """ - -m = raw_input("Please provide a value for m: ") -n = raw_input("Please provide a value for n: ") - -m = int(m) -n = int(n) - -print "m = " + str(m) -print "n = " + str(n) - -def is_negative(x): -"""This function checks to make sure that values are positive""" - if x < 0: - - x = raw_input("Ackermann's function is not defined for values less than 0. Please start over with a value that is greater than 0. \n\nExiting.\n") - - exit() - -is_negative(m) -is_negative(n) - - -def ackermann(x,y): -"""Performs Ackermann's function on values x = m, y = n""" - #x = m - #y = n - - #while y > -1: - - if x == 0: - - return y+1 - - elif x > 0 and y == 0: - - return ackermann(x - 1, 1) - - elif x > 0 and y > 0: - return ackermann(x - 1 , ackermann(x, y - 1)) - -print ackermann(m,n) - - - # - # This is where I am going to put my tests and asserts - -if __name__ == "__main__": - - assert ackermann(0,0) == 1 - assert ackermann(0,1) == 2 - assert ackermann(0,2) == 3 - assert ackermann(0,3) == 4 - assert ackermann(1,0) == 2 - assert ackermann(2,0) == 3 - assert ackermann(2,4) == 11 - assert ackermann(3,4) == 125 - print "\nAll Tests Pass!\n" - # # - # # - diff --git a/Students/SSchwafel/session02/ack.pyc b/Students/SSchwafel/session02/ack.pyc deleted file mode 100644 index 6475f647..00000000 Binary files a/Students/SSchwafel/session02/ack.pyc and /dev/null differ diff --git a/Students/SSchwafel/session02/series.py b/Students/SSchwafel/session02/series.py deleted file mode 100755 index 16994c5a..00000000 --- a/Students/SSchwafel/session02/series.py +++ /dev/null @@ -1,91 +0,0 @@ -#!/usr/bin/python - - -user_number = raw_input('Which term do you want from the Fibonacci or Lucas sequence?\n\n(be sure to ask for 0 if you want the first term from the sequence)\n\n') - -user_number = int(user_number) -print - -def fibonacci(n): - """Return the nth value of the Fibonacci sequence of numbers""" - - if n == 0: - return 0 - - elif n == 1: - return 1 - - else: - return fibonacci(n-1) + fibonacci(n-2) - -def lucas(n): - """Return the nth value of the Lucas sequence of numbers""" - - if n == 0: - return 2 - - elif n == 1: - return 1 - - elif n > 1: - return lucas(n-1) + lucas(n-2) - -#print lucas(user_number) -#print fibonacci(user_number) - -def sum_series(n, optional1 = 0, optional2 = 1): - """This function takes one required argument and two optional ones. - - If the optional arguments are 2,1, return nth Lucas number, otherwise, return nth Fibonacci number. If other arguments are given, return none until other series can be programmed. - """ - - if optional1 == 0 and optional2 == 1: - return fibonacci(n) - elif optional1 == 2 and optional2 == 1: - return lucas(n) - else: - if optional1 > 0 and optional1 != 1 or 2: - return sum_series(n-1) + sum_series(n-2) - - - #"It looks like you want a different series" - - -#Return Lucas value of user_number -print 'This is the Lucas number corresponding to the term you gave\n' -print sum_series(user_number,2,1) -print -print 'This is the Fibonacci number corresponding to the term you gave\n' -print sum_series(user_number,0,1) -print -starting_value_1 = int(raw_input('What is the first starting value would you like in your series? ')) -starting_value_2 = int(raw_input('What is the second starting value would you like in your series? ')) - -print sum_series(user_number,starting_value_1,starting_value_2) - -if __name__ == "__main__": - - #check to see if the Fibonacci numbers returned match the first 4 known values - assert fibonacci(0) == 0 - assert fibonacci(1) == 1 - assert fibonacci(3) == 2 - assert fibonacci(5) == 5 - - #check to see if the Lucas numbers returned match the first few known values (and the 6th for good measure) - - assert lucas(0) == 2 - assert lucas(1) == 1 - assert lucas(3) == 4 - assert lucas(5) == 11 - - #make sure that the sum_series function performs Fibonacci as expected, and Lucas as expected when given the necessary arguments - - assert sum_series(0) == 0 - assert sum_series(0,0,1) == 0 - assert sum_series(5,0,1) == 5 - assert sum_series(1,2,1) == 1 - assert sum_series(5,2,1) == 11 - assert sum_series(0) == 0 - - - print "\nAll Tests Pass!\n" diff --git a/Students/SSchwafel/session03/list_lab.py b/Students/SSchwafel/session03/list_lab.py deleted file mode 100644 index e14b9534..00000000 --- a/Students/SSchwafel/session03/list_lab.py +++ /dev/null @@ -1,34 +0,0 @@ -#!/usr/bin/python - -fruit_list = ['apples','pears','oranges','peaches'] - -print fruit_list - -add_fruit = str(raw_input("Give me another fruit to add! ")) - -fruit_list.append(add_fruit) - -print fruit_list - -user_index = int(raw_input("Give me an int and I'll give you the corresponding fruit! ")) - -print "You entered: " + str(user_index) - -user_index = user_index-1 - -print fruit_list[user_index] - -another_fruit = [raw_input("Gimme another fruit! ")] - -fruit_list = another_fruit + fruit_list - -print 'OK, I added it\n' - -yet_another_fruit = raw_input('Give me one last fruit! ') - -fruit_list.insert(0,yet_another_fruit) - -###FINISH THIS LAST THING -print fruit_list.sort(P) - - diff --git a/Students/SSchwafel/session03/mailroom.py b/Students/SSchwafel/session03/mailroom.py deleted file mode 100644 index 714ea675..00000000 --- a/Students/SSchwafel/session03/mailroom.py +++ /dev/null @@ -1,177 +0,0 @@ -#!/usr/bin/python - - -donors = [('bruce wayne',[100000]), ('clark kent',[50000]), ('barry allen',[100]), ('diana prince',[1300]), ('wally west',[10034]),('hal jordan',[10000])] - -def send_a_thank_you(x): - - """Displays a list of all the donations a user has contributed""" - - full_name = '' - - while full_name.isdigit() == False : - - full_name = raw_input("Please enter the full name of your donor (you can type 'back' to return to the previous prompt):\n\n") - full_name = full_name.lower() - - if is_name_present(full_name, donors) == True: - - print 'It looks like in the past, ' + full_name.title() + ' donated: $' + str(donation_amount(full_name,donors)).strip("[]") - - query_new_donation = raw_input('Would you like to add a new donation for this donor? \n\n(yes/no)\n\n') - - if query_new_donation.lower() == 'yes': - - add_donation(full_name, donors) - - #print donors - - elif query_new_donation.lower() == 'no': - - a = raw_input('Would you like to send a Thank You note?\n\n(yes/no)\n\n') - - if a.lower() == 'yes': - - print send_email(full_name) - #break - - elif full_name == 'list': - print donors - - elif full_name == '': - print 'It looks like you entered an empty value' - elif full_name == 'back': - break - else: - - print "\n(You can enter 'back' to return to the previous prompt)\n" - - query_add_donor = raw_input("It doesn't look like that donor exists in the database yet, would you like to add this person? \n\n(yes/no)\n\n") - - if query_add_donor.lower() == 'yes': - donors.append(add_donor(full_name)) - break - - elif query_add_donor.lower() == 'no': - break - else: - break - - -def create_a_report(): - - temp_list = [] - - sorted_donors = sorted(donors, key=lambda tup: tup[1]) - - print '\n{:<12}{:^12}{:>12}'.format('Donor Name','Donations','Total Donations') - - for i in sorted_donors: - - total_amount_of_donations = (sum(i[1])/len(i[1])) - - temp_list.append((i[0],len(i[1]),i[1])) - - print '\n{:<12}{:^12}{:>12}'.format(i[0],len(i[1]),i[1]) - -def add_donor(x): - """Prompts for donor's name, the initial donation amount, then adds them as (x,[y])""" - #donor_name = raw_input("Please enter the donor's full name ") - donor_name = x - donor_name = donor_name.lower() - - new_donor_initial_donation = raw_input("What was this donor's initial contribution? ") - new_donor_initial_donation = int(new_donor_initial_donation) - - return (donor_name,[new_donor_initial_donation]) - -def is_name_present(x,y): - """Checks to see if x is present in y. Must iterate to check nested tuples""" - for i in y: - - if x == i[0]: - return True - - return False - -def donation_amount(x,y): - """Queries donation amount for donor x""" - #x = full_name - #y = donors - - for i in y: - - if x == i[0]: - return i[1] - -def add_donation(x, y): - """Adds donation to nested list associated with donor""" - - new_donation = raw_input("What is the latest donation amount from this donor? ") - - if new_donation.isdigit() == False: - return 'Please try again with an int' - - new_donation = int(new_donation) - - for i in y: - - for item in i: - if x == item: - print '\n\n' + "Adding a donation of " + str(new_donation) + " to the record for " + str(x).title() + '\n\n' - i[1].append(new_donation) - print i - #if x == i[0]: - # return i[1].append(new_donation) - return - -def send_email(x): - """Sends prints a message to standard out thanking the user for their donation and summing their donation history. """ - #x = the list element of our donor - - donation = donation_amount(x, donors) - - return "\n\n\nHello %s,\n\nIt looks like in the past you donated $%i to our organization!\n\nThank you for your contribution, it's people like you who are making a difference.\n\nThank You,\n\nSchuyler INC. Staff\n\n\n" %(x.title(), int(sum(donation))) - -count = 1 -while count > 0: - #count must be present so list will run until it breaks - user_input = raw_input( - - -"""Welcome to the Schuyler Inc. Mail Room App - -What would you like to do? - -(A) Send a Thank You - -or - -(B) Create a Report - -(C) Exit the Mail Room App - -""") - - if user_input.upper() == 'A': - - print send_a_thank_you(donors) - #donors.append(add_donor()) - print donors - - elif user_input.upper() == 'B': - - print create_a_report() - - # print 'I'm going to fix this later' - - elif user_input.upper() == 'BB': - - full_name = raw_input("Please enter the full name of your donor (enter back to return to previous prompt):\n\n") - add_donation(full_name, donors) - - - elif user_input.upper() == 'C' or 'Q': - - print 'Exiting...' - break diff --git a/Students/SSchwafel/session03/rot13.py b/Students/SSchwafel/session03/rot13.py deleted file mode 100644 index e1d525e7..00000000 --- a/Students/SSchwafel/session03/rot13.py +++ /dev/null @@ -1,38 +0,0 @@ -#!/usr/bin/python -user_string = raw_input("Please enter the string you'd like to encrypt/decrypt with Rot13 ") - - -#Take a user string - -def rot13(x): - """Takes a letter and moves forward 13 characters""" - - x = int(ord(x)) - - if x < 65: - return chr(x) - #return '' - - elif x >= 65 and x<=90: - - x = x + 13 - - if x > 90: - x = x - 26 - return chr(x) - - elif x >= 97 and x <= 122: - x = x + 13 - if x > 122: - x = x - 26 - - return chr(x) - - #x = (x - 122) + 97 - - -user_string = list( user_string ) - -user_string = ''.join(rot13(x) for x in user_string) - -print user_string diff --git a/Students/SSchwafel/session03/slicing_lab.py b/Students/SSchwafel/session03/slicing_lab.py deleted file mode 100644 index 6b3c27f8..00000000 --- a/Students/SSchwafel/session03/slicing_lab.py +++ /dev/null @@ -1,55 +0,0 @@ -#!/usr/bin/python - -user_string = raw_input("Hey, gimme a string\t ") - - -def switch_first_last(x): - - """Return a string with the first and last letters exchanged""" - - first = x[0] - last = x[-1] - - return str(last) + str(x[1:-2]) + str(first) - -#print switch_first_last(user_string) - -def remove_every_other(x): - - """return a string with every other character removed""" - return x[::2] - -#print remove_every_other(user_string) - -def remove_firstlastfour(x): - - """Return a string with the first and last 4 characters removed, and every other char in between -""" - - x = x[4:-4] - length = len(x) - - return x[0:length:2] - -#print remove_firstlastfour(user_string) - -def reverse_string(x): - - """return a string reversed (just with slicing) -""" - - return x[::-1] - -def return_middle_last_third(x): - - divisor = len(x)/3 - - first_third = x[0:divisor] - - middle_third = x[divisor:divisor+divisor] - - final_third = x[-divisor:] - print middle_third + final_third + first_third - - -print return_middle_last_third(user_string) diff --git a/Students/SSchwafel/session04/all_languages.py b/Students/SSchwafel/session04/all_languages.py deleted file mode 100644 index dc6b865b..00000000 --- a/Students/SSchwafel/session04/all_languages.py +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/python - -file = open('students.txt').readlines() -students_language = file - -#students_language = students_language.split() - -for i in students_language: - - -print students_language - diff --git a/Students/SSchwafel/session04/copy.py b/Students/SSchwafel/session04/copy.py deleted file mode 100644 index d0630820..00000000 --- a/Students/SSchwafel/session04/copy.py +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/python - -import os - -dir = os.getcwd() -print dir - -infile = open('testfile.txt') -infile_data = infile.read() - -outfile = open('test_outfile.txt', 'w') - -outfile.write(infile_data) -infile.close() -outfile.close() - diff --git a/Students/SSchwafel/session04/dictionarylab.py b/Students/SSchwafel/session04/dictionarylab.py deleted file mode 100644 index 85ffdb77..00000000 --- a/Students/SSchwafel/session04/dictionarylab.py +++ /dev/null @@ -1,109 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -#Create a dictionary containing “name”, “city”, and “cake” for “Chris” from “Seattle” who likes “Chocolate”. -dictionary = {} - -dictionary['name'] = 'Chris' -dictionary['city'] = 'Seattle' -dictionary['cake'] = 'chocolate' - -#Display the dictionary. -print dictionary - -#Delete the entry for “cake”. -del dictionary['cake'] - -#Display the dictionary. -print dictionary -#Add an entry for “fruit” with “Mango” and display the dictionary. - -dictionary['fruit'] = 'mango' -print dictionary - -#Display the dictionary keys. -print dictionary.keys() - -#Display the dictionary values. -print dictionary.values() - -#Display whether or not “cake” is a key in the dictionary (i.e. False). -print 'cake' in dictionary -#Display whether or not “Mango” is a value in the dictionary (i.e. True). -print 'mango' in dictionary -#Using the dict constructor and zip, build a dictionary of numbers from zero to fifteen and the hexadecimal equivalent (string is fine). -numbers = range(15) -#numbers = dict(numbers) -hexnumbers = [] - -for i in numbers: - - hexnumbers.append(hex(i)) - -zipped_dict = zip(numbers, hexnumbers) - -print zipped_dict - -#Using the dictionary from item 1: Make a dictionary using the same keys but with the number of ‘t’s in each value. -dictionary_values = dictionary.values() -dictionary_values = str(", ".join(dictionary_values)) -dictionary_values = dictionary_values.lower() - -print "\nThere are %i %s's in this dictionary:\n" % (dictionary_values.count('t'),'t') - -for i in dictionary: - print dictionary[i] - dictionary[i] = dictionary[i].count('t') - -print dictionary.values() -#Create sets s2, s3 and s4 that contain numbers from zero through twenty, divisible 2, 3 and 4. - -s2 = set(range(21)) -s2_copy = s2.copy() - -s3 = set(range(21)) -s3_copy = s3.copy() - -s4 = set(range(21)) -s4_copy = s4.copy() - -#Remove those in s2 not divisible by 2 -for i in s2_copy: - if i % 2 != 0 or i == 0: - s2.remove(i) - -#Remove those in s3 not divisible by 3 -for i in s3_copy: - if i % 3 != 0 or i == 0: - s3.remove(i) - - -#Remove those in s4 not divisible by 4 -for i in s4_copy: - if i % 4 != 0 or i == 0: - s4.remove(i) - -#Display the sets. - -print s2 -print s3 -print s4 - -#Display if s3 is a subset of s2 (False) -print s3.issubset(s2) - -#and if s4 is a subset of s2 (True). -print s4.issubset(s2) - - -#Create a set with the letters in ‘Python’ and add ‘i’ to the set. -p = set('Python') -p.add('i') - -print p - -#Create a frozenset with the letters in ‘marathon’ -m = frozenset('marathon') -print m -#display the union and intersection of the two sets. -print p.union(m) -print p.intersection(m) diff --git a/Students/SSchwafel/session04/kata14.py b/Students/SSchwafel/session04/kata14.py deleted file mode 100644 index 03af9566..00000000 --- a/Students/SSchwafel/session04/kata14.py +++ /dev/null @@ -1,80 +0,0 @@ -#!/usr/bin/python -import random - -#Open the text file for Sherlock Homes - -book_file = open('sherlock_small.txt') -text_doc = book_file.read() -book_file.close() - -#Divide text_doc into a list - -text_doc = text_doc.replace('--',' ') - -text_doc = text_doc.replace('.','') -text_doc = text_doc.replace(',','') -text_doc = text_doc.lower() - -text_doc = list(text_doc.split()) - -#print text_doc - -new_text = [] - -dict_words = {} - - -#for i in text_doc: -def take_first_three_values(x): - """Takes first three values from text document, turns val.1 into key, second two into a list of items""" - #grabs first value from text doc, removes it - - word1 = x.pop(0) - - word2 = x[0] - - word3 = x[1] - - #add a dictionary entry for the first three values - - dict_words.setdefault(' '.join((word1, word2)), []).append(word3) - -while len(text_doc) > 0: - - try: - take_first_three_values(text_doc) - - except IndexError: - break - -key = random.choice(dict_words.keys()) -print '\n' -print key.capitalize(), -new_text.extend(key.split()) - - -for i in range(200): - try: - - next_word = random.choice(dict_words[key]) - print next_word, - new_text.append(next_word) - key = ' '.join(new_text[-2:]) - - except KeyError: - continue - -#new_text.append(str(dict_words[starting_point])) -#new_text.append(str(starting_point.split()[1])) -#next_word = random.choice(dict_words[starting_point]) -# -##print new_text -#print ' '.join(map(str, new_text)) -# -#print dict_words[starting_point] -# -# -#for i in dict_words.keys(): -# print '\n' -# print i -# print dict_words[i] diff --git a/Students/SSchwafel/session04/mailroom_dict.py b/Students/SSchwafel/session04/mailroom_dict.py deleted file mode 100644 index df98d394..00000000 --- a/Students/SSchwafel/session04/mailroom_dict.py +++ /dev/null @@ -1,196 +0,0 @@ -#!/usr/bin/python - -donors = { -'bruce wayne':[100000], -'clark kent':[50000], -'barry allen':[100], -'diana prince':[1300], -'wally west':[10034], -'hal jordan':[10000] -} - - -def send_a_thank_you(x): - - """Displays a list of all the donations a user has contributed""" - - full_name = '' - - while True: - - full_name = raw_input("Please enter the full name of your donor (you can type 'back' to return to the previous prompt):\n\n") - full_name = full_name.lower() - - - if is_name_present(full_name) == True: - - print 'It looks like in the past, ' + full_name.title() + ' donated: $' + str(donors[full_name]).strip("[]") - - query_new_donation = raw_input('Would you like to add a new donation for this donor? \n\n(yes/no)\n\n') - - if query_new_donation.lower() == 'yes': - - add_donation(full_name) - - elif query_new_donation.lower() == 'no': - - a = raw_input('Would you like to send a Thank You note?\n\n(yes/no)\n\n') - - if a.lower() == 'yes': - - print send_email(full_name) - break - - elif full_name == 'list': - print donors - - elif full_name == '': - print 'It looks like you entered an empty value' - elif full_name == 'back': - break - else: - - print "\n(You can enter 'back' to return to the previous prompt)\n" - - query_add_donor = raw_input("It doesn't look like that donor exists in the database yet, would you like to add this person? \n\n(yes/no)\n\n") - - if query_add_donor.lower() == 'yes': - - add_donor(full_name) - - elif query_add_donor.lower() == 'no': - break - else: - break - -def create_a_report(): - """Creates a structured output of all donors and donations""" - sorted_donors = [] - temp_list = [] - - for i in donors: - - each_index = (i,donors[i]) - temp_list.append(each_index) - - sorted_donors = sorted(temp_list, key=lambda tup: tup[1]) - - print '\n{:<12}{:^12}{:>12}'.format('Donor Name','Donations','Total Donations') - - for i in sorted_donors: - - total_amount_of_donations = (sum(i[1])/len(i[1])) - - temp_list.append((i[0],len(i[1]),i[1])) - - print '\n{:<12}{:^12}{:>12}'.format(i[0],len(i[1]),sum(i[1])) - -def add_donor(x): - """Prompts for donor's name, the initial donation amount, then adds them as (x,[y])""" - donor_name = x - donor_name = donor_name.lower() - - new_donor_initial_donation = raw_input("What was this donor's initial contribution? ") - - try: - new_donor_initial_donation = int(new_donor_initial_donation) - donors[x] = [new_donor_initial_donation] - - except ValueError: - print "\nPlease try again with an int." - -def is_name_present(x): - """Checks to see if x is present in y. Must iterate to check nested tuples""" - if x in donors.keys(): - return True - else: - - return False - -def donation_amount(x): - """Queries donation amount for donor x""" - #x = full_name - #y = donors - - return donors[x] -def add_donation(x): - """Adds donation to list associated with donor""" - - new_donation = raw_input("What is the latest donation amount from this donor? ") - - try: - - new_donation = int(new_donation) - - donors[x].append(new_donation) - print donors[x] - - except ValueError: - print "\nPlease try again with an int." - - -# for i in y: -# -# for item in i: -# if x == item: -# print '\n\n' + "Adding a donation of " + str(new_donation) + " to the record for " + str(x).title() + '\n\n' -# i[1].append(new_donation) -# print i -# #if x == i[0]: -# # return i[1].append(new_donation) - return - -def send_email(x): - """Sends prints a message to standard out thanking the user for their donation and summing their donation history. """ - #x = the list element of our donor - - donation = donation_amount(x) - - return "\n\n\nHello %s,\n\nIt looks like in the past you donated $%i to our organization!\n\nThank you for your contribution, it's people like you who are making a difference.\n\nThank You,\n\nSchuyler INC. Staff\n\n\n" %(x.title(), int(sum(donors[x]))) - - -count = 1 -while count > 0: - #count must be present so list will run until it breaks - user_input = raw_input( - - -"""Welcome to the Schuyler Inc. Mail Room App - -What would you like to do? - -(A) Send a Thank You - -or - -(B) Create a Report - -(C) Print a letter for everyone in the database - -(D) Exit the Mail Room App - -""") - - if user_input.upper() == 'A': - - print send_a_thank_you(donors) - print donors - - elif user_input.upper() == 'B': - - print create_a_report() - - elif user_input.upper() == 'C': - - for i in donors: - - outfile = open('%s.txt'%i.replace(' ',''),'w' ) - - print i - - outfile.write(send_email(i)) - - elif user_input.upper() == 'D' or 'Q': - - print 'Exiting...' - break diff --git a/Students/SSchwafel/session04/printfullpaths.py b/Students/SSchwafel/session04/printfullpaths.py deleted file mode 100644 index 6065e85f..00000000 --- a/Students/SSchwafel/session04/printfullpaths.py +++ /dev/null @@ -1,9 +0,0 @@ -#/usr/bin/python -import os - -dir = os.getcwd() - -print os.listdir(dir) - -for i in os.listdir(dir): - print os.path.abspath(i) diff --git a/Students/SSchwafel/session05/codingbat_lab.py b/Students/SSchwafel/session05/codingbat_lab.py deleted file mode 100644 index b48a4e09..00000000 --- a/Students/SSchwafel/session05/codingbat_lab.py +++ /dev/null @@ -1,38 +0,0 @@ -#!/usr/bin/python - -#Monkey Trouble - -#x = raw_input("Please enter a boolean value: ").title() -#y = raw_input("Please enter another boolean value: ").title() - -x = "True" -y = "False" - -def monkey_trouble(a_smile, b_smile): - if a_smile == 'True' and b_smile == 'True': - - return True - - elif a_smile == 'False' and b_smile == 'True': - - return False - - elif a_smile == 'True' and b_smile == 'False': - - return False - - elif a_smile == 'False' and b_smile == 'False': - - return True - - else: - - return True - -print "Are we in trouble? " - -print monkey_trouble(x,y) - - - - diff --git a/Students/SSchwafel/session05/count_evens.py b/Students/SSchwafel/session05/count_evens.py deleted file mode 100644 index 539b34f0..00000000 --- a/Students/SSchwafel/session05/count_evens.py +++ /dev/null @@ -1,8 +0,0 @@ -#!/usr/bin/python - -def count_evens(nums): - - test = [i for i in nums if i % 2 == 0 and i > 0] - return len(test) - -print count_evens(range(20)) diff --git a/Students/SSchwafel/session05/dicts_and_strings_2.py b/Students/SSchwafel/session05/dicts_and_strings_2.py deleted file mode 100644 index 4d26cd4d..00000000 --- a/Students/SSchwafel/session05/dicts_and_strings_2.py +++ /dev/null @@ -1,51 +0,0 @@ -#!/usr/bin/python - -food_prefs = {"name": u"Chris", - u"city": u"Seattle", - u"cake": u"chocolate", - u"fruit": u"mango", - u"salad": u"greek", - u"pasta": u"lasagna"} - -#Print the dict by passing it to a string format method -print [i.upper() for i in food_prefs] - -#Using a list comprehension, build a dictionary of numbers from zero to fifteen and the hexadecimal equivalent (string is fine). -print "This uses a list \n" -print [(i, hex(i)) for i in range(16)] - -#Same thing but with dict. comp -print "This one uses a dict \n" -print [{i : hex(i)} for i in range(16)] - -#copy list -food_prefs_count_a = food_prefs - -#Number of A's in each value -food_prefs_count_a = [{i: i.count('a')} for i in food_prefs] - -print food_prefs_count_a - -#Create sets that contain numbers 0 - 20 divisible by 2,3,4 -s2 = set([i for i in range(21) if i % 2 == 0]) -print s2 - -s3 = set([i for i in range(21) if i % 3 == 0]) -print s3 - -s4 = set([i for i in range(21) if i % 4 == 0]) -print s4 - - -sets = [] - -def set_divisibility_generator(number): - - [sets.append(i) for i in range(21) if i % number == 0] - - print sets - -while True: - - x = int(raw_input('What numbers would you like 20 to be divided by? ')) - set_divisibility_generator(x) diff --git a/Students/SSchwafel/session05/keywordsargs_lab.py b/Students/SSchwafel/session05/keywordsargs_lab.py deleted file mode 100644 index 4de6636c..00000000 --- a/Students/SSchwafel/session05/keywordsargs_lab.py +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/python - -def colors(x='green',y='red',z='perrywinkle',n='yellow'): - print x + ' ' + y + ' '+ z + ' ' + n - -colors() -colors('banana','catfish','bogwater','blue') - -color_list = {'x':'green','y':'red','z':'perrywinkle','n':'yellow'} - -colors(**color_list) -color_list = ['green','red','perrywinkle','yellow'] -colors(*color_list) - diff --git a/Students/SSchwafel/session05/list_comprehensions.py b/Students/SSchwafel/session05/list_comprehensions.py deleted file mode 100644 index b77f68ec..00000000 --- a/Students/SSchwafel/session05/list_comprehensions.py +++ /dev/null @@ -1,54 +0,0 @@ -#!/usr/bin/python -# -feast = ['lambs', 'sloths', 'orangutans', 'breakfast cereals', 'fruit bats'] -comprehension = [delicacy.capitalize() for delicacy in feast] -#Capitalizes each entry -#print comprehension[0] -#print comprehension[1] - -feast = ['spam', 'sloths', 'orangutans', 'breakfast cereals', 'fruit bats'] -# -#comprehension = [delicacy for delicacy in feast if len(delicacy) > 6] -#Returns every entry >6 chars. -#print len(feast) -#print len(comprehension) -#len(feast) -# -#len(comprehension) -# -list_of_tuples = [(1, 'lumberjack'), (2, 'inquisition'), (4, 'spam')] -# -comprehension = [ skit * number for number, skit in list_of_tuples ] -# -print comprehension[0] -# -print len(comprehension[2]) -# -#list_of_eggs = ['poached egg', 'fried egg'] -# -#list_of_meats = ['lite spam', 'ham spam', 'fried spam'] -# -#comprehension = [ '{0} and {1}'.format(egg, meat) for egg in list_of_eggs for meat in list_of_meats] -# -#len(comprehension) -# -#comprehension[0] -# -#comprehension = { x for x in 'aabbbcccc'} -# -#comprehension -# -#dict_of_weapons = {'first': 'fear', -# 'second': 'surprise', -# 'third':'ruthless efficiency', -# 'forth':'fanatical devotion', -# 'fifth': None} -# -#'first' in dict_comprehension -# -#'FIRST' in dict_comprehension -# -#len(dict_of_weapons) -# -#len(dict_comprehension) -# diff --git a/Students/SSchwafel/session05/mailroom_list_comprehensions.py b/Students/SSchwafel/session05/mailroom_list_comprehensions.py deleted file mode 100644 index 7f38721c..00000000 --- a/Students/SSchwafel/session05/mailroom_list_comprehensions.py +++ /dev/null @@ -1,197 +0,0 @@ -#!/usr/bin/python - -donors = { -'bruce wayne':[100000], -'clark kent':[50000], -'barry allen':[100], -'diana prince':[1300], -'wally west':[10034], -'hal jordan':[10000] -} - - -def send_a_thank_you(x): - - """Displays a list of all the donations a user has contributed""" - - full_name = '' - - while True: - - full_name = raw_input("Please enter the full name of your donor (you can type 'back' to return to the previous prompt):\n\n") - full_name = full_name.lower() - - - if is_name_present(full_name) == True: - - print 'It looks like in the past, ' + full_name.title() + ' donated: $' + str(donors[full_name]).strip("[]") - - query_new_donation = raw_input('Would you like to add a new donation for this donor? \n\n(yes/no)\n\n') - - if query_new_donation.lower() == 'yes': - - add_donation(full_name) - - elif query_new_donation.lower() == 'no': - - a = raw_input('Would you like to send a Thank You note?\n\n(yes/no)\n\n') - - if a.lower() == 'yes': - - print send_email(full_name) - break - - elif full_name == 'list': - print donors - - elif full_name == '': - print 'It looks like you entered an empty value' - elif full_name == 'back': - break - else: - - print "\n(You can enter 'back' to return to the previous prompt)\n" - - query_add_donor = raw_input("It doesn't look like that donor exists in the database yet, would you like to add this person? \n\n(yes/no)\n\n") - - if query_add_donor.lower() == 'yes': - - add_donor(full_name) - - elif query_add_donor.lower() == 'no': - break - else: - break - -def create_a_report(): - """Creates a structured output of all donors and donations""" - sorted_donors = [] - temp_list = [] - - for i in donors: - - each_index = (i,donors[i]) - temp_list.append(each_index) - - sorted_donors = sorted(temp_list, key=lambda tup: tup[1]) - - print '\n{:<12}{:^12}{:>12}'.format('Donor Name','Donations','Total Donations') - - for i in sorted_donors: - - total_amount_of_donations = (sum(i[1])/len(i[1])) - - temp_list.append((i[0],len(i[1]),i[1])) - - print '\n{:<12}{:^12}{:>12}'.format(i[0],len(i[1]),sum(i[1])) - -def add_donor(x): - """Prompts for donor's name, the initial donation amount, then adds them as (x,[y])""" - donor_name = x - donor_name = donor_name.lower() - - new_donor_initial_donation = raw_input("What was this donor's initial contribution? ") - - try: - new_donor_initial_donation = int(new_donor_initial_donation) - donors[x] = [new_donor_initial_donation] - - except ValueError: - print "\nPlease try again with an int." - -def is_name_present(x): - """Checks to see if x is present in y. Must iterate to check nested tuples""" - if x in donors.keys(): - return True - else: - - return False - -def donation_amount(x): - """Queries donation amount for donor x""" - #x = full_name - #y = donors - - return donors[x] -def add_donation(x): - """Adds donation to list associated with donor""" - - new_donation = raw_input("What is the latest donation amount from this donor? ") - - try: - - new_donation = int(new_donation) - - donors[x].append(new_donation) - print donors[x] - - except ValueError: - print "\nPlease try again with an int." - - -# for i in y: -# -# for item in i: -# if x == item: -# print '\n\n' + "Adding a donation of " + str(new_donation) + " to the record for " + str(x).title() + '\n\n' -# i[1].append(new_donation) -# print i -# #if x == i[0]: -# # return i[1].append(new_donation) - return - -def send_email(x): - """Sends prints a message to standard out thanking the user for their donation and summing their donation history. """ - #x = the list element of our donor - - donation = donation_amount(x) - - return "\n\n\nHello %s,\n\nIt looks like in the past you donated $%i to our organization!\n\nThank you for your contribution, it's people like you who are making a difference.\n\nThank You,\n\nSchuyler INC. Staff\n\n\n" %(x.title(), int(sum(donors[x]))) - -if __name__ == '__main__': - - count = 1 - while count > 0: - #count must be present so list will run until it breaks - user_input = raw_input( - - -"""Welcome to the Schuyler Inc. Mail Room App - -What would you like to do? - -(A) Send a Thank You - -or - -(B) Create a Report - -(C) Print a letter for everyone in the database - -(D) Exit the Mail Room App - -""") - - if user_input.upper() == 'A': - - print send_a_thank_you(donors) - print donors - - elif user_input.upper() == 'B': - - print create_a_report() - - elif user_input.upper() == 'C': - - for i in donors: - - outfile = open('%s.txt'%i.replace(' ',''),'w' ) - - print i - - outfile.write(send_email(i)) - - elif user_input.upper() == 'D' or 'Q': - - print 'Exiting...' - break diff --git a/Students/SSchwafel/session05/test_mailroom.py b/Students/SSchwafel/session05/test_mailroom.py deleted file mode 100644 index 2576f874..00000000 --- a/Students/SSchwafel/session05/test_mailroom.py +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/python - -from mailroom_list_comprehensions import * - -#dir(mailroom_list_comprehensions) - -def test(): - assert is_name_present('clark kent') == True - assert donation_amount('clark kent') == donors['clark kent'] - - #I can tell how to test the return values of functions, but I'm not sure how to write tests that do anything else... - #For example, most of my functions involve user input and not all return something. How would I test these? diff --git a/Students/SSchwafel/session05/test_monkeys.py b/Students/SSchwafel/session05/test_monkeys.py deleted file mode 100644 index 774ff780..00000000 --- a/Students/SSchwafel/session05/test_monkeys.py +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/python -from codingbat_lab import monkey_trouble - -def test_monkey_trouble(): - assert monkey_trouble('True', 'True') == True - assert monkey_trouble('True', 'False') == False - assert monkey_trouble('False', 'False') == True - assert monkey_trouble('False', 'True') == False - diff --git a/Students/SSchwafel/session06/classes_lab.py b/Students/SSchwafel/session06/classes_lab.py deleted file mode 100644 index 84c350ed..00000000 --- a/Students/SSchwafel/session06/classes_lab.py +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/python - - diff --git a/Students/SSchwafel/session06/functional_files.py b/Students/SSchwafel/session06/functional_files.py deleted file mode 100644 index d191b47a..00000000 --- a/Students/SSchwafel/session06/functional_files.py +++ /dev/null @@ -1,59 +0,0 @@ -#!/usr/bin/python - -import os -import sys - -filename = sys.argv[1:] - -def renamer(file_to_be_renamed): - - path = os.getcwd() - - files = os.listdir(path) - - if file_to_be_renamed in files: - - new_name = raw_input( "The current filename is {}, what would you like to call it instead? ".format(file_to_be_renamed)) - - os.rename(file_to_be_renamed, new_name) - - else: - print "It doesn't look like that file is present" - -map(renamer,filename) - - -###UNUSED CODE FROM BEFORE I READ THE ASSIGNMENT ALL THE WAY### - - -#print filename - -#path = os.getcwd() -# -#files = os.listdir(path) -# -#count = 1 -#file_dict = {} -#while count<=len(files): -# -# for i in files: -# file_dict[count] = i -# #print str(count) + ': '+ i -# count = count + 1 -# -#for key, value in file_dict.iteritems(): -# print key, value -# -#which_file = raw_input('\nWhich file would you like to rename? Please use the integer value. ') -# -#which_file = int(which_file) -# -#"print file_dict[which_file] -# -#file_to_be_renamed = file_dict[which_file] -# -#new_name = raw_input( "The current filename is {}, what would you like to call it instead? ".format(file_to_be_renamed)) -# -#os.rename(file_to_be_renamed, new_name) -# -# diff --git a/Students/SSchwafel/session06/html_render.py b/Students/SSchwafel/session06/html_render.py deleted file mode 100644 index 64023441..00000000 --- a/Students/SSchwafel/session06/html_render.py +++ /dev/null @@ -1,133 +0,0 @@ -#!/usr/bin/python - -class Element(object): - - #tag = 'html' - indent = ' ' - def __init__(self, content=None, **attributes): - - self.content = [] - - self.attributes = attributes - - if content is not None: - - self.content.append(content) - def append(self, content): - - self.content.append(content) - - def render_tag(self, current_ind): - - attrs = "".join([' {}={}'.format(key,val) for key, val in self.attributes.items()]) - - tag_str = "{}<{}{}>".format(current_ind,self.tag,attrs) - - return tag_str - - def render(self, file_out, current_ind=""): - - file_out.write(self.render_tag(current_ind)) - file_out.write('\n') - - for con in self.content: - try: - file_out.write(current_ind + self.indent + con + '\n') - - except TypeError: - con.render(file_out, current_ind + self.indent) - - file_out.write("{} \n".format(current_ind, self.tag)) - -class Html(Element): - tag = 'html' - def render(self, file_out,current_ind=""): - - file_out.write("\n") - Element.render(self,file_out, current_ind=current_ind) - -class Body(Element): - tag = 'body' - -class P(Element): - tag = 'p' - -class Head(Element): - tag = 'head' - -class OneLineTag(Element): - - def render(self, file_out, current_ind=""): - - file_out.write(self.render_tag(current_ind)) - - for con in self.content: - file_out.write(con) - - file_out.write(" \n".format(self.tag)) - -class Title(OneLineTag): - - tag = 'title' - -class SelfClosingTag(Element): - - def render_tag(self, current_ind): - - attrs = "".join([' {}={}'.format(key,val) for key, val in self.attributes.items()]) - - tag_str = "{}<{}{} />".format(current_ind,self.tag,attrs) - - return tag_str - - def render(self, file_out, current_ind=""): - - file_out.write(self.render_tag(current_ind)) - - for con in self.content: - try: - file_out.write(current_ind + self.indent + con) - - except TypeError: - con.render(file_out, current_ind + self.indent) - - #file_out.write("{} \n".format(current_ind, self.tag)) - file_out.write("\n") - - -class Hr(SelfClosingTag): - tag = 'hr' - -class Br(SelfClosingTag): - tag = 'br' - -class A(OneLineTag): - tag = 'a' - - def __init__(self, link, content=None, **attributes): - - OneLineTag.__init__(self, content, **attributes) - self.attributes["href"] = link - -class Ul(Element): - - tag = 'ul' - -class Li(Element): - - tag = 'li' - -class H(OneLineTag): - - tag = 'h' - - def __init__(self, level, content=None, **attributes): - - OneLineTag.__init__(self, content, **attributes) - self.tag = 'h{}'.format(level) - -class Meta(SelfClosingTag): - - tag = 'meta' - - diff --git a/Students/SSchwafel/session06/lambda_lab.py b/Students/SSchwafel/session06/lambda_lab.py deleted file mode 100644 index 1cbdff5a..00000000 --- a/Students/SSchwafel/session06/lambda_lab.py +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/python - -#list = [1,2,3] -# -#function = [lambda x: i += for i in list] -# -# -#print function[0](list[0]) -user_input = int(raw_input('Int: ')) -function = lambda x: x+x - -for i in user_input: - function(x) - -print function() diff --git a/Students/SSchwafel/session07/circle_class_lab.py b/Students/SSchwafel/session07/circle_class_lab.py deleted file mode 100644 index 904647e6..00000000 --- a/Students/SSchwafel/session07/circle_class_lab.py +++ /dev/null @@ -1,64 +0,0 @@ -#!/usr/bin/python -from math import pi - -class Circle(object): - def __init__(self, radius): - self.radius = float(radius) - - @classmethod - def from_diameter(cls, diameter): - - return cls(diameter/2.0) - - def __add__(self, other): - - return Circle(self.radius + other.radius) - - def __mul__(self, other): - try: - - return Circle(self.radius * other.radius) - except AttributeError: - - return Circle(self.radius * other) - - __rmul__ = __mul__ - - def __lt__(self, other): - - return self.radius < other.radius - - def __gt__(self, other): - - return self.radius > other.radius - - def __eq__(self, other): - - return self.radius == other.radius - - @property - def diameter(self): - return self.radius*2.0 - @diameter.setter - def diameter(self, value): - self.radius = value/2.0 - @property - def area(self): - return self.radius**2*pi - def __repr__(self): - return "Circle{}".format(self.radius) - -c = Circle(4) -c2 = Circle(5) - -print c.radius -print c.diameter -print c.area -#print c.__repr__ - -print c + c2 -print c2 * 2 -print 2 * c2 -print c2 < c2 - -print c2 * c2 diff --git a/Students/SSchwafel/session07/test_circles.py b/Students/SSchwafel/session07/test_circles.py deleted file mode 100644 index e6739acd..00000000 --- a/Students/SSchwafel/session07/test_circles.py +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/python - -from circle_class_lab import Circle - -def test_area(): - - circle1 = Circle(4) - circle2 = Circle(5) - - assert circle1.area < circle2.area - -def test_adding(): - - circle1 = Circle(4) - circle2 = Circle(5) - - assert circle1+circle2 == Circle(9) - - -def test_mul(): - - circle1 = Circle(4) - circle2 = Circle(5) - - assert circle1*circle2 == Circle(20) - #assert circle1*2 == Circle8 diff --git a/Students/SSchwafel/session08/callable_lab.py b/Students/SSchwafel/session08/callable_lab.py deleted file mode 100644 index d657a793..00000000 --- a/Students/SSchwafel/session08/callable_lab.py +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/python - -class Quadratic(object): - - def __init__(self, a, b,c): - - self.a = a - self.b = b - self.c = c - - def __call__(self,x): - self.x = x - - return self.a * self.x**2 + self.b * self.x + self.c - -my_quad = Quadratic(a=2, b=3, c=1) - -my_quad(0) diff --git a/Students/SSchwafel/session08/generator_lab.py b/Students/SSchwafel/session08/generator_lab.py deleted file mode 100644 index 699aab46..00000000 --- a/Students/SSchwafel/session08/generator_lab.py +++ /dev/null @@ -1,74 +0,0 @@ -#!/usr/bin/python - - -def sum_generator(number_range): - - counter = list(range(number_range)) - - new_value = 0 - i = new_value - - while i < number_range: - - try: - - item = counter.pop(0)+counter.pop(0) - yield item - counter.insert(0,item) - - except IndexError: - - break - - -sum_gen = sum_generator(10) -print next(sum_gen) -print next(sum_gen) -print next(sum_gen) -print next(sum_gen) -print next(sum_gen) -print next(sum_gen) - -def doubler(number_range): - i = 0 - while i= self.length: - raise IndexError("Sparse array index out of range") - - else: - - self.values.get(index, 0) - - def __len__(self): - return self.length - - def __setitem__(self, index, value): - - if index >= self.length: - raise IndexError("Sparse array index out of range") - else: - if value == 0: - self.values.pop(index, None) - else: - self.values[index] = value - def __delitem__(self, index): - - if index >= self.length: - raise IndexError("Sparse array index out of range") - else: - self.values.pop(index,None) - self.length -= 1 - - diff --git a/Students/SSchwafel/session09/context_manager_lab.py b/Students/SSchwafel/session09/context_manager_lab.py deleted file mode 100644 index 8c027240..00000000 --- a/Students/SSchwafel/session09/context_manager_lab.py +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/python - -class Timer(object): - - def __enter__(self): - print "In __enter__" - self.start = time.time() - return self - - def __exit__(self, err_type, err_val, err_trc): - - print "In __exit__" - self.elapsed = time.time() - self.start - print "Run took {} seconds".format(self.elapsed) - print err_type, err_val, err_trc diff --git a/Students/SSchwafel/session09/p_wrapper_lab.py b/Students/SSchwafel/session09/p_wrapper_lab.py deleted file mode 100644 index 26cb6b18..00000000 --- a/Students/SSchwafel/session09/p_wrapper_lab.py +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/python - -def p_wrapper_func(func, tag): - - def tagger(tag): - - tag_type = raw_input("Tag? ") - tag_type = tag_type.title() - - return tag_type - - def p_wrapper(*args, **kwargs): - tag_type = tag - user_input = func(*args, **kwargs) - #return "

    {}

    ".format(user_input) - return "<{}> {} ".format(tag, user_input, tag) - return p_wrapper - -@p_wrapper_func -def print_test_string(): - test_text = "this is a test string" - return test_text - -print print_test_string() diff --git a/Students/SSchwafel/session10/ICanEatGlass.utf81.txt b/Students/SSchwafel/session10/ICanEatGlass.utf81.txt deleted file mode 100644 index 49a44fd9..00000000 --- a/Students/SSchwafel/session10/ICanEatGlass.utf81.txt +++ /dev/null @@ -1,23 +0,0 @@ -I Can Eat Glass: - -And from the sublime to the ridiculous, here is a certain phrase in an assortment of languages: - -Sanskrit: काचं शक्नोम्यत्तुम् । नोपहिनस्ति माम् ॥ - -Sanskrit (standard transcription): kācaṃ śaknomyattum; nopahinasti mām. - -Classical Greek: ὕαλον ϕαγεῖν δύναμαι· τοῦτο οὔ με βλάπτει. - -Greek (monotonic): Μπορώ να φάω σπασμένα γυαλιά χωρίς να πάθω τίποτα. - -Greek (polytonic): Μπορῶ νὰ φάω σπασμένα γυαλιὰ χωρὶς νὰ πάθω τίποτα. - -Latin: Vitrum edere possum; mihi non nocet. - -Old French: Je puis mangier del voirre. Ne me nuit. - -French: Je peux manger du verre, ça ne me fait pas mal. - -Provençal / Occitan: Pòdi manjar de veire, me nafrariá pas. - -Québécois: J'peux manger d'la vitre, ça m'fa pas mal. diff --git a/Students/SSchwafel/session10/unicode_lab.py b/Students/SSchwafel/session10/unicode_lab.py deleted file mode 100644 index 5d0a42a2..00000000 --- a/Students/SSchwafel/session10/unicode_lab.py +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/python - -file = open('/home/schuyler/PythonFolder/session10/ICanEatGlass.utf81.txt', 'rw') - -unicode_string = u'bananas'.encode('utf-8') - -unicode_chess_piece = u'\u2654' - -unicode_chess_piece = unicode_chess_piece.encode('utf-8') - -print unicode_chess_piece - -#print unicode_string - -print file.read() - -file.write(unicode_chess_piece) - -print file.read() - -file.close() diff --git a/Students/SSchwafel/session10/unicode_lab.py~ b/Students/SSchwafel/session10/unicode_lab.py~ deleted file mode 100644 index 5d0a42a2..00000000 --- a/Students/SSchwafel/session10/unicode_lab.py~ +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/python - -file = open('/home/schuyler/PythonFolder/session10/ICanEatGlass.utf81.txt', 'rw') - -unicode_string = u'bananas'.encode('utf-8') - -unicode_chess_piece = u'\u2654' - -unicode_chess_piece = unicode_chess_piece.encode('utf-8') - -print unicode_chess_piece - -#print unicode_string - -print file.read() - -file.write(unicode_chess_piece) - -print file.read() - -file.close() diff --git a/Students/SSchwafel/test.py b/Students/SSchwafel/test.py deleted file mode 100644 index e69de29b..00000000 diff --git a/Students/WFukuhara/Final/Fukuhara_final.py b/Students/WFukuhara/Final/Fukuhara_final.py deleted file mode 100644 index a262011b..00000000 --- a/Students/WFukuhara/Final/Fukuhara_final.py +++ /dev/null @@ -1,85 +0,0 @@ -""" -Monthly stock data selected and saved as a csv file from Yahoo Finance online. -Open csv file and present user with a menu: -Monthly open and close prices in side by side columns from Oct 1994 - Oct 2014. -Calculate monthly high avg from Oct 1994 - Oct 2014. -Calculate monthly low avg from Oct 1994 - Oct 2014. -Present user with option to quit program. -Prevent user from entering menu option other than what is presented. -'""" - -import csv -import sys # import sys is used so I can leverage an alternative to the print statement for opencloseresults( ) - - -def menu_selection( ): - """ presents and takes a user input to determine which function to run - """ - uentry = raw_input( '''\nPlease Select a Number From the Data Menu Below: - 1 - The monthly open and close prices for the last 20 years - 2 - The avg monthly high for the last 20 years - 3 - The avg monthly low for the last 20 years - 4 - (Select this option when you are finished) - ''' ) - return uentry - - -def highlowresults(a, b): # function with header and row as arguments - """ takes the High or Low column data for each month for the past 20 years and calcuates the average price. - """ - fin = open( 'disneystock.csv', 'U' ) - finrow = csv.reader(fin) - finrow.next( ) # skip over the initial header row - datacolumn = [ ] # start with empty list - for row in finrow: - datacolumn.append( float(row[b]) ) # convert the string for a given data column to float and create the list - return "The avg monthly %s from Oct 1994 - Oct 2014 was %.2f" % (a, sum(datacolumn) / len(datacolumn)) # add column and divide by the length - - fin.close( ) - - -def opencloseresults( out = sys.stdout ): # optional argument included for testing purposes - """opens the csv file, iterates through each row, formats and prints out the Date, Open and Close results - for the past 20 years. - """ - fin1 = open('disneystock.csv', 'U') - finrow1 = csv.reader(fin1) # converts each row to list - print "Here are the monthly open and close prices for the last 20 years:" - finrow1.next( ) # skip over the iniitial header row - for row1 in finrow1: - out.write( '%10s %s %.2f %s %.2f' % ((row1[0]), ' ', float(row1[1]), ' ', float(row1[4])) + '\n' ) # format with 2 decimal places. - - fin1.close( ) - - -def highavg( ): - """ contains the 'High' column index and format parameters - """ - avghigh = highlowresults( 'High', 2 ) # assign the return results - print avghigh # this is a more flexible alternative to having the print statement at the end of the highlowresults function. - - -def lowavg( ): - """ contains the 'Low' column index and format parameters - """ - avglow = highlowresults( 'Low', 3 ) - print avglow - - -if __name__ == "__main__": # If the module is being run, use the following. If the module is imported (such as for testing) than don't. - running = True - while running: - uentry = menu_selection( ) - if uentry == "1": - opencloseresults( ) - elif uentry == "2": - highavg( ) - elif uentry == "3": - lowavg( ) - elif uentry == "4": - print "Thank you. Come back again." - running = False - else: - print "Please try again and enter a selection from the menu options." - - diff --git a/Students/WFukuhara/Final/disneystock.csv b/Students/WFukuhara/Final/disneystock.csv deleted file mode 100644 index 2d33132c..00000000 --- a/Students/WFukuhara/Final/disneystock.csv +++ /dev/null @@ -1 +0,0 @@ -Date,Open,High,Low,Close,Volume,Adj Close 10/1/14,89.08,89.24,87.2,87.49,14947000,87.49 9/2/14,90.18,91.2,87.36,89.03,5555300,89.03 8/1/14,85.39,91.14,85.21,89.88,5893400,89.88 7/1/14,85.81,87.63,84.87,85.88,5774100,85.88 6/2/14,84.27,86.07,81.8,85.74,6522500,85.74 5/1/14,79.35,84.39,79.21,84.01,6744800,84.01 4/1/14,80.39,82.85,76.31,79.34,7048600,79.34 3/3/14,80.3,83.65,77.28,80.07,7365000,80.07 2/3/14,72.66,81.59,69.85,80.81,8788900,80.81 1/2/14,76.04,76.84,71.12,72.61,7236800,72.61 12/2/13,70.79,76.54,68.8,76.4,6880000,76.4 11/1/13,68.71,71.69,66.72,70.54,6605000,69.68 10/1/13,64.37,69.87,63.1,68.59,6764800,67.75 9/3/13,61.42,67.65,60.52,64.49,10736700,63.7 8/1/13,65.16,67.16,60.41,60.83,7596900,60.09 7/1/13,63.84,67.36,62.57,64.65,6345600,63.86 6/3/13,63.06,65.55,61.82,63.15,8088100,62.38 5/1/13,62.88,67.89,62.8,63.08,9705900,62.31 4/1/13,56.89,63.25,56.15,62.84,8643800,62.07 3/1/13,54.31,57.82,54.3,56.8,7127900,56.11 2/1/13,54.18,55.95,53.41,54.59,9999600,53.92 1/2/13,50.8,54.87,50.18,53.88,9227100,53.22 12/3/12,49.77,51.06,48.55,49.79,8477600,49.18 11/1/12,49.28,50.99,46.53,49.66,11010000,48.31 10/1/12,52.31,53.15,48.8,49.12,8591100,47.79 9/4/12,49.52,53.4,49.23,52.28,8922000,50.86 8/1/12,49.33,50.65,48.13,49.47,7894300,48.13 7/2/12,48.62,50.54,46.85,49.14,8954200,47.81 6/1/12,45.15,48.95,44.14,48.5,10155400,47.18 5/1/12,43.18,46.1,42.84,45.71,11362500,44.47 4/2/12,43.59,44,40.88,43.11,7152900,41.94 3/1/12,42.13,44.5,41.7,43.78,9078400,42.59 2/1/12,39.25,42.37,38.56,41.99,10851100,40.85 1/3/12,37.97,40.25,37.94,38.9,11257700,37.84 12/1/11,36.03,37.8,34.51,37.5,9359100,36.48 11/1/11,34.43,37.42,33.28,35.85,15179500,34.3 10/3/11,30.03,36.6,28.19,34.88,11797900,33.37 9/1/11,34.09,34.33,29.05,30.16,13973200,28.86 8/1/11,38.73,38.75,29.6,34.06,21899100,32.59 7/1/11,39.15,40.97,38.46,38.62,11691200,36.95 6/1/11,41.53,41.59,37.19,39.04,11139500,37.35 5/2/11,43.47,44.13,40.55,41.63,10961100,39.83 4/1/11,43.23,43.38,40.46,43.1,7661500,41.24 3/1/11,43.63,44.34,40.42,43.09,9575100,41.23 2/1/11,39.04,44.05,39.04,43.74,13740300,41.85 1/3/11,37.74,40,37.62,38.87,10238300,37.19 12/1/10,37.15,37.99,36.51,37.51,7312900,35.89 11/1/10,36.21,38,35.15,36.51,14053700,34.55 10/1/10,33.3,36.52,33.08,36.13,11824200,34.2 9/1/10,33,34.99,32.68,33.1,10882900,31.33 8/2/10,34.14,35.41,31.55,32.54,10837500,30.8 7/1/10,31.47,34.8,30.72,33.69,11193900,31.89 6/1/10,33.06,35.83,31.36,31.5,13898600,29.81 5/3/10,36.95,37.98,31,33.42,19872100,31.63 4/1/10,35.07,37.49,35.01,36.84,11874600,34.87 3/1/10,31.4,35.6,31.34,34.91,13805600,33.04 2/1/10,29.6,31.52,28.99,31.24,12842200,29.57 1/4/10,32.5,32.75,28.71,29.55,12983200,27.97 12/1/09,30.44,32.75,30.3,32.25,11705500,30.52 11/2/09,27.38,30.93,27.01,30.22,12564600,28.28 10/1/09,27.76,29.98,26.84,27.37,11404100,25.61 9/1/09,25.89,28.68,25.25,27.46,14444500,25.69 8/3/09,25.52,27.3,24.89,26.04,12957500,24.36 7/1/09,23.5,26.84,22.05,25.12,13940600,23.5 6/1/09,24.83,25.64,22.55,23.33,10968900,21.83 5/1/09,21.76,26.29,21.12,24.22,17036900,22.66 4/1/09,17.92,22.57,17.84,21.9,18716700,20.49 3/2/09,16.48,19.14,15.14,18.16,17292600,16.99 2/2/09,20.08,20.79,16.42,16.77,22002400,15.69 1/2/09,22.76,24.83,19.95,20.68,14693700,19.35 12/1/08,22.04,26.1,20.27,22.69,15933400,21.23 11/3/08,25.85,26.24,18.6,22.52,20977500,20.76 10/1/08,30.3,31.06,21.25,25.91,20856800,23.88 9/2/08,32.74,34.85,29.25,30.69,16750600,28.29 8/1/08,30.5,33.42,29.83,32.35,11775900,29.82 7/1/08,30.91,31.77,28.55,30.35,16934600,27.98 6/2/08,33.5,34.71,31.14,31.2,15235300,28.76 5/1/08,32.45,35.02,32.42,33.6,13253500,30.97 4/1/08,31.52,33.03,29.57,32.43,12125400,29.9 3/3/08,32.61,32.71,30.05,31.38,11974000,28.93 2/1/08,30.75,33.23,30.05,32.41,14379500,29.88 1/2/08,32.32,32.63,26.3,29.84,15555100,27.51 12/3/07,33.06,33.5,31.71,32.28,9943900,29.76 11/1/07,34.51,34.71,30.68,33.15,11027400,30.23 10/1/07,34.38,35.69,33.57,34.63,7931000,31.58 9/4/07,33.51,34.95,33,34.39,9542800,31.36 8/1/07,32.88,34.93,31.25,33.6,11990200,30.64 7/2/07,34.38,35.38,32.99,33,10556800,30.1 6/1/07,35.41,35.89,33,34.14,12571100,31.14 5/1/07,35.09,36.79,35.09,35.44,10615600,31.42 4/2/07,34.4,35.47,34.24,34.98,9266800,31.01 3/1/07,33.73,35.42,33.28,34.43,11179600,30.53 2/1/07,35.09,36.09,32.65,34.25,12425900,30.37 1/3/07,34.21,35.97,33.95,35.17,11206700,31.18 12/1/06,33.05,34.89,32.76,34.27,8809200,30.38 11/1/06,31.55,33.85,31.39,33.05,10909400,29.04 10/2/06,30.79,31.99,30.4,31.46,7439400,27.64 9/1/06,29.82,31.46,29.3,30.91,9652700,27.16 8/1/06,29.65,30.12,28.69,29.65,9688900,26.05 7/3/06,30.19,30.45,28.15,29.69,11022800,26.09 6/1/06,30.5,31.03,27.95,30,13075700,26.36 5/1/06,28.01,30.53,27.63,30.5,15345100,26.8 4/3/06,27.87,28.25,26.75,27.96,7791600,24.57 3/1/06,28,28.85,27.06,27.89,9003400,24.51 2/1/06,25.15,28.49,24.9,27.99,14889700,24.59 1/3/06,24.08,26.5,23.77,25.31,15846900,22.24 12/1/05,25.05,25.7,23.95,23.97,7795500,21.06 11/1/05,24.28,26.19,24.28,24.93,9454400,21.67 10/3/05,24.13,25,22.89,24.37,9112500,21.19 9/1/05,25.09,25.34,22.9,24.13,9761500,20.98 8/1/05,25.64,26.47,24.92,25.19,7777200,21.9 7/1/05,25.22,26.5,24.35,25.64,7294300,22.29 6/1/05,27.51,27.99,25.12,25.18,6776900,21.89 5/2/05,26.57,28.02,26.02,27.44,6743200,23.86 4/1/05,28.79,29,25.71,26.4,6089500,22.95 3/1/05,27.97,29,27.47,28.73,6954900,24.98 2/1/05,28.75,29.99,27.51,27.94,7202500,24.29 1/3/05,27.81,28.94,27.05,28.63,7584500,24.89 12/1/04,26.97,28.03,26.68,27.8,5184300,24.17 11/1/04,25.13,27.45,24.79,26.88,6244900,23.16 10/1/04,22.56,25.3,22.51,25.22,7829200,21.73 9/1/04,22.46,23.65,22,22.55,6657600,19.43 8/2/04,23.1,23.18,20.88,22.45,6783400,19.35 7/1/04,25.34,25.5,22.57,23.09,5778300,19.9 6/1/04,23.8,25.6,23.38,25.49,7401500,21.97 5/3/04,23.18,23.93,21.39,23.47,8560300,20.22 4/1/04,25.1,26.65,22.9,23.03,10729500,19.85 3/1/04,26.8,27.05,24.55,24.99,9151700,21.53 2/2/04,23.8,28.41,22.9,26.53,22057300,22.86 1/2/04,23.49,25.08,22.98,24,10120500,20.68 12/1/03,23.09,23.56,21.56,23.33,8294000,20.1 11/3/03,22.85,23.76,22.38,23.09,6364200,19.71 10/1/03,20.42,22.95,20.36,22.64,7139700,19.33 9/2/03,20.73,21.54,19.78,20.17,9990600,17.22 8/1/03,22.38,23.8,20.15,20.5,8964500,17.5 7/1/03,19.76,22.23,19.4,21.92,8543800,18.71 6/2/03,19.9,21.55,18.85,19.75,10683100,16.86 5/1/03,18.7,19.85,17.45,19.65,9221800,16.77 4/1/03,17.02,19.28,16.92,18.66,9984300,15.93 3/3/03,17.1,18.74,14.84,17.02,9662800,14.53 2/3/03,17.66,17.8,15.88,17.06,6953500,14.56 1/2/03,16.8,18.54,16.25,17.5,7635600,14.94 12/2/02,19.9,20.24,15.5,16.31,7328700,13.92 11/1/02,16.75,20.2,16.53,19.82,7414200,16.71 10/1/02,15.25,18.15,13.9,16.7,10263800,14.08 9/3/02,15.58,16.64,14.54,15.14,8379700,12.76 8/1/02,17.44,17.55,13.48,15.68,12139500,13.22 7/1/02,18.9,20,14.9,17.73,9088200,14.95 6/3/02,23,23.36,18.45,18.9,9667200,15.93 5/1/02,23.43,24.98,22.6,22.91,5580400,19.32 4/1/02,22.65,25.17,22.1,23.18,7579300,19.54 3/1/02,22.95,25,22.65,23.08,7403000,19.46 2/1/02,22.45,24.6,21.2,23,9346600,19.39 1/2/02,20.9,23.6,20.02,21.06,8384300,17.76 12/3/01,20.47,22.9,19.5,20.72,8757600,17.47 11/1/01,18.64,21.91,18.05,20.47,10061000,17.08 10/1/01,18.62,20.49,17.81,18.59,8310200,15.51 9/4/01,25.1,26.05,15.5,18.62,21579200,15.53 8/1/01,26.55,27.98,24.42,25.43,5210000,21.21 7/2/01,28.89,29.02,26.03,26.35,6011600,21.98 6/1/01,31.62,32.41,27.35,28.89,5151200,24.1 5/1/01,30.28,34.8,29.85,31.62,5606200,26.38 4/2/01,28.6,32,26.47,30.25,5501800,25.24 3/1/01,30.95,31,26.06,28.6,6411100,23.86 2/1/01,30.45,32.98,29.6,30.95,5766500,25.82 1/2/01,28.44,34,27.63,30.45,6768400,25.4 12/1/00,29.13,32,26,28.94,5978500,24.14 11/1/00,35.81,38.25,27.88,28.94,6853200,23.98 10/2/00,38.5,41.94,33.5,35.81,5349300,29.67 9/1/00,38.95,41.5,36.81,38.25,3698100,31.69 8/1/00,39,43,37.44,38.95,4688000,32.27 7/3/00,38.69,39.31,35.38,38.56,4527100,31.95 6/1/00,42.19,42.56,37.75,38.81,4300500,32.16 5/1/00,43.62,43.88,38.19,42.19,5261900,34.95 4/3/00,41.25,43.62,37.06,43.62,6468700,36.14 3/1/00,34,42.5,33,41.25,8282100,34.18 2/1/00,36.31,39,31,34,7487500,28.17 1/3/00,29.25,38,28.75,36.31,12752900,30.09 12/1/99,27.88,30,27.12,29.25,7723100,24.23 11/1/99,26.06,29,23.38,27.88,11132100,23.1 10/1/99,25.62,27.88,23.38,26.5,6211500,21.77 9/1/99,27.75,29.63,25.13,26,5292600,21.31 8/2/99,27.56,30.19,25.19,27.75,6571600,22.75 7/1/99,29.94,29.94,26.69,27.56,9883300,22.59 6/1/99,29.13,31.25,28.56,30.81,5796200,25.26 5/3/99,31.62,31.62,28.5,29.13,7399000,23.87 4/1/99,31.13,36,30.12,31.75,7915900,26.02 3/1/99,35.19,36.69,31.06,31.13,6618700,25.51 2/1/99,33.25,36,32.81,35.19,6013500,28.84 1/4/99,30,38.69,29.25,33,10238400,27.05 12/1/98,32,33.75,29.56,30,5402500,24.59 11/2/98,27.44,33.12,27.44,32.19,6901900,26.38 10/1/98,25.25,28,22.5,26.94,5609600,22.08 9/1/98,27.75,31.88,23.87,25.37,8614200,20.76 8/3/98,34.5,35.19,26,27.44,6418700,22.44 7/1/98,106.06,111.44,34,34.44,8588100,28.17 6/1/98,113.25,119.69,104.5,105.06,8627100,28.61 5/1/98,124.56,128.38,109.06,113.25,6145300,30.84 4/1/98,106.75,127.63,104.94,124.56,6467400,33.92 3/2/98,111.94,111.94,102.75,106.75,4568400,29.02 2/2/98,106.88,115.75,106.5,111.94,4189800,30.43 1/2/98,99,108.37,93.56,106.88,5301700,29.06 12/1/97,94.94,100.25,92.06,99,4241400,26.88 11/3/97,83.19,95.38,83.06,94.94,4594300,25.78 10/1/97,80.81,87.81,75,82.37,4416300,22.37 9/2/97,77,81.44,74.44,80.62,3757100,21.86 8/1/97,80.81,81.37,76,76.81,4315700,20.82 7/1/97,79.75,81.69,73.81,80.81,6230300,21.91 6/2/97,81.88,84.38,78.75,80.25,4553700,21.72 5/1/97,81.75,85.12,79.75,81.88,3670600,22.16 4/1/97,72.88,82.5,70.38,81.75,4579600,22.13 3/3/97,74.25,77.62,71.75,72.88,4049700,19.69 2/3/97,72.88,79.25,72,74.25,4200900,20.06 1/2/97,69.75,74.75,66.38,72.88,5212800,19.69 12/2/96,73.88,74.5,68.87,69.75,4135300,18.81 11/1/96,65.88,77.25,65.12,73.88,4990000,19.93 10/1/96,63.25,66.94,62.5,65.88,3005200,17.77 9/3/96,57,63.88,55.63,63.25,4058700,17.03 8/1/96,56,59.75,56,57,3351600,15.35 7/1/96,62.75,62.75,53.25,55.63,6403400,14.98 6/3/96,60.75,63.75,59.5,62.88,4543800,16.9 5/1/96,61.75,63.25,57.87,60.75,5109600,16.33 4/1/96,64.25,65.63,59.75,62,5777100,16.66 3/1/96,65.5,69.88,63.5,63.88,7389200,17.14 2/1/96,64,66.12,60.62,65.5,5569800,17.57 1/2/96,59.13,64.37,59.13,64.25,4831600,17.24 12/1/95,60.25,63,58.62,58.87,3889000,15.8 11/1/95,57.63,64.25,56.75,60.13,4707700,16.11 10/2/95,57.38,58.25,55.12,57.63,2808500,15.44 9/1/95,56.25,59.13,54.5,57.38,3709400,15.35 8/1/95,59.5,62.88,55.88,56.25,6025800,15.04 7/3/95,55.5,61.38,50.5,58.62,5947100,15.68 6/1/95,55.5,60,55,55.5,3909500,14.82 5/1/95,55.37,55.88,52.75,55.5,3295600,14.82 4/3/95,53.75,56.63,53.75,55.37,3290000,14.79 3/1/95,53.37,56.25,53.13,53.5,4736600,14.26 2/1/95,50.87,54.25,50.62,53.37,4190200,14.23 1/3/95,46,51.38,45,50.87,5388000,13.56 12/1/94,43.5,46.88,42,46,3494400,12.24 11/1/94,39.5,44.5,38.75,43.5,4626900,11.58 10/3/94,38.75,40.13,37.75,39.5,4159900,10.51 \ No newline at end of file diff --git a/Students/WFukuhara/Final/test_Fukuhara_final.py b/Students/WFukuhara/Final/test_Fukuhara_final.py deleted file mode 100644 index 4c97dce0..00000000 --- a/Students/WFukuhara/Final/test_Fukuhara_final.py +++ /dev/null @@ -1,56 +0,0 @@ -""" -test harness for Fukuhara_final.py - -""" - -import sys -from StringIO import StringIO -from Fukuhara_final import highlowresults -from Fukuhara_final import opencloseresults - - -def test1_avgresults( ): - assert 'test' in highlowresults('test', 2) # correct string in results - -def test2_avgresults( ): - assert '44.06' in highlowresults('test', 2) # correct result for avg High - -def test3_avgresults( ): - assert '50.00' not in highlowresults('test', 2) # incorrect result for avg High - -def test4_avgresults( ): - assert '39.10' in highlowresults('test', 3) # corrrect results for avg Low - -def test5_avgresults( ): - assert '40.00' not in highlowresults('test', 3) # incorrect result for avg Low - - -def test6_fileoutput( ): - out = StringIO( ) - opencloseresults( out = out ) - output = out.getvalue( ) - assert '10/1/14' in output # beginning date - -def test7_fileoutput( ): - out = StringIO( ) - opencloseresults( out = out ) - output = out.getvalue( ) - assert '10/3/94' in output # ending date - -def test8_fileoutput( ): - out = StringIO( ) - opencloseresults( out = out ) - output = out.getvalue( ) - assert '11/1/14' not in output # date does not exist - -def test9_fileoutput( ): - out = StringIO( ) - opencloseresults( out = out ) - output = out.getvalue( ) - assert '89.08' in output # beginning data result in one of the columns - -def test10_fileoutput( ): - out = StringIO( ) - opencloseresults( out = out ) - output = out.getvalue( ) - assert '90.00' not in output # data result not in any of the columns diff --git a/Students/alexg/session02/ack.py b/Students/alexg/session02/ack.py deleted file mode 100644 index cf9e6ba5..00000000 --- a/Students/alexg/session02/ack.py +++ /dev/null @@ -1,34 +0,0 @@ -#!/usr/bin/python - -def ack(m,n): - """Returns the output of the Ackerman Function""" - if m<0 or n<0: - return None - elif not m: - return n+1 - elif m>0 and not n: - return ack(m-1,1) - elif m>0 and n>0: - return ack(m-1, ack(m,n-1)) - -if __name__ == "__main__": - assert ack(0,0)==1 - assert ack(0,1)==2 - assert ack(0,2)==3 - assert ack(0,3)==4 - assert ack(0,4)==5 - assert ack(1,0)==2 - assert ack(1,2)==4 - assert ack(1,3)==5 - assert ack(1,4)==6 - assert ack(2,0)==3 - assert ack(2,1)==5 - assert ack(2,2)==7 - assert ack(2,3)==9 - assert ack(2,4)==11 - assert ack(3,0)==5 - assert ack(3,1)==13 - assert ack(3,2)==29 - assert ack(3,3)==61 - assert ack(3,4)==125 - print "All Tests Pass" diff --git a/Students/alexg/session02/series.py b/Students/alexg/session02/series.py deleted file mode 100644 index 73f0c39d..00000000 --- a/Students/alexg/session02/series.py +++ /dev/null @@ -1,43 +0,0 @@ -#!/usr/bin/python - -def fibonacci(x): - """Returns the nth value of the Fibonacci Series""" - if not x: - return 0 - elif x == 1: - return 1 - else: - return fibonacci(x-1)+fibonacci(x-2) - -def lucas(x): - """Returns the nth value of the Lucas Series""" - if not x: - return 2 - elif x == 1: - return 1 - else: - return lucas(x-1)+lucas(x-2) - -def sum_series(n,x=0,y=1): - """Returns the nth value of either series, or creates a new one""" - if x==0 and y==1: - return fibonacci(n) - elif x==2 and y==1: - return lucas(n) - else: - if not n: - return x - elif n==1: - return y - else: - return sum_series(n-1)+sum_series(n-2) - -if __name__ == "__main__": - #Testing the 7th value of the fibonacci sequence - assert fibonacci(6)==8 - - #Testing the 7th value of the lucas sequence - assert lucas(6)==18 - - #Testing for the 2nd value of the new function - assert sum_series(9,40,2)==34 diff --git a/Students/alexg/session04/sherlock.txt b/Students/alexg/session04/sherlock.txt deleted file mode 100644 index 4dec2015..00000000 --- a/Students/alexg/session04/sherlock.txt +++ /dev/null @@ -1,13052 +0,0 @@ -Project Gutenberg's The Adventures of Sherlock Holmes, by Arthur Conan Doyle - -This eBook is for the use of anyone anywhere at no cost and with -almost no restrictions whatsoever. You may copy it, give it away or -re-use it under the terms of the Project Gutenberg License included -with this eBook or online at www.gutenberg.net - - -Title: The Adventures of Sherlock Holmes - -Author: Arthur Conan Doyle - -Posting Date: April 18, 2011 [EBook #1661] -First Posted: November 29, 2002 - -Language: English - - -*** START OF THIS PROJECT GUTENBERG EBOOK THE ADVENTURES OF SHERLOCK HOLMES *** - - - - -Produced by an anonymous Project Gutenberg volunteer and Jose Menendez - - - - - - - - - -THE ADVENTURES OF SHERLOCK HOLMES - -by - -SIR ARTHUR CONAN DOYLE - - - - I. A Scandal in Bohemia - II. The Red-headed League - III. A Case of Identity - IV. The Boscombe Valley Mystery - V. The Five Orange Pips - VI. The Man with the Twisted Lip - VII. The Adventure of the Blue Carbuncle -VIII. The Adventure of the Speckled Band - IX. The Adventure of the Engineer's Thumb - X. The Adventure of the Noble Bachelor - XI. The Adventure of the Beryl Coronet - XII. The Adventure of the Copper Beeches - - - - -ADVENTURE I. A SCANDAL IN BOHEMIA - -I. - -To Sherlock Holmes she is always THE woman. I have seldom heard -him mention her under any other name. In his eyes she eclipses -and predominates the whole of her sex. It was not that he felt -any emotion akin to love for Irene Adler. All emotions, and that -one particularly, were abhorrent to his cold, precise but -admirably balanced mind. He was, I take it, the most perfect -reasoning and observing machine that the world has seen, but as a -lover he would have placed himself in a false position. He never -spoke of the softer passions, save with a gibe and a sneer. They -were admirable things for the observer--excellent for drawing the -veil from men's motives and actions. But for the trained reasoner -to admit such intrusions into his own delicate and finely -adjusted temperament was to introduce a distracting factor which -might throw a doubt upon all his mental results. Grit in a -sensitive instrument, or a crack in one of his own high-power -lenses, would not be more disturbing than a strong emotion in a -nature such as his. And yet there was but one woman to him, and -that woman was the late Irene Adler, of dubious and questionable -memory. - -I had seen little of Holmes lately. My marriage had drifted us -away from each other. My own complete happiness, and the -home-centred interests which rise up around the man who first -finds himself master of his own establishment, were sufficient to -absorb all my attention, while Holmes, who loathed every form of -society with his whole Bohemian soul, remained in our lodgings in -Baker Street, buried among his old books, and alternating from -week to week between cocaine and ambition, the drowsiness of the -drug, and the fierce energy of his own keen nature. He was still, -as ever, deeply attracted by the study of crime, and occupied his -immense faculties and extraordinary powers of observation in -following out those clues, and clearing up those mysteries which -had been abandoned as hopeless by the official police. From time -to time I heard some vague account of his doings: of his summons -to Odessa in the case of the Trepoff murder, of his clearing up -of the singular tragedy of the Atkinson brothers at Trincomalee, -and finally of the mission which he had accomplished so -delicately and successfully for the reigning family of Holland. -Beyond these signs of his activity, however, which I merely -shared with all the readers of the daily press, I knew little of -my former friend and companion. - -One night--it was on the twentieth of March, 1888--I was -returning from a journey to a patient (for I had now returned to -civil practice), when my way led me through Baker Street. As I -passed the well-remembered door, which must always be associated -in my mind with my wooing, and with the dark incidents of the -Study in Scarlet, I was seized with a keen desire to see Holmes -again, and to know how he was employing his extraordinary powers. -His rooms were brilliantly lit, and, even as I looked up, I saw -his tall, spare figure pass twice in a dark silhouette against -the blind. He was pacing the room swiftly, eagerly, with his head -sunk upon his chest and his hands clasped behind him. To me, who -knew his every mood and habit, his attitude and manner told their -own story. He was at work again. He had risen out of his -drug-created dreams and was hot upon the scent of some new -problem. I rang the bell and was shown up to the chamber which -had formerly been in part my own. - -His manner was not effusive. It seldom was; but he was glad, I -think, to see me. With hardly a word spoken, but with a kindly -eye, he waved me to an armchair, threw across his case of cigars, -and indicated a spirit case and a gasogene in the corner. Then he -stood before the fire and looked me over in his singular -introspective fashion. - -"Wedlock suits you," he remarked. "I think, Watson, that you have -put on seven and a half pounds since I saw you." - -"Seven!" I answered. - -"Indeed, I should have thought a little more. Just a trifle more, -I fancy, Watson. And in practice again, I observe. You did not -tell me that you intended to go into harness." - -"Then, how do you know?" - -"I see it, I deduce it. How do I know that you have been getting -yourself very wet lately, and that you have a most clumsy and -careless servant girl?" - -"My dear Holmes," said I, "this is too much. You would certainly -have been burned, had you lived a few centuries ago. It is true -that I had a country walk on Thursday and came home in a dreadful -mess, but as I have changed my clothes I can't imagine how you -deduce it. As to Mary Jane, she is incorrigible, and my wife has -given her notice, but there, again, I fail to see how you work it -out." - -He chuckled to himself and rubbed his long, nervous hands -together. - -"It is simplicity itself," said he; "my eyes tell me that on the -inside of your left shoe, just where the firelight strikes it, -the leather is scored by six almost parallel cuts. Obviously they -have been caused by someone who has very carelessly scraped round -the edges of the sole in order to remove crusted mud from it. -Hence, you see, my double deduction that you had been out in vile -weather, and that you had a particularly malignant boot-slitting -specimen of the London slavey. As to your practice, if a -gentleman walks into my rooms smelling of iodoform, with a black -mark of nitrate of silver upon his right forefinger, and a bulge -on the right side of his top-hat to show where he has secreted -his stethoscope, I must be dull, indeed, if I do not pronounce -him to be an active member of the medical profession." - -I could not help laughing at the ease with which he explained his -process of deduction. "When I hear you give your reasons," I -remarked, "the thing always appears to me to be so ridiculously -simple that I could easily do it myself, though at each -successive instance of your reasoning I am baffled until you -explain your process. And yet I believe that my eyes are as good -as yours." - -"Quite so," he answered, lighting a cigarette, and throwing -himself down into an armchair. "You see, but you do not observe. -The distinction is clear. For example, you have frequently seen -the steps which lead up from the hall to this room." - -"Frequently." - -"How often?" - -"Well, some hundreds of times." - -"Then how many are there?" - -"How many? I don't know." - -"Quite so! You have not observed. And yet you have seen. That is -just my point. Now, I know that there are seventeen steps, -because I have both seen and observed. By-the-way, since you are -interested in these little problems, and since you are good -enough to chronicle one or two of my trifling experiences, you -may be interested in this." He threw over a sheet of thick, -pink-tinted note-paper which had been lying open upon the table. -"It came by the last post," said he. "Read it aloud." - -The note was undated, and without either signature or address. - -"There will call upon you to-night, at a quarter to eight -o'clock," it said, "a gentleman who desires to consult you upon a -matter of the very deepest moment. Your recent services to one of -the royal houses of Europe have shown that you are one who may -safely be trusted with matters which are of an importance which -can hardly be exaggerated. This account of you we have from all -quarters received. Be in your chamber then at that hour, and do -not take it amiss if your visitor wear a mask." - -"This is indeed a mystery," I remarked. "What do you imagine that -it means?" - -"I have no data yet. It is a capital mistake to theorize before -one has data. Insensibly one begins to twist facts to suit -theories, instead of theories to suit facts. But the note itself. -What do you deduce from it?" - -I carefully examined the writing, and the paper upon which it was -written. - -"The man who wrote it was presumably well to do," I remarked, -endeavouring to imitate my companion's processes. "Such paper -could not be bought under half a crown a packet. It is peculiarly -strong and stiff." - -"Peculiar--that is the very word," said Holmes. "It is not an -English paper at all. Hold it up to the light." - -I did so, and saw a large "E" with a small "g," a "P," and a -large "G" with a small "t" woven into the texture of the paper. - -"What do you make of that?" asked Holmes. - -"The name of the maker, no doubt; or his monogram, rather." - -"Not at all. The 'G' with the small 't' stands for -'Gesellschaft,' which is the German for 'Company.' It is a -customary contraction like our 'Co.' 'P,' of course, stands for -'Papier.' Now for the 'Eg.' Let us glance at our Continental -Gazetteer." He took down a heavy brown volume from his shelves. -"Eglow, Eglonitz--here we are, Egria. It is in a German-speaking -country--in Bohemia, not far from Carlsbad. 'Remarkable as being -the scene of the death of Wallenstein, and for its numerous -glass-factories and paper-mills.' Ha, ha, my boy, what do you -make of that?" His eyes sparkled, and he sent up a great blue -triumphant cloud from his cigarette. - -"The paper was made in Bohemia," I said. - -"Precisely. And the man who wrote the note is a German. Do you -note the peculiar construction of the sentence--'This account of -you we have from all quarters received.' A Frenchman or Russian -could not have written that. It is the German who is so -uncourteous to his verbs. It only remains, therefore, to discover -what is wanted by this German who writes upon Bohemian paper and -prefers wearing a mask to showing his face. And here he comes, if -I am not mistaken, to resolve all our doubts." - -As he spoke there was the sharp sound of horses' hoofs and -grating wheels against the curb, followed by a sharp pull at the -bell. Holmes whistled. - -"A pair, by the sound," said he. "Yes," he continued, glancing -out of the window. "A nice little brougham and a pair of -beauties. A hundred and fifty guineas apiece. There's money in -this case, Watson, if there is nothing else." - -"I think that I had better go, Holmes." - -"Not a bit, Doctor. Stay where you are. I am lost without my -Boswell. And this promises to be interesting. It would be a pity -to miss it." - -"But your client--" - -"Never mind him. I may want your help, and so may he. Here he -comes. Sit down in that armchair, Doctor, and give us your best -attention." - -A slow and heavy step, which had been heard upon the stairs and -in the passage, paused immediately outside the door. Then there -was a loud and authoritative tap. - -"Come in!" said Holmes. - -A man entered who could hardly have been less than six feet six -inches in height, with the chest and limbs of a Hercules. His -dress was rich with a richness which would, in England, be looked -upon as akin to bad taste. Heavy bands of astrakhan were slashed -across the sleeves and fronts of his double-breasted coat, while -the deep blue cloak which was thrown over his shoulders was lined -with flame-coloured silk and secured at the neck with a brooch -which consisted of a single flaming beryl. Boots which extended -halfway up his calves, and which were trimmed at the tops with -rich brown fur, completed the impression of barbaric opulence -which was suggested by his whole appearance. He carried a -broad-brimmed hat in his hand, while he wore across the upper -part of his face, extending down past the cheekbones, a black -vizard mask, which he had apparently adjusted that very moment, -for his hand was still raised to it as he entered. From the lower -part of the face he appeared to be a man of strong character, -with a thick, hanging lip, and a long, straight chin suggestive -of resolution pushed to the length of obstinacy. - -"You had my note?" he asked with a deep harsh voice and a -strongly marked German accent. "I told you that I would call." He -looked from one to the other of us, as if uncertain which to -address. - -"Pray take a seat," said Holmes. "This is my friend and -colleague, Dr. Watson, who is occasionally good enough to help me -in my cases. Whom have I the honour to address?" - -"You may address me as the Count Von Kramm, a Bohemian nobleman. -I understand that this gentleman, your friend, is a man of honour -and discretion, whom I may trust with a matter of the most -extreme importance. If not, I should much prefer to communicate -with you alone." - -I rose to go, but Holmes caught me by the wrist and pushed me -back into my chair. "It is both, or none," said he. "You may say -before this gentleman anything which you may say to me." - -The Count shrugged his broad shoulders. "Then I must begin," said -he, "by binding you both to absolute secrecy for two years; at -the end of that time the matter will be of no importance. At -present it is not too much to say that it is of such weight it -may have an influence upon European history." - -"I promise," said Holmes. - -"And I." - -"You will excuse this mask," continued our strange visitor. "The -august person who employs me wishes his agent to be unknown to -you, and I may confess at once that the title by which I have -just called myself is not exactly my own." - -"I was aware of it," said Holmes dryly. - -"The circumstances are of great delicacy, and every precaution -has to be taken to quench what might grow to be an immense -scandal and seriously compromise one of the reigning families of -Europe. To speak plainly, the matter implicates the great House -of Ormstein, hereditary kings of Bohemia." - -"I was also aware of that," murmured Holmes, settling himself -down in his armchair and closing his eyes. - -Our visitor glanced with some apparent surprise at the languid, -lounging figure of the man who had been no doubt depicted to him -as the most incisive reasoner and most energetic agent in Europe. -Holmes slowly reopened his eyes and looked impatiently at his -gigantic client. - -"If your Majesty would condescend to state your case," he -remarked, "I should be better able to advise you." - -The man sprang from his chair and paced up and down the room in -uncontrollable agitation. Then, with a gesture of desperation, he -tore the mask from his face and hurled it upon the ground. "You -are right," he cried; "I am the King. Why should I attempt to -conceal it?" - -"Why, indeed?" murmured Holmes. "Your Majesty had not spoken -before I was aware that I was addressing Wilhelm Gottsreich -Sigismond von Ormstein, Grand Duke of Cassel-Felstein, and -hereditary King of Bohemia." - -"But you can understand," said our strange visitor, sitting down -once more and passing his hand over his high white forehead, "you -can understand that I am not accustomed to doing such business in -my own person. Yet the matter was so delicate that I could not -confide it to an agent without putting myself in his power. I -have come incognito from Prague for the purpose of consulting -you." - -"Then, pray consult," said Holmes, shutting his eyes once more. - -"The facts are briefly these: Some five years ago, during a -lengthy visit to Warsaw, I made the acquaintance of the well-known -adventuress, Irene Adler. The name is no doubt familiar to you." - -"Kindly look her up in my index, Doctor," murmured Holmes without -opening his eyes. For many years he had adopted a system of -docketing all paragraphs concerning men and things, so that it -was difficult to name a subject or a person on which he could not -at once furnish information. In this case I found her biography -sandwiched in between that of a Hebrew rabbi and that of a -staff-commander who had written a monograph upon the deep-sea -fishes. - -"Let me see!" said Holmes. "Hum! Born in New Jersey in the year -1858. Contralto--hum! La Scala, hum! Prima donna Imperial Opera -of Warsaw--yes! Retired from operatic stage--ha! Living in -London--quite so! Your Majesty, as I understand, became entangled -with this young person, wrote her some compromising letters, and -is now desirous of getting those letters back." - -"Precisely so. But how--" - -"Was there a secret marriage?" - -"None." - -"No legal papers or certificates?" - -"None." - -"Then I fail to follow your Majesty. If this young person should -produce her letters for blackmailing or other purposes, how is -she to prove their authenticity?" - -"There is the writing." - -"Pooh, pooh! Forgery." - -"My private note-paper." - -"Stolen." - -"My own seal." - -"Imitated." - -"My photograph." - -"Bought." - -"We were both in the photograph." - -"Oh, dear! That is very bad! Your Majesty has indeed committed an -indiscretion." - -"I was mad--insane." - -"You have compromised yourself seriously." - -"I was only Crown Prince then. I was young. I am but thirty now." - -"It must be recovered." - -"We have tried and failed." - -"Your Majesty must pay. It must be bought." - -"She will not sell." - -"Stolen, then." - -"Five attempts have been made. Twice burglars in my pay ransacked -her house. Once we diverted her luggage when she travelled. Twice -she has been waylaid. There has been no result." - -"No sign of it?" - -"Absolutely none." - -Holmes laughed. "It is quite a pretty little problem," said he. - -"But a very serious one to me," returned the King reproachfully. - -"Very, indeed. And what does she propose to do with the -photograph?" - -"To ruin me." - -"But how?" - -"I am about to be married." - -"So I have heard." - -"To Clotilde Lothman von Saxe-Meningen, second daughter of the -King of Scandinavia. You may know the strict principles of her -family. She is herself the very soul of delicacy. A shadow of a -doubt as to my conduct would bring the matter to an end." - -"And Irene Adler?" - -"Threatens to send them the photograph. And she will do it. I -know that she will do it. You do not know her, but she has a soul -of steel. She has the face of the most beautiful of women, and -the mind of the most resolute of men. Rather than I should marry -another woman, there are no lengths to which she would not -go--none." - -"You are sure that she has not sent it yet?" - -"I am sure." - -"And why?" - -"Because she has said that she would send it on the day when the -betrothal was publicly proclaimed. That will be next Monday." - -"Oh, then we have three days yet," said Holmes with a yawn. "That -is very fortunate, as I have one or two matters of importance to -look into just at present. Your Majesty will, of course, stay in -London for the present?" - -"Certainly. You will find me at the Langham under the name of the -Count Von Kramm." - -"Then I shall drop you a line to let you know how we progress." - -"Pray do so. I shall be all anxiety." - -"Then, as to money?" - -"You have carte blanche." - -"Absolutely?" - -"I tell you that I would give one of the provinces of my kingdom -to have that photograph." - -"And for present expenses?" - -The King took a heavy chamois leather bag from under his cloak -and laid it on the table. - -"There are three hundred pounds in gold and seven hundred in -notes," he said. - -Holmes scribbled a receipt upon a sheet of his note-book and -handed it to him. - -"And Mademoiselle's address?" he asked. - -"Is Briony Lodge, Serpentine Avenue, St. John's Wood." - -Holmes took a note of it. "One other question," said he. "Was the -photograph a cabinet?" - -"It was." - -"Then, good-night, your Majesty, and I trust that we shall soon -have some good news for you. And good-night, Watson," he added, -as the wheels of the royal brougham rolled down the street. "If -you will be good enough to call to-morrow afternoon at three -o'clock I should like to chat this little matter over with you." - - -II. - -At three o'clock precisely I was at Baker Street, but Holmes had -not yet returned. The landlady informed me that he had left the -house shortly after eight o'clock in the morning. I sat down -beside the fire, however, with the intention of awaiting him, -however long he might be. I was already deeply interested in his -inquiry, for, though it was surrounded by none of the grim and -strange features which were associated with the two crimes which -I have already recorded, still, the nature of the case and the -exalted station of his client gave it a character of its own. -Indeed, apart from the nature of the investigation which my -friend had on hand, there was something in his masterly grasp of -a situation, and his keen, incisive reasoning, which made it a -pleasure to me to study his system of work, and to follow the -quick, subtle methods by which he disentangled the most -inextricable mysteries. So accustomed was I to his invariable -success that the very possibility of his failing had ceased to -enter into my head. - -It was close upon four before the door opened, and a -drunken-looking groom, ill-kempt and side-whiskered, with an -inflamed face and disreputable clothes, walked into the room. -Accustomed as I was to my friend's amazing powers in the use of -disguises, I had to look three times before I was certain that it -was indeed he. With a nod he vanished into the bedroom, whence he -emerged in five minutes tweed-suited and respectable, as of old. -Putting his hands into his pockets, he stretched out his legs in -front of the fire and laughed heartily for some minutes. - -"Well, really!" he cried, and then he choked and laughed again -until he was obliged to lie back, limp and helpless, in the -chair. - -"What is it?" - -"It's quite too funny. I am sure you could never guess how I -employed my morning, or what I ended by doing." - -"I can't imagine. I suppose that you have been watching the -habits, and perhaps the house, of Miss Irene Adler." - -"Quite so; but the sequel was rather unusual. I will tell you, -however. I left the house a little after eight o'clock this -morning in the character of a groom out of work. There is a -wonderful sympathy and freemasonry among horsey men. Be one of -them, and you will know all that there is to know. I soon found -Briony Lodge. It is a bijou villa, with a garden at the back, but -built out in front right up to the road, two stories. Chubb lock -to the door. Large sitting-room on the right side, well -furnished, with long windows almost to the floor, and those -preposterous English window fasteners which a child could open. -Behind there was nothing remarkable, save that the passage window -could be reached from the top of the coach-house. I walked round -it and examined it closely from every point of view, but without -noting anything else of interest. - -"I then lounged down the street and found, as I expected, that -there was a mews in a lane which runs down by one wall of the -garden. I lent the ostlers a hand in rubbing down their horses, -and received in exchange twopence, a glass of half and half, two -fills of shag tobacco, and as much information as I could desire -about Miss Adler, to say nothing of half a dozen other people in -the neighbourhood in whom I was not in the least interested, but -whose biographies I was compelled to listen to." - -"And what of Irene Adler?" I asked. - -"Oh, she has turned all the men's heads down in that part. She is -the daintiest thing under a bonnet on this planet. So say the -Serpentine-mews, to a man. She lives quietly, sings at concerts, -drives out at five every day, and returns at seven sharp for -dinner. Seldom goes out at other times, except when she sings. -Has only one male visitor, but a good deal of him. He is dark, -handsome, and dashing, never calls less than once a day, and -often twice. He is a Mr. Godfrey Norton, of the Inner Temple. See -the advantages of a cabman as a confidant. They had driven him -home a dozen times from Serpentine-mews, and knew all about him. -When I had listened to all they had to tell, I began to walk up -and down near Briony Lodge once more, and to think over my plan -of campaign. - -"This Godfrey Norton was evidently an important factor in the -matter. He was a lawyer. That sounded ominous. What was the -relation between them, and what the object of his repeated -visits? Was she his client, his friend, or his mistress? If the -former, she had probably transferred the photograph to his -keeping. If the latter, it was less likely. On the issue of this -question depended whether I should continue my work at Briony -Lodge, or turn my attention to the gentleman's chambers in the -Temple. It was a delicate point, and it widened the field of my -inquiry. I fear that I bore you with these details, but I have to -let you see my little difficulties, if you are to understand the -situation." - -"I am following you closely," I answered. - -"I was still balancing the matter in my mind when a hansom cab -drove up to Briony Lodge, and a gentleman sprang out. He was a -remarkably handsome man, dark, aquiline, and moustached--evidently -the man of whom I had heard. He appeared to be in a -great hurry, shouted to the cabman to wait, and brushed past the -maid who opened the door with the air of a man who was thoroughly -at home. - -"He was in the house about half an hour, and I could catch -glimpses of him in the windows of the sitting-room, pacing up and -down, talking excitedly, and waving his arms. Of her I could see -nothing. Presently he emerged, looking even more flurried than -before. As he stepped up to the cab, he pulled a gold watch from -his pocket and looked at it earnestly, 'Drive like the devil,' he -shouted, 'first to Gross & Hankey's in Regent Street, and then to -the Church of St. Monica in the Edgeware Road. Half a guinea if -you do it in twenty minutes!' - -"Away they went, and I was just wondering whether I should not do -well to follow them when up the lane came a neat little landau, -the coachman with his coat only half-buttoned, and his tie under -his ear, while all the tags of his harness were sticking out of -the buckles. It hadn't pulled up before she shot out of the hall -door and into it. I only caught a glimpse of her at the moment, -but she was a lovely woman, with a face that a man might die for. - -"'The Church of St. Monica, John,' she cried, 'and half a -sovereign if you reach it in twenty minutes.' - -"This was quite too good to lose, Watson. I was just balancing -whether I should run for it, or whether I should perch behind her -landau when a cab came through the street. The driver looked -twice at such a shabby fare, but I jumped in before he could -object. 'The Church of St. Monica,' said I, 'and half a sovereign -if you reach it in twenty minutes.' It was twenty-five minutes to -twelve, and of course it was clear enough what was in the wind. - -"My cabby drove fast. I don't think I ever drove faster, but the -others were there before us. The cab and the landau with their -steaming horses were in front of the door when I arrived. I paid -the man and hurried into the church. There was not a soul there -save the two whom I had followed and a surpliced clergyman, who -seemed to be expostulating with them. They were all three -standing in a knot in front of the altar. I lounged up the side -aisle like any other idler who has dropped into a church. -Suddenly, to my surprise, the three at the altar faced round to -me, and Godfrey Norton came running as hard as he could towards -me. - -"'Thank God,' he cried. 'You'll do. Come! Come!' - -"'What then?' I asked. - -"'Come, man, come, only three minutes, or it won't be legal.' - -"I was half-dragged up to the altar, and before I knew where I was -I found myself mumbling responses which were whispered in my ear, -and vouching for things of which I knew nothing, and generally -assisting in the secure tying up of Irene Adler, spinster, to -Godfrey Norton, bachelor. It was all done in an instant, and -there was the gentleman thanking me on the one side and the lady -on the other, while the clergyman beamed on me in front. It was -the most preposterous position in which I ever found myself in my -life, and it was the thought of it that started me laughing just -now. It seems that there had been some informality about their -license, that the clergyman absolutely refused to marry them -without a witness of some sort, and that my lucky appearance -saved the bridegroom from having to sally out into the streets in -search of a best man. The bride gave me a sovereign, and I mean -to wear it on my watch-chain in memory of the occasion." - -"This is a very unexpected turn of affairs," said I; "and what -then?" - -"Well, I found my plans very seriously menaced. It looked as if -the pair might take an immediate departure, and so necessitate -very prompt and energetic measures on my part. At the church -door, however, they separated, he driving back to the Temple, and -she to her own house. 'I shall drive out in the park at five as -usual,' she said as she left him. I heard no more. They drove -away in different directions, and I went off to make my own -arrangements." - -"Which are?" - -"Some cold beef and a glass of beer," he answered, ringing the -bell. "I have been too busy to think of food, and I am likely to -be busier still this evening. By the way, Doctor, I shall want -your co-operation." - -"I shall be delighted." - -"You don't mind breaking the law?" - -"Not in the least." - -"Nor running a chance of arrest?" - -"Not in a good cause." - -"Oh, the cause is excellent!" - -"Then I am your man." - -"I was sure that I might rely on you." - -"But what is it you wish?" - -"When Mrs. Turner has brought in the tray I will make it clear to -you. Now," he said as he turned hungrily on the simple fare that -our landlady had provided, "I must discuss it while I eat, for I -have not much time. It is nearly five now. In two hours we must -be on the scene of action. Miss Irene, or Madame, rather, returns -from her drive at seven. We must be at Briony Lodge to meet her." - -"And what then?" - -"You must leave that to me. I have already arranged what is to -occur. There is only one point on which I must insist. You must -not interfere, come what may. You understand?" - -"I am to be neutral?" - -"To do nothing whatever. There will probably be some small -unpleasantness. Do not join in it. It will end in my being -conveyed into the house. Four or five minutes afterwards the -sitting-room window will open. You are to station yourself close -to that open window." - -"Yes." - -"You are to watch me, for I will be visible to you." - -"Yes." - -"And when I raise my hand--so--you will throw into the room what -I give you to throw, and will, at the same time, raise the cry of -fire. You quite follow me?" - -"Entirely." - -"It is nothing very formidable," he said, taking a long cigar-shaped -roll from his pocket. "It is an ordinary plumber's smoke-rocket, -fitted with a cap at either end to make it self-lighting. -Your task is confined to that. When you raise your cry of fire, -it will be taken up by quite a number of people. You may then -walk to the end of the street, and I will rejoin you in ten -minutes. I hope that I have made myself clear?" - -"I am to remain neutral, to get near the window, to watch you, -and at the signal to throw in this object, then to raise the cry -of fire, and to wait you at the corner of the street." - -"Precisely." - -"Then you may entirely rely on me." - -"That is excellent. I think, perhaps, it is almost time that I -prepare for the new role I have to play." - -He disappeared into his bedroom and returned in a few minutes in -the character of an amiable and simple-minded Nonconformist -clergyman. His broad black hat, his baggy trousers, his white -tie, his sympathetic smile, and general look of peering and -benevolent curiosity were such as Mr. John Hare alone could have -equalled. It was not merely that Holmes changed his costume. His -expression, his manner, his very soul seemed to vary with every -fresh part that he assumed. The stage lost a fine actor, even as -science lost an acute reasoner, when he became a specialist in -crime. - -It was a quarter past six when we left Baker Street, and it still -wanted ten minutes to the hour when we found ourselves in -Serpentine Avenue. It was already dusk, and the lamps were just -being lighted as we paced up and down in front of Briony Lodge, -waiting for the coming of its occupant. The house was just such -as I had pictured it from Sherlock Holmes' succinct description, -but the locality appeared to be less private than I expected. On -the contrary, for a small street in a quiet neighbourhood, it was -remarkably animated. There was a group of shabbily dressed men -smoking and laughing in a corner, a scissors-grinder with his -wheel, two guardsmen who were flirting with a nurse-girl, and -several well-dressed young men who were lounging up and down with -cigars in their mouths. - -"You see," remarked Holmes, as we paced to and fro in front of -the house, "this marriage rather simplifies matters. The -photograph becomes a double-edged weapon now. The chances are -that she would be as averse to its being seen by Mr. Godfrey -Norton, as our client is to its coming to the eyes of his -princess. Now the question is, Where are we to find the -photograph?" - -"Where, indeed?" - -"It is most unlikely that she carries it about with her. It is -cabinet size. Too large for easy concealment about a woman's -dress. She knows that the King is capable of having her waylaid -and searched. Two attempts of the sort have already been made. We -may take it, then, that she does not carry it about with her." - -"Where, then?" - -"Her banker or her lawyer. There is that double possibility. But -I am inclined to think neither. Women are naturally secretive, -and they like to do their own secreting. Why should she hand it -over to anyone else? She could trust her own guardianship, but -she could not tell what indirect or political influence might be -brought to bear upon a business man. Besides, remember that she -had resolved to use it within a few days. It must be where she -can lay her hands upon it. It must be in her own house." - -"But it has twice been burgled." - -"Pshaw! They did not know how to look." - -"But how will you look?" - -"I will not look." - -"What then?" - -"I will get her to show me." - -"But she will refuse." - -"She will not be able to. But I hear the rumble of wheels. It is -her carriage. Now carry out my orders to the letter." - -As he spoke the gleam of the side-lights of a carriage came round -the curve of the avenue. It was a smart little landau which -rattled up to the door of Briony Lodge. As it pulled up, one of -the loafing men at the corner dashed forward to open the door in -the hope of earning a copper, but was elbowed away by another -loafer, who had rushed up with the same intention. A fierce -quarrel broke out, which was increased by the two guardsmen, who -took sides with one of the loungers, and by the scissors-grinder, -who was equally hot upon the other side. A blow was struck, and -in an instant the lady, who had stepped from her carriage, was -the centre of a little knot of flushed and struggling men, who -struck savagely at each other with their fists and sticks. Holmes -dashed into the crowd to protect the lady; but just as he reached -her he gave a cry and dropped to the ground, with the blood -running freely down his face. At his fall the guardsmen took to -their heels in one direction and the loungers in the other, while -a number of better-dressed people, who had watched the scuffle -without taking part in it, crowded in to help the lady and to -attend to the injured man. Irene Adler, as I will still call her, -had hurried up the steps; but she stood at the top with her -superb figure outlined against the lights of the hall, looking -back into the street. - -"Is the poor gentleman much hurt?" she asked. - -"He is dead," cried several voices. - -"No, no, there's life in him!" shouted another. "But he'll be -gone before you can get him to hospital." - -"He's a brave fellow," said a woman. "They would have had the -lady's purse and watch if it hadn't been for him. They were a -gang, and a rough one, too. Ah, he's breathing now." - -"He can't lie in the street. May we bring him in, marm?" - -"Surely. Bring him into the sitting-room. There is a comfortable -sofa. This way, please!" - -Slowly and solemnly he was borne into Briony Lodge and laid out -in the principal room, while I still observed the proceedings -from my post by the window. The lamps had been lit, but the -blinds had not been drawn, so that I could see Holmes as he lay -upon the couch. I do not know whether he was seized with -compunction at that moment for the part he was playing, but I -know that I never felt more heartily ashamed of myself in my life -than when I saw the beautiful creature against whom I was -conspiring, or the grace and kindliness with which she waited -upon the injured man. And yet it would be the blackest treachery -to Holmes to draw back now from the part which he had intrusted -to me. I hardened my heart, and took the smoke-rocket from under -my ulster. After all, I thought, we are not injuring her. We are -but preventing her from injuring another. - -Holmes had sat up upon the couch, and I saw him motion like a man -who is in need of air. A maid rushed across and threw open the -window. At the same instant I saw him raise his hand and at the -signal I tossed my rocket into the room with a cry of "Fire!" The -word was no sooner out of my mouth than the whole crowd of -spectators, well dressed and ill--gentlemen, ostlers, and -servant-maids--joined in a general shriek of "Fire!" Thick clouds -of smoke curled through the room and out at the open window. I -caught a glimpse of rushing figures, and a moment later the voice -of Holmes from within assuring them that it was a false alarm. -Slipping through the shouting crowd I made my way to the corner -of the street, and in ten minutes was rejoiced to find my -friend's arm in mine, and to get away from the scene of uproar. -He walked swiftly and in silence for some few minutes until we -had turned down one of the quiet streets which lead towards the -Edgeware Road. - -"You did it very nicely, Doctor," he remarked. "Nothing could -have been better. It is all right." - -"You have the photograph?" - -"I know where it is." - -"And how did you find out?" - -"She showed me, as I told you she would." - -"I am still in the dark." - -"I do not wish to make a mystery," said he, laughing. "The matter -was perfectly simple. You, of course, saw that everyone in the -street was an accomplice. They were all engaged for the evening." - -"I guessed as much." - -"Then, when the row broke out, I had a little moist red paint in -the palm of my hand. I rushed forward, fell down, clapped my hand -to my face, and became a piteous spectacle. It is an old trick." - -"That also I could fathom." - -"Then they carried me in. She was bound to have me in. What else -could she do? And into her sitting-room, which was the very room -which I suspected. It lay between that and her bedroom, and I was -determined to see which. They laid me on a couch, I motioned for -air, they were compelled to open the window, and you had your -chance." - -"How did that help you?" - -"It was all-important. When a woman thinks that her house is on -fire, her instinct is at once to rush to the thing which she -values most. It is a perfectly overpowering impulse, and I have -more than once taken advantage of it. In the case of the -Darlington substitution scandal it was of use to me, and also in -the Arnsworth Castle business. A married woman grabs at her baby; -an unmarried one reaches for her jewel-box. Now it was clear to -me that our lady of to-day had nothing in the house more precious -to her than what we are in quest of. She would rush to secure it. -The alarm of fire was admirably done. The smoke and shouting were -enough to shake nerves of steel. She responded beautifully. The -photograph is in a recess behind a sliding panel just above the -right bell-pull. She was there in an instant, and I caught a -glimpse of it as she half-drew it out. When I cried out that it -was a false alarm, she replaced it, glanced at the rocket, rushed -from the room, and I have not seen her since. I rose, and, making -my excuses, escaped from the house. I hesitated whether to -attempt to secure the photograph at once; but the coachman had -come in, and as he was watching me narrowly it seemed safer to -wait. A little over-precipitance may ruin all." - -"And now?" I asked. - -"Our quest is practically finished. I shall call with the King -to-morrow, and with you, if you care to come with us. We will be -shown into the sitting-room to wait for the lady, but it is -probable that when she comes she may find neither us nor the -photograph. It might be a satisfaction to his Majesty to regain -it with his own hands." - -"And when will you call?" - -"At eight in the morning. She will not be up, so that we shall -have a clear field. Besides, we must be prompt, for this marriage -may mean a complete change in her life and habits. I must wire to -the King without delay." - -We had reached Baker Street and had stopped at the door. He was -searching his pockets for the key when someone passing said: - -"Good-night, Mister Sherlock Holmes." - -There were several people on the pavement at the time, but the -greeting appeared to come from a slim youth in an ulster who had -hurried by. - -"I've heard that voice before," said Holmes, staring down the -dimly lit street. "Now, I wonder who the deuce that could have -been." - - -III. - -I slept at Baker Street that night, and we were engaged upon our -toast and coffee in the morning when the King of Bohemia rushed -into the room. - -"You have really got it!" he cried, grasping Sherlock Holmes by -either shoulder and looking eagerly into his face. - -"Not yet." - -"But you have hopes?" - -"I have hopes." - -"Then, come. I am all impatience to be gone." - -"We must have a cab." - -"No, my brougham is waiting." - -"Then that will simplify matters." We descended and started off -once more for Briony Lodge. - -"Irene Adler is married," remarked Holmes. - -"Married! When?" - -"Yesterday." - -"But to whom?" - -"To an English lawyer named Norton." - -"But she could not love him." - -"I am in hopes that she does." - -"And why in hopes?" - -"Because it would spare your Majesty all fear of future -annoyance. If the lady loves her husband, she does not love your -Majesty. If she does not love your Majesty, there is no reason -why she should interfere with your Majesty's plan." - -"It is true. And yet--Well! I wish she had been of my own -station! What a queen she would have made!" He relapsed into a -moody silence, which was not broken until we drew up in -Serpentine Avenue. - -The door of Briony Lodge was open, and an elderly woman stood -upon the steps. She watched us with a sardonic eye as we stepped -from the brougham. - -"Mr. Sherlock Holmes, I believe?" said she. - -"I am Mr. Holmes," answered my companion, looking at her with a -questioning and rather startled gaze. - -"Indeed! My mistress told me that you were likely to call. She -left this morning with her husband by the 5:15 train from Charing -Cross for the Continent." - -"What!" Sherlock Holmes staggered back, white with chagrin and -surprise. "Do you mean that she has left England?" - -"Never to return." - -"And the papers?" asked the King hoarsely. "All is lost." - -"We shall see." He pushed past the servant and rushed into the -drawing-room, followed by the King and myself. The furniture was -scattered about in every direction, with dismantled shelves and -open drawers, as if the lady had hurriedly ransacked them before -her flight. Holmes rushed at the bell-pull, tore back a small -sliding shutter, and, plunging in his hand, pulled out a -photograph and a letter. The photograph was of Irene Adler -herself in evening dress, the letter was superscribed to -"Sherlock Holmes, Esq. To be left till called for." My friend -tore it open and we all three read it together. It was dated at -midnight of the preceding night and ran in this way: - -"MY DEAR MR. SHERLOCK HOLMES,--You really did it very well. You -took me in completely. Until after the alarm of fire, I had not a -suspicion. But then, when I found how I had betrayed myself, I -began to think. I had been warned against you months ago. I had -been told that if the King employed an agent it would certainly -be you. And your address had been given me. Yet, with all this, -you made me reveal what you wanted to know. Even after I became -suspicious, I found it hard to think evil of such a dear, kind -old clergyman. But, you know, I have been trained as an actress -myself. Male costume is nothing new to me. I often take advantage -of the freedom which it gives. I sent John, the coachman, to -watch you, ran up stairs, got into my walking-clothes, as I call -them, and came down just as you departed. - -"Well, I followed you to your door, and so made sure that I was -really an object of interest to the celebrated Mr. Sherlock -Holmes. Then I, rather imprudently, wished you good-night, and -started for the Temple to see my husband. - -"We both thought the best resource was flight, when pursued by -so formidable an antagonist; so you will find the nest empty when -you call to-morrow. As to the photograph, your client may rest in -peace. I love and am loved by a better man than he. The King may -do what he will without hindrance from one whom he has cruelly -wronged. I keep it only to safeguard myself, and to preserve a -weapon which will always secure me from any steps which he might -take in the future. I leave a photograph which he might care to -possess; and I remain, dear Mr. Sherlock Holmes, - - "Very truly yours, - "IRENE NORTON, ne ADLER." - -"What a woman--oh, what a woman!" cried the King of Bohemia, when -we had all three read this epistle. "Did I not tell you how quick -and resolute she was? Would she not have made an admirable queen? -Is it not a pity that she was not on my level?" - -"From what I have seen of the lady she seems indeed to be on a -very different level to your Majesty," said Holmes coldly. "I am -sorry that I have not been able to bring your Majesty's business -to a more successful conclusion." - -"On the contrary, my dear sir," cried the King; "nothing could be -more successful. I know that her word is inviolate. The -photograph is now as safe as if it were in the fire." - -"I am glad to hear your Majesty say so." - -"I am immensely indebted to you. Pray tell me in what way I can -reward you. This ring--" He slipped an emerald snake ring from -his finger and held it out upon the palm of his hand. - -"Your Majesty has something which I should value even more -highly," said Holmes. - -"You have but to name it." - -"This photograph!" - -The King stared at him in amazement. - -"Irene's photograph!" he cried. "Certainly, if you wish it." - -"I thank your Majesty. Then there is no more to be done in the -matter. I have the honour to wish you a very good-morning." He -bowed, and, turning away without observing the hand which the -King had stretched out to him, he set off in my company for his -chambers. - -And that was how a great scandal threatened to affect the kingdom -of Bohemia, and how the best plans of Mr. Sherlock Holmes were -beaten by a woman's wit. He used to make merry over the -cleverness of women, but I have not heard him do it of late. And -when he speaks of Irene Adler, or when he refers to her -photograph, it is always under the honourable title of the woman. - - - -ADVENTURE II. THE RED-HEADED LEAGUE - -I had called upon my friend, Mr. Sherlock Holmes, one day in the -autumn of last year and found him in deep conversation with a -very stout, florid-faced, elderly gentleman with fiery red hair. -With an apology for my intrusion, I was about to withdraw when -Holmes pulled me abruptly into the room and closed the door -behind me. - -"You could not possibly have come at a better time, my dear -Watson," he said cordially. - -"I was afraid that you were engaged." - -"So I am. Very much so." - -"Then I can wait in the next room." - -"Not at all. This gentleman, Mr. Wilson, has been my partner and -helper in many of my most successful cases, and I have no -doubt that he will be of the utmost use to me in yours also." - -The stout gentleman half rose from his chair and gave a bob of -greeting, with a quick little questioning glance from his small -fat-encircled eyes. - -"Try the settee," said Holmes, relapsing into his armchair and -putting his fingertips together, as was his custom when in -judicial moods. "I know, my dear Watson, that you share my love -of all that is bizarre and outside the conventions and humdrum -routine of everyday life. You have shown your relish for it by -the enthusiasm which has prompted you to chronicle, and, if you -will excuse my saying so, somewhat to embellish so many of my own -little adventures." - -"Your cases have indeed been of the greatest interest to me," I -observed. - -"You will remember that I remarked the other day, just before we -went into the very simple problem presented by Miss Mary -Sutherland, that for strange effects and extraordinary -combinations we must go to life itself, which is always far more -daring than any effort of the imagination." - -"A proposition which I took the liberty of doubting." - -"You did, Doctor, but none the less you must come round to my -view, for otherwise I shall keep on piling fact upon fact on you -until your reason breaks down under them and acknowledges me to -be right. Now, Mr. Jabez Wilson here has been good enough to call -upon me this morning, and to begin a narrative which promises to -be one of the most singular which I have listened to for some -time. You have heard me remark that the strangest and most unique -things are very often connected not with the larger but with the -smaller crimes, and occasionally, indeed, where there is room for -doubt whether any positive crime has been committed. As far as I -have heard it is impossible for me to say whether the present -case is an instance of crime or not, but the course of events is -certainly among the most singular that I have ever listened to. -Perhaps, Mr. Wilson, you would have the great kindness to -recommence your narrative. I ask you not merely because my friend -Dr. Watson has not heard the opening part but also because the -peculiar nature of the story makes me anxious to have every -possible detail from your lips. As a rule, when I have heard some -slight indication of the course of events, I am able to guide -myself by the thousands of other similar cases which occur to my -memory. In the present instance I am forced to admit that the -facts are, to the best of my belief, unique." - -The portly client puffed out his chest with an appearance of some -little pride and pulled a dirty and wrinkled newspaper from the -inside pocket of his greatcoat. As he glanced down the -advertisement column, with his head thrust forward and the paper -flattened out upon his knee, I took a good look at the man and -endeavoured, after the fashion of my companion, to read the -indications which might be presented by his dress or appearance. - -I did not gain very much, however, by my inspection. Our visitor -bore every mark of being an average commonplace British -tradesman, obese, pompous, and slow. He wore rather baggy grey -shepherd's check trousers, a not over-clean black frock-coat, -unbuttoned in the front, and a drab waistcoat with a heavy brassy -Albert chain, and a square pierced bit of metal dangling down as -an ornament. A frayed top-hat and a faded brown overcoat with a -wrinkled velvet collar lay upon a chair beside him. Altogether, -look as I would, there was nothing remarkable about the man save -his blazing red head, and the expression of extreme chagrin and -discontent upon his features. - -Sherlock Holmes' quick eye took in my occupation, and he shook -his head with a smile as he noticed my questioning glances. -"Beyond the obvious facts that he has at some time done manual -labour, that he takes snuff, that he is a Freemason, that he has -been in China, and that he has done a considerable amount of -writing lately, I can deduce nothing else." - -Mr. Jabez Wilson started up in his chair, with his forefinger -upon the paper, but his eyes upon my companion. - -"How, in the name of good-fortune, did you know all that, Mr. -Holmes?" he asked. "How did you know, for example, that I did -manual labour. It's as true as gospel, for I began as a ship's -carpenter." - -"Your hands, my dear sir. Your right hand is quite a size larger -than your left. You have worked with it, and the muscles are more -developed." - -"Well, the snuff, then, and the Freemasonry?" - -"I won't insult your intelligence by telling you how I read that, -especially as, rather against the strict rules of your order, you -use an arc-and-compass breastpin." - -"Ah, of course, I forgot that. But the writing?" - -"What else can be indicated by that right cuff so very shiny for -five inches, and the left one with the smooth patch near the -elbow where you rest it upon the desk?" - -"Well, but China?" - -"The fish that you have tattooed immediately above your right -wrist could only have been done in China. I have made a small -study of tattoo marks and have even contributed to the literature -of the subject. That trick of staining the fishes' scales of a -delicate pink is quite peculiar to China. When, in addition, I -see a Chinese coin hanging from your watch-chain, the matter -becomes even more simple." - -Mr. Jabez Wilson laughed heavily. "Well, I never!" said he. "I -thought at first that you had done something clever, but I see -that there was nothing in it, after all." - -"I begin to think, Watson," said Holmes, "that I make a mistake -in explaining. 'Omne ignotum pro magnifico,' you know, and my -poor little reputation, such as it is, will suffer shipwreck if I -am so candid. Can you not find the advertisement, Mr. Wilson?" - -"Yes, I have got it now," he answered with his thick red finger -planted halfway down the column. "Here it is. This is what began -it all. You just read it for yourself, sir." - -I took the paper from him and read as follows: - -"TO THE RED-HEADED LEAGUE: On account of the bequest of the late -Ezekiah Hopkins, of Lebanon, Pennsylvania, U. S. A., there is now -another vacancy open which entitles a member of the League to a -salary of 4 pounds a week for purely nominal services. All -red-headed men who are sound in body and mind and above the age -of twenty-one years, are eligible. Apply in person on Monday, at -eleven o'clock, to Duncan Ross, at the offices of the League, 7 -Pope's Court, Fleet Street." - -"What on earth does this mean?" I ejaculated after I had twice -read over the extraordinary announcement. - -Holmes chuckled and wriggled in his chair, as was his habit when -in high spirits. "It is a little off the beaten track, isn't it?" -said he. "And now, Mr. Wilson, off you go at scratch and tell us -all about yourself, your household, and the effect which this -advertisement had upon your fortunes. You will first make a note, -Doctor, of the paper and the date." - -"It is The Morning Chronicle of April 27, 1890. Just two months -ago." - -"Very good. Now, Mr. Wilson?" - -"Well, it is just as I have been telling you, Mr. Sherlock -Holmes," said Jabez Wilson, mopping his forehead; "I have a small -pawnbroker's business at Coburg Square, near the City. It's not a -very large affair, and of late years it has not done more than -just give me a living. I used to be able to keep two assistants, -but now I only keep one; and I would have a job to pay him but -that he is willing to come for half wages so as to learn the -business." - -"What is the name of this obliging youth?" asked Sherlock Holmes. - -"His name is Vincent Spaulding, and he's not such a youth, -either. It's hard to say his age. I should not wish a smarter -assistant, Mr. Holmes; and I know very well that he could better -himself and earn twice what I am able to give him. But, after -all, if he is satisfied, why should I put ideas in his head?" - -"Why, indeed? You seem most fortunate in having an employ who -comes under the full market price. It is not a common experience -among employers in this age. I don't know that your assistant is -not as remarkable as your advertisement." - -"Oh, he has his faults, too," said Mr. Wilson. "Never was such a -fellow for photography. Snapping away with a camera when he ought -to be improving his mind, and then diving down into the cellar -like a rabbit into its hole to develop his pictures. That is his -main fault, but on the whole he's a good worker. There's no vice -in him." - -"He is still with you, I presume?" - -"Yes, sir. He and a girl of fourteen, who does a bit of simple -cooking and keeps the place clean--that's all I have in the -house, for I am a widower and never had any family. We live very -quietly, sir, the three of us; and we keep a roof over our heads -and pay our debts, if we do nothing more. - -"The first thing that put us out was that advertisement. -Spaulding, he came down into the office just this day eight -weeks, with this very paper in his hand, and he says: - -"'I wish to the Lord, Mr. Wilson, that I was a red-headed man.' - -"'Why that?' I asks. - -"'Why,' says he, 'here's another vacancy on the League of the -Red-headed Men. It's worth quite a little fortune to any man who -gets it, and I understand that there are more vacancies than -there are men, so that the trustees are at their wits' end what -to do with the money. If my hair would only change colour, here's -a nice little crib all ready for me to step into.' - -"'Why, what is it, then?' I asked. You see, Mr. Holmes, I am a -very stay-at-home man, and as my business came to me instead of -my having to go to it, I was often weeks on end without putting -my foot over the door-mat. In that way I didn't know much of what -was going on outside, and I was always glad of a bit of news. - -"'Have you never heard of the League of the Red-headed Men?' he -asked with his eyes open. - -"'Never.' - -"'Why, I wonder at that, for you are eligible yourself for one -of the vacancies.' - -"'And what are they worth?' I asked. - -"'Oh, merely a couple of hundred a year, but the work is slight, -and it need not interfere very much with one's other -occupations.' - -"Well, you can easily think that that made me prick up my ears, -for the business has not been over-good for some years, and an -extra couple of hundred would have been very handy. - -"'Tell me all about it,' said I. - -"'Well,' said he, showing me the advertisement, 'you can see for -yourself that the League has a vacancy, and there is the address -where you should apply for particulars. As far as I can make out, -the League was founded by an American millionaire, Ezekiah -Hopkins, who was very peculiar in his ways. He was himself -red-headed, and he had a great sympathy for all red-headed men; -so when he died it was found that he had left his enormous -fortune in the hands of trustees, with instructions to apply the -interest to the providing of easy berths to men whose hair is of -that colour. From all I hear it is splendid pay and very little to -do.' - -"'But,' said I, 'there would be millions of red-headed men who -would apply.' - -"'Not so many as you might think,' he answered. 'You see it is -really confined to Londoners, and to grown men. This American had -started from London when he was young, and he wanted to do the -old town a good turn. Then, again, I have heard it is no use your -applying if your hair is light red, or dark red, or anything but -real bright, blazing, fiery red. Now, if you cared to apply, Mr. -Wilson, you would just walk in; but perhaps it would hardly be -worth your while to put yourself out of the way for the sake of a -few hundred pounds.' - -"Now, it is a fact, gentlemen, as you may see for yourselves, -that my hair is of a very full and rich tint, so that it seemed -to me that if there was to be any competition in the matter I -stood as good a chance as any man that I had ever met. Vincent -Spaulding seemed to know so much about it that I thought he might -prove useful, so I just ordered him to put up the shutters for -the day and to come right away with me. He was very willing to -have a holiday, so we shut the business up and started off for -the address that was given us in the advertisement. - -"I never hope to see such a sight as that again, Mr. Holmes. From -north, south, east, and west every man who had a shade of red in -his hair had tramped into the city to answer the advertisement. -Fleet Street was choked with red-headed folk, and Pope's Court -looked like a coster's orange barrow. I should not have thought -there were so many in the whole country as were brought together -by that single advertisement. Every shade of colour they -were--straw, lemon, orange, brick, Irish-setter, liver, clay; -but, as Spaulding said, there were not many who had the real -vivid flame-coloured tint. When I saw how many were waiting, I -would have given it up in despair; but Spaulding would not hear -of it. How he did it I could not imagine, but he pushed and -pulled and butted until he got me through the crowd, and right up -to the steps which led to the office. There was a double stream -upon the stair, some going up in hope, and some coming back -dejected; but we wedged in as well as we could and soon found -ourselves in the office." - -"Your experience has been a most entertaining one," remarked -Holmes as his client paused and refreshed his memory with a huge -pinch of snuff. "Pray continue your very interesting statement." - -"There was nothing in the office but a couple of wooden chairs -and a deal table, behind which sat a small man with a head that -was even redder than mine. He said a few words to each candidate -as he came up, and then he always managed to find some fault in -them which would disqualify them. Getting a vacancy did not seem -to be such a very easy matter, after all. However, when our turn -came the little man was much more favourable to me than to any of -the others, and he closed the door as we entered, so that he -might have a private word with us. - -"'This is Mr. Jabez Wilson,' said my assistant, 'and he is -willing to fill a vacancy in the League.' - -"'And he is admirably suited for it,' the other answered. 'He has -every requirement. I cannot recall when I have seen anything so -fine.' He took a step backward, cocked his head on one side, and -gazed at my hair until I felt quite bashful. Then suddenly he -plunged forward, wrung my hand, and congratulated me warmly on my -success. - -"'It would be injustice to hesitate,' said he. 'You will, -however, I am sure, excuse me for taking an obvious precaution.' -With that he seized my hair in both his hands, and tugged until I -yelled with the pain. 'There is water in your eyes,' said he as -he released me. 'I perceive that all is as it should be. But we -have to be careful, for we have twice been deceived by wigs and -once by paint. I could tell you tales of cobbler's wax which -would disgust you with human nature.' He stepped over to the -window and shouted through it at the top of his voice that the -vacancy was filled. A groan of disappointment came up from below, -and the folk all trooped away in different directions until there -was not a red-head to be seen except my own and that of the -manager. - -"'My name,' said he, 'is Mr. Duncan Ross, and I am myself one of -the pensioners upon the fund left by our noble benefactor. Are -you a married man, Mr. Wilson? Have you a family?' - -"I answered that I had not. - -"His face fell immediately. - -"'Dear me!' he said gravely, 'that is very serious indeed! I am -sorry to hear you say that. The fund was, of course, for the -propagation and spread of the red-heads as well as for their -maintenance. It is exceedingly unfortunate that you should be a -bachelor.' - -"My face lengthened at this, Mr. Holmes, for I thought that I was -not to have the vacancy after all; but after thinking it over for -a few minutes he said that it would be all right. - -"'In the case of another,' said he, 'the objection might be -fatal, but we must stretch a point in favour of a man with such a -head of hair as yours. When shall you be able to enter upon your -new duties?' - -"'Well, it is a little awkward, for I have a business already,' -said I. - -"'Oh, never mind about that, Mr. Wilson!' said Vincent Spaulding. -'I should be able to look after that for you.' - -"'What would be the hours?' I asked. - -"'Ten to two.' - -"Now a pawnbroker's business is mostly done of an evening, Mr. -Holmes, especially Thursday and Friday evening, which is just -before pay-day; so it would suit me very well to earn a little in -the mornings. Besides, I knew that my assistant was a good man, -and that he would see to anything that turned up. - -"'That would suit me very well,' said I. 'And the pay?' - -"'Is 4 pounds a week.' - -"'And the work?' - -"'Is purely nominal.' - -"'What do you call purely nominal?' - -"'Well, you have to be in the office, or at least in the -building, the whole time. If you leave, you forfeit your whole -position forever. The will is very clear upon that point. You -don't comply with the conditions if you budge from the office -during that time.' - -"'It's only four hours a day, and I should not think of leaving,' -said I. - -"'No excuse will avail,' said Mr. Duncan Ross; 'neither sickness -nor business nor anything else. There you must stay, or you lose -your billet.' - -"'And the work?' - -"'Is to copy out the "Encyclopaedia Britannica." There is the first -volume of it in that press. You must find your own ink, pens, and -blotting-paper, but we provide this table and chair. Will you be -ready to-morrow?' - -"'Certainly,' I answered. - -"'Then, good-bye, Mr. Jabez Wilson, and let me congratulate you -once more on the important position which you have been fortunate -enough to gain.' He bowed me out of the room and I went home with -my assistant, hardly knowing what to say or do, I was so pleased -at my own good fortune. - -"Well, I thought over the matter all day, and by evening I was in -low spirits again; for I had quite persuaded myself that the -whole affair must be some great hoax or fraud, though what its -object might be I could not imagine. It seemed altogether past -belief that anyone could make such a will, or that they would pay -such a sum for doing anything so simple as copying out the -'Encyclopaedia Britannica.' Vincent Spaulding did what he could to -cheer me up, but by bedtime I had reasoned myself out of the -whole thing. However, in the morning I determined to have a look -at it anyhow, so I bought a penny bottle of ink, and with a -quill-pen, and seven sheets of foolscap paper, I started off for -Pope's Court. - -"Well, to my surprise and delight, everything was as right as -possible. The table was set out ready for me, and Mr. Duncan Ross -was there to see that I got fairly to work. He started me off -upon the letter A, and then he left me; but he would drop in from -time to time to see that all was right with me. At two o'clock he -bade me good-day, complimented me upon the amount that I had -written, and locked the door of the office after me. - -"This went on day after day, Mr. Holmes, and on Saturday the -manager came in and planked down four golden sovereigns for my -week's work. It was the same next week, and the same the week -after. Every morning I was there at ten, and every afternoon I -left at two. By degrees Mr. Duncan Ross took to coming in only -once of a morning, and then, after a time, he did not come in at -all. Still, of course, I never dared to leave the room for an -instant, for I was not sure when he might come, and the billet -was such a good one, and suited me so well, that I would not risk -the loss of it. - -"Eight weeks passed away like this, and I had written about -Abbots and Archery and Armour and Architecture and Attica, and -hoped with diligence that I might get on to the B's before very -long. It cost me something in foolscap, and I had pretty nearly -filled a shelf with my writings. And then suddenly the whole -business came to an end." - -"To an end?" - -"Yes, sir. And no later than this morning. I went to my work as -usual at ten o'clock, but the door was shut and locked, with a -little square of cardboard hammered on to the middle of the -panel with a tack. Here it is, and you can read for yourself." - -He held up a piece of white cardboard about the size of a sheet -of note-paper. It read in this fashion: - - THE RED-HEADED LEAGUE - - IS - - DISSOLVED. - - October 9, 1890. - -Sherlock Holmes and I surveyed this curt announcement and the -rueful face behind it, until the comical side of the affair so -completely overtopped every other consideration that we both -burst out into a roar of laughter. - -"I cannot see that there is anything very funny," cried our -client, flushing up to the roots of his flaming head. "If you can -do nothing better than laugh at me, I can go elsewhere." - -"No, no," cried Holmes, shoving him back into the chair from -which he had half risen. "I really wouldn't miss your case for -the world. It is most refreshingly unusual. But there is, if you -will excuse my saying so, something just a little funny about it. -Pray what steps did you take when you found the card upon the -door?" - -"I was staggered, sir. I did not know what to do. Then I called -at the offices round, but none of them seemed to know anything -about it. Finally, I went to the landlord, who is an accountant -living on the ground-floor, and I asked him if he could tell me -what had become of the Red-headed League. He said that he had -never heard of any such body. Then I asked him who Mr. Duncan -Ross was. He answered that the name was new to him. - -"'Well,' said I, 'the gentleman at No. 4.' - -"'What, the red-headed man?' - -"'Yes.' - -"'Oh,' said he, 'his name was William Morris. He was a solicitor -and was using my room as a temporary convenience until his new -premises were ready. He moved out yesterday.' - -"'Where could I find him?' - -"'Oh, at his new offices. He did tell me the address. Yes, 17 -King Edward Street, near St. Paul's.' - -"I started off, Mr. Holmes, but when I got to that address it was -a manufactory of artificial knee-caps, and no one in it had ever -heard of either Mr. William Morris or Mr. Duncan Ross." - -"And what did you do then?" asked Holmes. - -"I went home to Saxe-Coburg Square, and I took the advice of my -assistant. But he could not help me in any way. He could only say -that if I waited I should hear by post. But that was not quite -good enough, Mr. Holmes. I did not wish to lose such a place -without a struggle, so, as I had heard that you were good enough -to give advice to poor folk who were in need of it, I came right -away to you." - -"And you did very wisely," said Holmes. "Your case is an -exceedingly remarkable one, and I shall be happy to look into it. -From what you have told me I think that it is possible that -graver issues hang from it than might at first sight appear." - -"Grave enough!" said Mr. Jabez Wilson. "Why, I have lost four -pound a week." - -"As far as you are personally concerned," remarked Holmes, "I do -not see that you have any grievance against this extraordinary -league. On the contrary, you are, as I understand, richer by some -30 pounds, to say nothing of the minute knowledge which you have -gained on every subject which comes under the letter A. You have -lost nothing by them." - -"No, sir. But I want to find out about them, and who they are, -and what their object was in playing this prank--if it was a -prank--upon me. It was a pretty expensive joke for them, for it -cost them two and thirty pounds." - -"We shall endeavour to clear up these points for you. And, first, -one or two questions, Mr. Wilson. This assistant of yours who -first called your attention to the advertisement--how long had he -been with you?" - -"About a month then." - -"How did he come?" - -"In answer to an advertisement." - -"Was he the only applicant?" - -"No, I had a dozen." - -"Why did you pick him?" - -"Because he was handy and would come cheap." - -"At half-wages, in fact." - -"Yes." - -"What is he like, this Vincent Spaulding?" - -"Small, stout-built, very quick in his ways, no hair on his face, -though he's not short of thirty. Has a white splash of acid upon -his forehead." - -Holmes sat up in his chair in considerable excitement. "I thought -as much," said he. "Have you ever observed that his ears are -pierced for earrings?" - -"Yes, sir. He told me that a gipsy had done it for him when he -was a lad." - -"Hum!" said Holmes, sinking back in deep thought. "He is still -with you?" - -"Oh, yes, sir; I have only just left him." - -"And has your business been attended to in your absence?" - -"Nothing to complain of, sir. There's never very much to do of a -morning." - -"That will do, Mr. Wilson. I shall be happy to give you an -opinion upon the subject in the course of a day or two. To-day is -Saturday, and I hope that by Monday we may come to a conclusion." - -"Well, Watson," said Holmes when our visitor had left us, "what -do you make of it all?" - -"I make nothing of it," I answered frankly. "It is a most -mysterious business." - -"As a rule," said Holmes, "the more bizarre a thing is the less -mysterious it proves to be. It is your commonplace, featureless -crimes which are really puzzling, just as a commonplace face is -the most difficult to identify. But I must be prompt over this -matter." - -"What are you going to do, then?" I asked. - -"To smoke," he answered. "It is quite a three pipe problem, and I -beg that you won't speak to me for fifty minutes." He curled -himself up in his chair, with his thin knees drawn up to his -hawk-like nose, and there he sat with his eyes closed and his -black clay pipe thrusting out like the bill of some strange bird. -I had come to the conclusion that he had dropped asleep, and -indeed was nodding myself, when he suddenly sprang out of his -chair with the gesture of a man who has made up his mind and put -his pipe down upon the mantelpiece. - -"Sarasate plays at the St. James's Hall this afternoon," he -remarked. "What do you think, Watson? Could your patients spare -you for a few hours?" - -"I have nothing to do to-day. My practice is never very -absorbing." - -"Then put on your hat and come. I am going through the City -first, and we can have some lunch on the way. I observe that -there is a good deal of German music on the programme, which is -rather more to my taste than Italian or French. It is -introspective, and I want to introspect. Come along!" - -We travelled by the Underground as far as Aldersgate; and a short -walk took us to Saxe-Coburg Square, the scene of the singular -story which we had listened to in the morning. It was a poky, -little, shabby-genteel place, where four lines of dingy -two-storied brick houses looked out into a small railed-in -enclosure, where a lawn of weedy grass and a few clumps of faded -laurel-bushes made a hard fight against a smoke-laden and -uncongenial atmosphere. Three gilt balls and a brown board with -"JABEZ WILSON" in white letters, upon a corner house, announced -the place where our red-headed client carried on his business. -Sherlock Holmes stopped in front of it with his head on one side -and looked it all over, with his eyes shining brightly between -puckered lids. Then he walked slowly up the street, and then down -again to the corner, still looking keenly at the houses. Finally -he returned to the pawnbroker's, and, having thumped vigorously -upon the pavement with his stick two or three times, he went up -to the door and knocked. It was instantly opened by a -bright-looking, clean-shaven young fellow, who asked him to step -in. - -"Thank you," said Holmes, "I only wished to ask you how you would -go from here to the Strand." - -"Third right, fourth left," answered the assistant promptly, -closing the door. - -"Smart fellow, that," observed Holmes as we walked away. "He is, -in my judgment, the fourth smartest man in London, and for daring -I am not sure that he has not a claim to be third. I have known -something of him before." - -"Evidently," said I, "Mr. Wilson's assistant counts for a good -deal in this mystery of the Red-headed League. I am sure that you -inquired your way merely in order that you might see him." - -"Not him." - -"What then?" - -"The knees of his trousers." - -"And what did you see?" - -"What I expected to see." - -"Why did you beat the pavement?" - -"My dear doctor, this is a time for observation, not for talk. We -are spies in an enemy's country. We know something of Saxe-Coburg -Square. Let us now explore the parts which lie behind it." - -The road in which we found ourselves as we turned round the -corner from the retired Saxe-Coburg Square presented as great a -contrast to it as the front of a picture does to the back. It was -one of the main arteries which conveyed the traffic of the City -to the north and west. The roadway was blocked with the immense -stream of commerce flowing in a double tide inward and outward, -while the footpaths were black with the hurrying swarm of -pedestrians. It was difficult to realise as we looked at the line -of fine shops and stately business premises that they really -abutted on the other side upon the faded and stagnant square -which we had just quitted. - -"Let me see," said Holmes, standing at the corner and glancing -along the line, "I should like just to remember the order of the -houses here. It is a hobby of mine to have an exact knowledge of -London. There is Mortimer's, the tobacconist, the little -newspaper shop, the Coburg branch of the City and Suburban Bank, -the Vegetarian Restaurant, and McFarlane's carriage-building -depot. That carries us right on to the other block. And now, -Doctor, we've done our work, so it's time we had some play. A -sandwich and a cup of coffee, and then off to violin-land, where -all is sweetness and delicacy and harmony, and there are no -red-headed clients to vex us with their conundrums." - -My friend was an enthusiastic musician, being himself not only a -very capable performer but a composer of no ordinary merit. All -the afternoon he sat in the stalls wrapped in the most perfect -happiness, gently waving his long, thin fingers in time to the -music, while his gently smiling face and his languid, dreamy eyes -were as unlike those of Holmes the sleuth-hound, Holmes the -relentless, keen-witted, ready-handed criminal agent, as it was -possible to conceive. In his singular character the dual nature -alternately asserted itself, and his extreme exactness and -astuteness represented, as I have often thought, the reaction -against the poetic and contemplative mood which occasionally -predominated in him. The swing of his nature took him from -extreme languor to devouring energy; and, as I knew well, he was -never so truly formidable as when, for days on end, he had been -lounging in his armchair amid his improvisations and his -black-letter editions. Then it was that the lust of the chase -would suddenly come upon him, and that his brilliant reasoning -power would rise to the level of intuition, until those who were -unacquainted with his methods would look askance at him as on a -man whose knowledge was not that of other mortals. When I saw him -that afternoon so enwrapped in the music at St. James's Hall I -felt that an evil time might be coming upon those whom he had set -himself to hunt down. - -"You want to go home, no doubt, Doctor," he remarked as we -emerged. - -"Yes, it would be as well." - -"And I have some business to do which will take some hours. This -business at Coburg Square is serious." - -"Why serious?" - -"A considerable crime is in contemplation. I have every reason to -believe that we shall be in time to stop it. But to-day being -Saturday rather complicates matters. I shall want your help -to-night." - -"At what time?" - -"Ten will be early enough." - -"I shall be at Baker Street at ten." - -"Very well. And, I say, Doctor, there may be some little danger, -so kindly put your army revolver in your pocket." He waved his -hand, turned on his heel, and disappeared in an instant among the -crowd. - -I trust that I am not more dense than my neighbours, but I was -always oppressed with a sense of my own stupidity in my dealings -with Sherlock Holmes. Here I had heard what he had heard, I had -seen what he had seen, and yet from his words it was evident that -he saw clearly not only what had happened but what was about to -happen, while to me the whole business was still confused and -grotesque. As I drove home to my house in Kensington I thought -over it all, from the extraordinary story of the red-headed -copier of the "Encyclopaedia" down to the visit to Saxe-Coburg -Square, and the ominous words with which he had parted from me. -What was this nocturnal expedition, and why should I go armed? -Where were we going, and what were we to do? I had the hint from -Holmes that this smooth-faced pawnbroker's assistant was a -formidable man--a man who might play a deep game. I tried to -puzzle it out, but gave it up in despair and set the matter aside -until night should bring an explanation. - -It was a quarter-past nine when I started from home and made my -way across the Park, and so through Oxford Street to Baker -Street. Two hansoms were standing at the door, and as I entered -the passage I heard the sound of voices from above. On entering -his room I found Holmes in animated conversation with two men, -one of whom I recognised as Peter Jones, the official police -agent, while the other was a long, thin, sad-faced man, with a -very shiny hat and oppressively respectable frock-coat. - -"Ha! Our party is complete," said Holmes, buttoning up his -pea-jacket and taking his heavy hunting crop from the rack. -"Watson, I think you know Mr. Jones, of Scotland Yard? Let me -introduce you to Mr. Merryweather, who is to be our companion in -to-night's adventure." - -"We're hunting in couples again, Doctor, you see," said Jones in -his consequential way. "Our friend here is a wonderful man for -starting a chase. All he wants is an old dog to help him to do -the running down." - -"I hope a wild goose may not prove to be the end of our chase," -observed Mr. Merryweather gloomily. - -"You may place considerable confidence in Mr. Holmes, sir," said -the police agent loftily. "He has his own little methods, which -are, if he won't mind my saying so, just a little too theoretical -and fantastic, but he has the makings of a detective in him. It -is not too much to say that once or twice, as in that business of -the Sholto murder and the Agra treasure, he has been more nearly -correct than the official force." - -"Oh, if you say so, Mr. Jones, it is all right," said the -stranger with deference. "Still, I confess that I miss my rubber. -It is the first Saturday night for seven-and-twenty years that I -have not had my rubber." - -"I think you will find," said Sherlock Holmes, "that you will -play for a higher stake to-night than you have ever done yet, and -that the play will be more exciting. For you, Mr. Merryweather, -the stake will be some 30,000 pounds; and for you, Jones, it will -be the man upon whom you wish to lay your hands." - -"John Clay, the murderer, thief, smasher, and forger. He's a -young man, Mr. Merryweather, but he is at the head of his -profession, and I would rather have my bracelets on him than on -any criminal in London. He's a remarkable man, is young John -Clay. His grandfather was a royal duke, and he himself has been -to Eton and Oxford. His brain is as cunning as his fingers, and -though we meet signs of him at every turn, we never know where to -find the man himself. He'll crack a crib in Scotland one week, -and be raising money to build an orphanage in Cornwall the next. -I've been on his track for years and have never set eyes on him -yet." - -"I hope that I may have the pleasure of introducing you to-night. -I've had one or two little turns also with Mr. John Clay, and I -agree with you that he is at the head of his profession. It is -past ten, however, and quite time that we started. If you two -will take the first hansom, Watson and I will follow in the -second." - -Sherlock Holmes was not very communicative during the long drive -and lay back in the cab humming the tunes which he had heard in -the afternoon. We rattled through an endless labyrinth of gas-lit -streets until we emerged into Farrington Street. - -"We are close there now," my friend remarked. "This fellow -Merryweather is a bank director, and personally interested in the -matter. I thought it as well to have Jones with us also. He is -not a bad fellow, though an absolute imbecile in his profession. -He has one positive virtue. He is as brave as a bulldog and as -tenacious as a lobster if he gets his claws upon anyone. Here we -are, and they are waiting for us." - -We had reached the same crowded thoroughfare in which we had -found ourselves in the morning. Our cabs were dismissed, and, -following the guidance of Mr. Merryweather, we passed down a -narrow passage and through a side door, which he opened for us. -Within there was a small corridor, which ended in a very massive -iron gate. This also was opened, and led down a flight of winding -stone steps, which terminated at another formidable gate. Mr. -Merryweather stopped to light a lantern, and then conducted us -down a dark, earth-smelling passage, and so, after opening a -third door, into a huge vault or cellar, which was piled all -round with crates and massive boxes. - -"You are not very vulnerable from above," Holmes remarked as he -held up the lantern and gazed about him. - -"Nor from below," said Mr. Merryweather, striking his stick upon -the flags which lined the floor. "Why, dear me, it sounds quite -hollow!" he remarked, looking up in surprise. - -"I must really ask you to be a little more quiet!" said Holmes -severely. "You have already imperilled the whole success of our -expedition. Might I beg that you would have the goodness to sit -down upon one of those boxes, and not to interfere?" - -The solemn Mr. Merryweather perched himself upon a crate, with a -very injured expression upon his face, while Holmes fell upon his -knees upon the floor and, with the lantern and a magnifying lens, -began to examine minutely the cracks between the stones. A few -seconds sufficed to satisfy him, for he sprang to his feet again -and put his glass in his pocket. - -"We have at least an hour before us," he remarked, "for they can -hardly take any steps until the good pawnbroker is safely in bed. -Then they will not lose a minute, for the sooner they do their -work the longer time they will have for their escape. We are at -present, Doctor--as no doubt you have divined--in the cellar of -the City branch of one of the principal London banks. Mr. -Merryweather is the chairman of directors, and he will explain to -you that there are reasons why the more daring criminals of -London should take a considerable interest in this cellar at -present." - -"It is our French gold," whispered the director. "We have had -several warnings that an attempt might be made upon it." - -"Your French gold?" - -"Yes. We had occasion some months ago to strengthen our resources -and borrowed for that purpose 30,000 napoleons from the Bank of -France. It has become known that we have never had occasion to -unpack the money, and that it is still lying in our cellar. The -crate upon which I sit contains 2,000 napoleons packed between -layers of lead foil. Our reserve of bullion is much larger at -present than is usually kept in a single branch office, and the -directors have had misgivings upon the subject." - -"Which were very well justified," observed Holmes. "And now it is -time that we arranged our little plans. I expect that within an -hour matters will come to a head. In the meantime Mr. -Merryweather, we must put the screen over that dark lantern." - -"And sit in the dark?" - -"I am afraid so. I had brought a pack of cards in my pocket, and -I thought that, as we were a partie carre, you might have your -rubber after all. But I see that the enemy's preparations have -gone so far that we cannot risk the presence of a light. And, -first of all, we must choose our positions. These are daring men, -and though we shall take them at a disadvantage, they may do us -some harm unless we are careful. I shall stand behind this crate, -and do you conceal yourselves behind those. Then, when I flash a -light upon them, close in swiftly. If they fire, Watson, have no -compunction about shooting them down." - -I placed my revolver, cocked, upon the top of the wooden case -behind which I crouched. Holmes shot the slide across the front -of his lantern and left us in pitch darkness--such an absolute -darkness as I have never before experienced. The smell of hot -metal remained to assure us that the light was still there, ready -to flash out at a moment's notice. To me, with my nerves worked -up to a pitch of expectancy, there was something depressing and -subduing in the sudden gloom, and in the cold dank air of the -vault. - -"They have but one retreat," whispered Holmes. "That is back -through the house into Saxe-Coburg Square. I hope that you have -done what I asked you, Jones?" - -"I have an inspector and two officers waiting at the front door." - -"Then we have stopped all the holes. And now we must be silent -and wait." - -What a time it seemed! From comparing notes afterwards it was but -an hour and a quarter, yet it appeared to me that the night must -have almost gone and the dawn be breaking above us. My limbs -were weary and stiff, for I feared to change my position; yet my -nerves were worked up to the highest pitch of tension, and my -hearing was so acute that I could not only hear the gentle -breathing of my companions, but I could distinguish the deeper, -heavier in-breath of the bulky Jones from the thin, sighing note -of the bank director. From my position I could look over the case -in the direction of the floor. Suddenly my eyes caught the glint -of a light. - -At first it was but a lurid spark upon the stone pavement. Then -it lengthened out until it became a yellow line, and then, -without any warning or sound, a gash seemed to open and a hand -appeared, a white, almost womanly hand, which felt about in the -centre of the little area of light. For a minute or more the -hand, with its writhing fingers, protruded out of the floor. Then -it was withdrawn as suddenly as it appeared, and all was dark -again save the single lurid spark which marked a chink between -the stones. - -Its disappearance, however, was but momentary. With a rending, -tearing sound, one of the broad, white stones turned over upon -its side and left a square, gaping hole, through which streamed -the light of a lantern. Over the edge there peeped a clean-cut, -boyish face, which looked keenly about it, and then, with a hand -on either side of the aperture, drew itself shoulder-high and -waist-high, until one knee rested upon the edge. In another -instant he stood at the side of the hole and was hauling after -him a companion, lithe and small like himself, with a pale face -and a shock of very red hair. - -"It's all clear," he whispered. "Have you the chisel and the -bags? Great Scott! Jump, Archie, jump, and I'll swing for it!" - -Sherlock Holmes had sprung out and seized the intruder by the -collar. The other dived down the hole, and I heard the sound of -rending cloth as Jones clutched at his skirts. The light flashed -upon the barrel of a revolver, but Holmes' hunting crop came -down on the man's wrist, and the pistol clinked upon the stone -floor. - -"It's no use, John Clay," said Holmes blandly. "You have no -chance at all." - -"So I see," the other answered with the utmost coolness. "I fancy -that my pal is all right, though I see you have got his -coat-tails." - -"There are three men waiting for him at the door," said Holmes. - -"Oh, indeed! You seem to have done the thing very completely. I -must compliment you." - -"And I you," Holmes answered. "Your red-headed idea was very new -and effective." - -"You'll see your pal again presently," said Jones. "He's quicker -at climbing down holes than I am. Just hold out while I fix the -derbies." - -"I beg that you will not touch me with your filthy hands," -remarked our prisoner as the handcuffs clattered upon his wrists. -"You may not be aware that I have royal blood in my veins. Have -the goodness, also, when you address me always to say 'sir' and -'please.'" - -"All right," said Jones with a stare and a snigger. "Well, would -you please, sir, march upstairs, where we can get a cab to carry -your Highness to the police-station?" - -"That is better," said John Clay serenely. He made a sweeping bow -to the three of us and walked quietly off in the custody of the -detective. - -"Really, Mr. Holmes," said Mr. Merryweather as we followed them -from the cellar, "I do not know how the bank can thank you or -repay you. There is no doubt that you have detected and defeated -in the most complete manner one of the most determined attempts -at bank robbery that have ever come within my experience." - -"I have had one or two little scores of my own to settle with Mr. -John Clay," said Holmes. "I have been at some small expense over -this matter, which I shall expect the bank to refund, but beyond -that I am amply repaid by having had an experience which is in -many ways unique, and by hearing the very remarkable narrative of -the Red-headed League." - - -"You see, Watson," he explained in the early hours of the morning -as we sat over a glass of whisky and soda in Baker Street, "it -was perfectly obvious from the first that the only possible -object of this rather fantastic business of the advertisement of -the League, and the copying of the 'Encyclopaedia,' must be to get -this not over-bright pawnbroker out of the way for a number of -hours every day. It was a curious way of managing it, but, -really, it would be difficult to suggest a better. The method was -no doubt suggested to Clay's ingenious mind by the colour of his -accomplice's hair. The 4 pounds a week was a lure which must draw -him, and what was it to them, who were playing for thousands? -They put in the advertisement, one rogue has the temporary -office, the other rogue incites the man to apply for it, and -together they manage to secure his absence every morning in the -week. From the time that I heard of the assistant having come for -half wages, it was obvious to me that he had some strong motive -for securing the situation." - -"But how could you guess what the motive was?" - -"Had there been women in the house, I should have suspected a -mere vulgar intrigue. That, however, was out of the question. The -man's business was a small one, and there was nothing in his -house which could account for such elaborate preparations, and -such an expenditure as they were at. It must, then, be something -out of the house. What could it be? I thought of the assistant's -fondness for photography, and his trick of vanishing into the -cellar. The cellar! There was the end of this tangled clue. Then -I made inquiries as to this mysterious assistant and found that I -had to deal with one of the coolest and most daring criminals in -London. He was doing something in the cellar--something which -took many hours a day for months on end. What could it be, once -more? I could think of nothing save that he was running a tunnel -to some other building. - -"So far I had got when we went to visit the scene of action. I -surprised you by beating upon the pavement with my stick. I was -ascertaining whether the cellar stretched out in front or behind. -It was not in front. Then I rang the bell, and, as I hoped, the -assistant answered it. We have had some skirmishes, but we had -never set eyes upon each other before. I hardly looked at his -face. His knees were what I wished to see. You must yourself have -remarked how worn, wrinkled, and stained they were. They spoke of -those hours of burrowing. The only remaining point was what they -were burrowing for. I walked round the corner, saw the City and -Suburban Bank abutted on our friend's premises, and felt that I -had solved my problem. When you drove home after the concert I -called upon Scotland Yard and upon the chairman of the bank -directors, with the result that you have seen." - -"And how could you tell that they would make their attempt -to-night?" I asked. - -"Well, when they closed their League offices that was a sign that -they cared no longer about Mr. Jabez Wilson's presence--in other -words, that they had completed their tunnel. But it was essential -that they should use it soon, as it might be discovered, or the -bullion might be removed. Saturday would suit them better than -any other day, as it would give them two days for their escape. -For all these reasons I expected them to come to-night." - -"You reasoned it out beautifully," I exclaimed in unfeigned -admiration. "It is so long a chain, and yet every link rings -true." - -"It saved me from ennui," he answered, yawning. "Alas! I already -feel it closing in upon me. My life is spent in one long effort -to escape from the commonplaces of existence. These little -problems help me to do so." - -"And you are a benefactor of the race," said I. - -He shrugged his shoulders. "Well, perhaps, after all, it is of -some little use," he remarked. "'L'homme c'est rien--l'oeuvre -c'est tout,' as Gustave Flaubert wrote to George Sand." - - - -ADVENTURE III. A CASE OF IDENTITY - -"My dear fellow," said Sherlock Holmes as we sat on either side -of the fire in his lodgings at Baker Street, "life is infinitely -stranger than anything which the mind of man could invent. We -would not dare to conceive the things which are really mere -commonplaces of existence. If we could fly out of that window -hand in hand, hover over this great city, gently remove the -roofs, and peep in at the queer things which are going on, the -strange coincidences, the plannings, the cross-purposes, the -wonderful chains of events, working through generations, and -leading to the most outr results, it would make all fiction with -its conventionalities and foreseen conclusions most stale and -unprofitable." - -"And yet I am not convinced of it," I answered. "The cases which -come to light in the papers are, as a rule, bald enough, and -vulgar enough. We have in our police reports realism pushed to -its extreme limits, and yet the result is, it must be confessed, -neither fascinating nor artistic." - -"A certain selection and discretion must be used in producing a -realistic effect," remarked Holmes. "This is wanting in the -police report, where more stress is laid, perhaps, upon the -platitudes of the magistrate than upon the details, which to an -observer contain the vital essence of the whole matter. Depend -upon it, there is nothing so unnatural as the commonplace." - -I smiled and shook my head. "I can quite understand your thinking -so," I said. "Of course, in your position of unofficial adviser -and helper to everybody who is absolutely puzzled, throughout -three continents, you are brought in contact with all that is -strange and bizarre. But here"--I picked up the morning paper -from the ground--"let us put it to a practical test. Here is the -first heading upon which I come. 'A husband's cruelty to his -wife.' There is half a column of print, but I know without -reading it that it is all perfectly familiar to me. There is, of -course, the other woman, the drink, the push, the blow, the -bruise, the sympathetic sister or landlady. The crudest of -writers could invent nothing more crude." - -"Indeed, your example is an unfortunate one for your argument," -said Holmes, taking the paper and glancing his eye down it. "This -is the Dundas separation case, and, as it happens, I was engaged -in clearing up some small points in connection with it. The -husband was a teetotaler, there was no other woman, and the -conduct complained of was that he had drifted into the habit of -winding up every meal by taking out his false teeth and hurling -them at his wife, which, you will allow, is not an action likely -to occur to the imagination of the average story-teller. Take a -pinch of snuff, Doctor, and acknowledge that I have scored over -you in your example." - -He held out his snuffbox of old gold, with a great amethyst in -the centre of the lid. Its splendour was in such contrast to his -homely ways and simple life that I could not help commenting upon -it. - -"Ah," said he, "I forgot that I had not seen you for some weeks. -It is a little souvenir from the King of Bohemia in return for my -assistance in the case of the Irene Adler papers." - -"And the ring?" I asked, glancing at a remarkable brilliant which -sparkled upon his finger. - -"It was from the reigning family of Holland, though the matter in -which I served them was of such delicacy that I cannot confide it -even to you, who have been good enough to chronicle one or two of -my little problems." - -"And have you any on hand just now?" I asked with interest. - -"Some ten or twelve, but none which present any feature of -interest. They are important, you understand, without being -interesting. Indeed, I have found that it is usually in -unimportant matters that there is a field for the observation, -and for the quick analysis of cause and effect which gives the -charm to an investigation. The larger crimes are apt to be the -simpler, for the bigger the crime the more obvious, as a rule, is -the motive. In these cases, save for one rather intricate matter -which has been referred to me from Marseilles, there is nothing -which presents any features of interest. It is possible, however, -that I may have something better before very many minutes are -over, for this is one of my clients, or I am much mistaken." - -He had risen from his chair and was standing between the parted -blinds gazing down into the dull neutral-tinted London street. -Looking over his shoulder, I saw that on the pavement opposite -there stood a large woman with a heavy fur boa round her neck, -and a large curling red feather in a broad-brimmed hat which was -tilted in a coquettish Duchess of Devonshire fashion over her -ear. From under this great panoply she peeped up in a nervous, -hesitating fashion at our windows, while her body oscillated -backward and forward, and her fingers fidgeted with her glove -buttons. Suddenly, with a plunge, as of the swimmer who leaves -the bank, she hurried across the road, and we heard the sharp -clang of the bell. - -"I have seen those symptoms before," said Holmes, throwing his -cigarette into the fire. "Oscillation upon the pavement always -means an affaire de coeur. She would like advice, but is not sure -that the matter is not too delicate for communication. And yet -even here we may discriminate. When a woman has been seriously -wronged by a man she no longer oscillates, and the usual symptom -is a broken bell wire. Here we may take it that there is a love -matter, but that the maiden is not so much angry as perplexed, or -grieved. But here she comes in person to resolve our doubts." - -As he spoke there was a tap at the door, and the boy in buttons -entered to announce Miss Mary Sutherland, while the lady herself -loomed behind his small black figure like a full-sailed -merchant-man behind a tiny pilot boat. Sherlock Holmes welcomed -her with the easy courtesy for which he was remarkable, and, -having closed the door and bowed her into an armchair, he looked -her over in the minute and yet abstracted fashion which was -peculiar to him. - -"Do you not find," he said, "that with your short sight it is a -little trying to do so much typewriting?" - -"I did at first," she answered, "but now I know where the letters -are without looking." Then, suddenly realising the full purport -of his words, she gave a violent start and looked up, with fear -and astonishment upon her broad, good-humoured face. "You've -heard about me, Mr. Holmes," she cried, "else how could you know -all that?" - -"Never mind," said Holmes, laughing; "it is my business to know -things. Perhaps I have trained myself to see what others -overlook. If not, why should you come to consult me?" - -"I came to you, sir, because I heard of you from Mrs. Etherege, -whose husband you found so easy when the police and everyone had -given him up for dead. Oh, Mr. Holmes, I wish you would do as -much for me. I'm not rich, but still I have a hundred a year in -my own right, besides the little that I make by the machine, and -I would give it all to know what has become of Mr. Hosmer Angel." - -"Why did you come away to consult me in such a hurry?" asked -Sherlock Holmes, with his finger-tips together and his eyes to -the ceiling. - -Again a startled look came over the somewhat vacuous face of Miss -Mary Sutherland. "Yes, I did bang out of the house," she said, -"for it made me angry to see the easy way in which Mr. -Windibank--that is, my father--took it all. He would not go to -the police, and he would not go to you, and so at last, as he -would do nothing and kept on saying that there was no harm done, -it made me mad, and I just on with my things and came right away -to you." - -"Your father," said Holmes, "your stepfather, surely, since the -name is different." - -"Yes, my stepfather. I call him father, though it sounds funny, -too, for he is only five years and two months older than myself." - -"And your mother is alive?" - -"Oh, yes, mother is alive and well. I wasn't best pleased, Mr. -Holmes, when she married again so soon after father's death, and -a man who was nearly fifteen years younger than herself. Father -was a plumber in the Tottenham Court Road, and he left a tidy -business behind him, which mother carried on with Mr. Hardy, the -foreman; but when Mr. Windibank came he made her sell the -business, for he was very superior, being a traveller in wines. -They got 4700 pounds for the goodwill and interest, which wasn't -near as much as father could have got if he had been alive." - -I had expected to see Sherlock Holmes impatient under this -rambling and inconsequential narrative, but, on the contrary, he -had listened with the greatest concentration of attention. - -"Your own little income," he asked, "does it come out of the -business?" - -"Oh, no, sir. It is quite separate and was left me by my uncle -Ned in Auckland. It is in New Zealand stock, paying 4 1/2 per -cent. Two thousand five hundred pounds was the amount, but I can -only touch the interest." - -"You interest me extremely," said Holmes. "And since you draw so -large a sum as a hundred a year, with what you earn into the -bargain, you no doubt travel a little and indulge yourself in -every way. I believe that a single lady can get on very nicely -upon an income of about 60 pounds." - -"I could do with much less than that, Mr. Holmes, but you -understand that as long as I live at home I don't wish to be a -burden to them, and so they have the use of the money just while -I am staying with them. Of course, that is only just for the -time. Mr. Windibank draws my interest every quarter and pays it -over to mother, and I find that I can do pretty well with what I -earn at typewriting. It brings me twopence a sheet, and I can -often do from fifteen to twenty sheets in a day." - -"You have made your position very clear to me," said Holmes. -"This is my friend, Dr. Watson, before whom you can speak as -freely as before myself. Kindly tell us now all about your -connection with Mr. Hosmer Angel." - -A flush stole over Miss Sutherland's face, and she picked -nervously at the fringe of her jacket. "I met him first at the -gasfitters' ball," she said. "They used to send father tickets -when he was alive, and then afterwards they remembered us, and -sent them to mother. Mr. Windibank did not wish us to go. He -never did wish us to go anywhere. He would get quite mad if I -wanted so much as to join a Sunday-school treat. But this time I -was set on going, and I would go; for what right had he to -prevent? He said the folk were not fit for us to know, when all -father's friends were to be there. And he said that I had nothing -fit to wear, when I had my purple plush that I had never so much -as taken out of the drawer. At last, when nothing else would do, -he went off to France upon the business of the firm, but we went, -mother and I, with Mr. Hardy, who used to be our foreman, and it -was there I met Mr. Hosmer Angel." - -"I suppose," said Holmes, "that when Mr. Windibank came back from -France he was very annoyed at your having gone to the ball." - -"Oh, well, he was very good about it. He laughed, I remember, and -shrugged his shoulders, and said there was no use denying -anything to a woman, for she would have her way." - -"I see. Then at the gasfitters' ball you met, as I understand, a -gentleman called Mr. Hosmer Angel." - -"Yes, sir. I met him that night, and he called next day to ask if -we had got home all safe, and after that we met him--that is to -say, Mr. Holmes, I met him twice for walks, but after that father -came back again, and Mr. Hosmer Angel could not come to the house -any more." - -"No?" - -"Well, you know father didn't like anything of the sort. He -wouldn't have any visitors if he could help it, and he used to -say that a woman should be happy in her own family circle. But -then, as I used to say to mother, a woman wants her own circle to -begin with, and I had not got mine yet." - -"But how about Mr. Hosmer Angel? Did he make no attempt to see -you?" - -"Well, father was going off to France again in a week, and Hosmer -wrote and said that it would be safer and better not to see each -other until he had gone. We could write in the meantime, and he -used to write every day. I took the letters in in the morning, so -there was no need for father to know." - -"Were you engaged to the gentleman at this time?" - -"Oh, yes, Mr. Holmes. We were engaged after the first walk that -we took. Hosmer--Mr. Angel--was a cashier in an office in -Leadenhall Street--and--" - -"What office?" - -"That's the worst of it, Mr. Holmes, I don't know." - -"Where did he live, then?" - -"He slept on the premises." - -"And you don't know his address?" - -"No--except that it was Leadenhall Street." - -"Where did you address your letters, then?" - -"To the Leadenhall Street Post Office, to be left till called -for. He said that if they were sent to the office he would be -chaffed by all the other clerks about having letters from a lady, -so I offered to typewrite them, like he did his, but he wouldn't -have that, for he said that when I wrote them they seemed to come -from me, but when they were typewritten he always felt that the -machine had come between us. That will just show you how fond he -was of me, Mr. Holmes, and the little things that he would think -of." - -"It was most suggestive," said Holmes. "It has long been an axiom -of mine that the little things are infinitely the most important. -Can you remember any other little things about Mr. Hosmer Angel?" - -"He was a very shy man, Mr. Holmes. He would rather walk with me -in the evening than in the daylight, for he said that he hated to -be conspicuous. Very retiring and gentlemanly he was. Even his -voice was gentle. He'd had the quinsy and swollen glands when he -was young, he told me, and it had left him with a weak throat, -and a hesitating, whispering fashion of speech. He was always -well dressed, very neat and plain, but his eyes were weak, just -as mine are, and he wore tinted glasses against the glare." - -"Well, and what happened when Mr. Windibank, your stepfather, -returned to France?" - -"Mr. Hosmer Angel came to the house again and proposed that we -should marry before father came back. He was in dreadful earnest -and made me swear, with my hands on the Testament, that whatever -happened I would always be true to him. Mother said he was quite -right to make me swear, and that it was a sign of his passion. -Mother was all in his favour from the first and was even fonder -of him than I was. Then, when they talked of marrying within the -week, I began to ask about father; but they both said never to -mind about father, but just to tell him afterwards, and mother -said she would make it all right with him. I didn't quite like -that, Mr. Holmes. It seemed funny that I should ask his leave, as -he was only a few years older than me; but I didn't want to do -anything on the sly, so I wrote to father at Bordeaux, where the -company has its French offices, but the letter came back to me on -the very morning of the wedding." - -"It missed him, then?" - -"Yes, sir; for he had started to England just before it arrived." - -"Ha! that was unfortunate. Your wedding was arranged, then, for -the Friday. Was it to be in church?" - -"Yes, sir, but very quietly. It was to be at St. Saviour's, near -King's Cross, and we were to have breakfast afterwards at the St. -Pancras Hotel. Hosmer came for us in a hansom, but as there were -two of us he put us both into it and stepped himself into a -four-wheeler, which happened to be the only other cab in the -street. We got to the church first, and when the four-wheeler -drove up we waited for him to step out, but he never did, and -when the cabman got down from the box and looked there was no one -there! The cabman said that he could not imagine what had become -of him, for he had seen him get in with his own eyes. That was -last Friday, Mr. Holmes, and I have never seen or heard anything -since then to throw any light upon what became of him." - -"It seems to me that you have been very shamefully treated," said -Holmes. - -"Oh, no, sir! He was too good and kind to leave me so. Why, all -the morning he was saying to me that, whatever happened, I was to -be true; and that even if something quite unforeseen occurred to -separate us, I was always to remember that I was pledged to him, -and that he would claim his pledge sooner or later. It seemed -strange talk for a wedding-morning, but what has happened since -gives a meaning to it." - -"Most certainly it does. Your own opinion is, then, that some -unforeseen catastrophe has occurred to him?" - -"Yes, sir. I believe that he foresaw some danger, or else he -would not have talked so. And then I think that what he foresaw -happened." - -"But you have no notion as to what it could have been?" - -"None." - -"One more question. How did your mother take the matter?" - -"She was angry, and said that I was never to speak of the matter -again." - -"And your father? Did you tell him?" - -"Yes; and he seemed to think, with me, that something had -happened, and that I should hear of Hosmer again. As he said, -what interest could anyone have in bringing me to the doors of -the church, and then leaving me? Now, if he had borrowed my -money, or if he had married me and got my money settled on him, -there might be some reason, but Hosmer was very independent about -money and never would look at a shilling of mine. And yet, what -could have happened? And why could he not write? Oh, it drives me -half-mad to think of it, and I can't sleep a wink at night." She -pulled a little handkerchief out of her muff and began to sob -heavily into it. - -"I shall glance into the case for you," said Holmes, rising, "and -I have no doubt that we shall reach some definite result. Let the -weight of the matter rest upon me now, and do not let your mind -dwell upon it further. Above all, try to let Mr. Hosmer Angel -vanish from your memory, as he has done from your life." - -"Then you don't think I'll see him again?" - -"I fear not." - -"Then what has happened to him?" - -"You will leave that question in my hands. I should like an -accurate description of him and any letters of his which you can -spare." - -"I advertised for him in last Saturday's Chronicle," said she. -"Here is the slip and here are four letters from him." - -"Thank you. And your address?" - -"No. 31 Lyon Place, Camberwell." - -"Mr. Angel's address you never had, I understand. Where is your -father's place of business?" - -"He travels for Westhouse & Marbank, the great claret importers -of Fenchurch Street." - -"Thank you. You have made your statement very clearly. You will -leave the papers here, and remember the advice which I have given -you. Let the whole incident be a sealed book, and do not allow it -to affect your life." - -"You are very kind, Mr. Holmes, but I cannot do that. I shall be -true to Hosmer. He shall find me ready when he comes back." - -For all the preposterous hat and the vacuous face, there was -something noble in the simple faith of our visitor which -compelled our respect. She laid her little bundle of papers upon -the table and went her way, with a promise to come again whenever -she might be summoned. - -Sherlock Holmes sat silent for a few minutes with his fingertips -still pressed together, his legs stretched out in front of him, -and his gaze directed upward to the ceiling. Then he took down -from the rack the old and oily clay pipe, which was to him as a -counsellor, and, having lit it, he leaned back in his chair, with -the thick blue cloud-wreaths spinning up from him, and a look of -infinite languor in his face. - -"Quite an interesting study, that maiden," he observed. "I found -her more interesting than her little problem, which, by the way, -is rather a trite one. You will find parallel cases, if you -consult my index, in Andover in '77, and there was something of -the sort at The Hague last year. Old as is the idea, however, -there were one or two details which were new to me. But the -maiden herself was most instructive." - -"You appeared to read a good deal upon her which was quite -invisible to me," I remarked. - -"Not invisible but unnoticed, Watson. You did not know where to -look, and so you missed all that was important. I can never bring -you to realise the importance of sleeves, the suggestiveness of -thumb-nails, or the great issues that may hang from a boot-lace. -Now, what did you gather from that woman's appearance? Describe -it." - -"Well, she had a slate-coloured, broad-brimmed straw hat, with a -feather of a brickish red. Her jacket was black, with black beads -sewn upon it, and a fringe of little black jet ornaments. Her -dress was brown, rather darker than coffee colour, with a little -purple plush at the neck and sleeves. Her gloves were greyish and -were worn through at the right forefinger. Her boots I didn't -observe. She had small round, hanging gold earrings, and a -general air of being fairly well-to-do in a vulgar, comfortable, -easy-going way." - -Sherlock Holmes clapped his hands softly together and chuckled. - -"'Pon my word, Watson, you are coming along wonderfully. You have -really done very well indeed. It is true that you have missed -everything of importance, but you have hit upon the method, and -you have a quick eye for colour. Never trust to general -impressions, my boy, but concentrate yourself upon details. My -first glance is always at a woman's sleeve. In a man it is -perhaps better first to take the knee of the trouser. As you -observe, this woman had plush upon her sleeves, which is a most -useful material for showing traces. The double line a little -above the wrist, where the typewritist presses against the table, -was beautifully defined. The sewing-machine, of the hand type, -leaves a similar mark, but only on the left arm, and on the side -of it farthest from the thumb, instead of being right across the -broadest part, as this was. I then glanced at her face, and, -observing the dint of a pince-nez at either side of her nose, I -ventured a remark upon short sight and typewriting, which seemed -to surprise her." - -"It surprised me." - -"But, surely, it was obvious. I was then much surprised and -interested on glancing down to observe that, though the boots -which she was wearing were not unlike each other, they were -really odd ones; the one having a slightly decorated toe-cap, and -the other a plain one. One was buttoned only in the two lower -buttons out of five, and the other at the first, third, and -fifth. Now, when you see that a young lady, otherwise neatly -dressed, has come away from home with odd boots, half-buttoned, -it is no great deduction to say that she came away in a hurry." - -"And what else?" I asked, keenly interested, as I always was, by -my friend's incisive reasoning. - -"I noted, in passing, that she had written a note before leaving -home but after being fully dressed. You observed that her right -glove was torn at the forefinger, but you did not apparently see -that both glove and finger were stained with violet ink. She had -written in a hurry and dipped her pen too deep. It must have been -this morning, or the mark would not remain clear upon the finger. -All this is amusing, though rather elementary, but I must go back -to business, Watson. Would you mind reading me the advertised -description of Mr. Hosmer Angel?" - -I held the little printed slip to the light. - -"Missing," it said, "on the morning of the fourteenth, a gentleman -named Hosmer Angel. About five ft. seven in. in height; -strongly built, sallow complexion, black hair, a little bald in -the centre, bushy, black side-whiskers and moustache; tinted -glasses, slight infirmity of speech. Was dressed, when last seen, -in black frock-coat faced with silk, black waistcoat, gold Albert -chain, and grey Harris tweed trousers, with brown gaiters over -elastic-sided boots. Known to have been employed in an office in -Leadenhall Street. Anybody bringing--" - -"That will do," said Holmes. "As to the letters," he continued, -glancing over them, "they are very commonplace. Absolutely no -clue in them to Mr. Angel, save that he quotes Balzac once. There -is one remarkable point, however, which will no doubt strike -you." - -"They are typewritten," I remarked. - -"Not only that, but the signature is typewritten. Look at the -neat little 'Hosmer Angel' at the bottom. There is a date, you -see, but no superscription except Leadenhall Street, which is -rather vague. The point about the signature is very suggestive--in -fact, we may call it conclusive." - -"Of what?" - -"My dear fellow, is it possible you do not see how strongly it -bears upon the case?" - -"I cannot say that I do unless it were that he wished to be able -to deny his signature if an action for breach of promise were -instituted." - -"No, that was not the point. However, I shall write two letters, -which should settle the matter. One is to a firm in the City, the -other is to the young lady's stepfather, Mr. Windibank, asking -him whether he could meet us here at six o'clock tomorrow -evening. It is just as well that we should do business with the -male relatives. And now, Doctor, we can do nothing until the -answers to those letters come, so we may put our little problem -upon the shelf for the interim." - -I had had so many reasons to believe in my friend's subtle powers -of reasoning and extraordinary energy in action that I felt that -he must have some solid grounds for the assured and easy -demeanour with which he treated the singular mystery which he had -been called upon to fathom. Once only had I known him to fail, in -the case of the King of Bohemia and of the Irene Adler -photograph; but when I looked back to the weird business of the -Sign of Four, and the extraordinary circumstances connected with -the Study in Scarlet, I felt that it would be a strange tangle -indeed which he could not unravel. - -I left him then, still puffing at his black clay pipe, with the -conviction that when I came again on the next evening I would -find that he held in his hands all the clues which would lead up -to the identity of the disappearing bridegroom of Miss Mary -Sutherland. - -A professional case of great gravity was engaging my own -attention at the time, and the whole of next day I was busy at -the bedside of the sufferer. It was not until close upon six -o'clock that I found myself free and was able to spring into a -hansom and drive to Baker Street, half afraid that I might be too -late to assist at the dnouement of the little mystery. I found -Sherlock Holmes alone, however, half asleep, with his long, thin -form curled up in the recesses of his armchair. A formidable -array of bottles and test-tubes, with the pungent cleanly smell -of hydrochloric acid, told me that he had spent his day in the -chemical work which was so dear to him. - -"Well, have you solved it?" I asked as I entered. - -"Yes. It was the bisulphate of baryta." - -"No, no, the mystery!" I cried. - -"Oh, that! I thought of the salt that I have been working upon. -There was never any mystery in the matter, though, as I said -yesterday, some of the details are of interest. The only drawback -is that there is no law, I fear, that can touch the scoundrel." - -"Who was he, then, and what was his object in deserting Miss -Sutherland?" - -The question was hardly out of my mouth, and Holmes had not yet -opened his lips to reply, when we heard a heavy footfall in the -passage and a tap at the door. - -"This is the girl's stepfather, Mr. James Windibank," said -Holmes. "He has written to me to say that he would be here at -six. Come in!" - -The man who entered was a sturdy, middle-sized fellow, some -thirty years of age, clean-shaven, and sallow-skinned, with a -bland, insinuating manner, and a pair of wonderfully sharp and -penetrating grey eyes. He shot a questioning glance at each of -us, placed his shiny top-hat upon the sideboard, and with a -slight bow sidled down into the nearest chair. - -"Good-evening, Mr. James Windibank," said Holmes. "I think that -this typewritten letter is from you, in which you made an -appointment with me for six o'clock?" - -"Yes, sir. I am afraid that I am a little late, but I am not -quite my own master, you know. I am sorry that Miss Sutherland -has troubled you about this little matter, for I think it is far -better not to wash linen of the sort in public. It was quite -against my wishes that she came, but she is a very excitable, -impulsive girl, as you may have noticed, and she is not easily -controlled when she has made up her mind on a point. Of course, I -did not mind you so much, as you are not connected with the -official police, but it is not pleasant to have a family -misfortune like this noised abroad. Besides, it is a useless -expense, for how could you possibly find this Hosmer Angel?" - -"On the contrary," said Holmes quietly; "I have every reason to -believe that I will succeed in discovering Mr. Hosmer Angel." - -Mr. Windibank gave a violent start and dropped his gloves. "I am -delighted to hear it," he said. - -"It is a curious thing," remarked Holmes, "that a typewriter has -really quite as much individuality as a man's handwriting. Unless -they are quite new, no two of them write exactly alike. Some -letters get more worn than others, and some wear only on one -side. Now, you remark in this note of yours, Mr. Windibank, that -in every case there is some little slurring over of the 'e,' and -a slight defect in the tail of the 'r.' There are fourteen other -characteristics, but those are the more obvious." - -"We do all our correspondence with this machine at the office, -and no doubt it is a little worn," our visitor answered, glancing -keenly at Holmes with his bright little eyes. - -"And now I will show you what is really a very interesting study, -Mr. Windibank," Holmes continued. "I think of writing another -little monograph some of these days on the typewriter and its -relation to crime. It is a subject to which I have devoted some -little attention. I have here four letters which purport to come -from the missing man. They are all typewritten. In each case, not -only are the 'e's' slurred and the 'r's' tailless, but you will -observe, if you care to use my magnifying lens, that the fourteen -other characteristics to which I have alluded are there as well." - -Mr. Windibank sprang out of his chair and picked up his hat. "I -cannot waste time over this sort of fantastic talk, Mr. Holmes," -he said. "If you can catch the man, catch him, and let me know -when you have done it." - -"Certainly," said Holmes, stepping over and turning the key in -the door. "I let you know, then, that I have caught him!" - -"What! where?" shouted Mr. Windibank, turning white to his lips -and glancing about him like a rat in a trap. - -"Oh, it won't do--really it won't," said Holmes suavely. "There -is no possible getting out of it, Mr. Windibank. It is quite too -transparent, and it was a very bad compliment when you said that -it was impossible for me to solve so simple a question. That's -right! Sit down and let us talk it over." - -Our visitor collapsed into a chair, with a ghastly face and a -glitter of moisture on his brow. "It--it's not actionable," he -stammered. - -"I am very much afraid that it is not. But between ourselves, -Windibank, it was as cruel and selfish and heartless a trick in a -petty way as ever came before me. Now, let me just run over the -course of events, and you will contradict me if I go wrong." - -The man sat huddled up in his chair, with his head sunk upon his -breast, like one who is utterly crushed. Holmes stuck his feet up -on the corner of the mantelpiece and, leaning back with his hands -in his pockets, began talking, rather to himself, as it seemed, -than to us. - -"The man married a woman very much older than himself for her -money," said he, "and he enjoyed the use of the money of the -daughter as long as she lived with them. It was a considerable -sum, for people in their position, and the loss of it would have -made a serious difference. It was worth an effort to preserve it. -The daughter was of a good, amiable disposition, but affectionate -and warm-hearted in her ways, so that it was evident that with -her fair personal advantages, and her little income, she would -not be allowed to remain single long. Now her marriage would -mean, of course, the loss of a hundred a year, so what does her -stepfather do to prevent it? He takes the obvious course of -keeping her at home and forbidding her to seek the company of -people of her own age. But soon he found that that would not -answer forever. She became restive, insisted upon her rights, and -finally announced her positive intention of going to a certain -ball. What does her clever stepfather do then? He conceives an -idea more creditable to his head than to his heart. With the -connivance and assistance of his wife he disguised himself, -covered those keen eyes with tinted glasses, masked the face with -a moustache and a pair of bushy whiskers, sunk that clear voice -into an insinuating whisper, and doubly secure on account of the -girl's short sight, he appears as Mr. Hosmer Angel, and keeps off -other lovers by making love himself." - -"It was only a joke at first," groaned our visitor. "We never -thought that she would have been so carried away." - -"Very likely not. However that may be, the young lady was very -decidedly carried away, and, having quite made up her mind that -her stepfather was in France, the suspicion of treachery never -for an instant entered her mind. She was flattered by the -gentleman's attentions, and the effect was increased by the -loudly expressed admiration of her mother. Then Mr. Angel began -to call, for it was obvious that the matter should be pushed as -far as it would go if a real effect were to be produced. There -were meetings, and an engagement, which would finally secure the -girl's affections from turning towards anyone else. But the -deception could not be kept up forever. These pretended journeys -to France were rather cumbrous. The thing to do was clearly to -bring the business to an end in such a dramatic manner that it -would leave a permanent impression upon the young lady's mind and -prevent her from looking upon any other suitor for some time to -come. Hence those vows of fidelity exacted upon a Testament, and -hence also the allusions to a possibility of something happening -on the very morning of the wedding. James Windibank wished Miss -Sutherland to be so bound to Hosmer Angel, and so uncertain as to -his fate, that for ten years to come, at any rate, she would not -listen to another man. As far as the church door he brought her, -and then, as he could go no farther, he conveniently vanished -away by the old trick of stepping in at one door of a -four-wheeler and out at the other. I think that was the chain of -events, Mr. Windibank!" - -Our visitor had recovered something of his assurance while Holmes -had been talking, and he rose from his chair now with a cold -sneer upon his pale face. - -"It may be so, or it may not, Mr. Holmes," said he, "but if you -are so very sharp you ought to be sharp enough to know that it is -you who are breaking the law now, and not me. I have done nothing -actionable from the first, but as long as you keep that door -locked you lay yourself open to an action for assault and illegal -constraint." - -"The law cannot, as you say, touch you," said Holmes, unlocking -and throwing open the door, "yet there never was a man who -deserved punishment more. If the young lady has a brother or a -friend, he ought to lay a whip across your shoulders. By Jove!" -he continued, flushing up at the sight of the bitter sneer upon -the man's face, "it is not part of my duties to my client, but -here's a hunting crop handy, and I think I shall just treat -myself to--" He took two swift steps to the whip, but before he -could grasp it there was a wild clatter of steps upon the stairs, -the heavy hall door banged, and from the window we could see Mr. -James Windibank running at the top of his speed down the road. - -"There's a cold-blooded scoundrel!" said Holmes, laughing, as he -threw himself down into his chair once more. "That fellow will -rise from crime to crime until he does something very bad, and -ends on a gallows. The case has, in some respects, been not -entirely devoid of interest." - -"I cannot now entirely see all the steps of your reasoning," I -remarked. - -"Well, of course it was obvious from the first that this Mr. -Hosmer Angel must have some strong object for his curious -conduct, and it was equally clear that the only man who really -profited by the incident, as far as we could see, was the -stepfather. Then the fact that the two men were never together, -but that the one always appeared when the other was away, was -suggestive. So were the tinted spectacles and the curious voice, -which both hinted at a disguise, as did the bushy whiskers. My -suspicions were all confirmed by his peculiar action in -typewriting his signature, which, of course, inferred that his -handwriting was so familiar to her that she would recognise even -the smallest sample of it. You see all these isolated facts, -together with many minor ones, all pointed in the same -direction." - -"And how did you verify them?" - -"Having once spotted my man, it was easy to get corroboration. I -knew the firm for which this man worked. Having taken the printed -description. I eliminated everything from it which could be the -result of a disguise--the whiskers, the glasses, the voice, and I -sent it to the firm, with a request that they would inform me -whether it answered to the description of any of their -travellers. I had already noticed the peculiarities of the -typewriter, and I wrote to the man himself at his business -address asking him if he would come here. As I expected, his -reply was typewritten and revealed the same trivial but -characteristic defects. The same post brought me a letter from -Westhouse & Marbank, of Fenchurch Street, to say that the -description tallied in every respect with that of their employ, -James Windibank. Voil tout!" - -"And Miss Sutherland?" - -"If I tell her she will not believe me. You may remember the old -Persian saying, 'There is danger for him who taketh the tiger -cub, and danger also for whoso snatches a delusion from a woman.' -There is as much sense in Hafiz as in Horace, and as much -knowledge of the world." - - - -ADVENTURE IV. THE BOSCOMBE VALLEY MYSTERY - -We were seated at breakfast one morning, my wife and I, when the -maid brought in a telegram. It was from Sherlock Holmes and ran -in this way: - -"Have you a couple of days to spare? Have just been wired for from -the west of England in connection with Boscombe Valley tragedy. -Shall be glad if you will come with me. Air and scenery perfect. -Leave Paddington by the 11:15." - -"What do you say, dear?" said my wife, looking across at me. -"Will you go?" - -"I really don't know what to say. I have a fairly long list at -present." - -"Oh, Anstruther would do your work for you. You have been looking -a little pale lately. I think that the change would do you good, -and you are always so interested in Mr. Sherlock Holmes' cases." - -"I should be ungrateful if I were not, seeing what I gained -through one of them," I answered. "But if I am to go, I must pack -at once, for I have only half an hour." - -My experience of camp life in Afghanistan had at least had the -effect of making me a prompt and ready traveller. My wants were -few and simple, so that in less than the time stated I was in a -cab with my valise, rattling away to Paddington Station. Sherlock -Holmes was pacing up and down the platform, his tall, gaunt -figure made even gaunter and taller by his long grey -travelling-cloak and close-fitting cloth cap. - -"It is really very good of you to come, Watson," said he. "It -makes a considerable difference to me, having someone with me on -whom I can thoroughly rely. Local aid is always either worthless -or else biassed. If you will keep the two corner seats I shall -get the tickets." - -We had the carriage to ourselves save for an immense litter of -papers which Holmes had brought with him. Among these he rummaged -and read, with intervals of note-taking and of meditation, until -we were past Reading. Then he suddenly rolled them all into a -gigantic ball and tossed them up onto the rack. - -"Have you heard anything of the case?" he asked. - -"Not a word. I have not seen a paper for some days." - -"The London press has not had very full accounts. I have just -been looking through all the recent papers in order to master the -particulars. It seems, from what I gather, to be one of those -simple cases which are so extremely difficult." - -"That sounds a little paradoxical." - -"But it is profoundly true. Singularity is almost invariably a -clue. The more featureless and commonplace a crime is, the more -difficult it is to bring it home. In this case, however, they -have established a very serious case against the son of the -murdered man." - -"It is a murder, then?" - -"Well, it is conjectured to be so. I shall take nothing for -granted until I have the opportunity of looking personally into -it. I will explain the state of things to you, as far as I have -been able to understand it, in a very few words. - -"Boscombe Valley is a country district not very far from Ross, in -Herefordshire. The largest landed proprietor in that part is a -Mr. John Turner, who made his money in Australia and returned -some years ago to the old country. One of the farms which he -held, that of Hatherley, was let to Mr. Charles McCarthy, who was -also an ex-Australian. The men had known each other in the -colonies, so that it was not unnatural that when they came to -settle down they should do so as near each other as possible. -Turner was apparently the richer man, so McCarthy became his -tenant but still remained, it seems, upon terms of perfect -equality, as they were frequently together. McCarthy had one son, -a lad of eighteen, and Turner had an only daughter of the same -age, but neither of them had wives living. They appear to have -avoided the society of the neighbouring English families and to -have led retired lives, though both the McCarthys were fond of -sport and were frequently seen at the race-meetings of the -neighbourhood. McCarthy kept two servants--a man and a girl. -Turner had a considerable household, some half-dozen at the -least. That is as much as I have been able to gather about the -families. Now for the facts. - -"On June 3rd, that is, on Monday last, McCarthy left his house at -Hatherley about three in the afternoon and walked down to the -Boscombe Pool, which is a small lake formed by the spreading out -of the stream which runs down the Boscombe Valley. He had been -out with his serving-man in the morning at Ross, and he had told -the man that he must hurry, as he had an appointment of -importance to keep at three. From that appointment he never came -back alive. - -"From Hatherley Farm-house to the Boscombe Pool is a quarter of a -mile, and two people saw him as he passed over this ground. One -was an old woman, whose name is not mentioned, and the other was -William Crowder, a game-keeper in the employ of Mr. Turner. Both -these witnesses depose that Mr. McCarthy was walking alone. The -game-keeper adds that within a few minutes of his seeing Mr. -McCarthy pass he had seen his son, Mr. James McCarthy, going the -same way with a gun under his arm. To the best of his belief, the -father was actually in sight at the time, and the son was -following him. He thought no more of the matter until he heard in -the evening of the tragedy that had occurred. - -"The two McCarthys were seen after the time when William Crowder, -the game-keeper, lost sight of them. The Boscombe Pool is thickly -wooded round, with just a fringe of grass and of reeds round the -edge. A girl of fourteen, Patience Moran, who is the daughter of -the lodge-keeper of the Boscombe Valley estate, was in one of the -woods picking flowers. She states that while she was there she -saw, at the border of the wood and close by the lake, Mr. -McCarthy and his son, and that they appeared to be having a -violent quarrel. She heard Mr. McCarthy the elder using very -strong language to his son, and she saw the latter raise up his -hand as if to strike his father. She was so frightened by their -violence that she ran away and told her mother when she reached -home that she had left the two McCarthys quarrelling near -Boscombe Pool, and that she was afraid that they were going to -fight. She had hardly said the words when young Mr. McCarthy came -running up to the lodge to say that he had found his father dead -in the wood, and to ask for the help of the lodge-keeper. He was -much excited, without either his gun or his hat, and his right -hand and sleeve were observed to be stained with fresh blood. On -following him they found the dead body stretched out upon the -grass beside the pool. The head had been beaten in by repeated -blows of some heavy and blunt weapon. The injuries were such as -might very well have been inflicted by the butt-end of his son's -gun, which was found lying on the grass within a few paces of the -body. Under these circumstances the young man was instantly -arrested, and a verdict of 'wilful murder' having been returned -at the inquest on Tuesday, he was on Wednesday brought before the -magistrates at Ross, who have referred the case to the next -Assizes. Those are the main facts of the case as they came out -before the coroner and the police-court." - -"I could hardly imagine a more damning case," I remarked. "If -ever circumstantial evidence pointed to a criminal it does so -here." - -"Circumstantial evidence is a very tricky thing," answered Holmes -thoughtfully. "It may seem to point very straight to one thing, -but if you shift your own point of view a little, you may find it -pointing in an equally uncompromising manner to something -entirely different. It must be confessed, however, that the case -looks exceedingly grave against the young man, and it is very -possible that he is indeed the culprit. There are several people -in the neighbourhood, however, and among them Miss Turner, the -daughter of the neighbouring landowner, who believe in his -innocence, and who have retained Lestrade, whom you may recollect -in connection with the Study in Scarlet, to work out the case in -his interest. Lestrade, being rather puzzled, has referred the -case to me, and hence it is that two middle-aged gentlemen are -flying westward at fifty miles an hour instead of quietly -digesting their breakfasts at home." - -"I am afraid," said I, "that the facts are so obvious that you -will find little credit to be gained out of this case." - -"There is nothing more deceptive than an obvious fact," he -answered, laughing. "Besides, we may chance to hit upon some -other obvious facts which may have been by no means obvious to -Mr. Lestrade. You know me too well to think that I am boasting -when I say that I shall either confirm or destroy his theory by -means which he is quite incapable of employing, or even of -understanding. To take the first example to hand, I very clearly -perceive that in your bedroom the window is upon the right-hand -side, and yet I question whether Mr. Lestrade would have noted -even so self-evident a thing as that." - -"How on earth--" - -"My dear fellow, I know you well. I know the military neatness -which characterises you. You shave every morning, and in this -season you shave by the sunlight; but since your shaving is less -and less complete as we get farther back on the left side, until -it becomes positively slovenly as we get round the angle of the -jaw, it is surely very clear that that side is less illuminated -than the other. I could not imagine a man of your habits looking -at himself in an equal light and being satisfied with such a -result. I only quote this as a trivial example of observation and -inference. Therein lies my mtier, and it is just possible that -it may be of some service in the investigation which lies before -us. There are one or two minor points which were brought out in -the inquest, and which are worth considering." - -"What are they?" - -"It appears that his arrest did not take place at once, but after -the return to Hatherley Farm. On the inspector of constabulary -informing him that he was a prisoner, he remarked that he was not -surprised to hear it, and that it was no more than his deserts. -This observation of his had the natural effect of removing any -traces of doubt which might have remained in the minds of the -coroner's jury." - -"It was a confession," I ejaculated. - -"No, for it was followed by a protestation of innocence." - -"Coming on the top of such a damning series of events, it was at -least a most suspicious remark." - -"On the contrary," said Holmes, "it is the brightest rift which I -can at present see in the clouds. However innocent he might be, -he could not be such an absolute imbecile as not to see that the -circumstances were very black against him. Had he appeared -surprised at his own arrest, or feigned indignation at it, I -should have looked upon it as highly suspicious, because such -surprise or anger would not be natural under the circumstances, -and yet might appear to be the best policy to a scheming man. His -frank acceptance of the situation marks him as either an innocent -man, or else as a man of considerable self-restraint and -firmness. As to his remark about his deserts, it was also not -unnatural if you consider that he stood beside the dead body of -his father, and that there is no doubt that he had that very day -so far forgotten his filial duty as to bandy words with him, and -even, according to the little girl whose evidence is so -important, to raise his hand as if to strike him. The -self-reproach and contrition which are displayed in his remark -appear to me to be the signs of a healthy mind rather than of a -guilty one." - -I shook my head. "Many men have been hanged on far slighter -evidence," I remarked. - -"So they have. And many men have been wrongfully hanged." - -"What is the young man's own account of the matter?" - -"It is, I am afraid, not very encouraging to his supporters, -though there are one or two points in it which are suggestive. -You will find it here, and may read it for yourself." - -He picked out from his bundle a copy of the local Herefordshire -paper, and having turned down the sheet he pointed out the -paragraph in which the unfortunate young man had given his own -statement of what had occurred. I settled myself down in the -corner of the carriage and read it very carefully. It ran in this -way: - -"Mr. James McCarthy, the only son of the deceased, was then called -and gave evidence as follows: 'I had been away from home for -three days at Bristol, and had only just returned upon the -morning of last Monday, the 3rd. My father was absent from home at -the time of my arrival, and I was informed by the maid that he -had driven over to Ross with John Cobb, the groom. Shortly after -my return I heard the wheels of his trap in the yard, and, -looking out of my window, I saw him get out and walk rapidly out -of the yard, though I was not aware in which direction he was -going. I then took my gun and strolled out in the direction of -the Boscombe Pool, with the intention of visiting the rabbit -warren which is upon the other side. On my way I saw William -Crowder, the game-keeper, as he had stated in his evidence; but -he is mistaken in thinking that I was following my father. I had -no idea that he was in front of me. When about a hundred yards -from the pool I heard a cry of "Cooee!" which was a usual signal -between my father and myself. I then hurried forward, and found -him standing by the pool. He appeared to be much surprised at -seeing me and asked me rather roughly what I was doing there. A -conversation ensued which led to high words and almost to blows, -for my father was a man of a very violent temper. Seeing that his -passion was becoming ungovernable, I left him and returned -towards Hatherley Farm. I had not gone more than 150 yards, -however, when I heard a hideous outcry behind me, which caused me -to run back again. I found my father expiring upon the ground, -with his head terribly injured. I dropped my gun and held him in -my arms, but he almost instantly expired. I knelt beside him for -some minutes, and then made my way to Mr. Turner's lodge-keeper, -his house being the nearest, to ask for assistance. I saw no one -near my father when I returned, and I have no idea how he came by -his injuries. He was not a popular man, being somewhat cold and -forbidding in his manners, but he had, as far as I know, no -active enemies. I know nothing further of the matter.' - -"The Coroner: Did your father make any statement to you before -he died? - -"Witness: He mumbled a few words, but I could only catch some -allusion to a rat. - -"The Coroner: What did you understand by that? - -"Witness: It conveyed no meaning to me. I thought that he was -delirious. - -"The Coroner: What was the point upon which you and your father -had this final quarrel? - -"Witness: I should prefer not to answer. - -"The Coroner: I am afraid that I must press it. - -"Witness: It is really impossible for me to tell you. I can -assure you that it has nothing to do with the sad tragedy which -followed. - -"The Coroner: That is for the court to decide. I need not point -out to you that your refusal to answer will prejudice your case -considerably in any future proceedings which may arise. - -"Witness: I must still refuse. - -"The Coroner: I understand that the cry of 'Cooee' was a common -signal between you and your father? - -"Witness: It was. - -"The Coroner: How was it, then, that he uttered it before he saw -you, and before he even knew that you had returned from Bristol? - -"Witness (with considerable confusion): I do not know. - -"A Juryman: Did you see nothing which aroused your suspicions -when you returned on hearing the cry and found your father -fatally injured? - -"Witness: Nothing definite. - -"The Coroner: What do you mean? - -"Witness: I was so disturbed and excited as I rushed out into -the open, that I could think of nothing except of my father. Yet -I have a vague impression that as I ran forward something lay -upon the ground to the left of me. It seemed to me to be -something grey in colour, a coat of some sort, or a plaid perhaps. -When I rose from my father I looked round for it, but it was -gone. - -"'Do you mean that it disappeared before you went for help?' - -"'Yes, it was gone.' - -"'You cannot say what it was?' - -"'No, I had a feeling something was there.' - -"'How far from the body?' - -"'A dozen yards or so.' - -"'And how far from the edge of the wood?' - -"'About the same.' - -"'Then if it was removed it was while you were within a dozen -yards of it?' - -"'Yes, but with my back towards it.' - -"This concluded the examination of the witness." - -"I see," said I as I glanced down the column, "that the coroner -in his concluding remarks was rather severe upon young McCarthy. -He calls attention, and with reason, to the discrepancy about his -father having signalled to him before seeing him, also to his -refusal to give details of his conversation with his father, and -his singular account of his father's dying words. They are all, -as he remarks, very much against the son." - -Holmes laughed softly to himself and stretched himself out upon -the cushioned seat. "Both you and the coroner have been at some -pains," said he, "to single out the very strongest points in the -young man's favour. Don't you see that you alternately give him -credit for having too much imagination and too little? Too -little, if he could not invent a cause of quarrel which would -give him the sympathy of the jury; too much, if he evolved from -his own inner consciousness anything so outr as a dying -reference to a rat, and the incident of the vanishing cloth. No, -sir, I shall approach this case from the point of view that what -this young man says is true, and we shall see whither that -hypothesis will lead us. And now here is my pocket Petrarch, and -not another word shall I say of this case until we are on the -scene of action. We lunch at Swindon, and I see that we shall be -there in twenty minutes." - -It was nearly four o'clock when we at last, after passing through -the beautiful Stroud Valley, and over the broad gleaming Severn, -found ourselves at the pretty little country-town of Ross. A -lean, ferret-like man, furtive and sly-looking, was waiting for -us upon the platform. In spite of the light brown dustcoat and -leather-leggings which he wore in deference to his rustic -surroundings, I had no difficulty in recognising Lestrade, of -Scotland Yard. With him we drove to the Hereford Arms where a -room had already been engaged for us. - -"I have ordered a carriage," said Lestrade as we sat over a cup -of tea. "I knew your energetic nature, and that you would not be -happy until you had been on the scene of the crime." - -"It was very nice and complimentary of you," Holmes answered. "It -is entirely a question of barometric pressure." - -Lestrade looked startled. "I do not quite follow," he said. - -"How is the glass? Twenty-nine, I see. No wind, and not a cloud -in the sky. I have a caseful of cigarettes here which need -smoking, and the sofa is very much superior to the usual country -hotel abomination. I do not think that it is probable that I -shall use the carriage to-night." - -Lestrade laughed indulgently. "You have, no doubt, already formed -your conclusions from the newspapers," he said. "The case is as -plain as a pikestaff, and the more one goes into it the plainer -it becomes. Still, of course, one can't refuse a lady, and such a -very positive one, too. She has heard of you, and would have your -opinion, though I repeatedly told her that there was nothing -which you could do which I had not already done. Why, bless my -soul! here is her carriage at the door." - -He had hardly spoken before there rushed into the room one of the -most lovely young women that I have ever seen in my life. Her -violet eyes shining, her lips parted, a pink flush upon her -cheeks, all thought of her natural reserve lost in her -overpowering excitement and concern. - -"Oh, Mr. Sherlock Holmes!" she cried, glancing from one to the -other of us, and finally, with a woman's quick intuition, -fastening upon my companion, "I am so glad that you have come. I -have driven down to tell you so. I know that James didn't do it. -I know it, and I want you to start upon your work knowing it, -too. Never let yourself doubt upon that point. We have known each -other since we were little children, and I know his faults as no -one else does; but he is too tender-hearted to hurt a fly. Such a -charge is absurd to anyone who really knows him." - -"I hope we may clear him, Miss Turner," said Sherlock Holmes. -"You may rely upon my doing all that I can." - -"But you have read the evidence. You have formed some conclusion? -Do you not see some loophole, some flaw? Do you not yourself -think that he is innocent?" - -"I think that it is very probable." - -"There, now!" she cried, throwing back her head and looking -defiantly at Lestrade. "You hear! He gives me hopes." - -Lestrade shrugged his shoulders. "I am afraid that my colleague -has been a little quick in forming his conclusions," he said. - -"But he is right. Oh! I know that he is right. James never did -it. And about his quarrel with his father, I am sure that the -reason why he would not speak about it to the coroner was because -I was concerned in it." - -"In what way?" asked Holmes. - -"It is no time for me to hide anything. James and his father had -many disagreements about me. Mr. McCarthy was very anxious that -there should be a marriage between us. James and I have always -loved each other as brother and sister; but of course he is young -and has seen very little of life yet, and--and--well, he -naturally did not wish to do anything like that yet. So there -were quarrels, and this, I am sure, was one of them." - -"And your father?" asked Holmes. "Was he in favour of such a -union?" - -"No, he was averse to it also. No one but Mr. McCarthy was in -favour of it." A quick blush passed over her fresh young face as -Holmes shot one of his keen, questioning glances at her. - -"Thank you for this information," said he. "May I see your father -if I call to-morrow?" - -"I am afraid the doctor won't allow it." - -"The doctor?" - -"Yes, have you not heard? Poor father has never been strong for -years back, but this has broken him down completely. He has taken -to his bed, and Dr. Willows says that he is a wreck and that his -nervous system is shattered. Mr. McCarthy was the only man alive -who had known dad in the old days in Victoria." - -"Ha! In Victoria! That is important." - -"Yes, at the mines." - -"Quite so; at the gold-mines, where, as I understand, Mr. Turner -made his money." - -"Yes, certainly." - -"Thank you, Miss Turner. You have been of material assistance to -me." - -"You will tell me if you have any news to-morrow. No doubt you -will go to the prison to see James. Oh, if you do, Mr. Holmes, do -tell him that I know him to be innocent." - -"I will, Miss Turner." - -"I must go home now, for dad is very ill, and he misses me so if -I leave him. Good-bye, and God help you in your undertaking." She -hurried from the room as impulsively as she had entered, and we -heard the wheels of her carriage rattle off down the street. - -"I am ashamed of you, Holmes," said Lestrade with dignity after a -few minutes' silence. "Why should you raise up hopes which you -are bound to disappoint? I am not over-tender of heart, but I -call it cruel." - -"I think that I see my way to clearing James McCarthy," said -Holmes. "Have you an order to see him in prison?" - -"Yes, but only for you and me." - -"Then I shall reconsider my resolution about going out. We have -still time to take a train to Hereford and see him to-night?" - -"Ample." - -"Then let us do so. Watson, I fear that you will find it very -slow, but I shall only be away a couple of hours." - -I walked down to the station with them, and then wandered through -the streets of the little town, finally returning to the hotel, -where I lay upon the sofa and tried to interest myself in a -yellow-backed novel. The puny plot of the story was so thin, -however, when compared to the deep mystery through which we were -groping, and I found my attention wander so continually from the -action to the fact, that I at last flung it across the room and -gave myself up entirely to a consideration of the events of the -day. Supposing that this unhappy young man's story were -absolutely true, then what hellish thing, what absolutely -unforeseen and extraordinary calamity could have occurred between -the time when he parted from his father, and the moment when, -drawn back by his screams, he rushed into the glade? It was -something terrible and deadly. What could it be? Might not the -nature of the injuries reveal something to my medical instincts? -I rang the bell and called for the weekly county paper, which -contained a verbatim account of the inquest. In the surgeon's -deposition it was stated that the posterior third of the left -parietal bone and the left half of the occipital bone had been -shattered by a heavy blow from a blunt weapon. I marked the spot -upon my own head. Clearly such a blow must have been struck from -behind. That was to some extent in favour of the accused, as when -seen quarrelling he was face to face with his father. Still, it -did not go for very much, for the older man might have turned his -back before the blow fell. Still, it might be worth while to call -Holmes' attention to it. Then there was the peculiar dying -reference to a rat. What could that mean? It could not be -delirium. A man dying from a sudden blow does not commonly become -delirious. No, it was more likely to be an attempt to explain how -he met his fate. But what could it indicate? I cudgelled my -brains to find some possible explanation. And then the incident -of the grey cloth seen by young McCarthy. If that were true the -murderer must have dropped some part of his dress, presumably his -overcoat, in his flight, and must have had the hardihood to -return and to carry it away at the instant when the son was -kneeling with his back turned not a dozen paces off. What a -tissue of mysteries and improbabilities the whole thing was! I -did not wonder at Lestrade's opinion, and yet I had so much faith -in Sherlock Holmes' insight that I could not lose hope as long -as every fresh fact seemed to strengthen his conviction of young -McCarthy's innocence. - -It was late before Sherlock Holmes returned. He came back alone, -for Lestrade was staying in lodgings in the town. - -"The glass still keeps very high," he remarked as he sat down. -"It is of importance that it should not rain before we are able -to go over the ground. On the other hand, a man should be at his -very best and keenest for such nice work as that, and I did not -wish to do it when fagged by a long journey. I have seen young -McCarthy." - -"And what did you learn from him?" - -"Nothing." - -"Could he throw no light?" - -"None at all. I was inclined to think at one time that he knew -who had done it and was screening him or her, but I am convinced -now that he is as puzzled as everyone else. He is not a very -quick-witted youth, though comely to look at and, I should think, -sound at heart." - -"I cannot admire his taste," I remarked, "if it is indeed a fact -that he was averse to a marriage with so charming a young lady as -this Miss Turner." - -"Ah, thereby hangs a rather painful tale. This fellow is madly, -insanely, in love with her, but some two years ago, when he was -only a lad, and before he really knew her, for she had been away -five years at a boarding-school, what does the idiot do but get -into the clutches of a barmaid in Bristol and marry her at a -registry office? No one knows a word of the matter, but you can -imagine how maddening it must be to him to be upbraided for not -doing what he would give his very eyes to do, but what he knows -to be absolutely impossible. It was sheer frenzy of this sort -which made him throw his hands up into the air when his father, -at their last interview, was goading him on to propose to Miss -Turner. On the other hand, he had no means of supporting himself, -and his father, who was by all accounts a very hard man, would -have thrown him over utterly had he known the truth. It was with -his barmaid wife that he had spent the last three days in -Bristol, and his father did not know where he was. Mark that -point. It is of importance. Good has come out of evil, however, -for the barmaid, finding from the papers that he is in serious -trouble and likely to be hanged, has thrown him over utterly and -has written to him to say that she has a husband already in the -Bermuda Dockyard, so that there is really no tie between them. I -think that that bit of news has consoled young McCarthy for all -that he has suffered." - -"But if he is innocent, who has done it?" - -"Ah! who? I would call your attention very particularly to two -points. One is that the murdered man had an appointment with -someone at the pool, and that the someone could not have been his -son, for his son was away, and he did not know when he would -return. The second is that the murdered man was heard to cry -'Cooee!' before he knew that his son had returned. Those are the -crucial points upon which the case depends. And now let us talk -about George Meredith, if you please, and we shall leave all -minor matters until to-morrow." - -There was no rain, as Holmes had foretold, and the morning broke -bright and cloudless. At nine o'clock Lestrade called for us with -the carriage, and we set off for Hatherley Farm and the Boscombe -Pool. - -"There is serious news this morning," Lestrade observed. "It is -said that Mr. Turner, of the Hall, is so ill that his life is -despaired of." - -"An elderly man, I presume?" said Holmes. - -"About sixty; but his constitution has been shattered by his life -abroad, and he has been in failing health for some time. This -business has had a very bad effect upon him. He was an old friend -of McCarthy's, and, I may add, a great benefactor to him, for I -have learned that he gave him Hatherley Farm rent free." - -"Indeed! That is interesting," said Holmes. - -"Oh, yes! In a hundred other ways he has helped him. Everybody -about here speaks of his kindness to him." - -"Really! Does it not strike you as a little singular that this -McCarthy, who appears to have had little of his own, and to have -been under such obligations to Turner, should still talk of -marrying his son to Turner's daughter, who is, presumably, -heiress to the estate, and that in such a very cocksure manner, -as if it were merely a case of a proposal and all else would -follow? It is the more strange, since we know that Turner himself -was averse to the idea. The daughter told us as much. Do you not -deduce something from that?" - -"We have got to the deductions and the inferences," said -Lestrade, winking at me. "I find it hard enough to tackle facts, -Holmes, without flying away after theories and fancies." - -"You are right," said Holmes demurely; "you do find it very hard -to tackle the facts." - -"Anyhow, I have grasped one fact which you seem to find it -difficult to get hold of," replied Lestrade with some warmth. - -"And that is--" - -"That McCarthy senior met his death from McCarthy junior and that -all theories to the contrary are the merest moonshine." - -"Well, moonshine is a brighter thing than fog," said Holmes, -laughing. "But I am very much mistaken if this is not Hatherley -Farm upon the left." - -"Yes, that is it." It was a widespread, comfortable-looking -building, two-storied, slate-roofed, with great yellow blotches -of lichen upon the grey walls. The drawn blinds and the smokeless -chimneys, however, gave it a stricken look, as though the weight -of this horror still lay heavy upon it. We called at the door, -when the maid, at Holmes' request, showed us the boots which her -master wore at the time of his death, and also a pair of the -son's, though not the pair which he had then had. Having measured -these very carefully from seven or eight different points, Holmes -desired to be led to the court-yard, from which we all followed -the winding track which led to Boscombe Pool. - -Sherlock Holmes was transformed when he was hot upon such a scent -as this. Men who had only known the quiet thinker and logician of -Baker Street would have failed to recognise him. His face flushed -and darkened. His brows were drawn into two hard black lines, -while his eyes shone out from beneath them with a steely glitter. -His face was bent downward, his shoulders bowed, his lips -compressed, and the veins stood out like whipcord in his long, -sinewy neck. His nostrils seemed to dilate with a purely animal -lust for the chase, and his mind was so absolutely concentrated -upon the matter before him that a question or remark fell -unheeded upon his ears, or, at the most, only provoked a quick, -impatient snarl in reply. Swiftly and silently he made his way -along the track which ran through the meadows, and so by way of -the woods to the Boscombe Pool. It was damp, marshy ground, as is -all that district, and there were marks of many feet, both upon -the path and amid the short grass which bounded it on either -side. Sometimes Holmes would hurry on, sometimes stop dead, and -once he made quite a little detour into the meadow. Lestrade and -I walked behind him, the detective indifferent and contemptuous, -while I watched my friend with the interest which sprang from the -conviction that every one of his actions was directed towards a -definite end. - -The Boscombe Pool, which is a little reed-girt sheet of water -some fifty yards across, is situated at the boundary between the -Hatherley Farm and the private park of the wealthy Mr. Turner. -Above the woods which lined it upon the farther side we could see -the red, jutting pinnacles which marked the site of the rich -landowner's dwelling. On the Hatherley side of the pool the woods -grew very thick, and there was a narrow belt of sodden grass -twenty paces across between the edge of the trees and the reeds -which lined the lake. Lestrade showed us the exact spot at which -the body had been found, and, indeed, so moist was the ground, -that I could plainly see the traces which had been left by the -fall of the stricken man. To Holmes, as I could see by his eager -face and peering eyes, very many other things were to be read -upon the trampled grass. He ran round, like a dog who is picking -up a scent, and then turned upon my companion. - -"What did you go into the pool for?" he asked. - -"I fished about with a rake. I thought there might be some weapon -or other trace. But how on earth--" - -"Oh, tut, tut! I have no time! That left foot of yours with its -inward twist is all over the place. A mole could trace it, and -there it vanishes among the reeds. Oh, how simple it would all -have been had I been here before they came like a herd of buffalo -and wallowed all over it. Here is where the party with the -lodge-keeper came, and they have covered all tracks for six or -eight feet round the body. But here are three separate tracks of -the same feet." He drew out a lens and lay down upon his -waterproof to have a better view, talking all the time rather to -himself than to us. "These are young McCarthy's feet. Twice he -was walking, and once he ran swiftly, so that the soles are -deeply marked and the heels hardly visible. That bears out his -story. He ran when he saw his father on the ground. Then here are -the father's feet as he paced up and down. What is this, then? It -is the butt-end of the gun as the son stood listening. And this? -Ha, ha! What have we here? Tiptoes! tiptoes! Square, too, quite -unusual boots! They come, they go, they come again--of course -that was for the cloak. Now where did they come from?" He ran up -and down, sometimes losing, sometimes finding the track until we -were well within the edge of the wood and under the shadow of a -great beech, the largest tree in the neighbourhood. Holmes traced -his way to the farther side of this and lay down once more upon -his face with a little cry of satisfaction. For a long time he -remained there, turning over the leaves and dried sticks, -gathering up what seemed to me to be dust into an envelope and -examining with his lens not only the ground but even the bark of -the tree as far as he could reach. A jagged stone was lying among -the moss, and this also he carefully examined and retained. Then -he followed a pathway through the wood until he came to the -highroad, where all traces were lost. - -"It has been a case of considerable interest," he remarked, -returning to his natural manner. "I fancy that this grey house on -the right must be the lodge. I think that I will go in and have a -word with Moran, and perhaps write a little note. Having done -that, we may drive back to our luncheon. You may walk to the cab, -and I shall be with you presently." - -It was about ten minutes before we regained our cab and drove -back into Ross, Holmes still carrying with him the stone which he -had picked up in the wood. - -"This may interest you, Lestrade," he remarked, holding it out. -"The murder was done with it." - -"I see no marks." - -"There are none." - -"How do you know, then?" - -"The grass was growing under it. It had only lain there a few -days. There was no sign of a place whence it had been taken. It -corresponds with the injuries. There is no sign of any other -weapon." - -"And the murderer?" - -"Is a tall man, left-handed, limps with the right leg, wears -thick-soled shooting-boots and a grey cloak, smokes Indian -cigars, uses a cigar-holder, and carries a blunt pen-knife in his -pocket. There are several other indications, but these may be -enough to aid us in our search." - -Lestrade laughed. "I am afraid that I am still a sceptic," he -said. "Theories are all very well, but we have to deal with a -hard-headed British jury." - -"Nous verrons," answered Holmes calmly. "You work your own -method, and I shall work mine. I shall be busy this afternoon, -and shall probably return to London by the evening train." - -"And leave your case unfinished?" - -"No, finished." - -"But the mystery?" - -"It is solved." - -"Who was the criminal, then?" - -"The gentleman I describe." - -"But who is he?" - -"Surely it would not be difficult to find out. This is not such a -populous neighbourhood." - -Lestrade shrugged his shoulders. "I am a practical man," he said, -"and I really cannot undertake to go about the country looking -for a left-handed gentleman with a game leg. I should become the -laughing-stock of Scotland Yard." - -"All right," said Holmes quietly. "I have given you the chance. -Here are your lodgings. Good-bye. I shall drop you a line before -I leave." - -Having left Lestrade at his rooms, we drove to our hotel, where -we found lunch upon the table. Holmes was silent and buried in -thought with a pained expression upon his face, as one who finds -himself in a perplexing position. - -"Look here, Watson," he said when the cloth was cleared "just sit -down in this chair and let me preach to you for a little. I don't -know quite what to do, and I should value your advice. Light a -cigar and let me expound." - - "Pray do so." - -"Well, now, in considering this case there are two points about -young McCarthy's narrative which struck us both instantly, -although they impressed me in his favour and you against him. One -was the fact that his father should, according to his account, -cry 'Cooee!' before seeing him. The other was his singular dying -reference to a rat. He mumbled several words, you understand, but -that was all that caught the son's ear. Now from this double -point our research must commence, and we will begin it by -presuming that what the lad says is absolutely true." - -"What of this 'Cooee!' then?" - -"Well, obviously it could not have been meant for the son. The -son, as far as he knew, was in Bristol. It was mere chance that -he was within earshot. The 'Cooee!' was meant to attract the -attention of whoever it was that he had the appointment with. But -'Cooee' is a distinctly Australian cry, and one which is used -between Australians. There is a strong presumption that the -person whom McCarthy expected to meet him at Boscombe Pool was -someone who had been in Australia." - -"What of the rat, then?" - -Sherlock Holmes took a folded paper from his pocket and flattened -it out on the table. "This is a map of the Colony of Victoria," -he said. "I wired to Bristol for it last night." He put his hand -over part of the map. "What do you read?" - -"ARAT," I read. - -"And now?" He raised his hand. - -"BALLARAT." - -"Quite so. That was the word the man uttered, and of which his -son only caught the last two syllables. He was trying to utter -the name of his murderer. So and so, of Ballarat." - -"It is wonderful!" I exclaimed. - -"It is obvious. And now, you see, I had narrowed the field down -considerably. The possession of a grey garment was a third point -which, granting the son's statement to be correct, was a -certainty. We have come now out of mere vagueness to the definite -conception of an Australian from Ballarat with a grey cloak." - -"Certainly." - -"And one who was at home in the district, for the pool can only -be approached by the farm or by the estate, where strangers could -hardly wander." - -"Quite so." - -"Then comes our expedition of to-day. By an examination of the -ground I gained the trifling details which I gave to that -imbecile Lestrade, as to the personality of the criminal." - -"But how did you gain them?" - -"You know my method. It is founded upon the observation of -trifles." - -"His height I know that you might roughly judge from the length -of his stride. His boots, too, might be told from their traces." - -"Yes, they were peculiar boots." - -"But his lameness?" - -"The impression of his right foot was always less distinct than -his left. He put less weight upon it. Why? Because he limped--he -was lame." - -"But his left-handedness." - -"You were yourself struck by the nature of the injury as recorded -by the surgeon at the inquest. The blow was struck from -immediately behind, and yet was upon the left side. Now, how can -that be unless it were by a left-handed man? He had stood behind -that tree during the interview between the father and son. He had -even smoked there. I found the ash of a cigar, which my special -knowledge of tobacco ashes enables me to pronounce as an Indian -cigar. I have, as you know, devoted some attention to this, and -written a little monograph on the ashes of 140 different -varieties of pipe, cigar, and cigarette tobacco. Having found the -ash, I then looked round and discovered the stump among the moss -where he had tossed it. It was an Indian cigar, of the variety -which are rolled in Rotterdam." - -"And the cigar-holder?" - -"I could see that the end had not been in his mouth. Therefore he -used a holder. The tip had been cut off, not bitten off, but the -cut was not a clean one, so I deduced a blunt pen-knife." - -"Holmes," I said, "you have drawn a net round this man from which -he cannot escape, and you have saved an innocent human life as -truly as if you had cut the cord which was hanging him. I see the -direction in which all this points. The culprit is--" - -"Mr. John Turner," cried the hotel waiter, opening the door of -our sitting-room, and ushering in a visitor. - -The man who entered was a strange and impressive figure. His -slow, limping step and bowed shoulders gave the appearance of -decrepitude, and yet his hard, deep-lined, craggy features, and -his enormous limbs showed that he was possessed of unusual -strength of body and of character. His tangled beard, grizzled -hair, and outstanding, drooping eyebrows combined to give an air -of dignity and power to his appearance, but his face was of an -ashen white, while his lips and the corners of his nostrils were -tinged with a shade of blue. It was clear to me at a glance that -he was in the grip of some deadly and chronic disease. - -"Pray sit down on the sofa," said Holmes gently. "You had my -note?" - -"Yes, the lodge-keeper brought it up. You said that you wished to -see me here to avoid scandal." - -"I thought people would talk if I went to the Hall." - -"And why did you wish to see me?" He looked across at my -companion with despair in his weary eyes, as though his question -was already answered. - -"Yes," said Holmes, answering the look rather than the words. "It -is so. I know all about McCarthy." - -The old man sank his face in his hands. "God help me!" he cried. -"But I would not have let the young man come to harm. I give you -my word that I would have spoken out if it went against him at -the Assizes." - -"I am glad to hear you say so," said Holmes gravely. - -"I would have spoken now had it not been for my dear girl. It -would break her heart--it will break her heart when she hears -that I am arrested." - -"It may not come to that," said Holmes. - -"What?" - -"I am no official agent. I understand that it was your daughter -who required my presence here, and I am acting in her interests. -Young McCarthy must be got off, however." - -"I am a dying man," said old Turner. "I have had diabetes for -years. My doctor says it is a question whether I shall live a -month. Yet I would rather die under my own roof than in a gaol." - -Holmes rose and sat down at the table with his pen in his hand -and a bundle of paper before him. "Just tell us the truth," he -said. "I shall jot down the facts. You will sign it, and Watson -here can witness it. Then I could produce your confession at the -last extremity to save young McCarthy. I promise you that I shall -not use it unless it is absolutely needed." - -"It's as well," said the old man; "it's a question whether I -shall live to the Assizes, so it matters little to me, but I -should wish to spare Alice the shock. And now I will make the -thing clear to you; it has been a long time in the acting, but -will not take me long to tell. - -"You didn't know this dead man, McCarthy. He was a devil -incarnate. I tell you that. God keep you out of the clutches of -such a man as he. His grip has been upon me these twenty years, -and he has blasted my life. I'll tell you first how I came to be -in his power. - -"It was in the early '60's at the diggings. I was a young chap -then, hot-blooded and reckless, ready to turn my hand at -anything; I got among bad companions, took to drink, had no luck -with my claim, took to the bush, and in a word became what you -would call over here a highway robber. There were six of us, and -we had a wild, free life of it, sticking up a station from time -to time, or stopping the wagons on the road to the diggings. -Black Jack of Ballarat was the name I went under, and our party -is still remembered in the colony as the Ballarat Gang. - -"One day a gold convoy came down from Ballarat to Melbourne, and -we lay in wait for it and attacked it. There were six troopers -and six of us, so it was a close thing, but we emptied four of -their saddles at the first volley. Three of our boys were killed, -however, before we got the swag. I put my pistol to the head of -the wagon-driver, who was this very man McCarthy. I wish to the -Lord that I had shot him then, but I spared him, though I saw his -wicked little eyes fixed on my face, as though to remember every -feature. We got away with the gold, became wealthy men, and made -our way over to England without being suspected. There I parted -from my old pals and determined to settle down to a quiet and -respectable life. I bought this estate, which chanced to be in -the market, and I set myself to do a little good with my money, -to make up for the way in which I had earned it. I married, too, -and though my wife died young she left me my dear little Alice. -Even when she was just a baby her wee hand seemed to lead me down -the right path as nothing else had ever done. In a word, I turned -over a new leaf and did my best to make up for the past. All was -going well when McCarthy laid his grip upon me. - -"I had gone up to town about an investment, and I met him in -Regent Street with hardly a coat to his back or a boot to his -foot. - -"'Here we are, Jack,' says he, touching me on the arm; 'we'll be -as good as a family to you. There's two of us, me and my son, and -you can have the keeping of us. If you don't--it's a fine, -law-abiding country is England, and there's always a policeman -within hail.' - -"Well, down they came to the west country, there was no shaking -them off, and there they have lived rent free on my best land -ever since. There was no rest for me, no peace, no forgetfulness; -turn where I would, there was his cunning, grinning face at my -elbow. It grew worse as Alice grew up, for he soon saw I was more -afraid of her knowing my past than of the police. Whatever he -wanted he must have, and whatever it was I gave him without -question, land, money, houses, until at last he asked a thing -which I could not give. He asked for Alice. - -"His son, you see, had grown up, and so had my girl, and as I was -known to be in weak health, it seemed a fine stroke to him that -his lad should step into the whole property. But there I was -firm. I would not have his cursed stock mixed with mine; not that -I had any dislike to the lad, but his blood was in him, and that -was enough. I stood firm. McCarthy threatened. I braved him to do -his worst. We were to meet at the pool midway between our houses -to talk it over. - -"When I went down there I found him talking with his son, so I -smoked a cigar and waited behind a tree until he should be alone. -But as I listened to his talk all that was black and bitter in -me seemed to come uppermost. He was urging his son to marry my -daughter with as little regard for what she might think as if she -were a slut from off the streets. It drove me mad to think that I -and all that I held most dear should be in the power of such a -man as this. Could I not snap the bond? I was already a dying and -a desperate man. Though clear of mind and fairly strong of limb, -I knew that my own fate was sealed. But my memory and my girl! -Both could be saved if I could but silence that foul tongue. I -did it, Mr. Holmes. I would do it again. Deeply as I have sinned, -I have led a life of martyrdom to atone for it. But that my girl -should be entangled in the same meshes which held me was more -than I could suffer. I struck him down with no more compunction -than if he had been some foul and venomous beast. His cry brought -back his son; but I had gained the cover of the wood, though I -was forced to go back to fetch the cloak which I had dropped in -my flight. That is the true story, gentlemen, of all that -occurred." - -"Well, it is not for me to judge you," said Holmes as the old man -signed the statement which had been drawn out. "I pray that we -may never be exposed to such a temptation." - -"I pray not, sir. And what do you intend to do?" - -"In view of your health, nothing. You are yourself aware that you -will soon have to answer for your deed at a higher court than the -Assizes. I will keep your confession, and if McCarthy is -condemned I shall be forced to use it. If not, it shall never be -seen by mortal eye; and your secret, whether you be alive or -dead, shall be safe with us." - -"Farewell, then," said the old man solemnly. "Your own deathbeds, -when they come, will be the easier for the thought of the peace -which you have given to mine." Tottering and shaking in all his -giant frame, he stumbled slowly from the room. - -"God help us!" said Holmes after a long silence. "Why does fate -play such tricks with poor, helpless worms? I never hear of such -a case as this that I do not think of Baxter's words, and say, -'There, but for the grace of God, goes Sherlock Holmes.'" - -James McCarthy was acquitted at the Assizes on the strength of a -number of objections which had been drawn out by Holmes and -submitted to the defending counsel. Old Turner lived for seven -months after our interview, but he is now dead; and there is -every prospect that the son and daughter may come to live happily -together in ignorance of the black cloud which rests upon their -past. - - - -ADVENTURE V. THE FIVE ORANGE PIPS - -When I glance over my notes and records of the Sherlock Holmes -cases between the years '82 and '90, I am faced by so many which -present strange and interesting features that it is no easy -matter to know which to choose and which to leave. Some, however, -have already gained publicity through the papers, and others have -not offered a field for those peculiar qualities which my friend -possessed in so high a degree, and which it is the object of -these papers to illustrate. Some, too, have baffled his -analytical skill, and would be, as narratives, beginnings without -an ending, while others have been but partially cleared up, and -have their explanations founded rather upon conjecture and -surmise than on that absolute logical proof which was so dear to -him. There is, however, one of these last which was so remarkable -in its details and so startling in its results that I am tempted -to give some account of it in spite of the fact that there are -points in connection with it which never have been, and probably -never will be, entirely cleared up. - -The year '87 furnished us with a long series of cases of greater -or less interest, of which I retain the records. Among my -headings under this one twelve months I find an account of the -adventure of the Paradol Chamber, of the Amateur Mendicant -Society, who held a luxurious club in the lower vault of a -furniture warehouse, of the facts connected with the loss of the -British barque "Sophy Anderson", of the singular adventures of the -Grice Patersons in the island of Uffa, and finally of the -Camberwell poisoning case. In the latter, as may be remembered, -Sherlock Holmes was able, by winding up the dead man's watch, to -prove that it had been wound up two hours before, and that -therefore the deceased had gone to bed within that time--a -deduction which was of the greatest importance in clearing up the -case. All these I may sketch out at some future date, but none of -them present such singular features as the strange train of -circumstances which I have now taken up my pen to describe. - -It was in the latter days of September, and the equinoctial gales -had set in with exceptional violence. All day the wind had -screamed and the rain had beaten against the windows, so that -even here in the heart of great, hand-made London we were forced -to raise our minds for the instant from the routine of life and -to recognise the presence of those great elemental forces which -shriek at mankind through the bars of his civilisation, like -untamed beasts in a cage. As evening drew in, the storm grew -higher and louder, and the wind cried and sobbed like a child in -the chimney. Sherlock Holmes sat moodily at one side of the -fireplace cross-indexing his records of crime, while I at the -other was deep in one of Clark Russell's fine sea-stories until -the howl of the gale from without seemed to blend with the text, -and the splash of the rain to lengthen out into the long swash of -the sea waves. My wife was on a visit to her mother's, and for a -few days I was a dweller once more in my old quarters at Baker -Street. - -"Why," said I, glancing up at my companion, "that was surely the -bell. Who could come to-night? Some friend of yours, perhaps?" - -"Except yourself I have none," he answered. "I do not encourage -visitors." - -"A client, then?" - -"If so, it is a serious case. Nothing less would bring a man out -on such a day and at such an hour. But I take it that it is more -likely to be some crony of the landlady's." - -Sherlock Holmes was wrong in his conjecture, however, for there -came a step in the passage and a tapping at the door. He -stretched out his long arm to turn the lamp away from himself and -towards the vacant chair upon which a newcomer must sit. - -"Come in!" said he. - -The man who entered was young, some two-and-twenty at the -outside, well-groomed and trimly clad, with something of -refinement and delicacy in his bearing. The streaming umbrella -which he held in his hand, and his long shining waterproof told -of the fierce weather through which he had come. He looked about -him anxiously in the glare of the lamp, and I could see that his -face was pale and his eyes heavy, like those of a man who is -weighed down with some great anxiety. - -"I owe you an apology," he said, raising his golden pince-nez to -his eyes. "I trust that I am not intruding. I fear that I have -brought some traces of the storm and rain into your snug -chamber." - -"Give me your coat and umbrella," said Holmes. "They may rest -here on the hook and will be dry presently. You have come up from -the south-west, I see." - -"Yes, from Horsham." - -"That clay and chalk mixture which I see upon your toe caps is -quite distinctive." - -"I have come for advice." - -"That is easily got." - -"And help." - -"That is not always so easy." - -"I have heard of you, Mr. Holmes. I heard from Major Prendergast -how you saved him in the Tankerville Club scandal." - -"Ah, of course. He was wrongfully accused of cheating at cards." - -"He said that you could solve anything." - -"He said too much." - -"That you are never beaten." - -"I have been beaten four times--three times by men, and once by a -woman." - -"But what is that compared with the number of your successes?" - -"It is true that I have been generally successful." - -"Then you may be so with me." - -"I beg that you will draw your chair up to the fire and favour me -with some details as to your case." - -"It is no ordinary one." - -"None of those which come to me are. I am the last court of -appeal." - -"And yet I question, sir, whether, in all your experience, you -have ever listened to a more mysterious and inexplicable chain of -events than those which have happened in my own family." - -"You fill me with interest," said Holmes. "Pray give us the -essential facts from the commencement, and I can afterwards -question you as to those details which seem to me to be most -important." - -The young man pulled his chair up and pushed his wet feet out -towards the blaze. - -"My name," said he, "is John Openshaw, but my own affairs have, -as far as I can understand, little to do with this awful -business. It is a hereditary matter; so in order to give you an -idea of the facts, I must go back to the commencement of the -affair. - -"You must know that my grandfather had two sons--my uncle Elias -and my father Joseph. My father had a small factory at Coventry, -which he enlarged at the time of the invention of bicycling. He -was a patentee of the Openshaw unbreakable tire, and his business -met with such success that he was able to sell it and to retire -upon a handsome competence. - -"My uncle Elias emigrated to America when he was a young man and -became a planter in Florida, where he was reported to have done -very well. At the time of the war he fought in Jackson's army, -and afterwards under Hood, where he rose to be a colonel. When -Lee laid down his arms my uncle returned to his plantation, where -he remained for three or four years. About 1869 or 1870 he came -back to Europe and took a small estate in Sussex, near Horsham. -He had made a very considerable fortune in the States, and his -reason for leaving them was his aversion to the negroes, and his -dislike of the Republican policy in extending the franchise to -them. He was a singular man, fierce and quick-tempered, very -foul-mouthed when he was angry, and of a most retiring -disposition. During all the years that he lived at Horsham, I -doubt if ever he set foot in the town. He had a garden and two or -three fields round his house, and there he would take his -exercise, though very often for weeks on end he would never leave -his room. He drank a great deal of brandy and smoked very -heavily, but he would see no society and did not want any -friends, not even his own brother. - -"He didn't mind me; in fact, he took a fancy to me, for at the -time when he saw me first I was a youngster of twelve or so. This -would be in the year 1878, after he had been eight or nine years -in England. He begged my father to let me live with him and he -was very kind to me in his way. When he was sober he used to be -fond of playing backgammon and draughts with me, and he would -make me his representative both with the servants and with the -tradespeople, so that by the time that I was sixteen I was quite -master of the house. I kept all the keys and could go where I -liked and do what I liked, so long as I did not disturb him in -his privacy. There was one singular exception, however, for he -had a single room, a lumber-room up among the attics, which was -invariably locked, and which he would never permit either me or -anyone else to enter. With a boy's curiosity I have peeped -through the keyhole, but I was never able to see more than such a -collection of old trunks and bundles as would be expected in such -a room. - -"One day--it was in March, 1883--a letter with a foreign stamp -lay upon the table in front of the colonel's plate. It was not a -common thing for him to receive letters, for his bills were all -paid in ready money, and he had no friends of any sort. 'From -India!' said he as he took it up, 'Pondicherry postmark! What can -this be?' Opening it hurriedly, out there jumped five little -dried orange pips, which pattered down upon his plate. I began to -laugh at this, but the laugh was struck from my lips at the sight -of his face. His lip had fallen, his eyes were protruding, his -skin the colour of putty, and he glared at the envelope which he -still held in his trembling hand, 'K. K. K.!' he shrieked, and -then, 'My God, my God, my sins have overtaken me!' - -"'What is it, uncle?' I cried. - -"'Death,' said he, and rising from the table he retired to his -room, leaving me palpitating with horror. I took up the envelope -and saw scrawled in red ink upon the inner flap, just above the -gum, the letter K three times repeated. There was nothing else -save the five dried pips. What could be the reason of his -overpowering terror? I left the breakfast-table, and as I -ascended the stair I met him coming down with an old rusty key, -which must have belonged to the attic, in one hand, and a small -brass box, like a cashbox, in the other. - -"'They may do what they like, but I'll checkmate them still,' -said he with an oath. 'Tell Mary that I shall want a fire in my -room to-day, and send down to Fordham, the Horsham lawyer.' - -"I did as he ordered, and when the lawyer arrived I was asked to -step up to the room. The fire was burning brightly, and in the -grate there was a mass of black, fluffy ashes, as of burned -paper, while the brass box stood open and empty beside it. As I -glanced at the box I noticed, with a start, that upon the lid was -printed the treble K which I had read in the morning upon the -envelope. - -"'I wish you, John,' said my uncle, 'to witness my will. I leave -my estate, with all its advantages and all its disadvantages, to -my brother, your father, whence it will, no doubt, descend to -you. If you can enjoy it in peace, well and good! If you find you -cannot, take my advice, my boy, and leave it to your deadliest -enemy. I am sorry to give you such a two-edged thing, but I can't -say what turn things are going to take. Kindly sign the paper -where Mr. Fordham shows you.' - -"I signed the paper as directed, and the lawyer took it away with -him. The singular incident made, as you may think, the deepest -impression upon me, and I pondered over it and turned it every -way in my mind without being able to make anything of it. Yet I -could not shake off the vague feeling of dread which it left -behind, though the sensation grew less keen as the weeks passed -and nothing happened to disturb the usual routine of our lives. I -could see a change in my uncle, however. He drank more than ever, -and he was less inclined for any sort of society. Most of his -time he would spend in his room, with the door locked upon the -inside, but sometimes he would emerge in a sort of drunken frenzy -and would burst out of the house and tear about the garden with a -revolver in his hand, screaming out that he was afraid of no man, -and that he was not to be cooped up, like a sheep in a pen, by -man or devil. When these hot fits were over, however, he would -rush tumultuously in at the door and lock and bar it behind him, -like a man who can brazen it out no longer against the terror -which lies at the roots of his soul. At such times I have seen -his face, even on a cold day, glisten with moisture, as though it -were new raised from a basin. - -"Well, to come to an end of the matter, Mr. Holmes, and not to -abuse your patience, there came a night when he made one of those -drunken sallies from which he never came back. We found him, when -we went to search for him, face downward in a little -green-scummed pool, which lay at the foot of the garden. There -was no sign of any violence, and the water was but two feet deep, -so that the jury, having regard to his known eccentricity, -brought in a verdict of 'suicide.' But I, who knew how he winced -from the very thought of death, had much ado to persuade myself -that he had gone out of his way to meet it. The matter passed, -however, and my father entered into possession of the estate, and -of some 14,000 pounds, which lay to his credit at the bank." - -"One moment," Holmes interposed, "your statement is, I foresee, -one of the most remarkable to which I have ever listened. Let me -have the date of the reception by your uncle of the letter, and -the date of his supposed suicide." - -"The letter arrived on March 10, 1883. His death was seven weeks -later, upon the night of May 2nd." - -"Thank you. Pray proceed." - -"When my father took over the Horsham property, he, at my -request, made a careful examination of the attic, which had been -always locked up. We found the brass box there, although its -contents had been destroyed. On the inside of the cover was a -paper label, with the initials of K. K. K. repeated upon it, and -'Letters, memoranda, receipts, and a register' written beneath. -These, we presume, indicated the nature of the papers which had -been destroyed by Colonel Openshaw. For the rest, there was -nothing of much importance in the attic save a great many -scattered papers and note-books bearing upon my uncle's life in -America. Some of them were of the war time and showed that he had -done his duty well and had borne the repute of a brave soldier. -Others were of a date during the reconstruction of the Southern -states, and were mostly concerned with politics, for he had -evidently taken a strong part in opposing the carpet-bag -politicians who had been sent down from the North. - -"Well, it was the beginning of '84 when my father came to live at -Horsham, and all went as well as possible with us until the -January of '85. On the fourth day after the new year I heard my -father give a sharp cry of surprise as we sat together at the -breakfast-table. There he was, sitting with a newly opened -envelope in one hand and five dried orange pips in the -outstretched palm of the other one. He had always laughed at what -he called my cock-and-bull story about the colonel, but he looked -very scared and puzzled now that the same thing had come upon -himself. - -"'Why, what on earth does this mean, John?' he stammered. - -"My heart had turned to lead. 'It is K. K. K.,' said I. - -"He looked inside the envelope. 'So it is,' he cried. 'Here are -the very letters. But what is this written above them?' - -"'Put the papers on the sundial,' I read, peeping over his -shoulder. - -"'What papers? What sundial?' he asked. - -"'The sundial in the garden. There is no other,' said I; 'but the -papers must be those that are destroyed.' - -"'Pooh!' said he, gripping hard at his courage. 'We are in a -civilised land here, and we can't have tomfoolery of this kind. -Where does the thing come from?' - -"'From Dundee,' I answered, glancing at the postmark. - -"'Some preposterous practical joke,' said he. 'What have I to do -with sundials and papers? I shall take no notice of such -nonsense.' - -"'I should certainly speak to the police,' I said. - -"'And be laughed at for my pains. Nothing of the sort.' - -"'Then let me do so?' - -"'No, I forbid you. I won't have a fuss made about such -nonsense.' - -"It was in vain to argue with him, for he was a very obstinate -man. I went about, however, with a heart which was full of -forebodings. - -"On the third day after the coming of the letter my father went -from home to visit an old friend of his, Major Freebody, who is -in command of one of the forts upon Portsdown Hill. I was glad -that he should go, for it seemed to me that he was farther from -danger when he was away from home. In that, however, I was in -error. Upon the second day of his absence I received a telegram -from the major, imploring me to come at once. My father had -fallen over one of the deep chalk-pits which abound in the -neighbourhood, and was lying senseless, with a shattered skull. I -hurried to him, but he passed away without having ever recovered -his consciousness. He had, as it appears, been returning from -Fareham in the twilight, and as the country was unknown to him, -and the chalk-pit unfenced, the jury had no hesitation in -bringing in a verdict of 'death from accidental causes.' -Carefully as I examined every fact connected with his death, I -was unable to find anything which could suggest the idea of -murder. There were no signs of violence, no footmarks, no -robbery, no record of strangers having been seen upon the roads. -And yet I need not tell you that my mind was far from at ease, -and that I was well-nigh certain that some foul plot had been -woven round him. - -"In this sinister way I came into my inheritance. You will ask me -why I did not dispose of it? I answer, because I was well -convinced that our troubles were in some way dependent upon an -incident in my uncle's life, and that the danger would be as -pressing in one house as in another. - -"It was in January, '85, that my poor father met his end, and two -years and eight months have elapsed since then. During that time -I have lived happily at Horsham, and I had begun to hope that -this curse had passed away from the family, and that it had ended -with the last generation. I had begun to take comfort too soon, -however; yesterday morning the blow fell in the very shape in -which it had come upon my father." - -The young man took from his waistcoat a crumpled envelope, and -turning to the table he shook out upon it five little dried -orange pips. - -"This is the envelope," he continued. "The postmark is -London--eastern division. Within are the very words which were -upon my father's last message: 'K. K. K.'; and then 'Put the -papers on the sundial.'" - -"What have you done?" asked Holmes. - -"Nothing." - -"Nothing?" - -"To tell the truth"--he sank his face into his thin, white -hands--"I have felt helpless. I have felt like one of those poor -rabbits when the snake is writhing towards it. I seem to be in -the grasp of some resistless, inexorable evil, which no foresight -and no precautions can guard against." - -"Tut! tut!" cried Sherlock Holmes. "You must act, man, or you are -lost. Nothing but energy can save you. This is no time for -despair." - -"I have seen the police." - -"Ah!" - -"But they listened to my story with a smile. I am convinced that -the inspector has formed the opinion that the letters are all -practical jokes, and that the deaths of my relations were really -accidents, as the jury stated, and were not to be connected with -the warnings." - -Holmes shook his clenched hands in the air. "Incredible -imbecility!" he cried. - -"They have, however, allowed me a policeman, who may remain in -the house with me." - -"Has he come with you to-night?" - -"No. His orders were to stay in the house." - -Again Holmes raved in the air. - -"Why did you come to me," he cried, "and, above all, why did you -not come at once?" - -"I did not know. It was only to-day that I spoke to Major -Prendergast about my troubles and was advised by him to come to -you." - -"It is really two days since you had the letter. We should have -acted before this. You have no further evidence, I suppose, than -that which you have placed before us--no suggestive detail which -might help us?" - -"There is one thing," said John Openshaw. He rummaged in his coat -pocket, and, drawing out a piece of discoloured, blue-tinted -paper, he laid it out upon the table. "I have some remembrance," -said he, "that on the day when my uncle burned the papers I -observed that the small, unburned margins which lay amid the -ashes were of this particular colour. I found this single sheet -upon the floor of his room, and I am inclined to think that it -may be one of the papers which has, perhaps, fluttered out from -among the others, and in that way has escaped destruction. Beyond -the mention of pips, I do not see that it helps us much. I think -myself that it is a page from some private diary. The writing is -undoubtedly my uncle's." - -Holmes moved the lamp, and we both bent over the sheet of paper, -which showed by its ragged edge that it had indeed been torn from -a book. It was headed, "March, 1869," and beneath were the -following enigmatical notices: - -"4th. Hudson came. Same old platform. - -"7th. Set the pips on McCauley, Paramore, and - John Swain, of St. Augustine. - -"9th. McCauley cleared. - -"10th. John Swain cleared. - -"12th. Visited Paramore. All well." - -"Thank you!" said Holmes, folding up the paper and returning it -to our visitor. "And now you must on no account lose another -instant. We cannot spare time even to discuss what you have told -me. You must get home instantly and act." - -"What shall I do?" - -"There is but one thing to do. It must be done at once. You must -put this piece of paper which you have shown us into the brass -box which you have described. You must also put in a note to say -that all the other papers were burned by your uncle, and that -this is the only one which remains. You must assert that in such -words as will carry conviction with them. Having done this, you -must at once put the box out upon the sundial, as directed. Do -you understand?" - -"Entirely." - -"Do not think of revenge, or anything of the sort, at present. I -think that we may gain that by means of the law; but we have our -web to weave, while theirs is already woven. The first -consideration is to remove the pressing danger which threatens -you. The second is to clear up the mystery and to punish the -guilty parties." - -"I thank you," said the young man, rising and pulling on his -overcoat. "You have given me fresh life and hope. I shall -certainly do as you advise." - -"Do not lose an instant. And, above all, take care of yourself in -the meanwhile, for I do not think that there can be a doubt that -you are threatened by a very real and imminent danger. How do you -go back?" - -"By train from Waterloo." - -"It is not yet nine. The streets will be crowded, so I trust that -you may be in safety. And yet you cannot guard yourself too -closely." - -"I am armed." - -"That is well. To-morrow I shall set to work upon your case." - -"I shall see you at Horsham, then?" - -"No, your secret lies in London. It is there that I shall seek -it." - -"Then I shall call upon you in a day, or in two days, with news -as to the box and the papers. I shall take your advice in every -particular." He shook hands with us and took his leave. Outside -the wind still screamed and the rain splashed and pattered -against the windows. This strange, wild story seemed to have come -to us from amid the mad elements--blown in upon us like a sheet -of sea-weed in a gale--and now to have been reabsorbed by them -once more. - -Sherlock Holmes sat for some time in silence, with his head sunk -forward and his eyes bent upon the red glow of the fire. Then he -lit his pipe, and leaning back in his chair he watched the blue -smoke-rings as they chased each other up to the ceiling. - -"I think, Watson," he remarked at last, "that of all our cases we -have had none more fantastic than this." - -"Save, perhaps, the Sign of Four." - -"Well, yes. Save, perhaps, that. And yet this John Openshaw seems -to me to be walking amid even greater perils than did the -Sholtos." - -"But have you," I asked, "formed any definite conception as to -what these perils are?" - -"There can be no question as to their nature," he answered. - -"Then what are they? Who is this K. K. K., and why does he pursue -this unhappy family?" - -Sherlock Holmes closed his eyes and placed his elbows upon the -arms of his chair, with his finger-tips together. "The ideal -reasoner," he remarked, "would, when he had once been shown a -single fact in all its bearings, deduce from it not only all the -chain of events which led up to it but also all the results which -would follow from it. As Cuvier could correctly describe a whole -animal by the contemplation of a single bone, so the observer who -has thoroughly understood one link in a series of incidents -should be able to accurately state all the other ones, both -before and after. We have not yet grasped the results which the -reason alone can attain to. Problems may be solved in the study -which have baffled all those who have sought a solution by the -aid of their senses. To carry the art, however, to its highest -pitch, it is necessary that the reasoner should be able to -utilise all the facts which have come to his knowledge; and this -in itself implies, as you will readily see, a possession of all -knowledge, which, even in these days of free education and -encyclopaedias, is a somewhat rare accomplishment. It is not so -impossible, however, that a man should possess all knowledge -which is likely to be useful to him in his work, and this I have -endeavoured in my case to do. If I remember rightly, you on one -occasion, in the early days of our friendship, defined my limits -in a very precise fashion." - -"Yes," I answered, laughing. "It was a singular document. -Philosophy, astronomy, and politics were marked at zero, I -remember. Botany variable, geology profound as regards the -mud-stains from any region within fifty miles of town, chemistry -eccentric, anatomy unsystematic, sensational literature and crime -records unique, violin-player, boxer, swordsman, lawyer, and -self-poisoner by cocaine and tobacco. Those, I think, were the -main points of my analysis." - -Holmes grinned at the last item. "Well," he said, "I say now, as -I said then, that a man should keep his little brain-attic -stocked with all the furniture that he is likely to use, and the -rest he can put away in the lumber-room of his library, where he -can get it if he wants it. Now, for such a case as the one which -has been submitted to us to-night, we need certainly to muster -all our resources. Kindly hand me down the letter K of the -'American Encyclopaedia' which stands upon the shelf beside you. -Thank you. Now let us consider the situation and see what may be -deduced from it. In the first place, we may start with a strong -presumption that Colonel Openshaw had some very strong reason for -leaving America. Men at his time of life do not change all their -habits and exchange willingly the charming climate of Florida for -the lonely life of an English provincial town. His extreme love -of solitude in England suggests the idea that he was in fear of -someone or something, so we may assume as a working hypothesis -that it was fear of someone or something which drove him from -America. As to what it was he feared, we can only deduce that by -considering the formidable letters which were received by himself -and his successors. Did you remark the postmarks of those -letters?" - -"The first was from Pondicherry, the second from Dundee, and the -third from London." - -"From East London. What do you deduce from that?" - -"They are all seaports. That the writer was on board of a ship." - -"Excellent. We have already a clue. There can be no doubt that -the probability--the strong probability--is that the writer was -on board of a ship. And now let us consider another point. In the -case of Pondicherry, seven weeks elapsed between the threat and -its fulfilment, in Dundee it was only some three or four days. -Does that suggest anything?" - -"A greater distance to travel." - -"But the letter had also a greater distance to come." - -"Then I do not see the point." - -"There is at least a presumption that the vessel in which the man -or men are is a sailing-ship. It looks as if they always send -their singular warning or token before them when starting upon -their mission. You see how quickly the deed followed the sign -when it came from Dundee. If they had come from Pondicherry in a -steamer they would have arrived almost as soon as their letter. -But, as a matter of fact, seven weeks elapsed. I think that those -seven weeks represented the difference between the mail-boat which -brought the letter and the sailing vessel which brought the -writer." - -"It is possible." - -"More than that. It is probable. And now you see the deadly -urgency of this new case, and why I urged young Openshaw to -caution. The blow has always fallen at the end of the time which -it would take the senders to travel the distance. But this one -comes from London, and therefore we cannot count upon delay." - -"Good God!" I cried. "What can it mean, this relentless -persecution?" - -"The papers which Openshaw carried are obviously of vital -importance to the person or persons in the sailing-ship. I think -that it is quite clear that there must be more than one of them. -A single man could not have carried out two deaths in such a way -as to deceive a coroner's jury. There must have been several in -it, and they must have been men of resource and determination. -Their papers they mean to have, be the holder of them who it may. -In this way you see K. K. K. ceases to be the initials of an -individual and becomes the badge of a society." - -"But of what society?" - -"Have you never--" said Sherlock Holmes, bending forward and -sinking his voice--"have you never heard of the Ku Klux Klan?" - -"I never have." - -Holmes turned over the leaves of the book upon his knee. "Here it -is," said he presently: - -"'Ku Klux Klan. A name derived from the fanciful resemblance to -the sound produced by cocking a rifle. This terrible secret -society was formed by some ex-Confederate soldiers in the -Southern states after the Civil War, and it rapidly formed local -branches in different parts of the country, notably in Tennessee, -Louisiana, the Carolinas, Georgia, and Florida. Its power was -used for political purposes, principally for the terrorising of -the negro voters and the murdering and driving from the country -of those who were opposed to its views. Its outrages were usually -preceded by a warning sent to the marked man in some fantastic -but generally recognised shape--a sprig of oak-leaves in some -parts, melon seeds or orange pips in others. On receiving this -the victim might either openly abjure his former ways, or might -fly from the country. If he braved the matter out, death would -unfailingly come upon him, and usually in some strange and -unforeseen manner. So perfect was the organisation of the -society, and so systematic its methods, that there is hardly a -case upon record where any man succeeded in braving it with -impunity, or in which any of its outrages were traced home to the -perpetrators. For some years the organisation flourished in spite -of the efforts of the United States government and of the better -classes of the community in the South. Eventually, in the year -1869, the movement rather suddenly collapsed, although there have -been sporadic outbreaks of the same sort since that date.' - -"You will observe," said Holmes, laying down the volume, "that -the sudden breaking up of the society was coincident with the -disappearance of Openshaw from America with their papers. It may -well have been cause and effect. It is no wonder that he and his -family have some of the more implacable spirits upon their track. -You can understand that this register and diary may implicate -some of the first men in the South, and that there may be many -who will not sleep easy at night until it is recovered." - -"Then the page we have seen--" - -"Is such as we might expect. It ran, if I remember right, 'sent -the pips to A, B, and C'--that is, sent the society's warning to -them. Then there are successive entries that A and B cleared, or -left the country, and finally that C was visited, with, I fear, a -sinister result for C. Well, I think, Doctor, that we may let -some light into this dark place, and I believe that the only -chance young Openshaw has in the meantime is to do what I have -told him. There is nothing more to be said or to be done -to-night, so hand me over my violin and let us try to forget for -half an hour the miserable weather and the still more miserable -ways of our fellow-men." - - -It had cleared in the morning, and the sun was shining with a -subdued brightness through the dim veil which hangs over the -great city. Sherlock Holmes was already at breakfast when I came -down. - -"You will excuse me for not waiting for you," said he; "I have, I -foresee, a very busy day before me in looking into this case of -young Openshaw's." - -"What steps will you take?" I asked. - -"It will very much depend upon the results of my first inquiries. -I may have to go down to Horsham, after all." - -"You will not go there first?" - -"No, I shall commence with the City. Just ring the bell and the -maid will bring up your coffee." - -As I waited, I lifted the unopened newspaper from the table and -glanced my eye over it. It rested upon a heading which sent a -chill to my heart. - -"Holmes," I cried, "you are too late." - -"Ah!" said he, laying down his cup, "I feared as much. How was it -done?" He spoke calmly, but I could see that he was deeply moved. - -"My eye caught the name of Openshaw, and the heading 'Tragedy -Near Waterloo Bridge.' Here is the account: - -"Between nine and ten last night Police-Constable Cook, of the H -Division, on duty near Waterloo Bridge, heard a cry for help and -a splash in the water. The night, however, was extremely dark and -stormy, so that, in spite of the help of several passers-by, it -was quite impossible to effect a rescue. The alarm, however, was -given, and, by the aid of the water-police, the body was -eventually recovered. It proved to be that of a young gentleman -whose name, as it appears from an envelope which was found in his -pocket, was John Openshaw, and whose residence is near Horsham. -It is conjectured that he may have been hurrying down to catch -the last train from Waterloo Station, and that in his haste and -the extreme darkness he missed his path and walked over the edge -of one of the small landing-places for river steamboats. The body -exhibited no traces of violence, and there can be no doubt that -the deceased had been the victim of an unfortunate accident, -which should have the effect of calling the attention of the -authorities to the condition of the riverside landing-stages." - -We sat in silence for some minutes, Holmes more depressed and -shaken than I had ever seen him. - -"That hurts my pride, Watson," he said at last. "It is a petty -feeling, no doubt, but it hurts my pride. It becomes a personal -matter with me now, and, if God sends me health, I shall set my -hand upon this gang. That he should come to me for help, and that -I should send him away to his death--!" He sprang from his chair -and paced about the room in uncontrollable agitation, with a -flush upon his sallow cheeks and a nervous clasping and -unclasping of his long thin hands. - -"They must be cunning devils," he exclaimed at last. "How could -they have decoyed him down there? The Embankment is not on the -direct line to the station. The bridge, no doubt, was too -crowded, even on such a night, for their purpose. Well, Watson, -we shall see who will win in the long run. I am going out now!" - -"To the police?" - -"No; I shall be my own police. When I have spun the web they may -take the flies, but not before." - -All day I was engaged in my professional work, and it was late in -the evening before I returned to Baker Street. Sherlock Holmes -had not come back yet. It was nearly ten o'clock before he -entered, looking pale and worn. He walked up to the sideboard, -and tearing a piece from the loaf he devoured it voraciously, -washing it down with a long draught of water. - -"You are hungry," I remarked. - -"Starving. It had escaped my memory. I have had nothing since -breakfast." - -"Nothing?" - -"Not a bite. I had no time to think of it." - -"And how have you succeeded?" - -"Well." - -"You have a clue?" - -"I have them in the hollow of my hand. Young Openshaw shall not -long remain unavenged. Why, Watson, let us put their own devilish -trade-mark upon them. It is well thought of!" - -"What do you mean?" - -He took an orange from the cupboard, and tearing it to pieces he -squeezed out the pips upon the table. Of these he took five and -thrust them into an envelope. On the inside of the flap he wrote -"S. H. for J. O." Then he sealed it and addressed it to "Captain -James Calhoun, Barque 'Lone Star,' Savannah, Georgia." - -"That will await him when he enters port," said he, chuckling. -"It may give him a sleepless night. He will find it as sure a -precursor of his fate as Openshaw did before him." - -"And who is this Captain Calhoun?" - -"The leader of the gang. I shall have the others, but he first." - -"How did you trace it, then?" - -He took a large sheet of paper from his pocket, all covered with -dates and names. - -"I have spent the whole day," said he, "over Lloyd's registers -and files of the old papers, following the future career of every -vessel which touched at Pondicherry in January and February in -'83. There were thirty-six ships of fair tonnage which were -reported there during those months. Of these, one, the 'Lone Star,' -instantly attracted my attention, since, although it was reported -as having cleared from London, the name is that which is given to -one of the states of the Union." - -"Texas, I think." - -"I was not and am not sure which; but I knew that the ship must -have an American origin." - -"What then?" - -"I searched the Dundee records, and when I found that the barque -'Lone Star' was there in January, '85, my suspicion became a -certainty. I then inquired as to the vessels which lay at present -in the port of London." - -"Yes?" - -"The 'Lone Star' had arrived here last week. I went down to the -Albert Dock and found that she had been taken down the river by -the early tide this morning, homeward bound to Savannah. I wired -to Gravesend and learned that she had passed some time ago, and -as the wind is easterly I have no doubt that she is now past the -Goodwins and not very far from the Isle of Wight." - -"What will you do, then?" - -"Oh, I have my hand upon him. He and the two mates, are as I -learn, the only native-born Americans in the ship. The others are -Finns and Germans. I know, also, that they were all three away -from the ship last night. I had it from the stevedore who has -been loading their cargo. By the time that their sailing-ship -reaches Savannah the mail-boat will have carried this letter, and -the cable will have informed the police of Savannah that these -three gentlemen are badly wanted here upon a charge of murder." - -There is ever a flaw, however, in the best laid of human plans, -and the murderers of John Openshaw were never to receive the -orange pips which would show them that another, as cunning and as -resolute as themselves, was upon their track. Very long and very -severe were the equinoctial gales that year. We waited long for -news of the "Lone Star" of Savannah, but none ever reached us. We -did at last hear that somewhere far out in the Atlantic a -shattered stern-post of a boat was seen swinging in the trough -of a wave, with the letters "L. S." carved upon it, and that is -all which we shall ever know of the fate of the "Lone Star." - - - -ADVENTURE VI. THE MAN WITH THE TWISTED LIP - -Isa Whitney, brother of the late Elias Whitney, D.D., Principal -of the Theological College of St. George's, was much addicted to -opium. The habit grew upon him, as I understand, from some -foolish freak when he was at college; for having read De -Quincey's description of his dreams and sensations, he had -drenched his tobacco with laudanum in an attempt to produce the -same effects. He found, as so many more have done, that the -practice is easier to attain than to get rid of, and for many -years he continued to be a slave to the drug, an object of -mingled horror and pity to his friends and relatives. I can see -him now, with yellow, pasty face, drooping lids, and pin-point -pupils, all huddled in a chair, the wreck and ruin of a noble -man. - -One night--it was in June, '89--there came a ring to my bell, -about the hour when a man gives his first yawn and glances at the -clock. I sat up in my chair, and my wife laid her needle-work -down in her lap and made a little face of disappointment. - -"A patient!" said she. "You'll have to go out." - -I groaned, for I was newly come back from a weary day. - -We heard the door open, a few hurried words, and then quick steps -upon the linoleum. Our own door flew open, and a lady, clad in -some dark-coloured stuff, with a black veil, entered the room. - -"You will excuse my calling so late," she began, and then, -suddenly losing her self-control, she ran forward, threw her arms -about my wife's neck, and sobbed upon her shoulder. "Oh, I'm in -such trouble!" she cried; "I do so want a little help." - -"Why," said my wife, pulling up her veil, "it is Kate Whitney. -How you startled me, Kate! I had not an idea who you were when -you came in." - -"I didn't know what to do, so I came straight to you." That was -always the way. Folk who were in grief came to my wife like birds -to a light-house. - -"It was very sweet of you to come. Now, you must have some wine -and water, and sit here comfortably and tell us all about it. Or -should you rather that I sent James off to bed?" - -"Oh, no, no! I want the doctor's advice and help, too. It's about -Isa. He has not been home for two days. I am so frightened about -him!" - -It was not the first time that she had spoken to us of her -husband's trouble, to me as a doctor, to my wife as an old friend -and school companion. We soothed and comforted her by such words -as we could find. Did she know where her husband was? Was it -possible that we could bring him back to her? - -It seems that it was. She had the surest information that of late -he had, when the fit was on him, made use of an opium den in the -farthest east of the City. Hitherto his orgies had always been -confined to one day, and he had come back, twitching and -shattered, in the evening. But now the spell had been upon him -eight-and-forty hours, and he lay there, doubtless among the -dregs of the docks, breathing in the poison or sleeping off the -effects. There he was to be found, she was sure of it, at the Bar -of Gold, in Upper Swandam Lane. But what was she to do? How could -she, a young and timid woman, make her way into such a place and -pluck her husband out from among the ruffians who surrounded him? - -There was the case, and of course there was but one way out of -it. Might I not escort her to this place? And then, as a second -thought, why should she come at all? I was Isa Whitney's medical -adviser, and as such I had influence over him. I could manage it -better if I were alone. I promised her on my word that I would -send him home in a cab within two hours if he were indeed at the -address which she had given me. And so in ten minutes I had left -my armchair and cheery sitting-room behind me, and was speeding -eastward in a hansom on a strange errand, as it seemed to me at -the time, though the future only could show how strange it was to -be. - -But there was no great difficulty in the first stage of my -adventure. Upper Swandam Lane is a vile alley lurking behind the -high wharves which line the north side of the river to the east -of London Bridge. Between a slop-shop and a gin-shop, approached -by a steep flight of steps leading down to a black gap like the -mouth of a cave, I found the den of which I was in search. -Ordering my cab to wait, I passed down the steps, worn hollow in -the centre by the ceaseless tread of drunken feet; and by the -light of a flickering oil-lamp above the door I found the latch -and made my way into a long, low room, thick and heavy with the -brown opium smoke, and terraced with wooden berths, like the -forecastle of an emigrant ship. - -Through the gloom one could dimly catch a glimpse of bodies lying -in strange fantastic poses, bowed shoulders, bent knees, heads -thrown back, and chins pointing upward, with here and there a -dark, lack-lustre eye turned upon the newcomer. Out of the black -shadows there glimmered little red circles of light, now bright, -now faint, as the burning poison waxed or waned in the bowls of -the metal pipes. The most lay silent, but some muttered to -themselves, and others talked together in a strange, low, -monotonous voice, their conversation coming in gushes, and then -suddenly tailing off into silence, each mumbling out his own -thoughts and paying little heed to the words of his neighbour. At -the farther end was a small brazier of burning charcoal, beside -which on a three-legged wooden stool there sat a tall, thin old -man, with his jaw resting upon his two fists, and his elbows upon -his knees, staring into the fire. - -As I entered, a sallow Malay attendant had hurried up with a pipe -for me and a supply of the drug, beckoning me to an empty berth. - -"Thank you. I have not come to stay," said I. "There is a friend -of mine here, Mr. Isa Whitney, and I wish to speak with him." - -There was a movement and an exclamation from my right, and -peering through the gloom, I saw Whitney, pale, haggard, and -unkempt, staring out at me. - -"My God! It's Watson," said he. He was in a pitiable state of -reaction, with every nerve in a twitter. "I say, Watson, what -o'clock is it?" - -"Nearly eleven." - -"Of what day?" - -"Of Friday, June 19th." - -"Good heavens! I thought it was Wednesday. It is Wednesday. What -d'you want to frighten a chap for?" He sank his face onto his -arms and began to sob in a high treble key. - -"I tell you that it is Friday, man. Your wife has been waiting -this two days for you. You should be ashamed of yourself!" - -"So I am. But you've got mixed, Watson, for I have only been here -a few hours, three pipes, four pipes--I forget how many. But I'll -go home with you. I wouldn't frighten Kate--poor little Kate. -Give me your hand! Have you a cab?" - -"Yes, I have one waiting." - -"Then I shall go in it. But I must owe something. Find what I -owe, Watson. I am all off colour. I can do nothing for myself." - -I walked down the narrow passage between the double row of -sleepers, holding my breath to keep out the vile, stupefying -fumes of the drug, and looking about for the manager. As I passed -the tall man who sat by the brazier I felt a sudden pluck at my -skirt, and a low voice whispered, "Walk past me, and then look -back at me." The words fell quite distinctly upon my ear. I -glanced down. They could only have come from the old man at my -side, and yet he sat now as absorbed as ever, very thin, very -wrinkled, bent with age, an opium pipe dangling down from between -his knees, as though it had dropped in sheer lassitude from his -fingers. I took two steps forward and looked back. It took all my -self-control to prevent me from breaking out into a cry of -astonishment. He had turned his back so that none could see him -but I. His form had filled out, his wrinkles were gone, the dull -eyes had regained their fire, and there, sitting by the fire and -grinning at my surprise, was none other than Sherlock Holmes. He -made a slight motion to me to approach him, and instantly, as he -turned his face half round to the company once more, subsided -into a doddering, loose-lipped senility. - -"Holmes!" I whispered, "what on earth are you doing in this den?" - -"As low as you can," he answered; "I have excellent ears. If you -would have the great kindness to get rid of that sottish friend -of yours I should be exceedingly glad to have a little talk with -you." - -"I have a cab outside." - -"Then pray send him home in it. You may safely trust him, for he -appears to be too limp to get into any mischief. I should -recommend you also to send a note by the cabman to your wife to -say that you have thrown in your lot with me. If you will wait -outside, I shall be with you in five minutes." - -It was difficult to refuse any of Sherlock Holmes' requests, for -they were always so exceedingly definite, and put forward with -such a quiet air of mastery. I felt, however, that when Whitney -was once confined in the cab my mission was practically -accomplished; and for the rest, I could not wish anything better -than to be associated with my friend in one of those singular -adventures which were the normal condition of his existence. In a -few minutes I had written my note, paid Whitney's bill, led him -out to the cab, and seen him driven through the darkness. In a -very short time a decrepit figure had emerged from the opium den, -and I was walking down the street with Sherlock Holmes. For two -streets he shuffled along with a bent back and an uncertain foot. -Then, glancing quickly round, he straightened himself out and -burst into a hearty fit of laughter. - -"I suppose, Watson," said he, "that you imagine that I have added -opium-smoking to cocaine injections, and all the other little -weaknesses on which you have favoured me with your medical -views." - -"I was certainly surprised to find you there." - -"But not more so than I to find you." - -"I came to find a friend." - -"And I to find an enemy." - -"An enemy?" - -"Yes; one of my natural enemies, or, shall I say, my natural -prey. Briefly, Watson, I am in the midst of a very remarkable -inquiry, and I have hoped to find a clue in the incoherent -ramblings of these sots, as I have done before now. Had I been -recognised in that den my life would not have been worth an -hour's purchase; for I have used it before now for my own -purposes, and the rascally Lascar who runs it has sworn to have -vengeance upon me. There is a trap-door at the back of that -building, near the corner of Paul's Wharf, which could tell some -strange tales of what has passed through it upon the moonless -nights." - -"What! You do not mean bodies?" - -"Ay, bodies, Watson. We should be rich men if we had 1000 pounds -for every poor devil who has been done to death in that den. It -is the vilest murder-trap on the whole riverside, and I fear that -Neville St. Clair has entered it never to leave it more. But our -trap should be here." He put his two forefingers between his -teeth and whistled shrilly--a signal which was answered by a -similar whistle from the distance, followed shortly by the rattle -of wheels and the clink of horses' hoofs. - -"Now, Watson," said Holmes, as a tall dog-cart dashed up through -the gloom, throwing out two golden tunnels of yellow light from -its side lanterns. "You'll come with me, won't you?" - -"If I can be of use." - -"Oh, a trusty comrade is always of use; and a chronicler still -more so. My room at The Cedars is a double-bedded one." - -"The Cedars?" - -"Yes; that is Mr. St. Clair's house. I am staying there while I -conduct the inquiry." - -"Where is it, then?" - -"Near Lee, in Kent. We have a seven-mile drive before us." - -"But I am all in the dark." - -"Of course you are. You'll know all about it presently. Jump up -here. All right, John; we shall not need you. Here's half a -crown. Look out for me to-morrow, about eleven. Give her her -head. So long, then!" - -He flicked the horse with his whip, and we dashed away through -the endless succession of sombre and deserted streets, which -widened gradually, until we were flying across a broad -balustraded bridge, with the murky river flowing sluggishly -beneath us. Beyond lay another dull wilderness of bricks and -mortar, its silence broken only by the heavy, regular footfall of -the policeman, or the songs and shouts of some belated party of -revellers. A dull wrack was drifting slowly across the sky, and a -star or two twinkled dimly here and there through the rifts of -the clouds. Holmes drove in silence, with his head sunk upon his -breast, and the air of a man who is lost in thought, while I sat -beside him, curious to learn what this new quest might be which -seemed to tax his powers so sorely, and yet afraid to break in -upon the current of his thoughts. We had driven several miles, -and were beginning to get to the fringe of the belt of suburban -villas, when he shook himself, shrugged his shoulders, and lit up -his pipe with the air of a man who has satisfied himself that he -is acting for the best. - -"You have a grand gift of silence, Watson," said he. "It makes -you quite invaluable as a companion. 'Pon my word, it is a great -thing for me to have someone to talk to, for my own thoughts are -not over-pleasant. I was wondering what I should say to this dear -little woman to-night when she meets me at the door." - -"You forget that I know nothing about it." - -"I shall just have time to tell you the facts of the case before -we get to Lee. It seems absurdly simple, and yet, somehow I can -get nothing to go upon. There's plenty of thread, no doubt, but I -can't get the end of it into my hand. Now, I'll state the case -clearly and concisely to you, Watson, and maybe you can see a -spark where all is dark to me." - -"Proceed, then." - -"Some years ago--to be definite, in May, 1884--there came to Lee -a gentleman, Neville St. Clair by name, who appeared to have -plenty of money. He took a large villa, laid out the grounds very -nicely, and lived generally in good style. By degrees he made -friends in the neighbourhood, and in 1887 he married the daughter -of a local brewer, by whom he now has two children. He had no -occupation, but was interested in several companies and went into -town as a rule in the morning, returning by the 5:14 from Cannon -Street every night. Mr. St. Clair is now thirty-seven years of -age, is a man of temperate habits, a good husband, a very -affectionate father, and a man who is popular with all who know -him. I may add that his whole debts at the present moment, as far -as we have been able to ascertain, amount to 88 pounds 10s., while -he has 220 pounds standing to his credit in the Capital and -Counties Bank. There is no reason, therefore, to think that money -troubles have been weighing upon his mind. - -"Last Monday Mr. Neville St. Clair went into town rather earlier -than usual, remarking before he started that he had two important -commissions to perform, and that he would bring his little boy -home a box of bricks. Now, by the merest chance, his wife -received a telegram upon this same Monday, very shortly after his -departure, to the effect that a small parcel of considerable -value which she had been expecting was waiting for her at the -offices of the Aberdeen Shipping Company. Now, if you are well up -in your London, you will know that the office of the company is -in Fresno Street, which branches out of Upper Swandam Lane, where -you found me to-night. Mrs. St. Clair had her lunch, started for -the City, did some shopping, proceeded to the company's office, -got her packet, and found herself at exactly 4:35 walking through -Swandam Lane on her way back to the station. Have you followed me -so far?" - -"It is very clear." - -"If you remember, Monday was an exceedingly hot day, and Mrs. St. -Clair walked slowly, glancing about in the hope of seeing a cab, -as she did not like the neighbourhood in which she found herself. -While she was walking in this way down Swandam Lane, she suddenly -heard an ejaculation or cry, and was struck cold to see her -husband looking down at her and, as it seemed to her, beckoning -to her from a second-floor window. The window was open, and she -distinctly saw his face, which she describes as being terribly -agitated. He waved his hands frantically to her, and then -vanished from the window so suddenly that it seemed to her that -he had been plucked back by some irresistible force from behind. -One singular point which struck her quick feminine eye was that -although he wore some dark coat, such as he had started to town -in, he had on neither collar nor necktie. - -"Convinced that something was amiss with him, she rushed down the -steps--for the house was none other than the opium den in which -you found me to-night--and running through the front room she -attempted to ascend the stairs which led to the first floor. At -the foot of the stairs, however, she met this Lascar scoundrel of -whom I have spoken, who thrust her back and, aided by a Dane, who -acts as assistant there, pushed her out into the street. Filled -with the most maddening doubts and fears, she rushed down the -lane and, by rare good-fortune, met in Fresno Street a number of -constables with an inspector, all on their way to their beat. The -inspector and two men accompanied her back, and in spite of the -continued resistance of the proprietor, they made their way to -the room in which Mr. St. Clair had last been seen. There was no -sign of him there. In fact, in the whole of that floor there was -no one to be found save a crippled wretch of hideous aspect, who, -it seems, made his home there. Both he and the Lascar stoutly -swore that no one else had been in the front room during the -afternoon. So determined was their denial that the inspector was -staggered, and had almost come to believe that Mrs. St. Clair had -been deluded when, with a cry, she sprang at a small deal box -which lay upon the table and tore the lid from it. Out there fell -a cascade of children's bricks. It was the toy which he had -promised to bring home. - -"This discovery, and the evident confusion which the cripple -showed, made the inspector realise that the matter was serious. -The rooms were carefully examined, and results all pointed to an -abominable crime. The front room was plainly furnished as a -sitting-room and led into a small bedroom, which looked out upon -the back of one of the wharves. Between the wharf and the bedroom -window is a narrow strip, which is dry at low tide but is covered -at high tide with at least four and a half feet of water. The -bedroom window was a broad one and opened from below. On -examination traces of blood were to be seen upon the windowsill, -and several scattered drops were visible upon the wooden floor of -the bedroom. Thrust away behind a curtain in the front room were -all the clothes of Mr. Neville St. Clair, with the exception of -his coat. His boots, his socks, his hat, and his watch--all were -there. There were no signs of violence upon any of these -garments, and there were no other traces of Mr. Neville St. -Clair. Out of the window he must apparently have gone for no -other exit could be discovered, and the ominous bloodstains upon -the sill gave little promise that he could save himself by -swimming, for the tide was at its very highest at the moment of -the tragedy. - -"And now as to the villains who seemed to be immediately -implicated in the matter. The Lascar was known to be a man of the -vilest antecedents, but as, by Mrs. St. Clair's story, he was -known to have been at the foot of the stair within a very few -seconds of her husband's appearance at the window, he could -hardly have been more than an accessory to the crime. His defence -was one of absolute ignorance, and he protested that he had no -knowledge as to the doings of Hugh Boone, his lodger, and that he -could not account in any way for the presence of the missing -gentleman's clothes. - -"So much for the Lascar manager. Now for the sinister cripple who -lives upon the second floor of the opium den, and who was -certainly the last human being whose eyes rested upon Neville St. -Clair. His name is Hugh Boone, and his hideous face is one which -is familiar to every man who goes much to the City. He is a -professional beggar, though in order to avoid the police -regulations he pretends to a small trade in wax vestas. Some -little distance down Threadneedle Street, upon the left-hand -side, there is, as you may have remarked, a small angle in the -wall. Here it is that this creature takes his daily seat, -cross-legged with his tiny stock of matches on his lap, and as he -is a piteous spectacle a small rain of charity descends into the -greasy leather cap which lies upon the pavement beside him. I -have watched the fellow more than once before ever I thought of -making his professional acquaintance, and I have been surprised -at the harvest which he has reaped in a short time. His -appearance, you see, is so remarkable that no one can pass him -without observing him. A shock of orange hair, a pale face -disfigured by a horrible scar, which, by its contraction, has -turned up the outer edge of his upper lip, a bulldog chin, and a -pair of very penetrating dark eyes, which present a singular -contrast to the colour of his hair, all mark him out from amid -the common crowd of mendicants and so, too, does his wit, for he -is ever ready with a reply to any piece of chaff which may be -thrown at him by the passers-by. This is the man whom we now -learn to have been the lodger at the opium den, and to have been -the last man to see the gentleman of whom we are in quest." - -"But a cripple!" said I. "What could he have done single-handed -against a man in the prime of life?" - -"He is a cripple in the sense that he walks with a limp; but in -other respects he appears to be a powerful and well-nurtured man. -Surely your medical experience would tell you, Watson, that -weakness in one limb is often compensated for by exceptional -strength in the others." - -"Pray continue your narrative." - -"Mrs. St. Clair had fainted at the sight of the blood upon the -window, and she was escorted home in a cab by the police, as her -presence could be of no help to them in their investigations. -Inspector Barton, who had charge of the case, made a very careful -examination of the premises, but without finding anything which -threw any light upon the matter. One mistake had been made in not -arresting Boone instantly, as he was allowed some few minutes -during which he might have communicated with his friend the -Lascar, but this fault was soon remedied, and he was seized and -searched, without anything being found which could incriminate -him. There were, it is true, some blood-stains upon his right -shirt-sleeve, but he pointed to his ring-finger, which had been -cut near the nail, and explained that the bleeding came from -there, adding that he had been to the window not long before, and -that the stains which had been observed there came doubtless from -the same source. He denied strenuously having ever seen Mr. -Neville St. Clair and swore that the presence of the clothes in -his room was as much a mystery to him as to the police. As to -Mrs. St. Clair's assertion that she had actually seen her husband -at the window, he declared that she must have been either mad or -dreaming. He was removed, loudly protesting, to the -police-station, while the inspector remained upon the premises in -the hope that the ebbing tide might afford some fresh clue. - -"And it did, though they hardly found upon the mud-bank what they -had feared to find. It was Neville St. Clair's coat, and not -Neville St. Clair, which lay uncovered as the tide receded. And -what do you think they found in the pockets?" - -"I cannot imagine." - -"No, I don't think you would guess. Every pocket stuffed with -pennies and half-pennies--421 pennies and 270 half-pennies. It -was no wonder that it had not been swept away by the tide. But a -human body is a different matter. There is a fierce eddy between -the wharf and the house. It seemed likely enough that the -weighted coat had remained when the stripped body had been sucked -away into the river." - -"But I understand that all the other clothes were found in the -room. Would the body be dressed in a coat alone?" - -"No, sir, but the facts might be met speciously enough. Suppose -that this man Boone had thrust Neville St. Clair through the -window, there is no human eye which could have seen the deed. -What would he do then? It would of course instantly strike him -that he must get rid of the tell-tale garments. He would seize -the coat, then, and be in the act of throwing it out, when it -would occur to him that it would swim and not sink. He has little -time, for he has heard the scuffle downstairs when the wife tried -to force her way up, and perhaps he has already heard from his -Lascar confederate that the police are hurrying up the street. -There is not an instant to be lost. He rushes to some secret -hoard, where he has accumulated the fruits of his beggary, and he -stuffs all the coins upon which he can lay his hands into the -pockets to make sure of the coat's sinking. He throws it out, and -would have done the same with the other garments had not he heard -the rush of steps below, and only just had time to close the -window when the police appeared." - -"It certainly sounds feasible." - -"Well, we will take it as a working hypothesis for want of a -better. Boone, as I have told you, was arrested and taken to the -station, but it could not be shown that there had ever before -been anything against him. He had for years been known as a -professional beggar, but his life appeared to have been a very -quiet and innocent one. There the matter stands at present, and -the questions which have to be solved--what Neville St. Clair was -doing in the opium den, what happened to him when there, where is -he now, and what Hugh Boone had to do with his disappearance--are -all as far from a solution as ever. I confess that I cannot -recall any case within my experience which looked at the first -glance so simple and yet which presented such difficulties." - -While Sherlock Holmes had been detailing this singular series of -events, we had been whirling through the outskirts of the great -town until the last straggling houses had been left behind, and -we rattled along with a country hedge upon either side of us. -Just as he finished, however, we drove through two scattered -villages, where a few lights still glimmered in the windows. - -"We are on the outskirts of Lee," said my companion. "We have -touched on three English counties in our short drive, starting in -Middlesex, passing over an angle of Surrey, and ending in Kent. -See that light among the trees? That is The Cedars, and beside -that lamp sits a woman whose anxious ears have already, I have -little doubt, caught the clink of our horse's feet." - -"But why are you not conducting the case from Baker Street?" I -asked. - -"Because there are many inquiries which must be made out here. -Mrs. St. Clair has most kindly put two rooms at my disposal, and -you may rest assured that she will have nothing but a welcome for -my friend and colleague. I hate to meet her, Watson, when I have -no news of her husband. Here we are. Whoa, there, whoa!" - -We had pulled up in front of a large villa which stood within its -own grounds. A stable-boy had run out to the horse's head, and -springing down, I followed Holmes up the small, winding -gravel-drive which led to the house. As we approached, the door -flew open, and a little blonde woman stood in the opening, clad -in some sort of light mousseline de soie, with a touch of fluffy -pink chiffon at her neck and wrists. She stood with her figure -outlined against the flood of light, one hand upon the door, one -half-raised in her eagerness, her body slightly bent, her head -and face protruded, with eager eyes and parted lips, a standing -question. - -"Well?" she cried, "well?" And then, seeing that there were two -of us, she gave a cry of hope which sank into a groan as she saw -that my companion shook his head and shrugged his shoulders. - -"No good news?" - -"None." - -"No bad?" - -"No." - -"Thank God for that. But come in. You must be weary, for you have -had a long day." - -"This is my friend, Dr. Watson. He has been of most vital use to -me in several of my cases, and a lucky chance has made it -possible for me to bring him out and associate him with this -investigation." - -"I am delighted to see you," said she, pressing my hand warmly. -"You will, I am sure, forgive anything that may be wanting in our -arrangements, when you consider the blow which has come so -suddenly upon us." - -"My dear madam," said I, "I am an old campaigner, and if I were -not I can very well see that no apology is needed. If I can be of -any assistance, either to you or to my friend here, I shall be -indeed happy." - -"Now, Mr. Sherlock Holmes," said the lady as we entered a -well-lit dining-room, upon the table of which a cold supper had -been laid out, "I should very much like to ask you one or two -plain questions, to which I beg that you will give a plain -answer." - -"Certainly, madam." - -"Do not trouble about my feelings. I am not hysterical, nor given -to fainting. I simply wish to hear your real, real opinion." - -"Upon what point?" - -"In your heart of hearts, do you think that Neville is alive?" - -Sherlock Holmes seemed to be embarrassed by the question. -"Frankly, now!" she repeated, standing upon the rug and looking -keenly down at him as he leaned back in a basket-chair. - -"Frankly, then, madam, I do not." - -"You think that he is dead?" - -"I do." - -"Murdered?" - -"I don't say that. Perhaps." - -"And on what day did he meet his death?" - -"On Monday." - -"Then perhaps, Mr. Holmes, you will be good enough to explain how -it is that I have received a letter from him to-day." - -Sherlock Holmes sprang out of his chair as if he had been -galvanised. - -"What!" he roared. - -"Yes, to-day." She stood smiling, holding up a little slip of -paper in the air. - -"May I see it?" - -"Certainly." - -He snatched it from her in his eagerness, and smoothing it out -upon the table he drew over the lamp and examined it intently. I -had left my chair and was gazing at it over his shoulder. The -envelope was a very coarse one and was stamped with the Gravesend -postmark and with the date of that very day, or rather of the day -before, for it was considerably after midnight. - -"Coarse writing," murmured Holmes. "Surely this is not your -husband's writing, madam." - -"No, but the enclosure is." - -"I perceive also that whoever addressed the envelope had to go -and inquire as to the address." - -"How can you tell that?" - -"The name, you see, is in perfectly black ink, which has dried -itself. The rest is of the greyish colour, which shows that -blotting-paper has been used. If it had been written straight -off, and then blotted, none would be of a deep black shade. This -man has written the name, and there has then been a pause before -he wrote the address, which can only mean that he was not -familiar with it. It is, of course, a trifle, but there is -nothing so important as trifles. Let us now see the letter. Ha! -there has been an enclosure here!" - -"Yes, there was a ring. His signet-ring." - -"And you are sure that this is your husband's hand?" - -"One of his hands." - -"One?" - -"His hand when he wrote hurriedly. It is very unlike his usual -writing, and yet I know it well." - -"'Dearest do not be frightened. All will come well. There is a -huge error which it may take some little time to rectify. -Wait in patience.--NEVILLE.' Written in pencil upon the fly-leaf -of a book, octavo size, no water-mark. Hum! Posted to-day in -Gravesend by a man with a dirty thumb. Ha! And the flap has been -gummed, if I am not very much in error, by a person who had been -chewing tobacco. And you have no doubt that it is your husband's -hand, madam?" - -"None. Neville wrote those words." - -"And they were posted to-day at Gravesend. Well, Mrs. St. Clair, -the clouds lighten, though I should not venture to say that the -danger is over." - -"But he must be alive, Mr. Holmes." - -"Unless this is a clever forgery to put us on the wrong scent. -The ring, after all, proves nothing. It may have been taken from -him." - -"No, no; it is, it is his very own writing!" - -"Very well. It may, however, have been written on Monday and only -posted to-day." - -"That is possible." - -"If so, much may have happened between." - -"Oh, you must not discourage me, Mr. Holmes. I know that all is -well with him. There is so keen a sympathy between us that I -should know if evil came upon him. On the very day that I saw him -last he cut himself in the bedroom, and yet I in the dining-room -rushed upstairs instantly with the utmost certainty that -something had happened. Do you think that I would respond to such -a trifle and yet be ignorant of his death?" - -"I have seen too much not to know that the impression of a woman -may be more valuable than the conclusion of an analytical -reasoner. And in this letter you certainly have a very strong -piece of evidence to corroborate your view. But if your husband -is alive and able to write letters, why should he remain away -from you?" - -"I cannot imagine. It is unthinkable." - -"And on Monday he made no remarks before leaving you?" - -"No." - -"And you were surprised to see him in Swandam Lane?" - -"Very much so." - -"Was the window open?" - -"Yes." - -"Then he might have called to you?" - -"He might." - -"He only, as I understand, gave an inarticulate cry?" - -"Yes." - -"A call for help, you thought?" - -"Yes. He waved his hands." - -"But it might have been a cry of surprise. Astonishment at the -unexpected sight of you might cause him to throw up his hands?" - -"It is possible." - -"And you thought he was pulled back?" - -"He disappeared so suddenly." - -"He might have leaped back. You did not see anyone else in the -room?" - -"No, but this horrible man confessed to having been there, and -the Lascar was at the foot of the stairs." - -"Quite so. Your husband, as far as you could see, had his -ordinary clothes on?" - -"But without his collar or tie. I distinctly saw his bare -throat." - -"Had he ever spoken of Swandam Lane?" - -"Never." - -"Had he ever showed any signs of having taken opium?" - -"Never." - -"Thank you, Mrs. St. Clair. Those are the principal points about -which I wished to be absolutely clear. We shall now have a little -supper and then retire, for we may have a very busy day -to-morrow." - -A large and comfortable double-bedded room had been placed at our -disposal, and I was quickly between the sheets, for I was weary -after my night of adventure. Sherlock Holmes was a man, however, -who, when he had an unsolved problem upon his mind, would go for -days, and even for a week, without rest, turning it over, -rearranging his facts, looking at it from every point of view -until he had either fathomed it or convinced himself that his -data were insufficient. It was soon evident to me that he was now -preparing for an all-night sitting. He took off his coat and -waistcoat, put on a large blue dressing-gown, and then wandered -about the room collecting pillows from his bed and cushions from -the sofa and armchairs. With these he constructed a sort of -Eastern divan, upon which he perched himself cross-legged, with -an ounce of shag tobacco and a box of matches laid out in front -of him. In the dim light of the lamp I saw him sitting there, an -old briar pipe between his lips, his eyes fixed vacantly upon the -corner of the ceiling, the blue smoke curling up from him, -silent, motionless, with the light shining upon his strong-set -aquiline features. So he sat as I dropped off to sleep, and so he -sat when a sudden ejaculation caused me to wake up, and I found -the summer sun shining into the apartment. The pipe was still -between his lips, the smoke still curled upward, and the room was -full of a dense tobacco haze, but nothing remained of the heap of -shag which I had seen upon the previous night. - -"Awake, Watson?" he asked. - -"Yes." - -"Game for a morning drive?" - -"Certainly." - -"Then dress. No one is stirring yet, but I know where the -stable-boy sleeps, and we shall soon have the trap out." He -chuckled to himself as he spoke, his eyes twinkled, and he seemed -a different man to the sombre thinker of the previous night. - -As I dressed I glanced at my watch. It was no wonder that no one -was stirring. It was twenty-five minutes past four. I had hardly -finished when Holmes returned with the news that the boy was -putting in the horse. - -"I want to test a little theory of mine," said he, pulling on his -boots. "I think, Watson, that you are now standing in the -presence of one of the most absolute fools in Europe. I deserve -to be kicked from here to Charing Cross. But I think I have the -key of the affair now." - -"And where is it?" I asked, smiling. - -"In the bathroom," he answered. "Oh, yes, I am not joking," he -continued, seeing my look of incredulity. "I have just been -there, and I have taken it out, and I have got it in this -Gladstone bag. Come on, my boy, and we shall see whether it will -not fit the lock." - -We made our way downstairs as quietly as possible, and out into -the bright morning sunshine. In the road stood our horse and -trap, with the half-clad stable-boy waiting at the head. We both -sprang in, and away we dashed down the London Road. A few country -carts were stirring, bearing in vegetables to the metropolis, but -the lines of villas on either side were as silent and lifeless as -some city in a dream. - -"It has been in some points a singular case," said Holmes, -flicking the horse on into a gallop. "I confess that I have been -as blind as a mole, but it is better to learn wisdom late than -never to learn it at all." - -In town the earliest risers were just beginning to look sleepily -from their windows as we drove through the streets of the Surrey -side. Passing down the Waterloo Bridge Road we crossed over the -river, and dashing up Wellington Street wheeled sharply to the -right and found ourselves in Bow Street. Sherlock Holmes was well -known to the force, and the two constables at the door saluted -him. One of them held the horse's head while the other led us in. - -"Who is on duty?" asked Holmes. - -"Inspector Bradstreet, sir." - -"Ah, Bradstreet, how are you?" A tall, stout official had come -down the stone-flagged passage, in a peaked cap and frogged -jacket. "I wish to have a quiet word with you, Bradstreet." -"Certainly, Mr. Holmes. Step into my room here." It was a small, -office-like room, with a huge ledger upon the table, and a -telephone projecting from the wall. The inspector sat down at his -desk. - -"What can I do for you, Mr. Holmes?" - -"I called about that beggarman, Boone--the one who was charged -with being concerned in the disappearance of Mr. Neville St. -Clair, of Lee." - -"Yes. He was brought up and remanded for further inquiries." - -"So I heard. You have him here?" - -"In the cells." - -"Is he quiet?" - -"Oh, he gives no trouble. But he is a dirty scoundrel." - -"Dirty?" - -"Yes, it is all we can do to make him wash his hands, and his -face is as black as a tinker's. Well, when once his case has been -settled, he will have a regular prison bath; and I think, if you -saw him, you would agree with me that he needed it." - -"I should like to see him very much." - -"Would you? That is easily done. Come this way. You can leave -your bag." - -"No, I think that I'll take it." - -"Very good. Come this way, if you please." He led us down a -passage, opened a barred door, passed down a winding stair, and -brought us to a whitewashed corridor with a line of doors on each -side. - -"The third on the right is his," said the inspector. "Here it -is!" He quietly shot back a panel in the upper part of the door -and glanced through. - -"He is asleep," said he. "You can see him very well." - -We both put our eyes to the grating. The prisoner lay with his -face towards us, in a very deep sleep, breathing slowly and -heavily. He was a middle-sized man, coarsely clad as became his -calling, with a coloured shirt protruding through the rent in his -tattered coat. He was, as the inspector had said, extremely -dirty, but the grime which covered his face could not conceal its -repulsive ugliness. A broad wheal from an old scar ran right -across it from eye to chin, and by its contraction had turned up -one side of the upper lip, so that three teeth were exposed in a -perpetual snarl. A shock of very bright red hair grew low over -his eyes and forehead. - -"He's a beauty, isn't he?" said the inspector. - -"He certainly needs a wash," remarked Holmes. "I had an idea that -he might, and I took the liberty of bringing the tools with me." -He opened the Gladstone bag as he spoke, and took out, to my -astonishment, a very large bath-sponge. - -"He! he! You are a funny one," chuckled the inspector. - -"Now, if you will have the great goodness to open that door very -quietly, we will soon make him cut a much more respectable -figure." - -"Well, I don't know why not," said the inspector. "He doesn't -look a credit to the Bow Street cells, does he?" He slipped his -key into the lock, and we all very quietly entered the cell. The -sleeper half turned, and then settled down once more into a deep -slumber. Holmes stooped to the water-jug, moistened his sponge, -and then rubbed it twice vigorously across and down the -prisoner's face. - -"Let me introduce you," he shouted, "to Mr. Neville St. Clair, of -Lee, in the county of Kent." - -Never in my life have I seen such a sight. The man's face peeled -off under the sponge like the bark from a tree. Gone was the -coarse brown tint! Gone, too, was the horrid scar which had -seamed it across, and the twisted lip which had given the -repulsive sneer to the face! A twitch brought away the tangled -red hair, and there, sitting up in his bed, was a pale, -sad-faced, refined-looking man, black-haired and smooth-skinned, -rubbing his eyes and staring about him with sleepy bewilderment. -Then suddenly realising the exposure, he broke into a scream and -threw himself down with his face to the pillow. - -"Great heavens!" cried the inspector, "it is, indeed, the missing -man. I know him from the photograph." - -The prisoner turned with the reckless air of a man who abandons -himself to his destiny. "Be it so," said he. "And pray what am I -charged with?" - -"With making away with Mr. Neville St.-- Oh, come, you can't be -charged with that unless they make a case of attempted suicide of -it," said the inspector with a grin. "Well, I have been -twenty-seven years in the force, but this really takes the cake." - -"If I am Mr. Neville St. Clair, then it is obvious that no crime -has been committed, and that, therefore, I am illegally -detained." - -"No crime, but a very great error has been committed," said -Holmes. "You would have done better to have trusted your wife." - -"It was not the wife; it was the children," groaned the prisoner. -"God help me, I would not have them ashamed of their father. My -God! What an exposure! What can I do?" - -Sherlock Holmes sat down beside him on the couch and patted him -kindly on the shoulder. - -"If you leave it to a court of law to clear the matter up," said -he, "of course you can hardly avoid publicity. On the other hand, -if you convince the police authorities that there is no possible -case against you, I do not know that there is any reason that the -details should find their way into the papers. Inspector -Bradstreet would, I am sure, make notes upon anything which you -might tell us and submit it to the proper authorities. The case -would then never go into court at all." - -"God bless you!" cried the prisoner passionately. "I would have -endured imprisonment, ay, even execution, rather than have left -my miserable secret as a family blot to my children. - -"You are the first who have ever heard my story. My father was a -schoolmaster in Chesterfield, where I received an excellent -education. I travelled in my youth, took to the stage, and -finally became a reporter on an evening paper in London. One day -my editor wished to have a series of articles upon begging in the -metropolis, and I volunteered to supply them. There was the point -from which all my adventures started. It was only by trying -begging as an amateur that I could get the facts upon which to -base my articles. When an actor I had, of course, learned all the -secrets of making up, and had been famous in the green-room for -my skill. I took advantage now of my attainments. I painted my -face, and to make myself as pitiable as possible I made a good -scar and fixed one side of my lip in a twist by the aid of a -small slip of flesh-coloured plaster. Then with a red head of -hair, and an appropriate dress, I took my station in the business -part of the city, ostensibly as a match-seller but really as a -beggar. For seven hours I plied my trade, and when I returned -home in the evening I found to my surprise that I had received no -less than 26s. 4d. - -"I wrote my articles and thought little more of the matter until, -some time later, I backed a bill for a friend and had a writ -served upon me for 25 pounds. I was at my wit's end where to get -the money, but a sudden idea came to me. I begged a fortnight's -grace from the creditor, asked for a holiday from my employers, -and spent the time in begging in the City under my disguise. In -ten days I had the money and had paid the debt. - -"Well, you can imagine how hard it was to settle down to arduous -work at 2 pounds a week when I knew that I could earn as much in -a day by smearing my face with a little paint, laying my cap on -the ground, and sitting still. It was a long fight between my -pride and the money, but the dollars won at last, and I threw up -reporting and sat day after day in the corner which I had first -chosen, inspiring pity by my ghastly face and filling my pockets -with coppers. Only one man knew my secret. He was the keeper of a -low den in which I used to lodge in Swandam Lane, where I could -every morning emerge as a squalid beggar and in the evenings -transform myself into a well-dressed man about town. This fellow, -a Lascar, was well paid by me for his rooms, so that I knew that -my secret was safe in his possession. - -"Well, very soon I found that I was saving considerable sums of -money. I do not mean that any beggar in the streets of London -could earn 700 pounds a year--which is less than my average -takings--but I had exceptional advantages in my power of making -up, and also in a facility of repartee, which improved by -practice and made me quite a recognised character in the City. -All day a stream of pennies, varied by silver, poured in upon me, -and it was a very bad day in which I failed to take 2 pounds. - -"As I grew richer I grew more ambitious, took a house in the -country, and eventually married, without anyone having a -suspicion as to my real occupation. My dear wife knew that I had -business in the City. She little knew what. - -"Last Monday I had finished for the day and was dressing in my -room above the opium den when I looked out of my window and saw, -to my horror and astonishment, that my wife was standing in the -street, with her eyes fixed full upon me. I gave a cry of -surprise, threw up my arms to cover my face, and, rushing to my -confidant, the Lascar, entreated him to prevent anyone from -coming up to me. I heard her voice downstairs, but I knew that -she could not ascend. Swiftly I threw off my clothes, pulled on -those of a beggar, and put on my pigments and wig. Even a wife's -eyes could not pierce so complete a disguise. But then it -occurred to me that there might be a search in the room, and that -the clothes might betray me. I threw open the window, reopening -by my violence a small cut which I had inflicted upon myself in -the bedroom that morning. Then I seized my coat, which was -weighted by the coppers which I had just transferred to it from -the leather bag in which I carried my takings. I hurled it out of -the window, and it disappeared into the Thames. The other clothes -would have followed, but at that moment there was a rush of -constables up the stair, and a few minutes after I found, rather, -I confess, to my relief, that instead of being identified as Mr. -Neville St. Clair, I was arrested as his murderer. - -"I do not know that there is anything else for me to explain. I -was determined to preserve my disguise as long as possible, and -hence my preference for a dirty face. Knowing that my wife would -be terribly anxious, I slipped off my ring and confided it to the -Lascar at a moment when no constable was watching me, together -with a hurried scrawl, telling her that she had no cause to -fear." - -"That note only reached her yesterday," said Holmes. - -"Good God! What a week she must have spent!" - -"The police have watched this Lascar," said Inspector Bradstreet, -"and I can quite understand that he might find it difficult to -post a letter unobserved. Probably he handed it to some sailor -customer of his, who forgot all about it for some days." - -"That was it," said Holmes, nodding approvingly; "I have no doubt -of it. But have you never been prosecuted for begging?" - -"Many times; but what was a fine to me?" - -"It must stop here, however," said Bradstreet. "If the police are -to hush this thing up, there must be no more of Hugh Boone." - -"I have sworn it by the most solemn oaths which a man can take." - -"In that case I think that it is probable that no further steps -may be taken. But if you are found again, then all must come out. -I am sure, Mr. Holmes, that we are very much indebted to you for -having cleared the matter up. I wish I knew how you reach your -results." - -"I reached this one," said my friend, "by sitting upon five -pillows and consuming an ounce of shag. I think, Watson, that if -we drive to Baker Street we shall just be in time for breakfast." - - - -VII. THE ADVENTURE OF THE BLUE CARBUNCLE - -I had called upon my friend Sherlock Holmes upon the second -morning after Christmas, with the intention of wishing him the -compliments of the season. He was lounging upon the sofa in a -purple dressing-gown, a pipe-rack within his reach upon the -right, and a pile of crumpled morning papers, evidently newly -studied, near at hand. Beside the couch was a wooden chair, and -on the angle of the back hung a very seedy and disreputable -hard-felt hat, much the worse for wear, and cracked in several -places. A lens and a forceps lying upon the seat of the chair -suggested that the hat had been suspended in this manner for the -purpose of examination. - -"You are engaged," said I; "perhaps I interrupt you." - -"Not at all. I am glad to have a friend with whom I can discuss -my results. The matter is a perfectly trivial one"--he jerked his -thumb in the direction of the old hat--"but there are points in -connection with it which are not entirely devoid of interest and -even of instruction." - -I seated myself in his armchair and warmed my hands before his -crackling fire, for a sharp frost had set in, and the windows -were thick with the ice crystals. "I suppose," I remarked, "that, -homely as it looks, this thing has some deadly story linked on to -it--that it is the clue which will guide you in the solution of -some mystery and the punishment of some crime." - -"No, no. No crime," said Sherlock Holmes, laughing. "Only one of -those whimsical little incidents which will happen when you have -four million human beings all jostling each other within the -space of a few square miles. Amid the action and reaction of so -dense a swarm of humanity, every possible combination of events -may be expected to take place, and many a little problem will be -presented which may be striking and bizarre without being -criminal. We have already had experience of such." - -"So much so," I remarked, "that of the last six cases which I -have added to my notes, three have been entirely free of any -legal crime." - -"Precisely. You allude to my attempt to recover the Irene Adler -papers, to the singular case of Miss Mary Sutherland, and to the -adventure of the man with the twisted lip. Well, I have no doubt -that this small matter will fall into the same innocent category. -You know Peterson, the commissionaire?" - -"Yes." - -"It is to him that this trophy belongs." - -"It is his hat." - -"No, no, he found it. Its owner is unknown. I beg that you will -look upon it not as a battered billycock but as an intellectual -problem. And, first, as to how it came here. It arrived upon -Christmas morning, in company with a good fat goose, which is, I -have no doubt, roasting at this moment in front of Peterson's -fire. The facts are these: about four o'clock on Christmas -morning, Peterson, who, as you know, is a very honest fellow, was -returning from some small jollification and was making his way -homeward down Tottenham Court Road. In front of him he saw, in -the gaslight, a tallish man, walking with a slight stagger, and -carrying a white goose slung over his shoulder. As he reached the -corner of Goodge Street, a row broke out between this stranger -and a little knot of roughs. One of the latter knocked off the -man's hat, on which he raised his stick to defend himself and, -swinging it over his head, smashed the shop window behind him. -Peterson had rushed forward to protect the stranger from his -assailants; but the man, shocked at having broken the window, and -seeing an official-looking person in uniform rushing towards him, -dropped his goose, took to his heels, and vanished amid the -labyrinth of small streets which lie at the back of Tottenham -Court Road. The roughs had also fled at the appearance of -Peterson, so that he was left in possession of the field of -battle, and also of the spoils of victory in the shape of this -battered hat and a most unimpeachable Christmas goose." - -"Which surely he restored to their owner?" - -"My dear fellow, there lies the problem. It is true that 'For -Mrs. Henry Baker' was printed upon a small card which was tied to -the bird's left leg, and it is also true that the initials 'H. -B.' are legible upon the lining of this hat, but as there are -some thousands of Bakers, and some hundreds of Henry Bakers in -this city of ours, it is not easy to restore lost property to any -one of them." - -"What, then, did Peterson do?" - -"He brought round both hat and goose to me on Christmas morning, -knowing that even the smallest problems are of interest to me. -The goose we retained until this morning, when there were signs -that, in spite of the slight frost, it would be well that it -should be eaten without unnecessary delay. Its finder has carried -it off, therefore, to fulfil the ultimate destiny of a goose, -while I continue to retain the hat of the unknown gentleman who -lost his Christmas dinner." - -"Did he not advertise?" - -"No." - -"Then, what clue could you have as to his identity?" - -"Only as much as we can deduce." - -"From his hat?" - -"Precisely." - -"But you are joking. What can you gather from this old battered -felt?" - -"Here is my lens. You know my methods. What can you gather -yourself as to the individuality of the man who has worn this -article?" - -I took the tattered object in my hands and turned it over rather -ruefully. It was a very ordinary black hat of the usual round -shape, hard and much the worse for wear. The lining had been of -red silk, but was a good deal discoloured. There was no maker's -name; but, as Holmes had remarked, the initials "H. B." were -scrawled upon one side. It was pierced in the brim for a -hat-securer, but the elastic was missing. For the rest, it was -cracked, exceedingly dusty, and spotted in several places, -although there seemed to have been some attempt to hide the -discoloured patches by smearing them with ink. - -"I can see nothing," said I, handing it back to my friend. - -"On the contrary, Watson, you can see everything. You fail, -however, to reason from what you see. You are too timid in -drawing your inferences." - -"Then, pray tell me what it is that you can infer from this hat?" - -He picked it up and gazed at it in the peculiar introspective -fashion which was characteristic of him. "It is perhaps less -suggestive than it might have been," he remarked, "and yet there -are a few inferences which are very distinct, and a few others -which represent at least a strong balance of probability. That -the man was highly intellectual is of course obvious upon the -face of it, and also that he was fairly well-to-do within the -last three years, although he has now fallen upon evil days. He -had foresight, but has less now than formerly, pointing to a -moral retrogression, which, when taken with the decline of his -fortunes, seems to indicate some evil influence, probably drink, -at work upon him. This may account also for the obvious fact that -his wife has ceased to love him." - -"My dear Holmes!" - -"He has, however, retained some degree of self-respect," he -continued, disregarding my remonstrance. "He is a man who leads a -sedentary life, goes out little, is out of training entirely, is -middle-aged, has grizzled hair which he has had cut within the -last few days, and which he anoints with lime-cream. These are -the more patent facts which are to be deduced from his hat. Also, -by the way, that it is extremely improbable that he has gas laid -on in his house." - -"You are certainly joking, Holmes." - -"Not in the least. Is it possible that even now, when I give you -these results, you are unable to see how they are attained?" - -"I have no doubt that I am very stupid, but I must confess that I -am unable to follow you. For example, how did you deduce that -this man was intellectual?" - -For answer Holmes clapped the hat upon his head. It came right -over the forehead and settled upon the bridge of his nose. "It is -a question of cubic capacity," said he; "a man with so large a -brain must have something in it." - -"The decline of his fortunes, then?" - -"This hat is three years old. These flat brims curled at the edge -came in then. It is a hat of the very best quality. Look at the -band of ribbed silk and the excellent lining. If this man could -afford to buy so expensive a hat three years ago, and has had no -hat since, then he has assuredly gone down in the world." - -"Well, that is clear enough, certainly. But how about the -foresight and the moral retrogression?" - -Sherlock Holmes laughed. "Here is the foresight," said he putting -his finger upon the little disc and loop of the hat-securer. -"They are never sold upon hats. If this man ordered one, it is a -sign of a certain amount of foresight, since he went out of his -way to take this precaution against the wind. But since we see -that he has broken the elastic and has not troubled to replace -it, it is obvious that he has less foresight now than formerly, -which is a distinct proof of a weakening nature. On the other -hand, he has endeavoured to conceal some of these stains upon the -felt by daubing them with ink, which is a sign that he has not -entirely lost his self-respect." - -"Your reasoning is certainly plausible." - -"The further points, that he is middle-aged, that his hair is -grizzled, that it has been recently cut, and that he uses -lime-cream, are all to be gathered from a close examination of the -lower part of the lining. The lens discloses a large number of -hair-ends, clean cut by the scissors of the barber. They all -appear to be adhesive, and there is a distinct odour of -lime-cream. This dust, you will observe, is not the gritty, grey -dust of the street but the fluffy brown dust of the house, -showing that it has been hung up indoors most of the time, while -the marks of moisture upon the inside are proof positive that the -wearer perspired very freely, and could therefore, hardly be in -the best of training." - -"But his wife--you said that she had ceased to love him." - -"This hat has not been brushed for weeks. When I see you, my dear -Watson, with a week's accumulation of dust upon your hat, and -when your wife allows you to go out in such a state, I shall fear -that you also have been unfortunate enough to lose your wife's -affection." - -"But he might be a bachelor." - -"Nay, he was bringing home the goose as a peace-offering to his -wife. Remember the card upon the bird's leg." - -"You have an answer to everything. But how on earth do you deduce -that the gas is not laid on in his house?" - -"One tallow stain, or even two, might come by chance; but when I -see no less than five, I think that there can be little doubt -that the individual must be brought into frequent contact with -burning tallow--walks upstairs at night probably with his hat in -one hand and a guttering candle in the other. Anyhow, he never -got tallow-stains from a gas-jet. Are you satisfied?" - -"Well, it is very ingenious," said I, laughing; "but since, as -you said just now, there has been no crime committed, and no harm -done save the loss of a goose, all this seems to be rather a -waste of energy." - -Sherlock Holmes had opened his mouth to reply, when the door flew -open, and Peterson, the commissionaire, rushed into the apartment -with flushed cheeks and the face of a man who is dazed with -astonishment. - -"The goose, Mr. Holmes! The goose, sir!" he gasped. - -"Eh? What of it, then? Has it returned to life and flapped off -through the kitchen window?" Holmes twisted himself round upon -the sofa to get a fairer view of the man's excited face. - -"See here, sir! See what my wife found in its crop!" He held out -his hand and displayed upon the centre of the palm a brilliantly -scintillating blue stone, rather smaller than a bean in size, but -of such purity and radiance that it twinkled like an electric -point in the dark hollow of his hand. - -Sherlock Holmes sat up with a whistle. "By Jove, Peterson!" said -he, "this is treasure trove indeed. I suppose you know what you -have got?" - -"A diamond, sir? A precious stone. It cuts into glass as though -it were putty." - -"It's more than a precious stone. It is the precious stone." - -"Not the Countess of Morcar's blue carbuncle!" I ejaculated. - -"Precisely so. I ought to know its size and shape, seeing that I -have read the advertisement about it in The Times every day -lately. It is absolutely unique, and its value can only be -conjectured, but the reward offered of 1000 pounds is certainly -not within a twentieth part of the market price." - -"A thousand pounds! Great Lord of mercy!" The commissionaire -plumped down into a chair and stared from one to the other of us. - -"That is the reward, and I have reason to know that there are -sentimental considerations in the background which would induce -the Countess to part with half her fortune if she could but -recover the gem." - -"It was lost, if I remember aright, at the Hotel Cosmopolitan," I -remarked. - -"Precisely so, on December 22nd, just five days ago. John Horner, -a plumber, was accused of having abstracted it from the lady's -jewel-case. The evidence against him was so strong that the case -has been referred to the Assizes. I have some account of the -matter here, I believe." He rummaged amid his newspapers, -glancing over the dates, until at last he smoothed one out, -doubled it over, and read the following paragraph: - -"Hotel Cosmopolitan Jewel Robbery. John Horner, 26, plumber, was -brought up upon the charge of having upon the 22nd inst., -abstracted from the jewel-case of the Countess of Morcar the -valuable gem known as the blue carbuncle. James Ryder, -upper-attendant at the hotel, gave his evidence to the effect -that he had shown Horner up to the dressing-room of the Countess -of Morcar upon the day of the robbery in order that he might -solder the second bar of the grate, which was loose. He had -remained with Horner some little time, but had finally been -called away. On returning, he found that Horner had disappeared, -that the bureau had been forced open, and that the small morocco -casket in which, as it afterwards transpired, the Countess was -accustomed to keep her jewel, was lying empty upon the -dressing-table. Ryder instantly gave the alarm, and Horner was -arrested the same evening; but the stone could not be found -either upon his person or in his rooms. Catherine Cusack, maid to -the Countess, deposed to having heard Ryder's cry of dismay on -discovering the robbery, and to having rushed into the room, -where she found matters as described by the last witness. -Inspector Bradstreet, B division, gave evidence as to the arrest -of Horner, who struggled frantically, and protested his innocence -in the strongest terms. Evidence of a previous conviction for -robbery having been given against the prisoner, the magistrate -refused to deal summarily with the offence, but referred it to -the Assizes. Horner, who had shown signs of intense emotion -during the proceedings, fainted away at the conclusion and was -carried out of court." - -"Hum! So much for the police-court," said Holmes thoughtfully, -tossing aside the paper. "The question for us now to solve is the -sequence of events leading from a rifled jewel-case at one end to -the crop of a goose in Tottenham Court Road at the other. You -see, Watson, our little deductions have suddenly assumed a much -more important and less innocent aspect. Here is the stone; the -stone came from the goose, and the goose came from Mr. Henry -Baker, the gentleman with the bad hat and all the other -characteristics with which I have bored you. So now we must set -ourselves very seriously to finding this gentleman and -ascertaining what part he has played in this little mystery. To -do this, we must try the simplest means first, and these lie -undoubtedly in an advertisement in all the evening papers. If -this fail, I shall have recourse to other methods." - -"What will you say?" - -"Give me a pencil and that slip of paper. Now, then: 'Found at -the corner of Goodge Street, a goose and a black felt hat. Mr. -Henry Baker can have the same by applying at 6:30 this evening at -221B, Baker Street.' That is clear and concise." - -"Very. But will he see it?" - -"Well, he is sure to keep an eye on the papers, since, to a poor -man, the loss was a heavy one. He was clearly so scared by his -mischance in breaking the window and by the approach of Peterson -that he thought of nothing but flight, but since then he must -have bitterly regretted the impulse which caused him to drop his -bird. Then, again, the introduction of his name will cause him to -see it, for everyone who knows him will direct his attention to -it. Here you are, Peterson, run down to the advertising agency -and have this put in the evening papers." - -"In which, sir?" - -"Oh, in the Globe, Star, Pall Mall, St. James's, Evening News, -Standard, Echo, and any others that occur to you." - -"Very well, sir. And this stone?" - -"Ah, yes, I shall keep the stone. Thank you. And, I say, -Peterson, just buy a goose on your way back and leave it here -with me, for we must have one to give to this gentleman in place -of the one which your family is now devouring." - -When the commissionaire had gone, Holmes took up the stone and -held it against the light. "It's a bonny thing," said he. "Just -see how it glints and sparkles. Of course it is a nucleus and -focus of crime. Every good stone is. They are the devil's pet -baits. In the larger and older jewels every facet may stand for a -bloody deed. This stone is not yet twenty years old. It was found -in the banks of the Amoy River in southern China and is remarkable -in having every characteristic of the carbuncle, save that it is -blue in shade instead of ruby red. In spite of its youth, it has -already a sinister history. There have been two murders, a -vitriol-throwing, a suicide, and several robberies brought about -for the sake of this forty-grain weight of crystallised charcoal. -Who would think that so pretty a toy would be a purveyor to the -gallows and the prison? I'll lock it up in my strong box now and -drop a line to the Countess to say that we have it." - -"Do you think that this man Horner is innocent?" - -"I cannot tell." - -"Well, then, do you imagine that this other one, Henry Baker, had -anything to do with the matter?" - -"It is, I think, much more likely that Henry Baker is an -absolutely innocent man, who had no idea that the bird which he -was carrying was of considerably more value than if it were made -of solid gold. That, however, I shall determine by a very simple -test if we have an answer to our advertisement." - -"And you can do nothing until then?" - -"Nothing." - -"In that case I shall continue my professional round. But I shall -come back in the evening at the hour you have mentioned, for I -should like to see the solution of so tangled a business." - -"Very glad to see you. I dine at seven. There is a woodcock, I -believe. By the way, in view of recent occurrences, perhaps I -ought to ask Mrs. Hudson to examine its crop." - -I had been delayed at a case, and it was a little after half-past -six when I found myself in Baker Street once more. As I -approached the house I saw a tall man in a Scotch bonnet with a -coat which was buttoned up to his chin waiting outside in the -bright semicircle which was thrown from the fanlight. Just as I -arrived the door was opened, and we were shown up together to -Holmes' room. - -"Mr. Henry Baker, I believe," said he, rising from his armchair -and greeting his visitor with the easy air of geniality which he -could so readily assume. "Pray take this chair by the fire, Mr. -Baker. It is a cold night, and I observe that your circulation is -more adapted for summer than for winter. Ah, Watson, you have -just come at the right time. Is that your hat, Mr. Baker?" - -"Yes, sir, that is undoubtedly my hat." - -He was a large man with rounded shoulders, a massive head, and a -broad, intelligent face, sloping down to a pointed beard of -grizzled brown. A touch of red in nose and cheeks, with a slight -tremor of his extended hand, recalled Holmes' surmise as to his -habits. His rusty black frock-coat was buttoned right up in -front, with the collar turned up, and his lank wrists protruded -from his sleeves without a sign of cuff or shirt. He spoke in a -slow staccato fashion, choosing his words with care, and gave the -impression generally of a man of learning and letters who had had -ill-usage at the hands of fortune. - -"We have retained these things for some days," said Holmes, -"because we expected to see an advertisement from you giving your -address. I am at a loss to know now why you did not advertise." - -Our visitor gave a rather shamefaced laugh. "Shillings have not -been so plentiful with me as they once were," he remarked. "I had -no doubt that the gang of roughs who assaulted me had carried off -both my hat and the bird. I did not care to spend more money in a -hopeless attempt at recovering them." - -"Very naturally. By the way, about the bird, we were compelled to -eat it." - -"To eat it!" Our visitor half rose from his chair in his -excitement. - -"Yes, it would have been of no use to anyone had we not done so. -But I presume that this other goose upon the sideboard, which is -about the same weight and perfectly fresh, will answer your -purpose equally well?" - -"Oh, certainly, certainly," answered Mr. Baker with a sigh of -relief. - -"Of course, we still have the feathers, legs, crop, and so on of -your own bird, so if you wish--" - -The man burst into a hearty laugh. "They might be useful to me as -relics of my adventure," said he, "but beyond that I can hardly -see what use the disjecta membra of my late acquaintance are -going to be to me. No, sir, I think that, with your permission, I -will confine my attentions to the excellent bird which I perceive -upon the sideboard." - -Sherlock Holmes glanced sharply across at me with a slight shrug -of his shoulders. - -"There is your hat, then, and there your bird," said he. "By the -way, would it bore you to tell me where you got the other one -from? I am somewhat of a fowl fancier, and I have seldom seen a -better grown goose." - -"Certainly, sir," said Baker, who had risen and tucked his newly -gained property under his arm. "There are a few of us who -frequent the Alpha Inn, near the Museum--we are to be found in -the Museum itself during the day, you understand. This year our -good host, Windigate by name, instituted a goose club, by which, -on consideration of some few pence every week, we were each to -receive a bird at Christmas. My pence were duly paid, and the -rest is familiar to you. I am much indebted to you, sir, for a -Scotch bonnet is fitted neither to my years nor my gravity." With -a comical pomposity of manner he bowed solemnly to both of us and -strode off upon his way. - -"So much for Mr. Henry Baker," said Holmes when he had closed the -door behind him. "It is quite certain that he knows nothing -whatever about the matter. Are you hungry, Watson?" - -"Not particularly." - -"Then I suggest that we turn our dinner into a supper and follow -up this clue while it is still hot." - -"By all means." - -It was a bitter night, so we drew on our ulsters and wrapped -cravats about our throats. Outside, the stars were shining coldly -in a cloudless sky, and the breath of the passers-by blew out -into smoke like so many pistol shots. Our footfalls rang out -crisply and loudly as we swung through the doctors' quarter, -Wimpole Street, Harley Street, and so through Wigmore Street into -Oxford Street. In a quarter of an hour we were in Bloomsbury at -the Alpha Inn, which is a small public-house at the corner of one -of the streets which runs down into Holborn. Holmes pushed open -the door of the private bar and ordered two glasses of beer from -the ruddy-faced, white-aproned landlord. - -"Your beer should be excellent if it is as good as your geese," -said he. - -"My geese!" The man seemed surprised. - -"Yes. I was speaking only half an hour ago to Mr. Henry Baker, -who was a member of your goose club." - -"Ah! yes, I see. But you see, sir, them's not our geese." - -"Indeed! Whose, then?" - -"Well, I got the two dozen from a salesman in Covent Garden." - -"Indeed? I know some of them. Which was it?" - -"Breckinridge is his name." - -"Ah! I don't know him. Well, here's your good health landlord, -and prosperity to your house. Good-night." - -"Now for Mr. Breckinridge," he continued, buttoning up his coat -as we came out into the frosty air. "Remember, Watson that though -we have so homely a thing as a goose at one end of this chain, we -have at the other a man who will certainly get seven years' penal -servitude unless we can establish his innocence. It is possible -that our inquiry may but confirm his guilt; but, in any case, we -have a line of investigation which has been missed by the police, -and which a singular chance has placed in our hands. Let us -follow it out to the bitter end. Faces to the south, then, and -quick march!" - -We passed across Holborn, down Endell Street, and so through a -zigzag of slums to Covent Garden Market. One of the largest -stalls bore the name of Breckinridge upon it, and the proprietor -a horsey-looking man, with a sharp face and trim side-whiskers was -helping a boy to put up the shutters. - -"Good-evening. It's a cold night," said Holmes. - -The salesman nodded and shot a questioning glance at my -companion. - -"Sold out of geese, I see," continued Holmes, pointing at the -bare slabs of marble. - -"Let you have five hundred to-morrow morning." - -"That's no good." - -"Well, there are some on the stall with the gas-flare." - -"Ah, but I was recommended to you." - -"Who by?" - -"The landlord of the Alpha." - -"Oh, yes; I sent him a couple of dozen." - -"Fine birds they were, too. Now where did you get them from?" - -To my surprise the question provoked a burst of anger from the -salesman. - -"Now, then, mister," said he, with his head cocked and his arms -akimbo, "what are you driving at? Let's have it straight, now." - -"It is straight enough. I should like to know who sold you the -geese which you supplied to the Alpha." - -"Well then, I shan't tell you. So now!" - -"Oh, it is a matter of no importance; but I don't know why you -should be so warm over such a trifle." - -"Warm! You'd be as warm, maybe, if you were as pestered as I am. -When I pay good money for a good article there should be an end -of the business; but it's 'Where are the geese?' and 'Who did you -sell the geese to?' and 'What will you take for the geese?' One -would think they were the only geese in the world, to hear the -fuss that is made over them." - -"Well, I have no connection with any other people who have been -making inquiries," said Holmes carelessly. "If you won't tell us -the bet is off, that is all. But I'm always ready to back my -opinion on a matter of fowls, and I have a fiver on it that the -bird I ate is country bred." - -"Well, then, you've lost your fiver, for it's town bred," snapped -the salesman. - -"It's nothing of the kind." - -"I say it is." - -"I don't believe it." - -"D'you think you know more about fowls than I, who have handled -them ever since I was a nipper? I tell you, all those birds that -went to the Alpha were town bred." - -"You'll never persuade me to believe that." - -"Will you bet, then?" - -"It's merely taking your money, for I know that I am right. But -I'll have a sovereign on with you, just to teach you not to be -obstinate." - -The salesman chuckled grimly. "Bring me the books, Bill," said -he. - -The small boy brought round a small thin volume and a great -greasy-backed one, laying them out together beneath the hanging -lamp. - -"Now then, Mr. Cocksure," said the salesman, "I thought that I -was out of geese, but before I finish you'll find that there is -still one left in my shop. You see this little book?" - -"Well?" - -"That's the list of the folk from whom I buy. D'you see? Well, -then, here on this page are the country folk, and the numbers -after their names are where their accounts are in the big ledger. -Now, then! You see this other page in red ink? Well, that is a -list of my town suppliers. Now, look at that third name. Just -read it out to me." - -"Mrs. Oakshott, 117, Brixton Road--249," read Holmes. - -"Quite so. Now turn that up in the ledger." - -Holmes turned to the page indicated. "Here you are, 'Mrs. -Oakshott, 117, Brixton Road, egg and poultry supplier.'" - -"Now, then, what's the last entry?" - -"'December 22nd. Twenty-four geese at 7s. 6d.'" - -"Quite so. There you are. And underneath?" - -"'Sold to Mr. Windigate of the Alpha, at 12s.'" - -"What have you to say now?" - -Sherlock Holmes looked deeply chagrined. He drew a sovereign from -his pocket and threw it down upon the slab, turning away with the -air of a man whose disgust is too deep for words. A few yards off -he stopped under a lamp-post and laughed in the hearty, noiseless -fashion which was peculiar to him. - -"When you see a man with whiskers of that cut and the 'Pink 'un' -protruding out of his pocket, you can always draw him by a bet," -said he. "I daresay that if I had put 100 pounds down in front of -him, that man would not have given me such complete information -as was drawn from him by the idea that he was doing me on a -wager. Well, Watson, we are, I fancy, nearing the end of our -quest, and the only point which remains to be determined is -whether we should go on to this Mrs. Oakshott to-night, or -whether we should reserve it for to-morrow. It is clear from what -that surly fellow said that there are others besides ourselves -who are anxious about the matter, and I should--" - -His remarks were suddenly cut short by a loud hubbub which broke -out from the stall which we had just left. Turning round we saw a -little rat-faced fellow standing in the centre of the circle of -yellow light which was thrown by the swinging lamp, while -Breckinridge, the salesman, framed in the door of his stall, was -shaking his fists fiercely at the cringing figure. - -"I've had enough of you and your geese," he shouted. "I wish you -were all at the devil together. If you come pestering me any more -with your silly talk I'll set the dog at you. You bring Mrs. -Oakshott here and I'll answer her, but what have you to do with -it? Did I buy the geese off you?" - -"No; but one of them was mine all the same," whined the little -man. - -"Well, then, ask Mrs. Oakshott for it." - -"She told me to ask you." - -"Well, you can ask the King of Proosia, for all I care. I've had -enough of it. Get out of this!" He rushed fiercely forward, and -the inquirer flitted away into the darkness. - -"Ha! this may save us a visit to Brixton Road," whispered Holmes. -"Come with me, and we will see what is to be made of this -fellow." Striding through the scattered knots of people who -lounged round the flaring stalls, my companion speedily overtook -the little man and touched him upon the shoulder. He sprang -round, and I could see in the gas-light that every vestige of -colour had been driven from his face. - -"Who are you, then? What do you want?" he asked in a quavering -voice. - -"You will excuse me," said Holmes blandly, "but I could not help -overhearing the questions which you put to the salesman just now. -I think that I could be of assistance to you." - -"You? Who are you? How could you know anything of the matter?" - -"My name is Sherlock Holmes. It is my business to know what other -people don't know." - -"But you can know nothing of this?" - -"Excuse me, I know everything of it. You are endeavouring to -trace some geese which were sold by Mrs. Oakshott, of Brixton -Road, to a salesman named Breckinridge, by him in turn to Mr. -Windigate, of the Alpha, and by him to his club, of which Mr. -Henry Baker is a member." - -"Oh, sir, you are the very man whom I have longed to meet," cried -the little fellow with outstretched hands and quivering fingers. -"I can hardly explain to you how interested I am in this matter." - -Sherlock Holmes hailed a four-wheeler which was passing. "In that -case we had better discuss it in a cosy room rather than in this -wind-swept market-place," said he. "But pray tell me, before we -go farther, who it is that I have the pleasure of assisting." - -The man hesitated for an instant. "My name is John Robinson," he -answered with a sidelong glance. - -"No, no; the real name," said Holmes sweetly. "It is always -awkward doing business with an alias." - -A flush sprang to the white cheeks of the stranger. "Well then," -said he, "my real name is James Ryder." - -"Precisely so. Head attendant at the Hotel Cosmopolitan. Pray -step into the cab, and I shall soon be able to tell you -everything which you would wish to know." - -The little man stood glancing from one to the other of us with -half-frightened, half-hopeful eyes, as one who is not sure -whether he is on the verge of a windfall or of a catastrophe. -Then he stepped into the cab, and in half an hour we were back in -the sitting-room at Baker Street. Nothing had been said during -our drive, but the high, thin breathing of our new companion, and -the claspings and unclaspings of his hands, spoke of the nervous -tension within him. - -"Here we are!" said Holmes cheerily as we filed into the room. -"The fire looks very seasonable in this weather. You look cold, -Mr. Ryder. Pray take the basket-chair. I will just put on my -slippers before we settle this little matter of yours. Now, then! -You want to know what became of those geese?" - -"Yes, sir." - -"Or rather, I fancy, of that goose. It was one bird, I imagine in -which you were interested--white, with a black bar across the -tail." - -Ryder quivered with emotion. "Oh, sir," he cried, "can you tell -me where it went to?" - -"It came here." - -"Here?" - -"Yes, and a most remarkable bird it proved. I don't wonder that -you should take an interest in it. It laid an egg after it was -dead--the bonniest, brightest little blue egg that ever was seen. -I have it here in my museum." - -Our visitor staggered to his feet and clutched the mantelpiece -with his right hand. Holmes unlocked his strong-box and held up -the blue carbuncle, which shone out like a star, with a cold, -brilliant, many-pointed radiance. Ryder stood glaring with a -drawn face, uncertain whether to claim or to disown it. - -"The game's up, Ryder," said Holmes quietly. "Hold up, man, or -you'll be into the fire! Give him an arm back into his chair, -Watson. He's not got blood enough to go in for felony with -impunity. Give him a dash of brandy. So! Now he looks a little -more human. What a shrimp it is, to be sure!" - -For a moment he had staggered and nearly fallen, but the brandy -brought a tinge of colour into his cheeks, and he sat staring -with frightened eyes at his accuser. - -"I have almost every link in my hands, and all the proofs which I -could possibly need, so there is little which you need tell me. -Still, that little may as well be cleared up to make the case -complete. You had heard, Ryder, of this blue stone of the -Countess of Morcar's?" - -"It was Catherine Cusack who told me of it," said he in a -crackling voice. - -"I see--her ladyship's waiting-maid. Well, the temptation of -sudden wealth so easily acquired was too much for you, as it has -been for better men before you; but you were not very scrupulous -in the means you used. It seems to me, Ryder, that there is the -making of a very pretty villain in you. You knew that this man -Horner, the plumber, had been concerned in some such matter -before, and that suspicion would rest the more readily upon him. -What did you do, then? You made some small job in my lady's -room--you and your confederate Cusack--and you managed that he -should be the man sent for. Then, when he had left, you rifled -the jewel-case, raised the alarm, and had this unfortunate man -arrested. You then--" - -Ryder threw himself down suddenly upon the rug and clutched at my -companion's knees. "For God's sake, have mercy!" he shrieked. -"Think of my father! Of my mother! It would break their hearts. I -never went wrong before! I never will again. I swear it. I'll -swear it on a Bible. Oh, don't bring it into court! For Christ's -sake, don't!" - -"Get back into your chair!" said Holmes sternly. "It is very well -to cringe and crawl now, but you thought little enough of this -poor Horner in the dock for a crime of which he knew nothing." - -"I will fly, Mr. Holmes. I will leave the country, sir. Then the -charge against him will break down." - -"Hum! We will talk about that. And now let us hear a true account -of the next act. How came the stone into the goose, and how came -the goose into the open market? Tell us the truth, for there lies -your only hope of safety." - -Ryder passed his tongue over his parched lips. "I will tell you -it just as it happened, sir," said he. "When Horner had been -arrested, it seemed to me that it would be best for me to get -away with the stone at once, for I did not know at what moment -the police might not take it into their heads to search me and my -room. There was no place about the hotel where it would be safe. -I went out, as if on some commission, and I made for my sister's -house. She had married a man named Oakshott, and lived in Brixton -Road, where she fattened fowls for the market. All the way there -every man I met seemed to me to be a policeman or a detective; -and, for all that it was a cold night, the sweat was pouring down -my face before I came to the Brixton Road. My sister asked me -what was the matter, and why I was so pale; but I told her that I -had been upset by the jewel robbery at the hotel. Then I went -into the back yard and smoked a pipe and wondered what it would -be best to do. - -"I had a friend once called Maudsley, who went to the bad, and -has just been serving his time in Pentonville. One day he had met -me, and fell into talk about the ways of thieves, and how they -could get rid of what they stole. I knew that he would be true to -me, for I knew one or two things about him; so I made up my mind -to go right on to Kilburn, where he lived, and take him into my -confidence. He would show me how to turn the stone into money. -But how to get to him in safety? I thought of the agonies I had -gone through in coming from the hotel. I might at any moment be -seized and searched, and there would be the stone in my waistcoat -pocket. I was leaning against the wall at the time and looking at -the geese which were waddling about round my feet, and suddenly -an idea came into my head which showed me how I could beat the -best detective that ever lived. - -"My sister had told me some weeks before that I might have the -pick of her geese for a Christmas present, and I knew that she -was always as good as her word. I would take my goose now, and in -it I would carry my stone to Kilburn. There was a little shed in -the yard, and behind this I drove one of the birds--a fine big -one, white, with a barred tail. I caught it, and prying its bill -open, I thrust the stone down its throat as far as my finger -could reach. The bird gave a gulp, and I felt the stone pass -along its gullet and down into its crop. But the creature flapped -and struggled, and out came my sister to know what was the -matter. As I turned to speak to her the brute broke loose and -fluttered off among the others. - -"'Whatever were you doing with that bird, Jem?' says she. - -"'Well,' said I, 'you said you'd give me one for Christmas, and I -was feeling which was the fattest.' - -"'Oh,' says she, 'we've set yours aside for you--Jem's bird, we -call it. It's the big white one over yonder. There's twenty-six -of them, which makes one for you, and one for us, and two dozen -for the market.' - -"'Thank you, Maggie,' says I; 'but if it is all the same to you, -I'd rather have that one I was handling just now.' - -"'The other is a good three pound heavier,' said she, 'and we -fattened it expressly for you.' - -"'Never mind. I'll have the other, and I'll take it now,' said I. - -"'Oh, just as you like,' said she, a little huffed. 'Which is it -you want, then?' - -"'That white one with the barred tail, right in the middle of the -flock.' - -"'Oh, very well. Kill it and take it with you.' - -"Well, I did what she said, Mr. Holmes, and I carried the bird -all the way to Kilburn. I told my pal what I had done, for he was -a man that it was easy to tell a thing like that to. He laughed -until he choked, and we got a knife and opened the goose. My -heart turned to water, for there was no sign of the stone, and I -knew that some terrible mistake had occurred. I left the bird, -rushed back to my sister's, and hurried into the back yard. There -was not a bird to be seen there. - -"'Where are they all, Maggie?' I cried. - -"'Gone to the dealer's, Jem.' - -"'Which dealer's?' - -"'Breckinridge, of Covent Garden.' - -"'But was there another with a barred tail?' I asked, 'the same -as the one I chose?' - -"'Yes, Jem; there were two barred-tailed ones, and I could never -tell them apart.' - -"Well, then, of course I saw it all, and I ran off as hard as my -feet would carry me to this man Breckinridge; but he had sold the -lot at once, and not one word would he tell me as to where they -had gone. You heard him yourselves to-night. Well, he has always -answered me like that. My sister thinks that I am going mad. -Sometimes I think that I am myself. And now--and now I am myself -a branded thief, without ever having touched the wealth for which -I sold my character. God help me! God help me!" He burst into -convulsive sobbing, with his face buried in his hands. - -There was a long silence, broken only by his heavy breathing and -by the measured tapping of Sherlock Holmes' finger-tips upon the -edge of the table. Then my friend rose and threw open the door. - -"Get out!" said he. - -"What, sir! Oh, Heaven bless you!" - -"No more words. Get out!" - -And no more words were needed. There was a rush, a clatter upon -the stairs, the bang of a door, and the crisp rattle of running -footfalls from the street. - -"After all, Watson," said Holmes, reaching up his hand for his -clay pipe, "I am not retained by the police to supply their -deficiencies. If Horner were in danger it would be another thing; -but this fellow will not appear against him, and the case must -collapse. I suppose that I am commuting a felony, but it is just -possible that I am saving a soul. This fellow will not go wrong -again; he is too terribly frightened. Send him to gaol now, and -you make him a gaol-bird for life. Besides, it is the season of -forgiveness. Chance has put in our way a most singular and -whimsical problem, and its solution is its own reward. If you -will have the goodness to touch the bell, Doctor, we will begin -another investigation, in which, also a bird will be the chief -feature." - - - -VIII. THE ADVENTURE OF THE SPECKLED BAND - -On glancing over my notes of the seventy odd cases in which I -have during the last eight years studied the methods of my friend -Sherlock Holmes, I find many tragic, some comic, a large number -merely strange, but none commonplace; for, working as he did -rather for the love of his art than for the acquirement of -wealth, he refused to associate himself with any investigation -which did not tend towards the unusual, and even the fantastic. -Of all these varied cases, however, I cannot recall any which -presented more singular features than that which was associated -with the well-known Surrey family of the Roylotts of Stoke Moran. -The events in question occurred in the early days of my -association with Holmes, when we were sharing rooms as bachelors -in Baker Street. It is possible that I might have placed them -upon record before, but a promise of secrecy was made at the -time, from which I have only been freed during the last month by -the untimely death of the lady to whom the pledge was given. It -is perhaps as well that the facts should now come to light, for I -have reasons to know that there are widespread rumours as to the -death of Dr. Grimesby Roylott which tend to make the matter even -more terrible than the truth. - -It was early in April in the year '83 that I woke one morning to -find Sherlock Holmes standing, fully dressed, by the side of my -bed. He was a late riser, as a rule, and as the clock on the -mantelpiece showed me that it was only a quarter-past seven, I -blinked up at him in some surprise, and perhaps just a little -resentment, for I was myself regular in my habits. - -"Very sorry to knock you up, Watson," said he, "but it's the -common lot this morning. Mrs. Hudson has been knocked up, she -retorted upon me, and I on you." - -"What is it, then--a fire?" - -"No; a client. It seems that a young lady has arrived in a -considerable state of excitement, who insists upon seeing me. She -is waiting now in the sitting-room. Now, when young ladies wander -about the metropolis at this hour of the morning, and knock -sleepy people up out of their beds, I presume that it is -something very pressing which they have to communicate. Should it -prove to be an interesting case, you would, I am sure, wish to -follow it from the outset. I thought, at any rate, that I should -call you and give you the chance." - -"My dear fellow, I would not miss it for anything." - -I had no keener pleasure than in following Holmes in his -professional investigations, and in admiring the rapid -deductions, as swift as intuitions, and yet always founded on a -logical basis with which he unravelled the problems which were -submitted to him. I rapidly threw on my clothes and was ready in -a few minutes to accompany my friend down to the sitting-room. A -lady dressed in black and heavily veiled, who had been sitting in -the window, rose as we entered. - -"Good-morning, madam," said Holmes cheerily. "My name is Sherlock -Holmes. This is my intimate friend and associate, Dr. Watson, -before whom you can speak as freely as before myself. Ha! I am -glad to see that Mrs. Hudson has had the good sense to light the -fire. Pray draw up to it, and I shall order you a cup of hot -coffee, for I observe that you are shivering." - -"It is not cold which makes me shiver," said the woman in a low -voice, changing her seat as requested. - -"What, then?" - -"It is fear, Mr. Holmes. It is terror." She raised her veil as -she spoke, and we could see that she was indeed in a pitiable -state of agitation, her face all drawn and grey, with restless -frightened eyes, like those of some hunted animal. Her features -and figure were those of a woman of thirty, but her hair was shot -with premature grey, and her expression was weary and haggard. -Sherlock Holmes ran her over with one of his quick, -all-comprehensive glances. - -"You must not fear," said he soothingly, bending forward and -patting her forearm. "We shall soon set matters right, I have no -doubt. You have come in by train this morning, I see." - -"You know me, then?" - -"No, but I observe the second half of a return ticket in the palm -of your left glove. You must have started early, and yet you had -a good drive in a dog-cart, along heavy roads, before you reached -the station." - -The lady gave a violent start and stared in bewilderment at my -companion. - -"There is no mystery, my dear madam," said he, smiling. "The left -arm of your jacket is spattered with mud in no less than seven -places. The marks are perfectly fresh. There is no vehicle save a -dog-cart which throws up mud in that way, and then only when you -sit on the left-hand side of the driver." - -"Whatever your reasons may be, you are perfectly correct," said -she. "I started from home before six, reached Leatherhead at -twenty past, and came in by the first train to Waterloo. Sir, I -can stand this strain no longer; I shall go mad if it continues. -I have no one to turn to--none, save only one, who cares for me, -and he, poor fellow, can be of little aid. I have heard of you, -Mr. Holmes; I have heard of you from Mrs. Farintosh, whom you -helped in the hour of her sore need. It was from her that I had -your address. Oh, sir, do you not think that you could help me, -too, and at least throw a little light through the dense darkness -which surrounds me? At present it is out of my power to reward -you for your services, but in a month or six weeks I shall be -married, with the control of my own income, and then at least you -shall not find me ungrateful." - -Holmes turned to his desk and, unlocking it, drew out a small -case-book, which he consulted. - -"Farintosh," said he. "Ah yes, I recall the case; it was -concerned with an opal tiara. I think it was before your time, -Watson. I can only say, madam, that I shall be happy to devote -the same care to your case as I did to that of your friend. As to -reward, my profession is its own reward; but you are at liberty -to defray whatever expenses I may be put to, at the time which -suits you best. And now I beg that you will lay before us -everything that may help us in forming an opinion upon the -matter." - -"Alas!" replied our visitor, "the very horror of my situation -lies in the fact that my fears are so vague, and my suspicions -depend so entirely upon small points, which might seem trivial to -another, that even he to whom of all others I have a right to -look for help and advice looks upon all that I tell him about it -as the fancies of a nervous woman. He does not say so, but I can -read it from his soothing answers and averted eyes. But I have -heard, Mr. Holmes, that you can see deeply into the manifold -wickedness of the human heart. You may advise me how to walk amid -the dangers which encompass me." - -"I am all attention, madam." - -"My name is Helen Stoner, and I am living with my stepfather, who -is the last survivor of one of the oldest Saxon families in -England, the Roylotts of Stoke Moran, on the western border of -Surrey." - -Holmes nodded his head. "The name is familiar to me," said he. - -"The family was at one time among the richest in England, and the -estates extended over the borders into Berkshire in the north, -and Hampshire in the west. In the last century, however, four -successive heirs were of a dissolute and wasteful disposition, -and the family ruin was eventually completed by a gambler in the -days of the Regency. Nothing was left save a few acres of ground, -and the two-hundred-year-old house, which is itself crushed under -a heavy mortgage. The last squire dragged out his existence -there, living the horrible life of an aristocratic pauper; but -his only son, my stepfather, seeing that he must adapt himself to -the new conditions, obtained an advance from a relative, which -enabled him to take a medical degree and went out to Calcutta, -where, by his professional skill and his force of character, he -established a large practice. In a fit of anger, however, caused -by some robberies which had been perpetrated in the house, he -beat his native butler to death and narrowly escaped a capital -sentence. As it was, he suffered a long term of imprisonment and -afterwards returned to England a morose and disappointed man. - -"When Dr. Roylott was in India he married my mother, Mrs. Stoner, -the young widow of Major-General Stoner, of the Bengal Artillery. -My sister Julia and I were twins, and we were only two years old -at the time of my mother's re-marriage. She had a considerable -sum of money--not less than 1000 pounds a year--and this she -bequeathed to Dr. Roylott entirely while we resided with him, -with a provision that a certain annual sum should be allowed to -each of us in the event of our marriage. Shortly after our return -to England my mother died--she was killed eight years ago in a -railway accident near Crewe. Dr. Roylott then abandoned his -attempts to establish himself in practice in London and took us -to live with him in the old ancestral house at Stoke Moran. The -money which my mother had left was enough for all our wants, and -there seemed to be no obstacle to our happiness. - -"But a terrible change came over our stepfather about this time. -Instead of making friends and exchanging visits with our -neighbours, who had at first been overjoyed to see a Roylott of -Stoke Moran back in the old family seat, he shut himself up in -his house and seldom came out save to indulge in ferocious -quarrels with whoever might cross his path. Violence of temper -approaching to mania has been hereditary in the men of the -family, and in my stepfather's case it had, I believe, been -intensified by his long residence in the tropics. A series of -disgraceful brawls took place, two of which ended in the -police-court, until at last he became the terror of the village, -and the folks would fly at his approach, for he is a man of -immense strength, and absolutely uncontrollable in his anger. - -"Last week he hurled the local blacksmith over a parapet into a -stream, and it was only by paying over all the money which I -could gather together that I was able to avert another public -exposure. He had no friends at all save the wandering gipsies, -and he would give these vagabonds leave to encamp upon the few -acres of bramble-covered land which represent the family estate, -and would accept in return the hospitality of their tents, -wandering away with them sometimes for weeks on end. He has a -passion also for Indian animals, which are sent over to him by a -correspondent, and he has at this moment a cheetah and a baboon, -which wander freely over his grounds and are feared by the -villagers almost as much as their master. - -"You can imagine from what I say that my poor sister Julia and I -had no great pleasure in our lives. No servant would stay with -us, and for a long time we did all the work of the house. She was -but thirty at the time of her death, and yet her hair had already -begun to whiten, even as mine has." - -"Your sister is dead, then?" - -"She died just two years ago, and it is of her death that I wish -to speak to you. You can understand that, living the life which I -have described, we were little likely to see anyone of our own -age and position. We had, however, an aunt, my mother's maiden -sister, Miss Honoria Westphail, who lives near Harrow, and we -were occasionally allowed to pay short visits at this lady's -house. Julia went there at Christmas two years ago, and met there -a half-pay major of marines, to whom she became engaged. My -stepfather learned of the engagement when my sister returned and -offered no objection to the marriage; but within a fortnight of -the day which had been fixed for the wedding, the terrible event -occurred which has deprived me of my only companion." - -Sherlock Holmes had been leaning back in his chair with his eyes -closed and his head sunk in a cushion, but he half opened his -lids now and glanced across at his visitor. - -"Pray be precise as to details," said he. - -"It is easy for me to be so, for every event of that dreadful -time is seared into my memory. The manor-house is, as I have -already said, very old, and only one wing is now inhabited. The -bedrooms in this wing are on the ground floor, the sitting-rooms -being in the central block of the buildings. Of these bedrooms -the first is Dr. Roylott's, the second my sister's, and the third -my own. There is no communication between them, but they all open -out into the same corridor. Do I make myself plain?" - -"Perfectly so." - -"The windows of the three rooms open out upon the lawn. That -fatal night Dr. Roylott had gone to his room early, though we -knew that he had not retired to rest, for my sister was troubled -by the smell of the strong Indian cigars which it was his custom -to smoke. She left her room, therefore, and came into mine, where -she sat for some time, chatting about her approaching wedding. At -eleven o'clock she rose to leave me, but she paused at the door -and looked back. - -"'Tell me, Helen,' said she, 'have you ever heard anyone whistle -in the dead of the night?' - -"'Never,' said I. - -"'I suppose that you could not possibly whistle, yourself, in -your sleep?' - -"'Certainly not. But why?' - -"'Because during the last few nights I have always, about three -in the morning, heard a low, clear whistle. I am a light sleeper, -and it has awakened me. I cannot tell where it came from--perhaps -from the next room, perhaps from the lawn. I thought that I would -just ask you whether you had heard it.' - -"'No, I have not. It must be those wretched gipsies in the -plantation.' - -"'Very likely. And yet if it were on the lawn, I wonder that you -did not hear it also.' - -"'Ah, but I sleep more heavily than you.' - -"'Well, it is of no great consequence, at any rate.' She smiled -back at me, closed my door, and a few moments later I heard her -key turn in the lock." - -"Indeed," said Holmes. "Was it your custom always to lock -yourselves in at night?" - -"Always." - -"And why?" - -"I think that I mentioned to you that the doctor kept a cheetah -and a baboon. We had no feeling of security unless our doors were -locked." - -"Quite so. Pray proceed with your statement." - -"I could not sleep that night. A vague feeling of impending -misfortune impressed me. My sister and I, you will recollect, -were twins, and you know how subtle are the links which bind two -souls which are so closely allied. It was a wild night. The wind -was howling outside, and the rain was beating and splashing -against the windows. Suddenly, amid all the hubbub of the gale, -there burst forth the wild scream of a terrified woman. I knew -that it was my sister's voice. I sprang from my bed, wrapped a -shawl round me, and rushed into the corridor. As I opened my door -I seemed to hear a low whistle, such as my sister described, and -a few moments later a clanging sound, as if a mass of metal had -fallen. As I ran down the passage, my sister's door was unlocked, -and revolved slowly upon its hinges. I stared at it -horror-stricken, not knowing what was about to issue from it. By -the light of the corridor-lamp I saw my sister appear at the -opening, her face blanched with terror, her hands groping for -help, her whole figure swaying to and fro like that of a -drunkard. I ran to her and threw my arms round her, but at that -moment her knees seemed to give way and she fell to the ground. -She writhed as one who is in terrible pain, and her limbs were -dreadfully convulsed. At first I thought that she had not -recognised me, but as I bent over her she suddenly shrieked out -in a voice which I shall never forget, 'Oh, my God! Helen! It was -the band! The speckled band!' There was something else which she -would fain have said, and she stabbed with her finger into the -air in the direction of the doctor's room, but a fresh convulsion -seized her and choked her words. I rushed out, calling loudly for -my stepfather, and I met him hastening from his room in his -dressing-gown. When he reached my sister's side she was -unconscious, and though he poured brandy down her throat and sent -for medical aid from the village, all efforts were in vain, for -she slowly sank and died without having recovered her -consciousness. Such was the dreadful end of my beloved sister." - -"One moment," said Holmes, "are you sure about this whistle and -metallic sound? Could you swear to it?" - -"That was what the county coroner asked me at the inquiry. It is -my strong impression that I heard it, and yet, among the crash of -the gale and the creaking of an old house, I may possibly have -been deceived." - -"Was your sister dressed?" - -"No, she was in her night-dress. In her right hand was found the -charred stump of a match, and in her left a match-box." - -"Showing that she had struck a light and looked about her when -the alarm took place. That is important. And what conclusions did -the coroner come to?" - -"He investigated the case with great care, for Dr. Roylott's -conduct had long been notorious in the county, but he was unable -to find any satisfactory cause of death. My evidence showed that -the door had been fastened upon the inner side, and the windows -were blocked by old-fashioned shutters with broad iron bars, -which were secured every night. The walls were carefully sounded, -and were shown to be quite solid all round, and the flooring was -also thoroughly examined, with the same result. The chimney is -wide, but is barred up by four large staples. It is certain, -therefore, that my sister was quite alone when she met her end. -Besides, there were no marks of any violence upon her." - -"How about poison?" - -"The doctors examined her for it, but without success." - -"What do you think that this unfortunate lady died of, then?" - -"It is my belief that she died of pure fear and nervous shock, -though what it was that frightened her I cannot imagine." - -"Were there gipsies in the plantation at the time?" - -"Yes, there are nearly always some there." - -"Ah, and what did you gather from this allusion to a band--a -speckled band?" - -"Sometimes I have thought that it was merely the wild talk of -delirium, sometimes that it may have referred to some band of -people, perhaps to these very gipsies in the plantation. I do not -know whether the spotted handkerchiefs which so many of them wear -over their heads might have suggested the strange adjective which -she used." - -Holmes shook his head like a man who is far from being satisfied. - -"These are very deep waters," said he; "pray go on with your -narrative." - -"Two years have passed since then, and my life has been until -lately lonelier than ever. A month ago, however, a dear friend, -whom I have known for many years, has done me the honour to ask -my hand in marriage. His name is Armitage--Percy Armitage--the -second son of Mr. Armitage, of Crane Water, near Reading. My -stepfather has offered no opposition to the match, and we are to -be married in the course of the spring. Two days ago some repairs -were started in the west wing of the building, and my bedroom -wall has been pierced, so that I have had to move into the -chamber in which my sister died, and to sleep in the very bed in -which she slept. Imagine, then, my thrill of terror when last -night, as I lay awake, thinking over her terrible fate, I -suddenly heard in the silence of the night the low whistle which -had been the herald of her own death. I sprang up and lit the -lamp, but nothing was to be seen in the room. I was too shaken to -go to bed again, however, so I dressed, and as soon as it was -daylight I slipped down, got a dog-cart at the Crown Inn, which -is opposite, and drove to Leatherhead, from whence I have come on -this morning with the one object of seeing you and asking your -advice." - -"You have done wisely," said my friend. "But have you told me -all?" - -"Yes, all." - -"Miss Roylott, you have not. You are screening your stepfather." - -"Why, what do you mean?" - -For answer Holmes pushed back the frill of black lace which -fringed the hand that lay upon our visitor's knee. Five little -livid spots, the marks of four fingers and a thumb, were printed -upon the white wrist. - -"You have been cruelly used," said Holmes. - -The lady coloured deeply and covered over her injured wrist. "He -is a hard man," she said, "and perhaps he hardly knows his own -strength." - -There was a long silence, during which Holmes leaned his chin -upon his hands and stared into the crackling fire. - -"This is a very deep business," he said at last. "There are a -thousand details which I should desire to know before I decide -upon our course of action. Yet we have not a moment to lose. If -we were to come to Stoke Moran to-day, would it be possible for -us to see over these rooms without the knowledge of your -stepfather?" - -"As it happens, he spoke of coming into town to-day upon some -most important business. It is probable that he will be away all -day, and that there would be nothing to disturb you. We have a -housekeeper now, but she is old and foolish, and I could easily -get her out of the way." - -"Excellent. You are not averse to this trip, Watson?" - -"By no means." - -"Then we shall both come. What are you going to do yourself?" - -"I have one or two things which I would wish to do now that I am -in town. But I shall return by the twelve o'clock train, so as to -be there in time for your coming." - -"And you may expect us early in the afternoon. I have myself some -small business matters to attend to. Will you not wait and -breakfast?" - -"No, I must go. My heart is lightened already since I have -confided my trouble to you. I shall look forward to seeing you -again this afternoon." She dropped her thick black veil over her -face and glided from the room. - -"And what do you think of it all, Watson?" asked Sherlock Holmes, -leaning back in his chair. - -"It seems to me to be a most dark and sinister business." - -"Dark enough and sinister enough." - -"Yet if the lady is correct in saying that the flooring and walls -are sound, and that the door, window, and chimney are impassable, -then her sister must have been undoubtedly alone when she met her -mysterious end." - -"What becomes, then, of these nocturnal whistles, and what of the -very peculiar words of the dying woman?" - -"I cannot think." - -"When you combine the ideas of whistles at night, the presence of -a band of gipsies who are on intimate terms with this old doctor, -the fact that we have every reason to believe that the doctor has -an interest in preventing his stepdaughter's marriage, the dying -allusion to a band, and, finally, the fact that Miss Helen Stoner -heard a metallic clang, which might have been caused by one of -those metal bars that secured the shutters falling back into its -place, I think that there is good ground to think that the -mystery may be cleared along those lines." - -"But what, then, did the gipsies do?" - -"I cannot imagine." - -"I see many objections to any such theory." - -"And so do I. It is precisely for that reason that we are going -to Stoke Moran this day. I want to see whether the objections are -fatal, or if they may be explained away. But what in the name of -the devil!" - -The ejaculation had been drawn from my companion by the fact that -our door had been suddenly dashed open, and that a huge man had -framed himself in the aperture. His costume was a peculiar -mixture of the professional and of the agricultural, having a -black top-hat, a long frock-coat, and a pair of high gaiters, -with a hunting-crop swinging in his hand. So tall was he that his -hat actually brushed the cross bar of the doorway, and his -breadth seemed to span it across from side to side. A large face, -seared with a thousand wrinkles, burned yellow with the sun, and -marked with every evil passion, was turned from one to the other -of us, while his deep-set, bile-shot eyes, and his high, thin, -fleshless nose, gave him somewhat the resemblance to a fierce old -bird of prey. - -"Which of you is Holmes?" asked this apparition. - -"My name, sir; but you have the advantage of me," said my -companion quietly. - -"I am Dr. Grimesby Roylott, of Stoke Moran." - -"Indeed, Doctor," said Holmes blandly. "Pray take a seat." - -"I will do nothing of the kind. My stepdaughter has been here. I -have traced her. What has she been saying to you?" - -"It is a little cold for the time of the year," said Holmes. - -"What has she been saying to you?" screamed the old man -furiously. - -"But I have heard that the crocuses promise well," continued my -companion imperturbably. - -"Ha! You put me off, do you?" said our new visitor, taking a step -forward and shaking his hunting-crop. "I know you, you scoundrel! -I have heard of you before. You are Holmes, the meddler." - -My friend smiled. - -"Holmes, the busybody!" - -His smile broadened. - -"Holmes, the Scotland Yard Jack-in-office!" - -Holmes chuckled heartily. "Your conversation is most -entertaining," said he. "When you go out close the door, for -there is a decided draught." - -"I will go when I have said my say. Don't you dare to meddle with -my affairs. I know that Miss Stoner has been here. I traced her! -I am a dangerous man to fall foul of! See here." He stepped -swiftly forward, seized the poker, and bent it into a curve with -his huge brown hands. - -"See that you keep yourself out of my grip," he snarled, and -hurling the twisted poker into the fireplace he strode out of the -room. - -"He seems a very amiable person," said Holmes, laughing. "I am -not quite so bulky, but if he had remained I might have shown him -that my grip was not much more feeble than his own." As he spoke -he picked up the steel poker and, with a sudden effort, -straightened it out again. - -"Fancy his having the insolence to confound me with the official -detective force! This incident gives zest to our investigation, -however, and I only trust that our little friend will not suffer -from her imprudence in allowing this brute to trace her. And now, -Watson, we shall order breakfast, and afterwards I shall walk -down to Doctors' Commons, where I hope to get some data which may -help us in this matter." - - -It was nearly one o'clock when Sherlock Holmes returned from his -excursion. He held in his hand a sheet of blue paper, scrawled -over with notes and figures. - -"I have seen the will of the deceased wife," said he. "To -determine its exact meaning I have been obliged to work out the -present prices of the investments with which it is concerned. The -total income, which at the time of the wife's death was little -short of 1100 pounds, is now, through the fall in agricultural -prices, not more than 750 pounds. Each daughter can claim an -income of 250 pounds, in case of marriage. It is evident, -therefore, that if both girls had married, this beauty would have -had a mere pittance, while even one of them would cripple him to -a very serious extent. My morning's work has not been wasted, -since it has proved that he has the very strongest motives for -standing in the way of anything of the sort. And now, Watson, -this is too serious for dawdling, especially as the old man is -aware that we are interesting ourselves in his affairs; so if you -are ready, we shall call a cab and drive to Waterloo. I should be -very much obliged if you would slip your revolver into your -pocket. An Eley's No. 2 is an excellent argument with gentlemen -who can twist steel pokers into knots. That and a tooth-brush -are, I think, all that we need." - -At Waterloo we were fortunate in catching a train for -Leatherhead, where we hired a trap at the station inn and drove -for four or five miles through the lovely Surrey lanes. It was a -perfect day, with a bright sun and a few fleecy clouds in the -heavens. The trees and wayside hedges were just throwing out -their first green shoots, and the air was full of the pleasant -smell of the moist earth. To me at least there was a strange -contrast between the sweet promise of the spring and this -sinister quest upon which we were engaged. My companion sat in -the front of the trap, his arms folded, his hat pulled down over -his eyes, and his chin sunk upon his breast, buried in the -deepest thought. Suddenly, however, he started, tapped me on the -shoulder, and pointed over the meadows. - -"Look there!" said he. - -A heavily timbered park stretched up in a gentle slope, -thickening into a grove at the highest point. From amid the -branches there jutted out the grey gables and high roof-tree of a -very old mansion. - -"Stoke Moran?" said he. - -"Yes, sir, that be the house of Dr. Grimesby Roylott," remarked -the driver. - -"There is some building going on there," said Holmes; "that is -where we are going." - -"There's the village," said the driver, pointing to a cluster of -roofs some distance to the left; "but if you want to get to the -house, you'll find it shorter to get over this stile, and so by -the foot-path over the fields. There it is, where the lady is -walking." - -"And the lady, I fancy, is Miss Stoner," observed Holmes, shading -his eyes. "Yes, I think we had better do as you suggest." - -We got off, paid our fare, and the trap rattled back on its way -to Leatherhead. - -"I thought it as well," said Holmes as we climbed the stile, -"that this fellow should think we had come here as architects, or -on some definite business. It may stop his gossip. -Good-afternoon, Miss Stoner. You see that we have been as good as -our word." - -Our client of the morning had hurried forward to meet us with a -face which spoke her joy. "I have been waiting so eagerly for -you," she cried, shaking hands with us warmly. "All has turned -out splendidly. Dr. Roylott has gone to town, and it is unlikely -that he will be back before evening." - -"We have had the pleasure of making the doctor's acquaintance," -said Holmes, and in a few words he sketched out what had -occurred. Miss Stoner turned white to the lips as she listened. - -"Good heavens!" she cried, "he has followed me, then." - -"So it appears." - -"He is so cunning that I never know when I am safe from him. What -will he say when he returns?" - -"He must guard himself, for he may find that there is someone -more cunning than himself upon his track. You must lock yourself -up from him to-night. If he is violent, we shall take you away to -your aunt's at Harrow. Now, we must make the best use of our -time, so kindly take us at once to the rooms which we are to -examine." - -The building was of grey, lichen-blotched stone, with a high -central portion and two curving wings, like the claws of a crab, -thrown out on each side. In one of these wings the windows were -broken and blocked with wooden boards, while the roof was partly -caved in, a picture of ruin. The central portion was in little -better repair, but the right-hand block was comparatively modern, -and the blinds in the windows, with the blue smoke curling up -from the chimneys, showed that this was where the family resided. -Some scaffolding had been erected against the end wall, and the -stone-work had been broken into, but there were no signs of any -workmen at the moment of our visit. Holmes walked slowly up and -down the ill-trimmed lawn and examined with deep attention the -outsides of the windows. - -"This, I take it, belongs to the room in which you used to sleep, -the centre one to your sister's, and the one next to the main -building to Dr. Roylott's chamber?" - -"Exactly so. But I am now sleeping in the middle one." - -"Pending the alterations, as I understand. By the way, there does -not seem to be any very pressing need for repairs at that end -wall." - -"There were none. I believe that it was an excuse to move me from -my room." - -"Ah! that is suggestive. Now, on the other side of this narrow -wing runs the corridor from which these three rooms open. There -are windows in it, of course?" - -"Yes, but very small ones. Too narrow for anyone to pass -through." - -"As you both locked your doors at night, your rooms were -unapproachable from that side. Now, would you have the kindness -to go into your room and bar your shutters?" - -Miss Stoner did so, and Holmes, after a careful examination -through the open window, endeavoured in every way to force the -shutter open, but without success. There was no slit through -which a knife could be passed to raise the bar. Then with his -lens he tested the hinges, but they were of solid iron, built -firmly into the massive masonry. "Hum!" said he, scratching his -chin in some perplexity, "my theory certainly presents some -difficulties. No one could pass these shutters if they were -bolted. Well, we shall see if the inside throws any light upon -the matter." - -A small side door led into the whitewashed corridor from which -the three bedrooms opened. Holmes refused to examine the third -chamber, so we passed at once to the second, that in which Miss -Stoner was now sleeping, and in which her sister had met with her -fate. It was a homely little room, with a low ceiling and a -gaping fireplace, after the fashion of old country-houses. A -brown chest of drawers stood in one corner, a narrow -white-counterpaned bed in another, and a dressing-table on the -left-hand side of the window. These articles, with two small -wicker-work chairs, made up all the furniture in the room save -for a square of Wilton carpet in the centre. The boards round and -the panelling of the walls were of brown, worm-eaten oak, so old -and discoloured that it may have dated from the original building -of the house. Holmes drew one of the chairs into a corner and sat -silent, while his eyes travelled round and round and up and down, -taking in every detail of the apartment. - -"Where does that bell communicate with?" he asked at last -pointing to a thick bell-rope which hung down beside the bed, the -tassel actually lying upon the pillow. - -"It goes to the housekeeper's room." - -"It looks newer than the other things?" - -"Yes, it was only put there a couple of years ago." - -"Your sister asked for it, I suppose?" - -"No, I never heard of her using it. We used always to get what we -wanted for ourselves." - -"Indeed, it seemed unnecessary to put so nice a bell-pull there. -You will excuse me for a few minutes while I satisfy myself as to -this floor." He threw himself down upon his face with his lens in -his hand and crawled swiftly backward and forward, examining -minutely the cracks between the boards. Then he did the same with -the wood-work with which the chamber was panelled. Finally he -walked over to the bed and spent some time in staring at it and -in running his eye up and down the wall. Finally he took the -bell-rope in his hand and gave it a brisk tug. - -"Why, it's a dummy," said he. - -"Won't it ring?" - -"No, it is not even attached to a wire. This is very interesting. -You can see now that it is fastened to a hook just above where -the little opening for the ventilator is." - -"How very absurd! I never noticed that before." - -"Very strange!" muttered Holmes, pulling at the rope. "There are -one or two very singular points about this room. For example, -what a fool a builder must be to open a ventilator into another -room, when, with the same trouble, he might have communicated -with the outside air!" - -"That is also quite modern," said the lady. - -"Done about the same time as the bell-rope?" remarked Holmes. - -"Yes, there were several little changes carried out about that -time." - -"They seem to have been of a most interesting character--dummy -bell-ropes, and ventilators which do not ventilate. With your -permission, Miss Stoner, we shall now carry our researches into -the inner apartment." - -Dr. Grimesby Roylott's chamber was larger than that of his -step-daughter, but was as plainly furnished. A camp-bed, a small -wooden shelf full of books, mostly of a technical character, an -armchair beside the bed, a plain wooden chair against the wall, a -round table, and a large iron safe were the principal things -which met the eye. Holmes walked slowly round and examined each -and all of them with the keenest interest. - -"What's in here?" he asked, tapping the safe. - -"My stepfather's business papers." - -"Oh! you have seen inside, then?" - -"Only once, some years ago. I remember that it was full of -papers." - -"There isn't a cat in it, for example?" - -"No. What a strange idea!" - -"Well, look at this!" He took up a small saucer of milk which -stood on the top of it. - -"No; we don't keep a cat. But there is a cheetah and a baboon." - -"Ah, yes, of course! Well, a cheetah is just a big cat, and yet a -saucer of milk does not go very far in satisfying its wants, I -daresay. There is one point which I should wish to determine." He -squatted down in front of the wooden chair and examined the seat -of it with the greatest attention. - -"Thank you. That is quite settled," said he, rising and putting -his lens in his pocket. "Hullo! Here is something interesting!" - -The object which had caught his eye was a small dog lash hung on -one corner of the bed. The lash, however, was curled upon itself -and tied so as to make a loop of whipcord. - -"What do you make of that, Watson?" - -"It's a common enough lash. But I don't know why it should be -tied." - -"That is not quite so common, is it? Ah, me! it's a wicked world, -and when a clever man turns his brains to crime it is the worst -of all. I think that I have seen enough now, Miss Stoner, and -with your permission we shall walk out upon the lawn." - -I had never seen my friend's face so grim or his brow so dark as -it was when we turned from the scene of this investigation. We -had walked several times up and down the lawn, neither Miss -Stoner nor myself liking to break in upon his thoughts before he -roused himself from his reverie. - -"It is very essential, Miss Stoner," said he, "that you should -absolutely follow my advice in every respect." - -"I shall most certainly do so." - -"The matter is too serious for any hesitation. Your life may -depend upon your compliance." - -"I assure you that I am in your hands." - -"In the first place, both my friend and I must spend the night in -your room." - -Both Miss Stoner and I gazed at him in astonishment. - -"Yes, it must be so. Let me explain. I believe that that is the -village inn over there?" - -"Yes, that is the Crown." - -"Very good. Your windows would be visible from there?" - -"Certainly." - -"You must confine yourself to your room, on pretence of a -headache, when your stepfather comes back. Then when you hear him -retire for the night, you must open the shutters of your window, -undo the hasp, put your lamp there as a signal to us, and then -withdraw quietly with everything which you are likely to want -into the room which you used to occupy. I have no doubt that, in -spite of the repairs, you could manage there for one night." - -"Oh, yes, easily." - -"The rest you will leave in our hands." - -"But what will you do?" - -"We shall spend the night in your room, and we shall investigate -the cause of this noise which has disturbed you." - -"I believe, Mr. Holmes, that you have already made up your mind," -said Miss Stoner, laying her hand upon my companion's sleeve. - -"Perhaps I have." - -"Then, for pity's sake, tell me what was the cause of my sister's -death." - -"I should prefer to have clearer proofs before I speak." - -"You can at least tell me whether my own thought is correct, and -if she died from some sudden fright." - -"No, I do not think so. I think that there was probably some more -tangible cause. And now, Miss Stoner, we must leave you for if -Dr. Roylott returned and saw us our journey would be in vain. -Good-bye, and be brave, for if you will do what I have told you, -you may rest assured that we shall soon drive away the dangers -that threaten you." - -Sherlock Holmes and I had no difficulty in engaging a bedroom and -sitting-room at the Crown Inn. They were on the upper floor, and -from our window we could command a view of the avenue gate, and -of the inhabited wing of Stoke Moran Manor House. At dusk we saw -Dr. Grimesby Roylott drive past, his huge form looming up beside -the little figure of the lad who drove him. The boy had some -slight difficulty in undoing the heavy iron gates, and we heard -the hoarse roar of the doctor's voice and saw the fury with which -he shook his clinched fists at him. The trap drove on, and a few -minutes later we saw a sudden light spring up among the trees as -the lamp was lit in one of the sitting-rooms. - -"Do you know, Watson," said Holmes as we sat together in the -gathering darkness, "I have really some scruples as to taking you -to-night. There is a distinct element of danger." - -"Can I be of assistance?" - -"Your presence might be invaluable." - -"Then I shall certainly come." - -"It is very kind of you." - -"You speak of danger. You have evidently seen more in these rooms -than was visible to me." - -"No, but I fancy that I may have deduced a little more. I imagine -that you saw all that I did." - -"I saw nothing remarkable save the bell-rope, and what purpose -that could answer I confess is more than I can imagine." - -"You saw the ventilator, too?" - -"Yes, but I do not think that it is such a very unusual thing to -have a small opening between two rooms. It was so small that a -rat could hardly pass through." - -"I knew that we should find a ventilator before ever we came to -Stoke Moran." - -"My dear Holmes!" - -"Oh, yes, I did. You remember in her statement she said that her -sister could smell Dr. Roylott's cigar. Now, of course that -suggested at once that there must be a communication between the -two rooms. It could only be a small one, or it would have been -remarked upon at the coroner's inquiry. I deduced a ventilator." - -"But what harm can there be in that?" - -"Well, there is at least a curious coincidence of dates. A -ventilator is made, a cord is hung, and a lady who sleeps in the -bed dies. Does not that strike you?" - -"I cannot as yet see any connection." - -"Did you observe anything very peculiar about that bed?" - -"No." - -"It was clamped to the floor. Did you ever see a bed fastened -like that before?" - -"I cannot say that I have." - -"The lady could not move her bed. It must always be in the same -relative position to the ventilator and to the rope--or so we may -call it, since it was clearly never meant for a bell-pull." - -"Holmes," I cried, "I seem to see dimly what you are hinting at. -We are only just in time to prevent some subtle and horrible -crime." - -"Subtle enough and horrible enough. When a doctor does go wrong -he is the first of criminals. He has nerve and he has knowledge. -Palmer and Pritchard were among the heads of their profession. -This man strikes even deeper, but I think, Watson, that we shall -be able to strike deeper still. But we shall have horrors enough -before the night is over; for goodness' sake let us have a quiet -pipe and turn our minds for a few hours to something more -cheerful." - - -About nine o'clock the light among the trees was extinguished, -and all was dark in the direction of the Manor House. Two hours -passed slowly away, and then, suddenly, just at the stroke of -eleven, a single bright light shone out right in front of us. - -"That is our signal," said Holmes, springing to his feet; "it -comes from the middle window." - -As we passed out he exchanged a few words with the landlord, -explaining that we were going on a late visit to an acquaintance, -and that it was possible that we might spend the night there. A -moment later we were out on the dark road, a chill wind blowing -in our faces, and one yellow light twinkling in front of us -through the gloom to guide us on our sombre errand. - -There was little difficulty in entering the grounds, for -unrepaired breaches gaped in the old park wall. Making our way -among the trees, we reached the lawn, crossed it, and were about -to enter through the window when out from a clump of laurel -bushes there darted what seemed to be a hideous and distorted -child, who threw itself upon the grass with writhing limbs and -then ran swiftly across the lawn into the darkness. - -"My God!" I whispered; "did you see it?" - -Holmes was for the moment as startled as I. His hand closed like -a vice upon my wrist in his agitation. Then he broke into a low -laugh and put his lips to my ear. - -"It is a nice household," he murmured. "That is the baboon." - -I had forgotten the strange pets which the doctor affected. There -was a cheetah, too; perhaps we might find it upon our shoulders -at any moment. I confess that I felt easier in my mind when, -after following Holmes' example and slipping off my shoes, I -found myself inside the bedroom. My companion noiselessly closed -the shutters, moved the lamp onto the table, and cast his eyes -round the room. All was as we had seen it in the daytime. Then -creeping up to me and making a trumpet of his hand, he whispered -into my ear again so gently that it was all that I could do to -distinguish the words: - -"The least sound would be fatal to our plans." - -I nodded to show that I had heard. - -"We must sit without light. He would see it through the -ventilator." - -I nodded again. - -"Do not go asleep; your very life may depend upon it. Have your -pistol ready in case we should need it. I will sit on the side of -the bed, and you in that chair." - -I took out my revolver and laid it on the corner of the table. - -Holmes had brought up a long thin cane, and this he placed upon -the bed beside him. By it he laid the box of matches and the -stump of a candle. Then he turned down the lamp, and we were left -in darkness. - -How shall I ever forget that dreadful vigil? I could not hear a -sound, not even the drawing of a breath, and yet I knew that my -companion sat open-eyed, within a few feet of me, in the same -state of nervous tension in which I was myself. The shutters cut -off the least ray of light, and we waited in absolute darkness. - -From outside came the occasional cry of a night-bird, and once at -our very window a long drawn catlike whine, which told us that -the cheetah was indeed at liberty. Far away we could hear the -deep tones of the parish clock, which boomed out every quarter of -an hour. How long they seemed, those quarters! Twelve struck, and -one and two and three, and still we sat waiting silently for -whatever might befall. - -Suddenly there was the momentary gleam of a light up in the -direction of the ventilator, which vanished immediately, but was -succeeded by a strong smell of burning oil and heated metal. -Someone in the next room had lit a dark-lantern. I heard a gentle -sound of movement, and then all was silent once more, though the -smell grew stronger. For half an hour I sat with straining ears. -Then suddenly another sound became audible--a very gentle, -soothing sound, like that of a small jet of steam escaping -continually from a kettle. The instant that we heard it, Holmes -sprang from the bed, struck a match, and lashed furiously with -his cane at the bell-pull. - -"You see it, Watson?" he yelled. "You see it?" - -But I saw nothing. At the moment when Holmes struck the light I -heard a low, clear whistle, but the sudden glare flashing into my -weary eyes made it impossible for me to tell what it was at which -my friend lashed so savagely. I could, however, see that his face -was deadly pale and filled with horror and loathing. He had -ceased to strike and was gazing up at the ventilator when -suddenly there broke from the silence of the night the most -horrible cry to which I have ever listened. It swelled up louder -and louder, a hoarse yell of pain and fear and anger all mingled -in the one dreadful shriek. They say that away down in the -village, and even in the distant parsonage, that cry raised the -sleepers from their beds. It struck cold to our hearts, and I -stood gazing at Holmes, and he at me, until the last echoes of it -had died away into the silence from which it rose. - -"What can it mean?" I gasped. - -"It means that it is all over," Holmes answered. "And perhaps, -after all, it is for the best. Take your pistol, and we will -enter Dr. Roylott's room." - -With a grave face he lit the lamp and led the way down the -corridor. Twice he struck at the chamber door without any reply -from within. Then he turned the handle and entered, I at his -heels, with the cocked pistol in my hand. - -It was a singular sight which met our eyes. On the table stood a -dark-lantern with the shutter half open, throwing a brilliant -beam of light upon the iron safe, the door of which was ajar. -Beside this table, on the wooden chair, sat Dr. Grimesby Roylott -clad in a long grey dressing-gown, his bare ankles protruding -beneath, and his feet thrust into red heelless Turkish slippers. -Across his lap lay the short stock with the long lash which we -had noticed during the day. His chin was cocked upward and his -eyes were fixed in a dreadful, rigid stare at the corner of the -ceiling. Round his brow he had a peculiar yellow band, with -brownish speckles, which seemed to be bound tightly round his -head. As we entered he made neither sound nor motion. - -"The band! the speckled band!" whispered Holmes. - -I took a step forward. In an instant his strange headgear began -to move, and there reared itself from among his hair the squat -diamond-shaped head and puffed neck of a loathsome serpent. - -"It is a swamp adder!" cried Holmes; "the deadliest snake in -India. He has died within ten seconds of being bitten. Violence -does, in truth, recoil upon the violent, and the schemer falls -into the pit which he digs for another. Let us thrust this -creature back into its den, and we can then remove Miss Stoner to -some place of shelter and let the county police know what has -happened." - -As he spoke he drew the dog-whip swiftly from the dead man's lap, -and throwing the noose round the reptile's neck he drew it from -its horrid perch and, carrying it at arm's length, threw it into -the iron safe, which he closed upon it. - -Such are the true facts of the death of Dr. Grimesby Roylott, of -Stoke Moran. It is not necessary that I should prolong a -narrative which has already run to too great a length by telling -how we broke the sad news to the terrified girl, how we conveyed -her by the morning train to the care of her good aunt at Harrow, -of how the slow process of official inquiry came to the -conclusion that the doctor met his fate while indiscreetly -playing with a dangerous pet. The little which I had yet to learn -of the case was told me by Sherlock Holmes as we travelled back -next day. - -"I had," said he, "come to an entirely erroneous conclusion which -shows, my dear Watson, how dangerous it always is to reason from -insufficient data. The presence of the gipsies, and the use of -the word 'band,' which was used by the poor girl, no doubt, to -explain the appearance which she had caught a hurried glimpse of -by the light of her match, were sufficient to put me upon an -entirely wrong scent. I can only claim the merit that I instantly -reconsidered my position when, however, it became clear to me -that whatever danger threatened an occupant of the room could not -come either from the window or the door. My attention was -speedily drawn, as I have already remarked to you, to this -ventilator, and to the bell-rope which hung down to the bed. The -discovery that this was a dummy, and that the bed was clamped to -the floor, instantly gave rise to the suspicion that the rope was -there as a bridge for something passing through the hole and -coming to the bed. The idea of a snake instantly occurred to me, -and when I coupled it with my knowledge that the doctor was -furnished with a supply of creatures from India, I felt that I -was probably on the right track. The idea of using a form of -poison which could not possibly be discovered by any chemical -test was just such a one as would occur to a clever and ruthless -man who had had an Eastern training. The rapidity with which such -a poison would take effect would also, from his point of view, be -an advantage. It would be a sharp-eyed coroner, indeed, who could -distinguish the two little dark punctures which would show where -the poison fangs had done their work. Then I thought of the -whistle. Of course he must recall the snake before the morning -light revealed it to the victim. He had trained it, probably by -the use of the milk which we saw, to return to him when summoned. -He would put it through this ventilator at the hour that he -thought best, with the certainty that it would crawl down the -rope and land on the bed. It might or might not bite the -occupant, perhaps she might escape every night for a week, but -sooner or later she must fall a victim. - -"I had come to these conclusions before ever I had entered his -room. An inspection of his chair showed me that he had been in -the habit of standing on it, which of course would be necessary -in order that he should reach the ventilator. The sight of the -safe, the saucer of milk, and the loop of whipcord were enough to -finally dispel any doubts which may have remained. The metallic -clang heard by Miss Stoner was obviously caused by her stepfather -hastily closing the door of his safe upon its terrible occupant. -Having once made up my mind, you know the steps which I took in -order to put the matter to the proof. I heard the creature hiss -as I have no doubt that you did also, and I instantly lit the -light and attacked it." - -"With the result of driving it through the ventilator." - -"And also with the result of causing it to turn upon its master -at the other side. Some of the blows of my cane came home and -roused its snakish temper, so that it flew upon the first person -it saw. In this way I am no doubt indirectly responsible for Dr. -Grimesby Roylott's death, and I cannot say that it is likely to -weigh very heavily upon my conscience." - - - -IX. THE ADVENTURE OF THE ENGINEER'S THUMB - -Of all the problems which have been submitted to my friend, Mr. -Sherlock Holmes, for solution during the years of our intimacy, -there were only two which I was the means of introducing to his -notice--that of Mr. Hatherley's thumb, and that of Colonel -Warburton's madness. Of these the latter may have afforded a -finer field for an acute and original observer, but the other was -so strange in its inception and so dramatic in its details that -it may be the more worthy of being placed upon record, even if it -gave my friend fewer openings for those deductive methods of -reasoning by which he achieved such remarkable results. The story -has, I believe, been told more than once in the newspapers, but, -like all such narratives, its effect is much less striking when -set forth en bloc in a single half-column of print than when the -facts slowly evolve before your own eyes, and the mystery clears -gradually away as each new discovery furnishes a step which leads -on to the complete truth. At the time the circumstances made a -deep impression upon me, and the lapse of two years has hardly -served to weaken the effect. - -It was in the summer of '89, not long after my marriage, that the -events occurred which I am now about to summarise. I had returned -to civil practice and had finally abandoned Holmes in his Baker -Street rooms, although I continually visited him and occasionally -even persuaded him to forgo his Bohemian habits so far as to come -and visit us. My practice had steadily increased, and as I -happened to live at no very great distance from Paddington -Station, I got a few patients from among the officials. One of -these, whom I had cured of a painful and lingering disease, was -never weary of advertising my virtues and of endeavouring to send -me on every sufferer over whom he might have any influence. - -One morning, at a little before seven o'clock, I was awakened by -the maid tapping at the door to announce that two men had come -from Paddington and were waiting in the consulting-room. I -dressed hurriedly, for I knew by experience that railway cases -were seldom trivial, and hastened downstairs. As I descended, my -old ally, the guard, came out of the room and closed the door -tightly behind him. - -"I've got him here," he whispered, jerking his thumb over his -shoulder; "he's all right." - -"What is it, then?" I asked, for his manner suggested that it was -some strange creature which he had caged up in my room. - -"It's a new patient," he whispered. "I thought I'd bring him -round myself; then he couldn't slip away. There he is, all safe -and sound. I must go now, Doctor; I have my dooties, just the -same as you." And off he went, this trusty tout, without even -giving me time to thank him. - -I entered my consulting-room and found a gentleman seated by the -table. He was quietly dressed in a suit of heather tweed with a -soft cloth cap which he had laid down upon my books. Round one of -his hands he had a handkerchief wrapped, which was mottled all -over with bloodstains. He was young, not more than -five-and-twenty, I should say, with a strong, masculine face; but -he was exceedingly pale and gave me the impression of a man who -was suffering from some strong agitation, which it took all his -strength of mind to control. - -"I am sorry to knock you up so early, Doctor," said he, "but I -have had a very serious accident during the night. I came in by -train this morning, and on inquiring at Paddington as to where I -might find a doctor, a worthy fellow very kindly escorted me -here. I gave the maid a card, but I see that she has left it upon -the side-table." - -I took it up and glanced at it. "Mr. Victor Hatherley, hydraulic -engineer, 16A, Victoria Street (3rd floor)." That was the name, -style, and abode of my morning visitor. "I regret that I have -kept you waiting," said I, sitting down in my library-chair. "You -are fresh from a night journey, I understand, which is in itself -a monotonous occupation." - -"Oh, my night could not be called monotonous," said he, and -laughed. He laughed very heartily, with a high, ringing note, -leaning back in his chair and shaking his sides. All my medical -instincts rose up against that laugh. - -"Stop it!" I cried; "pull yourself together!" and I poured out -some water from a caraffe. - -It was useless, however. He was off in one of those hysterical -outbursts which come upon a strong nature when some great crisis -is over and gone. Presently he came to himself once more, very -weary and pale-looking. - -"I have been making a fool of myself," he gasped. - -"Not at all. Drink this." I dashed some brandy into the water, -and the colour began to come back to his bloodless cheeks. - -"That's better!" said he. "And now, Doctor, perhaps you would -kindly attend to my thumb, or rather to the place where my thumb -used to be." - -He unwound the handkerchief and held out his hand. It gave even -my hardened nerves a shudder to look at it. There were four -protruding fingers and a horrid red, spongy surface where the -thumb should have been. It had been hacked or torn right out from -the roots. - -"Good heavens!" I cried, "this is a terrible injury. It must have -bled considerably." - -"Yes, it did. I fainted when it was done, and I think that I must -have been senseless for a long time. When I came to I found that -it was still bleeding, so I tied one end of my handkerchief very -tightly round the wrist and braced it up with a twig." - -"Excellent! You should have been a surgeon." - -"It is a question of hydraulics, you see, and came within my own -province." - -"This has been done," said I, examining the wound, "by a very -heavy and sharp instrument." - -"A thing like a cleaver," said he. - -"An accident, I presume?" - -"By no means." - -"What! a murderous attack?" - -"Very murderous indeed." - -"You horrify me." - -I sponged the wound, cleaned it, dressed it, and finally covered -it over with cotton wadding and carbolised bandages. He lay back -without wincing, though he bit his lip from time to time. - -"How is that?" I asked when I had finished. - -"Capital! Between your brandy and your bandage, I feel a new man. -I was very weak, but I have had a good deal to go through." - -"Perhaps you had better not speak of the matter. It is evidently -trying to your nerves." - -"Oh, no, not now. I shall have to tell my tale to the police; -but, between ourselves, if it were not for the convincing -evidence of this wound of mine, I should be surprised if they -believed my statement, for it is a very extraordinary one, and I -have not much in the way of proof with which to back it up; and, -even if they believe me, the clues which I can give them are so -vague that it is a question whether justice will be done." - -"Ha!" cried I, "if it is anything in the nature of a problem -which you desire to see solved, I should strongly recommend you -to come to my friend, Mr. Sherlock Holmes, before you go to the -official police." - -"Oh, I have heard of that fellow," answered my visitor, "and I -should be very glad if he would take the matter up, though of -course I must use the official police as well. Would you give me -an introduction to him?" - -"I'll do better. I'll take you round to him myself." - -"I should be immensely obliged to you." - -"We'll call a cab and go together. We shall just be in time to -have a little breakfast with him. Do you feel equal to it?" - -"Yes; I shall not feel easy until I have told my story." - -"Then my servant will call a cab, and I shall be with you in an -instant." I rushed upstairs, explained the matter shortly to my -wife, and in five minutes was inside a hansom, driving with my -new acquaintance to Baker Street. - -Sherlock Holmes was, as I expected, lounging about his -sitting-room in his dressing-gown, reading the agony column of The -Times and smoking his before-breakfast pipe, which was composed -of all the plugs and dottles left from his smokes of the day -before, all carefully dried and collected on the corner of the -mantelpiece. He received us in his quietly genial fashion, -ordered fresh rashers and eggs, and joined us in a hearty meal. -When it was concluded he settled our new acquaintance upon the -sofa, placed a pillow beneath his head, and laid a glass of -brandy and water within his reach. - -"It is easy to see that your experience has been no common one, -Mr. Hatherley," said he. "Pray, lie down there and make yourself -absolutely at home. Tell us what you can, but stop when you are -tired and keep up your strength with a little stimulant." - -"Thank you," said my patient, "but I have felt another man since -the doctor bandaged me, and I think that your breakfast has -completed the cure. I shall take up as little of your valuable -time as possible, so I shall start at once upon my peculiar -experiences." - -Holmes sat in his big armchair with the weary, heavy-lidded -expression which veiled his keen and eager nature, while I sat -opposite to him, and we listened in silence to the strange story -which our visitor detailed to us. - -"You must know," said he, "that I am an orphan and a bachelor, -residing alone in lodgings in London. By profession I am a -hydraulic engineer, and I have had considerable experience of my -work during the seven years that I was apprenticed to Venner & -Matheson, the well-known firm, of Greenwich. Two years ago, -having served my time, and having also come into a fair sum of -money through my poor father's death, I determined to start in -business for myself and took professional chambers in Victoria -Street. - -"I suppose that everyone finds his first independent start in -business a dreary experience. To me it has been exceptionally so. -During two years I have had three consultations and one small -job, and that is absolutely all that my profession has brought -me. My gross takings amount to 27 pounds 10s. Every day, from -nine in the morning until four in the afternoon, I waited in my -little den, until at last my heart began to sink, and I came to -believe that I should never have any practice at all. - -"Yesterday, however, just as I was thinking of leaving the -office, my clerk entered to say there was a gentleman waiting who -wished to see me upon business. He brought up a card, too, with -the name of 'Colonel Lysander Stark' engraved upon it. Close at -his heels came the colonel himself, a man rather over the middle -size, but of an exceeding thinness. I do not think that I have -ever seen so thin a man. His whole face sharpened away into nose -and chin, and the skin of his cheeks was drawn quite tense over -his outstanding bones. Yet this emaciation seemed to be his -natural habit, and due to no disease, for his eye was bright, his -step brisk, and his bearing assured. He was plainly but neatly -dressed, and his age, I should judge, would be nearer forty than -thirty. - -"'Mr. Hatherley?' said he, with something of a German accent. -'You have been recommended to me, Mr. Hatherley, as being a man -who is not only proficient in his profession but is also discreet -and capable of preserving a secret.' - -"I bowed, feeling as flattered as any young man would at such an -address. 'May I ask who it was who gave me so good a character?' - -"'Well, perhaps it is better that I should not tell you that just -at this moment. I have it from the same source that you are both -an orphan and a bachelor and are residing alone in London.' - -"'That is quite correct,' I answered; 'but you will excuse me if -I say that I cannot see how all this bears upon my professional -qualifications. I understand that it was on a professional matter -that you wished to speak to me?' - -"'Undoubtedly so. But you will find that all I say is really to -the point. I have a professional commission for you, but absolute -secrecy is quite essential--absolute secrecy, you understand, and -of course we may expect that more from a man who is alone than -from one who lives in the bosom of his family.' - -"'If I promise to keep a secret,' said I, 'you may absolutely -depend upon my doing so.' - -"He looked very hard at me as I spoke, and it seemed to me that I -had never seen so suspicious and questioning an eye. - -"'Do you promise, then?' said he at last. - -"'Yes, I promise.' - -"'Absolute and complete silence before, during, and after? No -reference to the matter at all, either in word or writing?' - -"'I have already given you my word.' - -"'Very good.' He suddenly sprang up, and darting like lightning -across the room he flung open the door. The passage outside was -empty. - -"'That's all right,' said he, coming back. 'I know that clerks are -sometimes curious as to their master's affairs. Now we can talk -in safety.' He drew up his chair very close to mine and began to -stare at me again with the same questioning and thoughtful look. - -"A feeling of repulsion, and of something akin to fear had begun -to rise within me at the strange antics of this fleshless man. -Even my dread of losing a client could not restrain me from -showing my impatience. - -"'I beg that you will state your business, sir,' said I; 'my time -is of value.' Heaven forgive me for that last sentence, but the -words came to my lips. - -"'How would fifty guineas for a night's work suit you?' he asked. - -"'Most admirably.' - -"'I say a night's work, but an hour's would be nearer the mark. I -simply want your opinion about a hydraulic stamping machine which -has got out of gear. If you show us what is wrong we shall soon -set it right ourselves. What do you think of such a commission as -that?' - -"'The work appears to be light and the pay munificent.' - -"'Precisely so. We shall want you to come to-night by the last -train.' - -"'Where to?' - -"'To Eyford, in Berkshire. It is a little place near the borders -of Oxfordshire, and within seven miles of Reading. There is a -train from Paddington which would bring you there at about -11:15.' - -"'Very good.' - -"'I shall come down in a carriage to meet you.' - -"'There is a drive, then?' - -"'Yes, our little place is quite out in the country. It is a good -seven miles from Eyford Station.' - -"'Then we can hardly get there before midnight. I suppose there -would be no chance of a train back. I should be compelled to stop -the night.' - -"'Yes, we could easily give you a shake-down.' - -"'That is very awkward. Could I not come at some more convenient -hour?' - -"'We have judged it best that you should come late. It is to -recompense you for any inconvenience that we are paying to you, a -young and unknown man, a fee which would buy an opinion from the -very heads of your profession. Still, of course, if you would -like to draw out of the business, there is plenty of time to do -so.' - -"I thought of the fifty guineas, and of how very useful they -would be to me. 'Not at all,' said I, 'I shall be very happy to -accommodate myself to your wishes. I should like, however, to -understand a little more clearly what it is that you wish me to -do.' - -"'Quite so. It is very natural that the pledge of secrecy which -we have exacted from you should have aroused your curiosity. I -have no wish to commit you to anything without your having it all -laid before you. I suppose that we are absolutely safe from -eavesdroppers?' - -"'Entirely.' - -"'Then the matter stands thus. You are probably aware that -fuller's-earth is a valuable product, and that it is only found -in one or two places in England?' - -"'I have heard so.' - -"'Some little time ago I bought a small place--a very small -place--within ten miles of Reading. I was fortunate enough to -discover that there was a deposit of fuller's-earth in one of my -fields. On examining it, however, I found that this deposit was a -comparatively small one, and that it formed a link between two -very much larger ones upon the right and left--both of them, -however, in the grounds of my neighbours. These good people were -absolutely ignorant that their land contained that which was -quite as valuable as a gold-mine. Naturally, it was to my -interest to buy their land before they discovered its true value, -but unfortunately I had no capital by which I could do this. I -took a few of my friends into the secret, however, and they -suggested that we should quietly and secretly work our own little -deposit and that in this way we should earn the money which would -enable us to buy the neighbouring fields. This we have now been -doing for some time, and in order to help us in our operations we -erected a hydraulic press. This press, as I have already -explained, has got out of order, and we wish your advice upon the -subject. We guard our secret very jealously, however, and if it -once became known that we had hydraulic engineers coming to our -little house, it would soon rouse inquiry, and then, if the facts -came out, it would be good-bye to any chance of getting these -fields and carrying out our plans. That is why I have made you -promise me that you will not tell a human being that you are -going to Eyford to-night. I hope that I make it all plain?' - -"'I quite follow you,' said I. 'The only point which I could not -quite understand was what use you could make of a hydraulic press -in excavating fuller's-earth, which, as I understand, is dug out -like gravel from a pit.' - -"'Ah!' said he carelessly, 'we have our own process. We compress -the earth into bricks, so as to remove them without revealing -what they are. But that is a mere detail. I have taken you fully -into my confidence now, Mr. Hatherley, and I have shown you how I -trust you.' He rose as he spoke. 'I shall expect you, then, at -Eyford at 11:15.' - -"'I shall certainly be there.' - -"'And not a word to a soul.' He looked at me with a last long, -questioning gaze, and then, pressing my hand in a cold, dank -grasp, he hurried from the room. - -"Well, when I came to think it all over in cool blood I was very -much astonished, as you may both think, at this sudden commission -which had been intrusted to me. On the one hand, of course, I was -glad, for the fee was at least tenfold what I should have asked -had I set a price upon my own services, and it was possible that -this order might lead to other ones. On the other hand, the face -and manner of my patron had made an unpleasant impression upon -me, and I could not think that his explanation of the -fuller's-earth was sufficient to explain the necessity for my -coming at midnight, and his extreme anxiety lest I should tell -anyone of my errand. However, I threw all fears to the winds, ate -a hearty supper, drove to Paddington, and started off, having -obeyed to the letter the injunction as to holding my tongue. - -"At Reading I had to change not only my carriage but my station. -However, I was in time for the last train to Eyford, and I -reached the little dim-lit station after eleven o'clock. I was the -only passenger who got out there, and there was no one upon the -platform save a single sleepy porter with a lantern. As I passed -out through the wicket gate, however, I found my acquaintance of -the morning waiting in the shadow upon the other side. Without a -word he grasped my arm and hurried me into a carriage, the door -of which was standing open. He drew up the windows on either -side, tapped on the wood-work, and away we went as fast as the -horse could go." - -"One horse?" interjected Holmes. - -"Yes, only one." - -"Did you observe the colour?" - -"Yes, I saw it by the side-lights when I was stepping into the -carriage. It was a chestnut." - -"Tired-looking or fresh?" - -"Oh, fresh and glossy." - -"Thank you. I am sorry to have interrupted you. Pray continue -your most interesting statement." - -"Away we went then, and we drove for at least an hour. Colonel -Lysander Stark had said that it was only seven miles, but I -should think, from the rate that we seemed to go, and from the -time that we took, that it must have been nearer twelve. He sat -at my side in silence all the time, and I was aware, more than -once when I glanced in his direction, that he was looking at me -with great intensity. The country roads seem to be not very good -in that part of the world, for we lurched and jolted terribly. I -tried to look out of the windows to see something of where we -were, but they were made of frosted glass, and I could make out -nothing save the occasional bright blur of a passing light. Now -and then I hazarded some remark to break the monotony of the -journey, but the colonel answered only in monosyllables, and the -conversation soon flagged. At last, however, the bumping of the -road was exchanged for the crisp smoothness of a gravel-drive, -and the carriage came to a stand. Colonel Lysander Stark sprang -out, and, as I followed after him, pulled me swiftly into a porch -which gaped in front of us. We stepped, as it were, right out of -the carriage and into the hall, so that I failed to catch the -most fleeting glance of the front of the house. The instant that -I had crossed the threshold the door slammed heavily behind us, -and I heard faintly the rattle of the wheels as the carriage -drove away. - -"It was pitch dark inside the house, and the colonel fumbled -about looking for matches and muttering under his breath. -Suddenly a door opened at the other end of the passage, and a -long, golden bar of light shot out in our direction. It grew -broader, and a woman appeared with a lamp in her hand, which she -held above her head, pushing her face forward and peering at us. -I could see that she was pretty, and from the gloss with which -the light shone upon her dark dress I knew that it was a rich -material. She spoke a few words in a foreign tongue in a tone as -though asking a question, and when my companion answered in a -gruff monosyllable she gave such a start that the lamp nearly -fell from her hand. Colonel Stark went up to her, whispered -something in her ear, and then, pushing her back into the room -from whence she had come, he walked towards me again with the -lamp in his hand. - -"'Perhaps you will have the kindness to wait in this room for a -few minutes,' said he, throwing open another door. It was a -quiet, little, plainly furnished room, with a round table in the -centre, on which several German books were scattered. Colonel -Stark laid down the lamp on the top of a harmonium beside the -door. 'I shall not keep you waiting an instant,' said he, and -vanished into the darkness. - -"I glanced at the books upon the table, and in spite of my -ignorance of German I could see that two of them were treatises -on science, the others being volumes of poetry. Then I walked -across to the window, hoping that I might catch some glimpse of -the country-side, but an oak shutter, heavily barred, was folded -across it. It was a wonderfully silent house. There was an old -clock ticking loudly somewhere in the passage, but otherwise -everything was deadly still. A vague feeling of uneasiness began -to steal over me. Who were these German people, and what were -they doing living in this strange, out-of-the-way place? And -where was the place? I was ten miles or so from Eyford, that was -all I knew, but whether north, south, east, or west I had no -idea. For that matter, Reading, and possibly other large towns, -were within that radius, so the place might not be so secluded, -after all. Yet it was quite certain, from the absolute stillness, -that we were in the country. I paced up and down the room, -humming a tune under my breath to keep up my spirits and feeling -that I was thoroughly earning my fifty-guinea fee. - -"Suddenly, without any preliminary sound in the midst of the -utter stillness, the door of my room swung slowly open. The woman -was standing in the aperture, the darkness of the hall behind -her, the yellow light from my lamp beating upon her eager and -beautiful face. I could see at a glance that she was sick with -fear, and the sight sent a chill to my own heart. She held up one -shaking finger to warn me to be silent, and she shot a few -whispered words of broken English at me, her eyes glancing back, -like those of a frightened horse, into the gloom behind her. - -"'I would go,' said she, trying hard, as it seemed to me, to -speak calmly; 'I would go. I should not stay here. There is no -good for you to do.' - -"'But, madam,' said I, 'I have not yet done what I came for. I -cannot possibly leave until I have seen the machine.' - -"'It is not worth your while to wait,' she went on. 'You can pass -through the door; no one hinders.' And then, seeing that I smiled -and shook my head, she suddenly threw aside her constraint and -made a step forward, with her hands wrung together. 'For the love -of Heaven!' she whispered, 'get away from here before it is too -late!' - -"But I am somewhat headstrong by nature, and the more ready to -engage in an affair when there is some obstacle in the way. I -thought of my fifty-guinea fee, of my wearisome journey, and of -the unpleasant night which seemed to be before me. Was it all to -go for nothing? Why should I slink away without having carried -out my commission, and without the payment which was my due? This -woman might, for all I knew, be a monomaniac. With a stout -bearing, therefore, though her manner had shaken me more than I -cared to confess, I still shook my head and declared my intention -of remaining where I was. She was about to renew her entreaties -when a door slammed overhead, and the sound of several footsteps -was heard upon the stairs. She listened for an instant, threw up -her hands with a despairing gesture, and vanished as suddenly and -as noiselessly as she had come. - -"The newcomers were Colonel Lysander Stark and a short thick man -with a chinchilla beard growing out of the creases of his double -chin, who was introduced to me as Mr. Ferguson. - -"'This is my secretary and manager,' said the colonel. 'By the -way, I was under the impression that I left this door shut just -now. I fear that you have felt the draught.' - -"'On the contrary,' said I, 'I opened the door myself because I -felt the room to be a little close.' - -"He shot one of his suspicious looks at me. 'Perhaps we had -better proceed to business, then,' said he. 'Mr. Ferguson and I -will take you up to see the machine.' - -"'I had better put my hat on, I suppose.' - -"'Oh, no, it is in the house.' - -"'What, you dig fuller's-earth in the house?' - -"'No, no. This is only where we compress it. But never mind that. -All we wish you to do is to examine the machine and to let us -know what is wrong with it.' - -"We went upstairs together, the colonel first with the lamp, the -fat manager and I behind him. It was a labyrinth of an old house, -with corridors, passages, narrow winding staircases, and little -low doors, the thresholds of which were hollowed out by the -generations who had crossed them. There were no carpets and no -signs of any furniture above the ground floor, while the plaster -was peeling off the walls, and the damp was breaking through in -green, unhealthy blotches. I tried to put on as unconcerned an -air as possible, but I had not forgotten the warnings of the -lady, even though I disregarded them, and I kept a keen eye upon -my two companions. Ferguson appeared to be a morose and silent -man, but I could see from the little that he said that he was at -least a fellow-countryman. - -"Colonel Lysander Stark stopped at last before a low door, which -he unlocked. Within was a small, square room, in which the three -of us could hardly get at one time. Ferguson remained outside, -and the colonel ushered me in. - -"'We are now,' said he, 'actually within the hydraulic press, and -it would be a particularly unpleasant thing for us if anyone were -to turn it on. The ceiling of this small chamber is really the -end of the descending piston, and it comes down with the force of -many tons upon this metal floor. There are small lateral columns -of water outside which receive the force, and which transmit and -multiply it in the manner which is familiar to you. The machine -goes readily enough, but there is some stiffness in the working -of it, and it has lost a little of its force. Perhaps you will -have the goodness to look it over and to show us how we can set -it right.' - -"I took the lamp from him, and I examined the machine very -thoroughly. It was indeed a gigantic one, and capable of -exercising enormous pressure. When I passed outside, however, and -pressed down the levers which controlled it, I knew at once by -the whishing sound that there was a slight leakage, which allowed -a regurgitation of water through one of the side cylinders. An -examination showed that one of the india-rubber bands which was -round the head of a driving-rod had shrunk so as not quite to -fill the socket along which it worked. This was clearly the cause -of the loss of power, and I pointed it out to my companions, who -followed my remarks very carefully and asked several practical -questions as to how they should proceed to set it right. When I -had made it clear to them, I returned to the main chamber of the -machine and took a good look at it to satisfy my own curiosity. -It was obvious at a glance that the story of the fuller's-earth -was the merest fabrication, for it would be absurd to suppose -that so powerful an engine could be designed for so inadequate a -purpose. The walls were of wood, but the floor consisted of a -large iron trough, and when I came to examine it I could see a -crust of metallic deposit all over it. I had stooped and was -scraping at this to see exactly what it was when I heard a -muttered exclamation in German and saw the cadaverous face of the -colonel looking down at me. - -"'What are you doing there?' he asked. - -"I felt angry at having been tricked by so elaborate a story as -that which he had told me. 'I was admiring your fuller's-earth,' -said I; 'I think that I should be better able to advise you as to -your machine if I knew what the exact purpose was for which it -was used.' - -"The instant that I uttered the words I regretted the rashness of -my speech. His face set hard, and a baleful light sprang up in -his grey eyes. - -"'Very well,' said he, 'you shall know all about the machine.' He -took a step backward, slammed the little door, and turned the key -in the lock. I rushed towards it and pulled at the handle, but it -was quite secure, and did not give in the least to my kicks and -shoves. 'Hullo!' I yelled. 'Hullo! Colonel! Let me out!' - -"And then suddenly in the silence I heard a sound which sent my -heart into my mouth. It was the clank of the levers and the swish -of the leaking cylinder. He had set the engine at work. The lamp -still stood upon the floor where I had placed it when examining -the trough. By its light I saw that the black ceiling was coming -down upon me, slowly, jerkily, but, as none knew better than -myself, with a force which must within a minute grind me to a -shapeless pulp. I threw myself, screaming, against the door, and -dragged with my nails at the lock. I implored the colonel to let -me out, but the remorseless clanking of the levers drowned my -cries. The ceiling was only a foot or two above my head, and with -my hand upraised I could feel its hard, rough surface. Then it -flashed through my mind that the pain of my death would depend -very much upon the position in which I met it. If I lay on my -face the weight would come upon my spine, and I shuddered to -think of that dreadful snap. Easier the other way, perhaps; and -yet, had I the nerve to lie and look up at that deadly black -shadow wavering down upon me? Already I was unable to stand -erect, when my eye caught something which brought a gush of hope -back to my heart. - -"I have said that though the floor and ceiling were of iron, the -walls were of wood. As I gave a last hurried glance around, I saw -a thin line of yellow light between two of the boards, which -broadened and broadened as a small panel was pushed backward. For -an instant I could hardly believe that here was indeed a door -which led away from death. The next instant I threw myself -through, and lay half-fainting upon the other side. The panel had -closed again behind me, but the crash of the lamp, and a few -moments afterwards the clang of the two slabs of metal, told me -how narrow had been my escape. - -"I was recalled to myself by a frantic plucking at my wrist, and -I found myself lying upon the stone floor of a narrow corridor, -while a woman bent over me and tugged at me with her left hand, -while she held a candle in her right. It was the same good friend -whose warning I had so foolishly rejected. - -"'Come! come!' she cried breathlessly. 'They will be here in a -moment. They will see that you are not there. Oh, do not waste -the so-precious time, but come!' - -"This time, at least, I did not scorn her advice. I staggered to -my feet and ran with her along the corridor and down a winding -stair. The latter led to another broad passage, and just as we -reached it we heard the sound of running feet and the shouting of -two voices, one answering the other from the floor on which we -were and from the one beneath. My guide stopped and looked about -her like one who is at her wit's end. Then she threw open a door -which led into a bedroom, through the window of which the moon -was shining brightly. - -"'It is your only chance,' said she. 'It is high, but it may be -that you can jump it.' - -"As she spoke a light sprang into view at the further end of the -passage, and I saw the lean figure of Colonel Lysander Stark -rushing forward with a lantern in one hand and a weapon like a -butcher's cleaver in the other. I rushed across the bedroom, -flung open the window, and looked out. How quiet and sweet and -wholesome the garden looked in the moonlight, and it could not be -more than thirty feet down. I clambered out upon the sill, but I -hesitated to jump until I should have heard what passed between -my saviour and the ruffian who pursued me. If she were ill-used, -then at any risks I was determined to go back to her assistance. -The thought had hardly flashed through my mind before he was at -the door, pushing his way past her; but she threw her arms round -him and tried to hold him back. - -"'Fritz! Fritz!' she cried in English, 'remember your promise -after the last time. You said it should not be again. He will be -silent! Oh, he will be silent!' - -"'You are mad, Elise!' he shouted, struggling to break away from -her. 'You will be the ruin of us. He has seen too much. Let me -pass, I say!' He dashed her to one side, and, rushing to the -window, cut at me with his heavy weapon. I had let myself go, and -was hanging by the hands to the sill, when his blow fell. I was -conscious of a dull pain, my grip loosened, and I fell into the -garden below. - -"I was shaken but not hurt by the fall; so I picked myself up and -rushed off among the bushes as hard as I could run, for I -understood that I was far from being out of danger yet. Suddenly, -however, as I ran, a deadly dizziness and sickness came over me. -I glanced down at my hand, which was throbbing painfully, and -then, for the first time, saw that my thumb had been cut off and -that the blood was pouring from my wound. I endeavoured to tie my -handkerchief round it, but there came a sudden buzzing in my -ears, and next moment I fell in a dead faint among the -rose-bushes. - -"How long I remained unconscious I cannot tell. It must have been -a very long time, for the moon had sunk, and a bright morning was -breaking when I came to myself. My clothes were all sodden with -dew, and my coat-sleeve was drenched with blood from my wounded -thumb. The smarting of it recalled in an instant all the -particulars of my night's adventure, and I sprang to my feet with -the feeling that I might hardly yet be safe from my pursuers. But -to my astonishment, when I came to look round me, neither house -nor garden were to be seen. I had been lying in an angle of the -hedge close by the highroad, and just a little lower down was a -long building, which proved, upon my approaching it, to be the -very station at which I had arrived upon the previous night. Were -it not for the ugly wound upon my hand, all that had passed -during those dreadful hours might have been an evil dream. - -"Half dazed, I went into the station and asked about the morning -train. There would be one to Reading in less than an hour. The -same porter was on duty, I found, as had been there when I -arrived. I inquired of him whether he had ever heard of Colonel -Lysander Stark. The name was strange to him. Had he observed a -carriage the night before waiting for me? No, he had not. Was -there a police-station anywhere near? There was one about three -miles off. - -"It was too far for me to go, weak and ill as I was. I determined -to wait until I got back to town before telling my story to the -police. It was a little past six when I arrived, so I went first -to have my wound dressed, and then the doctor was kind enough to -bring me along here. I put the case into your hands and shall do -exactly what you advise." - -We both sat in silence for some little time after listening to -this extraordinary narrative. Then Sherlock Holmes pulled down -from the shelf one of the ponderous commonplace books in which he -placed his cuttings. - -"Here is an advertisement which will interest you," said he. "It -appeared in all the papers about a year ago. Listen to this: -'Lost, on the 9th inst., Mr. Jeremiah Hayling, aged -twenty-six, a hydraulic engineer. Left his lodgings at ten -o'clock at night, and has not been heard of since. Was -dressed in,' etc., etc. Ha! That represents the last time that -the colonel needed to have his machine overhauled, I fancy." - -"Good heavens!" cried my patient. "Then that explains what the -girl said." - -"Undoubtedly. It is quite clear that the colonel was a cool and -desperate man, who was absolutely determined that nothing should -stand in the way of his little game, like those out-and-out -pirates who will leave no survivor from a captured ship. Well, -every moment now is precious, so if you feel equal to it we shall -go down to Scotland Yard at once as a preliminary to starting for -Eyford." - -Some three hours or so afterwards we were all in the train -together, bound from Reading to the little Berkshire village. -There were Sherlock Holmes, the hydraulic engineer, Inspector -Bradstreet, of Scotland Yard, a plain-clothes man, and myself. -Bradstreet had spread an ordnance map of the county out upon the -seat and was busy with his compasses drawing a circle with Eyford -for its centre. - -"There you are," said he. "That circle is drawn at a radius of -ten miles from the village. The place we want must be somewhere -near that line. You said ten miles, I think, sir." - -"It was an hour's good drive." - -"And you think that they brought you back all that way when you -were unconscious?" - -"They must have done so. I have a confused memory, too, of having -been lifted and conveyed somewhere." - -"What I cannot understand," said I, "is why they should have -spared you when they found you lying fainting in the garden. -Perhaps the villain was softened by the woman's entreaties." - -"I hardly think that likely. I never saw a more inexorable face -in my life." - -"Oh, we shall soon clear up all that," said Bradstreet. "Well, I -have drawn my circle, and I only wish I knew at what point upon -it the folk that we are in search of are to be found." - -"I think I could lay my finger on it," said Holmes quietly. - -"Really, now!" cried the inspector, "you have formed your -opinion! Come, now, we shall see who agrees with you. I say it is -south, for the country is more deserted there." - -"And I say east," said my patient. - -"I am for west," remarked the plain-clothes man. "There are -several quiet little villages up there." - -"And I am for north," said I, "because there are no hills there, -and our friend says that he did not notice the carriage go up -any." - -"Come," cried the inspector, laughing; "it's a very pretty -diversity of opinion. We have boxed the compass among us. Who do -you give your casting vote to?" - -"You are all wrong." - -"But we can't all be." - -"Oh, yes, you can. This is my point." He placed his finger in the -centre of the circle. "This is where we shall find them." - -"But the twelve-mile drive?" gasped Hatherley. - -"Six out and six back. Nothing simpler. You say yourself that the -horse was fresh and glossy when you got in. How could it be that -if it had gone twelve miles over heavy roads?" - -"Indeed, it is a likely ruse enough," observed Bradstreet -thoughtfully. "Of course there can be no doubt as to the nature -of this gang." - -"None at all," said Holmes. "They are coiners on a large scale, -and have used the machine to form the amalgam which has taken the -place of silver." - -"We have known for some time that a clever gang was at work," -said the inspector. "They have been turning out half-crowns by -the thousand. We even traced them as far as Reading, but could -get no farther, for they had covered their traces in a way that -showed that they were very old hands. But now, thanks to this -lucky chance, I think that we have got them right enough." - -But the inspector was mistaken, for those criminals were not -destined to fall into the hands of justice. As we rolled into -Eyford Station we saw a gigantic column of smoke which streamed -up from behind a small clump of trees in the neighbourhood and -hung like an immense ostrich feather over the landscape. - -"A house on fire?" asked Bradstreet as the train steamed off -again on its way. - -"Yes, sir!" said the station-master. - -"When did it break out?" - -"I hear that it was during the night, sir, but it has got worse, -and the whole place is in a blaze." - -"Whose house is it?" - -"Dr. Becher's." - -"Tell me," broke in the engineer, "is Dr. Becher a German, very -thin, with a long, sharp nose?" - -The station-master laughed heartily. "No, sir, Dr. Becher is an -Englishman, and there isn't a man in the parish who has a -better-lined waistcoat. But he has a gentleman staying with him, -a patient, as I understand, who is a foreigner, and he looks as -if a little good Berkshire beef would do him no harm." - -The station-master had not finished his speech before we were all -hastening in the direction of the fire. The road topped a low -hill, and there was a great widespread whitewashed building in -front of us, spouting fire at every chink and window, while in -the garden in front three fire-engines were vainly striving to -keep the flames under. - -"That's it!" cried Hatherley, in intense excitement. "There is -the gravel-drive, and there are the rose-bushes where I lay. That -second window is the one that I jumped from." - -"Well, at least," said Holmes, "you have had your revenge upon -them. There can be no question that it was your oil-lamp which, -when it was crushed in the press, set fire to the wooden walls, -though no doubt they were too excited in the chase after you to -observe it at the time. Now keep your eyes open in this crowd for -your friends of last night, though I very much fear that they are -a good hundred miles off by now." - -And Holmes' fears came to be realised, for from that day to this -no word has ever been heard either of the beautiful woman, the -sinister German, or the morose Englishman. Early that morning a -peasant had met a cart containing several people and some very -bulky boxes driving rapidly in the direction of Reading, but -there all traces of the fugitives disappeared, and even Holmes' -ingenuity failed ever to discover the least clue as to their -whereabouts. - -The firemen had been much perturbed at the strange arrangements -which they had found within, and still more so by discovering a -newly severed human thumb upon a window-sill of the second floor. -About sunset, however, their efforts were at last successful, and -they subdued the flames, but not before the roof had fallen in, -and the whole place been reduced to such absolute ruin that, save -some twisted cylinders and iron piping, not a trace remained of -the machinery which had cost our unfortunate acquaintance so -dearly. Large masses of nickel and of tin were discovered stored -in an out-house, but no coins were to be found, which may have -explained the presence of those bulky boxes which have been -already referred to. - -How our hydraulic engineer had been conveyed from the garden to -the spot where he recovered his senses might have remained -forever a mystery were it not for the soft mould, which told us a -very plain tale. He had evidently been carried down by two -persons, one of whom had remarkably small feet and the other -unusually large ones. On the whole, it was most probable that the -silent Englishman, being less bold or less murderous than his -companion, had assisted the woman to bear the unconscious man out -of the way of danger. - -"Well," said our engineer ruefully as we took our seats to return -once more to London, "it has been a pretty business for me! I -have lost my thumb and I have lost a fifty-guinea fee, and what -have I gained?" - -"Experience," said Holmes, laughing. "Indirectly it may be of -value, you know; you have only to put it into words to gain the -reputation of being excellent company for the remainder of your -existence." - - - -X. THE ADVENTURE OF THE NOBLE BACHELOR - -The Lord St. Simon marriage, and its curious termination, have -long ceased to be a subject of interest in those exalted circles -in which the unfortunate bridegroom moves. Fresh scandals have -eclipsed it, and their more piquant details have drawn the -gossips away from this four-year-old drama. As I have reason to -believe, however, that the full facts have never been revealed to -the general public, and as my friend Sherlock Holmes had a -considerable share in clearing the matter up, I feel that no -memoir of him would be complete without some little sketch of -this remarkable episode. - -It was a few weeks before my own marriage, during the days when I -was still sharing rooms with Holmes in Baker Street, that he came -home from an afternoon stroll to find a letter on the table -waiting for him. I had remained indoors all day, for the weather -had taken a sudden turn to rain, with high autumnal winds, and -the Jezail bullet which I had brought back in one of my limbs as -a relic of my Afghan campaign throbbed with dull persistence. -With my body in one easy-chair and my legs upon another, I had -surrounded myself with a cloud of newspapers until at last, -saturated with the news of the day, I tossed them all aside and -lay listless, watching the huge crest and monogram upon the -envelope upon the table and wondering lazily who my friend's -noble correspondent could be. - -"Here is a very fashionable epistle," I remarked as he entered. -"Your morning letters, if I remember right, were from a -fish-monger and a tide-waiter." - -"Yes, my correspondence has certainly the charm of variety," he -answered, smiling, "and the humbler are usually the more -interesting. This looks like one of those unwelcome social -summonses which call upon a man either to be bored or to lie." - -He broke the seal and glanced over the contents. - -"Oh, come, it may prove to be something of interest, after all." - -"Not social, then?" - -"No, distinctly professional." - -"And from a noble client?" - -"One of the highest in England." - -"My dear fellow, I congratulate you." - -"I assure you, Watson, without affectation, that the status of my -client is a matter of less moment to me than the interest of his -case. It is just possible, however, that that also may not be -wanting in this new investigation. You have been reading the -papers diligently of late, have you not?" - -"It looks like it," said I ruefully, pointing to a huge bundle in -the corner. "I have had nothing else to do." - -"It is fortunate, for you will perhaps be able to post me up. I -read nothing except the criminal news and the agony column. The -latter is always instructive. But if you have followed recent -events so closely you must have read about Lord St. Simon and his -wedding?" - -"Oh, yes, with the deepest interest." - -"That is well. The letter which I hold in my hand is from Lord -St. Simon. I will read it to you, and in return you must turn -over these papers and let me have whatever bears upon the matter. -This is what he says: - -"'MY DEAR MR. SHERLOCK HOLMES:--Lord Backwater tells me that I -may place implicit reliance upon your judgment and discretion. I -have determined, therefore, to call upon you and to consult you -in reference to the very painful event which has occurred in -connection with my wedding. Mr. Lestrade, of Scotland Yard, is -acting already in the matter, but he assures me that he sees no -objection to your co-operation, and that he even thinks that -it might be of some assistance. I will call at four o'clock in -the afternoon, and, should you have any other engagement at that -time, I hope that you will postpone it, as this matter is of -paramount importance. Yours faithfully, ST. SIMON.' - -"It is dated from Grosvenor Mansions, written with a quill pen, -and the noble lord has had the misfortune to get a smear of ink -upon the outer side of his right little finger," remarked Holmes -as he folded up the epistle. - -"He says four o'clock. It is three now. He will be here in an -hour." - -"Then I have just time, with your assistance, to get clear upon -the subject. Turn over those papers and arrange the extracts in -their order of time, while I take a glance as to who our client -is." He picked a red-covered volume from a line of books of -reference beside the mantelpiece. "Here he is," said he, sitting -down and flattening it out upon his knee. "'Lord Robert Walsingham -de Vere St. Simon, second son of the Duke of Balmoral.' Hum! 'Arms: -Azure, three caltrops in chief over a fess sable. Born in 1846.' -He's forty-one years of age, which is mature for marriage. Was -Under-Secretary for the colonies in a late administration. The -Duke, his father, was at one time Secretary for Foreign Affairs. -They inherit Plantagenet blood by direct descent, and Tudor on -the distaff side. Ha! Well, there is nothing very instructive in -all this. I think that I must turn to you Watson, for something -more solid." - -"I have very little difficulty in finding what I want," said I, -"for the facts are quite recent, and the matter struck me as -remarkable. I feared to refer them to you, however, as I knew -that you had an inquiry on hand and that you disliked the -intrusion of other matters." - -"Oh, you mean the little problem of the Grosvenor Square -furniture van. That is quite cleared up now--though, indeed, it -was obvious from the first. Pray give me the results of your -newspaper selections." - -"Here is the first notice which I can find. It is in the personal -column of the Morning Post, and dates, as you see, some weeks -back: 'A marriage has been arranged,' it says, 'and will, if -rumour is correct, very shortly take place, between Lord Robert -St. Simon, second son of the Duke of Balmoral, and Miss Hatty -Doran, the only daughter of Aloysius Doran. Esq., of San -Francisco, Cal., U.S.A.' That is all." - -"Terse and to the point," remarked Holmes, stretching his long, -thin legs towards the fire. - -"There was a paragraph amplifying this in one of the society -papers of the same week. Ah, here it is: 'There will soon be a -call for protection in the marriage market, for the present -free-trade principle appears to tell heavily against our home -product. One by one the management of the noble houses of Great -Britain is passing into the hands of our fair cousins from across -the Atlantic. An important addition has been made during the last -week to the list of the prizes which have been borne away by -these charming invaders. Lord St. Simon, who has shown himself -for over twenty years proof against the little god's arrows, has -now definitely announced his approaching marriage with Miss Hatty -Doran, the fascinating daughter of a California millionaire. Miss -Doran, whose graceful figure and striking face attracted much -attention at the Westbury House festivities, is an only child, -and it is currently reported that her dowry will run to -considerably over the six figures, with expectancies for the -future. As it is an open secret that the Duke of Balmoral has -been compelled to sell his pictures within the last few years, -and as Lord St. Simon has no property of his own save the small -estate of Birchmoor, it is obvious that the Californian heiress -is not the only gainer by an alliance which will enable her to -make the easy and common transition from a Republican lady to a -British peeress.'" - -"Anything else?" asked Holmes, yawning. - -"Oh, yes; plenty. Then there is another note in the Morning Post -to say that the marriage would be an absolutely quiet one, that it -would be at St. George's, Hanover Square, that only half a dozen -intimate friends would be invited, and that the party would -return to the furnished house at Lancaster Gate which has been -taken by Mr. Aloysius Doran. Two days later--that is, on -Wednesday last--there is a curt announcement that the wedding had -taken place, and that the honeymoon would be passed at Lord -Backwater's place, near Petersfield. Those are all the notices -which appeared before the disappearance of the bride." - -"Before the what?" asked Holmes with a start. - -"The vanishing of the lady." - -"When did she vanish, then?" - -"At the wedding breakfast." - -"Indeed. This is more interesting than it promised to be; quite -dramatic, in fact." - -"Yes; it struck me as being a little out of the common." - -"They often vanish before the ceremony, and occasionally during -the honeymoon; but I cannot call to mind anything quite so prompt -as this. Pray let me have the details." - -"I warn you that they are very incomplete." - -"Perhaps we may make them less so." - -"Such as they are, they are set forth in a single article of a -morning paper of yesterday, which I will read to you. It is -headed, 'Singular Occurrence at a Fashionable Wedding': - -"'The family of Lord Robert St. Simon has been thrown into the -greatest consternation by the strange and painful episodes which -have taken place in connection with his wedding. The ceremony, as -shortly announced in the papers of yesterday, occurred on the -previous morning; but it is only now that it has been possible to -confirm the strange rumours which have been so persistently -floating about. In spite of the attempts of the friends to hush -the matter up, so much public attention has now been drawn to it -that no good purpose can be served by affecting to disregard what -is a common subject for conversation. - -"'The ceremony, which was performed at St. George's, Hanover -Square, was a very quiet one, no one being present save the -father of the bride, Mr. Aloysius Doran, the Duchess of Balmoral, -Lord Backwater, Lord Eustace and Lady Clara St. Simon (the -younger brother and sister of the bridegroom), and Lady Alicia -Whittington. The whole party proceeded afterwards to the house of -Mr. Aloysius Doran, at Lancaster Gate, where breakfast had been -prepared. It appears that some little trouble was caused by a -woman, whose name has not been ascertained, who endeavoured to -force her way into the house after the bridal party, alleging -that she had some claim upon Lord St. Simon. It was only after a -painful and prolonged scene that she was ejected by the butler -and the footman. The bride, who had fortunately entered the house -before this unpleasant interruption, had sat down to breakfast -with the rest, when she complained of a sudden indisposition and -retired to her room. Her prolonged absence having caused some -comment, her father followed her, but learned from her maid that -she had only come up to her chamber for an instant, caught up an -ulster and bonnet, and hurried down to the passage. One of the -footmen declared that he had seen a lady leave the house thus -apparelled, but had refused to credit that it was his mistress, -believing her to be with the company. On ascertaining that his -daughter had disappeared, Mr. Aloysius Doran, in conjunction with -the bridegroom, instantly put themselves in communication with -the police, and very energetic inquiries are being made, which -will probably result in a speedy clearing up of this very -singular business. Up to a late hour last night, however, nothing -had transpired as to the whereabouts of the missing lady. There -are rumours of foul play in the matter, and it is said that the -police have caused the arrest of the woman who had caused the -original disturbance, in the belief that, from jealousy or some -other motive, she may have been concerned in the strange -disappearance of the bride.'" - -"And is that all?" - -"Only one little item in another of the morning papers, but it is -a suggestive one." - -"And it is--" - -"That Miss Flora Millar, the lady who had caused the disturbance, -has actually been arrested. It appears that she was formerly a -danseuse at the Allegro, and that she has known the bridegroom -for some years. There are no further particulars, and the whole -case is in your hands now--so far as it has been set forth in the -public press." - -"And an exceedingly interesting case it appears to be. I would -not have missed it for worlds. But there is a ring at the bell, -Watson, and as the clock makes it a few minutes after four, I -have no doubt that this will prove to be our noble client. Do not -dream of going, Watson, for I very much prefer having a witness, -if only as a check to my own memory." - -"Lord Robert St. Simon," announced our page-boy, throwing open -the door. A gentleman entered, with a pleasant, cultured face, -high-nosed and pale, with something perhaps of petulance about -the mouth, and with the steady, well-opened eye of a man whose -pleasant lot it had ever been to command and to be obeyed. His -manner was brisk, and yet his general appearance gave an undue -impression of age, for he had a slight forward stoop and a little -bend of the knees as he walked. His hair, too, as he swept off -his very curly-brimmed hat, was grizzled round the edges and thin -upon the top. As to his dress, it was careful to the verge of -foppishness, with high collar, black frock-coat, white waistcoat, -yellow gloves, patent-leather shoes, and light-coloured gaiters. -He advanced slowly into the room, turning his head from left to -right, and swinging in his right hand the cord which held his -golden eyeglasses. - -"Good-day, Lord St. Simon," said Holmes, rising and bowing. "Pray -take the basket-chair. This is my friend and colleague, Dr. -Watson. Draw up a little to the fire, and we will talk this -matter over." - -"A most painful matter to me, as you can most readily imagine, -Mr. Holmes. I have been cut to the quick. I understand that you -have already managed several delicate cases of this sort, sir, -though I presume that they were hardly from the same class of -society." - -"No, I am descending." - -"I beg pardon." - -"My last client of the sort was a king." - -"Oh, really! I had no idea. And which king?" - -"The King of Scandinavia." - -"What! Had he lost his wife?" - -"You can understand," said Holmes suavely, "that I extend to the -affairs of my other clients the same secrecy which I promise to -you in yours." - -"Of course! Very right! very right! I'm sure I beg pardon. As to -my own case, I am ready to give you any information which may -assist you in forming an opinion." - -"Thank you. I have already learned all that is in the public -prints, nothing more. I presume that I may take it as correct--this -article, for example, as to the disappearance of the bride." - -Lord St. Simon glanced over it. "Yes, it is correct, as far as it -goes." - -"But it needs a great deal of supplementing before anyone could -offer an opinion. I think that I may arrive at my facts most -directly by questioning you." - -"Pray do so." - -"When did you first meet Miss Hatty Doran?" - -"In San Francisco, a year ago." - -"You were travelling in the States?" - -"Yes." - -"Did you become engaged then?" - -"No." - -"But you were on a friendly footing?" - -"I was amused by her society, and she could see that I was -amused." - -"Her father is very rich?" - -"He is said to be the richest man on the Pacific slope." - -"And how did he make his money?" - -"In mining. He had nothing a few years ago. Then he struck gold, -invested it, and came up by leaps and bounds." - -"Now, what is your own impression as to the young lady's--your -wife's character?" - -The nobleman swung his glasses a little faster and stared down -into the fire. "You see, Mr. Holmes," said he, "my wife was -twenty before her father became a rich man. During that time she -ran free in a mining camp and wandered through woods or -mountains, so that her education has come from Nature rather than -from the schoolmaster. She is what we call in England a tomboy, -with a strong nature, wild and free, unfettered by any sort of -traditions. She is impetuous--volcanic, I was about to say. She -is swift in making up her mind and fearless in carrying out her -resolutions. On the other hand, I would not have given her the -name which I have the honour to bear"--he gave a little stately -cough--"had not I thought her to be at bottom a noble woman. I -believe that she is capable of heroic self-sacrifice and that -anything dishonourable would be repugnant to her." - -"Have you her photograph?" - -"I brought this with me." He opened a locket and showed us the -full face of a very lovely woman. It was not a photograph but an -ivory miniature, and the artist had brought out the full effect -of the lustrous black hair, the large dark eyes, and the -exquisite mouth. Holmes gazed long and earnestly at it. Then he -closed the locket and handed it back to Lord St. Simon. - -"The young lady came to London, then, and you renewed your -acquaintance?" - -"Yes, her father brought her over for this last London season. I -met her several times, became engaged to her, and have now -married her." - -"She brought, I understand, a considerable dowry?" - -"A fair dowry. Not more than is usual in my family." - -"And this, of course, remains to you, since the marriage is a -fait accompli?" - -"I really have made no inquiries on the subject." - -"Very naturally not. Did you see Miss Doran on the day before the -wedding?" - -"Yes." - -"Was she in good spirits?" - -"Never better. She kept talking of what we should do in our -future lives." - -"Indeed! That is very interesting. And on the morning of the -wedding?" - -"She was as bright as possible--at least until after the -ceremony." - -"And did you observe any change in her then?" - -"Well, to tell the truth, I saw then the first signs that I had -ever seen that her temper was just a little sharp. The incident -however, was too trivial to relate and can have no possible -bearing upon the case." - -"Pray let us have it, for all that." - -"Oh, it is childish. She dropped her bouquet as we went towards -the vestry. She was passing the front pew at the time, and it -fell over into the pew. There was a moment's delay, but the -gentleman in the pew handed it up to her again, and it did not -appear to be the worse for the fall. Yet when I spoke to her of -the matter, she answered me abruptly; and in the carriage, on our -way home, she seemed absurdly agitated over this trifling cause." - -"Indeed! You say that there was a gentleman in the pew. Some of -the general public were present, then?" - -"Oh, yes. It is impossible to exclude them when the church is -open." - -"This gentleman was not one of your wife's friends?" - -"No, no; I call him a gentleman by courtesy, but he was quite a -common-looking person. I hardly noticed his appearance. But -really I think that we are wandering rather far from the point." - -"Lady St. Simon, then, returned from the wedding in a less -cheerful frame of mind than she had gone to it. What did she do -on re-entering her father's house?" - -"I saw her in conversation with her maid." - -"And who is her maid?" - -"Alice is her name. She is an American and came from California -with her." - -"A confidential servant?" - -"A little too much so. It seemed to me that her mistress allowed -her to take great liberties. Still, of course, in America they -look upon these things in a different way." - -"How long did she speak to this Alice?" - -"Oh, a few minutes. I had something else to think of." - -"You did not overhear what they said?" - -"Lady St. Simon said something about 'jumping a claim.' She was -accustomed to use slang of the kind. I have no idea what she -meant." - -"American slang is very expressive sometimes. And what did your -wife do when she finished speaking to her maid?" - -"She walked into the breakfast-room." - -"On your arm?" - -"No, alone. She was very independent in little matters like that. -Then, after we had sat down for ten minutes or so, she rose -hurriedly, muttered some words of apology, and left the room. She -never came back." - -"But this maid, Alice, as I understand, deposes that she went to -her room, covered her bride's dress with a long ulster, put on a -bonnet, and went out." - -"Quite so. And she was afterwards seen walking into Hyde Park in -company with Flora Millar, a woman who is now in custody, and who -had already made a disturbance at Mr. Doran's house that -morning." - -"Ah, yes. I should like a few particulars as to this young lady, -and your relations to her." - -Lord St. Simon shrugged his shoulders and raised his eyebrows. -"We have been on a friendly footing for some years--I may say on -a very friendly footing. She used to be at the Allegro. I have -not treated her ungenerously, and she had no just cause of -complaint against me, but you know what women are, Mr. Holmes. -Flora was a dear little thing, but exceedingly hot-headed and -devotedly attached to me. She wrote me dreadful letters when she -heard that I was about to be married, and, to tell the truth, the -reason why I had the marriage celebrated so quietly was that I -feared lest there might be a scandal in the church. She came to -Mr. Doran's door just after we returned, and she endeavoured to -push her way in, uttering very abusive expressions towards my -wife, and even threatening her, but I had foreseen the -possibility of something of the sort, and I had two police -fellows there in private clothes, who soon pushed her out again. -She was quiet when she saw that there was no good in making a -row." - -"Did your wife hear all this?" - -"No, thank goodness, she did not." - -"And she was seen walking with this very woman afterwards?" - -"Yes. That is what Mr. Lestrade, of Scotland Yard, looks upon as -so serious. It is thought that Flora decoyed my wife out and laid -some terrible trap for her." - -"Well, it is a possible supposition." - -"You think so, too?" - -"I did not say a probable one. But you do not yourself look upon -this as likely?" - -"I do not think Flora would hurt a fly." - -"Still, jealousy is a strange transformer of characters. Pray -what is your own theory as to what took place?" - -"Well, really, I came to seek a theory, not to propound one. I -have given you all the facts. Since you ask me, however, I may -say that it has occurred to me as possible that the excitement of -this affair, the consciousness that she had made so immense a -social stride, had the effect of causing some little nervous -disturbance in my wife." - -"In short, that she had become suddenly deranged?" - -"Well, really, when I consider that she has turned her back--I -will not say upon me, but upon so much that many have aspired to -without success--I can hardly explain it in any other fashion." - -"Well, certainly that is also a conceivable hypothesis," said -Holmes, smiling. "And now, Lord St. Simon, I think that I have -nearly all my data. May I ask whether you were seated at the -breakfast-table so that you could see out of the window?" - -"We could see the other side of the road and the Park." - -"Quite so. Then I do not think that I need to detain you longer. -I shall communicate with you." - -"Should you be fortunate enough to solve this problem," said our -client, rising. - -"I have solved it." - -"Eh? What was that?" - -"I say that I have solved it." - -"Where, then, is my wife?" - -"That is a detail which I shall speedily supply." - -Lord St. Simon shook his head. "I am afraid that it will take -wiser heads than yours or mine," he remarked, and bowing in a -stately, old-fashioned manner he departed. - -"It is very good of Lord St. Simon to honour my head by putting -it on a level with his own," said Sherlock Holmes, laughing. "I -think that I shall have a whisky and soda and a cigar after all -this cross-questioning. I had formed my conclusions as to the -case before our client came into the room." - -"My dear Holmes!" - -"I have notes of several similar cases, though none, as I -remarked before, which were quite as prompt. My whole examination -served to turn my conjecture into a certainty. Circumstantial -evidence is occasionally very convincing, as when you find a -trout in the milk, to quote Thoreau's example." - -"But I have heard all that you have heard." - -"Without, however, the knowledge of pre-existing cases which -serves me so well. There was a parallel instance in Aberdeen some -years back, and something on very much the same lines at Munich -the year after the Franco-Prussian War. It is one of these -cases--but, hullo, here is Lestrade! Good-afternoon, Lestrade! -You will find an extra tumbler upon the sideboard, and there are -cigars in the box." - -The official detective was attired in a pea-jacket and cravat, -which gave him a decidedly nautical appearance, and he carried a -black canvas bag in his hand. With a short greeting he seated -himself and lit the cigar which had been offered to him. - -"What's up, then?" asked Holmes with a twinkle in his eye. "You -look dissatisfied." - -"And I feel dissatisfied. It is this infernal St. Simon marriage -case. I can make neither head nor tail of the business." - -"Really! You surprise me." - -"Who ever heard of such a mixed affair? Every clue seems to slip -through my fingers. I have been at work upon it all day." - -"And very wet it seems to have made you," said Holmes laying his -hand upon the arm of the pea-jacket. - -"Yes, I have been dragging the Serpentine." - -"In heaven's name, what for?" - -"In search of the body of Lady St. Simon." - -Sherlock Holmes leaned back in his chair and laughed heartily. - -"Have you dragged the basin of Trafalgar Square fountain?" he -asked. - -"Why? What do you mean?" - -"Because you have just as good a chance of finding this lady in -the one as in the other." - -Lestrade shot an angry glance at my companion. "I suppose you -know all about it," he snarled. - -"Well, I have only just heard the facts, but my mind is made up." - -"Oh, indeed! Then you think that the Serpentine plays no part in -the matter?" - -"I think it very unlikely." - -"Then perhaps you will kindly explain how it is that we found -this in it?" He opened his bag as he spoke, and tumbled onto the -floor a wedding-dress of watered silk, a pair of white satin -shoes and a bride's wreath and veil, all discoloured and soaked -in water. "There," said he, putting a new wedding-ring upon the -top of the pile. "There is a little nut for you to crack, Master -Holmes." - -"Oh, indeed!" said my friend, blowing blue rings into the air. -"You dragged them from the Serpentine?" - -"No. They were found floating near the margin by a park-keeper. -They have been identified as her clothes, and it seemed to me -that if the clothes were there the body would not be far off." - -"By the same brilliant reasoning, every man's body is to be found -in the neighbourhood of his wardrobe. And pray what did you hope -to arrive at through this?" - -"At some evidence implicating Flora Millar in the disappearance." - -"I am afraid that you will find it difficult." - -"Are you, indeed, now?" cried Lestrade with some bitterness. "I -am afraid, Holmes, that you are not very practical with your -deductions and your inferences. You have made two blunders in as -many minutes. This dress does implicate Miss Flora Millar." - -"And how?" - -"In the dress is a pocket. In the pocket is a card-case. In the -card-case is a note. And here is the very note." He slapped it -down upon the table in front of him. "Listen to this: 'You will -see me when all is ready. Come at once. F.H.M.' Now my theory all -along has been that Lady St. Simon was decoyed away by Flora -Millar, and that she, with confederates, no doubt, was -responsible for her disappearance. Here, signed with her -initials, is the very note which was no doubt quietly slipped -into her hand at the door and which lured her within their -reach." - -"Very good, Lestrade," said Holmes, laughing. "You really are -very fine indeed. Let me see it." He took up the paper in a -listless way, but his attention instantly became riveted, and he -gave a little cry of satisfaction. "This is indeed important," -said he. - -"Ha! you find it so?" - -"Extremely so. I congratulate you warmly." - -Lestrade rose in his triumph and bent his head to look. "Why," he -shrieked, "you're looking at the wrong side!" - -"On the contrary, this is the right side." - -"The right side? You're mad! Here is the note written in pencil -over here." - -"And over here is what appears to be the fragment of a hotel -bill, which interests me deeply." - -"There's nothing in it. I looked at it before," said Lestrade. -"'Oct. 4th, rooms 8s., breakfast 2s. 6d., cocktail 1s., lunch 2s. -6d., glass sherry, 8d.' I see nothing in that." - -"Very likely not. It is most important, all the same. As to the -note, it is important also, or at least the initials are, so I -congratulate you again." - -"I've wasted time enough," said Lestrade, rising. "I believe in -hard work and not in sitting by the fire spinning fine theories. -Good-day, Mr. Holmes, and we shall see which gets to the bottom -of the matter first." He gathered up the garments, thrust them -into the bag, and made for the door. - -"Just one hint to you, Lestrade," drawled Holmes before his rival -vanished; "I will tell you the true solution of the matter. Lady -St. Simon is a myth. There is not, and there never has been, any -such person." - -Lestrade looked sadly at my companion. Then he turned to me, -tapped his forehead three times, shook his head solemnly, and -hurried away. - -He had hardly shut the door behind him when Holmes rose to put on -his overcoat. "There is something in what the fellow says about -outdoor work," he remarked, "so I think, Watson, that I must -leave you to your papers for a little." - -It was after five o'clock when Sherlock Holmes left me, but I had -no time to be lonely, for within an hour there arrived a -confectioner's man with a very large flat box. This he unpacked -with the help of a youth whom he had brought with him, and -presently, to my very great astonishment, a quite epicurean -little cold supper began to be laid out upon our humble -lodging-house mahogany. There were a couple of brace of cold -woodcock, a pheasant, a pt de foie gras pie with a group of -ancient and cobwebby bottles. Having laid out all these luxuries, -my two visitors vanished away, like the genii of the Arabian -Nights, with no explanation save that the things had been paid -for and were ordered to this address. - -Just before nine o'clock Sherlock Holmes stepped briskly into the -room. His features were gravely set, but there was a light in his -eye which made me think that he had not been disappointed in his -conclusions. - -"They have laid the supper, then," he said, rubbing his hands. - -"You seem to expect company. They have laid for five." - -"Yes, I fancy we may have some company dropping in," said he. "I -am surprised that Lord St. Simon has not already arrived. Ha! I -fancy that I hear his step now upon the stairs." - -It was indeed our visitor of the afternoon who came bustling in, -dangling his glasses more vigorously than ever, and with a very -perturbed expression upon his aristocratic features. - -"My messenger reached you, then?" asked Holmes. - -"Yes, and I confess that the contents startled me beyond measure. -Have you good authority for what you say?" - -"The best possible." - -Lord St. Simon sank into a chair and passed his hand over his -forehead. - -"What will the Duke say," he murmured, "when he hears that one of -the family has been subjected to such humiliation?" - -"It is the purest accident. I cannot allow that there is any -humiliation." - -"Ah, you look on these things from another standpoint." - -"I fail to see that anyone is to blame. I can hardly see how the -lady could have acted otherwise, though her abrupt method of -doing it was undoubtedly to be regretted. Having no mother, she -had no one to advise her at such a crisis." - -"It was a slight, sir, a public slight," said Lord St. Simon, -tapping his fingers upon the table. - -"You must make allowance for this poor girl, placed in so -unprecedented a position." - -"I will make no allowance. I am very angry indeed, and I have -been shamefully used." - -"I think that I heard a ring," said Holmes. "Yes, there are steps -on the landing. If I cannot persuade you to take a lenient view -of the matter, Lord St. Simon, I have brought an advocate here -who may be more successful." He opened the door and ushered in a -lady and gentleman. "Lord St. Simon," said he "allow me to -introduce you to Mr. and Mrs. Francis Hay Moulton. The lady, I -think, you have already met." - -At the sight of these newcomers our client had sprung from his -seat and stood very erect, with his eyes cast down and his hand -thrust into the breast of his frock-coat, a picture of offended -dignity. The lady had taken a quick step forward and had held out -her hand to him, but he still refused to raise his eyes. It was -as well for his resolution, perhaps, for her pleading face was -one which it was hard to resist. - -"You're angry, Robert," said she. "Well, I guess you have every -cause to be." - -"Pray make no apology to me," said Lord St. Simon bitterly. - -"Oh, yes, I know that I have treated you real bad and that I -should have spoken to you before I went; but I was kind of -rattled, and from the time when I saw Frank here again I just -didn't know what I was doing or saying. I only wonder I didn't -fall down and do a faint right there before the altar." - -"Perhaps, Mrs. Moulton, you would like my friend and me to leave -the room while you explain this matter?" - -"If I may give an opinion," remarked the strange gentleman, -"we've had just a little too much secrecy over this business -already. For my part, I should like all Europe and America to -hear the rights of it." He was a small, wiry, sunburnt man, -clean-shaven, with a sharp face and alert manner. - -"Then I'll tell our story right away," said the lady. "Frank here -and I met in '84, in McQuire's camp, near the Rockies, where pa -was working a claim. We were engaged to each other, Frank and I; -but then one day father struck a rich pocket and made a pile, -while poor Frank here had a claim that petered out and came to -nothing. The richer pa grew the poorer was Frank; so at last pa -wouldn't hear of our engagement lasting any longer, and he took -me away to 'Frisco. Frank wouldn't throw up his hand, though; so -he followed me there, and he saw me without pa knowing anything -about it. It would only have made him mad to know, so we just -fixed it all up for ourselves. Frank said that he would go and -make his pile, too, and never come back to claim me until he had -as much as pa. So then I promised to wait for him to the end of -time and pledged myself not to marry anyone else while he lived. -'Why shouldn't we be married right away, then,' said he, 'and -then I will feel sure of you; and I won't claim to be your -husband until I come back?' Well, we talked it over, and he had -fixed it all up so nicely, with a clergyman all ready in waiting, -that we just did it right there; and then Frank went off to seek -his fortune, and I went back to pa. - -"The next I heard of Frank was that he was in Montana, and then -he went prospecting in Arizona, and then I heard of him from New -Mexico. After that came a long newspaper story about how a -miners' camp had been attacked by Apache Indians, and there was -my Frank's name among the killed. I fainted dead away, and I was -very sick for months after. Pa thought I had a decline and took -me to half the doctors in 'Frisco. Not a word of news came for a -year and more, so that I never doubted that Frank was really -dead. Then Lord St. Simon came to 'Frisco, and we came to London, -and a marriage was arranged, and pa was very pleased, but I felt -all the time that no man on this earth would ever take the place -in my heart that had been given to my poor Frank. - -"Still, if I had married Lord St. Simon, of course I'd have done -my duty by him. We can't command our love, but we can our -actions. I went to the altar with him with the intention to make -him just as good a wife as it was in me to be. But you may -imagine what I felt when, just as I came to the altar rails, I -glanced back and saw Frank standing and looking at me out of the -first pew. I thought it was his ghost at first; but when I looked -again there he was still, with a kind of question in his eyes, as -if to ask me whether I were glad or sorry to see him. I wonder I -didn't drop. I know that everything was turning round, and the -words of the clergyman were just like the buzz of a bee in my -ear. I didn't know what to do. Should I stop the service and make -a scene in the church? I glanced at him again, and he seemed to -know what I was thinking, for he raised his finger to his lips to -tell me to be still. Then I saw him scribble on a piece of paper, -and I knew that he was writing me a note. As I passed his pew on -the way out I dropped my bouquet over to him, and he slipped the -note into my hand when he returned me the flowers. It was only a -line asking me to join him when he made the sign to me to do so. -Of course I never doubted for a moment that my first duty was now -to him, and I determined to do just whatever he might direct. - -"When I got back I told my maid, who had known him in California, -and had always been his friend. I ordered her to say nothing, but -to get a few things packed and my ulster ready. I know I ought to -have spoken to Lord St. Simon, but it was dreadful hard before -his mother and all those great people. I just made up my mind to -run away and explain afterwards. I hadn't been at the table ten -minutes before I saw Frank out of the window at the other side of -the road. He beckoned to me and then began walking into the Park. -I slipped out, put on my things, and followed him. Some woman -came talking something or other about Lord St. Simon to -me--seemed to me from the little I heard as if he had a little -secret of his own before marriage also--but I managed to get away -from her and soon overtook Frank. We got into a cab together, and -away we drove to some lodgings he had taken in Gordon Square, and -that was my true wedding after all those years of waiting. Frank -had been a prisoner among the Apaches, had escaped, came on to -'Frisco, found that I had given him up for dead and had gone to -England, followed me there, and had come upon me at last on the -very morning of my second wedding." - -"I saw it in a paper," explained the American. "It gave the name -and the church but not where the lady lived." - -"Then we had a talk as to what we should do, and Frank was all -for openness, but I was so ashamed of it all that I felt as if I -should like to vanish away and never see any of them again--just -sending a line to pa, perhaps, to show him that I was alive. It -was awful to me to think of all those lords and ladies sitting -round that breakfast-table and waiting for me to come back. So -Frank took my wedding-clothes and things and made a bundle of -them, so that I should not be traced, and dropped them away -somewhere where no one could find them. It is likely that we -should have gone on to Paris to-morrow, only that this good -gentleman, Mr. Holmes, came round to us this evening, though how -he found us is more than I can think, and he showed us very -clearly and kindly that I was wrong and that Frank was right, and -that we should be putting ourselves in the wrong if we were so -secret. Then he offered to give us a chance of talking to Lord -St. Simon alone, and so we came right away round to his rooms at -once. Now, Robert, you have heard it all, and I am very sorry if -I have given you pain, and I hope that you do not think very -meanly of me." - -Lord St. Simon had by no means relaxed his rigid attitude, but -had listened with a frowning brow and a compressed lip to this -long narrative. - -"Excuse me," he said, "but it is not my custom to discuss my most -intimate personal affairs in this public manner." - -"Then you won't forgive me? You won't shake hands before I go?" - -"Oh, certainly, if it would give you any pleasure." He put out -his hand and coldly grasped that which she extended to him. - -"I had hoped," suggested Holmes, "that you would have joined us -in a friendly supper." - -"I think that there you ask a little too much," responded his -Lordship. "I may be forced to acquiesce in these recent -developments, but I can hardly be expected to make merry over -them. I think that with your permission I will now wish you all a -very good-night." He included us all in a sweeping bow and -stalked out of the room. - -"Then I trust that you at least will honour me with your -company," said Sherlock Holmes. "It is always a joy to meet an -American, Mr. Moulton, for I am one of those who believe that the -folly of a monarch and the blundering of a minister in far-gone -years will not prevent our children from being some day citizens -of the same world-wide country under a flag which shall be a -quartering of the Union Jack with the Stars and Stripes." - -"The case has been an interesting one," remarked Holmes when our -visitors had left us, "because it serves to show very clearly how -simple the explanation may be of an affair which at first sight -seems to be almost inexplicable. Nothing could be more natural -than the sequence of events as narrated by this lady, and nothing -stranger than the result when viewed, for instance, by Mr. -Lestrade of Scotland Yard." - -"You were not yourself at fault at all, then?" - -"From the first, two facts were very obvious to me, the one that -the lady had been quite willing to undergo the wedding ceremony, -the other that she had repented of it within a few minutes of -returning home. Obviously something had occurred during the -morning, then, to cause her to change her mind. What could that -something be? She could not have spoken to anyone when she was -out, for she had been in the company of the bridegroom. Had she -seen someone, then? If she had, it must be someone from America -because she had spent so short a time in this country that she -could hardly have allowed anyone to acquire so deep an influence -over her that the mere sight of him would induce her to change -her plans so completely. You see we have already arrived, by a -process of exclusion, at the idea that she might have seen an -American. Then who could this American be, and why should he -possess so much influence over her? It might be a lover; it might -be a husband. Her young womanhood had, I knew, been spent in -rough scenes and under strange conditions. So far I had got -before I ever heard Lord St. Simon's narrative. When he told us -of a man in a pew, of the change in the bride's manner, of so -transparent a device for obtaining a note as the dropping of a -bouquet, of her resort to her confidential maid, and of her very -significant allusion to claim-jumping--which in miners' parlance -means taking possession of that which another person has a prior -claim to--the whole situation became absolutely clear. She had -gone off with a man, and the man was either a lover or was a -previous husband--the chances being in favour of the latter." - -"And how in the world did you find them?" - -"It might have been difficult, but friend Lestrade held -information in his hands the value of which he did not himself -know. The initials were, of course, of the highest importance, -but more valuable still was it to know that within a week he had -settled his bill at one of the most select London hotels." - -"How did you deduce the select?" - -"By the select prices. Eight shillings for a bed and eightpence -for a glass of sherry pointed to one of the most expensive -hotels. There are not many in London which charge at that rate. -In the second one which I visited in Northumberland Avenue, I -learned by an inspection of the book that Francis H. Moulton, an -American gentleman, had left only the day before, and on looking -over the entries against him, I came upon the very items which I -had seen in the duplicate bill. His letters were to be forwarded -to 226 Gordon Square; so thither I travelled, and being fortunate -enough to find the loving couple at home, I ventured to give them -some paternal advice and to point out to them that it would be -better in every way that they should make their position a little -clearer both to the general public and to Lord St. Simon in -particular. I invited them to meet him here, and, as you see, I -made him keep the appointment." - -"But with no very good result," I remarked. "His conduct was -certainly not very gracious." - -"Ah, Watson," said Holmes, smiling, "perhaps you would not be -very gracious either, if, after all the trouble of wooing and -wedding, you found yourself deprived in an instant of wife and of -fortune. I think that we may judge Lord St. Simon very mercifully -and thank our stars that we are never likely to find ourselves in -the same position. Draw your chair up and hand me my violin, for -the only problem we have still to solve is how to while away -these bleak autumnal evenings." - - - -XI. THE ADVENTURE OF THE BERYL CORONET - -"Holmes," said I as I stood one morning in our bow-window looking -down the street, "here is a madman coming along. It seems rather -sad that his relatives should allow him to come out alone." - -My friend rose lazily from his armchair and stood with his hands -in the pockets of his dressing-gown, looking over my shoulder. It -was a bright, crisp February morning, and the snow of the day -before still lay deep upon the ground, shimmering brightly in the -wintry sun. Down the centre of Baker Street it had been ploughed -into a brown crumbly band by the traffic, but at either side and -on the heaped-up edges of the foot-paths it still lay as white as -when it fell. The grey pavement had been cleaned and scraped, but -was still dangerously slippery, so that there were fewer -passengers than usual. Indeed, from the direction of the -Metropolitan Station no one was coming save the single gentleman -whose eccentric conduct had drawn my attention. - -He was a man of about fifty, tall, portly, and imposing, with a -massive, strongly marked face and a commanding figure. He was -dressed in a sombre yet rich style, in black frock-coat, shining -hat, neat brown gaiters, and well-cut pearl-grey trousers. Yet -his actions were in absurd contrast to the dignity of his dress -and features, for he was running hard, with occasional little -springs, such as a weary man gives who is little accustomed to -set any tax upon his legs. As he ran he jerked his hands up and -down, waggled his head, and writhed his face into the most -extraordinary contortions. - -"What on earth can be the matter with him?" I asked. "He is -looking up at the numbers of the houses." - -"I believe that he is coming here," said Holmes, rubbing his -hands. - -"Here?" - -"Yes; I rather think he is coming to consult me professionally. I -think that I recognise the symptoms. Ha! did I not tell you?" As -he spoke, the man, puffing and blowing, rushed at our door and -pulled at our bell until the whole house resounded with the -clanging. - -A few moments later he was in our room, still puffing, still -gesticulating, but with so fixed a look of grief and despair in -his eyes that our smiles were turned in an instant to horror and -pity. For a while he could not get his words out, but swayed his -body and plucked at his hair like one who has been driven to the -extreme limits of his reason. Then, suddenly springing to his -feet, he beat his head against the wall with such force that we -both rushed upon him and tore him away to the centre of the room. -Sherlock Holmes pushed him down into the easy-chair and, sitting -beside him, patted his hand and chatted with him in the easy, -soothing tones which he knew so well how to employ. - -"You have come to me to tell your story, have you not?" said he. -"You are fatigued with your haste. Pray wait until you have -recovered yourself, and then I shall be most happy to look into -any little problem which you may submit to me." - -The man sat for a minute or more with a heaving chest, fighting -against his emotion. Then he passed his handkerchief over his -brow, set his lips tight, and turned his face towards us. - -"No doubt you think me mad?" said he. - -"I see that you have had some great trouble," responded Holmes. - -"God knows I have!--a trouble which is enough to unseat my -reason, so sudden and so terrible is it. Public disgrace I might -have faced, although I am a man whose character has never yet -borne a stain. Private affliction also is the lot of every man; -but the two coming together, and in so frightful a form, have -been enough to shake my very soul. Besides, it is not I alone. -The very noblest in the land may suffer unless some way be found -out of this horrible affair." - -"Pray compose yourself, sir," said Holmes, "and let me have a -clear account of who you are and what it is that has befallen -you." - -"My name," answered our visitor, "is probably familiar to your -ears. I am Alexander Holder, of the banking firm of Holder & -Stevenson, of Threadneedle Street." - -The name was indeed well known to us as belonging to the senior -partner in the second largest private banking concern in the City -of London. What could have happened, then, to bring one of the -foremost citizens of London to this most pitiable pass? We -waited, all curiosity, until with another effort he braced -himself to tell his story. - -"I feel that time is of value," said he; "that is why I hastened -here when the police inspector suggested that I should secure -your co-operation. I came to Baker Street by the Underground and -hurried from there on foot, for the cabs go slowly through this -snow. That is why I was so out of breath, for I am a man who -takes very little exercise. I feel better now, and I will put the -facts before you as shortly and yet as clearly as I can. - -"It is, of course, well known to you that in a successful banking -business as much depends upon our being able to find remunerative -investments for our funds as upon our increasing our connection -and the number of our depositors. One of our most lucrative means -of laying out money is in the shape of loans, where the security -is unimpeachable. We have done a good deal in this direction -during the last few years, and there are many noble families to -whom we have advanced large sums upon the security of their -pictures, libraries, or plate. - -"Yesterday morning I was seated in my office at the bank when a -card was brought in to me by one of the clerks. I started when I -saw the name, for it was that of none other than--well, perhaps -even to you I had better say no more than that it was a name -which is a household word all over the earth--one of the highest, -noblest, most exalted names in England. I was overwhelmed by the -honour and attempted, when he entered, to say so, but he plunged -at once into business with the air of a man who wishes to hurry -quickly through a disagreeable task. - -"'Mr. Holder,' said he, 'I have been informed that you are in the -habit of advancing money.' - -"'The firm does so when the security is good.' I answered. - -"'It is absolutely essential to me,' said he, 'that I should have -50,000 pounds at once. I could, of course, borrow so trifling a -sum ten times over from my friends, but I much prefer to make it -a matter of business and to carry out that business myself. In my -position you can readily understand that it is unwise to place -one's self under obligations.' - -"'For how long, may I ask, do you want this sum?' I asked. - -"'Next Monday I have a large sum due to me, and I shall then most -certainly repay what you advance, with whatever interest you -think it right to charge. But it is very essential to me that the -money should be paid at once.' - -"'I should be happy to advance it without further parley from my -own private purse,' said I, 'were it not that the strain would be -rather more than it could bear. If, on the other hand, I am to do -it in the name of the firm, then in justice to my partner I must -insist that, even in your case, every businesslike precaution -should be taken.' - -"'I should much prefer to have it so,' said he, raising up a -square, black morocco case which he had laid beside his chair. -'You have doubtless heard of the Beryl Coronet?' - -"'One of the most precious public possessions of the empire,' -said I. - -"'Precisely.' He opened the case, and there, imbedded in soft, -flesh-coloured velvet, lay the magnificent piece of jewellery -which he had named. 'There are thirty-nine enormous beryls,' said -he, 'and the price of the gold chasing is incalculable. The -lowest estimate would put the worth of the coronet at double the -sum which I have asked. I am prepared to leave it with you as my -security.' - -"I took the precious case into my hands and looked in some -perplexity from it to my illustrious client. - -"'You doubt its value?' he asked. - -"'Not at all. I only doubt--' - -"'The propriety of my leaving it. You may set your mind at rest -about that. I should not dream of doing so were it not absolutely -certain that I should be able in four days to reclaim it. It is a -pure matter of form. Is the security sufficient?' - -"'Ample.' - -"'You understand, Mr. Holder, that I am giving you a strong proof -of the confidence which I have in you, founded upon all that I -have heard of you. I rely upon you not only to be discreet and to -refrain from all gossip upon the matter but, above all, to -preserve this coronet with every possible precaution because I -need not say that a great public scandal would be caused if any -harm were to befall it. Any injury to it would be almost as -serious as its complete loss, for there are no beryls in the -world to match these, and it would be impossible to replace them. -I leave it with you, however, with every confidence, and I shall -call for it in person on Monday morning.' - -"Seeing that my client was anxious to leave, I said no more but, -calling for my cashier, I ordered him to pay over fifty 1000 -pound notes. When I was alone once more, however, with the -precious case lying upon the table in front of me, I could not -but think with some misgivings of the immense responsibility -which it entailed upon me. There could be no doubt that, as it -was a national possession, a horrible scandal would ensue if any -misfortune should occur to it. I already regretted having ever -consented to take charge of it. However, it was too late to alter -the matter now, so I locked it up in my private safe and turned -once more to my work. - -"When evening came I felt that it would be an imprudence to leave -so precious a thing in the office behind me. Bankers' safes had -been forced before now, and why should not mine be? If so, how -terrible would be the position in which I should find myself! I -determined, therefore, that for the next few days I would always -carry the case backward and forward with me, so that it might -never be really out of my reach. With this intention, I called a -cab and drove out to my house at Streatham, carrying the jewel -with me. I did not breathe freely until I had taken it upstairs -and locked it in the bureau of my dressing-room. - -"And now a word as to my household, Mr. Holmes, for I wish you to -thoroughly understand the situation. My groom and my page sleep -out of the house, and may be set aside altogether. I have three -maid-servants who have been with me a number of years and whose -absolute reliability is quite above suspicion. Another, Lucy -Parr, the second waiting-maid, has only been in my service a few -months. She came with an excellent character, however, and has -always given me satisfaction. She is a very pretty girl and has -attracted admirers who have occasionally hung about the place. -That is the only drawback which we have found to her, but we -believe her to be a thoroughly good girl in every way. - -"So much for the servants. My family itself is so small that it -will not take me long to describe it. I am a widower and have an -only son, Arthur. He has been a disappointment to me, Mr. -Holmes--a grievous disappointment. I have no doubt that I am -myself to blame. People tell me that I have spoiled him. Very -likely I have. When my dear wife died I felt that he was all I -had to love. I could not bear to see the smile fade even for a -moment from his face. I have never denied him a wish. Perhaps it -would have been better for both of us had I been sterner, but I -meant it for the best. - -"It was naturally my intention that he should succeed me in my -business, but he was not of a business turn. He was wild, -wayward, and, to speak the truth, I could not trust him in the -handling of large sums of money. When he was young he became a -member of an aristocratic club, and there, having charming -manners, he was soon the intimate of a number of men with long -purses and expensive habits. He learned to play heavily at cards -and to squander money on the turf, until he had again and again -to come to me and implore me to give him an advance upon his -allowance, that he might settle his debts of honour. He tried -more than once to break away from the dangerous company which he -was keeping, but each time the influence of his friend, Sir -George Burnwell, was enough to draw him back again. - -"And, indeed, I could not wonder that such a man as Sir George -Burnwell should gain an influence over him, for he has frequently -brought him to my house, and I have found myself that I could -hardly resist the fascination of his manner. He is older than -Arthur, a man of the world to his finger-tips, one who had been -everywhere, seen everything, a brilliant talker, and a man of -great personal beauty. Yet when I think of him in cold blood, far -away from the glamour of his presence, I am convinced from his -cynical speech and the look which I have caught in his eyes that -he is one who should be deeply distrusted. So I think, and so, -too, thinks my little Mary, who has a woman's quick insight into -character. - -"And now there is only she to be described. She is my niece; but -when my brother died five years ago and left her alone in the -world I adopted her, and have looked upon her ever since as my -daughter. She is a sunbeam in my house--sweet, loving, beautiful, -a wonderful manager and housekeeper, yet as tender and quiet and -gentle as a woman could be. She is my right hand. I do not know -what I could do without her. In only one matter has she ever gone -against my wishes. Twice my boy has asked her to marry him, for -he loves her devotedly, but each time she has refused him. I -think that if anyone could have drawn him into the right path it -would have been she, and that his marriage might have changed his -whole life; but now, alas! it is too late--forever too late! - -"Now, Mr. Holmes, you know the people who live under my roof, and -I shall continue with my miserable story. - -"When we were taking coffee in the drawing-room that night after -dinner, I told Arthur and Mary my experience, and of the precious -treasure which we had under our roof, suppressing only the name -of my client. Lucy Parr, who had brought in the coffee, had, I am -sure, left the room; but I cannot swear that the door was closed. -Mary and Arthur were much interested and wished to see the famous -coronet, but I thought it better not to disturb it. - -"'Where have you put it?' asked Arthur. - -"'In my own bureau.' - -"'Well, I hope to goodness the house won't be burgled during the -night.' said he. - -"'It is locked up,' I answered. - -"'Oh, any old key will fit that bureau. When I was a youngster I -have opened it myself with the key of the box-room cupboard.' - -"He often had a wild way of talking, so that I thought little of -what he said. He followed me to my room, however, that night with -a very grave face. - -"'Look here, dad,' said he with his eyes cast down, 'can you let -me have 200 pounds?' - -"'No, I cannot!' I answered sharply. 'I have been far too -generous with you in money matters.' - -"'You have been very kind,' said he, 'but I must have this money, -or else I can never show my face inside the club again.' - -"'And a very good thing, too!' I cried. - -"'Yes, but you would not have me leave it a dishonoured man,' -said he. 'I could not bear the disgrace. I must raise the money -in some way, and if you will not let me have it, then I must try -other means.' - -"I was very angry, for this was the third demand during the -month. 'You shall not have a farthing from me,' I cried, on which -he bowed and left the room without another word. - -"When he was gone I unlocked my bureau, made sure that my -treasure was safe, and locked it again. Then I started to go -round the house to see that all was secure--a duty which I -usually leave to Mary but which I thought it well to perform -myself that night. As I came down the stairs I saw Mary herself -at the side window of the hall, which she closed and fastened as -I approached. - -"'Tell me, dad,' said she, looking, I thought, a little -disturbed, 'did you give Lucy, the maid, leave to go out -to-night?' - -"'Certainly not.' - -"'She came in just now by the back door. I have no doubt that she -has only been to the side gate to see someone, but I think that -it is hardly safe and should be stopped.' - -"'You must speak to her in the morning, or I will if you prefer -it. Are you sure that everything is fastened?' - -"'Quite sure, dad.' - -"'Then, good-night.' I kissed her and went up to my bedroom -again, where I was soon asleep. - -"I am endeavouring to tell you everything, Mr. Holmes, which may -have any bearing upon the case, but I beg that you will question -me upon any point which I do not make clear." - -"On the contrary, your statement is singularly lucid." - -"I come to a part of my story now in which I should wish to be -particularly so. I am not a very heavy sleeper, and the anxiety -in my mind tended, no doubt, to make me even less so than usual. -About two in the morning, then, I was awakened by some sound in -the house. It had ceased ere I was wide awake, but it had left an -impression behind it as though a window had gently closed -somewhere. I lay listening with all my ears. Suddenly, to my -horror, there was a distinct sound of footsteps moving softly in -the next room. I slipped out of bed, all palpitating with fear, -and peeped round the corner of my dressing-room door. - -"'Arthur!' I screamed, 'you villain! you thief! How dare you -touch that coronet?' - -"The gas was half up, as I had left it, and my unhappy boy, -dressed only in his shirt and trousers, was standing beside the -light, holding the coronet in his hands. He appeared to be -wrenching at it, or bending it with all his strength. At my cry -he dropped it from his grasp and turned as pale as death. I -snatched it up and examined it. One of the gold corners, with -three of the beryls in it, was missing. - -"'You blackguard!' I shouted, beside myself with rage. 'You have -destroyed it! You have dishonoured me forever! Where are the -jewels which you have stolen?' - -"'Stolen!' he cried. - -"'Yes, thief!' I roared, shaking him by the shoulder. - -"'There are none missing. There cannot be any missing,' said he. - -"'There are three missing. And you know where they are. Must I -call you a liar as well as a thief? Did I not see you trying to -tear off another piece?' - -"'You have called me names enough,' said he, 'I will not stand it -any longer. I shall not say another word about this business, -since you have chosen to insult me. I will leave your house in -the morning and make my own way in the world.' - -"'You shall leave it in the hands of the police!' I cried -half-mad with grief and rage. 'I shall have this matter probed to -the bottom.' - -"'You shall learn nothing from me,' said he with a passion such -as I should not have thought was in his nature. 'If you choose to -call the police, let the police find what they can.' - -"By this time the whole house was astir, for I had raised my -voice in my anger. Mary was the first to rush into my room, and, -at the sight of the coronet and of Arthur's face, she read the -whole story and, with a scream, fell down senseless on the -ground. I sent the house-maid for the police and put the -investigation into their hands at once. When the inspector and a -constable entered the house, Arthur, who had stood sullenly with -his arms folded, asked me whether it was my intention to charge -him with theft. I answered that it had ceased to be a private -matter, but had become a public one, since the ruined coronet was -national property. I was determined that the law should have its -way in everything. - -"'At least,' said he, 'you will not have me arrested at once. It -would be to your advantage as well as mine if I might leave the -house for five minutes.' - -"'That you may get away, or perhaps that you may conceal what you -have stolen,' said I. And then, realising the dreadful position -in which I was placed, I implored him to remember that not only -my honour but that of one who was far greater than I was at -stake; and that he threatened to raise a scandal which would -convulse the nation. He might avert it all if he would but tell -me what he had done with the three missing stones. - -"'You may as well face the matter,' said I; 'you have been caught -in the act, and no confession could make your guilt more heinous. -If you but make such reparation as is in your power, by telling -us where the beryls are, all shall be forgiven and forgotten.' - -"'Keep your forgiveness for those who ask for it,' he answered, -turning away from me with a sneer. I saw that he was too hardened -for any words of mine to influence him. There was but one way for -it. I called in the inspector and gave him into custody. A search -was made at once not only of his person but of his room and of -every portion of the house where he could possibly have concealed -the gems; but no trace of them could be found, nor would the -wretched boy open his mouth for all our persuasions and our -threats. This morning he was removed to a cell, and I, after -going through all the police formalities, have hurried round to -you to implore you to use your skill in unravelling the matter. -The police have openly confessed that they can at present make -nothing of it. You may go to any expense which you think -necessary. I have already offered a reward of 1000 pounds. My -God, what shall I do! I have lost my honour, my gems, and my son -in one night. Oh, what shall I do!" - -He put a hand on either side of his head and rocked himself to -and fro, droning to himself like a child whose grief has got -beyond words. - -Sherlock Holmes sat silent for some few minutes, with his brows -knitted and his eyes fixed upon the fire. - -"Do you receive much company?" he asked. - -"None save my partner with his family and an occasional friend of -Arthur's. Sir George Burnwell has been several times lately. No -one else, I think." - -"Do you go out much in society?" - -"Arthur does. Mary and I stay at home. We neither of us care for -it." - -"That is unusual in a young girl." - -"She is of a quiet nature. Besides, she is not so very young. She -is four-and-twenty." - -"This matter, from what you say, seems to have been a shock to -her also." - -"Terrible! She is even more affected than I." - -"You have neither of you any doubt as to your son's guilt?" - -"How can we have when I saw him with my own eyes with the coronet -in his hands." - -"I hardly consider that a conclusive proof. Was the remainder of -the coronet at all injured?" - -"Yes, it was twisted." - -"Do you not think, then, that he might have been trying to -straighten it?" - -"God bless you! You are doing what you can for him and for me. -But it is too heavy a task. What was he doing there at all? If -his purpose were innocent, why did he not say so?" - -"Precisely. And if it were guilty, why did he not invent a lie? -His silence appears to me to cut both ways. There are several -singular points about the case. What did the police think of the -noise which awoke you from your sleep?" - -"They considered that it might be caused by Arthur's closing his -bedroom door." - -"A likely story! As if a man bent on felony would slam his door -so as to wake a household. What did they say, then, of the -disappearance of these gems?" - -"They are still sounding the planking and probing the furniture -in the hope of finding them." - -"Have they thought of looking outside the house?" - -"Yes, they have shown extraordinary energy. The whole garden has -already been minutely examined." - -"Now, my dear sir," said Holmes, "is it not obvious to you now -that this matter really strikes very much deeper than either you -or the police were at first inclined to think? It appeared to you -to be a simple case; to me it seems exceedingly complex. Consider -what is involved by your theory. You suppose that your son came -down from his bed, went, at great risk, to your dressing-room, -opened your bureau, took out your coronet, broke off by main -force a small portion of it, went off to some other place, -concealed three gems out of the thirty-nine, with such skill that -nobody can find them, and then returned with the other thirty-six -into the room in which he exposed himself to the greatest danger -of being discovered. I ask you now, is such a theory tenable?" - -"But what other is there?" cried the banker with a gesture of -despair. "If his motives were innocent, why does he not explain -them?" - -"It is our task to find that out," replied Holmes; "so now, if -you please, Mr. Holder, we will set off for Streatham together, -and devote an hour to glancing a little more closely into -details." - -My friend insisted upon my accompanying them in their expedition, -which I was eager enough to do, for my curiosity and sympathy -were deeply stirred by the story to which we had listened. I -confess that the guilt of the banker's son appeared to me to be -as obvious as it did to his unhappy father, but still I had such -faith in Holmes' judgment that I felt that there must be some -grounds for hope as long as he was dissatisfied with the accepted -explanation. He hardly spoke a word the whole way out to the -southern suburb, but sat with his chin upon his breast and his -hat drawn over his eyes, sunk in the deepest thought. Our client -appeared to have taken fresh heart at the little glimpse of hope -which had been presented to him, and he even broke into a -desultory chat with me over his business affairs. A short railway -journey and a shorter walk brought us to Fairbank, the modest -residence of the great financier. - -Fairbank was a good-sized square house of white stone, standing -back a little from the road. A double carriage-sweep, with a -snow-clad lawn, stretched down in front to two large iron gates -which closed the entrance. On the right side was a small wooden -thicket, which led into a narrow path between two neat hedges -stretching from the road to the kitchen door, and forming the -tradesmen's entrance. On the left ran a lane which led to the -stables, and was not itself within the grounds at all, being a -public, though little used, thoroughfare. Holmes left us standing -at the door and walked slowly all round the house, across the -front, down the tradesmen's path, and so round by the garden -behind into the stable lane. So long was he that Mr. Holder and I -went into the dining-room and waited by the fire until he should -return. We were sitting there in silence when the door opened and -a young lady came in. She was rather above the middle height, -slim, with dark hair and eyes, which seemed the darker against -the absolute pallor of her skin. I do not think that I have ever -seen such deadly paleness in a woman's face. Her lips, too, were -bloodless, but her eyes were flushed with crying. As she swept -silently into the room she impressed me with a greater sense of -grief than the banker had done in the morning, and it was the -more striking in her as she was evidently a woman of strong -character, with immense capacity for self-restraint. Disregarding -my presence, she went straight to her uncle and passed her hand -over his head with a sweet womanly caress. - -"You have given orders that Arthur should be liberated, have you -not, dad?" she asked. - -"No, no, my girl, the matter must be probed to the bottom." - -"But I am so sure that he is innocent. You know what woman's -instincts are. I know that he has done no harm and that you will -be sorry for having acted so harshly." - -"Why is he silent, then, if he is innocent?" - -"Who knows? Perhaps because he was so angry that you should -suspect him." - -"How could I help suspecting him, when I actually saw him with -the coronet in his hand?" - -"Oh, but he had only picked it up to look at it. Oh, do, do take -my word for it that he is innocent. Let the matter drop and say -no more. It is so dreadful to think of our dear Arthur in -prison!" - -"I shall never let it drop until the gems are found--never, Mary! -Your affection for Arthur blinds you as to the awful consequences -to me. Far from hushing the thing up, I have brought a gentleman -down from London to inquire more deeply into it." - -"This gentleman?" she asked, facing round to me. - -"No, his friend. He wished us to leave him alone. He is round in -the stable lane now." - -"The stable lane?" She raised her dark eyebrows. "What can he -hope to find there? Ah! this, I suppose, is he. I trust, sir, -that you will succeed in proving, what I feel sure is the truth, -that my cousin Arthur is innocent of this crime." - -"I fully share your opinion, and I trust, with you, that we may -prove it," returned Holmes, going back to the mat to knock the -snow from his shoes. "I believe I have the honour of addressing -Miss Mary Holder. Might I ask you a question or two?" - -"Pray do, sir, if it may help to clear this horrible affair up." - -"You heard nothing yourself last night?" - -"Nothing, until my uncle here began to speak loudly. I heard -that, and I came down." - -"You shut up the windows and doors the night before. Did you -fasten all the windows?" - -"Yes." - -"Were they all fastened this morning?" - -"Yes." - -"You have a maid who has a sweetheart? I think that you remarked -to your uncle last night that she had been out to see him?" - -"Yes, and she was the girl who waited in the drawing-room, and -who may have heard uncle's remarks about the coronet." - -"I see. You infer that she may have gone out to tell her -sweetheart, and that the two may have planned the robbery." - -"But what is the good of all these vague theories," cried the -banker impatiently, "when I have told you that I saw Arthur with -the coronet in his hands?" - -"Wait a little, Mr. Holder. We must come back to that. About this -girl, Miss Holder. You saw her return by the kitchen door, I -presume?" - -"Yes; when I went to see if the door was fastened for the night I -met her slipping in. I saw the man, too, in the gloom." - -"Do you know him?" - -"Oh, yes! he is the green-grocer who brings our vegetables round. -His name is Francis Prosper." - -"He stood," said Holmes, "to the left of the door--that is to -say, farther up the path than is necessary to reach the door?" - -"Yes, he did." - -"And he is a man with a wooden leg?" - -Something like fear sprang up in the young lady's expressive -black eyes. "Why, you are like a magician," said she. "How do you -know that?" She smiled, but there was no answering smile in -Holmes' thin, eager face. - -"I should be very glad now to go upstairs," said he. "I shall -probably wish to go over the outside of the house again. Perhaps -I had better take a look at the lower windows before I go up." - -He walked swiftly round from one to the other, pausing only at -the large one which looked from the hall onto the stable lane. -This he opened and made a very careful examination of the sill -with his powerful magnifying lens. "Now we shall go upstairs," -said he at last. - -The banker's dressing-room was a plainly furnished little -chamber, with a grey carpet, a large bureau, and a long mirror. -Holmes went to the bureau first and looked hard at the lock. - -"Which key was used to open it?" he asked. - -"That which my son himself indicated--that of the cupboard of the -lumber-room." - -"Have you it here?" - -"That is it on the dressing-table." - -Sherlock Holmes took it up and opened the bureau. - -"It is a noiseless lock," said he. "It is no wonder that it did -not wake you. This case, I presume, contains the coronet. We must -have a look at it." He opened the case, and taking out the diadem -he laid it upon the table. It was a magnificent specimen of the -jeweller's art, and the thirty-six stones were the finest that I -have ever seen. At one side of the coronet was a cracked edge, -where a corner holding three gems had been torn away. - -"Now, Mr. Holder," said Holmes, "here is the corner which -corresponds to that which has been so unfortunately lost. Might I -beg that you will break it off." - -The banker recoiled in horror. "I should not dream of trying," -said he. - -"Then I will." Holmes suddenly bent his strength upon it, but -without result. "I feel it give a little," said he; "but, though -I am exceptionally strong in the fingers, it would take me all my -time to break it. An ordinary man could not do it. Now, what do -you think would happen if I did break it, Mr. Holder? There would -be a noise like a pistol shot. Do you tell me that all this -happened within a few yards of your bed and that you heard -nothing of it?" - -"I do not know what to think. It is all dark to me." - -"But perhaps it may grow lighter as we go. What do you think, -Miss Holder?" - -"I confess that I still share my uncle's perplexity." - -"Your son had no shoes or slippers on when you saw him?" - -"He had nothing on save only his trousers and shirt." - -"Thank you. We have certainly been favoured with extraordinary -luck during this inquiry, and it will be entirely our own fault -if we do not succeed in clearing the matter up. With your -permission, Mr. Holder, I shall now continue my investigations -outside." - -He went alone, at his own request, for he explained that any -unnecessary footmarks might make his task more difficult. For an -hour or more he was at work, returning at last with his feet -heavy with snow and his features as inscrutable as ever. - -"I think that I have seen now all that there is to see, Mr. -Holder," said he; "I can serve you best by returning to my -rooms." - -"But the gems, Mr. Holmes. Where are they?" - -"I cannot tell." - -The banker wrung his hands. "I shall never see them again!" he -cried. "And my son? You give me hopes?" - -"My opinion is in no way altered." - -"Then, for God's sake, what was this dark business which was -acted in my house last night?" - -"If you can call upon me at my Baker Street rooms to-morrow -morning between nine and ten I shall be happy to do what I can to -make it clearer. I understand that you give me carte blanche to -act for you, provided only that I get back the gems, and that you -place no limit on the sum I may draw." - -"I would give my fortune to have them back." - -"Very good. I shall look into the matter between this and then. -Good-bye; it is just possible that I may have to come over here -again before evening." - -It was obvious to me that my companion's mind was now made up -about the case, although what his conclusions were was more than -I could even dimly imagine. Several times during our homeward -journey I endeavoured to sound him upon the point, but he always -glided away to some other topic, until at last I gave it over in -despair. It was not yet three when we found ourselves in our -rooms once more. He hurried to his chamber and was down again in -a few minutes dressed as a common loafer. With his collar turned -up, his shiny, seedy coat, his red cravat, and his worn boots, he -was a perfect sample of the class. - -"I think that this should do," said he, glancing into the glass -above the fireplace. "I only wish that you could come with me, -Watson, but I fear that it won't do. I may be on the trail in -this matter, or I may be following a will-o'-the-wisp, but I -shall soon know which it is. I hope that I may be back in a few -hours." He cut a slice of beef from the joint upon the sideboard, -sandwiched it between two rounds of bread, and thrusting this -rude meal into his pocket he started off upon his expedition. - -I had just finished my tea when he returned, evidently in -excellent spirits, swinging an old elastic-sided boot in his -hand. He chucked it down into a corner and helped himself to a -cup of tea. - -"I only looked in as I passed," said he. "I am going right on." - -"Where to?" - -"Oh, to the other side of the West End. It may be some time -before I get back. Don't wait up for me in case I should be -late." - -"How are you getting on?" - -"Oh, so so. Nothing to complain of. I have been out to Streatham -since I saw you last, but I did not call at the house. It is a -very sweet little problem, and I would not have missed it for a -good deal. However, I must not sit gossiping here, but must get -these disreputable clothes off and return to my highly -respectable self." - -I could see by his manner that he had stronger reasons for -satisfaction than his words alone would imply. His eyes twinkled, -and there was even a touch of colour upon his sallow cheeks. He -hastened upstairs, and a few minutes later I heard the slam of -the hall door, which told me that he was off once more upon his -congenial hunt. - -I waited until midnight, but there was no sign of his return, so -I retired to my room. It was no uncommon thing for him to be away -for days and nights on end when he was hot upon a scent, so that -his lateness caused me no surprise. I do not know at what hour he -came in, but when I came down to breakfast in the morning there -he was with a cup of coffee in one hand and the paper in the -other, as fresh and trim as possible. - -"You will excuse my beginning without you, Watson," said he, "but -you remember that our client has rather an early appointment this -morning." - -"Why, it is after nine now," I answered. "I should not be -surprised if that were he. I thought I heard a ring." - -It was, indeed, our friend the financier. I was shocked by the -change which had come over him, for his face which was naturally -of a broad and massive mould, was now pinched and fallen in, -while his hair seemed to me at least a shade whiter. He entered -with a weariness and lethargy which was even more painful than -his violence of the morning before, and he dropped heavily into -the armchair which I pushed forward for him. - -"I do not know what I have done to be so severely tried," said -he. "Only two days ago I was a happy and prosperous man, without -a care in the world. Now I am left to a lonely and dishonoured -age. One sorrow comes close upon the heels of another. My niece, -Mary, has deserted me." - -"Deserted you?" - -"Yes. Her bed this morning had not been slept in, her room was -empty, and a note for me lay upon the hall table. I had said to -her last night, in sorrow and not in anger, that if she had -married my boy all might have been well with him. Perhaps it was -thoughtless of me to say so. It is to that remark that she refers -in this note: - -"'MY DEAREST UNCLE:--I feel that I have brought trouble upon you, -and that if I had acted differently this terrible misfortune -might never have occurred. I cannot, with this thought in my -mind, ever again be happy under your roof, and I feel that I must -leave you forever. Do not worry about my future, for that is -provided for; and, above all, do not search for me, for it will -be fruitless labour and an ill-service to me. In life or in -death, I am ever your loving,--MARY.' - -"What could she mean by that note, Mr. Holmes? Do you think it -points to suicide?" - -"No, no, nothing of the kind. It is perhaps the best possible -solution. I trust, Mr. Holder, that you are nearing the end of -your troubles." - -"Ha! You say so! You have heard something, Mr. Holmes; you have -learned something! Where are the gems?" - -"You would not think 1000 pounds apiece an excessive sum for -them?" - -"I would pay ten." - -"That would be unnecessary. Three thousand will cover the matter. -And there is a little reward, I fancy. Have you your check-book? -Here is a pen. Better make it out for 4000 pounds." - -With a dazed face the banker made out the required check. Holmes -walked over to his desk, took out a little triangular piece of -gold with three gems in it, and threw it down upon the table. - -With a shriek of joy our client clutched it up. - -"You have it!" he gasped. "I am saved! I am saved!" - -The reaction of joy was as passionate as his grief had been, and -he hugged his recovered gems to his bosom. - -"There is one other thing you owe, Mr. Holder," said Sherlock -Holmes rather sternly. - -"Owe!" He caught up a pen. "Name the sum, and I will pay it." - -"No, the debt is not to me. You owe a very humble apology to that -noble lad, your son, who has carried himself in this matter as I -should be proud to see my own son do, should I ever chance to -have one." - -"Then it was not Arthur who took them?" - -"I told you yesterday, and I repeat to-day, that it was not." - -"You are sure of it! Then let us hurry to him at once to let him -know that the truth is known." - -"He knows it already. When I had cleared it all up I had an -interview with him, and finding that he would not tell me the -story, I told it to him, on which he had to confess that I was -right and to add the very few details which were not yet quite -clear to me. Your news of this morning, however, may open his -lips." - -"For heaven's sake, tell me, then, what is this extraordinary -mystery!" - -"I will do so, and I will show you the steps by which I reached -it. And let me say to you, first, that which it is hardest for me -to say and for you to hear: there has been an understanding -between Sir George Burnwell and your niece Mary. They have now -fled together." - -"My Mary? Impossible!" - -"It is unfortunately more than possible; it is certain. Neither -you nor your son knew the true character of this man when you -admitted him into your family circle. He is one of the most -dangerous men in England--a ruined gambler, an absolutely -desperate villain, a man without heart or conscience. Your niece -knew nothing of such men. When he breathed his vows to her, as he -had done to a hundred before her, she flattered herself that she -alone had touched his heart. The devil knows best what he said, -but at least she became his tool and was in the habit of seeing -him nearly every evening." - -"I cannot, and I will not, believe it!" cried the banker with an -ashen face. - -"I will tell you, then, what occurred in your house last night. -Your niece, when you had, as she thought, gone to your room, -slipped down and talked to her lover through the window which -leads into the stable lane. His footmarks had pressed right -through the snow, so long had he stood there. She told him of the -coronet. His wicked lust for gold kindled at the news, and he -bent her to his will. I have no doubt that she loved you, but -there are women in whom the love of a lover extinguishes all -other loves, and I think that she must have been one. She had -hardly listened to his instructions when she saw you coming -downstairs, on which she closed the window rapidly and told you -about one of the servants' escapade with her wooden-legged lover, -which was all perfectly true. - -"Your boy, Arthur, went to bed after his interview with you but -he slept badly on account of his uneasiness about his club debts. -In the middle of the night he heard a soft tread pass his door, -so he rose and, looking out, was surprised to see his cousin -walking very stealthily along the passage until she disappeared -into your dressing-room. Petrified with astonishment, the lad -slipped on some clothes and waited there in the dark to see what -would come of this strange affair. Presently she emerged from the -room again, and in the light of the passage-lamp your son saw -that she carried the precious coronet in her hands. She passed -down the stairs, and he, thrilling with horror, ran along and -slipped behind the curtain near your door, whence he could see -what passed in the hall beneath. He saw her stealthily open the -window, hand out the coronet to someone in the gloom, and then -closing it once more hurry back to her room, passing quite close -to where he stood hid behind the curtain. - -"As long as she was on the scene he could not take any action -without a horrible exposure of the woman whom he loved. But the -instant that she was gone he realised how crushing a misfortune -this would be for you, and how all-important it was to set it -right. He rushed down, just as he was, in his bare feet, opened -the window, sprang out into the snow, and ran down the lane, -where he could see a dark figure in the moonlight. Sir George -Burnwell tried to get away, but Arthur caught him, and there was -a struggle between them, your lad tugging at one side of the -coronet, and his opponent at the other. In the scuffle, your son -struck Sir George and cut him over the eye. Then something -suddenly snapped, and your son, finding that he had the coronet -in his hands, rushed back, closed the window, ascended to your -room, and had just observed that the coronet had been twisted in -the struggle and was endeavouring to straighten it when you -appeared upon the scene." - -"Is it possible?" gasped the banker. - -"You then roused his anger by calling him names at a moment when -he felt that he had deserved your warmest thanks. He could not -explain the true state of affairs without betraying one who -certainly deserved little enough consideration at his hands. He -took the more chivalrous view, however, and preserved her -secret." - -"And that was why she shrieked and fainted when she saw the -coronet," cried Mr. Holder. "Oh, my God! what a blind fool I have -been! And his asking to be allowed to go out for five minutes! -The dear fellow wanted to see if the missing piece were at the -scene of the struggle. How cruelly I have misjudged him!" - -"When I arrived at the house," continued Holmes, "I at once went -very carefully round it to observe if there were any traces in -the snow which might help me. I knew that none had fallen since -the evening before, and also that there had been a strong frost -to preserve impressions. I passed along the tradesmen's path, but -found it all trampled down and indistinguishable. Just beyond it, -however, at the far side of the kitchen door, a woman had stood -and talked with a man, whose round impressions on one side showed -that he had a wooden leg. I could even tell that they had been -disturbed, for the woman had run back swiftly to the door, as was -shown by the deep toe and light heel marks, while Wooden-leg had -waited a little, and then had gone away. I thought at the time -that this might be the maid and her sweetheart, of whom you had -already spoken to me, and inquiry showed it was so. I passed -round the garden without seeing anything more than random tracks, -which I took to be the police; but when I got into the stable -lane a very long and complex story was written in the snow in -front of me. - -"There was a double line of tracks of a booted man, and a second -double line which I saw with delight belonged to a man with naked -feet. I was at once convinced from what you had told me that the -latter was your son. The first had walked both ways, but the -other had run swiftly, and as his tread was marked in places over -the depression of the boot, it was obvious that he had passed -after the other. I followed them up and found they led to the -hall window, where Boots had worn all the snow away while -waiting. Then I walked to the other end, which was a hundred -yards or more down the lane. I saw where Boots had faced round, -where the snow was cut up as though there had been a struggle, -and, finally, where a few drops of blood had fallen, to show me -that I was not mistaken. Boots had then run down the lane, and -another little smudge of blood showed that it was he who had been -hurt. When he came to the highroad at the other end, I found that -the pavement had been cleared, so there was an end to that clue. - -"On entering the house, however, I examined, as you remember, the -sill and framework of the hall window with my lens, and I could -at once see that someone had passed out. I could distinguish the -outline of an instep where the wet foot had been placed in coming -in. I was then beginning to be able to form an opinion as to what -had occurred. A man had waited outside the window; someone had -brought the gems; the deed had been overseen by your son; he had -pursued the thief; had struggled with him; they had each tugged -at the coronet, their united strength causing injuries which -neither alone could have effected. He had returned with the -prize, but had left a fragment in the grasp of his opponent. So -far I was clear. The question now was, who was the man and who -was it brought him the coronet? - -"It is an old maxim of mine that when you have excluded the -impossible, whatever remains, however improbable, must be the -truth. Now, I knew that it was not you who had brought it down, -so there only remained your niece and the maids. But if it were -the maids, why should your son allow himself to be accused in -their place? There could be no possible reason. As he loved his -cousin, however, there was an excellent explanation why he should -retain her secret--the more so as the secret was a disgraceful -one. When I remembered that you had seen her at that window, and -how she had fainted on seeing the coronet again, my conjecture -became a certainty. - -"And who could it be who was her confederate? A lover evidently, -for who else could outweigh the love and gratitude which she must -feel to you? I knew that you went out little, and that your -circle of friends was a very limited one. But among them was Sir -George Burnwell. I had heard of him before as being a man of evil -reputation among women. It must have been he who wore those boots -and retained the missing gems. Even though he knew that Arthur -had discovered him, he might still flatter himself that he was -safe, for the lad could not say a word without compromising his -own family. - -"Well, your own good sense will suggest what measures I took -next. I went in the shape of a loafer to Sir George's house, -managed to pick up an acquaintance with his valet, learned that -his master had cut his head the night before, and, finally, at -the expense of six shillings, made all sure by buying a pair of -his cast-off shoes. With these I journeyed down to Streatham and -saw that they exactly fitted the tracks." - -"I saw an ill-dressed vagabond in the lane yesterday evening," -said Mr. Holder. - -"Precisely. It was I. I found that I had my man, so I came home -and changed my clothes. It was a delicate part which I had to -play then, for I saw that a prosecution must be avoided to avert -scandal, and I knew that so astute a villain would see that our -hands were tied in the matter. I went and saw him. At first, of -course, he denied everything. But when I gave him every -particular that had occurred, he tried to bluster and took down a -life-preserver from the wall. I knew my man, however, and I -clapped a pistol to his head before he could strike. Then he -became a little more reasonable. I told him that we would give -him a price for the stones he held--1000 pounds apiece. That -brought out the first signs of grief that he had shown. 'Why, -dash it all!' said he, 'I've let them go at six hundred for the -three!' I soon managed to get the address of the receiver who had -them, on promising him that there would be no prosecution. Off I -set to him, and after much chaffering I got our stones at 1000 -pounds apiece. Then I looked in upon your son, told him that all -was right, and eventually got to my bed about two o'clock, after -what I may call a really hard day's work." - -"A day which has saved England from a great public scandal," said -the banker, rising. "Sir, I cannot find words to thank you, but -you shall not find me ungrateful for what you have done. Your -skill has indeed exceeded all that I have heard of it. And now I -must fly to my dear boy to apologise to him for the wrong which I -have done him. As to what you tell me of poor Mary, it goes to my -very heart. Not even your skill can inform me where she is now." - -"I think that we may safely say," returned Holmes, "that she is -wherever Sir George Burnwell is. It is equally certain, too, that -whatever her sins are, they will soon receive a more than -sufficient punishment." - - - -XII. THE ADVENTURE OF THE COPPER BEECHES - -"To the man who loves art for its own sake," remarked Sherlock -Holmes, tossing aside the advertisement sheet of the Daily -Telegraph, "it is frequently in its least important and lowliest -manifestations that the keenest pleasure is to be derived. It is -pleasant to me to observe, Watson, that you have so far grasped -this truth that in these little records of our cases which you -have been good enough to draw up, and, I am bound to say, -occasionally to embellish, you have given prominence not so much -to the many causes clbres and sensational trials in which I -have figured but rather to those incidents which may have been -trivial in themselves, but which have given room for those -faculties of deduction and of logical synthesis which I have made -my special province." - -"And yet," said I, smiling, "I cannot quite hold myself absolved -from the charge of sensationalism which has been urged against my -records." - -"You have erred, perhaps," he observed, taking up a glowing -cinder with the tongs and lighting with it the long cherry-wood -pipe which was wont to replace his clay when he was in a -disputatious rather than a meditative mood--"you have erred -perhaps in attempting to put colour and life into each of your -statements instead of confining yourself to the task of placing -upon record that severe reasoning from cause to effect which is -really the only notable feature about the thing." - -"It seems to me that I have done you full justice in the matter," -I remarked with some coldness, for I was repelled by the egotism -which I had more than once observed to be a strong factor in my -friend's singular character. - -"No, it is not selfishness or conceit," said he, answering, as -was his wont, my thoughts rather than my words. "If I claim full -justice for my art, it is because it is an impersonal thing--a -thing beyond myself. Crime is common. Logic is rare. Therefore it -is upon the logic rather than upon the crime that you should -dwell. You have degraded what should have been a course of -lectures into a series of tales." - -It was a cold morning of the early spring, and we sat after -breakfast on either side of a cheery fire in the old room at -Baker Street. A thick fog rolled down between the lines of -dun-coloured houses, and the opposing windows loomed like dark, -shapeless blurs through the heavy yellow wreaths. Our gas was lit -and shone on the white cloth and glimmer of china and metal, for -the table had not been cleared yet. Sherlock Holmes had been -silent all the morning, dipping continuously into the -advertisement columns of a succession of papers until at last, -having apparently given up his search, he had emerged in no very -sweet temper to lecture me upon my literary shortcomings. - -"At the same time," he remarked after a pause, during which he -had sat puffing at his long pipe and gazing down into the fire, -"you can hardly be open to a charge of sensationalism, for out of -these cases which you have been so kind as to interest yourself -in, a fair proportion do not treat of crime, in its legal sense, -at all. The small matter in which I endeavoured to help the King -of Bohemia, the singular experience of Miss Mary Sutherland, the -problem connected with the man with the twisted lip, and the -incident of the noble bachelor, were all matters which are -outside the pale of the law. But in avoiding the sensational, I -fear that you may have bordered on the trivial." - -"The end may have been so," I answered, "but the methods I hold -to have been novel and of interest." - -"Pshaw, my dear fellow, what do the public, the great unobservant -public, who could hardly tell a weaver by his tooth or a -compositor by his left thumb, care about the finer shades of -analysis and deduction! But, indeed, if you are trivial, I cannot -blame you, for the days of the great cases are past. Man, or at -least criminal man, has lost all enterprise and originality. As -to my own little practice, it seems to be degenerating into an -agency for recovering lost lead pencils and giving advice to -young ladies from boarding-schools. I think that I have touched -bottom at last, however. This note I had this morning marks my -zero-point, I fancy. Read it!" He tossed a crumpled letter across -to me. - -It was dated from Montague Place upon the preceding evening, and -ran thus: - -"DEAR MR. HOLMES:--I am very anxious to consult you as to whether -I should or should not accept a situation which has been offered -to me as governess. I shall call at half-past ten to-morrow if I -do not inconvenience you. Yours faithfully, - "VIOLET HUNTER." - -"Do you know the young lady?" I asked. - -"Not I." - -"It is half-past ten now." - -"Yes, and I have no doubt that is her ring." - -"It may turn out to be of more interest than you think. You -remember that the affair of the blue carbuncle, which appeared to -be a mere whim at first, developed into a serious investigation. -It may be so in this case, also." - -"Well, let us hope so. But our doubts will very soon be solved, -for here, unless I am much mistaken, is the person in question." - -As he spoke the door opened and a young lady entered the room. -She was plainly but neatly dressed, with a bright, quick face, -freckled like a plover's egg, and with the brisk manner of a -woman who has had her own way to make in the world. - -"You will excuse my troubling you, I am sure," said she, as my -companion rose to greet her, "but I have had a very strange -experience, and as I have no parents or relations of any sort -from whom I could ask advice, I thought that perhaps you would be -kind enough to tell me what I should do." - -"Pray take a seat, Miss Hunter. I shall be happy to do anything -that I can to serve you." - -I could see that Holmes was favourably impressed by the manner -and speech of his new client. He looked her over in his searching -fashion, and then composed himself, with his lids drooping and -his finger-tips together, to listen to her story. - -"I have been a governess for five years," said she, "in the -family of Colonel Spence Munro, but two months ago the colonel -received an appointment at Halifax, in Nova Scotia, and took his -children over to America with him, so that I found myself without -a situation. I advertised, and I answered advertisements, but -without success. At last the little money which I had saved began -to run short, and I was at my wit's end as to what I should do. - -"There is a well-known agency for governesses in the West End -called Westaway's, and there I used to call about once a week in -order to see whether anything had turned up which might suit me. -Westaway was the name of the founder of the business, but it is -really managed by Miss Stoper. She sits in her own little office, -and the ladies who are seeking employment wait in an anteroom, -and are then shown in one by one, when she consults her ledgers -and sees whether she has anything which would suit them. - -"Well, when I called last week I was shown into the little office -as usual, but I found that Miss Stoper was not alone. A -prodigiously stout man with a very smiling face and a great heavy -chin which rolled down in fold upon fold over his throat sat at -her elbow with a pair of glasses on his nose, looking very -earnestly at the ladies who entered. As I came in he gave quite a -jump in his chair and turned quickly to Miss Stoper. - -"'That will do,' said he; 'I could not ask for anything better. -Capital! capital!' He seemed quite enthusiastic and rubbed his -hands together in the most genial fashion. He was such a -comfortable-looking man that it was quite a pleasure to look at -him. - -"'You are looking for a situation, miss?' he asked. - -"'Yes, sir.' - -"'As governess?' - -"'Yes, sir.' - -"'And what salary do you ask?' - -"'I had 4 pounds a month in my last place with Colonel Spence -Munro.' - -"'Oh, tut, tut! sweating--rank sweating!' he cried, throwing his -fat hands out into the air like a man who is in a boiling -passion. 'How could anyone offer so pitiful a sum to a lady with -such attractions and accomplishments?' - -"'My accomplishments, sir, may be less than you imagine,' said I. -'A little French, a little German, music, and drawing--' - -"'Tut, tut!' he cried. 'This is all quite beside the question. -The point is, have you or have you not the bearing and deportment -of a lady? There it is in a nutshell. If you have not, you are -not fitted for the rearing of a child who may some day play a -considerable part in the history of the country. But if you have -why, then, how could any gentleman ask you to condescend to -accept anything under the three figures? Your salary with me, -madam, would commence at 100 pounds a year.' - -"You may imagine, Mr. Holmes, that to me, destitute as I was, -such an offer seemed almost too good to be true. The gentleman, -however, seeing perhaps the look of incredulity upon my face, -opened a pocket-book and took out a note. - -"'It is also my custom,' said he, smiling in the most pleasant -fashion until his eyes were just two little shining slits amid -the white creases of his face, 'to advance to my young ladies -half their salary beforehand, so that they may meet any little -expenses of their journey and their wardrobe.' - -"It seemed to me that I had never met so fascinating and so -thoughtful a man. As I was already in debt to my tradesmen, the -advance was a great convenience, and yet there was something -unnatural about the whole transaction which made me wish to know -a little more before I quite committed myself. - -"'May I ask where you live, sir?' said I. - -"'Hampshire. Charming rural place. The Copper Beeches, five miles -on the far side of Winchester. It is the most lovely country, my -dear young lady, and the dearest old country-house.' - -"'And my duties, sir? I should be glad to know what they would -be.' - -"'One child--one dear little romper just six years old. Oh, if -you could see him killing cockroaches with a slipper! Smack! -smack! smack! Three gone before you could wink!' He leaned back -in his chair and laughed his eyes into his head again. - -"I was a little startled at the nature of the child's amusement, -but the father's laughter made me think that perhaps he was -joking. - -"'My sole duties, then,' I asked, 'are to take charge of a single -child?' - -"'No, no, not the sole, not the sole, my dear young lady,' he -cried. 'Your duty would be, as I am sure your good sense would -suggest, to obey any little commands my wife might give, provided -always that they were such commands as a lady might with -propriety obey. You see no difficulty, heh?' - -"'I should be happy to make myself useful.' - -"'Quite so. In dress now, for example. We are faddy people, you -know--faddy but kind-hearted. If you were asked to wear any dress -which we might give you, you would not object to our little whim. -Heh?' - -"'No,' said I, considerably astonished at his words. - -"'Or to sit here, or sit there, that would not be offensive to -you?' - -"'Oh, no.' - -"'Or to cut your hair quite short before you come to us?' - -"I could hardly believe my ears. As you may observe, Mr. Holmes, -my hair is somewhat luxuriant, and of a rather peculiar tint of -chestnut. It has been considered artistic. I could not dream of -sacrificing it in this offhand fashion. - -"'I am afraid that that is quite impossible,' said I. He had been -watching me eagerly out of his small eyes, and I could see a -shadow pass over his face as I spoke. - -"'I am afraid that it is quite essential,' said he. 'It is a -little fancy of my wife's, and ladies' fancies, you know, madam, -ladies' fancies must be consulted. And so you won't cut your -hair?' - -"'No, sir, I really could not,' I answered firmly. - -"'Ah, very well; then that quite settles the matter. It is a -pity, because in other respects you would really have done very -nicely. In that case, Miss Stoper, I had best inspect a few more -of your young ladies.' - -"The manageress had sat all this while busy with her papers -without a word to either of us, but she glanced at me now with so -much annoyance upon her face that I could not help suspecting -that she had lost a handsome commission through my refusal. - -"'Do you desire your name to be kept upon the books?' she asked. - -"'If you please, Miss Stoper.' - -"'Well, really, it seems rather useless, since you refuse the -most excellent offers in this fashion,' said she sharply. 'You -can hardly expect us to exert ourselves to find another such -opening for you. Good-day to you, Miss Hunter.' She struck a gong -upon the table, and I was shown out by the page. - -"Well, Mr. Holmes, when I got back to my lodgings and found -little enough in the cupboard, and two or three bills upon the -table, I began to ask myself whether I had not done a very -foolish thing. After all, if these people had strange fads and -expected obedience on the most extraordinary matters, they were -at least ready to pay for their eccentricity. Very few -governesses in England are getting 100 pounds a year. Besides, -what use was my hair to me? Many people are improved by wearing -it short and perhaps I should be among the number. Next day I was -inclined to think that I had made a mistake, and by the day after -I was sure of it. I had almost overcome my pride so far as to go -back to the agency and inquire whether the place was still open -when I received this letter from the gentleman himself. I have it -here and I will read it to you: - - "'The Copper Beeches, near Winchester. -"'DEAR MISS HUNTER:--Miss Stoper has very kindly given me your -address, and I write from here to ask you whether you have -reconsidered your decision. My wife is very anxious that you -should come, for she has been much attracted by my description of -you. We are willing to give 30 pounds a quarter, or 120 pounds a -year, so as to recompense you for any little inconvenience which -our fads may cause you. They are not very exacting, after all. My -wife is fond of a particular shade of electric blue and would -like you to wear such a dress indoors in the morning. You need -not, however, go to the expense of purchasing one, as we have one -belonging to my dear daughter Alice (now in Philadelphia), which -would, I should think, fit you very well. Then, as to sitting -here or there, or amusing yourself in any manner indicated, that -need cause you no inconvenience. As regards your hair, it is no -doubt a pity, especially as I could not help remarking its beauty -during our short interview, but I am afraid that I must remain -firm upon this point, and I only hope that the increased salary -may recompense you for the loss. Your duties, as far as the child -is concerned, are very light. Now do try to come, and I shall -meet you with the dog-cart at Winchester. Let me know your train. -Yours faithfully, JEPHRO RUCASTLE.' - -"That is the letter which I have just received, Mr. Holmes, and -my mind is made up that I will accept it. I thought, however, -that before taking the final step I should like to submit the -whole matter to your consideration." - -"Well, Miss Hunter, if your mind is made up, that settles the -question," said Holmes, smiling. - -"But you would not advise me to refuse?" - -"I confess that it is not the situation which I should like to -see a sister of mine apply for." - -"What is the meaning of it all, Mr. Holmes?" - -"Ah, I have no data. I cannot tell. Perhaps you have yourself -formed some opinion?" - -"Well, there seems to me to be only one possible solution. Mr. -Rucastle seemed to be a very kind, good-natured man. Is it not -possible that his wife is a lunatic, that he desires to keep the -matter quiet for fear she should be taken to an asylum, and that -he humours her fancies in every way in order to prevent an -outbreak?" - -"That is a possible solution--in fact, as matters stand, it is -the most probable one. But in any case it does not seem to be a -nice household for a young lady." - -"But the money, Mr. Holmes, the money!" - -"Well, yes, of course the pay is good--too good. That is what -makes me uneasy. Why should they give you 120 pounds a year, when -they could have their pick for 40 pounds? There must be some -strong reason behind." - -"I thought that if I told you the circumstances you would -understand afterwards if I wanted your help. I should feel so -much stronger if I felt that you were at the back of me." - -"Oh, you may carry that feeling away with you. I assure you that -your little problem promises to be the most interesting which has -come my way for some months. There is something distinctly novel -about some of the features. If you should find yourself in doubt -or in danger--" - -"Danger! What danger do you foresee?" - -Holmes shook his head gravely. "It would cease to be a danger if -we could define it," said he. "But at any time, day or night, a -telegram would bring me down to your help." - -"That is enough." She rose briskly from her chair with the -anxiety all swept from her face. "I shall go down to Hampshire -quite easy in my mind now. I shall write to Mr. Rucastle at once, -sacrifice my poor hair to-night, and start for Winchester -to-morrow." With a few grateful words to Holmes she bade us both -good-night and bustled off upon her way. - -"At least," said I as we heard her quick, firm steps descending -the stairs, "she seems to be a young lady who is very well able -to take care of herself." - -"And she would need to be," said Holmes gravely. "I am much -mistaken if we do not hear from her before many days are past." - -It was not very long before my friend's prediction was fulfilled. -A fortnight went by, during which I frequently found my thoughts -turning in her direction and wondering what strange side-alley of -human experience this lonely woman had strayed into. The unusual -salary, the curious conditions, the light duties, all pointed to -something abnormal, though whether a fad or a plot, or whether -the man were a philanthropist or a villain, it was quite beyond -my powers to determine. As to Holmes, I observed that he sat -frequently for half an hour on end, with knitted brows and an -abstracted air, but he swept the matter away with a wave of his -hand when I mentioned it. "Data! data! data!" he cried -impatiently. "I can't make bricks without clay." And yet he would -always wind up by muttering that no sister of his should ever -have accepted such a situation. - -The telegram which we eventually received came late one night -just as I was thinking of turning in and Holmes was settling down -to one of those all-night chemical researches which he frequently -indulged in, when I would leave him stooping over a retort and a -test-tube at night and find him in the same position when I came -down to breakfast in the morning. He opened the yellow envelope, -and then, glancing at the message, threw it across to me. - -"Just look up the trains in Bradshaw," said he, and turned back -to his chemical studies. - -The summons was a brief and urgent one. - -"Please be at the Black Swan Hotel at Winchester at midday -to-morrow," it said. "Do come! I am at my wit's end. HUNTER." - -"Will you come with me?" asked Holmes, glancing up. - -"I should wish to." - -"Just look it up, then." - -"There is a train at half-past nine," said I, glancing over my -Bradshaw. "It is due at Winchester at 11:30." - -"That will do very nicely. Then perhaps I had better postpone my -analysis of the acetones, as we may need to be at our best in the -morning." - -By eleven o'clock the next day we were well upon our way to the -old English capital. Holmes had been buried in the morning papers -all the way down, but after we had passed the Hampshire border he -threw them down and began to admire the scenery. It was an ideal -spring day, a light blue sky, flecked with little fleecy white -clouds drifting across from west to east. The sun was shining -very brightly, and yet there was an exhilarating nip in the air, -which set an edge to a man's energy. All over the countryside, -away to the rolling hills around Aldershot, the little red and -grey roofs of the farm-steadings peeped out from amid the light -green of the new foliage. - -"Are they not fresh and beautiful?" I cried with all the -enthusiasm of a man fresh from the fogs of Baker Street. - -But Holmes shook his head gravely. - -"Do you know, Watson," said he, "that it is one of the curses of -a mind with a turn like mine that I must look at everything with -reference to my own special subject. You look at these scattered -houses, and you are impressed by their beauty. I look at them, -and the only thought which comes to me is a feeling of their -isolation and of the impunity with which crime may be committed -there." - -"Good heavens!" I cried. "Who would associate crime with these -dear old homesteads?" - -"They always fill me with a certain horror. It is my belief, -Watson, founded upon my experience, that the lowest and vilest -alleys in London do not present a more dreadful record of sin -than does the smiling and beautiful countryside." - -"You horrify me!" - -"But the reason is very obvious. The pressure of public opinion -can do in the town what the law cannot accomplish. There is no -lane so vile that the scream of a tortured child, or the thud of -a drunkard's blow, does not beget sympathy and indignation among -the neighbours, and then the whole machinery of justice is ever -so close that a word of complaint can set it going, and there is -but a step between the crime and the dock. But look at these -lonely houses, each in its own fields, filled for the most part -with poor ignorant folk who know little of the law. Think of the -deeds of hellish cruelty, the hidden wickedness which may go on, -year in, year out, in such places, and none the wiser. Had this -lady who appeals to us for help gone to live in Winchester, I -should never have had a fear for her. It is the five miles of -country which makes the danger. Still, it is clear that she is -not personally threatened." - -"No. If she can come to Winchester to meet us she can get away." - -"Quite so. She has her freedom." - -"What CAN be the matter, then? Can you suggest no explanation?" - -"I have devised seven separate explanations, each of which would -cover the facts as far as we know them. But which of these is -correct can only be determined by the fresh information which we -shall no doubt find waiting for us. Well, there is the tower of -the cathedral, and we shall soon learn all that Miss Hunter has -to tell." - -The Black Swan is an inn of repute in the High Street, at no -distance from the station, and there we found the young lady -waiting for us. She had engaged a sitting-room, and our lunch -awaited us upon the table. - -"I am so delighted that you have come," she said earnestly. "It -is so very kind of you both; but indeed I do not know what I -should do. Your advice will be altogether invaluable to me." - -"Pray tell us what has happened to you." - -"I will do so, and I must be quick, for I have promised Mr. -Rucastle to be back before three. I got his leave to come into -town this morning, though he little knew for what purpose." - -"Let us have everything in its due order." Holmes thrust his long -thin legs out towards the fire and composed himself to listen. - -"In the first place, I may say that I have met, on the whole, -with no actual ill-treatment from Mr. and Mrs. Rucastle. It is -only fair to them to say that. But I cannot understand them, and -I am not easy in my mind about them." - -"What can you not understand?" - -"Their reasons for their conduct. But you shall have it all just -as it occurred. When I came down, Mr. Rucastle met me here and -drove me in his dog-cart to the Copper Beeches. It is, as he -said, beautifully situated, but it is not beautiful in itself, -for it is a large square block of a house, whitewashed, but all -stained and streaked with damp and bad weather. There are grounds -round it, woods on three sides, and on the fourth a field which -slopes down to the Southampton highroad, which curves past about -a hundred yards from the front door. This ground in front belongs -to the house, but the woods all round are part of Lord -Southerton's preserves. A clump of copper beeches immediately in -front of the hall door has given its name to the place. - -"I was driven over by my employer, who was as amiable as ever, -and was introduced by him that evening to his wife and the child. -There was no truth, Mr. Holmes, in the conjecture which seemed to -us to be probable in your rooms at Baker Street. Mrs. Rucastle is -not mad. I found her to be a silent, pale-faced woman, much -younger than her husband, not more than thirty, I should think, -while he can hardly be less than forty-five. From their -conversation I have gathered that they have been married about -seven years, that he was a widower, and that his only child by -the first wife was the daughter who has gone to Philadelphia. Mr. -Rucastle told me in private that the reason why she had left them -was that she had an unreasoning aversion to her stepmother. As -the daughter could not have been less than twenty, I can quite -imagine that her position must have been uncomfortable with her -father's young wife. - -"Mrs. Rucastle seemed to me to be colourless in mind as well as -in feature. She impressed me neither favourably nor the reverse. -She was a nonentity. It was easy to see that she was passionately -devoted both to her husband and to her little son. Her light grey -eyes wandered continually from one to the other, noting every -little want and forestalling it if possible. He was kind to her -also in his bluff, boisterous fashion, and on the whole they -seemed to be a happy couple. And yet she had some secret sorrow, -this woman. She would often be lost in deep thought, with the -saddest look upon her face. More than once I have surprised her -in tears. I have thought sometimes that it was the disposition of -her child which weighed upon her mind, for I have never met so -utterly spoiled and so ill-natured a little creature. He is small -for his age, with a head which is quite disproportionately large. -His whole life appears to be spent in an alternation between -savage fits of passion and gloomy intervals of sulking. Giving -pain to any creature weaker than himself seems to be his one idea -of amusement, and he shows quite remarkable talent in planning -the capture of mice, little birds, and insects. But I would -rather not talk about the creature, Mr. Holmes, and, indeed, he -has little to do with my story." - -"I am glad of all details," remarked my friend, "whether they -seem to you to be relevant or not." - -"I shall try not to miss anything of importance. The one -unpleasant thing about the house, which struck me at once, was -the appearance and conduct of the servants. There are only two, a -man and his wife. Toller, for that is his name, is a rough, -uncouth man, with grizzled hair and whiskers, and a perpetual -smell of drink. Twice since I have been with them he has been -quite drunk, and yet Mr. Rucastle seemed to take no notice of it. -His wife is a very tall and strong woman with a sour face, as -silent as Mrs. Rucastle and much less amiable. They are a most -unpleasant couple, but fortunately I spend most of my time in the -nursery and my own room, which are next to each other in one -corner of the building. - -"For two days after my arrival at the Copper Beeches my life was -very quiet; on the third, Mrs. Rucastle came down just after -breakfast and whispered something to her husband. - -"'Oh, yes,' said he, turning to me, 'we are very much obliged to -you, Miss Hunter, for falling in with our whims so far as to cut -your hair. I assure you that it has not detracted in the tiniest -iota from your appearance. We shall now see how the electric-blue -dress will become you. You will find it laid out upon the bed in -your room, and if you would be so good as to put it on we should -both be extremely obliged.' - -"The dress which I found waiting for me was of a peculiar shade -of blue. It was of excellent material, a sort of beige, but it -bore unmistakable signs of having been worn before. It could not -have been a better fit if I had been measured for it. Both Mr. -and Mrs. Rucastle expressed a delight at the look of it, which -seemed quite exaggerated in its vehemence. They were waiting for -me in the drawing-room, which is a very large room, stretching -along the entire front of the house, with three long windows -reaching down to the floor. A chair had been placed close to the -central window, with its back turned towards it. In this I was -asked to sit, and then Mr. Rucastle, walking up and down on the -other side of the room, began to tell me a series of the funniest -stories that I have ever listened to. You cannot imagine how -comical he was, and I laughed until I was quite weary. Mrs. -Rucastle, however, who has evidently no sense of humour, never so -much as smiled, but sat with her hands in her lap, and a sad, -anxious look upon her face. After an hour or so, Mr. Rucastle -suddenly remarked that it was time to commence the duties of the -day, and that I might change my dress and go to little Edward in -the nursery. - -"Two days later this same performance was gone through under -exactly similar circumstances. Again I changed my dress, again I -sat in the window, and again I laughed very heartily at the funny -stories of which my employer had an immense rpertoire, and which -he told inimitably. Then he handed me a yellow-backed novel, and -moving my chair a little sideways, that my own shadow might not -fall upon the page, he begged me to read aloud to him. I read for -about ten minutes, beginning in the heart of a chapter, and then -suddenly, in the middle of a sentence, he ordered me to cease and -to change my dress. - -"You can easily imagine, Mr. Holmes, how curious I became as to -what the meaning of this extraordinary performance could possibly -be. They were always very careful, I observed, to turn my face -away from the window, so that I became consumed with the desire -to see what was going on behind my back. At first it seemed to be -impossible, but I soon devised a means. My hand-mirror had been -broken, so a happy thought seized me, and I concealed a piece of -the glass in my handkerchief. On the next occasion, in the midst -of my laughter, I put my handkerchief up to my eyes, and was able -with a little management to see all that there was behind me. I -confess that I was disappointed. There was nothing. At least that -was my first impression. At the second glance, however, I -perceived that there was a man standing in the Southampton Road, -a small bearded man in a grey suit, who seemed to be looking in -my direction. The road is an important highway, and there are -usually people there. This man, however, was leaning against the -railings which bordered our field and was looking earnestly up. I -lowered my handkerchief and glanced at Mrs. Rucastle to find her -eyes fixed upon me with a most searching gaze. She said nothing, -but I am convinced that she had divined that I had a mirror in my -hand and had seen what was behind me. She rose at once. - -"'Jephro,' said she, 'there is an impertinent fellow upon the -road there who stares up at Miss Hunter.' - -"'No friend of yours, Miss Hunter?' he asked. - -"'No, I know no one in these parts.' - -"'Dear me! How very impertinent! Kindly turn round and motion to -him to go away.' - -"'Surely it would be better to take no notice.' - -"'No, no, we should have him loitering here always. Kindly turn -round and wave him away like that.' - -"I did as I was told, and at the same instant Mrs. Rucastle drew -down the blind. That was a week ago, and from that time I have -not sat again in the window, nor have I worn the blue dress, nor -seen the man in the road." - -"Pray continue," said Holmes. "Your narrative promises to be a -most interesting one." - -"You will find it rather disconnected, I fear, and there may -prove to be little relation between the different incidents of -which I speak. On the very first day that I was at the Copper -Beeches, Mr. Rucastle took me to a small outhouse which stands -near the kitchen door. As we approached it I heard the sharp -rattling of a chain, and the sound as of a large animal moving -about. - -"'Look in here!' said Mr. Rucastle, showing me a slit between two -planks. 'Is he not a beauty?' - -"I looked through and was conscious of two glowing eyes, and of a -vague figure huddled up in the darkness. - -"'Don't be frightened,' said my employer, laughing at the start -which I had given. 'It's only Carlo, my mastiff. I call him mine, -but really old Toller, my groom, is the only man who can do -anything with him. We feed him once a day, and not too much then, -so that he is always as keen as mustard. Toller lets him loose -every night, and God help the trespasser whom he lays his fangs -upon. For goodness' sake don't you ever on any pretext set your -foot over the threshold at night, for it's as much as your life -is worth.' - -"The warning was no idle one, for two nights later I happened to -look out of my bedroom window about two o'clock in the morning. -It was a beautiful moonlight night, and the lawn in front of the -house was silvered over and almost as bright as day. I was -standing, rapt in the peaceful beauty of the scene, when I was -aware that something was moving under the shadow of the copper -beeches. As it emerged into the moonshine I saw what it was. It -was a giant dog, as large as a calf, tawny tinted, with hanging -jowl, black muzzle, and huge projecting bones. It walked slowly -across the lawn and vanished into the shadow upon the other side. -That dreadful sentinel sent a chill to my heart which I do not -think that any burglar could have done. - -"And now I have a very strange experience to tell you. I had, as -you know, cut off my hair in London, and I had placed it in a -great coil at the bottom of my trunk. One evening, after the -child was in bed, I began to amuse myself by examining the -furniture of my room and by rearranging my own little things. -There was an old chest of drawers in the room, the two upper ones -empty and open, the lower one locked. I had filled the first two -with my linen, and as I had still much to pack away I was -naturally annoyed at not having the use of the third drawer. It -struck me that it might have been fastened by a mere oversight, -so I took out my bunch of keys and tried to open it. The very -first key fitted to perfection, and I drew the drawer open. There -was only one thing in it, but I am sure that you would never -guess what it was. It was my coil of hair. - -"I took it up and examined it. It was of the same peculiar tint, -and the same thickness. But then the impossibility of the thing -obtruded itself upon me. How could my hair have been locked in -the drawer? With trembling hands I undid my trunk, turned out the -contents, and drew from the bottom my own hair. I laid the two -tresses together, and I assure you that they were identical. Was -it not extraordinary? Puzzle as I would, I could make nothing at -all of what it meant. I returned the strange hair to the drawer, -and I said nothing of the matter to the Rucastles as I felt that -I had put myself in the wrong by opening a drawer which they had -locked. - -"I am naturally observant, as you may have remarked, Mr. Holmes, -and I soon had a pretty good plan of the whole house in my head. -There was one wing, however, which appeared not to be inhabited -at all. A door which faced that which led into the quarters of -the Tollers opened into this suite, but it was invariably locked. -One day, however, as I ascended the stair, I met Mr. Rucastle -coming out through this door, his keys in his hand, and a look on -his face which made him a very different person to the round, -jovial man to whom I was accustomed. His cheeks were red, his -brow was all crinkled with anger, and the veins stood out at his -temples with passion. He locked the door and hurried past me -without a word or a look. - -"This aroused my curiosity, so when I went out for a walk in the -grounds with my charge, I strolled round to the side from which I -could see the windows of this part of the house. There were four -of them in a row, three of which were simply dirty, while the -fourth was shuttered up. They were evidently all deserted. As I -strolled up and down, glancing at them occasionally, Mr. Rucastle -came out to me, looking as merry and jovial as ever. - -"'Ah!' said he, 'you must not think me rude if I passed you -without a word, my dear young lady. I was preoccupied with -business matters.' - -"I assured him that I was not offended. 'By the way,' said I, -'you seem to have quite a suite of spare rooms up there, and one -of them has the shutters up.' - -"He looked surprised and, as it seemed to me, a little startled -at my remark. - -"'Photography is one of my hobbies,' said he. 'I have made my -dark room up there. But, dear me! what an observant young lady we -have come upon. Who would have believed it? Who would have ever -believed it?' He spoke in a jesting tone, but there was no jest -in his eyes as he looked at me. I read suspicion there and -annoyance, but no jest. - -"Well, Mr. Holmes, from the moment that I understood that there -was something about that suite of rooms which I was not to know, -I was all on fire to go over them. It was not mere curiosity, -though I have my share of that. It was more a feeling of duty--a -feeling that some good might come from my penetrating to this -place. They talk of woman's instinct; perhaps it was woman's -instinct which gave me that feeling. At any rate, it was there, -and I was keenly on the lookout for any chance to pass the -forbidden door. - -"It was only yesterday that the chance came. I may tell you that, -besides Mr. Rucastle, both Toller and his wife find something to -do in these deserted rooms, and I once saw him carrying a large -black linen bag with him through the door. Recently he has been -drinking hard, and yesterday evening he was very drunk; and when -I came upstairs there was the key in the door. I have no doubt at -all that he had left it there. Mr. and Mrs. Rucastle were both -downstairs, and the child was with them, so that I had an -admirable opportunity. I turned the key gently in the lock, -opened the door, and slipped through. - -"There was a little passage in front of me, unpapered and -uncarpeted, which turned at a right angle at the farther end. -Round this corner were three doors in a line, the first and third -of which were open. They each led into an empty room, dusty and -cheerless, with two windows in the one and one in the other, so -thick with dirt that the evening light glimmered dimly through -them. The centre door was closed, and across the outside of it -had been fastened one of the broad bars of an iron bed, padlocked -at one end to a ring in the wall, and fastened at the other with -stout cord. The door itself was locked as well, and the key was -not there. This barricaded door corresponded clearly with the -shuttered window outside, and yet I could see by the glimmer from -beneath it that the room was not in darkness. Evidently there was -a skylight which let in light from above. As I stood in the -passage gazing at the sinister door and wondering what secret it -might veil, I suddenly heard the sound of steps within the room -and saw a shadow pass backward and forward against the little -slit of dim light which shone out from under the door. A mad, -unreasoning terror rose up in me at the sight, Mr. Holmes. My -overstrung nerves failed me suddenly, and I turned and ran--ran -as though some dreadful hand were behind me clutching at the -skirt of my dress. I rushed down the passage, through the door, -and straight into the arms of Mr. Rucastle, who was waiting -outside. - -"'So,' said he, smiling, 'it was you, then. I thought that it -must be when I saw the door open.' - -"'Oh, I am so frightened!' I panted. - -"'My dear young lady! my dear young lady!'--you cannot think how -caressing and soothing his manner was--'and what has frightened -you, my dear young lady?' - -"But his voice was just a little too coaxing. He overdid it. I -was keenly on my guard against him. - -"'I was foolish enough to go into the empty wing,' I answered. -'But it is so lonely and eerie in this dim light that I was -frightened and ran out again. Oh, it is so dreadfully still in -there!' - -"'Only that?' said he, looking at me keenly. - -"'Why, what did you think?' I asked. - -"'Why do you think that I lock this door?' - -"'I am sure that I do not know.' - -"'It is to keep people out who have no business there. Do you -see?' He was still smiling in the most amiable manner. - -"'I am sure if I had known--' - -"'Well, then, you know now. And if you ever put your foot over -that threshold again'--here in an instant the smile hardened into -a grin of rage, and he glared down at me with the face of a -demon--'I'll throw you to the mastiff.' - -"I was so terrified that I do not know what I did. I suppose that -I must have rushed past him into my room. I remember nothing -until I found myself lying on my bed trembling all over. Then I -thought of you, Mr. Holmes. I could not live there longer without -some advice. I was frightened of the house, of the man, of the -woman, of the servants, even of the child. They were all horrible -to me. If I could only bring you down all would be well. Of -course I might have fled from the house, but my curiosity was -almost as strong as my fears. My mind was soon made up. I would -send you a wire. I put on my hat and cloak, went down to the -office, which is about half a mile from the house, and then -returned, feeling very much easier. A horrible doubt came into my -mind as I approached the door lest the dog might be loose, but I -remembered that Toller had drunk himself into a state of -insensibility that evening, and I knew that he was the only one -in the household who had any influence with the savage creature, -or who would venture to set him free. I slipped in in safety and -lay awake half the night in my joy at the thought of seeing you. -I had no difficulty in getting leave to come into Winchester this -morning, but I must be back before three o'clock, for Mr. and -Mrs. Rucastle are going on a visit, and will be away all the -evening, so that I must look after the child. Now I have told you -all my adventures, Mr. Holmes, and I should be very glad if you -could tell me what it all means, and, above all, what I should -do." - -Holmes and I had listened spellbound to this extraordinary story. -My friend rose now and paced up and down the room, his hands in -his pockets, and an expression of the most profound gravity upon -his face. - -"Is Toller still drunk?" he asked. - -"Yes. I heard his wife tell Mrs. Rucastle that she could do -nothing with him." - -"That is well. And the Rucastles go out to-night?" - -"Yes." - -"Is there a cellar with a good strong lock?" - -"Yes, the wine-cellar." - -"You seem to me to have acted all through this matter like a very -brave and sensible girl, Miss Hunter. Do you think that you could -perform one more feat? I should not ask it of you if I did not -think you a quite exceptional woman." - -"I will try. What is it?" - -"We shall be at the Copper Beeches by seven o'clock, my friend -and I. The Rucastles will be gone by that time, and Toller will, -we hope, be incapable. There only remains Mrs. Toller, who might -give the alarm. If you could send her into the cellar on some -errand, and then turn the key upon her, you would facilitate -matters immensely." - -"I will do it." - -"Excellent! We shall then look thoroughly into the affair. Of -course there is only one feasible explanation. You have been -brought there to personate someone, and the real person is -imprisoned in this chamber. That is obvious. As to who this -prisoner is, I have no doubt that it is the daughter, Miss Alice -Rucastle, if I remember right, who was said to have gone to -America. You were chosen, doubtless, as resembling her in height, -figure, and the colour of your hair. Hers had been cut off, very -possibly in some illness through which she has passed, and so, of -course, yours had to be sacrificed also. By a curious chance you -came upon her tresses. The man in the road was undoubtedly some -friend of hers--possibly her fianc--and no doubt, as you wore -the girl's dress and were so like her, he was convinced from your -laughter, whenever he saw you, and afterwards from your gesture, -that Miss Rucastle was perfectly happy, and that she no longer -desired his attentions. The dog is let loose at night to prevent -him from endeavouring to communicate with her. So much is fairly -clear. The most serious point in the case is the disposition of -the child." - -"What on earth has that to do with it?" I ejaculated. - -"My dear Watson, you as a medical man are continually gaining -light as to the tendencies of a child by the study of the -parents. Don't you see that the converse is equally valid. I have -frequently gained my first real insight into the character of -parents by studying their children. This child's disposition is -abnormally cruel, merely for cruelty's sake, and whether he -derives this from his smiling father, as I should suspect, or -from his mother, it bodes evil for the poor girl who is in their -power." - -"I am sure that you are right, Mr. Holmes," cried our client. "A -thousand things come back to me which make me certain that you -have hit it. Oh, let us lose not an instant in bringing help to -this poor creature." - -"We must be circumspect, for we are dealing with a very cunning -man. We can do nothing until seven o'clock. At that hour we shall -be with you, and it will not be long before we solve the -mystery." - -We were as good as our word, for it was just seven when we -reached the Copper Beeches, having put up our trap at a wayside -public-house. The group of trees, with their dark leaves shining -like burnished metal in the light of the setting sun, were -sufficient to mark the house even had Miss Hunter not been -standing smiling on the door-step. - -"Have you managed it?" asked Holmes. - -A loud thudding noise came from somewhere downstairs. "That is -Mrs. Toller in the cellar," said she. "Her husband lies snoring -on the kitchen rug. Here are his keys, which are the duplicates -of Mr. Rucastle's." - -"You have done well indeed!" cried Holmes with enthusiasm. "Now -lead the way, and we shall soon see the end of this black -business." - -We passed up the stair, unlocked the door, followed on down a -passage, and found ourselves in front of the barricade which Miss -Hunter had described. Holmes cut the cord and removed the -transverse bar. Then he tried the various keys in the lock, but -without success. No sound came from within, and at the silence -Holmes' face clouded over. - -"I trust that we are not too late," said he. "I think, Miss -Hunter, that we had better go in without you. Now, Watson, put -your shoulder to it, and we shall see whether we cannot make our -way in." - -It was an old rickety door and gave at once before our united -strength. Together we rushed into the room. It was empty. There -was no furniture save a little pallet bed, a small table, and a -basketful of linen. The skylight above was open, and the prisoner -gone. - -"There has been some villainy here," said Holmes; "this beauty -has guessed Miss Hunter's intentions and has carried his victim -off." - -"But how?" - -"Through the skylight. We shall soon see how he managed it." He -swung himself up onto the roof. "Ah, yes," he cried, "here's the -end of a long light ladder against the eaves. That is how he did -it." - -"But it is impossible," said Miss Hunter; "the ladder was not -there when the Rucastles went away." - -"He has come back and done it. I tell you that he is a clever and -dangerous man. I should not be very much surprised if this were -he whose step I hear now upon the stair. I think, Watson, that it -would be as well for you to have your pistol ready." - -The words were hardly out of his mouth before a man appeared at -the door of the room, a very fat and burly man, with a heavy -stick in his hand. Miss Hunter screamed and shrunk against the -wall at the sight of him, but Sherlock Holmes sprang forward and -confronted him. - -"You villain!" said he, "where's your daughter?" - -The fat man cast his eyes round, and then up at the open -skylight. - -"It is for me to ask you that," he shrieked, "you thieves! Spies -and thieves! I have caught you, have I? You are in my power. I'll -serve you!" He turned and clattered down the stairs as hard as he -could go. - -"He's gone for the dog!" cried Miss Hunter. - -"I have my revolver," said I. - -"Better close the front door," cried Holmes, and we all rushed -down the stairs together. We had hardly reached the hall when we -heard the baying of a hound, and then a scream of agony, with a -horrible worrying sound which it was dreadful to listen to. An -elderly man with a red face and shaking limbs came staggering out -at a side door. - -"My God!" he cried. "Someone has loosed the dog. It's not been -fed for two days. Quick, quick, or it'll be too late!" - -Holmes and I rushed out and round the angle of the house, with -Toller hurrying behind us. There was the huge famished brute, its -black muzzle buried in Rucastle's throat, while he writhed and -screamed upon the ground. Running up, I blew its brains out, and -it fell over with its keen white teeth still meeting in the great -creases of his neck. With much labour we separated them and -carried him, living but horribly mangled, into the house. We laid -him upon the drawing-room sofa, and having dispatched the sobered -Toller to bear the news to his wife, I did what I could to -relieve his pain. We were all assembled round him when the door -opened, and a tall, gaunt woman entered the room. - -"Mrs. Toller!" cried Miss Hunter. - -"Yes, miss. Mr. Rucastle let me out when he came back before he -went up to you. Ah, miss, it is a pity you didn't let me know -what you were planning, for I would have told you that your pains -were wasted." - -"Ha!" said Holmes, looking keenly at her. "It is clear that Mrs. -Toller knows more about this matter than anyone else." - -"Yes, sir, I do, and I am ready enough to tell what I know." - -"Then, pray, sit down, and let us hear it for there are several -points on which I must confess that I am still in the dark." - -"I will soon make it clear to you," said she; "and I'd have done -so before now if I could ha' got out from the cellar. If there's -police-court business over this, you'll remember that I was the -one that stood your friend, and that I was Miss Alice's friend -too. - -"She was never happy at home, Miss Alice wasn't, from the time -that her father married again. She was slighted like and had no -say in anything, but it never really became bad for her until -after she met Mr. Fowler at a friend's house. As well as I could -learn, Miss Alice had rights of her own by will, but she was so -quiet and patient, she was, that she never said a word about them -but just left everything in Mr. Rucastle's hands. He knew he was -safe with her; but when there was a chance of a husband coming -forward, who would ask for all that the law would give him, then -her father thought it time to put a stop on it. He wanted her to -sign a paper, so that whether she married or not, he could use -her money. When she wouldn't do it, he kept on worrying her until -she got brain-fever, and for six weeks was at death's door. Then -she got better at last, all worn to a shadow, and with her -beautiful hair cut off; but that didn't make no change in her -young man, and he stuck to her as true as man could be." - -"Ah," said Holmes, "I think that what you have been good enough -to tell us makes the matter fairly clear, and that I can deduce -all that remains. Mr. Rucastle then, I presume, took to this -system of imprisonment?" - -"Yes, sir." - -"And brought Miss Hunter down from London in order to get rid of -the disagreeable persistence of Mr. Fowler." - -"That was it, sir." - -"But Mr. Fowler being a persevering man, as a good seaman should -be, blockaded the house, and having met you succeeded by certain -arguments, metallic or otherwise, in convincing you that your -interests were the same as his." - -"Mr. Fowler was a very kind-spoken, free-handed gentleman," said -Mrs. Toller serenely. - -"And in this way he managed that your good man should have no -want of drink, and that a ladder should be ready at the moment -when your master had gone out." - -"You have it, sir, just as it happened." - -"I am sure we owe you an apology, Mrs. Toller," said Holmes, "for -you have certainly cleared up everything which puzzled us. And -here comes the country surgeon and Mrs. Rucastle, so I think, -Watson, that we had best escort Miss Hunter back to Winchester, -as it seems to me that our locus standi now is rather a -questionable one." - -And thus was solved the mystery of the sinister house with the -copper beeches in front of the door. Mr. Rucastle survived, but -was always a broken man, kept alive solely through the care of -his devoted wife. They still live with their old servants, who -probably know so much of Rucastle's past life that he finds it -difficult to part from them. Mr. Fowler and Miss Rucastle were -married, by special license, in Southampton the day after their -flight, and he is now the holder of a government appointment in -the island of Mauritius. As to Miss Violet Hunter, my friend -Holmes, rather to my disappointment, manifested no further -interest in her when once she had ceased to be the centre of one -of his problems, and she is now the head of a private school at -Walsall, where I believe that she has met with considerable success. - - - - - - - - - -End of the Project Gutenberg EBook of The Adventures of Sherlock Holmes, by -Arthur Conan Doyle - -*** END OF THIS PROJECT GUTENBERG EBOOK THE ADVENTURES OF SHERLOCK HOLMES *** - -***** This file should be named 1661-8.txt or 1661-8.zip ***** -This and all associated files of various formats will be found in: - http://www.gutenberg.org/1/6/6/1661/ - -Produced by an anonymous Project Gutenberg volunteer and Jose Menendez - -Updated editions will replace the previous one--the old editions -will be renamed. - -Creating the works from public domain print editions means that no -one owns a United States copyright in these works, so the Foundation -(and you!) can copy and distribute it in the United States without -permission and without paying copyright royalties. Special rules, -set forth in the General Terms of Use part of this license, apply to -copying and distributing Project Gutenberg-tm electronic works to -protect the PROJECT GUTENBERG-tm concept and trademark. Project -Gutenberg is a registered trademark, and may not be used if you -charge for the eBooks, unless you receive specific permission. If you -do not charge anything for copies of this eBook, complying with the -rules is very easy. You may use this eBook for nearly any purpose -such as creation of derivative works, reports, performances and -research. They may be modified and printed and given away--you may do -practically ANYTHING with public domain eBooks. Redistribution is -subject to the trademark license, especially commercial -redistribution. - - - -*** START: FULL LICENSE *** - -THE FULL PROJECT GUTENBERG LICENSE -PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK - -To protect the Project Gutenberg-tm mission of promoting the free -distribution of electronic works, by using or distributing this work -(or any other work associated in any way with the phrase "Project -Gutenberg"), you agree to comply with all the terms of the Full Project -Gutenberg-tm License (available with this file or online at -http://gutenberg.net/license). - - -Section 1. General Terms of Use and Redistributing Project Gutenberg-tm -electronic works - -1.A. By reading or using any part of this Project Gutenberg-tm -electronic work, you indicate that you have read, understand, agree to -and accept all the terms of this license and intellectual property -(trademark/copyright) agreement. If you do not agree to abide by all -the terms of this agreement, you must cease using and return or destroy -all copies of Project Gutenberg-tm electronic works in your possession. -If you paid a fee for obtaining a copy of or access to a Project -Gutenberg-tm electronic work and you do not agree to be bound by the -terms of this agreement, you may obtain a refund from the person or -entity to whom you paid the fee as set forth in paragraph 1.E.8. - -1.B. "Project Gutenberg" is a registered trademark. It may only be -used on or associated in any way with an electronic work by people who -agree to be bound by the terms of this agreement. There are a few -things that you can do with most Project Gutenberg-tm electronic works -even without complying with the full terms of this agreement. See -paragraph 1.C below. There are a lot of things you can do with Project -Gutenberg-tm electronic works if you follow the terms of this agreement -and help preserve free future access to Project Gutenberg-tm electronic -works. See paragraph 1.E below. - -1.C. The Project Gutenberg Literary Archive Foundation ("the Foundation" -or PGLAF), owns a compilation copyright in the collection of Project -Gutenberg-tm electronic works. Nearly all the individual works in the -collection are in the public domain in the United States. If an -individual work is in the public domain in the United States and you are -located in the United States, we do not claim a right to prevent you from -copying, distributing, performing, displaying or creating derivative -works based on the work as long as all references to Project Gutenberg -are removed. Of course, we hope that you will support the Project -Gutenberg-tm mission of promoting free access to electronic works by -freely sharing Project Gutenberg-tm works in compliance with the terms of -this agreement for keeping the Project Gutenberg-tm name associated with -the work. You can easily comply with the terms of this agreement by -keeping this work in the same format with its attached full Project -Gutenberg-tm License when you share it without charge with others. - -1.D. The copyright laws of the place where you are located also govern -what you can do with this work. Copyright laws in most countries are in -a constant state of change. If you are outside the United States, check -the laws of your country in addition to the terms of this agreement -before downloading, copying, displaying, performing, distributing or -creating derivative works based on this work or any other Project -Gutenberg-tm work. The Foundation makes no representations concerning -the copyright status of any work in any country outside the United -States. - -1.E. Unless you have removed all references to Project Gutenberg: - -1.E.1. The following sentence, with active links to, or other immediate -access to, the full Project Gutenberg-tm License must appear prominently -whenever any copy of a Project Gutenberg-tm work (any work on which the -phrase "Project Gutenberg" appears, or with which the phrase "Project -Gutenberg" is associated) is accessed, displayed, performed, viewed, -copied or distributed: - -This eBook is for the use of anyone anywhere at no cost and with -almost no restrictions whatsoever. You may copy it, give it away or -re-use it under the terms of the Project Gutenberg License included -with this eBook or online at www.gutenberg.net - -1.E.2. If an individual Project Gutenberg-tm electronic work is derived -from the public domain (does not contain a notice indicating that it is -posted with permission of the copyright holder), the work can be copied -and distributed to anyone in the United States without paying any fees -or charges. If you are redistributing or providing access to a work -with the phrase "Project Gutenberg" associated with or appearing on the -work, you must comply either with the requirements of paragraphs 1.E.1 -through 1.E.7 or obtain permission for the use of the work and the -Project Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or -1.E.9. - -1.E.3. If an individual Project Gutenberg-tm electronic work is posted -with the permission of the copyright holder, your use and distribution -must comply with both paragraphs 1.E.1 through 1.E.7 and any additional -terms imposed by the copyright holder. Additional terms will be linked -to the Project Gutenberg-tm License for all works posted with the -permission of the copyright holder found at the beginning of this work. - -1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm -License terms from this work, or any files containing a part of this -work or any other work associated with Project Gutenberg-tm. - -1.E.5. Do not copy, display, perform, distribute or redistribute this -electronic work, or any part of this electronic work, without -prominently displaying the sentence set forth in paragraph 1.E.1 with -active links or immediate access to the full terms of the Project -Gutenberg-tm License. - -1.E.6. You may convert to and distribute this work in any binary, -compressed, marked up, nonproprietary or proprietary form, including any -word processing or hypertext form. However, if you provide access to or -distribute copies of a Project Gutenberg-tm work in a format other than -"Plain Vanilla ASCII" or other format used in the official version -posted on the official Project Gutenberg-tm web site (www.gutenberg.net), -you must, at no additional cost, fee or expense to the user, provide a -copy, a means of exporting a copy, or a means of obtaining a copy upon -request, of the work in its original "Plain Vanilla ASCII" or other -form. Any alternate format must include the full Project Gutenberg-tm -License as specified in paragraph 1.E.1. - -1.E.7. Do not charge a fee for access to, viewing, displaying, -performing, copying or distributing any Project Gutenberg-tm works -unless you comply with paragraph 1.E.8 or 1.E.9. - -1.E.8. You may charge a reasonable fee for copies of or providing -access to or distributing Project Gutenberg-tm electronic works provided -that - -- You pay a royalty fee of 20% of the gross profits you derive from - the use of Project Gutenberg-tm works calculated using the method - you already use to calculate your applicable taxes. The fee is - owed to the owner of the Project Gutenberg-tm trademark, but he - has agreed to donate royalties under this paragraph to the - Project Gutenberg Literary Archive Foundation. Royalty payments - must be paid within 60 days following each date on which you - prepare (or are legally required to prepare) your periodic tax - returns. Royalty payments should be clearly marked as such and - sent to the Project Gutenberg Literary Archive Foundation at the - address specified in Section 4, "Information about donations to - the Project Gutenberg Literary Archive Foundation." - -- You provide a full refund of any money paid by a user who notifies - you in writing (or by e-mail) within 30 days of receipt that s/he - does not agree to the terms of the full Project Gutenberg-tm - License. You must require such a user to return or - destroy all copies of the works possessed in a physical medium - and discontinue all use of and all access to other copies of - Project Gutenberg-tm works. - -- You provide, in accordance with paragraph 1.F.3, a full refund of any - money paid for a work or a replacement copy, if a defect in the - electronic work is discovered and reported to you within 90 days - of receipt of the work. - -- You comply with all other terms of this agreement for free - distribution of Project Gutenberg-tm works. - -1.E.9. If you wish to charge a fee or distribute a Project Gutenberg-tm -electronic work or group of works on different terms than are set -forth in this agreement, you must obtain permission in writing from -both the Project Gutenberg Literary Archive Foundation and Michael -Hart, the owner of the Project Gutenberg-tm trademark. Contact the -Foundation as set forth in Section 3 below. - -1.F. - -1.F.1. Project Gutenberg volunteers and employees expend considerable -effort to identify, do copyright research on, transcribe and proofread -public domain works in creating the Project Gutenberg-tm -collection. Despite these efforts, Project Gutenberg-tm electronic -works, and the medium on which they may be stored, may contain -"Defects," such as, but not limited to, incomplete, inaccurate or -corrupt data, transcription errors, a copyright or other intellectual -property infringement, a defective or damaged disk or other medium, a -computer virus, or computer codes that damage or cannot be read by -your equipment. - -1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the "Right -of Replacement or Refund" described in paragraph 1.F.3, the Project -Gutenberg Literary Archive Foundation, the owner of the Project -Gutenberg-tm trademark, and any other party distributing a Project -Gutenberg-tm electronic work under this agreement, disclaim all -liability to you for damages, costs and expenses, including legal -fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT -LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE -PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE -TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE -LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR -INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH -DAMAGE. - -1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a -defect in this electronic work within 90 days of receiving it, you can -receive a refund of the money (if any) you paid for it by sending a -written explanation to the person you received the work from. If you -received the work on a physical medium, you must return the medium with -your written explanation. The person or entity that provided you with -the defective work may elect to provide a replacement copy in lieu of a -refund. If you received the work electronically, the person or entity -providing it to you may choose to give you a second opportunity to -receive the work electronically in lieu of a refund. If the second copy -is also defective, you may demand a refund in writing without further -opportunities to fix the problem. - -1.F.4. Except for the limited right of replacement or refund set forth -in paragraph 1.F.3, this work is provided to you 'AS-IS' WITH NO OTHER -WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO -WARRANTIES OF MERCHANTIBILITY OR FITNESS FOR ANY PURPOSE. - -1.F.5. Some states do not allow disclaimers of certain implied -warranties or the exclusion or limitation of certain types of damages. -If any disclaimer or limitation set forth in this agreement violates the -law of the state applicable to this agreement, the agreement shall be -interpreted to make the maximum disclaimer or limitation permitted by -the applicable state law. The invalidity or unenforceability of any -provision of this agreement shall not void the remaining provisions. - -1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the -trademark owner, any agent or employee of the Foundation, anyone -providing copies of Project Gutenberg-tm electronic works in accordance -with this agreement, and any volunteers associated with the production, -promotion and distribution of Project Gutenberg-tm electronic works, -harmless from all liability, costs and expenses, including legal fees, -that arise directly or indirectly from any of the following which you do -or cause to occur: (a) distribution of this or any Project Gutenberg-tm -work, (b) alteration, modification, or additions or deletions to any -Project Gutenberg-tm work, and (c) any Defect you cause. - - -Section 2. Information about the Mission of Project Gutenberg-tm - -Project Gutenberg-tm is synonymous with the free distribution of -electronic works in formats readable by the widest variety of computers -including obsolete, old, middle-aged and new computers. It exists -because of the efforts of hundreds of volunteers and donations from -people in all walks of life. - -Volunteers and financial support to provide volunteers with the -assistance they need are critical to reaching Project Gutenberg-tm's -goals and ensuring that the Project Gutenberg-tm collection will -remain freely available for generations to come. In 2001, the Project -Gutenberg Literary Archive Foundation was created to provide a secure -and permanent future for Project Gutenberg-tm and future generations. -To learn more about the Project Gutenberg Literary Archive Foundation -and how your efforts and donations can help, see Sections 3 and 4 -and the Foundation web page at http://www.pglaf.org. - - -Section 3. Information about the Project Gutenberg Literary Archive -Foundation - -The Project Gutenberg Literary Archive Foundation is a non profit -501(c)(3) educational corporation organized under the laws of the -state of Mississippi and granted tax exempt status by the Internal -Revenue Service. The Foundation's EIN or federal tax identification -number is 64-6221541. Its 501(c)(3) letter is posted at -http://pglaf.org/fundraising. Contributions to the Project Gutenberg -Literary Archive Foundation are tax deductible to the full extent -permitted by U.S. federal laws and your state's laws. - -The Foundation's principal office is located at 4557 Melan Dr. S. -Fairbanks, AK, 99712., but its volunteers and employees are scattered -throughout numerous locations. Its business office is located at -809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887, email -business@pglaf.org. Email contact links and up to date contact -information can be found at the Foundation's web site and official -page at http://pglaf.org - -For additional contact information: - Dr. Gregory B. Newby - Chief Executive and Director - gbnewby@pglaf.org - - -Section 4. Information about Donations to the Project Gutenberg -Literary Archive Foundation - -Project Gutenberg-tm depends upon and cannot survive without wide -spread public support and donations to carry out its mission of -increasing the number of public domain and licensed works that can be -freely distributed in machine readable form accessible by the widest -array of equipment including outdated equipment. Many small donations -($1 to $5,000) are particularly important to maintaining tax exempt -status with the IRS. - -The Foundation is committed to complying with the laws regulating -charities and charitable donations in all 50 states of the United -States. Compliance requirements are not uniform and it takes a -considerable effort, much paperwork and many fees to meet and keep up -with these requirements. We do not solicit donations in locations -where we have not received written confirmation of compliance. To -SEND DONATIONS or determine the status of compliance for any -particular state visit http://pglaf.org - -While we cannot and do not solicit contributions from states where we -have not met the solicitation requirements, we know of no prohibition -against accepting unsolicited donations from donors in such states who -approach us with offers to donate. - -International donations are gratefully accepted, but we cannot make -any statements concerning tax treatment of donations received from -outside the United States. U.S. laws alone swamp our small staff. - -Please check the Project Gutenberg Web pages for current donation -methods and addresses. Donations are accepted in a number of other -ways including including checks, online payments and credit card -donations. To donate, please visit: http://pglaf.org/donate - - -Section 5. General Information About Project Gutenberg-tm electronic -works. - -Professor Michael S. Hart is the originator of the Project Gutenberg-tm -concept of a library of electronic works that could be freely shared -with anyone. For thirty years, he produced and distributed Project -Gutenberg-tm eBooks with only a loose network of volunteer support. - - -Project Gutenberg-tm eBooks are often created from several printed -editions, all of which are confirmed as Public Domain in the U.S. -unless a copyright notice is included. Thus, we do not necessarily -keep eBooks in compliance with any particular paper edition. - - -Most people start at our Web site which has the main PG search facility: - - http://www.gutenberg.net - -This Web site includes information about Project Gutenberg-tm, -including how to make donations to the Project Gutenberg Literary -Archive Foundation, how to help produce our new eBooks, and how to -subscribe to our email newsletter to hear about new eBooks. diff --git a/Students/alexg/session04/trigram.py b/Students/alexg/session04/trigram.py deleted file mode 100644 index 493cb00e..00000000 --- a/Students/alexg/session04/trigram.py +++ /dev/null @@ -1,34 +0,0 @@ -#!/usr/bin/python - -import random - -#opens sherlock.txt -book=open('sherlock.txt','U').read() -text=book.split() - -#creates dictionary -collection={} - -#converts text to dictionary -for x in range(len(text)): - try: - if not text[x]+' '+text[x+1] in collection: - collection[text[x]+' '+text[x+1]]=text[x+2].split() - else: - collection[text[x]+' '+text[x+1]]+=text[x+2].split() - except IndexError: - print 'done' - -#generates new text -first = random.choice(collection.keys()) -temp = first+' '+random.choice(collection[first]) -temp2 = temp.split() -x=0 - -#iterates through dictionary and creates new text -while x!=1: - try: - temp2+=random.choice(collection[temp2[-2]+' '+temp2[-1]]).split() - except KeyError: - print ' '.join(temp2) - x=1 diff --git a/Students/apklock/python project/project_topic.py b/Students/apklock/python project/project_topic.py deleted file mode 100644 index 03f3e33b..00000000 --- a/Students/apklock/python project/project_topic.py +++ /dev/null @@ -1,6 +0,0 @@ -# Hey Chris, my topic idea is something like this: -# User inputs a protein sequence (string of amino acids) -# And my program will spit out a slew of information on the peptide string -# I haven't decided exactly what information it will spit out but it'll be something like this: -# % aromaticity, % composition, disulfide bonds, etc. -# If I can manage, I'll try to get a visual of it or something cool like that \ No newline at end of file diff --git a/Students/apklock/session01/break_me.py b/Students/apklock/session01/break_me.py deleted file mode 100644 index fb195d3a..00000000 --- a/Students/apklock/session01/break_me.py +++ /dev/null @@ -1,16 +0,0 @@ -#NameError -def namey(): - print those - -#TypeError -def typey(): - 'a' - 'b' - -#SyntaxError -def synt(): - print 'synt - -#AttributeError -def atty(): - atty.attribute - diff --git a/Students/apklock/session01/grid_function.py b/Students/apklock/session01/grid_function.py deleted file mode 100644 index 24549a63..00000000 --- a/Students/apklock/session01/grid_function.py +++ /dev/null @@ -1,12 +0,0 @@ -def grid(): - print '+', '- - - -', '+', '- - - -', '+' - print '|', ' ', '|', ' ', '|' - print '|', ' ', '|', ' ', '|' - print '|', ' ', '|', ' ', '|' - print '|', ' ', '|', ' ', '|' - print '+', '- - - -', '+', '- - - -', '+' - print '|', ' ', '|', ' ', '|' - print '|', ' ', '|', ' ', '|' - print '|', ' ', '|', ' ', '|' - print '|', ' ', '|', ' ', '|' - print '+', '- - - -', '+', '- - - -', '+' \ No newline at end of file diff --git a/Students/apklock/session01/grid_n.py b/Students/apklock/session01/grid_n.py deleted file mode 100644 index 6a0916bf..00000000 --- a/Students/apklock/session01/grid_n.py +++ /dev/null @@ -1,10 +0,0 @@ -def grid_n(n): #n rows & columns - a = ' + ----' - b = ' | ' - for i in range(n): - print a * n, '+' - print b * n, '|' - print b * n, '|' - print b * n, '|' - print b * n, '|' - print a * n, '+' \ No newline at end of file diff --git a/Students/apklock/session01/grid_nx.py b/Students/apklock/session01/grid_nx.py deleted file mode 100644 index 9f9d7248..00000000 --- a/Students/apklock/session01/grid_nx.py +++ /dev/null @@ -1,10 +0,0 @@ -def grid_nx(n,x): #n rows, x columns - a = ' + ----' - b = ' | ' - for i in range(n): - print a * x, '+' - print b * x, '|' - print b * x, '|' - print b * x, '|' - print b * x, '|' - print a * x, '+' \ No newline at end of file diff --git a/Students/apklock/session01/grid_three.py b/Students/apklock/session01/grid_three.py deleted file mode 100644 index 31afe812..00000000 --- a/Students/apklock/session01/grid_three.py +++ /dev/null @@ -1,12 +0,0 @@ -def grid_three(n): #n characters wide/tall - x = (n - 4) / 3 - print '+', x * '-', '+', x * '-', '+', x * '-', '+' - for i in range(x): - print '|', x * ' ', '|', x * ' ', '|', x * ' ', '|' - print '+', x * '-', '+', x * '-', '+', x * '-', '+' - for i in range(x): - print '|', x * ' ', '|', x * ' ', '|', x * ' ', '|' - print '+', x * '-', '+', x * '-', '+', x * '-', '+' - for i in range(x): - print '|', x * ' ', '|', x * ' ', '|', x * ' ', '|' - print '+', x * '-', '+', x * '-', '+', x * '-', '+' \ No newline at end of file diff --git a/Students/apklock/session01/print_grid.py b/Students/apklock/session01/print_grid.py deleted file mode 100644 index d5a9a6e0..00000000 --- a/Students/apklock/session01/print_grid.py +++ /dev/null @@ -1,9 +0,0 @@ -def print_grid(n): #n characters wide/tall - x = (n - 3) / 2 - print '+', x * '-', '+', x * '-', '+' - for i in range(x): - print '|', x * ' ', '|', x * ' ', '|' - print '+', x * '-', '+', x * '-', '+' - for i in range(x): - print '|', x * ' ', '|', x * ' ', '|' - print '+', x * '-', '+', x * '-', '+' \ No newline at end of file diff --git a/Students/apklock/session02/ack.py b/Students/apklock/session02/ack.py deleted file mode 100644 index a08d8e6f..00000000 --- a/Students/apklock/session02/ack.py +++ /dev/null @@ -1,9 +0,0 @@ -def ack(m,n): # m and n are integers in between 0 and 4 - if m<0 or n<0: - return 'None' - elif m is 0: - return n+1 - elif m>0 and n is 0: - return ack(m-1,1) - elif m>0 and n>0: - return ack(m-1, ack(m, n-1)) diff --git a/Students/apklock/session02/dist.py b/Students/apklock/session02/dist.py deleted file mode 100644 index 8645b56c..00000000 --- a/Students/apklock/session02/dist.py +++ /dev/null @@ -1,6 +0,0 @@ -def dist(x1, y1, x2, y2): - x3 = abs(x1 - x2) - y3 = abs(y1 - y2) - z = (x3 * x3) + (y3 * y3) - return math.sqrt(z) - diff --git a/Students/apklock/session02/lucas.py b/Students/apklock/session02/lucas.py deleted file mode 100644 index 50616f87..00000000 --- a/Students/apklock/session02/lucas.py +++ /dev/null @@ -1,7 +0,0 @@ -def lucas(n): # return Lucas series to the 'nth' values - if n == 1: - return 2 - elif n == 2: - return 1 - else: - return lucas(n-2) + lucas(n-1) \ No newline at end of file diff --git a/Students/apklock/session02/series.py b/Students/apklock/session02/series.py deleted file mode 100644 index a7058ab2..00000000 --- a/Students/apklock/session02/series.py +++ /dev/null @@ -1,5 +0,0 @@ -def series(n): # return Fibonacci series to the 'nth' value - if n < 2: - return n - return series(n-2) + series(n-1) - \ No newline at end of file diff --git a/Students/apklock/session02/sum_series.py b/Students/apklock/session02/sum_series.py deleted file mode 100644 index 00c1472c..00000000 --- a/Students/apklock/session02/sum_series.py +++ /dev/null @@ -1,6 +0,0 @@ -def sum_series(l,m,n): # return the 'lth' place in the series with starting values of m and n - if l == 1: - return m - if l == 2: - return n - return sum_series(l-2,m,n) + sum_series(l-1,m,n) \ No newline at end of file diff --git a/Students/apklock/session03/list_lab.py b/Students/apklock/session03/list_lab.py deleted file mode 100644 index 3722f3d1..00000000 --- a/Students/apklock/session03/list_lab.py +++ /dev/null @@ -1,22 +0,0 @@ -fruits = ['Apples', 'Pears', 'Oranges', 'Peaches'] #creates list of fruits - print fruits - -fruits.append('new') #input new fruit name - print fruits - -fruits[n] #input number from 1 to 5 - print n - print fruits[n] - -fruits = ['second new'] + fruits #input a second new fruit name - print fruits - -fruits.insert(0, 'another new') #input another new fruit name - print fruits - -def first_letter(string): - return string[0] - fruits.sort(key=first_letter) - for i in fruits: - print fruits - diff --git a/Students/apklock/session04/dict_set_lab.py b/Students/apklock/session04/dict_set_lab.py deleted file mode 100644 index ee5f0006..00000000 --- a/Students/apklock/session04/dict_set_lab.py +++ /dev/null @@ -1,131 +0,0 @@ -# Create a dictionary containing "name", "city", and "cake" for -# "Chris" from "Seattle" who likes "Chocolate". - - -d = {"name": "Chris", - "city": "Seattle", - "cake": "Chocolate"} - -# Display the dictionary. -print d - -#or something fancier, like: -print "{name} is from {city}, and likes {cake} cake.".format(name=d['name'], - city=d['city'], - cake=d['cake']) - -# But if that seems like unnecceasry typing -- it is: -# we'll learn the **d form is session05: -print "{name} is from {city}, and likes {cake} cake.".format(**d) - - -# Delete the entry for "cake". -# Display the dictionary. - -del d["cake"] - -print d - -# Add an entry for "fruit" with "Mango" and display the dictionary. - -d['fruit'] = 'Mango' - -print d - -# Display the dictionary keys. - -print d.keys() - -# Display the dictionary values. - -print d.values() - -# Display whether or not "cake" is a key in the dictionary (i.e. False) (now). - -print 'cake' in d - -# Display whether or not "Mango" is a value in the dictionary. - -print 'Mango' in d.values() - -# Using the dict constructor and zip, build a dictionary of numbers -# from zero to fifteen and the hexadecimal equivalent (string is fine). -# did you find the hex() function?" -nums = range(16) -hexes = [] -for num in nums: - hexes.append(hex(num)) - -hex_dict = dict(zip(nums, hexes)) - -print hex_dict - - -# Using the dictionary from item 1: Make a dictionary using the same keys -# but with the number of 't's in each value. - -a_dict = {} -for key, val in d.items(): - a_dict[key] = val.count('t') -print a_dict - - -# replacing the values in the original dict: - -for key, val in d.items(): - d[key] = val.count('t') -print d - -# Create sets s2, s3 and s4 that contain numbers from zero through -# twenty, divisible 2, 3 and 4. - -# Display the sets. - -s2 = set() -s3 = set() -s4 = set() -for i in range(21): - if not i%2: - s2.add(i) - if not i%3: - s3.add(i) - if not i%4: - s4.add(i) - -print s2 -print s3 -print s4 - - -# Display if s3 is a subset of s2 (False) - -print s3.issubset(s2) - -# and if s4 is a subset of s2 (True). - -print s4.issubset(s2) - -# Create a set with the letters in 'Python' and add 'i' to the set. - -s = set('Python') -s.add('i') - -print s - -# maybe: -s = set('Python'.lower()) # that wasn't specified... -s.add('i') - -# Create a frozenset with the letters in 'marathon' - -fs = frozenset('marathon') - -# display the union and intersection of the two sets. - -print "union:", s.union(fs) -print "intersection:", s.intersection(fs) - -## not that order doesn't matter for these: - -print "union:", fs.union(s) -print "intersection:", fs.intersection(s) diff --git a/Students/apklock/session04/mailroom.py b/Students/apklock/session04/mailroom.py deleted file mode 100644 index 70740e3a..00000000 --- a/Students/apklock/session04/mailroom.py +++ /dev/null @@ -1,199 +0,0 @@ -import sys -import math - -# handy utility to make pretty printing easier -from textwrap import dedent - - -# In memory representation of the donor database -# using a tuple for each donor -# -- kind of like a record in a database table -# using a dict with a lower case version of the donor's name as the key -donor_db = {} -donor_db['william gates, iii'] = ("William Gates, III", [653772.32, 12.17]) -donor_db['jeff bezos'] = ("Jeff Bezos", [877.33]) -donor_db['paul allen'] = ("Paul Allen", [663.23, 43.87, 1.32]) -donor_db['mark zuckerberg'] = ("Mark Zuckerberg", [1663.23, 4300.87, 10432.0]) - - -def list_donors(): - """ - creates alist of the donors as a string, so tehy can be printed - - not calling print from here makes it more flexible and easier to - test - """ - listing = ["Donor list:"] - for donor in donor_db.values(): - listing.append( donor[0] ) - return "\n".join(listing) - - -def find_donor(name): - """ - find a donor in the donor db - - :param: the name of the donor - - :returns: The donor data structure -- None if not in the donor_db - """ - key = name.strip().lower() - return donor_db.get(key) - - -def add_donor(name): - """ - add a new donor to the donr db - - :param: the name of the donor - - :returns: the new Donor data structure - """ - name = name.strip() - donor = (name, []) - donor_db[name.lower()] = donor - return donor - - -def main_menu_selection(): - """ - Print out the main application menu and then read the user input. - """ - input = raw_input(dedent(''' - Choose an action: - - 1 - Send a Thank You - 2 - Create a Report - 3 - Send letters to everyone - 4 - Quit - - > ''')) - return input.strip() - - -def gen_letter(donor): - """ - Generate a thank you letter for the donor - - :param: donor tuple - - :returns: string with letter - """ - return dedent('''Dear {0:s} - - Thank you for your very kind donation of ${1:.2f}. - It will be put to very good use. - - Sincerely, - -The Team - '''.format(donor[0], donor[1][-1]) ) - - -def send_thank_you(): - """ - Execute the logic to record a donation and generate a thank you message. - """ - # Read a valid donor to send a thank you from, handling special commands to - # let the user navigate as defined. - while True: - name = raw_input("Enter a donor's name (or list to see all donors or 'menu' to exit)> ").strip() - if name == "list": - print list_donors() - elif name == "menu": - return - else: - break - - # Now prompt the user for a donation amount to apply. Since this is - # also an exit point to the main menu, we want to make sure this is - # done before mutating the db . - while True: - amount_str = raw_input("Enter a donation amount (or 'menu' to exit)> ").strip() - if amount_str == "menu": - return - # Make sure amount is a valid amount before leaving the input loop - try: - amount = float(amount_str) - # extra check here -- unlikely that someone will type "NaN", but - # it IS possible, and it is a valid floating point number: - # http://en.wikipedia.org/wiki/NaN - if math.isnan(amount) or math.isinf(amount) or round(amount, 2) == 0.00: - raise ValueError - # in this case, the ValueError could be raised by the float() call, or by the NaN-check - except ValueError: - print "error: donation amount is invalid\n" - else: - break - - # If this is a new user, ensure that the database has the necessary - # data structure. - donor = find_donor(name) - if donor is None: - donor = add_donor(name) - - # Record the donation - donor[1].append(amount) - print gen_letter(donor) - - -def sort_key(item): - ## used to sort on name in donor_db - return item[1] - - -def generate_donor_report(): - """ - Generate the report of the donors and amounts donated. - - :returns: the donor report as a string. - """ - # First, reduce the raw data into a summary list view - report_rows = [] - for (name, gifts) in donor_db.values(): - total_gifts = sum(gifts) - num_gifts = len(gifts) - avg_gift = total_gifts / num_gifts - report_rows.append( (name, total_gifts, num_gifts, avg_gift) ) - - #sort the report data - report_rows.sort(key=sort_key) - report = [] - report.append("%25s | %11s | %9s | %12s"%("Donor Name","Total Given","Num Gifts","Average Gift") ) - report.append("-"*66) - for row in report_rows: - report.append("%25s %11.2f %9i %12.2f"%row) - return "\n".join(report) - - -def save_letters_to_disk(): - """ - make a letter for each donor, and save it to disk. - """ - for donor in donor_db.values(): - letter = gen_letter(donor) - filename = donor[0].replace(" ","_") + ".txt" # I don't like spaces in filenames... - open(filename, 'w').write(letter) - - -def print_donor_report(): - print generate_donor_report() - - -def quit(): - sys.exit(0) - -if __name__ == "__main__": - running = True - - selection_dict = {"1": send_thank_you, - "2": print_donor_report, - "3": save_letters_to_disk, - "4": quit} - - while True: - selection = main_menu_selection() - try: - selection_dict[selection]() - except KeyError: - print "error: menu selection is invalid!" - diff --git a/Students/apklock/session04/sherlock.txt b/Students/apklock/session04/sherlock.txt deleted file mode 100644 index 99d5cda5..00000000 --- a/Students/apklock/session04/sherlock.txt +++ /dev/null @@ -1,13052 +0,0 @@ -Project Gutenberg's The Adventures of Sherlock Holmes, by Arthur Conan Doyle - -This eBook is for the use of anyone anywhere at no cost and with -almost no restrictions whatsoever. You may copy it, give it away or -re-use it under the terms of the Project Gutenberg License included -with this eBook or online at www.gutenberg.net - - -Title: The Adventures of Sherlock Holmes - -Author: Arthur Conan Doyle - -Posting Date: April 18, 2011 [EBook #1661] -First Posted: November 29, 2002 - -Language: English - - -*** START OF THIS PROJECT GUTENBERG EBOOK THE ADVENTURES OF SHERLOCK HOLMES *** - - - - -Produced by an anonymous Project Gutenberg volunteer and Jose Menendez - - - - - - - - - -THE ADVENTURES OF SHERLOCK HOLMES - -by - -SIR ARTHUR CONAN DOYLE - - - - I. A Scandal in Bohemia - II. The Red-headed League - III. A Case of Identity - IV. The Boscombe Valley Mystery - V. The Five Orange Pips - VI. The Man with the Twisted Lip - VII. The Adventure of the Blue Carbuncle -VIII. The Adventure of the Speckled Band - IX. The Adventure of the Engineer's Thumb - X. The Adventure of the Noble Bachelor - XI. The Adventure of the Beryl Coronet - XII. The Adventure of the Copper Beeches - - - - -ADVENTURE I. A SCANDAL IN BOHEMIA - -I. - -To Sherlock Holmes she is always THE woman. I have seldom heard -him mention her under any other name. In his eyes she eclipses -and predominates the whole of her sex. It was not that he felt -any emotion akin to love for Irene Adler. All emotions, and that -one particularly, were abhorrent to his cold, precise but -admirably balanced mind. He was, I take it, the most perfect -reasoning and observing machine that the world has seen, but as a -lover he would have placed himself in a false position. He never -spoke of the softer passions, save with a gibe and a sneer. They -were admirable things for the observer--excellent for drawing the -veil from men's motives and actions. But for the trained reasoner -to admit such intrusions into his own delicate and finely -adjusted temperament was to introduce a distracting factor which -might throw a doubt upon all his mental results. Grit in a -sensitive instrument, or a crack in one of his own high-power -lenses, would not be more disturbing than a strong emotion in a -nature such as his. And yet there was but one woman to him, and -that woman was the late Irene Adler, of dubious and questionable -memory. - -I had seen little of Holmes lately. My marriage had drifted us -away from each other. My own complete happiness, and the -home-centred interests which rise up around the man who first -finds himself master of his own establishment, were sufficient to -absorb all my attention, while Holmes, who loathed every form of -society with his whole Bohemian soul, remained in our lodgings in -Baker Street, buried among his old books, and alternating from -week to week between cocaine and ambition, the drowsiness of the -drug, and the fierce energy of his own keen nature. He was still, -as ever, deeply attracted by the study of crime, and occupied his -immense faculties and extraordinary powers of observation in -following out those clues, and clearing up those mysteries which -had been abandoned as hopeless by the official police. From time -to time I heard some vague account of his doings: of his summons -to Odessa in the case of the Trepoff murder, of his clearing up -of the singular tragedy of the Atkinson brothers at Trincomalee, -and finally of the mission which he had accomplished so -delicately and successfully for the reigning family of Holland. -Beyond these signs of his activity, however, which I merely -shared with all the readers of the daily press, I knew little of -my former friend and companion. - -One night--it was on the twentieth of March, 1888--I was -returning from a journey to a patient (for I had now returned to -civil practice), when my way led me through Baker Street. As I -passed the well-remembered door, which must always be associated -in my mind with my wooing, and with the dark incidents of the -Study in Scarlet, I was seized with a keen desire to see Holmes -again, and to know how he was employing his extraordinary powers. -His rooms were brilliantly lit, and, even as I looked up, I saw -his tall, spare figure pass twice in a dark silhouette against -the blind. He was pacing the room swiftly, eagerly, with his head -sunk upon his chest and his hands clasped behind him. To me, who -knew his every mood and habit, his attitude and manner told their -own story. He was at work again. He had risen out of his -drug-created dreams and was hot upon the scent of some new -problem. I rang the bell and was shown up to the chamber which -had formerly been in part my own. - -His manner was not effusive. It seldom was; but he was glad, I -think, to see me. With hardly a word spoken, but with a kindly -eye, he waved me to an armchair, threw across his case of cigars, -and indicated a spirit case and a gasogene in the corner. Then he -stood before the fire and looked me over in his singular -introspective fashion. - -"Wedlock suits you," he remarked. "I think, Watson, that you have -put on seven and a half pounds since I saw you." - -"Seven!" I answered. - -"Indeed, I should have thought a little more. Just a trifle more, -I fancy, Watson. And in practice again, I observe. You did not -tell me that you intended to go into harness." - -"Then, how do you know?" - -"I see it, I deduce it. How do I know that you have been getting -yourself very wet lately, and that you have a most clumsy and -careless servant girl?" - -"My dear Holmes," said I, "this is too much. You would certainly -have been burned, had you lived a few centuries ago. It is true -that I had a country walk on Thursday and came home in a dreadful -mess, but as I have changed my clothes I can't imagine how you -deduce it. As to Mary Jane, she is incorrigible, and my wife has -given her notice, but there, again, I fail to see how you work it -out." - -He chuckled to himself and rubbed his long, nervous hands -together. - -"It is simplicity itself," said he; "my eyes tell me that on the -inside of your left shoe, just where the firelight strikes it, -the leather is scored by six almost parallel cuts. Obviously they -have been caused by someone who has very carelessly scraped round -the edges of the sole in order to remove crusted mud from it. -Hence, you see, my double deduction that you had been out in vile -weather, and that you had a particularly malignant boot-slitting -specimen of the London slavey. As to your practice, if a -gentleman walks into my rooms smelling of iodoform, with a black -mark of nitrate of silver upon his right forefinger, and a bulge -on the right side of his top-hat to show where he has secreted -his stethoscope, I must be dull, indeed, if I do not pronounce -him to be an active member of the medical profession." - -I could not help laughing at the ease with which he explained his -process of deduction. "When I hear you give your reasons," I -remarked, "the thing always appears to me to be so ridiculously -simple that I could easily do it myself, though at each -successive instance of your reasoning I am baffled until you -explain your process. And yet I believe that my eyes are as good -as yours." - -"Quite so," he answered, lighting a cigarette, and throwing -himself down into an armchair. "You see, but you do not observe. -The distinction is clear. For example, you have frequently seen -the steps which lead up from the hall to this room." - -"Frequently." - -"How often?" - -"Well, some hundreds of times." - -"Then how many are there?" - -"How many? I don't know." - -"Quite so! You have not observed. And yet you have seen. That is -just my point. Now, I know that there are seventeen steps, -because I have both seen and observed. By-the-way, since you are -interested in these little problems, and since you are good -enough to chronicle one or two of my trifling experiences, you -may be interested in this." He threw over a sheet of thick, -pink-tinted note-paper which had been lying open upon the table. -"It came by the last post," said he. "Read it aloud." - -The note was undated, and without either signature or address. - -"There will call upon you to-night, at a quarter to eight -o'clock," it said, "a gentleman who desires to consult you upon a -matter of the very deepest moment. Your recent services to one of -the royal houses of Europe have shown that you are one who may -safely be trusted with matters which are of an importance which -can hardly be exaggerated. This account of you we have from all -quarters received. Be in your chamber then at that hour, and do -not take it amiss if your visitor wear a mask." - -"This is indeed a mystery," I remarked. "What do you imagine that -it means?" - -"I have no data yet. It is a capital mistake to theorize before -one has data. Insensibly one begins to twist facts to suit -theories, instead of theories to suit facts. But the note itself. -What do you deduce from it?" - -I carefully examined the writing, and the paper upon which it was -written. - -"The man who wrote it was presumably well to do," I remarked, -endeavouring to imitate my companion's processes. "Such paper -could not be bought under half a crown a packet. It is peculiarly -strong and stiff." - -"Peculiar--that is the very word," said Holmes. "It is not an -English paper at all. Hold it up to the light." - -I did so, and saw a large "E" with a small "g," a "P," and a -large "G" with a small "t" woven into the texture of the paper. - -"What do you make of that?" asked Holmes. - -"The name of the maker, no doubt; or his monogram, rather." - -"Not at all. The 'G' with the small 't' stands for -'Gesellschaft,' which is the German for 'Company.' It is a -customary contraction like our 'Co.' 'P,' of course, stands for -'Papier.' Now for the 'Eg.' Let us glance at our Continental -Gazetteer." He took down a heavy brown volume from his shelves. -"Eglow, Eglonitz--here we are, Egria. It is in a German-speaking -country--in Bohemia, not far from Carlsbad. 'Remarkable as being -the scene of the death of Wallenstein, and for its numerous -glass-factories and paper-mills.' Ha, ha, my boy, what do you -make of that?" His eyes sparkled, and he sent up a great blue -triumphant cloud from his cigarette. - -"The paper was made in Bohemia," I said. - -"Precisely. And the man who wrote the note is a German. Do you -note the peculiar construction of the sentence--'This account of -you we have from all quarters received.' A Frenchman or Russian -could not have written that. It is the German who is so -uncourteous to his verbs. It only remains, therefore, to discover -what is wanted by this German who writes upon Bohemian paper and -prefers wearing a mask to showing his face. And here he comes, if -I am not mistaken, to resolve all our doubts." - -As he spoke there was the sharp sound of horses' hoofs and -grating wheels against the curb, followed by a sharp pull at the -bell. Holmes whistled. - -"A pair, by the sound," said he. "Yes," he continued, glancing -out of the window. "A nice little brougham and a pair of -beauties. A hundred and fifty guineas apiece. There's money in -this case, Watson, if there is nothing else." - -"I think that I had better go, Holmes." - -"Not a bit, Doctor. Stay where you are. I am lost without my -Boswell. And this promises to be interesting. It would be a pity -to miss it." - -"But your client--" - -"Never mind him. I may want your help, and so may he. Here he -comes. Sit down in that armchair, Doctor, and give us your best -attention." - -A slow and heavy step, which had been heard upon the stairs and -in the passage, paused immediately outside the door. Then there -was a loud and authoritative tap. - -"Come in!" said Holmes. - -A man entered who could hardly have been less than six feet six -inches in height, with the chest and limbs of a Hercules. His -dress was rich with a richness which would, in England, be looked -upon as akin to bad taste. Heavy bands of astrakhan were slashed -across the sleeves and fronts of his double-breasted coat, while -the deep blue cloak which was thrown over his shoulders was lined -with flame-coloured silk and secured at the neck with a brooch -which consisted of a single flaming beryl. Boots which extended -halfway up his calves, and which were trimmed at the tops with -rich brown fur, completed the impression of barbaric opulence -which was suggested by his whole appearance. He carried a -broad-brimmed hat in his hand, while he wore across the upper -part of his face, extending down past the cheekbones, a black -vizard mask, which he had apparently adjusted that very moment, -for his hand was still raised to it as he entered. From the lower -part of the face he appeared to be a man of strong character, -with a thick, hanging lip, and a long, straight chin suggestive -of resolution pushed to the length of obstinacy. - -"You had my note?" he asked with a deep harsh voice and a -strongly marked German accent. "I told you that I would call." He -looked from one to the other of us, as if uncertain which to -address. - -"Pray take a seat," said Holmes. "This is my friend and -colleague, Dr. Watson, who is occasionally good enough to help me -in my cases. Whom have I the honour to address?" - -"You may address me as the Count Von Kramm, a Bohemian nobleman. -I understand that this gentleman, your friend, is a man of honour -and discretion, whom I may trust with a matter of the most -extreme importance. If not, I should much prefer to communicate -with you alone." - -I rose to go, but Holmes caught me by the wrist and pushed me -back into my chair. "It is both, or none," said he. "You may say -before this gentleman anything which you may say to me." - -The Count shrugged his broad shoulders. "Then I must begin," said -he, "by binding you both to absolute secrecy for two years; at -the end of that time the matter will be of no importance. At -present it is not too much to say that it is of such weight it -may have an influence upon European history." - -"I promise," said Holmes. - -"And I." - -"You will excuse this mask," continued our strange visitor. "The -august person who employs me wishes his agent to be unknown to -you, and I may confess at once that the title by which I have -just called myself is not exactly my own." - -"I was aware of it," said Holmes dryly. - -"The circumstances are of great delicacy, and every precaution -has to be taken to quench what might grow to be an immense -scandal and seriously compromise one of the reigning families of -Europe. To speak plainly, the matter implicates the great House -of Ormstein, hereditary kings of Bohemia." - -"I was also aware of that," murmured Holmes, settling himself -down in his armchair and closing his eyes. - -Our visitor glanced with some apparent surprise at the languid, -lounging figure of the man who had been no doubt depicted to him -as the most incisive reasoner and most energetic agent in Europe. -Holmes slowly reopened his eyes and looked impatiently at his -gigantic client. - -"If your Majesty would condescend to state your case," he -remarked, "I should be better able to advise you." - -The man sprang from his chair and paced up and down the room in -uncontrollable agitation. Then, with a gesture of desperation, he -tore the mask from his face and hurled it upon the ground. "You -are right," he cried; "I am the King. Why should I attempt to -conceal it?" - -"Why, indeed?" murmured Holmes. "Your Majesty had not spoken -before I was aware that I was addressing Wilhelm Gottsreich -Sigismond von Ormstein, Grand Duke of Cassel-Felstein, and -hereditary King of Bohemia." - -"But you can understand," said our strange visitor, sitting down -once more and passing his hand over his high white forehead, "you -can understand that I am not accustomed to doing such business in -my own person. Yet the matter was so delicate that I could not -confide it to an agent without putting myself in his power. I -have come incognito from Prague for the purpose of consulting -you." - -"Then, pray consult," said Holmes, shutting his eyes once more. - -"The facts are briefly these: Some five years ago, during a -lengthy visit to Warsaw, I made the acquaintance of the well-known -adventuress, Irene Adler. The name is no doubt familiar to you." - -"Kindly look her up in my index, Doctor," murmured Holmes without -opening his eyes. For many years he had adopted a system of -docketing all paragraphs concerning men and things, so that it -was difficult to name a subject or a person on which he could not -at once furnish information. In this case I found her biography -sandwiched in between that of a Hebrew rabbi and that of a -staff-commander who had written a monograph upon the deep-sea -fishes. - -"Let me see!" said Holmes. "Hum! Born in New Jersey in the year -1858. Contralto--hum! La Scala, hum! Prima donna Imperial Opera -of Warsaw--yes! Retired from operatic stage--ha! Living in -London--quite so! Your Majesty, as I understand, became entangled -with this young person, wrote her some compromising letters, and -is now desirous of getting those letters back." - -"Precisely so. But how--" - -"Was there a secret marriage?" - -"None." - -"No legal papers or certificates?" - -"None." - -"Then I fail to follow your Majesty. If this young person should -produce her letters for blackmailing or other purposes, how is -she to prove their authenticity?" - -"There is the writing." - -"Pooh, pooh! Forgery." - -"My private note-paper." - -"Stolen." - -"My own seal." - -"Imitated." - -"My photograph." - -"Bought." - -"We were both in the photograph." - -"Oh, dear! That is very bad! Your Majesty has indeed committed an -indiscretion." - -"I was mad--insane." - -"You have compromised yourself seriously." - -"I was only Crown Prince then. I was young. I am but thirty now." - -"It must be recovered." - -"We have tried and failed." - -"Your Majesty must pay. It must be bought." - -"She will not sell." - -"Stolen, then." - -"Five attempts have been made. Twice burglars in my pay ransacked -her house. Once we diverted her luggage when she travelled. Twice -she has been waylaid. There has been no result." - -"No sign of it?" - -"Absolutely none." - -Holmes laughed. "It is quite a pretty little problem," said he. - -"But a very serious one to me," returned the King reproachfully. - -"Very, indeed. And what does she propose to do with the -photograph?" - -"To ruin me." - -"But how?" - -"I am about to be married." - -"So I have heard." - -"To Clotilde Lothman von Saxe-Meningen, second daughter of the -King of Scandinavia. You may know the strict principles of her -family. She is herself the very soul of delicacy. A shadow of a -doubt as to my conduct would bring the matter to an end." - -"And Irene Adler?" - -"Threatens to send them the photograph. And she will do it. I -know that she will do it. You do not know her, but she has a soul -of steel. She has the face of the most beautiful of women, and -the mind of the most resolute of men. Rather than I should marry -another woman, there are no lengths to which she would not -go--none." - -"You are sure that she has not sent it yet?" - -"I am sure." - -"And why?" - -"Because she has said that she would send it on the day when the -betrothal was publicly proclaimed. That will be next Monday." - -"Oh, then we have three days yet," said Holmes with a yawn. "That -is very fortunate, as I have one or two matters of importance to -look into just at present. Your Majesty will, of course, stay in -London for the present?" - -"Certainly. You will find me at the Langham under the name of the -Count Von Kramm." - -"Then I shall drop you a line to let you know how we progress." - -"Pray do so. I shall be all anxiety." - -"Then, as to money?" - -"You have carte blanche." - -"Absolutely?" - -"I tell you that I would give one of the provinces of my kingdom -to have that photograph." - -"And for present expenses?" - -The King took a heavy chamois leather bag from under his cloak -and laid it on the table. - -"There are three hundred pounds in gold and seven hundred in -notes," he said. - -Holmes scribbled a receipt upon a sheet of his note-book and -handed it to him. - -"And Mademoiselle's address?" he asked. - -"Is Briony Lodge, Serpentine Avenue, St. John's Wood." - -Holmes took a note of it. "One other question," said he. "Was the -photograph a cabinet?" - -"It was." - -"Then, good-night, your Majesty, and I trust that we shall soon -have some good news for you. And good-night, Watson," he added, -as the wheels of the royal brougham rolled down the street. "If -you will be good enough to call to-morrow afternoon at three -o'clock I should like to chat this little matter over with you." - - -II. - -At three o'clock precisely I was at Baker Street, but Holmes had -not yet returned. The landlady informed me that he had left the -house shortly after eight o'clock in the morning. I sat down -beside the fire, however, with the intention of awaiting him, -however long he might be. I was already deeply interested in his -inquiry, for, though it was surrounded by none of the grim and -strange features which were associated with the two crimes which -I have already recorded, still, the nature of the case and the -exalted station of his client gave it a character of its own. -Indeed, apart from the nature of the investigation which my -friend had on hand, there was something in his masterly grasp of -a situation, and his keen, incisive reasoning, which made it a -pleasure to me to study his system of work, and to follow the -quick, subtle methods by which he disentangled the most -inextricable mysteries. So accustomed was I to his invariable -success that the very possibility of his failing had ceased to -enter into my head. - -It was close upon four before the door opened, and a -drunken-looking groom, ill-kempt and side-whiskered, with an -inflamed face and disreputable clothes, walked into the room. -Accustomed as I was to my friend's amazing powers in the use of -disguises, I had to look three times before I was certain that it -was indeed he. With a nod he vanished into the bedroom, whence he -emerged in five minutes tweed-suited and respectable, as of old. -Putting his hands into his pockets, he stretched out his legs in -front of the fire and laughed heartily for some minutes. - -"Well, really!" he cried, and then he choked and laughed again -until he was obliged to lie back, limp and helpless, in the -chair. - -"What is it?" - -"It's quite too funny. I am sure you could never guess how I -employed my morning, or what I ended by doing." - -"I can't imagine. I suppose that you have been watching the -habits, and perhaps the house, of Miss Irene Adler." - -"Quite so; but the sequel was rather unusual. I will tell you, -however. I left the house a little after eight o'clock this -morning in the character of a groom out of work. There is a -wonderful sympathy and freemasonry among horsey men. Be one of -them, and you will know all that there is to know. I soon found -Briony Lodge. It is a bijou villa, with a garden at the back, but -built out in front right up to the road, two stories. Chubb lock -to the door. Large sitting-room on the right side, well -furnished, with long windows almost to the floor, and those -preposterous English window fasteners which a child could open. -Behind there was nothing remarkable, save that the passage window -could be reached from the top of the coach-house. I walked round -it and examined it closely from every point of view, but without -noting anything else of interest. - -"I then lounged down the street and found, as I expected, that -there was a mews in a lane which runs down by one wall of the -garden. I lent the ostlers a hand in rubbing down their horses, -and received in exchange twopence, a glass of half and half, two -fills of shag tobacco, and as much information as I could desire -about Miss Adler, to say nothing of half a dozen other people in -the neighbourhood in whom I was not in the least interested, but -whose biographies I was compelled to listen to." - -"And what of Irene Adler?" I asked. - -"Oh, she has turned all the men's heads down in that part. She is -the daintiest thing under a bonnet on this planet. So say the -Serpentine-mews, to a man. She lives quietly, sings at concerts, -drives out at five every day, and returns at seven sharp for -dinner. Seldom goes out at other times, except when she sings. -Has only one male visitor, but a good deal of him. He is dark, -handsome, and dashing, never calls less than once a day, and -often twice. He is a Mr. Godfrey Norton, of the Inner Temple. See -the advantages of a cabman as a confidant. They had driven him -home a dozen times from Serpentine-mews, and knew all about him. -When I had listened to all they had to tell, I began to walk up -and down near Briony Lodge once more, and to think over my plan -of campaign. - -"This Godfrey Norton was evidently an important factor in the -matter. He was a lawyer. That sounded ominous. What was the -relation between them, and what the object of his repeated -visits? Was she his client, his friend, or his mistress? If the -former, she had probably transferred the photograph to his -keeping. If the latter, it was less likely. On the issue of this -question depended whether I should continue my work at Briony -Lodge, or turn my attention to the gentleman's chambers in the -Temple. It was a delicate point, and it widened the field of my -inquiry. I fear that I bore you with these details, but I have to -let you see my little difficulties, if you are to understand the -situation." - -"I am following you closely," I answered. - -"I was still balancing the matter in my mind when a hansom cab -drove up to Briony Lodge, and a gentleman sprang out. He was a -remarkably handsome man, dark, aquiline, and moustached--evidently -the man of whom I had heard. He appeared to be in a -great hurry, shouted to the cabman to wait, and brushed past the -maid who opened the door with the air of a man who was thoroughly -at home. - -"He was in the house about half an hour, and I could catch -glimpses of him in the windows of the sitting-room, pacing up and -down, talking excitedly, and waving his arms. Of her I could see -nothing. Presently he emerged, looking even more flurried than -before. As he stepped up to the cab, he pulled a gold watch from -his pocket and looked at it earnestly, 'Drive like the devil,' he -shouted, 'first to Gross & Hankey's in Regent Street, and then to -the Church of St. Monica in the Edgeware Road. Half a guinea if -you do it in twenty minutes!' - -"Away they went, and I was just wondering whether I should not do -well to follow them when up the lane came a neat little landau, -the coachman with his coat only half-buttoned, and his tie under -his ear, while all the tags of his harness were sticking out of -the buckles. It hadn't pulled up before she shot out of the hall -door and into it. I only caught a glimpse of her at the moment, -but she was a lovely woman, with a face that a man might die for. - -"'The Church of St. Monica, John,' she cried, 'and half a -sovereign if you reach it in twenty minutes.' - -"This was quite too good to lose, Watson. I was just balancing -whether I should run for it, or whether I should perch behind her -landau when a cab came through the street. The driver looked -twice at such a shabby fare, but I jumped in before he could -object. 'The Church of St. Monica,' said I, 'and half a sovereign -if you reach it in twenty minutes.' It was twenty-five minutes to -twelve, and of course it was clear enough what was in the wind. - -"My cabby drove fast. I don't think I ever drove faster, but the -others were there before us. The cab and the landau with their -steaming horses were in front of the door when I arrived. I paid -the man and hurried into the church. There was not a soul there -save the two whom I had followed and a surpliced clergyman, who -seemed to be expostulating with them. They were all three -standing in a knot in front of the altar. I lounged up the side -aisle like any other idler who has dropped into a church. -Suddenly, to my surprise, the three at the altar faced round to -me, and Godfrey Norton came running as hard as he could towards -me. - -"'Thank God,' he cried. 'You'll do. Come! Come!' - -"'What then?' I asked. - -"'Come, man, come, only three minutes, or it won't be legal.' - -"I was half-dragged up to the altar, and before I knew where I was -I found myself mumbling responses which were whispered in my ear, -and vouching for things of which I knew nothing, and generally -assisting in the secure tying up of Irene Adler, spinster, to -Godfrey Norton, bachelor. It was all done in an instant, and -there was the gentleman thanking me on the one side and the lady -on the other, while the clergyman beamed on me in front. It was -the most preposterous position in which I ever found myself in my -life, and it was the thought of it that started me laughing just -now. It seems that there had been some informality about their -license, that the clergyman absolutely refused to marry them -without a witness of some sort, and that my lucky appearance -saved the bridegroom from having to sally out into the streets in -search of a best man. The bride gave me a sovereign, and I mean -to wear it on my watch-chain in memory of the occasion." - -"This is a very unexpected turn of affairs," said I; "and what -then?" - -"Well, I found my plans very seriously menaced. It looked as if -the pair might take an immediate departure, and so necessitate -very prompt and energetic measures on my part. At the church -door, however, they separated, he driving back to the Temple, and -she to her own house. 'I shall drive out in the park at five as -usual,' she said as she left him. I heard no more. They drove -away in different directions, and I went off to make my own -arrangements." - -"Which are?" - -"Some cold beef and a glass of beer," he answered, ringing the -bell. "I have been too busy to think of food, and I am likely to -be busier still this evening. By the way, Doctor, I shall want -your co-operation." - -"I shall be delighted." - -"You don't mind breaking the law?" - -"Not in the least." - -"Nor running a chance of arrest?" - -"Not in a good cause." - -"Oh, the cause is excellent!" - -"Then I am your man." - -"I was sure that I might rely on you." - -"But what is it you wish?" - -"When Mrs. Turner has brought in the tray I will make it clear to -you. Now," he said as he turned hungrily on the simple fare that -our landlady had provided, "I must discuss it while I eat, for I -have not much time. It is nearly five now. In two hours we must -be on the scene of action. Miss Irene, or Madame, rather, returns -from her drive at seven. We must be at Briony Lodge to meet her." - -"And what then?" - -"You must leave that to me. I have already arranged what is to -occur. There is only one point on which I must insist. You must -not interfere, come what may. You understand?" - -"I am to be neutral?" - -"To do nothing whatever. There will probably be some small -unpleasantness. Do not join in it. It will end in my being -conveyed into the house. Four or five minutes afterwards the -sitting-room window will open. You are to station yourself close -to that open window." - -"Yes." - -"You are to watch me, for I will be visible to you." - -"Yes." - -"And when I raise my hand--so--you will throw into the room what -I give you to throw, and will, at the same time, raise the cry of -fire. You quite follow me?" - -"Entirely." - -"It is nothing very formidable," he said, taking a long cigar-shaped -roll from his pocket. "It is an ordinary plumber's smoke-rocket, -fitted with a cap at either end to make it self-lighting. -Your task is confined to that. When you raise your cry of fire, -it will be taken up by quite a number of people. You may then -walk to the end of the street, and I will rejoin you in ten -minutes. I hope that I have made myself clear?" - -"I am to remain neutral, to get near the window, to watch you, -and at the signal to throw in this object, then to raise the cry -of fire, and to wait you at the corner of the street." - -"Precisely." - -"Then you may entirely rely on me." - -"That is excellent. I think, perhaps, it is almost time that I -prepare for the new role I have to play." - -He disappeared into his bedroom and returned in a few minutes in -the character of an amiable and simple-minded Nonconformist -clergyman. His broad black hat, his baggy trousers, his white -tie, his sympathetic smile, and general look of peering and -benevolent curiosity were such as Mr. John Hare alone could have -equalled. It was not merely that Holmes changed his costume. His -expression, his manner, his very soul seemed to vary with every -fresh part that he assumed. The stage lost a fine actor, even as -science lost an acute reasoner, when he became a specialist in -crime. - -It was a quarter past six when we left Baker Street, and it still -wanted ten minutes to the hour when we found ourselves in -Serpentine Avenue. It was already dusk, and the lamps were just -being lighted as we paced up and down in front of Briony Lodge, -waiting for the coming of its occupant. The house was just such -as I had pictured it from Sherlock Holmes' succinct description, -but the locality appeared to be less private than I expected. On -the contrary, for a small street in a quiet neighbourhood, it was -remarkably animated. There was a group of shabbily dressed men -smoking and laughing in a corner, a scissors-grinder with his -wheel, two guardsmen who were flirting with a nurse-girl, and -several well-dressed young men who were lounging up and down with -cigars in their mouths. - -"You see," remarked Holmes, as we paced to and fro in front of -the house, "this marriage rather simplifies matters. The -photograph becomes a double-edged weapon now. The chances are -that she would be as averse to its being seen by Mr. Godfrey -Norton, as our client is to its coming to the eyes of his -princess. Now the question is, Where are we to find the -photograph?" - -"Where, indeed?" - -"It is most unlikely that she carries it about with her. It is -cabinet size. Too large for easy concealment about a woman's -dress. She knows that the King is capable of having her waylaid -and searched. Two attempts of the sort have already been made. We -may take it, then, that she does not carry it about with her." - -"Where, then?" - -"Her banker or her lawyer. There is that double possibility. But -I am inclined to think neither. Women are naturally secretive, -and they like to do their own secreting. Why should she hand it -over to anyone else? She could trust her own guardianship, but -she could not tell what indirect or political influence might be -brought to bear upon a business man. Besides, remember that she -had resolved to use it within a few days. It must be where she -can lay her hands upon it. It must be in her own house." - -"But it has twice been burgled." - -"Pshaw! They did not know how to look." - -"But how will you look?" - -"I will not look." - -"What then?" - -"I will get her to show me." - -"But she will refuse." - -"She will not be able to. But I hear the rumble of wheels. It is -her carriage. Now carry out my orders to the letter." - -As he spoke the gleam of the side-lights of a carriage came round -the curve of the avenue. It was a smart little landau which -rattled up to the door of Briony Lodge. As it pulled up, one of -the loafing men at the corner dashed forward to open the door in -the hope of earning a copper, but was elbowed away by another -loafer, who had rushed up with the same intention. A fierce -quarrel broke out, which was increased by the two guardsmen, who -took sides with one of the loungers, and by the scissors-grinder, -who was equally hot upon the other side. A blow was struck, and -in an instant the lady, who had stepped from her carriage, was -the centre of a little knot of flushed and struggling men, who -struck savagely at each other with their fists and sticks. Holmes -dashed into the crowd to protect the lady; but just as he reached -her he gave a cry and dropped to the ground, with the blood -running freely down his face. At his fall the guardsmen took to -their heels in one direction and the loungers in the other, while -a number of better-dressed people, who had watched the scuffle -without taking part in it, crowded in to help the lady and to -attend to the injured man. Irene Adler, as I will still call her, -had hurried up the steps; but she stood at the top with her -superb figure outlined against the lights of the hall, looking -back into the street. - -"Is the poor gentleman much hurt?" she asked. - -"He is dead," cried several voices. - -"No, no, there's life in him!" shouted another. "But he'll be -gone before you can get him to hospital." - -"He's a brave fellow," said a woman. "They would have had the -lady's purse and watch if it hadn't been for him. They were a -gang, and a rough one, too. Ah, he's breathing now." - -"He can't lie in the street. May we bring him in, marm?" - -"Surely. Bring him into the sitting-room. There is a comfortable -sofa. This way, please!" - -Slowly and solemnly he was borne into Briony Lodge and laid out -in the principal room, while I still observed the proceedings -from my post by the window. The lamps had been lit, but the -blinds had not been drawn, so that I could see Holmes as he lay -upon the couch. I do not know whether he was seized with -compunction at that moment for the part he was playing, but I -know that I never felt more heartily ashamed of myself in my life -than when I saw the beautiful creature against whom I was -conspiring, or the grace and kindliness with which she waited -upon the injured man. And yet it would be the blackest treachery -to Holmes to draw back now from the part which he had intrusted -to me. I hardened my heart, and took the smoke-rocket from under -my ulster. After all, I thought, we are not injuring her. We are -but preventing her from injuring another. - -Holmes had sat up upon the couch, and I saw him motion like a man -who is in need of air. A maid rushed across and threw open the -window. At the same instant I saw him raise his hand and at the -signal I tossed my rocket into the room with a cry of "Fire!" The -word was no sooner out of my mouth than the whole crowd of -spectators, well dressed and ill--gentlemen, ostlers, and -servant-maids--joined in a general shriek of "Fire!" Thick clouds -of smoke curled through the room and out at the open window. I -caught a glimpse of rushing figures, and a moment later the voice -of Holmes from within assuring them that it was a false alarm. -Slipping through the shouting crowd I made my way to the corner -of the street, and in ten minutes was rejoiced to find my -friend's arm in mine, and to get away from the scene of uproar. -He walked swiftly and in silence for some few minutes until we -had turned down one of the quiet streets which lead towards the -Edgeware Road. - -"You did it very nicely, Doctor," he remarked. "Nothing could -have been better. It is all right." - -"You have the photograph?" - -"I know where it is." - -"And how did you find out?" - -"She showed me, as I told you she would." - -"I am still in the dark." - -"I do not wish to make a mystery," said he, laughing. "The matter -was perfectly simple. You, of course, saw that everyone in the -street was an accomplice. They were all engaged for the evening." - -"I guessed as much." - -"Then, when the row broke out, I had a little moist red paint in -the palm of my hand. I rushed forward, fell down, clapped my hand -to my face, and became a piteous spectacle. It is an old trick." - -"That also I could fathom." - -"Then they carried me in. She was bound to have me in. What else -could she do? And into her sitting-room, which was the very room -which I suspected. It lay between that and her bedroom, and I was -determined to see which. They laid me on a couch, I motioned for -air, they were compelled to open the window, and you had your -chance." - -"How did that help you?" - -"It was all-important. When a woman thinks that her house is on -fire, her instinct is at once to rush to the thing which she -values most. It is a perfectly overpowering impulse, and I have -more than once taken advantage of it. In the case of the -Darlington substitution scandal it was of use to me, and also in -the Arnsworth Castle business. A married woman grabs at her baby; -an unmarried one reaches for her jewel-box. Now it was clear to -me that our lady of to-day had nothing in the house more precious -to her than what we are in quest of. She would rush to secure it. -The alarm of fire was admirably done. The smoke and shouting were -enough to shake nerves of steel. She responded beautifully. The -photograph is in a recess behind a sliding panel just above the -right bell-pull. She was there in an instant, and I caught a -glimpse of it as she half-drew it out. When I cried out that it -was a false alarm, she replaced it, glanced at the rocket, rushed -from the room, and I have not seen her since. I rose, and, making -my excuses, escaped from the house. I hesitated whether to -attempt to secure the photograph at once; but the coachman had -come in, and as he was watching me narrowly it seemed safer to -wait. A little over-precipitance may ruin all." - -"And now?" I asked. - -"Our quest is practically finished. I shall call with the King -to-morrow, and with you, if you care to come with us. We will be -shown into the sitting-room to wait for the lady, but it is -probable that when she comes she may find neither us nor the -photograph. It might be a satisfaction to his Majesty to regain -it with his own hands." - -"And when will you call?" - -"At eight in the morning. She will not be up, so that we shall -have a clear field. Besides, we must be prompt, for this marriage -may mean a complete change in her life and habits. I must wire to -the King without delay." - -We had reached Baker Street and had stopped at the door. He was -searching his pockets for the key when someone passing said: - -"Good-night, Mister Sherlock Holmes." - -There were several people on the pavement at the time, but the -greeting appeared to come from a slim youth in an ulster who had -hurried by. - -"I've heard that voice before," said Holmes, staring down the -dimly lit street. "Now, I wonder who the deuce that could have -been." - - -III. - -I slept at Baker Street that night, and we were engaged upon our -toast and coffee in the morning when the King of Bohemia rushed -into the room. - -"You have really got it!" he cried, grasping Sherlock Holmes by -either shoulder and looking eagerly into his face. - -"Not yet." - -"But you have hopes?" - -"I have hopes." - -"Then, come. I am all impatience to be gone." - -"We must have a cab." - -"No, my brougham is waiting." - -"Then that will simplify matters." We descended and started off -once more for Briony Lodge. - -"Irene Adler is married," remarked Holmes. - -"Married! When?" - -"Yesterday." - -"But to whom?" - -"To an English lawyer named Norton." - -"But she could not love him." - -"I am in hopes that she does." - -"And why in hopes?" - -"Because it would spare your Majesty all fear of future -annoyance. If the lady loves her husband, she does not love your -Majesty. If she does not love your Majesty, there is no reason -why she should interfere with your Majesty's plan." - -"It is true. And yet--Well! I wish she had been of my own -station! What a queen she would have made!" He relapsed into a -moody silence, which was not broken until we drew up in -Serpentine Avenue. - -The door of Briony Lodge was open, and an elderly woman stood -upon the steps. She watched us with a sardonic eye as we stepped -from the brougham. - -"Mr. Sherlock Holmes, I believe?" said she. - -"I am Mr. Holmes," answered my companion, looking at her with a -questioning and rather startled gaze. - -"Indeed! My mistress told me that you were likely to call. She -left this morning with her husband by the 5:15 train from Charing -Cross for the Continent." - -"What!" Sherlock Holmes staggered back, white with chagrin and -surprise. "Do you mean that she has left England?" - -"Never to return." - -"And the papers?" asked the King hoarsely. "All is lost." - -"We shall see." He pushed past the servant and rushed into the -drawing-room, followed by the King and myself. The furniture was -scattered about in every direction, with dismantled shelves and -open drawers, as if the lady had hurriedly ransacked them before -her flight. Holmes rushed at the bell-pull, tore back a small -sliding shutter, and, plunging in his hand, pulled out a -photograph and a letter. The photograph was of Irene Adler -herself in evening dress, the letter was superscribed to -"Sherlock Holmes, Esq. To be left till called for." My friend -tore it open and we all three read it together. It was dated at -midnight of the preceding night and ran in this way: - -"MY DEAR MR. SHERLOCK HOLMES,--You really did it very well. You -took me in completely. Until after the alarm of fire, I had not a -suspicion. But then, when I found how I had betrayed myself, I -began to think. I had been warned against you months ago. I had -been told that if the King employed an agent it would certainly -be you. And your address had been given me. Yet, with all this, -you made me reveal what you wanted to know. Even after I became -suspicious, I found it hard to think evil of such a dear, kind -old clergyman. But, you know, I have been trained as an actress -myself. Male costume is nothing new to me. I often take advantage -of the freedom which it gives. I sent John, the coachman, to -watch you, ran up stairs, got into my walking-clothes, as I call -them, and came down just as you departed. - -"Well, I followed you to your door, and so made sure that I was -really an object of interest to the celebrated Mr. Sherlock -Holmes. Then I, rather imprudently, wished you good-night, and -started for the Temple to see my husband. - -"We both thought the best resource was flight, when pursued by -so formidable an antagonist; so you will find the nest empty when -you call to-morrow. As to the photograph, your client may rest in -peace. I love and am loved by a better man than he. The King may -do what he will without hindrance from one whom he has cruelly -wronged. I keep it only to safeguard myself, and to preserve a -weapon which will always secure me from any steps which he might -take in the future. I leave a photograph which he might care to -possess; and I remain, dear Mr. Sherlock Holmes, - - "Very truly yours, - "IRENE NORTON, ne ADLER." - -"What a woman--oh, what a woman!" cried the King of Bohemia, when -we had all three read this epistle. "Did I not tell you how quick -and resolute she was? Would she not have made an admirable queen? -Is it not a pity that she was not on my level?" - -"From what I have seen of the lady she seems indeed to be on a -very different level to your Majesty," said Holmes coldly. "I am -sorry that I have not been able to bring your Majesty's business -to a more successful conclusion." - -"On the contrary, my dear sir," cried the King; "nothing could be -more successful. I know that her word is inviolate. The -photograph is now as safe as if it were in the fire." - -"I am glad to hear your Majesty say so." - -"I am immensely indebted to you. Pray tell me in what way I can -reward you. This ring--" He slipped an emerald snake ring from -his finger and held it out upon the palm of his hand. - -"Your Majesty has something which I should value even more -highly," said Holmes. - -"You have but to name it." - -"This photograph!" - -The King stared at him in amazement. - -"Irene's photograph!" he cried. "Certainly, if you wish it." - -"I thank your Majesty. Then there is no more to be done in the -matter. I have the honour to wish you a very good-morning." He -bowed, and, turning away without observing the hand which the -King had stretched out to him, he set off in my company for his -chambers. - -And that was how a great scandal threatened to affect the kingdom -of Bohemia, and how the best plans of Mr. Sherlock Holmes were -beaten by a woman's wit. He used to make merry over the -cleverness of women, but I have not heard him do it of late. And -when he speaks of Irene Adler, or when he refers to her -photograph, it is always under the honourable title of the woman. - - - -ADVENTURE II. THE RED-HEADED LEAGUE - -I had called upon my friend, Mr. Sherlock Holmes, one day in the -autumn of last year and found him in deep conversation with a -very stout, florid-faced, elderly gentleman with fiery red hair. -With an apology for my intrusion, I was about to withdraw when -Holmes pulled me abruptly into the room and closed the door -behind me. - -"You could not possibly have come at a better time, my dear -Watson," he said cordially. - -"I was afraid that you were engaged." - -"So I am. Very much so." - -"Then I can wait in the next room." - -"Not at all. This gentleman, Mr. Wilson, has been my partner and -helper in many of my most successful cases, and I have no -doubt that he will be of the utmost use to me in yours also." - -The stout gentleman half rose from his chair and gave a bob of -greeting, with a quick little questioning glance from his small -fat-encircled eyes. - -"Try the settee," said Holmes, relapsing into his armchair and -putting his fingertips together, as was his custom when in -judicial moods. "I know, my dear Watson, that you share my love -of all that is bizarre and outside the conventions and humdrum -routine of everyday life. You have shown your relish for it by -the enthusiasm which has prompted you to chronicle, and, if you -will excuse my saying so, somewhat to embellish so many of my own -little adventures." - -"Your cases have indeed been of the greatest interest to me," I -observed. - -"You will remember that I remarked the other day, just before we -went into the very simple problem presented by Miss Mary -Sutherland, that for strange effects and extraordinary -combinations we must go to life itself, which is always far more -daring than any effort of the imagination." - -"A proposition which I took the liberty of doubting." - -"You did, Doctor, but none the less you must come round to my -view, for otherwise I shall keep on piling fact upon fact on you -until your reason breaks down under them and acknowledges me to -be right. Now, Mr. Jabez Wilson here has been good enough to call -upon me this morning, and to begin a narrative which promises to -be one of the most singular which I have listened to for some -time. You have heard me remark that the strangest and most unique -things are very often connected not with the larger but with the -smaller crimes, and occasionally, indeed, where there is room for -doubt whether any positive crime has been committed. As far as I -have heard it is impossible for me to say whether the present -case is an instance of crime or not, but the course of events is -certainly among the most singular that I have ever listened to. -Perhaps, Mr. Wilson, you would have the great kindness to -recommence your narrative. I ask you not merely because my friend -Dr. Watson has not heard the opening part but also because the -peculiar nature of the story makes me anxious to have every -possible detail from your lips. As a rule, when I have heard some -slight indication of the course of events, I am able to guide -myself by the thousands of other similar cases which occur to my -memory. In the present instance I am forced to admit that the -facts are, to the best of my belief, unique." - -The portly client puffed out his chest with an appearance of some -little pride and pulled a dirty and wrinkled newspaper from the -inside pocket of his greatcoat. As he glanced down the -advertisement column, with his head thrust forward and the paper -flattened out upon his knee, I took a good look at the man and -endeavoured, after the fashion of my companion, to read the -indications which might be presented by his dress or appearance. - -I did not gain very much, however, by my inspection. Our visitor -bore every mark of being an average commonplace British -tradesman, obese, pompous, and slow. He wore rather baggy grey -shepherd's check trousers, a not over-clean black frock-coat, -unbuttoned in the front, and a drab waistcoat with a heavy brassy -Albert chain, and a square pierced bit of metal dangling down as -an ornament. A frayed top-hat and a faded brown overcoat with a -wrinkled velvet collar lay upon a chair beside him. Altogether, -look as I would, there was nothing remarkable about the man save -his blazing red head, and the expression of extreme chagrin and -discontent upon his features. - -Sherlock Holmes' quick eye took in my occupation, and he shook -his head with a smile as he noticed my questioning glances. -"Beyond the obvious facts that he has at some time done manual -labour, that he takes snuff, that he is a Freemason, that he has -been in China, and that he has done a considerable amount of -writing lately, I can deduce nothing else." - -Mr. Jabez Wilson started up in his chair, with his forefinger -upon the paper, but his eyes upon my companion. - -"How, in the name of good-fortune, did you know all that, Mr. -Holmes?" he asked. "How did you know, for example, that I did -manual labour. It's as true as gospel, for I began as a ship's -carpenter." - -"Your hands, my dear sir. Your right hand is quite a size larger -than your left. You have worked with it, and the muscles are more -developed." - -"Well, the snuff, then, and the Freemasonry?" - -"I won't insult your intelligence by telling you how I read that, -especially as, rather against the strict rules of your order, you -use an arc-and-compass breastpin." - -"Ah, of course, I forgot that. But the writing?" - -"What else can be indicated by that right cuff so very shiny for -five inches, and the left one with the smooth patch near the -elbow where you rest it upon the desk?" - -"Well, but China?" - -"The fish that you have tattooed immediately above your right -wrist could only have been done in China. I have made a small -study of tattoo marks and have even contributed to the literature -of the subject. That trick of staining the fishes' scales of a -delicate pink is quite peculiar to China. When, in addition, I -see a Chinese coin hanging from your watch-chain, the matter -becomes even more simple." - -Mr. Jabez Wilson laughed heavily. "Well, I never!" said he. "I -thought at first that you had done something clever, but I see -that there was nothing in it, after all." - -"I begin to think, Watson," said Holmes, "that I make a mistake -in explaining. 'Omne ignotum pro magnifico,' you know, and my -poor little reputation, such as it is, will suffer shipwreck if I -am so candid. Can you not find the advertisement, Mr. Wilson?" - -"Yes, I have got it now," he answered with his thick red finger -planted halfway down the column. "Here it is. This is what began -it all. You just read it for yourself, sir." - -I took the paper from him and read as follows: - -"TO THE RED-HEADED LEAGUE: On account of the bequest of the late -Ezekiah Hopkins, of Lebanon, Pennsylvania, U. S. A., there is now -another vacancy open which entitles a member of the League to a -salary of 4 pounds a week for purely nominal services. All -red-headed men who are sound in body and mind and above the age -of twenty-one years, are eligible. Apply in person on Monday, at -eleven o'clock, to Duncan Ross, at the offices of the League, 7 -Pope's Court, Fleet Street." - -"What on earth does this mean?" I ejaculated after I had twice -read over the extraordinary announcement. - -Holmes chuckled and wriggled in his chair, as was his habit when -in high spirits. "It is a little off the beaten track, isn't it?" -said he. "And now, Mr. Wilson, off you go at scratch and tell us -all about yourself, your household, and the effect which this -advertisement had upon your fortunes. You will first make a note, -Doctor, of the paper and the date." - -"It is The Morning Chronicle of April 27, 1890. Just two months -ago." - -"Very good. Now, Mr. Wilson?" - -"Well, it is just as I have been telling you, Mr. Sherlock -Holmes," said Jabez Wilson, mopping his forehead; "I have a small -pawnbroker's business at Coburg Square, near the City. It's not a -very large affair, and of late years it has not done more than -just give me a living. I used to be able to keep two assistants, -but now I only keep one; and I would have a job to pay him but -that he is willing to come for half wages so as to learn the -business." - -"What is the name of this obliging youth?" asked Sherlock Holmes. - -"His name is Vincent Spaulding, and he's not such a youth, -either. It's hard to say his age. I should not wish a smarter -assistant, Mr. Holmes; and I know very well that he could better -himself and earn twice what I am able to give him. But, after -all, if he is satisfied, why should I put ideas in his head?" - -"Why, indeed? You seem most fortunate in having an employ who -comes under the full market price. It is not a common experience -among employers in this age. I don't know that your assistant is -not as remarkable as your advertisement." - -"Oh, he has his faults, too," said Mr. Wilson. "Never was such a -fellow for photography. Snapping away with a camera when he ought -to be improving his mind, and then diving down into the cellar -like a rabbit into its hole to develop his pictures. That is his -main fault, but on the whole he's a good worker. There's no vice -in him." - -"He is still with you, I presume?" - -"Yes, sir. He and a girl of fourteen, who does a bit of simple -cooking and keeps the place clean--that's all I have in the -house, for I am a widower and never had any family. We live very -quietly, sir, the three of us; and we keep a roof over our heads -and pay our debts, if we do nothing more. - -"The first thing that put us out was that advertisement. -Spaulding, he came down into the office just this day eight -weeks, with this very paper in his hand, and he says: - -"'I wish to the Lord, Mr. Wilson, that I was a red-headed man.' - -"'Why that?' I asks. - -"'Why,' says he, 'here's another vacancy on the League of the -Red-headed Men. It's worth quite a little fortune to any man who -gets it, and I understand that there are more vacancies than -there are men, so that the trustees are at their wits' end what -to do with the money. If my hair would only change colour, here's -a nice little crib all ready for me to step into.' - -"'Why, what is it, then?' I asked. You see, Mr. Holmes, I am a -very stay-at-home man, and as my business came to me instead of -my having to go to it, I was often weeks on end without putting -my foot over the door-mat. In that way I didn't know much of what -was going on outside, and I was always glad of a bit of news. - -"'Have you never heard of the League of the Red-headed Men?' he -asked with his eyes open. - -"'Never.' - -"'Why, I wonder at that, for you are eligible yourself for one -of the vacancies.' - -"'And what are they worth?' I asked. - -"'Oh, merely a couple of hundred a year, but the work is slight, -and it need not interfere very much with one's other -occupations.' - -"Well, you can easily think that that made me prick up my ears, -for the business has not been over-good for some years, and an -extra couple of hundred would have been very handy. - -"'Tell me all about it,' said I. - -"'Well,' said he, showing me the advertisement, 'you can see for -yourself that the League has a vacancy, and there is the address -where you should apply for particulars. As far as I can make out, -the League was founded by an American millionaire, Ezekiah -Hopkins, who was very peculiar in his ways. He was himself -red-headed, and he had a great sympathy for all red-headed men; -so when he died it was found that he had left his enormous -fortune in the hands of trustees, with instructions to apply the -interest to the providing of easy berths to men whose hair is of -that colour. From all I hear it is splendid pay and very little to -do.' - -"'But,' said I, 'there would be millions of red-headed men who -would apply.' - -"'Not so many as you might think,' he answered. 'You see it is -really confined to Londoners, and to grown men. This American had -started from London when he was young, and he wanted to do the -old town a good turn. Then, again, I have heard it is no use your -applying if your hair is light red, or dark red, or anything but -real bright, blazing, fiery red. Now, if you cared to apply, Mr. -Wilson, you would just walk in; but perhaps it would hardly be -worth your while to put yourself out of the way for the sake of a -few hundred pounds.' - -"Now, it is a fact, gentlemen, as you may see for yourselves, -that my hair is of a very full and rich tint, so that it seemed -to me that if there was to be any competition in the matter I -stood as good a chance as any man that I had ever met. Vincent -Spaulding seemed to know so much about it that I thought he might -prove useful, so I just ordered him to put up the shutters for -the day and to come right away with me. He was very willing to -have a holiday, so we shut the business up and started off for -the address that was given us in the advertisement. - -"I never hope to see such a sight as that again, Mr. Holmes. From -north, south, east, and west every man who had a shade of red in -his hair had tramped into the city to answer the advertisement. -Fleet Street was choked with red-headed folk, and Pope's Court -looked like a coster's orange barrow. I should not have thought -there were so many in the whole country as were brought together -by that single advertisement. Every shade of colour they -were--straw, lemon, orange, brick, Irish-setter, liver, clay; -but, as Spaulding said, there were not many who had the real -vivid flame-coloured tint. When I saw how many were waiting, I -would have given it up in despair; but Spaulding would not hear -of it. How he did it I could not imagine, but he pushed and -pulled and butted until he got me through the crowd, and right up -to the steps which led to the office. There was a double stream -upon the stair, some going up in hope, and some coming back -dejected; but we wedged in as well as we could and soon found -ourselves in the office." - -"Your experience has been a most entertaining one," remarked -Holmes as his client paused and refreshed his memory with a huge -pinch of snuff. "Pray continue your very interesting statement." - -"There was nothing in the office but a couple of wooden chairs -and a deal table, behind which sat a small man with a head that -was even redder than mine. He said a few words to each candidate -as he came up, and then he always managed to find some fault in -them which would disqualify them. Getting a vacancy did not seem -to be such a very easy matter, after all. However, when our turn -came the little man was much more favourable to me than to any of -the others, and he closed the door as we entered, so that he -might have a private word with us. - -"'This is Mr. Jabez Wilson,' said my assistant, 'and he is -willing to fill a vacancy in the League.' - -"'And he is admirably suited for it,' the other answered. 'He has -every requirement. I cannot recall when I have seen anything so -fine.' He took a step backward, cocked his head on one side, and -gazed at my hair until I felt quite bashful. Then suddenly he -plunged forward, wrung my hand, and congratulated me warmly on my -success. - -"'It would be injustice to hesitate,' said he. 'You will, -however, I am sure, excuse me for taking an obvious precaution.' -With that he seized my hair in both his hands, and tugged until I -yelled with the pain. 'There is water in your eyes,' said he as -he released me. 'I perceive that all is as it should be. But we -have to be careful, for we have twice been deceived by wigs and -once by paint. I could tell you tales of cobbler's wax which -would disgust you with human nature.' He stepped over to the -window and shouted through it at the top of his voice that the -vacancy was filled. A groan of disappointment came up from below, -and the folk all trooped away in different directions until there -was not a red-head to be seen except my own and that of the -manager. - -"'My name,' said he, 'is Mr. Duncan Ross, and I am myself one of -the pensioners upon the fund left by our noble benefactor. Are -you a married man, Mr. Wilson? Have you a family?' - -"I answered that I had not. - -"His face fell immediately. - -"'Dear me!' he said gravely, 'that is very serious indeed! I am -sorry to hear you say that. The fund was, of course, for the -propagation and spread of the red-heads as well as for their -maintenance. It is exceedingly unfortunate that you should be a -bachelor.' - -"My face lengthened at this, Mr. Holmes, for I thought that I was -not to have the vacancy after all; but after thinking it over for -a few minutes he said that it would be all right. - -"'In the case of another,' said he, 'the objection might be -fatal, but we must stretch a point in favour of a man with such a -head of hair as yours. When shall you be able to enter upon your -new duties?' - -"'Well, it is a little awkward, for I have a business already,' -said I. - -"'Oh, never mind about that, Mr. Wilson!' said Vincent Spaulding. -'I should be able to look after that for you.' - -"'What would be the hours?' I asked. - -"'Ten to two.' - -"Now a pawnbroker's business is mostly done of an evening, Mr. -Holmes, especially Thursday and Friday evening, which is just -before pay-day; so it would suit me very well to earn a little in -the mornings. Besides, I knew that my assistant was a good man, -and that he would see to anything that turned up. - -"'That would suit me very well,' said I. 'And the pay?' - -"'Is 4 pounds a week.' - -"'And the work?' - -"'Is purely nominal.' - -"'What do you call purely nominal?' - -"'Well, you have to be in the office, or at least in the -building, the whole time. If you leave, you forfeit your whole -position forever. The will is very clear upon that point. You -don't comply with the conditions if you budge from the office -during that time.' - -"'It's only four hours a day, and I should not think of leaving,' -said I. - -"'No excuse will avail,' said Mr. Duncan Ross; 'neither sickness -nor business nor anything else. There you must stay, or you lose -your billet.' - -"'And the work?' - -"'Is to copy out the "Encyclopaedia Britannica." There is the first -volume of it in that press. You must find your own ink, pens, and -blotting-paper, but we provide this table and chair. Will you be -ready to-morrow?' - -"'Certainly,' I answered. - -"'Then, good-bye, Mr. Jabez Wilson, and let me congratulate you -once more on the important position which you have been fortunate -enough to gain.' He bowed me out of the room and I went home with -my assistant, hardly knowing what to say or do, I was so pleased -at my own good fortune. - -"Well, I thought over the matter all day, and by evening I was in -low spirits again; for I had quite persuaded myself that the -whole affair must be some great hoax or fraud, though what its -object might be I could not imagine. It seemed altogether past -belief that anyone could make such a will, or that they would pay -such a sum for doing anything so simple as copying out the -'Encyclopaedia Britannica.' Vincent Spaulding did what he could to -cheer me up, but by bedtime I had reasoned myself out of the -whole thing. However, in the morning I determined to have a look -at it anyhow, so I bought a penny bottle of ink, and with a -quill-pen, and seven sheets of foolscap paper, I started off for -Pope's Court. - -"Well, to my surprise and delight, everything was as right as -possible. The table was set out ready for me, and Mr. Duncan Ross -was there to see that I got fairly to work. He started me off -upon the letter A, and then he left me; but he would drop in from -time to time to see that all was right with me. At two o'clock he -bade me good-day, complimented me upon the amount that I had -written, and locked the door of the office after me. - -"This went on day after day, Mr. Holmes, and on Saturday the -manager came in and planked down four golden sovereigns for my -week's work. It was the same next week, and the same the week -after. Every morning I was there at ten, and every afternoon I -left at two. By degrees Mr. Duncan Ross took to coming in only -once of a morning, and then, after a time, he did not come in at -all. Still, of course, I never dared to leave the room for an -instant, for I was not sure when he might come, and the billet -was such a good one, and suited me so well, that I would not risk -the loss of it. - -"Eight weeks passed away like this, and I had written about -Abbots and Archery and Armour and Architecture and Attica, and -hoped with diligence that I might get on to the B's before very -long. It cost me something in foolscap, and I had pretty nearly -filled a shelf with my writings. And then suddenly the whole -business came to an end." - -"To an end?" - -"Yes, sir. And no later than this morning. I went to my work as -usual at ten o'clock, but the door was shut and locked, with a -little square of cardboard hammered on to the middle of the -panel with a tack. Here it is, and you can read for yourself." - -He held up a piece of white cardboard about the size of a sheet -of note-paper. It read in this fashion: - - THE RED-HEADED LEAGUE - - IS - - DISSOLVED. - - October 9, 1890. - -Sherlock Holmes and I surveyed this curt announcement and the -rueful face behind it, until the comical side of the affair so -completely overtopped every other consideration that we both -burst out into a roar of laughter. - -"I cannot see that there is anything very funny," cried our -client, flushing up to the roots of his flaming head. "If you can -do nothing better than laugh at me, I can go elsewhere." - -"No, no," cried Holmes, shoving him back into the chair from -which he had half risen. "I really wouldn't miss your case for -the world. It is most refreshingly unusual. But there is, if you -will excuse my saying so, something just a little funny about it. -Pray what steps did you take when you found the card upon the -door?" - -"I was staggered, sir. I did not know what to do. Then I called -at the offices round, but none of them seemed to know anything -about it. Finally, I went to the landlord, who is an accountant -living on the ground-floor, and I asked him if he could tell me -what had become of the Red-headed League. He said that he had -never heard of any such body. Then I asked him who Mr. Duncan -Ross was. He answered that the name was new to him. - -"'Well,' said I, 'the gentleman at No. 4.' - -"'What, the red-headed man?' - -"'Yes.' - -"'Oh,' said he, 'his name was William Morris. He was a solicitor -and was using my room as a temporary convenience until his new -premises were ready. He moved out yesterday.' - -"'Where could I find him?' - -"'Oh, at his new offices. He did tell me the address. Yes, 17 -King Edward Street, near St. Paul's.' - -"I started off, Mr. Holmes, but when I got to that address it was -a manufactory of artificial knee-caps, and no one in it had ever -heard of either Mr. William Morris or Mr. Duncan Ross." - -"And what did you do then?" asked Holmes. - -"I went home to Saxe-Coburg Square, and I took the advice of my -assistant. But he could not help me in any way. He could only say -that if I waited I should hear by post. But that was not quite -good enough, Mr. Holmes. I did not wish to lose such a place -without a struggle, so, as I had heard that you were good enough -to give advice to poor folk who were in need of it, I came right -away to you." - -"And you did very wisely," said Holmes. "Your case is an -exceedingly remarkable one, and I shall be happy to look into it. -From what you have told me I think that it is possible that -graver issues hang from it than might at first sight appear." - -"Grave enough!" said Mr. Jabez Wilson. "Why, I have lost four -pound a week." - -"As far as you are personally concerned," remarked Holmes, "I do -not see that you have any grievance against this extraordinary -league. On the contrary, you are, as I understand, richer by some -30 pounds, to say nothing of the minute knowledge which you have -gained on every subject which comes under the letter A. You have -lost nothing by them." - -"No, sir. But I want to find out about them, and who they are, -and what their object was in playing this prank--if it was a -prank--upon me. It was a pretty expensive joke for them, for it -cost them two and thirty pounds." - -"We shall endeavour to clear up these points for you. And, first, -one or two questions, Mr. Wilson. This assistant of yours who -first called your attention to the advertisement--how long had he -been with you?" - -"About a month then." - -"How did he come?" - -"In answer to an advertisement." - -"Was he the only applicant?" - -"No, I had a dozen." - -"Why did you pick him?" - -"Because he was handy and would come cheap." - -"At half-wages, in fact." - -"Yes." - -"What is he like, this Vincent Spaulding?" - -"Small, stout-built, very quick in his ways, no hair on his face, -though he's not short of thirty. Has a white splash of acid upon -his forehead." - -Holmes sat up in his chair in considerable excitement. "I thought -as much," said he. "Have you ever observed that his ears are -pierced for earrings?" - -"Yes, sir. He told me that a gipsy had done it for him when he -was a lad." - -"Hum!" said Holmes, sinking back in deep thought. "He is still -with you?" - -"Oh, yes, sir; I have only just left him." - -"And has your business been attended to in your absence?" - -"Nothing to complain of, sir. There's never very much to do of a -morning." - -"That will do, Mr. Wilson. I shall be happy to give you an -opinion upon the subject in the course of a day or two. To-day is -Saturday, and I hope that by Monday we may come to a conclusion." - -"Well, Watson," said Holmes when our visitor had left us, "what -do you make of it all?" - -"I make nothing of it," I answered frankly. "It is a most -mysterious business." - -"As a rule," said Holmes, "the more bizarre a thing is the less -mysterious it proves to be. It is your commonplace, featureless -crimes which are really puzzling, just as a commonplace face is -the most difficult to identify. But I must be prompt over this -matter." - -"What are you going to do, then?" I asked. - -"To smoke," he answered. "It is quite a three pipe problem, and I -beg that you won't speak to me for fifty minutes." He curled -himself up in his chair, with his thin knees drawn up to his -hawk-like nose, and there he sat with his eyes closed and his -black clay pipe thrusting out like the bill of some strange bird. -I had come to the conclusion that he had dropped asleep, and -indeed was nodding myself, when he suddenly sprang out of his -chair with the gesture of a man who has made up his mind and put -his pipe down upon the mantelpiece. - -"Sarasate plays at the St. James's Hall this afternoon," he -remarked. "What do you think, Watson? Could your patients spare -you for a few hours?" - -"I have nothing to do to-day. My practice is never very -absorbing." - -"Then put on your hat and come. I am going through the City -first, and we can have some lunch on the way. I observe that -there is a good deal of German music on the programme, which is -rather more to my taste than Italian or French. It is -introspective, and I want to introspect. Come along!" - -We travelled by the Underground as far as Aldersgate; and a short -walk took us to Saxe-Coburg Square, the scene of the singular -story which we had listened to in the morning. It was a poky, -little, shabby-genteel place, where four lines of dingy -two-storied brick houses looked out into a small railed-in -enclosure, where a lawn of weedy grass and a few clumps of faded -laurel-bushes made a hard fight against a smoke-laden and -uncongenial atmosphere. Three gilt balls and a brown board with -"JABEZ WILSON" in white letters, upon a corner house, announced -the place where our red-headed client carried on his business. -Sherlock Holmes stopped in front of it with his head on one side -and looked it all over, with his eyes shining brightly between -puckered lids. Then he walked slowly up the street, and then down -again to the corner, still looking keenly at the houses. Finally -he returned to the pawnbroker's, and, having thumped vigorously -upon the pavement with his stick two or three times, he went up -to the door and knocked. It was instantly opened by a -bright-looking, clean-shaven young fellow, who asked him to step -in. - -"Thank you," said Holmes, "I only wished to ask you how you would -go from here to the Strand." - -"Third right, fourth left," answered the assistant promptly, -closing the door. - -"Smart fellow, that," observed Holmes as we walked away. "He is, -in my judgment, the fourth smartest man in London, and for daring -I am not sure that he has not a claim to be third. I have known -something of him before." - -"Evidently," said I, "Mr. Wilson's assistant counts for a good -deal in this mystery of the Red-headed League. I am sure that you -inquired your way merely in order that you might see him." - -"Not him." - -"What then?" - -"The knees of his trousers." - -"And what did you see?" - -"What I expected to see." - -"Why did you beat the pavement?" - -"My dear doctor, this is a time for observation, not for talk. We -are spies in an enemy's country. We know something of Saxe-Coburg -Square. Let us now explore the parts which lie behind it." - -The road in which we found ourselves as we turned round the -corner from the retired Saxe-Coburg Square presented as great a -contrast to it as the front of a picture does to the back. It was -one of the main arteries which conveyed the traffic of the City -to the north and west. The roadway was blocked with the immense -stream of commerce flowing in a double tide inward and outward, -while the footpaths were black with the hurrying swarm of -pedestrians. It was difficult to realise as we looked at the line -of fine shops and stately business premises that they really -abutted on the other side upon the faded and stagnant square -which we had just quitted. - -"Let me see," said Holmes, standing at the corner and glancing -along the line, "I should like just to remember the order of the -houses here. It is a hobby of mine to have an exact knowledge of -London. There is Mortimer's, the tobacconist, the little -newspaper shop, the Coburg branch of the City and Suburban Bank, -the Vegetarian Restaurant, and McFarlane's carriage-building -depot. That carries us right on to the other block. And now, -Doctor, we've done our work, so it's time we had some play. A -sandwich and a cup of coffee, and then off to violin-land, where -all is sweetness and delicacy and harmony, and there are no -red-headed clients to vex us with their conundrums." - -My friend was an enthusiastic musician, being himself not only a -very capable performer but a composer of no ordinary merit. All -the afternoon he sat in the stalls wrapped in the most perfect -happiness, gently waving his long, thin fingers in time to the -music, while his gently smiling face and his languid, dreamy eyes -were as unlike those of Holmes the sleuth-hound, Holmes the -relentless, keen-witted, ready-handed criminal agent, as it was -possible to conceive. In his singular character the dual nature -alternately asserted itself, and his extreme exactness and -astuteness represented, as I have often thought, the reaction -against the poetic and contemplative mood which occasionally -predominated in him. The swing of his nature took him from -extreme languor to devouring energy; and, as I knew well, he was -never so truly formidable as when, for days on end, he had been -lounging in his armchair amid his improvisations and his -black-letter editions. Then it was that the lust of the chase -would suddenly come upon him, and that his brilliant reasoning -power would rise to the level of intuition, until those who were -unacquainted with his methods would look askance at him as on a -man whose knowledge was not that of other mortals. When I saw him -that afternoon so enwrapped in the music at St. James's Hall I -felt that an evil time might be coming upon those whom he had set -himself to hunt down. - -"You want to go home, no doubt, Doctor," he remarked as we -emerged. - -"Yes, it would be as well." - -"And I have some business to do which will take some hours. This -business at Coburg Square is serious." - -"Why serious?" - -"A considerable crime is in contemplation. I have every reason to -believe that we shall be in time to stop it. But to-day being -Saturday rather complicates matters. I shall want your help -to-night." - -"At what time?" - -"Ten will be early enough." - -"I shall be at Baker Street at ten." - -"Very well. And, I say, Doctor, there may be some little danger, -so kindly put your army revolver in your pocket." He waved his -hand, turned on his heel, and disappeared in an instant among the -crowd. - -I trust that I am not more dense than my neighbours, but I was -always oppressed with a sense of my own stupidity in my dealings -with Sherlock Holmes. Here I had heard what he had heard, I had -seen what he had seen, and yet from his words it was evident that -he saw clearly not only what had happened but what was about to -happen, while to me the whole business was still confused and -grotesque. As I drove home to my house in Kensington I thought -over it all, from the extraordinary story of the red-headed -copier of the "Encyclopaedia" down to the visit to Saxe-Coburg -Square, and the ominous words with which he had parted from me. -What was this nocturnal expedition, and why should I go armed? -Where were we going, and what were we to do? I had the hint from -Holmes that this smooth-faced pawnbroker's assistant was a -formidable man--a man who might play a deep game. I tried to -puzzle it out, but gave it up in despair and set the matter aside -until night should bring an explanation. - -It was a quarter-past nine when I started from home and made my -way across the Park, and so through Oxford Street to Baker -Street. Two hansoms were standing at the door, and as I entered -the passage I heard the sound of voices from above. On entering -his room I found Holmes in animated conversation with two men, -one of whom I recognised as Peter Jones, the official police -agent, while the other was a long, thin, sad-faced man, with a -very shiny hat and oppressively respectable frock-coat. - -"Ha! Our party is complete," said Holmes, buttoning up his -pea-jacket and taking his heavy hunting crop from the rack. -"Watson, I think you know Mr. Jones, of Scotland Yard? Let me -introduce you to Mr. Merryweather, who is to be our companion in -to-night's adventure." - -"We're hunting in couples again, Doctor, you see," said Jones in -his consequential way. "Our friend here is a wonderful man for -starting a chase. All he wants is an old dog to help him to do -the running down." - -"I hope a wild goose may not prove to be the end of our chase," -observed Mr. Merryweather gloomily. - -"You may place considerable confidence in Mr. Holmes, sir," said -the police agent loftily. "He has his own little methods, which -are, if he won't mind my saying so, just a little too theoretical -and fantastic, but he has the makings of a detective in him. It -is not too much to say that once or twice, as in that business of -the Sholto murder and the Agra treasure, he has been more nearly -correct than the official force." - -"Oh, if you say so, Mr. Jones, it is all right," said the -stranger with deference. "Still, I confess that I miss my rubber. -It is the first Saturday night for seven-and-twenty years that I -have not had my rubber." - -"I think you will find," said Sherlock Holmes, "that you will -play for a higher stake to-night than you have ever done yet, and -that the play will be more exciting. For you, Mr. Merryweather, -the stake will be some 30,000 pounds; and for you, Jones, it will -be the man upon whom you wish to lay your hands." - -"John Clay, the murderer, thief, smasher, and forger. He's a -young man, Mr. Merryweather, but he is at the head of his -profession, and I would rather have my bracelets on him than on -any criminal in London. He's a remarkable man, is young John -Clay. His grandfather was a royal duke, and he himself has been -to Eton and Oxford. His brain is as cunning as his fingers, and -though we meet signs of him at every turn, we never know where to -find the man himself. He'll crack a crib in Scotland one week, -and be raising money to build an orphanage in Cornwall the next. -I've been on his track for years and have never set eyes on him -yet." - -"I hope that I may have the pleasure of introducing you to-night. -I've had one or two little turns also with Mr. John Clay, and I -agree with you that he is at the head of his profession. It is -past ten, however, and quite time that we started. If you two -will take the first hansom, Watson and I will follow in the -second." - -Sherlock Holmes was not very communicative during the long drive -and lay back in the cab humming the tunes which he had heard in -the afternoon. We rattled through an endless labyrinth of gas-lit -streets until we emerged into Farrington Street. - -"We are close there now," my friend remarked. "This fellow -Merryweather is a bank director, and personally interested in the -matter. I thought it as well to have Jones with us also. He is -not a bad fellow, though an absolute imbecile in his profession. -He has one positive virtue. He is as brave as a bulldog and as -tenacious as a lobster if he gets his claws upon anyone. Here we -are, and they are waiting for us." - -We had reached the same crowded thoroughfare in which we had -found ourselves in the morning. Our cabs were dismissed, and, -following the guidance of Mr. Merryweather, we passed down a -narrow passage and through a side door, which he opened for us. -Within there was a small corridor, which ended in a very massive -iron gate. This also was opened, and led down a flight of winding -stone steps, which terminated at another formidable gate. Mr. -Merryweather stopped to light a lantern, and then conducted us -down a dark, earth-smelling passage, and so, after opening a -third door, into a huge vault or cellar, which was piled all -round with crates and massive boxes. - -"You are not very vulnerable from above," Holmes remarked as he -held up the lantern and gazed about him. - -"Nor from below," said Mr. Merryweather, striking his stick upon -the flags which lined the floor. "Why, dear me, it sounds quite -hollow!" he remarked, looking up in surprise. - -"I must really ask you to be a little more quiet!" said Holmes -severely. "You have already imperilled the whole success of our -expedition. Might I beg that you would have the goodness to sit -down upon one of those boxes, and not to interfere?" - -The solemn Mr. Merryweather perched himself upon a crate, with a -very injured expression upon his face, while Holmes fell upon his -knees upon the floor and, with the lantern and a magnifying lens, -began to examine minutely the cracks between the stones. A few -seconds sufficed to satisfy him, for he sprang to his feet again -and put his glass in his pocket. - -"We have at least an hour before us," he remarked, "for they can -hardly take any steps until the good pawnbroker is safely in bed. -Then they will not lose a minute, for the sooner they do their -work the longer time they will have for their escape. We are at -present, Doctor--as no doubt you have divined--in the cellar of -the City branch of one of the principal London banks. Mr. -Merryweather is the chairman of directors, and he will explain to -you that there are reasons why the more daring criminals of -London should take a considerable interest in this cellar at -present." - -"It is our French gold," whispered the director. "We have had -several warnings that an attempt might be made upon it." - -"Your French gold?" - -"Yes. We had occasion some months ago to strengthen our resources -and borrowed for that purpose 30,000 napoleons from the Bank of -France. It has become known that we have never had occasion to -unpack the money, and that it is still lying in our cellar. The -crate upon which I sit contains 2,000 napoleons packed between -layers of lead foil. Our reserve of bullion is much larger at -present than is usually kept in a single branch office, and the -directors have had misgivings upon the subject." - -"Which were very well justified," observed Holmes. "And now it is -time that we arranged our little plans. I expect that within an -hour matters will come to a head. In the meantime Mr. -Merryweather, we must put the screen over that dark lantern." - -"And sit in the dark?" - -"I am afraid so. I had brought a pack of cards in my pocket, and -I thought that, as we were a partie carre, you might have your -rubber after all. But I see that the enemy's preparations have -gone so far that we cannot risk the presence of a light. And, -first of all, we must choose our positions. These are daring men, -and though we shall take them at a disadvantage, they may do us -some harm unless we are careful. I shall stand behind this crate, -and do you conceal yourselves behind those. Then, when I flash a -light upon them, close in swiftly. If they fire, Watson, have no -compunction about shooting them down." - -I placed my revolver, cocked, upon the top of the wooden case -behind which I crouched. Holmes shot the slide across the front -of his lantern and left us in pitch darkness--such an absolute -darkness as I have never before experienced. The smell of hot -metal remained to assure us that the light was still there, ready -to flash out at a moment's notice. To me, with my nerves worked -up to a pitch of expectancy, there was something depressing and -subduing in the sudden gloom, and in the cold dank air of the -vault. - -"They have but one retreat," whispered Holmes. "That is back -through the house into Saxe-Coburg Square. I hope that you have -done what I asked you, Jones?" - -"I have an inspector and two officers waiting at the front door." - -"Then we have stopped all the holes. And now we must be silent -and wait." - -What a time it seemed! From comparing notes afterwards it was but -an hour and a quarter, yet it appeared to me that the night must -have almost gone and the dawn be breaking above us. My limbs -were weary and stiff, for I feared to change my position; yet my -nerves were worked up to the highest pitch of tension, and my -hearing was so acute that I could not only hear the gentle -breathing of my companions, but I could distinguish the deeper, -heavier in-breath of the bulky Jones from the thin, sighing note -of the bank director. From my position I could look over the case -in the direction of the floor. Suddenly my eyes caught the glint -of a light. - -At first it was but a lurid spark upon the stone pavement. Then -it lengthened out until it became a yellow line, and then, -without any warning or sound, a gash seemed to open and a hand -appeared, a white, almost womanly hand, which felt about in the -centre of the little area of light. For a minute or more the -hand, with its writhing fingers, protruded out of the floor. Then -it was withdrawn as suddenly as it appeared, and all was dark -again save the single lurid spark which marked a chink between -the stones. - -Its disappearance, however, was but momentary. With a rending, -tearing sound, one of the broad, white stones turned over upon -its side and left a square, gaping hole, through which streamed -the light of a lantern. Over the edge there peeped a clean-cut, -boyish face, which looked keenly about it, and then, with a hand -on either side of the aperture, drew itself shoulder-high and -waist-high, until one knee rested upon the edge. In another -instant he stood at the side of the hole and was hauling after -him a companion, lithe and small like himself, with a pale face -and a shock of very red hair. - -"It's all clear," he whispered. "Have you the chisel and the -bags? Great Scott! Jump, Archie, jump, and I'll swing for it!" - -Sherlock Holmes had sprung out and seized the intruder by the -collar. The other dived down the hole, and I heard the sound of -rending cloth as Jones clutched at his skirts. The light flashed -upon the barrel of a revolver, but Holmes' hunting crop came -down on the man's wrist, and the pistol clinked upon the stone -floor. - -"It's no use, John Clay," said Holmes blandly. "You have no -chance at all." - -"So I see," the other answered with the utmost coolness. "I fancy -that my pal is all right, though I see you have got his -coat-tails." - -"There are three men waiting for him at the door," said Holmes. - -"Oh, indeed! You seem to have done the thing very completely. I -must compliment you." - -"And I you," Holmes answered. "Your red-headed idea was very new -and effective." - -"You'll see your pal again presently," said Jones. "He's quicker -at climbing down holes than I am. Just hold out while I fix the -derbies." - -"I beg that you will not touch me with your filthy hands," -remarked our prisoner as the handcuffs clattered upon his wrists. -"You may not be aware that I have royal blood in my veins. Have -the goodness, also, when you address me always to say 'sir' and -'please.'" - -"All right," said Jones with a stare and a snigger. "Well, would -you please, sir, march upstairs, where we can get a cab to carry -your Highness to the police-station?" - -"That is better," said John Clay serenely. He made a sweeping bow -to the three of us and walked quietly off in the custody of the -detective. - -"Really, Mr. Holmes," said Mr. Merryweather as we followed them -from the cellar, "I do not know how the bank can thank you or -repay you. There is no doubt that you have detected and defeated -in the most complete manner one of the most determined attempts -at bank robbery that have ever come within my experience." - -"I have had one or two little scores of my own to settle with Mr. -John Clay," said Holmes. "I have been at some small expense over -this matter, which I shall expect the bank to refund, but beyond -that I am amply repaid by having had an experience which is in -many ways unique, and by hearing the very remarkable narrative of -the Red-headed League." - - -"You see, Watson," he explained in the early hours of the morning -as we sat over a glass of whisky and soda in Baker Street, "it -was perfectly obvious from the first that the only possible -object of this rather fantastic business of the advertisement of -the League, and the copying of the 'Encyclopaedia,' must be to get -this not over-bright pawnbroker out of the way for a number of -hours every day. It was a curious way of managing it, but, -really, it would be difficult to suggest a better. The method was -no doubt suggested to Clay's ingenious mind by the colour of his -accomplice's hair. The 4 pounds a week was a lure which must draw -him, and what was it to them, who were playing for thousands? -They put in the advertisement, one rogue has the temporary -office, the other rogue incites the man to apply for it, and -together they manage to secure his absence every morning in the -week. From the time that I heard of the assistant having come for -half wages, it was obvious to me that he had some strong motive -for securing the situation." - -"But how could you guess what the motive was?" - -"Had there been women in the house, I should have suspected a -mere vulgar intrigue. That, however, was out of the question. The -man's business was a small one, and there was nothing in his -house which could account for such elaborate preparations, and -such an expenditure as they were at. It must, then, be something -out of the house. What could it be? I thought of the assistant's -fondness for photography, and his trick of vanishing into the -cellar. The cellar! There was the end of this tangled clue. Then -I made inquiries as to this mysterious assistant and found that I -had to deal with one of the coolest and most daring criminals in -London. He was doing something in the cellar--something which -took many hours a day for months on end. What could it be, once -more? I could think of nothing save that he was running a tunnel -to some other building. - -"So far I had got when we went to visit the scene of action. I -surprised you by beating upon the pavement with my stick. I was -ascertaining whether the cellar stretched out in front or behind. -It was not in front. Then I rang the bell, and, as I hoped, the -assistant answered it. We have had some skirmishes, but we had -never set eyes upon each other before. I hardly looked at his -face. His knees were what I wished to see. You must yourself have -remarked how worn, wrinkled, and stained they were. They spoke of -those hours of burrowing. The only remaining point was what they -were burrowing for. I walked round the corner, saw the City and -Suburban Bank abutted on our friend's premises, and felt that I -had solved my problem. When you drove home after the concert I -called upon Scotland Yard and upon the chairman of the bank -directors, with the result that you have seen." - -"And how could you tell that they would make their attempt -to-night?" I asked. - -"Well, when they closed their League offices that was a sign that -they cared no longer about Mr. Jabez Wilson's presence--in other -words, that they had completed their tunnel. But it was essential -that they should use it soon, as it might be discovered, or the -bullion might be removed. Saturday would suit them better than -any other day, as it would give them two days for their escape. -For all these reasons I expected them to come to-night." - -"You reasoned it out beautifully," I exclaimed in unfeigned -admiration. "It is so long a chain, and yet every link rings -true." - -"It saved me from ennui," he answered, yawning. "Alas! I already -feel it closing in upon me. My life is spent in one long effort -to escape from the commonplaces of existence. These little -problems help me to do so." - -"And you are a benefactor of the race," said I. - -He shrugged his shoulders. "Well, perhaps, after all, it is of -some little use," he remarked. "'L'homme c'est rien--l'oeuvre -c'est tout,' as Gustave Flaubert wrote to George Sand." - - - -ADVENTURE III. A CASE OF IDENTITY - -"My dear fellow," said Sherlock Holmes as we sat on either side -of the fire in his lodgings at Baker Street, "life is infinitely -stranger than anything which the mind of man could invent. We -would not dare to conceive the things which are really mere -commonplaces of existence. If we could fly out of that window -hand in hand, hover over this great city, gently remove the -roofs, and peep in at the queer things which are going on, the -strange coincidences, the plannings, the cross-purposes, the -wonderful chains of events, working through generations, and -leading to the most outr results, it would make all fiction with -its conventionalities and foreseen conclusions most stale and -unprofitable." - -"And yet I am not convinced of it," I answered. "The cases which -come to light in the papers are, as a rule, bald enough, and -vulgar enough. We have in our police reports realism pushed to -its extreme limits, and yet the result is, it must be confessed, -neither fascinating nor artistic." - -"A certain selection and discretion must be used in producing a -realistic effect," remarked Holmes. "This is wanting in the -police report, where more stress is laid, perhaps, upon the -platitudes of the magistrate than upon the details, which to an -observer contain the vital essence of the whole matter. Depend -upon it, there is nothing so unnatural as the commonplace." - -I smiled and shook my head. "I can quite understand your thinking -so," I said. "Of course, in your position of unofficial adviser -and helper to everybody who is absolutely puzzled, throughout -three continents, you are brought in contact with all that is -strange and bizarre. But here"--I picked up the morning paper -from the ground--"let us put it to a practical test. Here is the -first heading upon which I come. 'A husband's cruelty to his -wife.' There is half a column of print, but I know without -reading it that it is all perfectly familiar to me. There is, of -course, the other woman, the drink, the push, the blow, the -bruise, the sympathetic sister or landlady. The crudest of -writers could invent nothing more crude." - -"Indeed, your example is an unfortunate one for your argument," -said Holmes, taking the paper and glancing his eye down it. "This -is the Dundas separation case, and, as it happens, I was engaged -in clearing up some small points in connection with it. The -husband was a teetotaler, there was no other woman, and the -conduct complained of was that he had drifted into the habit of -winding up every meal by taking out his false teeth and hurling -them at his wife, which, you will allow, is not an action likely -to occur to the imagination of the average story-teller. Take a -pinch of snuff, Doctor, and acknowledge that I have scored over -you in your example." - -He held out his snuffbox of old gold, with a great amethyst in -the centre of the lid. Its splendour was in such contrast to his -homely ways and simple life that I could not help commenting upon -it. - -"Ah," said he, "I forgot that I had not seen you for some weeks. -It is a little souvenir from the King of Bohemia in return for my -assistance in the case of the Irene Adler papers." - -"And the ring?" I asked, glancing at a remarkable brilliant which -sparkled upon his finger. - -"It was from the reigning family of Holland, though the matter in -which I served them was of such delicacy that I cannot confide it -even to you, who have been good enough to chronicle one or two of -my little problems." - -"And have you any on hand just now?" I asked with interest. - -"Some ten or twelve, but none which present any feature of -interest. They are important, you understand, without being -interesting. Indeed, I have found that it is usually in -unimportant matters that there is a field for the observation, -and for the quick analysis of cause and effect which gives the -charm to an investigation. The larger crimes are apt to be the -simpler, for the bigger the crime the more obvious, as a rule, is -the motive. In these cases, save for one rather intricate matter -which has been referred to me from Marseilles, there is nothing -which presents any features of interest. It is possible, however, -that I may have something better before very many minutes are -over, for this is one of my clients, or I am much mistaken." - -He had risen from his chair and was standing between the parted -blinds gazing down into the dull neutral-tinted London street. -Looking over his shoulder, I saw that on the pavement opposite -there stood a large woman with a heavy fur boa round her neck, -and a large curling red feather in a broad-brimmed hat which was -tilted in a coquettish Duchess of Devonshire fashion over her -ear. From under this great panoply she peeped up in a nervous, -hesitating fashion at our windows, while her body oscillated -backward and forward, and her fingers fidgeted with her glove -buttons. Suddenly, with a plunge, as of the swimmer who leaves -the bank, she hurried across the road, and we heard the sharp -clang of the bell. - -"I have seen those symptoms before," said Holmes, throwing his -cigarette into the fire. "Oscillation upon the pavement always -means an affaire de coeur. She would like advice, but is not sure -that the matter is not too delicate for communication. And yet -even here we may discriminate. When a woman has been seriously -wronged by a man she no longer oscillates, and the usual symptom -is a broken bell wire. Here we may take it that there is a love -matter, but that the maiden is not so much angry as perplexed, or -grieved. But here she comes in person to resolve our doubts." - -As he spoke there was a tap at the door, and the boy in buttons -entered to announce Miss Mary Sutherland, while the lady herself -loomed behind his small black figure like a full-sailed -merchant-man behind a tiny pilot boat. Sherlock Holmes welcomed -her with the easy courtesy for which he was remarkable, and, -having closed the door and bowed her into an armchair, he looked -her over in the minute and yet abstracted fashion which was -peculiar to him. - -"Do you not find," he said, "that with your short sight it is a -little trying to do so much typewriting?" - -"I did at first," she answered, "but now I know where the letters -are without looking." Then, suddenly realising the full purport -of his words, she gave a violent start and looked up, with fear -and astonishment upon her broad, good-humoured face. "You've -heard about me, Mr. Holmes," she cried, "else how could you know -all that?" - -"Never mind," said Holmes, laughing; "it is my business to know -things. Perhaps I have trained myself to see what others -overlook. If not, why should you come to consult me?" - -"I came to you, sir, because I heard of you from Mrs. Etherege, -whose husband you found so easy when the police and everyone had -given him up for dead. Oh, Mr. Holmes, I wish you would do as -much for me. I'm not rich, but still I have a hundred a year in -my own right, besides the little that I make by the machine, and -I would give it all to know what has become of Mr. Hosmer Angel." - -"Why did you come away to consult me in such a hurry?" asked -Sherlock Holmes, with his finger-tips together and his eyes to -the ceiling. - -Again a startled look came over the somewhat vacuous face of Miss -Mary Sutherland. "Yes, I did bang out of the house," she said, -"for it made me angry to see the easy way in which Mr. -Windibank--that is, my father--took it all. He would not go to -the police, and he would not go to you, and so at last, as he -would do nothing and kept on saying that there was no harm done, -it made me mad, and I just on with my things and came right away -to you." - -"Your father," said Holmes, "your stepfather, surely, since the -name is different." - -"Yes, my stepfather. I call him father, though it sounds funny, -too, for he is only five years and two months older than myself." - -"And your mother is alive?" - -"Oh, yes, mother is alive and well. I wasn't best pleased, Mr. -Holmes, when she married again so soon after father's death, and -a man who was nearly fifteen years younger than herself. Father -was a plumber in the Tottenham Court Road, and he left a tidy -business behind him, which mother carried on with Mr. Hardy, the -foreman; but when Mr. Windibank came he made her sell the -business, for he was very superior, being a traveller in wines. -They got 4700 pounds for the goodwill and interest, which wasn't -near as much as father could have got if he had been alive." - -I had expected to see Sherlock Holmes impatient under this -rambling and inconsequential narrative, but, on the contrary, he -had listened with the greatest concentration of attention. - -"Your own little income," he asked, "does it come out of the -business?" - -"Oh, no, sir. It is quite separate and was left me by my uncle -Ned in Auckland. It is in New Zealand stock, paying 4 1/2 per -cent. Two thousand five hundred pounds was the amount, but I can -only touch the interest." - -"You interest me extremely," said Holmes. "And since you draw so -large a sum as a hundred a year, with what you earn into the -bargain, you no doubt travel a little and indulge yourself in -every way. I believe that a single lady can get on very nicely -upon an income of about 60 pounds." - -"I could do with much less than that, Mr. Holmes, but you -understand that as long as I live at home I don't wish to be a -burden to them, and so they have the use of the money just while -I am staying with them. Of course, that is only just for the -time. Mr. Windibank draws my interest every quarter and pays it -over to mother, and I find that I can do pretty well with what I -earn at typewriting. It brings me twopence a sheet, and I can -often do from fifteen to twenty sheets in a day." - -"You have made your position very clear to me," said Holmes. -"This is my friend, Dr. Watson, before whom you can speak as -freely as before myself. Kindly tell us now all about your -connection with Mr. Hosmer Angel." - -A flush stole over Miss Sutherland's face, and she picked -nervously at the fringe of her jacket. "I met him first at the -gasfitters' ball," she said. "They used to send father tickets -when he was alive, and then afterwards they remembered us, and -sent them to mother. Mr. Windibank did not wish us to go. He -never did wish us to go anywhere. He would get quite mad if I -wanted so much as to join a Sunday-school treat. But this time I -was set on going, and I would go; for what right had he to -prevent? He said the folk were not fit for us to know, when all -father's friends were to be there. And he said that I had nothing -fit to wear, when I had my purple plush that I had never so much -as taken out of the drawer. At last, when nothing else would do, -he went off to France upon the business of the firm, but we went, -mother and I, with Mr. Hardy, who used to be our foreman, and it -was there I met Mr. Hosmer Angel." - -"I suppose," said Holmes, "that when Mr. Windibank came back from -France he was very annoyed at your having gone to the ball." - -"Oh, well, he was very good about it. He laughed, I remember, and -shrugged his shoulders, and said there was no use denying -anything to a woman, for she would have her way." - -"I see. Then at the gasfitters' ball you met, as I understand, a -gentleman called Mr. Hosmer Angel." - -"Yes, sir. I met him that night, and he called next day to ask if -we had got home all safe, and after that we met him--that is to -say, Mr. Holmes, I met him twice for walks, but after that father -came back again, and Mr. Hosmer Angel could not come to the house -any more." - -"No?" - -"Well, you know father didn't like anything of the sort. He -wouldn't have any visitors if he could help it, and he used to -say that a woman should be happy in her own family circle. But -then, as I used to say to mother, a woman wants her own circle to -begin with, and I had not got mine yet." - -"But how about Mr. Hosmer Angel? Did he make no attempt to see -you?" - -"Well, father was going off to France again in a week, and Hosmer -wrote and said that it would be safer and better not to see each -other until he had gone. We could write in the meantime, and he -used to write every day. I took the letters in in the morning, so -there was no need for father to know." - -"Were you engaged to the gentleman at this time?" - -"Oh, yes, Mr. Holmes. We were engaged after the first walk that -we took. Hosmer--Mr. Angel--was a cashier in an office in -Leadenhall Street--and--" - -"What office?" - -"That's the worst of it, Mr. Holmes, I don't know." - -"Where did he live, then?" - -"He slept on the premises." - -"And you don't know his address?" - -"No--except that it was Leadenhall Street." - -"Where did you address your letters, then?" - -"To the Leadenhall Street Post Office, to be left till called -for. He said that if they were sent to the office he would be -chaffed by all the other clerks about having letters from a lady, -so I offered to typewrite them, like he did his, but he wouldn't -have that, for he said that when I wrote them they seemed to come -from me, but when they were typewritten he always felt that the -machine had come between us. That will just show you how fond he -was of me, Mr. Holmes, and the little things that he would think -of." - -"It was most suggestive," said Holmes. "It has long been an axiom -of mine that the little things are infinitely the most important. -Can you remember any other little things about Mr. Hosmer Angel?" - -"He was a very shy man, Mr. Holmes. He would rather walk with me -in the evening than in the daylight, for he said that he hated to -be conspicuous. Very retiring and gentlemanly he was. Even his -voice was gentle. He'd had the quinsy and swollen glands when he -was young, he told me, and it had left him with a weak throat, -and a hesitating, whispering fashion of speech. He was always -well dressed, very neat and plain, but his eyes were weak, just -as mine are, and he wore tinted glasses against the glare." - -"Well, and what happened when Mr. Windibank, your stepfather, -returned to France?" - -"Mr. Hosmer Angel came to the house again and proposed that we -should marry before father came back. He was in dreadful earnest -and made me swear, with my hands on the Testament, that whatever -happened I would always be true to him. Mother said he was quite -right to make me swear, and that it was a sign of his passion. -Mother was all in his favour from the first and was even fonder -of him than I was. Then, when they talked of marrying within the -week, I began to ask about father; but they both said never to -mind about father, but just to tell him afterwards, and mother -said she would make it all right with him. I didn't quite like -that, Mr. Holmes. It seemed funny that I should ask his leave, as -he was only a few years older than me; but I didn't want to do -anything on the sly, so I wrote to father at Bordeaux, where the -company has its French offices, but the letter came back to me on -the very morning of the wedding." - -"It missed him, then?" - -"Yes, sir; for he had started to England just before it arrived." - -"Ha! that was unfortunate. Your wedding was arranged, then, for -the Friday. Was it to be in church?" - -"Yes, sir, but very quietly. It was to be at St. Saviour's, near -King's Cross, and we were to have breakfast afterwards at the St. -Pancras Hotel. Hosmer came for us in a hansom, but as there were -two of us he put us both into it and stepped himself into a -four-wheeler, which happened to be the only other cab in the -street. We got to the church first, and when the four-wheeler -drove up we waited for him to step out, but he never did, and -when the cabman got down from the box and looked there was no one -there! The cabman said that he could not imagine what had become -of him, for he had seen him get in with his own eyes. That was -last Friday, Mr. Holmes, and I have never seen or heard anything -since then to throw any light upon what became of him." - -"It seems to me that you have been very shamefully treated," said -Holmes. - -"Oh, no, sir! He was too good and kind to leave me so. Why, all -the morning he was saying to me that, whatever happened, I was to -be true; and that even if something quite unforeseen occurred to -separate us, I was always to remember that I was pledged to him, -and that he would claim his pledge sooner or later. It seemed -strange talk for a wedding-morning, but what has happened since -gives a meaning to it." - -"Most certainly it does. Your own opinion is, then, that some -unforeseen catastrophe has occurred to him?" - -"Yes, sir. I believe that he foresaw some danger, or else he -would not have talked so. And then I think that what he foresaw -happened." - -"But you have no notion as to what it could have been?" - -"None." - -"One more question. How did your mother take the matter?" - -"She was angry, and said that I was never to speak of the matter -again." - -"And your father? Did you tell him?" - -"Yes; and he seemed to think, with me, that something had -happened, and that I should hear of Hosmer again. As he said, -what interest could anyone have in bringing me to the doors of -the church, and then leaving me? Now, if he had borrowed my -money, or if he had married me and got my money settled on him, -there might be some reason, but Hosmer was very independent about -money and never would look at a shilling of mine. And yet, what -could have happened? And why could he not write? Oh, it drives me -half-mad to think of it, and I can't sleep a wink at night." She -pulled a little handkerchief out of her muff and began to sob -heavily into it. - -"I shall glance into the case for you," said Holmes, rising, "and -I have no doubt that we shall reach some definite result. Let the -weight of the matter rest upon me now, and do not let your mind -dwell upon it further. Above all, try to let Mr. Hosmer Angel -vanish from your memory, as he has done from your life." - -"Then you don't think I'll see him again?" - -"I fear not." - -"Then what has happened to him?" - -"You will leave that question in my hands. I should like an -accurate description of him and any letters of his which you can -spare." - -"I advertised for him in last Saturday's Chronicle," said she. -"Here is the slip and here are four letters from him." - -"Thank you. And your address?" - -"No. 31 Lyon Place, Camberwell." - -"Mr. Angel's address you never had, I understand. Where is your -father's place of business?" - -"He travels for Westhouse & Marbank, the great claret importers -of Fenchurch Street." - -"Thank you. You have made your statement very clearly. You will -leave the papers here, and remember the advice which I have given -you. Let the whole incident be a sealed book, and do not allow it -to affect your life." - -"You are very kind, Mr. Holmes, but I cannot do that. I shall be -true to Hosmer. He shall find me ready when he comes back." - -For all the preposterous hat and the vacuous face, there was -something noble in the simple faith of our visitor which -compelled our respect. She laid her little bundle of papers upon -the table and went her way, with a promise to come again whenever -she might be summoned. - -Sherlock Holmes sat silent for a few minutes with his fingertips -still pressed together, his legs stretched out in front of him, -and his gaze directed upward to the ceiling. Then he took down -from the rack the old and oily clay pipe, which was to him as a -counsellor, and, having lit it, he leaned back in his chair, with -the thick blue cloud-wreaths spinning up from him, and a look of -infinite languor in his face. - -"Quite an interesting study, that maiden," he observed. "I found -her more interesting than her little problem, which, by the way, -is rather a trite one. You will find parallel cases, if you -consult my index, in Andover in '77, and there was something of -the sort at The Hague last year. Old as is the idea, however, -there were one or two details which were new to me. But the -maiden herself was most instructive." - -"You appeared to read a good deal upon her which was quite -invisible to me," I remarked. - -"Not invisible but unnoticed, Watson. You did not know where to -look, and so you missed all that was important. I can never bring -you to realise the importance of sleeves, the suggestiveness of -thumb-nails, or the great issues that may hang from a boot-lace. -Now, what did you gather from that woman's appearance? Describe -it." - -"Well, she had a slate-coloured, broad-brimmed straw hat, with a -feather of a brickish red. Her jacket was black, with black beads -sewn upon it, and a fringe of little black jet ornaments. Her -dress was brown, rather darker than coffee colour, with a little -purple plush at the neck and sleeves. Her gloves were greyish and -were worn through at the right forefinger. Her boots I didn't -observe. She had small round, hanging gold earrings, and a -general air of being fairly well-to-do in a vulgar, comfortable, -easy-going way." - -Sherlock Holmes clapped his hands softly together and chuckled. - -"'Pon my word, Watson, you are coming along wonderfully. You have -really done very well indeed. It is true that you have missed -everything of importance, but you have hit upon the method, and -you have a quick eye for colour. Never trust to general -impressions, my boy, but concentrate yourself upon details. My -first glance is always at a woman's sleeve. In a man it is -perhaps better first to take the knee of the trouser. As you -observe, this woman had plush upon her sleeves, which is a most -useful material for showing traces. The double line a little -above the wrist, where the typewritist presses against the table, -was beautifully defined. The sewing-machine, of the hand type, -leaves a similar mark, but only on the left arm, and on the side -of it farthest from the thumb, instead of being right across the -broadest part, as this was. I then glanced at her face, and, -observing the dint of a pince-nez at either side of her nose, I -ventured a remark upon short sight and typewriting, which seemed -to surprise her." - -"It surprised me." - -"But, surely, it was obvious. I was then much surprised and -interested on glancing down to observe that, though the boots -which she was wearing were not unlike each other, they were -really odd ones; the one having a slightly decorated toe-cap, and -the other a plain one. One was buttoned only in the two lower -buttons out of five, and the other at the first, third, and -fifth. Now, when you see that a young lady, otherwise neatly -dressed, has come away from home with odd boots, half-buttoned, -it is no great deduction to say that she came away in a hurry." - -"And what else?" I asked, keenly interested, as I always was, by -my friend's incisive reasoning. - -"I noted, in passing, that she had written a note before leaving -home but after being fully dressed. You observed that her right -glove was torn at the forefinger, but you did not apparently see -that both glove and finger were stained with violet ink. She had -written in a hurry and dipped her pen too deep. It must have been -this morning, or the mark would not remain clear upon the finger. -All this is amusing, though rather elementary, but I must go back -to business, Watson. Would you mind reading me the advertised -description of Mr. Hosmer Angel?" - -I held the little printed slip to the light. - -"Missing," it said, "on the morning of the fourteenth, a gentleman -named Hosmer Angel. About five ft. seven in. in height; -strongly built, sallow complexion, black hair, a little bald in -the centre, bushy, black side-whiskers and moustache; tinted -glasses, slight infirmity of speech. Was dressed, when last seen, -in black frock-coat faced with silk, black waistcoat, gold Albert -chain, and grey Harris tweed trousers, with brown gaiters over -elastic-sided boots. Known to have been employed in an office in -Leadenhall Street. Anybody bringing--" - -"That will do," said Holmes. "As to the letters," he continued, -glancing over them, "they are very commonplace. Absolutely no -clue in them to Mr. Angel, save that he quotes Balzac once. There -is one remarkable point, however, which will no doubt strike -you." - -"They are typewritten," I remarked. - -"Not only that, but the signature is typewritten. Look at the -neat little 'Hosmer Angel' at the bottom. There is a date, you -see, but no superscription except Leadenhall Street, which is -rather vague. The point about the signature is very suggestive--in -fact, we may call it conclusive." - -"Of what?" - -"My dear fellow, is it possible you do not see how strongly it -bears upon the case?" - -"I cannot say that I do unless it were that he wished to be able -to deny his signature if an action for breach of promise were -instituted." - -"No, that was not the point. However, I shall write two letters, -which should settle the matter. One is to a firm in the City, the -other is to the young lady's stepfather, Mr. Windibank, asking -him whether he could meet us here at six o'clock tomorrow -evening. It is just as well that we should do business with the -male relatives. And now, Doctor, we can do nothing until the -answers to those letters come, so we may put our little problem -upon the shelf for the interim." - -I had had so many reasons to believe in my friend's subtle powers -of reasoning and extraordinary energy in action that I felt that -he must have some solid grounds for the assured and easy -demeanour with which he treated the singular mystery which he had -been called upon to fathom. Once only had I known him to fail, in -the case of the King of Bohemia and of the Irene Adler -photograph; but when I looked back to the weird business of the -Sign of Four, and the extraordinary circumstances connected with -the Study in Scarlet, I felt that it would be a strange tangle -indeed which he could not unravel. - -I left him then, still puffing at his black clay pipe, with the -conviction that when I came again on the next evening I would -find that he held in his hands all the clues which would lead up -to the identity of the disappearing bridegroom of Miss Mary -Sutherland. - -A professional case of great gravity was engaging my own -attention at the time, and the whole of next day I was busy at -the bedside of the sufferer. It was not until close upon six -o'clock that I found myself free and was able to spring into a -hansom and drive to Baker Street, half afraid that I might be too -late to assist at the dnouement of the little mystery. I found -Sherlock Holmes alone, however, half asleep, with his long, thin -form curled up in the recesses of his armchair. A formidable -array of bottles and test-tubes, with the pungent cleanly smell -of hydrochloric acid, told me that he had spent his day in the -chemical work which was so dear to him. - -"Well, have you solved it?" I asked as I entered. - -"Yes. It was the bisulphate of baryta." - -"No, no, the mystery!" I cried. - -"Oh, that! I thought of the salt that I have been working upon. -There was never any mystery in the matter, though, as I said -yesterday, some of the details are of interest. The only drawback -is that there is no law, I fear, that can touch the scoundrel." - -"Who was he, then, and what was his object in deserting Miss -Sutherland?" - -The question was hardly out of my mouth, and Holmes had not yet -opened his lips to reply, when we heard a heavy footfall in the -passage and a tap at the door. - -"This is the girl's stepfather, Mr. James Windibank," said -Holmes. "He has written to me to say that he would be here at -six. Come in!" - -The man who entered was a sturdy, middle-sized fellow, some -thirty years of age, clean-shaven, and sallow-skinned, with a -bland, insinuating manner, and a pair of wonderfully sharp and -penetrating grey eyes. He shot a questioning glance at each of -us, placed his shiny top-hat upon the sideboard, and with a -slight bow sidled down into the nearest chair. - -"Good-evening, Mr. James Windibank," said Holmes. "I think that -this typewritten letter is from you, in which you made an -appointment with me for six o'clock?" - -"Yes, sir. I am afraid that I am a little late, but I am not -quite my own master, you know. I am sorry that Miss Sutherland -has troubled you about this little matter, for I think it is far -better not to wash linen of the sort in public. It was quite -against my wishes that she came, but she is a very excitable, -impulsive girl, as you may have noticed, and she is not easily -controlled when she has made up her mind on a point. Of course, I -did not mind you so much, as you are not connected with the -official police, but it is not pleasant to have a family -misfortune like this noised abroad. Besides, it is a useless -expense, for how could you possibly find this Hosmer Angel?" - -"On the contrary," said Holmes quietly; "I have every reason to -believe that I will succeed in discovering Mr. Hosmer Angel." - -Mr. Windibank gave a violent start and dropped his gloves. "I am -delighted to hear it," he said. - -"It is a curious thing," remarked Holmes, "that a typewriter has -really quite as much individuality as a man's handwriting. Unless -they are quite new, no two of them write exactly alike. Some -letters get more worn than others, and some wear only on one -side. Now, you remark in this note of yours, Mr. Windibank, that -in every case there is some little slurring over of the 'e,' and -a slight defect in the tail of the 'r.' There are fourteen other -characteristics, but those are the more obvious." - -"We do all our correspondence with this machine at the office, -and no doubt it is a little worn," our visitor answered, glancing -keenly at Holmes with his bright little eyes. - -"And now I will show you what is really a very interesting study, -Mr. Windibank," Holmes continued. "I think of writing another -little monograph some of these days on the typewriter and its -relation to crime. It is a subject to which I have devoted some -little attention. I have here four letters which purport to come -from the missing man. They are all typewritten. In each case, not -only are the 'e's' slurred and the 'r's' tailless, but you will -observe, if you care to use my magnifying lens, that the fourteen -other characteristics to which I have alluded are there as well." - -Mr. Windibank sprang out of his chair and picked up his hat. "I -cannot waste time over this sort of fantastic talk, Mr. Holmes," -he said. "If you can catch the man, catch him, and let me know -when you have done it." - -"Certainly," said Holmes, stepping over and turning the key in -the door. "I let you know, then, that I have caught him!" - -"What! where?" shouted Mr. Windibank, turning white to his lips -and glancing about him like a rat in a trap. - -"Oh, it won't do--really it won't," said Holmes suavely. "There -is no possible getting out of it, Mr. Windibank. It is quite too -transparent, and it was a very bad compliment when you said that -it was impossible for me to solve so simple a question. That's -right! Sit down and let us talk it over." - -Our visitor collapsed into a chair, with a ghastly face and a -glitter of moisture on his brow. "It--it's not actionable," he -stammered. - -"I am very much afraid that it is not. But between ourselves, -Windibank, it was as cruel and selfish and heartless a trick in a -petty way as ever came before me. Now, let me just run over the -course of events, and you will contradict me if I go wrong." - -The man sat huddled up in his chair, with his head sunk upon his -breast, like one who is utterly crushed. Holmes stuck his feet up -on the corner of the mantelpiece and, leaning back with his hands -in his pockets, began talking, rather to himself, as it seemed, -than to us. - -"The man married a woman very much older than himself for her -money," said he, "and he enjoyed the use of the money of the -daughter as long as she lived with them. It was a considerable -sum, for people in their position, and the loss of it would have -made a serious difference. It was worth an effort to preserve it. -The daughter was of a good, amiable disposition, but affectionate -and warm-hearted in her ways, so that it was evident that with -her fair personal advantages, and her little income, she would -not be allowed to remain single long. Now her marriage would -mean, of course, the loss of a hundred a year, so what does her -stepfather do to prevent it? He takes the obvious course of -keeping her at home and forbidding her to seek the company of -people of her own age. But soon he found that that would not -answer forever. She became restive, insisted upon her rights, and -finally announced her positive intention of going to a certain -ball. What does her clever stepfather do then? He conceives an -idea more creditable to his head than to his heart. With the -connivance and assistance of his wife he disguised himself, -covered those keen eyes with tinted glasses, masked the face with -a moustache and a pair of bushy whiskers, sunk that clear voice -into an insinuating whisper, and doubly secure on account of the -girl's short sight, he appears as Mr. Hosmer Angel, and keeps off -other lovers by making love himself." - -"It was only a joke at first," groaned our visitor. "We never -thought that she would have been so carried away." - -"Very likely not. However that may be, the young lady was very -decidedly carried away, and, having quite made up her mind that -her stepfather was in France, the suspicion of treachery never -for an instant entered her mind. She was flattered by the -gentleman's attentions, and the effect was increased by the -loudly expressed admiration of her mother. Then Mr. Angel began -to call, for it was obvious that the matter should be pushed as -far as it would go if a real effect were to be produced. There -were meetings, and an engagement, which would finally secure the -girl's affections from turning towards anyone else. But the -deception could not be kept up forever. These pretended journeys -to France were rather cumbrous. The thing to do was clearly to -bring the business to an end in such a dramatic manner that it -would leave a permanent impression upon the young lady's mind and -prevent her from looking upon any other suitor for some time to -come. Hence those vows of fidelity exacted upon a Testament, and -hence also the allusions to a possibility of something happening -on the very morning of the wedding. James Windibank wished Miss -Sutherland to be so bound to Hosmer Angel, and so uncertain as to -his fate, that for ten years to come, at any rate, she would not -listen to another man. As far as the church door he brought her, -and then, as he could go no farther, he conveniently vanished -away by the old trick of stepping in at one door of a -four-wheeler and out at the other. I think that was the chain of -events, Mr. Windibank!" - -Our visitor had recovered something of his assurance while Holmes -had been talking, and he rose from his chair now with a cold -sneer upon his pale face. - -"It may be so, or it may not, Mr. Holmes," said he, "but if you -are so very sharp you ought to be sharp enough to know that it is -you who are breaking the law now, and not me. I have done nothing -actionable from the first, but as long as you keep that door -locked you lay yourself open to an action for assault and illegal -constraint." - -"The law cannot, as you say, touch you," said Holmes, unlocking -and throwing open the door, "yet there never was a man who -deserved punishment more. If the young lady has a brother or a -friend, he ought to lay a whip across your shoulders. By Jove!" -he continued, flushing up at the sight of the bitter sneer upon -the man's face, "it is not part of my duties to my client, but -here's a hunting crop handy, and I think I shall just treat -myself to--" He took two swift steps to the whip, but before he -could grasp it there was a wild clatter of steps upon the stairs, -the heavy hall door banged, and from the window we could see Mr. -James Windibank running at the top of his speed down the road. - -"There's a cold-blooded scoundrel!" said Holmes, laughing, as he -threw himself down into his chair once more. "That fellow will -rise from crime to crime until he does something very bad, and -ends on a gallows. The case has, in some respects, been not -entirely devoid of interest." - -"I cannot now entirely see all the steps of your reasoning," I -remarked. - -"Well, of course it was obvious from the first that this Mr. -Hosmer Angel must have some strong object for his curious -conduct, and it was equally clear that the only man who really -profited by the incident, as far as we could see, was the -stepfather. Then the fact that the two men were never together, -but that the one always appeared when the other was away, was -suggestive. So were the tinted spectacles and the curious voice, -which both hinted at a disguise, as did the bushy whiskers. My -suspicions were all confirmed by his peculiar action in -typewriting his signature, which, of course, inferred that his -handwriting was so familiar to her that she would recognise even -the smallest sample of it. You see all these isolated facts, -together with many minor ones, all pointed in the same -direction." - -"And how did you verify them?" - -"Having once spotted my man, it was easy to get corroboration. I -knew the firm for which this man worked. Having taken the printed -description. I eliminated everything from it which could be the -result of a disguise--the whiskers, the glasses, the voice, and I -sent it to the firm, with a request that they would inform me -whether it answered to the description of any of their -travellers. I had already noticed the peculiarities of the -typewriter, and I wrote to the man himself at his business -address asking him if he would come here. As I expected, his -reply was typewritten and revealed the same trivial but -characteristic defects. The same post brought me a letter from -Westhouse & Marbank, of Fenchurch Street, to say that the -description tallied in every respect with that of their employ, -James Windibank. Voil tout!" - -"And Miss Sutherland?" - -"If I tell her she will not believe me. You may remember the old -Persian saying, 'There is danger for him who taketh the tiger -cub, and danger also for whoso snatches a delusion from a woman.' -There is as much sense in Hafiz as in Horace, and as much -knowledge of the world." - - - -ADVENTURE IV. THE BOSCOMBE VALLEY MYSTERY - -We were seated at breakfast one morning, my wife and I, when the -maid brought in a telegram. It was from Sherlock Holmes and ran -in this way: - -"Have you a couple of days to spare? Have just been wired for from -the west of England in connection with Boscombe Valley tragedy. -Shall be glad if you will come with me. Air and scenery perfect. -Leave Paddington by the 11:15." - -"What do you say, dear?" said my wife, looking across at me. -"Will you go?" - -"I really don't know what to say. I have a fairly long list at -present." - -"Oh, Anstruther would do your work for you. You have been looking -a little pale lately. I think that the change would do you good, -and you are always so interested in Mr. Sherlock Holmes' cases." - -"I should be ungrateful if I were not, seeing what I gained -through one of them," I answered. "But if I am to go, I must pack -at once, for I have only half an hour." - -My experience of camp life in Afghanistan had at least had the -effect of making me a prompt and ready traveller. My wants were -few and simple, so that in less than the time stated I was in a -cab with my valise, rattling away to Paddington Station. Sherlock -Holmes was pacing up and down the platform, his tall, gaunt -figure made even gaunter and taller by his long grey -travelling-cloak and close-fitting cloth cap. - -"It is really very good of you to come, Watson," said he. "It -makes a considerable difference to me, having someone with me on -whom I can thoroughly rely. Local aid is always either worthless -or else biassed. If you will keep the two corner seats I shall -get the tickets." - -We had the carriage to ourselves save for an immense litter of -papers which Holmes had brought with him. Among these he rummaged -and read, with intervals of note-taking and of meditation, until -we were past Reading. Then he suddenly rolled them all into a -gigantic ball and tossed them up onto the rack. - -"Have you heard anything of the case?" he asked. - -"Not a word. I have not seen a paper for some days." - -"The London press has not had very full accounts. I have just -been looking through all the recent papers in order to master the -particulars. It seems, from what I gather, to be one of those -simple cases which are so extremely difficult." - -"That sounds a little paradoxical." - -"But it is profoundly true. Singularity is almost invariably a -clue. The more featureless and commonplace a crime is, the more -difficult it is to bring it home. In this case, however, they -have established a very serious case against the son of the -murdered man." - -"It is a murder, then?" - -"Well, it is conjectured to be so. I shall take nothing for -granted until I have the opportunity of looking personally into -it. I will explain the state of things to you, as far as I have -been able to understand it, in a very few words. - -"Boscombe Valley is a country district not very far from Ross, in -Herefordshire. The largest landed proprietor in that part is a -Mr. John Turner, who made his money in Australia and returned -some years ago to the old country. One of the farms which he -held, that of Hatherley, was let to Mr. Charles McCarthy, who was -also an ex-Australian. The men had known each other in the -colonies, so that it was not unnatural that when they came to -settle down they should do so as near each other as possible. -Turner was apparently the richer man, so McCarthy became his -tenant but still remained, it seems, upon terms of perfect -equality, as they were frequently together. McCarthy had one son, -a lad of eighteen, and Turner had an only daughter of the same -age, but neither of them had wives living. They appear to have -avoided the society of the neighbouring English families and to -have led retired lives, though both the McCarthys were fond of -sport and were frequently seen at the race-meetings of the -neighbourhood. McCarthy kept two servants--a man and a girl. -Turner had a considerable household, some half-dozen at the -least. That is as much as I have been able to gather about the -families. Now for the facts. - -"On June 3rd, that is, on Monday last, McCarthy left his house at -Hatherley about three in the afternoon and walked down to the -Boscombe Pool, which is a small lake formed by the spreading out -of the stream which runs down the Boscombe Valley. He had been -out with his serving-man in the morning at Ross, and he had told -the man that he must hurry, as he had an appointment of -importance to keep at three. From that appointment he never came -back alive. - -"From Hatherley Farm-house to the Boscombe Pool is a quarter of a -mile, and two people saw him as he passed over this ground. One -was an old woman, whose name is not mentioned, and the other was -William Crowder, a game-keeper in the employ of Mr. Turner. Both -these witnesses depose that Mr. McCarthy was walking alone. The -game-keeper adds that within a few minutes of his seeing Mr. -McCarthy pass he had seen his son, Mr. James McCarthy, going the -same way with a gun under his arm. To the best of his belief, the -father was actually in sight at the time, and the son was -following him. He thought no more of the matter until he heard in -the evening of the tragedy that had occurred. - -"The two McCarthys were seen after the time when William Crowder, -the game-keeper, lost sight of them. The Boscombe Pool is thickly -wooded round, with just a fringe of grass and of reeds round the -edge. A girl of fourteen, Patience Moran, who is the daughter of -the lodge-keeper of the Boscombe Valley estate, was in one of the -woods picking flowers. She states that while she was there she -saw, at the border of the wood and close by the lake, Mr. -McCarthy and his son, and that they appeared to be having a -violent quarrel. She heard Mr. McCarthy the elder using very -strong language to his son, and she saw the latter raise up his -hand as if to strike his father. She was so frightened by their -violence that she ran away and told her mother when she reached -home that she had left the two McCarthys quarrelling near -Boscombe Pool, and that she was afraid that they were going to -fight. She had hardly said the words when young Mr. McCarthy came -running up to the lodge to say that he had found his father dead -in the wood, and to ask for the help of the lodge-keeper. He was -much excited, without either his gun or his hat, and his right -hand and sleeve were observed to be stained with fresh blood. On -following him they found the dead body stretched out upon the -grass beside the pool. The head had been beaten in by repeated -blows of some heavy and blunt weapon. The injuries were such as -might very well have been inflicted by the butt-end of his son's -gun, which was found lying on the grass within a few paces of the -body. Under these circumstances the young man was instantly -arrested, and a verdict of 'wilful murder' having been returned -at the inquest on Tuesday, he was on Wednesday brought before the -magistrates at Ross, who have referred the case to the next -Assizes. Those are the main facts of the case as they came out -before the coroner and the police-court." - -"I could hardly imagine a more damning case," I remarked. "If -ever circumstantial evidence pointed to a criminal it does so -here." - -"Circumstantial evidence is a very tricky thing," answered Holmes -thoughtfully. "It may seem to point very straight to one thing, -but if you shift your own point of view a little, you may find it -pointing in an equally uncompromising manner to something -entirely different. It must be confessed, however, that the case -looks exceedingly grave against the young man, and it is very -possible that he is indeed the culprit. There are several people -in the neighbourhood, however, and among them Miss Turner, the -daughter of the neighbouring landowner, who believe in his -innocence, and who have retained Lestrade, whom you may recollect -in connection with the Study in Scarlet, to work out the case in -his interest. Lestrade, being rather puzzled, has referred the -case to me, and hence it is that two middle-aged gentlemen are -flying westward at fifty miles an hour instead of quietly -digesting their breakfasts at home." - -"I am afraid," said I, "that the facts are so obvious that you -will find little credit to be gained out of this case." - -"There is nothing more deceptive than an obvious fact," he -answered, laughing. "Besides, we may chance to hit upon some -other obvious facts which may have been by no means obvious to -Mr. Lestrade. You know me too well to think that I am boasting -when I say that I shall either confirm or destroy his theory by -means which he is quite incapable of employing, or even of -understanding. To take the first example to hand, I very clearly -perceive that in your bedroom the window is upon the right-hand -side, and yet I question whether Mr. Lestrade would have noted -even so self-evident a thing as that." - -"How on earth--" - -"My dear fellow, I know you well. I know the military neatness -which characterises you. You shave every morning, and in this -season you shave by the sunlight; but since your shaving is less -and less complete as we get farther back on the left side, until -it becomes positively slovenly as we get round the angle of the -jaw, it is surely very clear that that side is less illuminated -than the other. I could not imagine a man of your habits looking -at himself in an equal light and being satisfied with such a -result. I only quote this as a trivial example of observation and -inference. Therein lies my mtier, and it is just possible that -it may be of some service in the investigation which lies before -us. There are one or two minor points which were brought out in -the inquest, and which are worth considering." - -"What are they?" - -"It appears that his arrest did not take place at once, but after -the return to Hatherley Farm. On the inspector of constabulary -informing him that he was a prisoner, he remarked that he was not -surprised to hear it, and that it was no more than his deserts. -This observation of his had the natural effect of removing any -traces of doubt which might have remained in the minds of the -coroner's jury." - -"It was a confession," I ejaculated. - -"No, for it was followed by a protestation of innocence." - -"Coming on the top of such a damning series of events, it was at -least a most suspicious remark." - -"On the contrary," said Holmes, "it is the brightest rift which I -can at present see in the clouds. However innocent he might be, -he could not be such an absolute imbecile as not to see that the -circumstances were very black against him. Had he appeared -surprised at his own arrest, or feigned indignation at it, I -should have looked upon it as highly suspicious, because such -surprise or anger would not be natural under the circumstances, -and yet might appear to be the best policy to a scheming man. His -frank acceptance of the situation marks him as either an innocent -man, or else as a man of considerable self-restraint and -firmness. As to his remark about his deserts, it was also not -unnatural if you consider that he stood beside the dead body of -his father, and that there is no doubt that he had that very day -so far forgotten his filial duty as to bandy words with him, and -even, according to the little girl whose evidence is so -important, to raise his hand as if to strike him. The -self-reproach and contrition which are displayed in his remark -appear to me to be the signs of a healthy mind rather than of a -guilty one." - -I shook my head. "Many men have been hanged on far slighter -evidence," I remarked. - -"So they have. And many men have been wrongfully hanged." - -"What is the young man's own account of the matter?" - -"It is, I am afraid, not very encouraging to his supporters, -though there are one or two points in it which are suggestive. -You will find it here, and may read it for yourself." - -He picked out from his bundle a copy of the local Herefordshire -paper, and having turned down the sheet he pointed out the -paragraph in which the unfortunate young man had given his own -statement of what had occurred. I settled myself down in the -corner of the carriage and read it very carefully. It ran in this -way: - -"Mr. James McCarthy, the only son of the deceased, was then called -and gave evidence as follows: 'I had been away from home for -three days at Bristol, and had only just returned upon the -morning of last Monday, the 3rd. My father was absent from home at -the time of my arrival, and I was informed by the maid that he -had driven over to Ross with John Cobb, the groom. Shortly after -my return I heard the wheels of his trap in the yard, and, -looking out of my window, I saw him get out and walk rapidly out -of the yard, though I was not aware in which direction he was -going. I then took my gun and strolled out in the direction of -the Boscombe Pool, with the intention of visiting the rabbit -warren which is upon the other side. On my way I saw William -Crowder, the game-keeper, as he had stated in his evidence; but -he is mistaken in thinking that I was following my father. I had -no idea that he was in front of me. When about a hundred yards -from the pool I heard a cry of "Cooee!" which was a usual signal -between my father and myself. I then hurried forward, and found -him standing by the pool. He appeared to be much surprised at -seeing me and asked me rather roughly what I was doing there. A -conversation ensued which led to high words and almost to blows, -for my father was a man of a very violent temper. Seeing that his -passion was becoming ungovernable, I left him and returned -towards Hatherley Farm. I had not gone more than 150 yards, -however, when I heard a hideous outcry behind me, which caused me -to run back again. I found my father expiring upon the ground, -with his head terribly injured. I dropped my gun and held him in -my arms, but he almost instantly expired. I knelt beside him for -some minutes, and then made my way to Mr. Turner's lodge-keeper, -his house being the nearest, to ask for assistance. I saw no one -near my father when I returned, and I have no idea how he came by -his injuries. He was not a popular man, being somewhat cold and -forbidding in his manners, but he had, as far as I know, no -active enemies. I know nothing further of the matter.' - -"The Coroner: Did your father make any statement to you before -he died? - -"Witness: He mumbled a few words, but I could only catch some -allusion to a rat. - -"The Coroner: What did you understand by that? - -"Witness: It conveyed no meaning to me. I thought that he was -delirious. - -"The Coroner: What was the point upon which you and your father -had this final quarrel? - -"Witness: I should prefer not to answer. - -"The Coroner: I am afraid that I must press it. - -"Witness: It is really impossible for me to tell you. I can -assure you that it has nothing to do with the sad tragedy which -followed. - -"The Coroner: That is for the court to decide. I need not point -out to you that your refusal to answer will prejudice your case -considerably in any future proceedings which may arise. - -"Witness: I must still refuse. - -"The Coroner: I understand that the cry of 'Cooee' was a common -signal between you and your father? - -"Witness: It was. - -"The Coroner: How was it, then, that he uttered it before he saw -you, and before he even knew that you had returned from Bristol? - -"Witness (with considerable confusion): I do not know. - -"A Juryman: Did you see nothing which aroused your suspicions -when you returned on hearing the cry and found your father -fatally injured? - -"Witness: Nothing definite. - -"The Coroner: What do you mean? - -"Witness: I was so disturbed and excited as I rushed out into -the open, that I could think of nothing except of my father. Yet -I have a vague impression that as I ran forward something lay -upon the ground to the left of me. It seemed to me to be -something grey in colour, a coat of some sort, or a plaid perhaps. -When I rose from my father I looked round for it, but it was -gone. - -"'Do you mean that it disappeared before you went for help?' - -"'Yes, it was gone.' - -"'You cannot say what it was?' - -"'No, I had a feeling something was there.' - -"'How far from the body?' - -"'A dozen yards or so.' - -"'And how far from the edge of the wood?' - -"'About the same.' - -"'Then if it was removed it was while you were within a dozen -yards of it?' - -"'Yes, but with my back towards it.' - -"This concluded the examination of the witness." - -"I see," said I as I glanced down the column, "that the coroner -in his concluding remarks was rather severe upon young McCarthy. -He calls attention, and with reason, to the discrepancy about his -father having signalled to him before seeing him, also to his -refusal to give details of his conversation with his father, and -his singular account of his father's dying words. They are all, -as he remarks, very much against the son." - -Holmes laughed softly to himself and stretched himself out upon -the cushioned seat. "Both you and the coroner have been at some -pains," said he, "to single out the very strongest points in the -young man's favour. Don't you see that you alternately give him -credit for having too much imagination and too little? Too -little, if he could not invent a cause of quarrel which would -give him the sympathy of the jury; too much, if he evolved from -his own inner consciousness anything so outr as a dying -reference to a rat, and the incident of the vanishing cloth. No, -sir, I shall approach this case from the point of view that what -this young man says is true, and we shall see whither that -hypothesis will lead us. And now here is my pocket Petrarch, and -not another word shall I say of this case until we are on the -scene of action. We lunch at Swindon, and I see that we shall be -there in twenty minutes." - -It was nearly four o'clock when we at last, after passing through -the beautiful Stroud Valley, and over the broad gleaming Severn, -found ourselves at the pretty little country-town of Ross. A -lean, ferret-like man, furtive and sly-looking, was waiting for -us upon the platform. In spite of the light brown dustcoat and -leather-leggings which he wore in deference to his rustic -surroundings, I had no difficulty in recognising Lestrade, of -Scotland Yard. With him we drove to the Hereford Arms where a -room had already been engaged for us. - -"I have ordered a carriage," said Lestrade as we sat over a cup -of tea. "I knew your energetic nature, and that you would not be -happy until you had been on the scene of the crime." - -"It was very nice and complimentary of you," Holmes answered. "It -is entirely a question of barometric pressure." - -Lestrade looked startled. "I do not quite follow," he said. - -"How is the glass? Twenty-nine, I see. No wind, and not a cloud -in the sky. I have a caseful of cigarettes here which need -smoking, and the sofa is very much superior to the usual country -hotel abomination. I do not think that it is probable that I -shall use the carriage to-night." - -Lestrade laughed indulgently. "You have, no doubt, already formed -your conclusions from the newspapers," he said. "The case is as -plain as a pikestaff, and the more one goes into it the plainer -it becomes. Still, of course, one can't refuse a lady, and such a -very positive one, too. She has heard of you, and would have your -opinion, though I repeatedly told her that there was nothing -which you could do which I had not already done. Why, bless my -soul! here is her carriage at the door." - -He had hardly spoken before there rushed into the room one of the -most lovely young women that I have ever seen in my life. Her -violet eyes shining, her lips parted, a pink flush upon her -cheeks, all thought of her natural reserve lost in her -overpowering excitement and concern. - -"Oh, Mr. Sherlock Holmes!" she cried, glancing from one to the -other of us, and finally, with a woman's quick intuition, -fastening upon my companion, "I am so glad that you have come. I -have driven down to tell you so. I know that James didn't do it. -I know it, and I want you to start upon your work knowing it, -too. Never let yourself doubt upon that point. We have known each -other since we were little children, and I know his faults as no -one else does; but he is too tender-hearted to hurt a fly. Such a -charge is absurd to anyone who really knows him." - -"I hope we may clear him, Miss Turner," said Sherlock Holmes. -"You may rely upon my doing all that I can." - -"But you have read the evidence. You have formed some conclusion? -Do you not see some loophole, some flaw? Do you not yourself -think that he is innocent?" - -"I think that it is very probable." - -"There, now!" she cried, throwing back her head and looking -defiantly at Lestrade. "You hear! He gives me hopes." - -Lestrade shrugged his shoulders. "I am afraid that my colleague -has been a little quick in forming his conclusions," he said. - -"But he is right. Oh! I know that he is right. James never did -it. And about his quarrel with his father, I am sure that the -reason why he would not speak about it to the coroner was because -I was concerned in it." - -"In what way?" asked Holmes. - -"It is no time for me to hide anything. James and his father had -many disagreements about me. Mr. McCarthy was very anxious that -there should be a marriage between us. James and I have always -loved each other as brother and sister; but of course he is young -and has seen very little of life yet, and--and--well, he -naturally did not wish to do anything like that yet. So there -were quarrels, and this, I am sure, was one of them." - -"And your father?" asked Holmes. "Was he in favour of such a -union?" - -"No, he was averse to it also. No one but Mr. McCarthy was in -favour of it." A quick blush passed over her fresh young face as -Holmes shot one of his keen, questioning glances at her. - -"Thank you for this information," said he. "May I see your father -if I call to-morrow?" - -"I am afraid the doctor won't allow it." - -"The doctor?" - -"Yes, have you not heard? Poor father has never been strong for -years back, but this has broken him down completely. He has taken -to his bed, and Dr. Willows says that he is a wreck and that his -nervous system is shattered. Mr. McCarthy was the only man alive -who had known dad in the old days in Victoria." - -"Ha! In Victoria! That is important." - -"Yes, at the mines." - -"Quite so; at the gold-mines, where, as I understand, Mr. Turner -made his money." - -"Yes, certainly." - -"Thank you, Miss Turner. You have been of material assistance to -me." - -"You will tell me if you have any news to-morrow. No doubt you -will go to the prison to see James. Oh, if you do, Mr. Holmes, do -tell him that I know him to be innocent." - -"I will, Miss Turner." - -"I must go home now, for dad is very ill, and he misses me so if -I leave him. Good-bye, and God help you in your undertaking." She -hurried from the room as impulsively as she had entered, and we -heard the wheels of her carriage rattle off down the street. - -"I am ashamed of you, Holmes," said Lestrade with dignity after a -few minutes' silence. "Why should you raise up hopes which you -are bound to disappoint? I am not over-tender of heart, but I -call it cruel." - -"I think that I see my way to clearing James McCarthy," said -Holmes. "Have you an order to see him in prison?" - -"Yes, but only for you and me." - -"Then I shall reconsider my resolution about going out. We have -still time to take a train to Hereford and see him to-night?" - -"Ample." - -"Then let us do so. Watson, I fear that you will find it very -slow, but I shall only be away a couple of hours." - -I walked down to the station with them, and then wandered through -the streets of the little town, finally returning to the hotel, -where I lay upon the sofa and tried to interest myself in a -yellow-backed novel. The puny plot of the story was so thin, -however, when compared to the deep mystery through which we were -groping, and I found my attention wander so continually from the -action to the fact, that I at last flung it across the room and -gave myself up entirely to a consideration of the events of the -day. Supposing that this unhappy young man's story were -absolutely true, then what hellish thing, what absolutely -unforeseen and extraordinary calamity could have occurred between -the time when he parted from his father, and the moment when, -drawn back by his screams, he rushed into the glade? It was -something terrible and deadly. What could it be? Might not the -nature of the injuries reveal something to my medical instincts? -I rang the bell and called for the weekly county paper, which -contained a verbatim account of the inquest. In the surgeon's -deposition it was stated that the posterior third of the left -parietal bone and the left half of the occipital bone had been -shattered by a heavy blow from a blunt weapon. I marked the spot -upon my own head. Clearly such a blow must have been struck from -behind. That was to some extent in favour of the accused, as when -seen quarrelling he was face to face with his father. Still, it -did not go for very much, for the older man might have turned his -back before the blow fell. Still, it might be worth while to call -Holmes' attention to it. Then there was the peculiar dying -reference to a rat. What could that mean? It could not be -delirium. A man dying from a sudden blow does not commonly become -delirious. No, it was more likely to be an attempt to explain how -he met his fate. But what could it indicate? I cudgelled my -brains to find some possible explanation. And then the incident -of the grey cloth seen by young McCarthy. If that were true the -murderer must have dropped some part of his dress, presumably his -overcoat, in his flight, and must have had the hardihood to -return and to carry it away at the instant when the son was -kneeling with his back turned not a dozen paces off. What a -tissue of mysteries and improbabilities the whole thing was! I -did not wonder at Lestrade's opinion, and yet I had so much faith -in Sherlock Holmes' insight that I could not lose hope as long -as every fresh fact seemed to strengthen his conviction of young -McCarthy's innocence. - -It was late before Sherlock Holmes returned. He came back alone, -for Lestrade was staying in lodgings in the town. - -"The glass still keeps very high," he remarked as he sat down. -"It is of importance that it should not rain before we are able -to go over the ground. On the other hand, a man should be at his -very best and keenest for such nice work as that, and I did not -wish to do it when fagged by a long journey. I have seen young -McCarthy." - -"And what did you learn from him?" - -"Nothing." - -"Could he throw no light?" - -"None at all. I was inclined to think at one time that he knew -who had done it and was screening him or her, but I am convinced -now that he is as puzzled as everyone else. He is not a very -quick-witted youth, though comely to look at and, I should think, -sound at heart." - -"I cannot admire his taste," I remarked, "if it is indeed a fact -that he was averse to a marriage with so charming a young lady as -this Miss Turner." - -"Ah, thereby hangs a rather painful tale. This fellow is madly, -insanely, in love with her, but some two years ago, when he was -only a lad, and before he really knew her, for she had been away -five years at a boarding-school, what does the idiot do but get -into the clutches of a barmaid in Bristol and marry her at a -registry office? No one knows a word of the matter, but you can -imagine how maddening it must be to him to be upbraided for not -doing what he would give his very eyes to do, but what he knows -to be absolutely impossible. It was sheer frenzy of this sort -which made him throw his hands up into the air when his father, -at their last interview, was goading him on to propose to Miss -Turner. On the other hand, he had no means of supporting himself, -and his father, who was by all accounts a very hard man, would -have thrown him over utterly had he known the truth. It was with -his barmaid wife that he had spent the last three days in -Bristol, and his father did not know where he was. Mark that -point. It is of importance. Good has come out of evil, however, -for the barmaid, finding from the papers that he is in serious -trouble and likely to be hanged, has thrown him over utterly and -has written to him to say that she has a husband already in the -Bermuda Dockyard, so that there is really no tie between them. I -think that that bit of news has consoled young McCarthy for all -that he has suffered." - -"But if he is innocent, who has done it?" - -"Ah! who? I would call your attention very particularly to two -points. One is that the murdered man had an appointment with -someone at the pool, and that the someone could not have been his -son, for his son was away, and he did not know when he would -return. The second is that the murdered man was heard to cry -'Cooee!' before he knew that his son had returned. Those are the -crucial points upon which the case depends. And now let us talk -about George Meredith, if you please, and we shall leave all -minor matters until to-morrow." - -There was no rain, as Holmes had foretold, and the morning broke -bright and cloudless. At nine o'clock Lestrade called for us with -the carriage, and we set off for Hatherley Farm and the Boscombe -Pool. - -"There is serious news this morning," Lestrade observed. "It is -said that Mr. Turner, of the Hall, is so ill that his life is -despaired of." - -"An elderly man, I presume?" said Holmes. - -"About sixty; but his constitution has been shattered by his life -abroad, and he has been in failing health for some time. This -business has had a very bad effect upon him. He was an old friend -of McCarthy's, and, I may add, a great benefactor to him, for I -have learned that he gave him Hatherley Farm rent free." - -"Indeed! That is interesting," said Holmes. - -"Oh, yes! In a hundred other ways he has helped him. Everybody -about here speaks of his kindness to him." - -"Really! Does it not strike you as a little singular that this -McCarthy, who appears to have had little of his own, and to have -been under such obligations to Turner, should still talk of -marrying his son to Turner's daughter, who is, presumably, -heiress to the estate, and that in such a very cocksure manner, -as if it were merely a case of a proposal and all else would -follow? It is the more strange, since we know that Turner himself -was averse to the idea. The daughter told us as much. Do you not -deduce something from that?" - -"We have got to the deductions and the inferences," said -Lestrade, winking at me. "I find it hard enough to tackle facts, -Holmes, without flying away after theories and fancies." - -"You are right," said Holmes demurely; "you do find it very hard -to tackle the facts." - -"Anyhow, I have grasped one fact which you seem to find it -difficult to get hold of," replied Lestrade with some warmth. - -"And that is--" - -"That McCarthy senior met his death from McCarthy junior and that -all theories to the contrary are the merest moonshine." - -"Well, moonshine is a brighter thing than fog," said Holmes, -laughing. "But I am very much mistaken if this is not Hatherley -Farm upon the left." - -"Yes, that is it." It was a widespread, comfortable-looking -building, two-storied, slate-roofed, with great yellow blotches -of lichen upon the grey walls. The drawn blinds and the smokeless -chimneys, however, gave it a stricken look, as though the weight -of this horror still lay heavy upon it. We called at the door, -when the maid, at Holmes' request, showed us the boots which her -master wore at the time of his death, and also a pair of the -son's, though not the pair which he had then had. Having measured -these very carefully from seven or eight different points, Holmes -desired to be led to the court-yard, from which we all followed -the winding track which led to Boscombe Pool. - -Sherlock Holmes was transformed when he was hot upon such a scent -as this. Men who had only known the quiet thinker and logician of -Baker Street would have failed to recognise him. His face flushed -and darkened. His brows were drawn into two hard black lines, -while his eyes shone out from beneath them with a steely glitter. -His face was bent downward, his shoulders bowed, his lips -compressed, and the veins stood out like whipcord in his long, -sinewy neck. His nostrils seemed to dilate with a purely animal -lust for the chase, and his mind was so absolutely concentrated -upon the matter before him that a question or remark fell -unheeded upon his ears, or, at the most, only provoked a quick, -impatient snarl in reply. Swiftly and silently he made his way -along the track which ran through the meadows, and so by way of -the woods to the Boscombe Pool. It was damp, marshy ground, as is -all that district, and there were marks of many feet, both upon -the path and amid the short grass which bounded it on either -side. Sometimes Holmes would hurry on, sometimes stop dead, and -once he made quite a little detour into the meadow. Lestrade and -I walked behind him, the detective indifferent and contemptuous, -while I watched my friend with the interest which sprang from the -conviction that every one of his actions was directed towards a -definite end. - -The Boscombe Pool, which is a little reed-girt sheet of water -some fifty yards across, is situated at the boundary between the -Hatherley Farm and the private park of the wealthy Mr. Turner. -Above the woods which lined it upon the farther side we could see -the red, jutting pinnacles which marked the site of the rich -landowner's dwelling. On the Hatherley side of the pool the woods -grew very thick, and there was a narrow belt of sodden grass -twenty paces across between the edge of the trees and the reeds -which lined the lake. Lestrade showed us the exact spot at which -the body had been found, and, indeed, so moist was the ground, -that I could plainly see the traces which had been left by the -fall of the stricken man. To Holmes, as I could see by his eager -face and peering eyes, very many other things were to be read -upon the trampled grass. He ran round, like a dog who is picking -up a scent, and then turned upon my companion. - -"What did you go into the pool for?" he asked. - -"I fished about with a rake. I thought there might be some weapon -or other trace. But how on earth--" - -"Oh, tut, tut! I have no time! That left foot of yours with its -inward twist is all over the place. A mole could trace it, and -there it vanishes among the reeds. Oh, how simple it would all -have been had I been here before they came like a herd of buffalo -and wallowed all over it. Here is where the party with the -lodge-keeper came, and they have covered all tracks for six or -eight feet round the body. But here are three separate tracks of -the same feet." He drew out a lens and lay down upon his -waterproof to have a better view, talking all the time rather to -himself than to us. "These are young McCarthy's feet. Twice he -was walking, and once he ran swiftly, so that the soles are -deeply marked and the heels hardly visible. That bears out his -story. He ran when he saw his father on the ground. Then here are -the father's feet as he paced up and down. What is this, then? It -is the butt-end of the gun as the son stood listening. And this? -Ha, ha! What have we here? Tiptoes! tiptoes! Square, too, quite -unusual boots! They come, they go, they come again--of course -that was for the cloak. Now where did they come from?" He ran up -and down, sometimes losing, sometimes finding the track until we -were well within the edge of the wood and under the shadow of a -great beech, the largest tree in the neighbourhood. Holmes traced -his way to the farther side of this and lay down once more upon -his face with a little cry of satisfaction. For a long time he -remained there, turning over the leaves and dried sticks, -gathering up what seemed to me to be dust into an envelope and -examining with his lens not only the ground but even the bark of -the tree as far as he could reach. A jagged stone was lying among -the moss, and this also he carefully examined and retained. Then -he followed a pathway through the wood until he came to the -highroad, where all traces were lost. - -"It has been a case of considerable interest," he remarked, -returning to his natural manner. "I fancy that this grey house on -the right must be the lodge. I think that I will go in and have a -word with Moran, and perhaps write a little note. Having done -that, we may drive back to our luncheon. You may walk to the cab, -and I shall be with you presently." - -It was about ten minutes before we regained our cab and drove -back into Ross, Holmes still carrying with him the stone which he -had picked up in the wood. - -"This may interest you, Lestrade," he remarked, holding it out. -"The murder was done with it." - -"I see no marks." - -"There are none." - -"How do you know, then?" - -"The grass was growing under it. It had only lain there a few -days. There was no sign of a place whence it had been taken. It -corresponds with the injuries. There is no sign of any other -weapon." - -"And the murderer?" - -"Is a tall man, left-handed, limps with the right leg, wears -thick-soled shooting-boots and a grey cloak, smokes Indian -cigars, uses a cigar-holder, and carries a blunt pen-knife in his -pocket. There are several other indications, but these may be -enough to aid us in our search." - -Lestrade laughed. "I am afraid that I am still a sceptic," he -said. "Theories are all very well, but we have to deal with a -hard-headed British jury." - -"Nous verrons," answered Holmes calmly. "You work your own -method, and I shall work mine. I shall be busy this afternoon, -and shall probably return to London by the evening train." - -"And leave your case unfinished?" - -"No, finished." - -"But the mystery?" - -"It is solved." - -"Who was the criminal, then?" - -"The gentleman I describe." - -"But who is he?" - -"Surely it would not be difficult to find out. This is not such a -populous neighbourhood." - -Lestrade shrugged his shoulders. "I am a practical man," he said, -"and I really cannot undertake to go about the country looking -for a left-handed gentleman with a game leg. I should become the -laughing-stock of Scotland Yard." - -"All right," said Holmes quietly. "I have given you the chance. -Here are your lodgings. Good-bye. I shall drop you a line before -I leave." - -Having left Lestrade at his rooms, we drove to our hotel, where -we found lunch upon the table. Holmes was silent and buried in -thought with a pained expression upon his face, as one who finds -himself in a perplexing position. - -"Look here, Watson," he said when the cloth was cleared "just sit -down in this chair and let me preach to you for a little. I don't -know quite what to do, and I should value your advice. Light a -cigar and let me expound." - - "Pray do so." - -"Well, now, in considering this case there are two points about -young McCarthy's narrative which struck us both instantly, -although they impressed me in his favour and you against him. One -was the fact that his father should, according to his account, -cry 'Cooee!' before seeing him. The other was his singular dying -reference to a rat. He mumbled several words, you understand, but -that was all that caught the son's ear. Now from this double -point our research must commence, and we will begin it by -presuming that what the lad says is absolutely true." - -"What of this 'Cooee!' then?" - -"Well, obviously it could not have been meant for the son. The -son, as far as he knew, was in Bristol. It was mere chance that -he was within earshot. The 'Cooee!' was meant to attract the -attention of whoever it was that he had the appointment with. But -'Cooee' is a distinctly Australian cry, and one which is used -between Australians. There is a strong presumption that the -person whom McCarthy expected to meet him at Boscombe Pool was -someone who had been in Australia." - -"What of the rat, then?" - -Sherlock Holmes took a folded paper from his pocket and flattened -it out on the table. "This is a map of the Colony of Victoria," -he said. "I wired to Bristol for it last night." He put his hand -over part of the map. "What do you read?" - -"ARAT," I read. - -"And now?" He raised his hand. - -"BALLARAT." - -"Quite so. That was the word the man uttered, and of which his -son only caught the last two syllables. He was trying to utter -the name of his murderer. So and so, of Ballarat." - -"It is wonderful!" I exclaimed. - -"It is obvious. And now, you see, I had narrowed the field down -considerably. The possession of a grey garment was a third point -which, granting the son's statement to be correct, was a -certainty. We have come now out of mere vagueness to the definite -conception of an Australian from Ballarat with a grey cloak." - -"Certainly." - -"And one who was at home in the district, for the pool can only -be approached by the farm or by the estate, where strangers could -hardly wander." - -"Quite so." - -"Then comes our expedition of to-day. By an examination of the -ground I gained the trifling details which I gave to that -imbecile Lestrade, as to the personality of the criminal." - -"But how did you gain them?" - -"You know my method. It is founded upon the observation of -trifles." - -"His height I know that you might roughly judge from the length -of his stride. His boots, too, might be told from their traces." - -"Yes, they were peculiar boots." - -"But his lameness?" - -"The impression of his right foot was always less distinct than -his left. He put less weight upon it. Why? Because he limped--he -was lame." - -"But his left-handedness." - -"You were yourself struck by the nature of the injury as recorded -by the surgeon at the inquest. The blow was struck from -immediately behind, and yet was upon the left side. Now, how can -that be unless it were by a left-handed man? He had stood behind -that tree during the interview between the father and son. He had -even smoked there. I found the ash of a cigar, which my special -knowledge of tobacco ashes enables me to pronounce as an Indian -cigar. I have, as you know, devoted some attention to this, and -written a little monograph on the ashes of 140 different -varieties of pipe, cigar, and cigarette tobacco. Having found the -ash, I then looked round and discovered the stump among the moss -where he had tossed it. It was an Indian cigar, of the variety -which are rolled in Rotterdam." - -"And the cigar-holder?" - -"I could see that the end had not been in his mouth. Therefore he -used a holder. The tip had been cut off, not bitten off, but the -cut was not a clean one, so I deduced a blunt pen-knife." - -"Holmes," I said, "you have drawn a net round this man from which -he cannot escape, and you have saved an innocent human life as -truly as if you had cut the cord which was hanging him. I see the -direction in which all this points. The culprit is--" - -"Mr. John Turner," cried the hotel waiter, opening the door of -our sitting-room, and ushering in a visitor. - -The man who entered was a strange and impressive figure. His -slow, limping step and bowed shoulders gave the appearance of -decrepitude, and yet his hard, deep-lined, craggy features, and -his enormous limbs showed that he was possessed of unusual -strength of body and of character. His tangled beard, grizzled -hair, and outstanding, drooping eyebrows combined to give an air -of dignity and power to his appearance, but his face was of an -ashen white, while his lips and the corners of his nostrils were -tinged with a shade of blue. It was clear to me at a glance that -he was in the grip of some deadly and chronic disease. - -"Pray sit down on the sofa," said Holmes gently. "You had my -note?" - -"Yes, the lodge-keeper brought it up. You said that you wished to -see me here to avoid scandal." - -"I thought people would talk if I went to the Hall." - -"And why did you wish to see me?" He looked across at my -companion with despair in his weary eyes, as though his question -was already answered. - -"Yes," said Holmes, answering the look rather than the words. "It -is so. I know all about McCarthy." - -The old man sank his face in his hands. "God help me!" he cried. -"But I would not have let the young man come to harm. I give you -my word that I would have spoken out if it went against him at -the Assizes." - -"I am glad to hear you say so," said Holmes gravely. - -"I would have spoken now had it not been for my dear girl. It -would break her heart--it will break her heart when she hears -that I am arrested." - -"It may not come to that," said Holmes. - -"What?" - -"I am no official agent. I understand that it was your daughter -who required my presence here, and I am acting in her interests. -Young McCarthy must be got off, however." - -"I am a dying man," said old Turner. "I have had diabetes for -years. My doctor says it is a question whether I shall live a -month. Yet I would rather die under my own roof than in a gaol." - -Holmes rose and sat down at the table with his pen in his hand -and a bundle of paper before him. "Just tell us the truth," he -said. "I shall jot down the facts. You will sign it, and Watson -here can witness it. Then I could produce your confession at the -last extremity to save young McCarthy. I promise you that I shall -not use it unless it is absolutely needed." - -"It's as well," said the old man; "it's a question whether I -shall live to the Assizes, so it matters little to me, but I -should wish to spare Alice the shock. And now I will make the -thing clear to you; it has been a long time in the acting, but -will not take me long to tell. - -"You didn't know this dead man, McCarthy. He was a devil -incarnate. I tell you that. God keep you out of the clutches of -such a man as he. His grip has been upon me these twenty years, -and he has blasted my life. I'll tell you first how I came to be -in his power. - -"It was in the early '60's at the diggings. I was a young chap -then, hot-blooded and reckless, ready to turn my hand at -anything; I got among bad companions, took to drink, had no luck -with my claim, took to the bush, and in a word became what you -would call over here a highway robber. There were six of us, and -we had a wild, free life of it, sticking up a station from time -to time, or stopping the wagons on the road to the diggings. -Black Jack of Ballarat was the name I went under, and our party -is still remembered in the colony as the Ballarat Gang. - -"One day a gold convoy came down from Ballarat to Melbourne, and -we lay in wait for it and attacked it. There were six troopers -and six of us, so it was a close thing, but we emptied four of -their saddles at the first volley. Three of our boys were killed, -however, before we got the swag. I put my pistol to the head of -the wagon-driver, who was this very man McCarthy. I wish to the -Lord that I had shot him then, but I spared him, though I saw his -wicked little eyes fixed on my face, as though to remember every -feature. We got away with the gold, became wealthy men, and made -our way over to England without being suspected. There I parted -from my old pals and determined to settle down to a quiet and -respectable life. I bought this estate, which chanced to be in -the market, and I set myself to do a little good with my money, -to make up for the way in which I had earned it. I married, too, -and though my wife died young she left me my dear little Alice. -Even when she was just a baby her wee hand seemed to lead me down -the right path as nothing else had ever done. In a word, I turned -over a new leaf and did my best to make up for the past. All was -going well when McCarthy laid his grip upon me. - -"I had gone up to town about an investment, and I met him in -Regent Street with hardly a coat to his back or a boot to his -foot. - -"'Here we are, Jack,' says he, touching me on the arm; 'we'll be -as good as a family to you. There's two of us, me and my son, and -you can have the keeping of us. If you don't--it's a fine, -law-abiding country is England, and there's always a policeman -within hail.' - -"Well, down they came to the west country, there was no shaking -them off, and there they have lived rent free on my best land -ever since. There was no rest for me, no peace, no forgetfulness; -turn where I would, there was his cunning, grinning face at my -elbow. It grew worse as Alice grew up, for he soon saw I was more -afraid of her knowing my past than of the police. Whatever he -wanted he must have, and whatever it was I gave him without -question, land, money, houses, until at last he asked a thing -which I could not give. He asked for Alice. - -"His son, you see, had grown up, and so had my girl, and as I was -known to be in weak health, it seemed a fine stroke to him that -his lad should step into the whole property. But there I was -firm. I would not have his cursed stock mixed with mine; not that -I had any dislike to the lad, but his blood was in him, and that -was enough. I stood firm. McCarthy threatened. I braved him to do -his worst. We were to meet at the pool midway between our houses -to talk it over. - -"When I went down there I found him talking with his son, so I -smoked a cigar and waited behind a tree until he should be alone. -But as I listened to his talk all that was black and bitter in -me seemed to come uppermost. He was urging his son to marry my -daughter with as little regard for what she might think as if she -were a slut from off the streets. It drove me mad to think that I -and all that I held most dear should be in the power of such a -man as this. Could I not snap the bond? I was already a dying and -a desperate man. Though clear of mind and fairly strong of limb, -I knew that my own fate was sealed. But my memory and my girl! -Both could be saved if I could but silence that foul tongue. I -did it, Mr. Holmes. I would do it again. Deeply as I have sinned, -I have led a life of martyrdom to atone for it. But that my girl -should be entangled in the same meshes which held me was more -than I could suffer. I struck him down with no more compunction -than if he had been some foul and venomous beast. His cry brought -back his son; but I had gained the cover of the wood, though I -was forced to go back to fetch the cloak which I had dropped in -my flight. That is the true story, gentlemen, of all that -occurred." - -"Well, it is not for me to judge you," said Holmes as the old man -signed the statement which had been drawn out. "I pray that we -may never be exposed to such a temptation." - -"I pray not, sir. And what do you intend to do?" - -"In view of your health, nothing. You are yourself aware that you -will soon have to answer for your deed at a higher court than the -Assizes. I will keep your confession, and if McCarthy is -condemned I shall be forced to use it. If not, it shall never be -seen by mortal eye; and your secret, whether you be alive or -dead, shall be safe with us." - -"Farewell, then," said the old man solemnly. "Your own deathbeds, -when they come, will be the easier for the thought of the peace -which you have given to mine." Tottering and shaking in all his -giant frame, he stumbled slowly from the room. - -"God help us!" said Holmes after a long silence. "Why does fate -play such tricks with poor, helpless worms? I never hear of such -a case as this that I do not think of Baxter's words, and say, -'There, but for the grace of God, goes Sherlock Holmes.'" - -James McCarthy was acquitted at the Assizes on the strength of a -number of objections which had been drawn out by Holmes and -submitted to the defending counsel. Old Turner lived for seven -months after our interview, but he is now dead; and there is -every prospect that the son and daughter may come to live happily -together in ignorance of the black cloud which rests upon their -past. - - - -ADVENTURE V. THE FIVE ORANGE PIPS - -When I glance over my notes and records of the Sherlock Holmes -cases between the years '82 and '90, I am faced by so many which -present strange and interesting features that it is no easy -matter to know which to choose and which to leave. Some, however, -have already gained publicity through the papers, and others have -not offered a field for those peculiar qualities which my friend -possessed in so high a degree, and which it is the object of -these papers to illustrate. Some, too, have baffled his -analytical skill, and would be, as narratives, beginnings without -an ending, while others have been but partially cleared up, and -have their explanations founded rather upon conjecture and -surmise than on that absolute logical proof which was so dear to -him. There is, however, one of these last which was so remarkable -in its details and so startling in its results that I am tempted -to give some account of it in spite of the fact that there are -points in connection with it which never have been, and probably -never will be, entirely cleared up. - -The year '87 furnished us with a long series of cases of greater -or less interest, of which I retain the records. Among my -headings under this one twelve months I find an account of the -adventure of the Paradol Chamber, of the Amateur Mendicant -Society, who held a luxurious club in the lower vault of a -furniture warehouse, of the facts connected with the loss of the -British barque "Sophy Anderson", of the singular adventures of the -Grice Patersons in the island of Uffa, and finally of the -Camberwell poisoning case. In the latter, as may be remembered, -Sherlock Holmes was able, by winding up the dead man's watch, to -prove that it had been wound up two hours before, and that -therefore the deceased had gone to bed within that time--a -deduction which was of the greatest importance in clearing up the -case. All these I may sketch out at some future date, but none of -them present such singular features as the strange train of -circumstances which I have now taken up my pen to describe. - -It was in the latter days of September, and the equinoctial gales -had set in with exceptional violence. All day the wind had -screamed and the rain had beaten against the windows, so that -even here in the heart of great, hand-made London we were forced -to raise our minds for the instant from the routine of life and -to recognise the presence of those great elemental forces which -shriek at mankind through the bars of his civilisation, like -untamed beasts in a cage. As evening drew in, the storm grew -higher and louder, and the wind cried and sobbed like a child in -the chimney. Sherlock Holmes sat moodily at one side of the -fireplace cross-indexing his records of crime, while I at the -other was deep in one of Clark Russell's fine sea-stories until -the howl of the gale from without seemed to blend with the text, -and the splash of the rain to lengthen out into the long swash of -the sea waves. My wife was on a visit to her mother's, and for a -few days I was a dweller once more in my old quarters at Baker -Street. - -"Why," said I, glancing up at my companion, "that was surely the -bell. Who could come to-night? Some friend of yours, perhaps?" - -"Except yourself I have none," he answered. "I do not encourage -visitors." - -"A client, then?" - -"If so, it is a serious case. Nothing less would bring a man out -on such a day and at such an hour. But I take it that it is more -likely to be some crony of the landlady's." - -Sherlock Holmes was wrong in his conjecture, however, for there -came a step in the passage and a tapping at the door. He -stretched out his long arm to turn the lamp away from himself and -towards the vacant chair upon which a newcomer must sit. - -"Come in!" said he. - -The man who entered was young, some two-and-twenty at the -outside, well-groomed and trimly clad, with something of -refinement and delicacy in his bearing. The streaming umbrella -which he held in his hand, and his long shining waterproof told -of the fierce weather through which he had come. He looked about -him anxiously in the glare of the lamp, and I could see that his -face was pale and his eyes heavy, like those of a man who is -weighed down with some great anxiety. - -"I owe you an apology," he said, raising his golden pince-nez to -his eyes. "I trust that I am not intruding. I fear that I have -brought some traces of the storm and rain into your snug -chamber." - -"Give me your coat and umbrella," said Holmes. "They may rest -here on the hook and will be dry presently. You have come up from -the south-west, I see." - -"Yes, from Horsham." - -"That clay and chalk mixture which I see upon your toe caps is -quite distinctive." - -"I have come for advice." - -"That is easily got." - -"And help." - -"That is not always so easy." - -"I have heard of you, Mr. Holmes. I heard from Major Prendergast -how you saved him in the Tankerville Club scandal." - -"Ah, of course. He was wrongfully accused of cheating at cards." - -"He said that you could solve anything." - -"He said too much." - -"That you are never beaten." - -"I have been beaten four times--three times by men, and once by a -woman." - -"But what is that compared with the number of your successes?" - -"It is true that I have been generally successful." - -"Then you may be so with me." - -"I beg that you will draw your chair up to the fire and favour me -with some details as to your case." - -"It is no ordinary one." - -"None of those which come to me are. I am the last court of -appeal." - -"And yet I question, sir, whether, in all your experience, you -have ever listened to a more mysterious and inexplicable chain of -events than those which have happened in my own family." - -"You fill me with interest," said Holmes. "Pray give us the -essential facts from the commencement, and I can afterwards -question you as to those details which seem to me to be most -important." - -The young man pulled his chair up and pushed his wet feet out -towards the blaze. - -"My name," said he, "is John Openshaw, but my own affairs have, -as far as I can understand, little to do with this awful -business. It is a hereditary matter; so in order to give you an -idea of the facts, I must go back to the commencement of the -affair. - -"You must know that my grandfather had two sons--my uncle Elias -and my father Joseph. My father had a small factory at Coventry, -which he enlarged at the time of the invention of bicycling. He -was a patentee of the Openshaw unbreakable tire, and his business -met with such success that he was able to sell it and to retire -upon a handsome competence. - -"My uncle Elias emigrated to America when he was a young man and -became a planter in Florida, where he was reported to have done -very well. At the time of the war he fought in Jackson's army, -and afterwards under Hood, where he rose to be a colonel. When -Lee laid down his arms my uncle returned to his plantation, where -he remained for three or four years. About 1869 or 1870 he came -back to Europe and took a small estate in Sussex, near Horsham. -He had made a very considerable fortune in the States, and his -reason for leaving them was his aversion to the negroes, and his -dislike of the Republican policy in extending the franchise to -them. He was a singular man, fierce and quick-tempered, very -foul-mouthed when he was angry, and of a most retiring -disposition. During all the years that he lived at Horsham, I -doubt if ever he set foot in the town. He had a garden and two or -three fields round his house, and there he would take his -exercise, though very often for weeks on end he would never leave -his room. He drank a great deal of brandy and smoked very -heavily, but he would see no society and did not want any -friends, not even his own brother. - -"He didn't mind me; in fact, he took a fancy to me, for at the -time when he saw me first I was a youngster of twelve or so. This -would be in the year 1878, after he had been eight or nine years -in England. He begged my father to let me live with him and he -was very kind to me in his way. When he was sober he used to be -fond of playing backgammon and draughts with me, and he would -make me his representative both with the servants and with the -tradespeople, so that by the time that I was sixteen I was quite -master of the house. I kept all the keys and could go where I -liked and do what I liked, so long as I did not disturb him in -his privacy. There was one singular exception, however, for he -had a single room, a lumber-room up among the attics, which was -invariably locked, and which he would never permit either me or -anyone else to enter. With a boy's curiosity I have peeped -through the keyhole, but I was never able to see more than such a -collection of old trunks and bundles as would be expected in such -a room. - -"One day--it was in March, 1883--a letter with a foreign stamp -lay upon the table in front of the colonel's plate. It was not a -common thing for him to receive letters, for his bills were all -paid in ready money, and he had no friends of any sort. 'From -India!' said he as he took it up, 'Pondicherry postmark! What can -this be?' Opening it hurriedly, out there jumped five little -dried orange pips, which pattered down upon his plate. I began to -laugh at this, but the laugh was struck from my lips at the sight -of his face. His lip had fallen, his eyes were protruding, his -skin the colour of putty, and he glared at the envelope which he -still held in his trembling hand, 'K. K. K.!' he shrieked, and -then, 'My God, my God, my sins have overtaken me!' - -"'What is it, uncle?' I cried. - -"'Death,' said he, and rising from the table he retired to his -room, leaving me palpitating with horror. I took up the envelope -and saw scrawled in red ink upon the inner flap, just above the -gum, the letter K three times repeated. There was nothing else -save the five dried pips. What could be the reason of his -overpowering terror? I left the breakfast-table, and as I -ascended the stair I met him coming down with an old rusty key, -which must have belonged to the attic, in one hand, and a small -brass box, like a cashbox, in the other. - -"'They may do what they like, but I'll checkmate them still,' -said he with an oath. 'Tell Mary that I shall want a fire in my -room to-day, and send down to Fordham, the Horsham lawyer.' - -"I did as he ordered, and when the lawyer arrived I was asked to -step up to the room. The fire was burning brightly, and in the -grate there was a mass of black, fluffy ashes, as of burned -paper, while the brass box stood open and empty beside it. As I -glanced at the box I noticed, with a start, that upon the lid was -printed the treble K which I had read in the morning upon the -envelope. - -"'I wish you, John,' said my uncle, 'to witness my will. I leave -my estate, with all its advantages and all its disadvantages, to -my brother, your father, whence it will, no doubt, descend to -you. If you can enjoy it in peace, well and good! If you find you -cannot, take my advice, my boy, and leave it to your deadliest -enemy. I am sorry to give you such a two-edged thing, but I can't -say what turn things are going to take. Kindly sign the paper -where Mr. Fordham shows you.' - -"I signed the paper as directed, and the lawyer took it away with -him. The singular incident made, as you may think, the deepest -impression upon me, and I pondered over it and turned it every -way in my mind without being able to make anything of it. Yet I -could not shake off the vague feeling of dread which it left -behind, though the sensation grew less keen as the weeks passed -and nothing happened to disturb the usual routine of our lives. I -could see a change in my uncle, however. He drank more than ever, -and he was less inclined for any sort of society. Most of his -time he would spend in his room, with the door locked upon the -inside, but sometimes he would emerge in a sort of drunken frenzy -and would burst out of the house and tear about the garden with a -revolver in his hand, screaming out that he was afraid of no man, -and that he was not to be cooped up, like a sheep in a pen, by -man or devil. When these hot fits were over, however, he would -rush tumultuously in at the door and lock and bar it behind him, -like a man who can brazen it out no longer against the terror -which lies at the roots of his soul. At such times I have seen -his face, even on a cold day, glisten with moisture, as though it -were new raised from a basin. - -"Well, to come to an end of the matter, Mr. Holmes, and not to -abuse your patience, there came a night when he made one of those -drunken sallies from which he never came back. We found him, when -we went to search for him, face downward in a little -green-scummed pool, which lay at the foot of the garden. There -was no sign of any violence, and the water was but two feet deep, -so that the jury, having regard to his known eccentricity, -brought in a verdict of 'suicide.' But I, who knew how he winced -from the very thought of death, had much ado to persuade myself -that he had gone out of his way to meet it. The matter passed, -however, and my father entered into possession of the estate, and -of some 14,000 pounds, which lay to his credit at the bank." - -"One moment," Holmes interposed, "your statement is, I foresee, -one of the most remarkable to which I have ever listened. Let me -have the date of the reception by your uncle of the letter, and -the date of his supposed suicide." - -"The letter arrived on March 10, 1883. His death was seven weeks -later, upon the night of May 2nd." - -"Thank you. Pray proceed." - -"When my father took over the Horsham property, he, at my -request, made a careful examination of the attic, which had been -always locked up. We found the brass box there, although its -contents had been destroyed. On the inside of the cover was a -paper label, with the initials of K. K. K. repeated upon it, and -'Letters, memoranda, receipts, and a register' written beneath. -These, we presume, indicated the nature of the papers which had -been destroyed by Colonel Openshaw. For the rest, there was -nothing of much importance in the attic save a great many -scattered papers and note-books bearing upon my uncle's life in -America. Some of them were of the war time and showed that he had -done his duty well and had borne the repute of a brave soldier. -Others were of a date during the reconstruction of the Southern -states, and were mostly concerned with politics, for he had -evidently taken a strong part in opposing the carpet-bag -politicians who had been sent down from the North. - -"Well, it was the beginning of '84 when my father came to live at -Horsham, and all went as well as possible with us until the -January of '85. On the fourth day after the new year I heard my -father give a sharp cry of surprise as we sat together at the -breakfast-table. There he was, sitting with a newly opened -envelope in one hand and five dried orange pips in the -outstretched palm of the other one. He had always laughed at what -he called my cock-and-bull story about the colonel, but he looked -very scared and puzzled now that the same thing had come upon -himself. - -"'Why, what on earth does this mean, John?' he stammered. - -"My heart had turned to lead. 'It is K. K. K.,' said I. - -"He looked inside the envelope. 'So it is,' he cried. 'Here are -the very letters. But what is this written above them?' - -"'Put the papers on the sundial,' I read, peeping over his -shoulder. - -"'What papers? What sundial?' he asked. - -"'The sundial in the garden. There is no other,' said I; 'but the -papers must be those that are destroyed.' - -"'Pooh!' said he, gripping hard at his courage. 'We are in a -civilised land here, and we can't have tomfoolery of this kind. -Where does the thing come from?' - -"'From Dundee,' I answered, glancing at the postmark. - -"'Some preposterous practical joke,' said he. 'What have I to do -with sundials and papers? I shall take no notice of such -nonsense.' - -"'I should certainly speak to the police,' I said. - -"'And be laughed at for my pains. Nothing of the sort.' - -"'Then let me do so?' - -"'No, I forbid you. I won't have a fuss made about such -nonsense.' - -"It was in vain to argue with him, for he was a very obstinate -man. I went about, however, with a heart which was full of -forebodings. - -"On the third day after the coming of the letter my father went -from home to visit an old friend of his, Major Freebody, who is -in command of one of the forts upon Portsdown Hill. I was glad -that he should go, for it seemed to me that he was farther from -danger when he was away from home. In that, however, I was in -error. Upon the second day of his absence I received a telegram -from the major, imploring me to come at once. My father had -fallen over one of the deep chalk-pits which abound in the -neighbourhood, and was lying senseless, with a shattered skull. I -hurried to him, but he passed away without having ever recovered -his consciousness. He had, as it appears, been returning from -Fareham in the twilight, and as the country was unknown to him, -and the chalk-pit unfenced, the jury had no hesitation in -bringing in a verdict of 'death from accidental causes.' -Carefully as I examined every fact connected with his death, I -was unable to find anything which could suggest the idea of -murder. There were no signs of violence, no footmarks, no -robbery, no record of strangers having been seen upon the roads. -And yet I need not tell you that my mind was far from at ease, -and that I was well-nigh certain that some foul plot had been -woven round him. - -"In this sinister way I came into my inheritance. You will ask me -why I did not dispose of it? I answer, because I was well -convinced that our troubles were in some way dependent upon an -incident in my uncle's life, and that the danger would be as -pressing in one house as in another. - -"It was in January, '85, that my poor father met his end, and two -years and eight months have elapsed since then. During that time -I have lived happily at Horsham, and I had begun to hope that -this curse had passed away from the family, and that it had ended -with the last generation. I had begun to take comfort too soon, -however; yesterday morning the blow fell in the very shape in -which it had come upon my father." - -The young man took from his waistcoat a crumpled envelope, and -turning to the table he shook out upon it five little dried -orange pips. - -"This is the envelope," he continued. "The postmark is -London--eastern division. Within are the very words which were -upon my father's last message: 'K. K. K.'; and then 'Put the -papers on the sundial.'" - -"What have you done?" asked Holmes. - -"Nothing." - -"Nothing?" - -"To tell the truth"--he sank his face into his thin, white -hands--"I have felt helpless. I have felt like one of those poor -rabbits when the snake is writhing towards it. I seem to be in -the grasp of some resistless, inexorable evil, which no foresight -and no precautions can guard against." - -"Tut! tut!" cried Sherlock Holmes. "You must act, man, or you are -lost. Nothing but energy can save you. This is no time for -despair." - -"I have seen the police." - -"Ah!" - -"But they listened to my story with a smile. I am convinced that -the inspector has formed the opinion that the letters are all -practical jokes, and that the deaths of my relations were really -accidents, as the jury stated, and were not to be connected with -the warnings." - -Holmes shook his clenched hands in the air. "Incredible -imbecility!" he cried. - -"They have, however, allowed me a policeman, who may remain in -the house with me." - -"Has he come with you to-night?" - -"No. His orders were to stay in the house." - -Again Holmes raved in the air. - -"Why did you come to me," he cried, "and, above all, why did you -not come at once?" - -"I did not know. It was only to-day that I spoke to Major -Prendergast about my troubles and was advised by him to come to -you." - -"It is really two days since you had the letter. We should have -acted before this. You have no further evidence, I suppose, than -that which you have placed before us--no suggestive detail which -might help us?" - -"There is one thing," said John Openshaw. He rummaged in his coat -pocket, and, drawing out a piece of discoloured, blue-tinted -paper, he laid it out upon the table. "I have some remembrance," -said he, "that on the day when my uncle burned the papers I -observed that the small, unburned margins which lay amid the -ashes were of this particular colour. I found this single sheet -upon the floor of his room, and I am inclined to think that it -may be one of the papers which has, perhaps, fluttered out from -among the others, and in that way has escaped destruction. Beyond -the mention of pips, I do not see that it helps us much. I think -myself that it is a page from some private diary. The writing is -undoubtedly my uncle's." - -Holmes moved the lamp, and we both bent over the sheet of paper, -which showed by its ragged edge that it had indeed been torn from -a book. It was headed, "March, 1869," and beneath were the -following enigmatical notices: - -"4th. Hudson came. Same old platform. - -"7th. Set the pips on McCauley, Paramore, and - John Swain, of St. Augustine. - -"9th. McCauley cleared. - -"10th. John Swain cleared. - -"12th. Visited Paramore. All well." - -"Thank you!" said Holmes, folding up the paper and returning it -to our visitor. "And now you must on no account lose another -instant. We cannot spare time even to discuss what you have told -me. You must get home instantly and act." - -"What shall I do?" - -"There is but one thing to do. It must be done at once. You must -put this piece of paper which you have shown us into the brass -box which you have described. You must also put in a note to say -that all the other papers were burned by your uncle, and that -this is the only one which remains. You must assert that in such -words as will carry conviction with them. Having done this, you -must at once put the box out upon the sundial, as directed. Do -you understand?" - -"Entirely." - -"Do not think of revenge, or anything of the sort, at present. I -think that we may gain that by means of the law; but we have our -web to weave, while theirs is already woven. The first -consideration is to remove the pressing danger which threatens -you. The second is to clear up the mystery and to punish the -guilty parties." - -"I thank you," said the young man, rising and pulling on his -overcoat. "You have given me fresh life and hope. I shall -certainly do as you advise." - -"Do not lose an instant. And, above all, take care of yourself in -the meanwhile, for I do not think that there can be a doubt that -you are threatened by a very real and imminent danger. How do you -go back?" - -"By train from Waterloo." - -"It is not yet nine. The streets will be crowded, so I trust that -you may be in safety. And yet you cannot guard yourself too -closely." - -"I am armed." - -"That is well. To-morrow I shall set to work upon your case." - -"I shall see you at Horsham, then?" - -"No, your secret lies in London. It is there that I shall seek -it." - -"Then I shall call upon you in a day, or in two days, with news -as to the box and the papers. I shall take your advice in every -particular." He shook hands with us and took his leave. Outside -the wind still screamed and the rain splashed and pattered -against the windows. This strange, wild story seemed to have come -to us from amid the mad elements--blown in upon us like a sheet -of sea-weed in a gale--and now to have been reabsorbed by them -once more. - -Sherlock Holmes sat for some time in silence, with his head sunk -forward and his eyes bent upon the red glow of the fire. Then he -lit his pipe, and leaning back in his chair he watched the blue -smoke-rings as they chased each other up to the ceiling. - -"I think, Watson," he remarked at last, "that of all our cases we -have had none more fantastic than this." - -"Save, perhaps, the Sign of Four." - -"Well, yes. Save, perhaps, that. And yet this John Openshaw seems -to me to be walking amid even greater perils than did the -Sholtos." - -"But have you," I asked, "formed any definite conception as to -what these perils are?" - -"There can be no question as to their nature," he answered. - -"Then what are they? Who is this K. K. K., and why does he pursue -this unhappy family?" - -Sherlock Holmes closed his eyes and placed his elbows upon the -arms of his chair, with his finger-tips together. "The ideal -reasoner," he remarked, "would, when he had once been shown a -single fact in all its bearings, deduce from it not only all the -chain of events which led up to it but also all the results which -would follow from it. As Cuvier could correctly describe a whole -animal by the contemplation of a single bone, so the observer who -has thoroughly understood one link in a series of incidents -should be able to accurately state all the other ones, both -before and after. We have not yet grasped the results which the -reason alone can attain to. Problems may be solved in the study -which have baffled all those who have sought a solution by the -aid of their senses. To carry the art, however, to its highest -pitch, it is necessary that the reasoner should be able to -utilise all the facts which have come to his knowledge; and this -in itself implies, as you will readily see, a possession of all -knowledge, which, even in these days of free education and -encyclopaedias, is a somewhat rare accomplishment. It is not so -impossible, however, that a man should possess all knowledge -which is likely to be useful to him in his work, and this I have -endeavoured in my case to do. If I remember rightly, you on one -occasion, in the early days of our friendship, defined my limits -in a very precise fashion." - -"Yes," I answered, laughing. "It was a singular document. -Philosophy, astronomy, and politics were marked at zero, I -remember. Botany variable, geology profound as regards the -mud-stains from any region within fifty miles of town, chemistry -eccentric, anatomy unsystematic, sensational literature and crime -records unique, violin-player, boxer, swordsman, lawyer, and -self-poisoner by cocaine and tobacco. Those, I think, were the -main points of my analysis." - -Holmes grinned at the last item. "Well," he said, "I say now, as -I said then, that a man should keep his little brain-attic -stocked with all the furniture that he is likely to use, and the -rest he can put away in the lumber-room of his library, where he -can get it if he wants it. Now, for such a case as the one which -has been submitted to us to-night, we need certainly to muster -all our resources. Kindly hand me down the letter K of the -'American Encyclopaedia' which stands upon the shelf beside you. -Thank you. Now let us consider the situation and see what may be -deduced from it. In the first place, we may start with a strong -presumption that Colonel Openshaw had some very strong reason for -leaving America. Men at his time of life do not change all their -habits and exchange willingly the charming climate of Florida for -the lonely life of an English provincial town. His extreme love -of solitude in England suggests the idea that he was in fear of -someone or something, so we may assume as a working hypothesis -that it was fear of someone or something which drove him from -America. As to what it was he feared, we can only deduce that by -considering the formidable letters which were received by himself -and his successors. Did you remark the postmarks of those -letters?" - -"The first was from Pondicherry, the second from Dundee, and the -third from London." - -"From East London. What do you deduce from that?" - -"They are all seaports. That the writer was on board of a ship." - -"Excellent. We have already a clue. There can be no doubt that -the probability--the strong probability--is that the writer was -on board of a ship. And now let us consider another point. In the -case of Pondicherry, seven weeks elapsed between the threat and -its fulfilment, in Dundee it was only some three or four days. -Does that suggest anything?" - -"A greater distance to travel." - -"But the letter had also a greater distance to come." - -"Then I do not see the point." - -"There is at least a presumption that the vessel in which the man -or men are is a sailing-ship. It looks as if they always send -their singular warning or token before them when starting upon -their mission. You see how quickly the deed followed the sign -when it came from Dundee. If they had come from Pondicherry in a -steamer they would have arrived almost as soon as their letter. -But, as a matter of fact, seven weeks elapsed. I think that those -seven weeks represented the difference between the mail-boat which -brought the letter and the sailing vessel which brought the -writer." - -"It is possible." - -"More than that. It is probable. And now you see the deadly -urgency of this new case, and why I urged young Openshaw to -caution. The blow has always fallen at the end of the time which -it would take the senders to travel the distance. But this one -comes from London, and therefore we cannot count upon delay." - -"Good God!" I cried. "What can it mean, this relentless -persecution?" - -"The papers which Openshaw carried are obviously of vital -importance to the person or persons in the sailing-ship. I think -that it is quite clear that there must be more than one of them. -A single man could not have carried out two deaths in such a way -as to deceive a coroner's jury. There must have been several in -it, and they must have been men of resource and determination. -Their papers they mean to have, be the holder of them who it may. -In this way you see K. K. K. ceases to be the initials of an -individual and becomes the badge of a society." - -"But of what society?" - -"Have you never--" said Sherlock Holmes, bending forward and -sinking his voice--"have you never heard of the Ku Klux Klan?" - -"I never have." - -Holmes turned over the leaves of the book upon his knee. "Here it -is," said he presently: - -"'Ku Klux Klan. A name derived from the fanciful resemblance to -the sound produced by cocking a rifle. This terrible secret -society was formed by some ex-Confederate soldiers in the -Southern states after the Civil War, and it rapidly formed local -branches in different parts of the country, notably in Tennessee, -Louisiana, the Carolinas, Georgia, and Florida. Its power was -used for political purposes, principally for the terrorising of -the negro voters and the murdering and driving from the country -of those who were opposed to its views. Its outrages were usually -preceded by a warning sent to the marked man in some fantastic -but generally recognised shape--a sprig of oak-leaves in some -parts, melon seeds or orange pips in others. On receiving this -the victim might either openly abjure his former ways, or might -fly from the country. If he braved the matter out, death would -unfailingly come upon him, and usually in some strange and -unforeseen manner. So perfect was the organisation of the -society, and so systematic its methods, that there is hardly a -case upon record where any man succeeded in braving it with -impunity, or in which any of its outrages were traced home to the -perpetrators. For some years the organisation flourished in spite -of the efforts of the United States government and of the better -classes of the community in the South. Eventually, in the year -1869, the movement rather suddenly collapsed, although there have -been sporadic outbreaks of the same sort since that date.' - -"You will observe," said Holmes, laying down the volume, "that -the sudden breaking up of the society was coincident with the -disappearance of Openshaw from America with their papers. It may -well have been cause and effect. It is no wonder that he and his -family have some of the more implacable spirits upon their track. -You can understand that this register and diary may implicate -some of the first men in the South, and that there may be many -who will not sleep easy at night until it is recovered." - -"Then the page we have seen--" - -"Is such as we might expect. It ran, if I remember right, 'sent -the pips to A, B, and C'--that is, sent the society's warning to -them. Then there are successive entries that A and B cleared, or -left the country, and finally that C was visited, with, I fear, a -sinister result for C. Well, I think, Doctor, that we may let -some light into this dark place, and I believe that the only -chance young Openshaw has in the meantime is to do what I have -told him. There is nothing more to be said or to be done -to-night, so hand me over my violin and let us try to forget for -half an hour the miserable weather and the still more miserable -ways of our fellow-men." - - -It had cleared in the morning, and the sun was shining with a -subdued brightness through the dim veil which hangs over the -great city. Sherlock Holmes was already at breakfast when I came -down. - -"You will excuse me for not waiting for you," said he; "I have, I -foresee, a very busy day before me in looking into this case of -young Openshaw's." - -"What steps will you take?" I asked. - -"It will very much depend upon the results of my first inquiries. -I may have to go down to Horsham, after all." - -"You will not go there first?" - -"No, I shall commence with the City. Just ring the bell and the -maid will bring up your coffee." - -As I waited, I lifted the unopened newspaper from the table and -glanced my eye over it. It rested upon a heading which sent a -chill to my heart. - -"Holmes," I cried, "you are too late." - -"Ah!" said he, laying down his cup, "I feared as much. How was it -done?" He spoke calmly, but I could see that he was deeply moved. - -"My eye caught the name of Openshaw, and the heading 'Tragedy -Near Waterloo Bridge.' Here is the account: - -"Between nine and ten last night Police-Constable Cook, of the H -Division, on duty near Waterloo Bridge, heard a cry for help and -a splash in the water. The night, however, was extremely dark and -stormy, so that, in spite of the help of several passers-by, it -was quite impossible to effect a rescue. The alarm, however, was -given, and, by the aid of the water-police, the body was -eventually recovered. It proved to be that of a young gentleman -whose name, as it appears from an envelope which was found in his -pocket, was John Openshaw, and whose residence is near Horsham. -It is conjectured that he may have been hurrying down to catch -the last train from Waterloo Station, and that in his haste and -the extreme darkness he missed his path and walked over the edge -of one of the small landing-places for river steamboats. The body -exhibited no traces of violence, and there can be no doubt that -the deceased had been the victim of an unfortunate accident, -which should have the effect of calling the attention of the -authorities to the condition of the riverside landing-stages." - -We sat in silence for some minutes, Holmes more depressed and -shaken than I had ever seen him. - -"That hurts my pride, Watson," he said at last. "It is a petty -feeling, no doubt, but it hurts my pride. It becomes a personal -matter with me now, and, if God sends me health, I shall set my -hand upon this gang. That he should come to me for help, and that -I should send him away to his death--!" He sprang from his chair -and paced about the room in uncontrollable agitation, with a -flush upon his sallow cheeks and a nervous clasping and -unclasping of his long thin hands. - -"They must be cunning devils," he exclaimed at last. "How could -they have decoyed him down there? The Embankment is not on the -direct line to the station. The bridge, no doubt, was too -crowded, even on such a night, for their purpose. Well, Watson, -we shall see who will win in the long run. I am going out now!" - -"To the police?" - -"No; I shall be my own police. When I have spun the web they may -take the flies, but not before." - -All day I was engaged in my professional work, and it was late in -the evening before I returned to Baker Street. Sherlock Holmes -had not come back yet. It was nearly ten o'clock before he -entered, looking pale and worn. He walked up to the sideboard, -and tearing a piece from the loaf he devoured it voraciously, -washing it down with a long draught of water. - -"You are hungry," I remarked. - -"Starving. It had escaped my memory. I have had nothing since -breakfast." - -"Nothing?" - -"Not a bite. I had no time to think of it." - -"And how have you succeeded?" - -"Well." - -"You have a clue?" - -"I have them in the hollow of my hand. Young Openshaw shall not -long remain unavenged. Why, Watson, let us put their own devilish -trade-mark upon them. It is well thought of!" - -"What do you mean?" - -He took an orange from the cupboard, and tearing it to pieces he -squeezed out the pips upon the table. Of these he took five and -thrust them into an envelope. On the inside of the flap he wrote -"S. H. for J. O." Then he sealed it and addressed it to "Captain -James Calhoun, Barque 'Lone Star,' Savannah, Georgia." - -"That will await him when he enters port," said he, chuckling. -"It may give him a sleepless night. He will find it as sure a -precursor of his fate as Openshaw did before him." - -"And who is this Captain Calhoun?" - -"The leader of the gang. I shall have the others, but he first." - -"How did you trace it, then?" - -He took a large sheet of paper from his pocket, all covered with -dates and names. - -"I have spent the whole day," said he, "over Lloyd's registers -and files of the old papers, following the future career of every -vessel which touched at Pondicherry in January and February in -'83. There were thirty-six ships of fair tonnage which were -reported there during those months. Of these, one, the 'Lone Star,' -instantly attracted my attention, since, although it was reported -as having cleared from London, the name is that which is given to -one of the states of the Union." - -"Texas, I think." - -"I was not and am not sure which; but I knew that the ship must -have an American origin." - -"What then?" - -"I searched the Dundee records, and when I found that the barque -'Lone Star' was there in January, '85, my suspicion became a -certainty. I then inquired as to the vessels which lay at present -in the port of London." - -"Yes?" - -"The 'Lone Star' had arrived here last week. I went down to the -Albert Dock and found that she had been taken down the river by -the early tide this morning, homeward bound to Savannah. I wired -to Gravesend and learned that she had passed some time ago, and -as the wind is easterly I have no doubt that she is now past the -Goodwins and not very far from the Isle of Wight." - -"What will you do, then?" - -"Oh, I have my hand upon him. He and the two mates, are as I -learn, the only native-born Americans in the ship. The others are -Finns and Germans. I know, also, that they were all three away -from the ship last night. I had it from the stevedore who has -been loading their cargo. By the time that their sailing-ship -reaches Savannah the mail-boat will have carried this letter, and -the cable will have informed the police of Savannah that these -three gentlemen are badly wanted here upon a charge of murder." - -There is ever a flaw, however, in the best laid of human plans, -and the murderers of John Openshaw were never to receive the -orange pips which would show them that another, as cunning and as -resolute as themselves, was upon their track. Very long and very -severe were the equinoctial gales that year. We waited long for -news of the "Lone Star" of Savannah, but none ever reached us. We -did at last hear that somewhere far out in the Atlantic a -shattered stern-post of a boat was seen swinging in the trough -of a wave, with the letters "L. S." carved upon it, and that is -all which we shall ever know of the fate of the "Lone Star." - - - -ADVENTURE VI. THE MAN WITH THE TWISTED LIP - -Isa Whitney, brother of the late Elias Whitney, D.D., Principal -of the Theological College of St. George's, was much addicted to -opium. The habit grew upon him, as I understand, from some -foolish freak when he was at college; for having read De -Quincey's description of his dreams and sensations, he had -drenched his tobacco with laudanum in an attempt to produce the -same effects. He found, as so many more have done, that the -practice is easier to attain than to get rid of, and for many -years he continued to be a slave to the drug, an object of -mingled horror and pity to his friends and relatives. I can see -him now, with yellow, pasty face, drooping lids, and pin-point -pupils, all huddled in a chair, the wreck and ruin of a noble -man. - -One night--it was in June, '89--there came a ring to my bell, -about the hour when a man gives his first yawn and glances at the -clock. I sat up in my chair, and my wife laid her needle-work -down in her lap and made a little face of disappointment. - -"A patient!" said she. "You'll have to go out." - -I groaned, for I was newly come back from a weary day. - -We heard the door open, a few hurried words, and then quick steps -upon the linoleum. Our own door flew open, and a lady, clad in -some dark-coloured stuff, with a black veil, entered the room. - -"You will excuse my calling so late," she began, and then, -suddenly losing her self-control, she ran forward, threw her arms -about my wife's neck, and sobbed upon her shoulder. "Oh, I'm in -such trouble!" she cried; "I do so want a little help." - -"Why," said my wife, pulling up her veil, "it is Kate Whitney. -How you startled me, Kate! I had not an idea who you were when -you came in." - -"I didn't know what to do, so I came straight to you." That was -always the way. Folk who were in grief came to my wife like birds -to a light-house. - -"It was very sweet of you to come. Now, you must have some wine -and water, and sit here comfortably and tell us all about it. Or -should you rather that I sent James off to bed?" - -"Oh, no, no! I want the doctor's advice and help, too. It's about -Isa. He has not been home for two days. I am so frightened about -him!" - -It was not the first time that she had spoken to us of her -husband's trouble, to me as a doctor, to my wife as an old friend -and school companion. We soothed and comforted her by such words -as we could find. Did she know where her husband was? Was it -possible that we could bring him back to her? - -It seems that it was. She had the surest information that of late -he had, when the fit was on him, made use of an opium den in the -farthest east of the City. Hitherto his orgies had always been -confined to one day, and he had come back, twitching and -shattered, in the evening. But now the spell had been upon him -eight-and-forty hours, and he lay there, doubtless among the -dregs of the docks, breathing in the poison or sleeping off the -effects. There he was to be found, she was sure of it, at the Bar -of Gold, in Upper Swandam Lane. But what was she to do? How could -she, a young and timid woman, make her way into such a place and -pluck her husband out from among the ruffians who surrounded him? - -There was the case, and of course there was but one way out of -it. Might I not escort her to this place? And then, as a second -thought, why should she come at all? I was Isa Whitney's medical -adviser, and as such I had influence over him. I could manage it -better if I were alone. I promised her on my word that I would -send him home in a cab within two hours if he were indeed at the -address which she had given me. And so in ten minutes I had left -my armchair and cheery sitting-room behind me, and was speeding -eastward in a hansom on a strange errand, as it seemed to me at -the time, though the future only could show how strange it was to -be. - -But there was no great difficulty in the first stage of my -adventure. Upper Swandam Lane is a vile alley lurking behind the -high wharves which line the north side of the river to the east -of London Bridge. Between a slop-shop and a gin-shop, approached -by a steep flight of steps leading down to a black gap like the -mouth of a cave, I found the den of which I was in search. -Ordering my cab to wait, I passed down the steps, worn hollow in -the centre by the ceaseless tread of drunken feet; and by the -light of a flickering oil-lamp above the door I found the latch -and made my way into a long, low room, thick and heavy with the -brown opium smoke, and terraced with wooden berths, like the -forecastle of an emigrant ship. - -Through the gloom one could dimly catch a glimpse of bodies lying -in strange fantastic poses, bowed shoulders, bent knees, heads -thrown back, and chins pointing upward, with here and there a -dark, lack-lustre eye turned upon the newcomer. Out of the black -shadows there glimmered little red circles of light, now bright, -now faint, as the burning poison waxed or waned in the bowls of -the metal pipes. The most lay silent, but some muttered to -themselves, and others talked together in a strange, low, -monotonous voice, their conversation coming in gushes, and then -suddenly tailing off into silence, each mumbling out his own -thoughts and paying little heed to the words of his neighbour. At -the farther end was a small brazier of burning charcoal, beside -which on a three-legged wooden stool there sat a tall, thin old -man, with his jaw resting upon his two fists, and his elbows upon -his knees, staring into the fire. - -As I entered, a sallow Malay attendant had hurried up with a pipe -for me and a supply of the drug, beckoning me to an empty berth. - -"Thank you. I have not come to stay," said I. "There is a friend -of mine here, Mr. Isa Whitney, and I wish to speak with him." - -There was a movement and an exclamation from my right, and -peering through the gloom, I saw Whitney, pale, haggard, and -unkempt, staring out at me. - -"My God! It's Watson," said he. He was in a pitiable state of -reaction, with every nerve in a twitter. "I say, Watson, what -o'clock is it?" - -"Nearly eleven." - -"Of what day?" - -"Of Friday, June 19th." - -"Good heavens! I thought it was Wednesday. It is Wednesday. What -d'you want to frighten a chap for?" He sank his face onto his -arms and began to sob in a high treble key. - -"I tell you that it is Friday, man. Your wife has been waiting -this two days for you. You should be ashamed of yourself!" - -"So I am. But you've got mixed, Watson, for I have only been here -a few hours, three pipes, four pipes--I forget how many. But I'll -go home with you. I wouldn't frighten Kate--poor little Kate. -Give me your hand! Have you a cab?" - -"Yes, I have one waiting." - -"Then I shall go in it. But I must owe something. Find what I -owe, Watson. I am all off colour. I can do nothing for myself." - -I walked down the narrow passage between the double row of -sleepers, holding my breath to keep out the vile, stupefying -fumes of the drug, and looking about for the manager. As I passed -the tall man who sat by the brazier I felt a sudden pluck at my -skirt, and a low voice whispered, "Walk past me, and then look -back at me." The words fell quite distinctly upon my ear. I -glanced down. They could only have come from the old man at my -side, and yet he sat now as absorbed as ever, very thin, very -wrinkled, bent with age, an opium pipe dangling down from between -his knees, as though it had dropped in sheer lassitude from his -fingers. I took two steps forward and looked back. It took all my -self-control to prevent me from breaking out into a cry of -astonishment. He had turned his back so that none could see him -but I. His form had filled out, his wrinkles were gone, the dull -eyes had regained their fire, and there, sitting by the fire and -grinning at my surprise, was none other than Sherlock Holmes. He -made a slight motion to me to approach him, and instantly, as he -turned his face half round to the company once more, subsided -into a doddering, loose-lipped senility. - -"Holmes!" I whispered, "what on earth are you doing in this den?" - -"As low as you can," he answered; "I have excellent ears. If you -would have the great kindness to get rid of that sottish friend -of yours I should be exceedingly glad to have a little talk with -you." - -"I have a cab outside." - -"Then pray send him home in it. You may safely trust him, for he -appears to be too limp to get into any mischief. I should -recommend you also to send a note by the cabman to your wife to -say that you have thrown in your lot with me. If you will wait -outside, I shall be with you in five minutes." - -It was difficult to refuse any of Sherlock Holmes' requests, for -they were always so exceedingly definite, and put forward with -such a quiet air of mastery. I felt, however, that when Whitney -was once confined in the cab my mission was practically -accomplished; and for the rest, I could not wish anything better -than to be associated with my friend in one of those singular -adventures which were the normal condition of his existence. In a -few minutes I had written my note, paid Whitney's bill, led him -out to the cab, and seen him driven through the darkness. In a -very short time a decrepit figure had emerged from the opium den, -and I was walking down the street with Sherlock Holmes. For two -streets he shuffled along with a bent back and an uncertain foot. -Then, glancing quickly round, he straightened himself out and -burst into a hearty fit of laughter. - -"I suppose, Watson," said he, "that you imagine that I have added -opium-smoking to cocaine injections, and all the other little -weaknesses on which you have favoured me with your medical -views." - -"I was certainly surprised to find you there." - -"But not more so than I to find you." - -"I came to find a friend." - -"And I to find an enemy." - -"An enemy?" - -"Yes; one of my natural enemies, or, shall I say, my natural -prey. Briefly, Watson, I am in the midst of a very remarkable -inquiry, and I have hoped to find a clue in the incoherent -ramblings of these sots, as I have done before now. Had I been -recognised in that den my life would not have been worth an -hour's purchase; for I have used it before now for my own -purposes, and the rascally Lascar who runs it has sworn to have -vengeance upon me. There is a trap-door at the back of that -building, near the corner of Paul's Wharf, which could tell some -strange tales of what has passed through it upon the moonless -nights." - -"What! You do not mean bodies?" - -"Ay, bodies, Watson. We should be rich men if we had 1000 pounds -for every poor devil who has been done to death in that den. It -is the vilest murder-trap on the whole riverside, and I fear that -Neville St. Clair has entered it never to leave it more. But our -trap should be here." He put his two forefingers between his -teeth and whistled shrilly--a signal which was answered by a -similar whistle from the distance, followed shortly by the rattle -of wheels and the clink of horses' hoofs. - -"Now, Watson," said Holmes, as a tall dog-cart dashed up through -the gloom, throwing out two golden tunnels of yellow light from -its side lanterns. "You'll come with me, won't you?" - -"If I can be of use." - -"Oh, a trusty comrade is always of use; and a chronicler still -more so. My room at The Cedars is a double-bedded one." - -"The Cedars?" - -"Yes; that is Mr. St. Clair's house. I am staying there while I -conduct the inquiry." - -"Where is it, then?" - -"Near Lee, in Kent. We have a seven-mile drive before us." - -"But I am all in the dark." - -"Of course you are. You'll know all about it presently. Jump up -here. All right, John; we shall not need you. Here's half a -crown. Look out for me to-morrow, about eleven. Give her her -head. So long, then!" - -He flicked the horse with his whip, and we dashed away through -the endless succession of sombre and deserted streets, which -widened gradually, until we were flying across a broad -balustraded bridge, with the murky river flowing sluggishly -beneath us. Beyond lay another dull wilderness of bricks and -mortar, its silence broken only by the heavy, regular footfall of -the policeman, or the songs and shouts of some belated party of -revellers. A dull wrack was drifting slowly across the sky, and a -star or two twinkled dimly here and there through the rifts of -the clouds. Holmes drove in silence, with his head sunk upon his -breast, and the air of a man who is lost in thought, while I sat -beside him, curious to learn what this new quest might be which -seemed to tax his powers so sorely, and yet afraid to break in -upon the current of his thoughts. We had driven several miles, -and were beginning to get to the fringe of the belt of suburban -villas, when he shook himself, shrugged his shoulders, and lit up -his pipe with the air of a man who has satisfied himself that he -is acting for the best. - -"You have a grand gift of silence, Watson," said he. "It makes -you quite invaluable as a companion. 'Pon my word, it is a great -thing for me to have someone to talk to, for my own thoughts are -not over-pleasant. I was wondering what I should say to this dear -little woman to-night when she meets me at the door." - -"You forget that I know nothing about it." - -"I shall just have time to tell you the facts of the case before -we get to Lee. It seems absurdly simple, and yet, somehow I can -get nothing to go upon. There's plenty of thread, no doubt, but I -can't get the end of it into my hand. Now, I'll state the case -clearly and concisely to you, Watson, and maybe you can see a -spark where all is dark to me." - -"Proceed, then." - -"Some years ago--to be definite, in May, 1884--there came to Lee -a gentleman, Neville St. Clair by name, who appeared to have -plenty of money. He took a large villa, laid out the grounds very -nicely, and lived generally in good style. By degrees he made -friends in the neighbourhood, and in 1887 he married the daughter -of a local brewer, by whom he now has two children. He had no -occupation, but was interested in several companies and went into -town as a rule in the morning, returning by the 5:14 from Cannon -Street every night. Mr. St. Clair is now thirty-seven years of -age, is a man of temperate habits, a good husband, a very -affectionate father, and a man who is popular with all who know -him. I may add that his whole debts at the present moment, as far -as we have been able to ascertain, amount to 88 pounds 10s., while -he has 220 pounds standing to his credit in the Capital and -Counties Bank. There is no reason, therefore, to think that money -troubles have been weighing upon his mind. - -"Last Monday Mr. Neville St. Clair went into town rather earlier -than usual, remarking before he started that he had two important -commissions to perform, and that he would bring his little boy -home a box of bricks. Now, by the merest chance, his wife -received a telegram upon this same Monday, very shortly after his -departure, to the effect that a small parcel of considerable -value which she had been expecting was waiting for her at the -offices of the Aberdeen Shipping Company. Now, if you are well up -in your London, you will know that the office of the company is -in Fresno Street, which branches out of Upper Swandam Lane, where -you found me to-night. Mrs. St. Clair had her lunch, started for -the City, did some shopping, proceeded to the company's office, -got her packet, and found herself at exactly 4:35 walking through -Swandam Lane on her way back to the station. Have you followed me -so far?" - -"It is very clear." - -"If you remember, Monday was an exceedingly hot day, and Mrs. St. -Clair walked slowly, glancing about in the hope of seeing a cab, -as she did not like the neighbourhood in which she found herself. -While she was walking in this way down Swandam Lane, she suddenly -heard an ejaculation or cry, and was struck cold to see her -husband looking down at her and, as it seemed to her, beckoning -to her from a second-floor window. The window was open, and she -distinctly saw his face, which she describes as being terribly -agitated. He waved his hands frantically to her, and then -vanished from the window so suddenly that it seemed to her that -he had been plucked back by some irresistible force from behind. -One singular point which struck her quick feminine eye was that -although he wore some dark coat, such as he had started to town -in, he had on neither collar nor necktie. - -"Convinced that something was amiss with him, she rushed down the -steps--for the house was none other than the opium den in which -you found me to-night--and running through the front room she -attempted to ascend the stairs which led to the first floor. At -the foot of the stairs, however, she met this Lascar scoundrel of -whom I have spoken, who thrust her back and, aided by a Dane, who -acts as assistant there, pushed her out into the street. Filled -with the most maddening doubts and fears, she rushed down the -lane and, by rare good-fortune, met in Fresno Street a number of -constables with an inspector, all on their way to their beat. The -inspector and two men accompanied her back, and in spite of the -continued resistance of the proprietor, they made their way to -the room in which Mr. St. Clair had last been seen. There was no -sign of him there. In fact, in the whole of that floor there was -no one to be found save a crippled wretch of hideous aspect, who, -it seems, made his home there. Both he and the Lascar stoutly -swore that no one else had been in the front room during the -afternoon. So determined was their denial that the inspector was -staggered, and had almost come to believe that Mrs. St. Clair had -been deluded when, with a cry, she sprang at a small deal box -which lay upon the table and tore the lid from it. Out there fell -a cascade of children's bricks. It was the toy which he had -promised to bring home. - -"This discovery, and the evident confusion which the cripple -showed, made the inspector realise that the matter was serious. -The rooms were carefully examined, and results all pointed to an -abominable crime. The front room was plainly furnished as a -sitting-room and led into a small bedroom, which looked out upon -the back of one of the wharves. Between the wharf and the bedroom -window is a narrow strip, which is dry at low tide but is covered -at high tide with at least four and a half feet of water. The -bedroom window was a broad one and opened from below. On -examination traces of blood were to be seen upon the windowsill, -and several scattered drops were visible upon the wooden floor of -the bedroom. Thrust away behind a curtain in the front room were -all the clothes of Mr. Neville St. Clair, with the exception of -his coat. His boots, his socks, his hat, and his watch--all were -there. There were no signs of violence upon any of these -garments, and there were no other traces of Mr. Neville St. -Clair. Out of the window he must apparently have gone for no -other exit could be discovered, and the ominous bloodstains upon -the sill gave little promise that he could save himself by -swimming, for the tide was at its very highest at the moment of -the tragedy. - -"And now as to the villains who seemed to be immediately -implicated in the matter. The Lascar was known to be a man of the -vilest antecedents, but as, by Mrs. St. Clair's story, he was -known to have been at the foot of the stair within a very few -seconds of her husband's appearance at the window, he could -hardly have been more than an accessory to the crime. His defence -was one of absolute ignorance, and he protested that he had no -knowledge as to the doings of Hugh Boone, his lodger, and that he -could not account in any way for the presence of the missing -gentleman's clothes. - -"So much for the Lascar manager. Now for the sinister cripple who -lives upon the second floor of the opium den, and who was -certainly the last human being whose eyes rested upon Neville St. -Clair. His name is Hugh Boone, and his hideous face is one which -is familiar to every man who goes much to the City. He is a -professional beggar, though in order to avoid the police -regulations he pretends to a small trade in wax vestas. Some -little distance down Threadneedle Street, upon the left-hand -side, there is, as you may have remarked, a small angle in the -wall. Here it is that this creature takes his daily seat, -cross-legged with his tiny stock of matches on his lap, and as he -is a piteous spectacle a small rain of charity descends into the -greasy leather cap which lies upon the pavement beside him. I -have watched the fellow more than once before ever I thought of -making his professional acquaintance, and I have been surprised -at the harvest which he has reaped in a short time. His -appearance, you see, is so remarkable that no one can pass him -without observing him. A shock of orange hair, a pale face -disfigured by a horrible scar, which, by its contraction, has -turned up the outer edge of his upper lip, a bulldog chin, and a -pair of very penetrating dark eyes, which present a singular -contrast to the colour of his hair, all mark him out from amid -the common crowd of mendicants and so, too, does his wit, for he -is ever ready with a reply to any piece of chaff which may be -thrown at him by the passers-by. This is the man whom we now -learn to have been the lodger at the opium den, and to have been -the last man to see the gentleman of whom we are in quest." - -"But a cripple!" said I. "What could he have done single-handed -against a man in the prime of life?" - -"He is a cripple in the sense that he walks with a limp; but in -other respects he appears to be a powerful and well-nurtured man. -Surely your medical experience would tell you, Watson, that -weakness in one limb is often compensated for by exceptional -strength in the others." - -"Pray continue your narrative." - -"Mrs. St. Clair had fainted at the sight of the blood upon the -window, and she was escorted home in a cab by the police, as her -presence could be of no help to them in their investigations. -Inspector Barton, who had charge of the case, made a very careful -examination of the premises, but without finding anything which -threw any light upon the matter. One mistake had been made in not -arresting Boone instantly, as he was allowed some few minutes -during which he might have communicated with his friend the -Lascar, but this fault was soon remedied, and he was seized and -searched, without anything being found which could incriminate -him. There were, it is true, some blood-stains upon his right -shirt-sleeve, but he pointed to his ring-finger, which had been -cut near the nail, and explained that the bleeding came from -there, adding that he had been to the window not long before, and -that the stains which had been observed there came doubtless from -the same source. He denied strenuously having ever seen Mr. -Neville St. Clair and swore that the presence of the clothes in -his room was as much a mystery to him as to the police. As to -Mrs. St. Clair's assertion that she had actually seen her husband -at the window, he declared that she must have been either mad or -dreaming. He was removed, loudly protesting, to the -police-station, while the inspector remained upon the premises in -the hope that the ebbing tide might afford some fresh clue. - -"And it did, though they hardly found upon the mud-bank what they -had feared to find. It was Neville St. Clair's coat, and not -Neville St. Clair, which lay uncovered as the tide receded. And -what do you think they found in the pockets?" - -"I cannot imagine." - -"No, I don't think you would guess. Every pocket stuffed with -pennies and half-pennies--421 pennies and 270 half-pennies. It -was no wonder that it had not been swept away by the tide. But a -human body is a different matter. There is a fierce eddy between -the wharf and the house. It seemed likely enough that the -weighted coat had remained when the stripped body had been sucked -away into the river." - -"But I understand that all the other clothes were found in the -room. Would the body be dressed in a coat alone?" - -"No, sir, but the facts might be met speciously enough. Suppose -that this man Boone had thrust Neville St. Clair through the -window, there is no human eye which could have seen the deed. -What would he do then? It would of course instantly strike him -that he must get rid of the tell-tale garments. He would seize -the coat, then, and be in the act of throwing it out, when it -would occur to him that it would swim and not sink. He has little -time, for he has heard the scuffle downstairs when the wife tried -to force her way up, and perhaps he has already heard from his -Lascar confederate that the police are hurrying up the street. -There is not an instant to be lost. He rushes to some secret -hoard, where he has accumulated the fruits of his beggary, and he -stuffs all the coins upon which he can lay his hands into the -pockets to make sure of the coat's sinking. He throws it out, and -would have done the same with the other garments had not he heard -the rush of steps below, and only just had time to close the -window when the police appeared." - -"It certainly sounds feasible." - -"Well, we will take it as a working hypothesis for want of a -better. Boone, as I have told you, was arrested and taken to the -station, but it could not be shown that there had ever before -been anything against him. He had for years been known as a -professional beggar, but his life appeared to have been a very -quiet and innocent one. There the matter stands at present, and -the questions which have to be solved--what Neville St. Clair was -doing in the opium den, what happened to him when there, where is -he now, and what Hugh Boone had to do with his disappearance--are -all as far from a solution as ever. I confess that I cannot -recall any case within my experience which looked at the first -glance so simple and yet which presented such difficulties." - -While Sherlock Holmes had been detailing this singular series of -events, we had been whirling through the outskirts of the great -town until the last straggling houses had been left behind, and -we rattled along with a country hedge upon either side of us. -Just as he finished, however, we drove through two scattered -villages, where a few lights still glimmered in the windows. - -"We are on the outskirts of Lee," said my companion. "We have -touched on three English counties in our short drive, starting in -Middlesex, passing over an angle of Surrey, and ending in Kent. -See that light among the trees? That is The Cedars, and beside -that lamp sits a woman whose anxious ears have already, I have -little doubt, caught the clink of our horse's feet." - -"But why are you not conducting the case from Baker Street?" I -asked. - -"Because there are many inquiries which must be made out here. -Mrs. St. Clair has most kindly put two rooms at my disposal, and -you may rest assured that she will have nothing but a welcome for -my friend and colleague. I hate to meet her, Watson, when I have -no news of her husband. Here we are. Whoa, there, whoa!" - -We had pulled up in front of a large villa which stood within its -own grounds. A stable-boy had run out to the horse's head, and -springing down, I followed Holmes up the small, winding -gravel-drive which led to the house. As we approached, the door -flew open, and a little blonde woman stood in the opening, clad -in some sort of light mousseline de soie, with a touch of fluffy -pink chiffon at her neck and wrists. She stood with her figure -outlined against the flood of light, one hand upon the door, one -half-raised in her eagerness, her body slightly bent, her head -and face protruded, with eager eyes and parted lips, a standing -question. - -"Well?" she cried, "well?" And then, seeing that there were two -of us, she gave a cry of hope which sank into a groan as she saw -that my companion shook his head and shrugged his shoulders. - -"No good news?" - -"None." - -"No bad?" - -"No." - -"Thank God for that. But come in. You must be weary, for you have -had a long day." - -"This is my friend, Dr. Watson. He has been of most vital use to -me in several of my cases, and a lucky chance has made it -possible for me to bring him out and associate him with this -investigation." - -"I am delighted to see you," said she, pressing my hand warmly. -"You will, I am sure, forgive anything that may be wanting in our -arrangements, when you consider the blow which has come so -suddenly upon us." - -"My dear madam," said I, "I am an old campaigner, and if I were -not I can very well see that no apology is needed. If I can be of -any assistance, either to you or to my friend here, I shall be -indeed happy." - -"Now, Mr. Sherlock Holmes," said the lady as we entered a -well-lit dining-room, upon the table of which a cold supper had -been laid out, "I should very much like to ask you one or two -plain questions, to which I beg that you will give a plain -answer." - -"Certainly, madam." - -"Do not trouble about my feelings. I am not hysterical, nor given -to fainting. I simply wish to hear your real, real opinion." - -"Upon what point?" - -"In your heart of hearts, do you think that Neville is alive?" - -Sherlock Holmes seemed to be embarrassed by the question. -"Frankly, now!" she repeated, standing upon the rug and looking -keenly down at him as he leaned back in a basket-chair. - -"Frankly, then, madam, I do not." - -"You think that he is dead?" - -"I do." - -"Murdered?" - -"I don't say that. Perhaps." - -"And on what day did he meet his death?" - -"On Monday." - -"Then perhaps, Mr. Holmes, you will be good enough to explain how -it is that I have received a letter from him to-day." - -Sherlock Holmes sprang out of his chair as if he had been -galvanised. - -"What!" he roared. - -"Yes, to-day." She stood smiling, holding up a little slip of -paper in the air. - -"May I see it?" - -"Certainly." - -He snatched it from her in his eagerness, and smoothing it out -upon the table he drew over the lamp and examined it intently. I -had left my chair and was gazing at it over his shoulder. The -envelope was a very coarse one and was stamped with the Gravesend -postmark and with the date of that very day, or rather of the day -before, for it was considerably after midnight. - -"Coarse writing," murmured Holmes. "Surely this is not your -husband's writing, madam." - -"No, but the enclosure is." - -"I perceive also that whoever addressed the envelope had to go -and inquire as to the address." - -"How can you tell that?" - -"The name, you see, is in perfectly black ink, which has dried -itself. The rest is of the greyish colour, which shows that -blotting-paper has been used. If it had been written straight -off, and then blotted, none would be of a deep black shade. This -man has written the name, and there has then been a pause before -he wrote the address, which can only mean that he was not -familiar with it. It is, of course, a trifle, but there is -nothing so important as trifles. Let us now see the letter. Ha! -there has been an enclosure here!" - -"Yes, there was a ring. His signet-ring." - -"And you are sure that this is your husband's hand?" - -"One of his hands." - -"One?" - -"His hand when he wrote hurriedly. It is very unlike his usual -writing, and yet I know it well." - -"'Dearest do not be frightened. All will come well. There is a -huge error which it may take some little time to rectify. -Wait in patience.--NEVILLE.' Written in pencil upon the fly-leaf -of a book, octavo size, no water-mark. Hum! Posted to-day in -Gravesend by a man with a dirty thumb. Ha! And the flap has been -gummed, if I am not very much in error, by a person who had been -chewing tobacco. And you have no doubt that it is your husband's -hand, madam?" - -"None. Neville wrote those words." - -"And they were posted to-day at Gravesend. Well, Mrs. St. Clair, -the clouds lighten, though I should not venture to say that the -danger is over." - -"But he must be alive, Mr. Holmes." - -"Unless this is a clever forgery to put us on the wrong scent. -The ring, after all, proves nothing. It may have been taken from -him." - -"No, no; it is, it is his very own writing!" - -"Very well. It may, however, have been written on Monday and only -posted to-day." - -"That is possible." - -"If so, much may have happened between." - -"Oh, you must not discourage me, Mr. Holmes. I know that all is -well with him. There is so keen a sympathy between us that I -should know if evil came upon him. On the very day that I saw him -last he cut himself in the bedroom, and yet I in the dining-room -rushed upstairs instantly with the utmost certainty that -something had happened. Do you think that I would respond to such -a trifle and yet be ignorant of his death?" - -"I have seen too much not to know that the impression of a woman -may be more valuable than the conclusion of an analytical -reasoner. And in this letter you certainly have a very strong -piece of evidence to corroborate your view. But if your husband -is alive and able to write letters, why should he remain away -from you?" - -"I cannot imagine. It is unthinkable." - -"And on Monday he made no remarks before leaving you?" - -"No." - -"And you were surprised to see him in Swandam Lane?" - -"Very much so." - -"Was the window open?" - -"Yes." - -"Then he might have called to you?" - -"He might." - -"He only, as I understand, gave an inarticulate cry?" - -"Yes." - -"A call for help, you thought?" - -"Yes. He waved his hands." - -"But it might have been a cry of surprise. Astonishment at the -unexpected sight of you might cause him to throw up his hands?" - -"It is possible." - -"And you thought he was pulled back?" - -"He disappeared so suddenly." - -"He might have leaped back. You did not see anyone else in the -room?" - -"No, but this horrible man confessed to having been there, and -the Lascar was at the foot of the stairs." - -"Quite so. Your husband, as far as you could see, had his -ordinary clothes on?" - -"But without his collar or tie. I distinctly saw his bare -throat." - -"Had he ever spoken of Swandam Lane?" - -"Never." - -"Had he ever showed any signs of having taken opium?" - -"Never." - -"Thank you, Mrs. St. Clair. Those are the principal points about -which I wished to be absolutely clear. We shall now have a little -supper and then retire, for we may have a very busy day -to-morrow." - -A large and comfortable double-bedded room had been placed at our -disposal, and I was quickly between the sheets, for I was weary -after my night of adventure. Sherlock Holmes was a man, however, -who, when he had an unsolved problem upon his mind, would go for -days, and even for a week, without rest, turning it over, -rearranging his facts, looking at it from every point of view -until he had either fathomed it or convinced himself that his -data were insufficient. It was soon evident to me that he was now -preparing for an all-night sitting. He took off his coat and -waistcoat, put on a large blue dressing-gown, and then wandered -about the room collecting pillows from his bed and cushions from -the sofa and armchairs. With these he constructed a sort of -Eastern divan, upon which he perched himself cross-legged, with -an ounce of shag tobacco and a box of matches laid out in front -of him. In the dim light of the lamp I saw him sitting there, an -old briar pipe between his lips, his eyes fixed vacantly upon the -corner of the ceiling, the blue smoke curling up from him, -silent, motionless, with the light shining upon his strong-set -aquiline features. So he sat as I dropped off to sleep, and so he -sat when a sudden ejaculation caused me to wake up, and I found -the summer sun shining into the apartment. The pipe was still -between his lips, the smoke still curled upward, and the room was -full of a dense tobacco haze, but nothing remained of the heap of -shag which I had seen upon the previous night. - -"Awake, Watson?" he asked. - -"Yes." - -"Game for a morning drive?" - -"Certainly." - -"Then dress. No one is stirring yet, but I know where the -stable-boy sleeps, and we shall soon have the trap out." He -chuckled to himself as he spoke, his eyes twinkled, and he seemed -a different man to the sombre thinker of the previous night. - -As I dressed I glanced at my watch. It was no wonder that no one -was stirring. It was twenty-five minutes past four. I had hardly -finished when Holmes returned with the news that the boy was -putting in the horse. - -"I want to test a little theory of mine," said he, pulling on his -boots. "I think, Watson, that you are now standing in the -presence of one of the most absolute fools in Europe. I deserve -to be kicked from here to Charing Cross. But I think I have the -key of the affair now." - -"And where is it?" I asked, smiling. - -"In the bathroom," he answered. "Oh, yes, I am not joking," he -continued, seeing my look of incredulity. "I have just been -there, and I have taken it out, and I have got it in this -Gladstone bag. Come on, my boy, and we shall see whether it will -not fit the lock." - -We made our way downstairs as quietly as possible, and out into -the bright morning sunshine. In the road stood our horse and -trap, with the half-clad stable-boy waiting at the head. We both -sprang in, and away we dashed down the London Road. A few country -carts were stirring, bearing in vegetables to the metropolis, but -the lines of villas on either side were as silent and lifeless as -some city in a dream. - -"It has been in some points a singular case," said Holmes, -flicking the horse on into a gallop. "I confess that I have been -as blind as a mole, but it is better to learn wisdom late than -never to learn it at all." - -In town the earliest risers were just beginning to look sleepily -from their windows as we drove through the streets of the Surrey -side. Passing down the Waterloo Bridge Road we crossed over the -river, and dashing up Wellington Street wheeled sharply to the -right and found ourselves in Bow Street. Sherlock Holmes was well -known to the force, and the two constables at the door saluted -him. One of them held the horse's head while the other led us in. - -"Who is on duty?" asked Holmes. - -"Inspector Bradstreet, sir." - -"Ah, Bradstreet, how are you?" A tall, stout official had come -down the stone-flagged passage, in a peaked cap and frogged -jacket. "I wish to have a quiet word with you, Bradstreet." -"Certainly, Mr. Holmes. Step into my room here." It was a small, -office-like room, with a huge ledger upon the table, and a -telephone projecting from the wall. The inspector sat down at his -desk. - -"What can I do for you, Mr. Holmes?" - -"I called about that beggarman, Boone--the one who was charged -with being concerned in the disappearance of Mr. Neville St. -Clair, of Lee." - -"Yes. He was brought up and remanded for further inquiries." - -"So I heard. You have him here?" - -"In the cells." - -"Is he quiet?" - -"Oh, he gives no trouble. But he is a dirty scoundrel." - -"Dirty?" - -"Yes, it is all we can do to make him wash his hands, and his -face is as black as a tinker's. Well, when once his case has been -settled, he will have a regular prison bath; and I think, if you -saw him, you would agree with me that he needed it." - -"I should like to see him very much." - -"Would you? That is easily done. Come this way. You can leave -your bag." - -"No, I think that I'll take it." - -"Very good. Come this way, if you please." He led us down a -passage, opened a barred door, passed down a winding stair, and -brought us to a whitewashed corridor with a line of doors on each -side. - -"The third on the right is his," said the inspector. "Here it -is!" He quietly shot back a panel in the upper part of the door -and glanced through. - -"He is asleep," said he. "You can see him very well." - -We both put our eyes to the grating. The prisoner lay with his -face towards us, in a very deep sleep, breathing slowly and -heavily. He was a middle-sized man, coarsely clad as became his -calling, with a coloured shirt protruding through the rent in his -tattered coat. He was, as the inspector had said, extremely -dirty, but the grime which covered his face could not conceal its -repulsive ugliness. A broad wheal from an old scar ran right -across it from eye to chin, and by its contraction had turned up -one side of the upper lip, so that three teeth were exposed in a -perpetual snarl. A shock of very bright red hair grew low over -his eyes and forehead. - -"He's a beauty, isn't he?" said the inspector. - -"He certainly needs a wash," remarked Holmes. "I had an idea that -he might, and I took the liberty of bringing the tools with me." -He opened the Gladstone bag as he spoke, and took out, to my -astonishment, a very large bath-sponge. - -"He! he! You are a funny one," chuckled the inspector. - -"Now, if you will have the great goodness to open that door very -quietly, we will soon make him cut a much more respectable -figure." - -"Well, I don't know why not," said the inspector. "He doesn't -look a credit to the Bow Street cells, does he?" He slipped his -key into the lock, and we all very quietly entered the cell. The -sleeper half turned, and then settled down once more into a deep -slumber. Holmes stooped to the water-jug, moistened his sponge, -and then rubbed it twice vigorously across and down the -prisoner's face. - -"Let me introduce you," he shouted, "to Mr. Neville St. Clair, of -Lee, in the county of Kent." - -Never in my life have I seen such a sight. The man's face peeled -off under the sponge like the bark from a tree. Gone was the -coarse brown tint! Gone, too, was the horrid scar which had -seamed it across, and the twisted lip which had given the -repulsive sneer to the face! A twitch brought away the tangled -red hair, and there, sitting up in his bed, was a pale, -sad-faced, refined-looking man, black-haired and smooth-skinned, -rubbing his eyes and staring about him with sleepy bewilderment. -Then suddenly realising the exposure, he broke into a scream and -threw himself down with his face to the pillow. - -"Great heavens!" cried the inspector, "it is, indeed, the missing -man. I know him from the photograph." - -The prisoner turned with the reckless air of a man who abandons -himself to his destiny. "Be it so," said he. "And pray what am I -charged with?" - -"With making away with Mr. Neville St.-- Oh, come, you can't be -charged with that unless they make a case of attempted suicide of -it," said the inspector with a grin. "Well, I have been -twenty-seven years in the force, but this really takes the cake." - -"If I am Mr. Neville St. Clair, then it is obvious that no crime -has been committed, and that, therefore, I am illegally -detained." - -"No crime, but a very great error has been committed," said -Holmes. "You would have done better to have trusted your wife." - -"It was not the wife; it was the children," groaned the prisoner. -"God help me, I would not have them ashamed of their father. My -God! What an exposure! What can I do?" - -Sherlock Holmes sat down beside him on the couch and patted him -kindly on the shoulder. - -"If you leave it to a court of law to clear the matter up," said -he, "of course you can hardly avoid publicity. On the other hand, -if you convince the police authorities that there is no possible -case against you, I do not know that there is any reason that the -details should find their way into the papers. Inspector -Bradstreet would, I am sure, make notes upon anything which you -might tell us and submit it to the proper authorities. The case -would then never go into court at all." - -"God bless you!" cried the prisoner passionately. "I would have -endured imprisonment, ay, even execution, rather than have left -my miserable secret as a family blot to my children. - -"You are the first who have ever heard my story. My father was a -schoolmaster in Chesterfield, where I received an excellent -education. I travelled in my youth, took to the stage, and -finally became a reporter on an evening paper in London. One day -my editor wished to have a series of articles upon begging in the -metropolis, and I volunteered to supply them. There was the point -from which all my adventures started. It was only by trying -begging as an amateur that I could get the facts upon which to -base my articles. When an actor I had, of course, learned all the -secrets of making up, and had been famous in the green-room for -my skill. I took advantage now of my attainments. I painted my -face, and to make myself as pitiable as possible I made a good -scar and fixed one side of my lip in a twist by the aid of a -small slip of flesh-coloured plaster. Then with a red head of -hair, and an appropriate dress, I took my station in the business -part of the city, ostensibly as a match-seller but really as a -beggar. For seven hours I plied my trade, and when I returned -home in the evening I found to my surprise that I had received no -less than 26s. 4d. - -"I wrote my articles and thought little more of the matter until, -some time later, I backed a bill for a friend and had a writ -served upon me for 25 pounds. I was at my wit's end where to get -the money, but a sudden idea came to me. I begged a fortnight's -grace from the creditor, asked for a holiday from my employers, -and spent the time in begging in the City under my disguise. In -ten days I had the money and had paid the debt. - -"Well, you can imagine how hard it was to settle down to arduous -work at 2 pounds a week when I knew that I could earn as much in -a day by smearing my face with a little paint, laying my cap on -the ground, and sitting still. It was a long fight between my -pride and the money, but the dollars won at last, and I threw up -reporting and sat day after day in the corner which I had first -chosen, inspiring pity by my ghastly face and filling my pockets -with coppers. Only one man knew my secret. He was the keeper of a -low den in which I used to lodge in Swandam Lane, where I could -every morning emerge as a squalid beggar and in the evenings -transform myself into a well-dressed man about town. This fellow, -a Lascar, was well paid by me for his rooms, so that I knew that -my secret was safe in his possession. - -"Well, very soon I found that I was saving considerable sums of -money. I do not mean that any beggar in the streets of London -could earn 700 pounds a year--which is less than my average -takings--but I had exceptional advantages in my power of making -up, and also in a facility of repartee, which improved by -practice and made me quite a recognised character in the City. -All day a stream of pennies, varied by silver, poured in upon me, -and it was a very bad day in which I failed to take 2 pounds. - -"As I grew richer I grew more ambitious, took a house in the -country, and eventually married, without anyone having a -suspicion as to my real occupation. My dear wife knew that I had -business in the City. She little knew what. - -"Last Monday I had finished for the day and was dressing in my -room above the opium den when I looked out of my window and saw, -to my horror and astonishment, that my wife was standing in the -street, with her eyes fixed full upon me. I gave a cry of -surprise, threw up my arms to cover my face, and, rushing to my -confidant, the Lascar, entreated him to prevent anyone from -coming up to me. I heard her voice downstairs, but I knew that -she could not ascend. Swiftly I threw off my clothes, pulled on -those of a beggar, and put on my pigments and wig. Even a wife's -eyes could not pierce so complete a disguise. But then it -occurred to me that there might be a search in the room, and that -the clothes might betray me. I threw open the window, reopening -by my violence a small cut which I had inflicted upon myself in -the bedroom that morning. Then I seized my coat, which was -weighted by the coppers which I had just transferred to it from -the leather bag in which I carried my takings. I hurled it out of -the window, and it disappeared into the Thames. The other clothes -would have followed, but at that moment there was a rush of -constables up the stair, and a few minutes after I found, rather, -I confess, to my relief, that instead of being identified as Mr. -Neville St. Clair, I was arrested as his murderer. - -"I do not know that there is anything else for me to explain. I -was determined to preserve my disguise as long as possible, and -hence my preference for a dirty face. Knowing that my wife would -be terribly anxious, I slipped off my ring and confided it to the -Lascar at a moment when no constable was watching me, together -with a hurried scrawl, telling her that she had no cause to -fear." - -"That note only reached her yesterday," said Holmes. - -"Good God! What a week she must have spent!" - -"The police have watched this Lascar," said Inspector Bradstreet, -"and I can quite understand that he might find it difficult to -post a letter unobserved. Probably he handed it to some sailor -customer of his, who forgot all about it for some days." - -"That was it," said Holmes, nodding approvingly; "I have no doubt -of it. But have you never been prosecuted for begging?" - -"Many times; but what was a fine to me?" - -"It must stop here, however," said Bradstreet. "If the police are -to hush this thing up, there must be no more of Hugh Boone." - -"I have sworn it by the most solemn oaths which a man can take." - -"In that case I think that it is probable that no further steps -may be taken. But if you are found again, then all must come out. -I am sure, Mr. Holmes, that we are very much indebted to you for -having cleared the matter up. I wish I knew how you reach your -results." - -"I reached this one," said my friend, "by sitting upon five -pillows and consuming an ounce of shag. I think, Watson, that if -we drive to Baker Street we shall just be in time for breakfast." - - - -VII. THE ADVENTURE OF THE BLUE CARBUNCLE - -I had called upon my friend Sherlock Holmes upon the second -morning after Christmas, with the intention of wishing him the -compliments of the season. He was lounging upon the sofa in a -purple dressing-gown, a pipe-rack within his reach upon the -right, and a pile of crumpled morning papers, evidently newly -studied, near at hand. Beside the couch was a wooden chair, and -on the angle of the back hung a very seedy and disreputable -hard-felt hat, much the worse for wear, and cracked in several -places. A lens and a forceps lying upon the seat of the chair -suggested that the hat had been suspended in this manner for the -purpose of examination. - -"You are engaged," said I; "perhaps I interrupt you." - -"Not at all. I am glad to have a friend with whom I can discuss -my results. The matter is a perfectly trivial one"--he jerked his -thumb in the direction of the old hat--"but there are points in -connection with it which are not entirely devoid of interest and -even of instruction." - -I seated myself in his armchair and warmed my hands before his -crackling fire, for a sharp frost had set in, and the windows -were thick with the ice crystals. "I suppose," I remarked, "that, -homely as it looks, this thing has some deadly story linked on to -it--that it is the clue which will guide you in the solution of -some mystery and the punishment of some crime." - -"No, no. No crime," said Sherlock Holmes, laughing. "Only one of -those whimsical little incidents which will happen when you have -four million human beings all jostling each other within the -space of a few square miles. Amid the action and reaction of so -dense a swarm of humanity, every possible combination of events -may be expected to take place, and many a little problem will be -presented which may be striking and bizarre without being -criminal. We have already had experience of such." - -"So much so," I remarked, "that of the last six cases which I -have added to my notes, three have been entirely free of any -legal crime." - -"Precisely. You allude to my attempt to recover the Irene Adler -papers, to the singular case of Miss Mary Sutherland, and to the -adventure of the man with the twisted lip. Well, I have no doubt -that this small matter will fall into the same innocent category. -You know Peterson, the commissionaire?" - -"Yes." - -"It is to him that this trophy belongs." - -"It is his hat." - -"No, no, he found it. Its owner is unknown. I beg that you will -look upon it not as a battered billycock but as an intellectual -problem. And, first, as to how it came here. It arrived upon -Christmas morning, in company with a good fat goose, which is, I -have no doubt, roasting at this moment in front of Peterson's -fire. The facts are these: about four o'clock on Christmas -morning, Peterson, who, as you know, is a very honest fellow, was -returning from some small jollification and was making his way -homeward down Tottenham Court Road. In front of him he saw, in -the gaslight, a tallish man, walking with a slight stagger, and -carrying a white goose slung over his shoulder. As he reached the -corner of Goodge Street, a row broke out between this stranger -and a little knot of roughs. One of the latter knocked off the -man's hat, on which he raised his stick to defend himself and, -swinging it over his head, smashed the shop window behind him. -Peterson had rushed forward to protect the stranger from his -assailants; but the man, shocked at having broken the window, and -seeing an official-looking person in uniform rushing towards him, -dropped his goose, took to his heels, and vanished amid the -labyrinth of small streets which lie at the back of Tottenham -Court Road. The roughs had also fled at the appearance of -Peterson, so that he was left in possession of the field of -battle, and also of the spoils of victory in the shape of this -battered hat and a most unimpeachable Christmas goose." - -"Which surely he restored to their owner?" - -"My dear fellow, there lies the problem. It is true that 'For -Mrs. Henry Baker' was printed upon a small card which was tied to -the bird's left leg, and it is also true that the initials 'H. -B.' are legible upon the lining of this hat, but as there are -some thousands of Bakers, and some hundreds of Henry Bakers in -this city of ours, it is not easy to restore lost property to any -one of them." - -"What, then, did Peterson do?" - -"He brought round both hat and goose to me on Christmas morning, -knowing that even the smallest problems are of interest to me. -The goose we retained until this morning, when there were signs -that, in spite of the slight frost, it would be well that it -should be eaten without unnecessary delay. Its finder has carried -it off, therefore, to fulfil the ultimate destiny of a goose, -while I continue to retain the hat of the unknown gentleman who -lost his Christmas dinner." - -"Did he not advertise?" - -"No." - -"Then, what clue could you have as to his identity?" - -"Only as much as we can deduce." - -"From his hat?" - -"Precisely." - -"But you are joking. What can you gather from this old battered -felt?" - -"Here is my lens. You know my methods. What can you gather -yourself as to the individuality of the man who has worn this -article?" - -I took the tattered object in my hands and turned it over rather -ruefully. It was a very ordinary black hat of the usual round -shape, hard and much the worse for wear. The lining had been of -red silk, but was a good deal discoloured. There was no maker's -name; but, as Holmes had remarked, the initials "H. B." were -scrawled upon one side. It was pierced in the brim for a -hat-securer, but the elastic was missing. For the rest, it was -cracked, exceedingly dusty, and spotted in several places, -although there seemed to have been some attempt to hide the -discoloured patches by smearing them with ink. - -"I can see nothing," said I, handing it back to my friend. - -"On the contrary, Watson, you can see everything. You fail, -however, to reason from what you see. You are too timid in -drawing your inferences." - -"Then, pray tell me what it is that you can infer from this hat?" - -He picked it up and gazed at it in the peculiar introspective -fashion which was characteristic of him. "It is perhaps less -suggestive than it might have been," he remarked, "and yet there -are a few inferences which are very distinct, and a few others -which represent at least a strong balance of probability. That -the man was highly intellectual is of course obvious upon the -face of it, and also that he was fairly well-to-do within the -last three years, although he has now fallen upon evil days. He -had foresight, but has less now than formerly, pointing to a -moral retrogression, which, when taken with the decline of his -fortunes, seems to indicate some evil influence, probably drink, -at work upon him. This may account also for the obvious fact that -his wife has ceased to love him." - -"My dear Holmes!" - -"He has, however, retained some degree of self-respect," he -continued, disregarding my remonstrance. "He is a man who leads a -sedentary life, goes out little, is out of training entirely, is -middle-aged, has grizzled hair which he has had cut within the -last few days, and which he anoints with lime-cream. These are -the more patent facts which are to be deduced from his hat. Also, -by the way, that it is extremely improbable that he has gas laid -on in his house." - -"You are certainly joking, Holmes." - -"Not in the least. Is it possible that even now, when I give you -these results, you are unable to see how they are attained?" - -"I have no doubt that I am very stupid, but I must confess that I -am unable to follow you. For example, how did you deduce that -this man was intellectual?" - -For answer Holmes clapped the hat upon his head. It came right -over the forehead and settled upon the bridge of his nose. "It is -a question of cubic capacity," said he; "a man with so large a -brain must have something in it." - -"The decline of his fortunes, then?" - -"This hat is three years old. These flat brims curled at the edge -came in then. It is a hat of the very best quality. Look at the -band of ribbed silk and the excellent lining. If this man could -afford to buy so expensive a hat three years ago, and has had no -hat since, then he has assuredly gone down in the world." - -"Well, that is clear enough, certainly. But how about the -foresight and the moral retrogression?" - -Sherlock Holmes laughed. "Here is the foresight," said he putting -his finger upon the little disc and loop of the hat-securer. -"They are never sold upon hats. If this man ordered one, it is a -sign of a certain amount of foresight, since he went out of his -way to take this precaution against the wind. But since we see -that he has broken the elastic and has not troubled to replace -it, it is obvious that he has less foresight now than formerly, -which is a distinct proof of a weakening nature. On the other -hand, he has endeavoured to conceal some of these stains upon the -felt by daubing them with ink, which is a sign that he has not -entirely lost his self-respect." - -"Your reasoning is certainly plausible." - -"The further points, that he is middle-aged, that his hair is -grizzled, that it has been recently cut, and that he uses -lime-cream, are all to be gathered from a close examination of the -lower part of the lining. The lens discloses a large number of -hair-ends, clean cut by the scissors of the barber. They all -appear to be adhesive, and there is a distinct odour of -lime-cream. This dust, you will observe, is not the gritty, grey -dust of the street but the fluffy brown dust of the house, -showing that it has been hung up indoors most of the time, while -the marks of moisture upon the inside are proof positive that the -wearer perspired very freely, and could therefore, hardly be in -the best of training." - -"But his wife--you said that she had ceased to love him." - -"This hat has not been brushed for weeks. When I see you, my dear -Watson, with a week's accumulation of dust upon your hat, and -when your wife allows you to go out in such a state, I shall fear -that you also have been unfortunate enough to lose your wife's -affection." - -"But he might be a bachelor." - -"Nay, he was bringing home the goose as a peace-offering to his -wife. Remember the card upon the bird's leg." - -"You have an answer to everything. But how on earth do you deduce -that the gas is not laid on in his house?" - -"One tallow stain, or even two, might come by chance; but when I -see no less than five, I think that there can be little doubt -that the individual must be brought into frequent contact with -burning tallow--walks upstairs at night probably with his hat in -one hand and a guttering candle in the other. Anyhow, he never -got tallow-stains from a gas-jet. Are you satisfied?" - -"Well, it is very ingenious," said I, laughing; "but since, as -you said just now, there has been no crime committed, and no harm -done save the loss of a goose, all this seems to be rather a -waste of energy." - -Sherlock Holmes had opened his mouth to reply, when the door flew -open, and Peterson, the commissionaire, rushed into the apartment -with flushed cheeks and the face of a man who is dazed with -astonishment. - -"The goose, Mr. Holmes! The goose, sir!" he gasped. - -"Eh? What of it, then? Has it returned to life and flapped off -through the kitchen window?" Holmes twisted himself round upon -the sofa to get a fairer view of the man's excited face. - -"See here, sir! See what my wife found in its crop!" He held out -his hand and displayed upon the centre of the palm a brilliantly -scintillating blue stone, rather smaller than a bean in size, but -of such purity and radiance that it twinkled like an electric -point in the dark hollow of his hand. - -Sherlock Holmes sat up with a whistle. "By Jove, Peterson!" said -he, "this is treasure trove indeed. I suppose you know what you -have got?" - -"A diamond, sir? A precious stone. It cuts into glass as though -it were putty." - -"It's more than a precious stone. It is the precious stone." - -"Not the Countess of Morcar's blue carbuncle!" I ejaculated. - -"Precisely so. I ought to know its size and shape, seeing that I -have read the advertisement about it in The Times every day -lately. It is absolutely unique, and its value can only be -conjectured, but the reward offered of 1000 pounds is certainly -not within a twentieth part of the market price." - -"A thousand pounds! Great Lord of mercy!" The commissionaire -plumped down into a chair and stared from one to the other of us. - -"That is the reward, and I have reason to know that there are -sentimental considerations in the background which would induce -the Countess to part with half her fortune if she could but -recover the gem." - -"It was lost, if I remember aright, at the Hotel Cosmopolitan," I -remarked. - -"Precisely so, on December 22nd, just five days ago. John Horner, -a plumber, was accused of having abstracted it from the lady's -jewel-case. The evidence against him was so strong that the case -has been referred to the Assizes. I have some account of the -matter here, I believe." He rummaged amid his newspapers, -glancing over the dates, until at last he smoothed one out, -doubled it over, and read the following paragraph: - -"Hotel Cosmopolitan Jewel Robbery. John Horner, 26, plumber, was -brought up upon the charge of having upon the 22nd inst., -abstracted from the jewel-case of the Countess of Morcar the -valuable gem known as the blue carbuncle. James Ryder, -upper-attendant at the hotel, gave his evidence to the effect -that he had shown Horner up to the dressing-room of the Countess -of Morcar upon the day of the robbery in order that he might -solder the second bar of the grate, which was loose. He had -remained with Horner some little time, but had finally been -called away. On returning, he found that Horner had disappeared, -that the bureau had been forced open, and that the small morocco -casket in which, as it afterwards transpired, the Countess was -accustomed to keep her jewel, was lying empty upon the -dressing-table. Ryder instantly gave the alarm, and Horner was -arrested the same evening; but the stone could not be found -either upon his person or in his rooms. Catherine Cusack, maid to -the Countess, deposed to having heard Ryder's cry of dismay on -discovering the robbery, and to having rushed into the room, -where she found matters as described by the last witness. -Inspector Bradstreet, B division, gave evidence as to the arrest -of Horner, who struggled frantically, and protested his innocence -in the strongest terms. Evidence of a previous conviction for -robbery having been given against the prisoner, the magistrate -refused to deal summarily with the offence, but referred it to -the Assizes. Horner, who had shown signs of intense emotion -during the proceedings, fainted away at the conclusion and was -carried out of court." - -"Hum! So much for the police-court," said Holmes thoughtfully, -tossing aside the paper. "The question for us now to solve is the -sequence of events leading from a rifled jewel-case at one end to -the crop of a goose in Tottenham Court Road at the other. You -see, Watson, our little deductions have suddenly assumed a much -more important and less innocent aspect. Here is the stone; the -stone came from the goose, and the goose came from Mr. Henry -Baker, the gentleman with the bad hat and all the other -characteristics with which I have bored you. So now we must set -ourselves very seriously to finding this gentleman and -ascertaining what part he has played in this little mystery. To -do this, we must try the simplest means first, and these lie -undoubtedly in an advertisement in all the evening papers. If -this fail, I shall have recourse to other methods." - -"What will you say?" - -"Give me a pencil and that slip of paper. Now, then: 'Found at -the corner of Goodge Street, a goose and a black felt hat. Mr. -Henry Baker can have the same by applying at 6:30 this evening at -221B, Baker Street.' That is clear and concise." - -"Very. But will he see it?" - -"Well, he is sure to keep an eye on the papers, since, to a poor -man, the loss was a heavy one. He was clearly so scared by his -mischance in breaking the window and by the approach of Peterson -that he thought of nothing but flight, but since then he must -have bitterly regretted the impulse which caused him to drop his -bird. Then, again, the introduction of his name will cause him to -see it, for everyone who knows him will direct his attention to -it. Here you are, Peterson, run down to the advertising agency -and have this put in the evening papers." - -"In which, sir?" - -"Oh, in the Globe, Star, Pall Mall, St. James's, Evening News, -Standard, Echo, and any others that occur to you." - -"Very well, sir. And this stone?" - -"Ah, yes, I shall keep the stone. Thank you. And, I say, -Peterson, just buy a goose on your way back and leave it here -with me, for we must have one to give to this gentleman in place -of the one which your family is now devouring." - -When the commissionaire had gone, Holmes took up the stone and -held it against the light. "It's a bonny thing," said he. "Just -see how it glints and sparkles. Of course it is a nucleus and -focus of crime. Every good stone is. They are the devil's pet -baits. In the larger and older jewels every facet may stand for a -bloody deed. This stone is not yet twenty years old. It was found -in the banks of the Amoy River in southern China and is remarkable -in having every characteristic of the carbuncle, save that it is -blue in shade instead of ruby red. In spite of its youth, it has -already a sinister history. There have been two murders, a -vitriol-throwing, a suicide, and several robberies brought about -for the sake of this forty-grain weight of crystallised charcoal. -Who would think that so pretty a toy would be a purveyor to the -gallows and the prison? I'll lock it up in my strong box now and -drop a line to the Countess to say that we have it." - -"Do you think that this man Horner is innocent?" - -"I cannot tell." - -"Well, then, do you imagine that this other one, Henry Baker, had -anything to do with the matter?" - -"It is, I think, much more likely that Henry Baker is an -absolutely innocent man, who had no idea that the bird which he -was carrying was of considerably more value than if it were made -of solid gold. That, however, I shall determine by a very simple -test if we have an answer to our advertisement." - -"And you can do nothing until then?" - -"Nothing." - -"In that case I shall continue my professional round. But I shall -come back in the evening at the hour you have mentioned, for I -should like to see the solution of so tangled a business." - -"Very glad to see you. I dine at seven. There is a woodcock, I -believe. By the way, in view of recent occurrences, perhaps I -ought to ask Mrs. Hudson to examine its crop." - -I had been delayed at a case, and it was a little after half-past -six when I found myself in Baker Street once more. As I -approached the house I saw a tall man in a Scotch bonnet with a -coat which was buttoned up to his chin waiting outside in the -bright semicircle which was thrown from the fanlight. Just as I -arrived the door was opened, and we were shown up together to -Holmes' room. - -"Mr. Henry Baker, I believe," said he, rising from his armchair -and greeting his visitor with the easy air of geniality which he -could so readily assume. "Pray take this chair by the fire, Mr. -Baker. It is a cold night, and I observe that your circulation is -more adapted for summer than for winter. Ah, Watson, you have -just come at the right time. Is that your hat, Mr. Baker?" - -"Yes, sir, that is undoubtedly my hat." - -He was a large man with rounded shoulders, a massive head, and a -broad, intelligent face, sloping down to a pointed beard of -grizzled brown. A touch of red in nose and cheeks, with a slight -tremor of his extended hand, recalled Holmes' surmise as to his -habits. His rusty black frock-coat was buttoned right up in -front, with the collar turned up, and his lank wrists protruded -from his sleeves without a sign of cuff or shirt. He spoke in a -slow staccato fashion, choosing his words with care, and gave the -impression generally of a man of learning and letters who had had -ill-usage at the hands of fortune. - -"We have retained these things for some days," said Holmes, -"because we expected to see an advertisement from you giving your -address. I am at a loss to know now why you did not advertise." - -Our visitor gave a rather shamefaced laugh. "Shillings have not -been so plentiful with me as they once were," he remarked. "I had -no doubt that the gang of roughs who assaulted me had carried off -both my hat and the bird. I did not care to spend more money in a -hopeless attempt at recovering them." - -"Very naturally. By the way, about the bird, we were compelled to -eat it." - -"To eat it!" Our visitor half rose from his chair in his -excitement. - -"Yes, it would have been of no use to anyone had we not done so. -But I presume that this other goose upon the sideboard, which is -about the same weight and perfectly fresh, will answer your -purpose equally well?" - -"Oh, certainly, certainly," answered Mr. Baker with a sigh of -relief. - -"Of course, we still have the feathers, legs, crop, and so on of -your own bird, so if you wish--" - -The man burst into a hearty laugh. "They might be useful to me as -relics of my adventure," said he, "but beyond that I can hardly -see what use the disjecta membra of my late acquaintance are -going to be to me. No, sir, I think that, with your permission, I -will confine my attentions to the excellent bird which I perceive -upon the sideboard." - -Sherlock Holmes glanced sharply across at me with a slight shrug -of his shoulders. - -"There is your hat, then, and there your bird," said he. "By the -way, would it bore you to tell me where you got the other one -from? I am somewhat of a fowl fancier, and I have seldom seen a -better grown goose." - -"Certainly, sir," said Baker, who had risen and tucked his newly -gained property under his arm. "There are a few of us who -frequent the Alpha Inn, near the Museum--we are to be found in -the Museum itself during the day, you understand. This year our -good host, Windigate by name, instituted a goose club, by which, -on consideration of some few pence every week, we were each to -receive a bird at Christmas. My pence were duly paid, and the -rest is familiar to you. I am much indebted to you, sir, for a -Scotch bonnet is fitted neither to my years nor my gravity." With -a comical pomposity of manner he bowed solemnly to both of us and -strode off upon his way. - -"So much for Mr. Henry Baker," said Holmes when he had closed the -door behind him. "It is quite certain that he knows nothing -whatever about the matter. Are you hungry, Watson?" - -"Not particularly." - -"Then I suggest that we turn our dinner into a supper and follow -up this clue while it is still hot." - -"By all means." - -It was a bitter night, so we drew on our ulsters and wrapped -cravats about our throats. Outside, the stars were shining coldly -in a cloudless sky, and the breath of the passers-by blew out -into smoke like so many pistol shots. Our footfalls rang out -crisply and loudly as we swung through the doctors' quarter, -Wimpole Street, Harley Street, and so through Wigmore Street into -Oxford Street. In a quarter of an hour we were in Bloomsbury at -the Alpha Inn, which is a small public-house at the corner of one -of the streets which runs down into Holborn. Holmes pushed open -the door of the private bar and ordered two glasses of beer from -the ruddy-faced, white-aproned landlord. - -"Your beer should be excellent if it is as good as your geese," -said he. - -"My geese!" The man seemed surprised. - -"Yes. I was speaking only half an hour ago to Mr. Henry Baker, -who was a member of your goose club." - -"Ah! yes, I see. But you see, sir, them's not our geese." - -"Indeed! Whose, then?" - -"Well, I got the two dozen from a salesman in Covent Garden." - -"Indeed? I know some of them. Which was it?" - -"Breckinridge is his name." - -"Ah! I don't know him. Well, here's your good health landlord, -and prosperity to your house. Good-night." - -"Now for Mr. Breckinridge," he continued, buttoning up his coat -as we came out into the frosty air. "Remember, Watson that though -we have so homely a thing as a goose at one end of this chain, we -have at the other a man who will certainly get seven years' penal -servitude unless we can establish his innocence. It is possible -that our inquiry may but confirm his guilt; but, in any case, we -have a line of investigation which has been missed by the police, -and which a singular chance has placed in our hands. Let us -follow it out to the bitter end. Faces to the south, then, and -quick march!" - -We passed across Holborn, down Endell Street, and so through a -zigzag of slums to Covent Garden Market. One of the largest -stalls bore the name of Breckinridge upon it, and the proprietor -a horsey-looking man, with a sharp face and trim side-whiskers was -helping a boy to put up the shutters. - -"Good-evening. It's a cold night," said Holmes. - -The salesman nodded and shot a questioning glance at my -companion. - -"Sold out of geese, I see," continued Holmes, pointing at the -bare slabs of marble. - -"Let you have five hundred to-morrow morning." - -"That's no good." - -"Well, there are some on the stall with the gas-flare." - -"Ah, but I was recommended to you." - -"Who by?" - -"The landlord of the Alpha." - -"Oh, yes; I sent him a couple of dozen." - -"Fine birds they were, too. Now where did you get them from?" - -To my surprise the question provoked a burst of anger from the -salesman. - -"Now, then, mister," said he, with his head cocked and his arms -akimbo, "what are you driving at? Let's have it straight, now." - -"It is straight enough. I should like to know who sold you the -geese which you supplied to the Alpha." - -"Well then, I shan't tell you. So now!" - -"Oh, it is a matter of no importance; but I don't know why you -should be so warm over such a trifle." - -"Warm! You'd be as warm, maybe, if you were as pestered as I am. -When I pay good money for a good article there should be an end -of the business; but it's 'Where are the geese?' and 'Who did you -sell the geese to?' and 'What will you take for the geese?' One -would think they were the only geese in the world, to hear the -fuss that is made over them." - -"Well, I have no connection with any other people who have been -making inquiries," said Holmes carelessly. "If you won't tell us -the bet is off, that is all. But I'm always ready to back my -opinion on a matter of fowls, and I have a fiver on it that the -bird I ate is country bred." - -"Well, then, you've lost your fiver, for it's town bred," snapped -the salesman. - -"It's nothing of the kind." - -"I say it is." - -"I don't believe it." - -"D'you think you know more about fowls than I, who have handled -them ever since I was a nipper? I tell you, all those birds that -went to the Alpha were town bred." - -"You'll never persuade me to believe that." - -"Will you bet, then?" - -"It's merely taking your money, for I know that I am right. But -I'll have a sovereign on with you, just to teach you not to be -obstinate." - -The salesman chuckled grimly. "Bring me the books, Bill," said -he. - -The small boy brought round a small thin volume and a great -greasy-backed one, laying them out together beneath the hanging -lamp. - -"Now then, Mr. Cocksure," said the salesman, "I thought that I -was out of geese, but before I finish you'll find that there is -still one left in my shop. You see this little book?" - -"Well?" - -"That's the list of the folk from whom I buy. D'you see? Well, -then, here on this page are the country folk, and the numbers -after their names are where their accounts are in the big ledger. -Now, then! You see this other page in red ink? Well, that is a -list of my town suppliers. Now, look at that third name. Just -read it out to me." - -"Mrs. Oakshott, 117, Brixton Road--249," read Holmes. - -"Quite so. Now turn that up in the ledger." - -Holmes turned to the page indicated. "Here you are, 'Mrs. -Oakshott, 117, Brixton Road, egg and poultry supplier.'" - -"Now, then, what's the last entry?" - -"'December 22nd. Twenty-four geese at 7s. 6d.'" - -"Quite so. There you are. And underneath?" - -"'Sold to Mr. Windigate of the Alpha, at 12s.'" - -"What have you to say now?" - -Sherlock Holmes looked deeply chagrined. He drew a sovereign from -his pocket and threw it down upon the slab, turning away with the -air of a man whose disgust is too deep for words. A few yards off -he stopped under a lamp-post and laughed in the hearty, noiseless -fashion which was peculiar to him. - -"When you see a man with whiskers of that cut and the 'Pink 'un' -protruding out of his pocket, you can always draw him by a bet," -said he. "I daresay that if I had put 100 pounds down in front of -him, that man would not have given me such complete information -as was drawn from him by the idea that he was doing me on a -wager. Well, Watson, we are, I fancy, nearing the end of our -quest, and the only point which remains to be determined is -whether we should go on to this Mrs. Oakshott to-night, or -whether we should reserve it for to-morrow. It is clear from what -that surly fellow said that there are others besides ourselves -who are anxious about the matter, and I should--" - -His remarks were suddenly cut short by a loud hubbub which broke -out from the stall which we had just left. Turning round we saw a -little rat-faced fellow standing in the centre of the circle of -yellow light which was thrown by the swinging lamp, while -Breckinridge, the salesman, framed in the door of his stall, was -shaking his fists fiercely at the cringing figure. - -"I've had enough of you and your geese," he shouted. "I wish you -were all at the devil together. If you come pestering me any more -with your silly talk I'll set the dog at you. You bring Mrs. -Oakshott here and I'll answer her, but what have you to do with -it? Did I buy the geese off you?" - -"No; but one of them was mine all the same," whined the little -man. - -"Well, then, ask Mrs. Oakshott for it." - -"She told me to ask you." - -"Well, you can ask the King of Proosia, for all I care. I've had -enough of it. Get out of this!" He rushed fiercely forward, and -the inquirer flitted away into the darkness. - -"Ha! this may save us a visit to Brixton Road," whispered Holmes. -"Come with me, and we will see what is to be made of this -fellow." Striding through the scattered knots of people who -lounged round the flaring stalls, my companion speedily overtook -the little man and touched him upon the shoulder. He sprang -round, and I could see in the gas-light that every vestige of -colour had been driven from his face. - -"Who are you, then? What do you want?" he asked in a quavering -voice. - -"You will excuse me," said Holmes blandly, "but I could not help -overhearing the questions which you put to the salesman just now. -I think that I could be of assistance to you." - -"You? Who are you? How could you know anything of the matter?" - -"My name is Sherlock Holmes. It is my business to know what other -people don't know." - -"But you can know nothing of this?" - -"Excuse me, I know everything of it. You are endeavouring to -trace some geese which were sold by Mrs. Oakshott, of Brixton -Road, to a salesman named Breckinridge, by him in turn to Mr. -Windigate, of the Alpha, and by him to his club, of which Mr. -Henry Baker is a member." - -"Oh, sir, you are the very man whom I have longed to meet," cried -the little fellow with outstretched hands and quivering fingers. -"I can hardly explain to you how interested I am in this matter." - -Sherlock Holmes hailed a four-wheeler which was passing. "In that -case we had better discuss it in a cosy room rather than in this -wind-swept market-place," said he. "But pray tell me, before we -go farther, who it is that I have the pleasure of assisting." - -The man hesitated for an instant. "My name is John Robinson," he -answered with a sidelong glance. - -"No, no; the real name," said Holmes sweetly. "It is always -awkward doing business with an alias." - -A flush sprang to the white cheeks of the stranger. "Well then," -said he, "my real name is James Ryder." - -"Precisely so. Head attendant at the Hotel Cosmopolitan. Pray -step into the cab, and I shall soon be able to tell you -everything which you would wish to know." - -The little man stood glancing from one to the other of us with -half-frightened, half-hopeful eyes, as one who is not sure -whether he is on the verge of a windfall or of a catastrophe. -Then he stepped into the cab, and in half an hour we were back in -the sitting-room at Baker Street. Nothing had been said during -our drive, but the high, thin breathing of our new companion, and -the claspings and unclaspings of his hands, spoke of the nervous -tension within him. - -"Here we are!" said Holmes cheerily as we filed into the room. -"The fire looks very seasonable in this weather. You look cold, -Mr. Ryder. Pray take the basket-chair. I will just put on my -slippers before we settle this little matter of yours. Now, then! -You want to know what became of those geese?" - -"Yes, sir." - -"Or rather, I fancy, of that goose. It was one bird, I imagine in -which you were interested--white, with a black bar across the -tail." - -Ryder quivered with emotion. "Oh, sir," he cried, "can you tell -me where it went to?" - -"It came here." - -"Here?" - -"Yes, and a most remarkable bird it proved. I don't wonder that -you should take an interest in it. It laid an egg after it was -dead--the bonniest, brightest little blue egg that ever was seen. -I have it here in my museum." - -Our visitor staggered to his feet and clutched the mantelpiece -with his right hand. Holmes unlocked his strong-box and held up -the blue carbuncle, which shone out like a star, with a cold, -brilliant, many-pointed radiance. Ryder stood glaring with a -drawn face, uncertain whether to claim or to disown it. - -"The game's up, Ryder," said Holmes quietly. "Hold up, man, or -you'll be into the fire! Give him an arm back into his chair, -Watson. He's not got blood enough to go in for felony with -impunity. Give him a dash of brandy. So! Now he looks a little -more human. What a shrimp it is, to be sure!" - -For a moment he had staggered and nearly fallen, but the brandy -brought a tinge of colour into his cheeks, and he sat staring -with frightened eyes at his accuser. - -"I have almost every link in my hands, and all the proofs which I -could possibly need, so there is little which you need tell me. -Still, that little may as well be cleared up to make the case -complete. You had heard, Ryder, of this blue stone of the -Countess of Morcar's?" - -"It was Catherine Cusack who told me of it," said he in a -crackling voice. - -"I see--her ladyship's waiting-maid. Well, the temptation of -sudden wealth so easily acquired was too much for you, as it has -been for better men before you; but you were not very scrupulous -in the means you used. It seems to me, Ryder, that there is the -making of a very pretty villain in you. You knew that this man -Horner, the plumber, had been concerned in some such matter -before, and that suspicion would rest the more readily upon him. -What did you do, then? You made some small job in my lady's -room--you and your confederate Cusack--and you managed that he -should be the man sent for. Then, when he had left, you rifled -the jewel-case, raised the alarm, and had this unfortunate man -arrested. You then--" - -Ryder threw himself down suddenly upon the rug and clutched at my -companion's knees. "For God's sake, have mercy!" he shrieked. -"Think of my father! Of my mother! It would break their hearts. I -never went wrong before! I never will again. I swear it. I'll -swear it on a Bible. Oh, don't bring it into court! For Christ's -sake, don't!" - -"Get back into your chair!" said Holmes sternly. "It is very well -to cringe and crawl now, but you thought little enough of this -poor Horner in the dock for a crime of which he knew nothing." - -"I will fly, Mr. Holmes. I will leave the country, sir. Then the -charge against him will break down." - -"Hum! We will talk about that. And now let us hear a true account -of the next act. How came the stone into the goose, and how came -the goose into the open market? Tell us the truth, for there lies -your only hope of safety." - -Ryder passed his tongue over his parched lips. "I will tell you -it just as it happened, sir," said he. "When Horner had been -arrested, it seemed to me that it would be best for me to get -away with the stone at once, for I did not know at what moment -the police might not take it into their heads to search me and my -room. There was no place about the hotel where it would be safe. -I went out, as if on some commission, and I made for my sister's -house. She had married a man named Oakshott, and lived in Brixton -Road, where she fattened fowls for the market. All the way there -every man I met seemed to me to be a policeman or a detective; -and, for all that it was a cold night, the sweat was pouring down -my face before I came to the Brixton Road. My sister asked me -what was the matter, and why I was so pale; but I told her that I -had been upset by the jewel robbery at the hotel. Then I went -into the back yard and smoked a pipe and wondered what it would -be best to do. - -"I had a friend once called Maudsley, who went to the bad, and -has just been serving his time in Pentonville. One day he had met -me, and fell into talk about the ways of thieves, and how they -could get rid of what they stole. I knew that he would be true to -me, for I knew one or two things about him; so I made up my mind -to go right on to Kilburn, where he lived, and take him into my -confidence. He would show me how to turn the stone into money. -But how to get to him in safety? I thought of the agonies I had -gone through in coming from the hotel. I might at any moment be -seized and searched, and there would be the stone in my waistcoat -pocket. I was leaning against the wall at the time and looking at -the geese which were waddling about round my feet, and suddenly -an idea came into my head which showed me how I could beat the -best detective that ever lived. - -"My sister had told me some weeks before that I might have the -pick of her geese for a Christmas present, and I knew that she -was always as good as her word. I would take my goose now, and in -it I would carry my stone to Kilburn. There was a little shed in -the yard, and behind this I drove one of the birds--a fine big -one, white, with a barred tail. I caught it, and prying its bill -open, I thrust the stone down its throat as far as my finger -could reach. The bird gave a gulp, and I felt the stone pass -along its gullet and down into its crop. But the creature flapped -and struggled, and out came my sister to know what was the -matter. As I turned to speak to her the brute broke loose and -fluttered off among the others. - -"'Whatever were you doing with that bird, Jem?' says she. - -"'Well,' said I, 'you said you'd give me one for Christmas, and I -was feeling which was the fattest.' - -"'Oh,' says she, 'we've set yours aside for you--Jem's bird, we -call it. It's the big white one over yonder. There's twenty-six -of them, which makes one for you, and one for us, and two dozen -for the market.' - -"'Thank you, Maggie,' says I; 'but if it is all the same to you, -I'd rather have that one I was handling just now.' - -"'The other is a good three pound heavier,' said she, 'and we -fattened it expressly for you.' - -"'Never mind. I'll have the other, and I'll take it now,' said I. - -"'Oh, just as you like,' said she, a little huffed. 'Which is it -you want, then?' - -"'That white one with the barred tail, right in the middle of the -flock.' - -"'Oh, very well. Kill it and take it with you.' - -"Well, I did what she said, Mr. Holmes, and I carried the bird -all the way to Kilburn. I told my pal what I had done, for he was -a man that it was easy to tell a thing like that to. He laughed -until he choked, and we got a knife and opened the goose. My -heart turned to water, for there was no sign of the stone, and I -knew that some terrible mistake had occurred. I left the bird, -rushed back to my sister's, and hurried into the back yard. There -was not a bird to be seen there. - -"'Where are they all, Maggie?' I cried. - -"'Gone to the dealer's, Jem.' - -"'Which dealer's?' - -"'Breckinridge, of Covent Garden.' - -"'But was there another with a barred tail?' I asked, 'the same -as the one I chose?' - -"'Yes, Jem; there were two barred-tailed ones, and I could never -tell them apart.' - -"Well, then, of course I saw it all, and I ran off as hard as my -feet would carry me to this man Breckinridge; but he had sold the -lot at once, and not one word would he tell me as to where they -had gone. You heard him yourselves to-night. Well, he has always -answered me like that. My sister thinks that I am going mad. -Sometimes I think that I am myself. And now--and now I am myself -a branded thief, without ever having touched the wealth for which -I sold my character. God help me! God help me!" He burst into -convulsive sobbing, with his face buried in his hands. - -There was a long silence, broken only by his heavy breathing and -by the measured tapping of Sherlock Holmes' finger-tips upon the -edge of the table. Then my friend rose and threw open the door. - -"Get out!" said he. - -"What, sir! Oh, Heaven bless you!" - -"No more words. Get out!" - -And no more words were needed. There was a rush, a clatter upon -the stairs, the bang of a door, and the crisp rattle of running -footfalls from the street. - -"After all, Watson," said Holmes, reaching up his hand for his -clay pipe, "I am not retained by the police to supply their -deficiencies. If Horner were in danger it would be another thing; -but this fellow will not appear against him, and the case must -collapse. I suppose that I am commuting a felony, but it is just -possible that I am saving a soul. This fellow will not go wrong -again; he is too terribly frightened. Send him to gaol now, and -you make him a gaol-bird for life. Besides, it is the season of -forgiveness. Chance has put in our way a most singular and -whimsical problem, and its solution is its own reward. If you -will have the goodness to touch the bell, Doctor, we will begin -another investigation, in which, also a bird will be the chief -feature." - - - -VIII. THE ADVENTURE OF THE SPECKLED BAND - -On glancing over my notes of the seventy odd cases in which I -have during the last eight years studied the methods of my friend -Sherlock Holmes, I find many tragic, some comic, a large number -merely strange, but none commonplace; for, working as he did -rather for the love of his art than for the acquirement of -wealth, he refused to associate himself with any investigation -which did not tend towards the unusual, and even the fantastic. -Of all these varied cases, however, I cannot recall any which -presented more singular features than that which was associated -with the well-known Surrey family of the Roylotts of Stoke Moran. -The events in question occurred in the early days of my -association with Holmes, when we were sharing rooms as bachelors -in Baker Street. It is possible that I might have placed them -upon record before, but a promise of secrecy was made at the -time, from which I have only been freed during the last month by -the untimely death of the lady to whom the pledge was given. It -is perhaps as well that the facts should now come to light, for I -have reasons to know that there are widespread rumours as to the -death of Dr. Grimesby Roylott which tend to make the matter even -more terrible than the truth. - -It was early in April in the year '83 that I woke one morning to -find Sherlock Holmes standing, fully dressed, by the side of my -bed. He was a late riser, as a rule, and as the clock on the -mantelpiece showed me that it was only a quarter-past seven, I -blinked up at him in some surprise, and perhaps just a little -resentment, for I was myself regular in my habits. - -"Very sorry to knock you up, Watson," said he, "but it's the -common lot this morning. Mrs. Hudson has been knocked up, she -retorted upon me, and I on you." - -"What is it, then--a fire?" - -"No; a client. It seems that a young lady has arrived in a -considerable state of excitement, who insists upon seeing me. She -is waiting now in the sitting-room. Now, when young ladies wander -about the metropolis at this hour of the morning, and knock -sleepy people up out of their beds, I presume that it is -something very pressing which they have to communicate. Should it -prove to be an interesting case, you would, I am sure, wish to -follow it from the outset. I thought, at any rate, that I should -call you and give you the chance." - -"My dear fellow, I would not miss it for anything." - -I had no keener pleasure than in following Holmes in his -professional investigations, and in admiring the rapid -deductions, as swift as intuitions, and yet always founded on a -logical basis with which he unravelled the problems which were -submitted to him. I rapidly threw on my clothes and was ready in -a few minutes to accompany my friend down to the sitting-room. A -lady dressed in black and heavily veiled, who had been sitting in -the window, rose as we entered. - -"Good-morning, madam," said Holmes cheerily. "My name is Sherlock -Holmes. This is my intimate friend and associate, Dr. Watson, -before whom you can speak as freely as before myself. Ha! I am -glad to see that Mrs. Hudson has had the good sense to light the -fire. Pray draw up to it, and I shall order you a cup of hot -coffee, for I observe that you are shivering." - -"It is not cold which makes me shiver," said the woman in a low -voice, changing her seat as requested. - -"What, then?" - -"It is fear, Mr. Holmes. It is terror." She raised her veil as -she spoke, and we could see that she was indeed in a pitiable -state of agitation, her face all drawn and grey, with restless -frightened eyes, like those of some hunted animal. Her features -and figure were those of a woman of thirty, but her hair was shot -with premature grey, and her expression was weary and haggard. -Sherlock Holmes ran her over with one of his quick, -all-comprehensive glances. - -"You must not fear," said he soothingly, bending forward and -patting her forearm. "We shall soon set matters right, I have no -doubt. You have come in by train this morning, I see." - -"You know me, then?" - -"No, but I observe the second half of a return ticket in the palm -of your left glove. You must have started early, and yet you had -a good drive in a dog-cart, along heavy roads, before you reached -the station." - -The lady gave a violent start and stared in bewilderment at my -companion. - -"There is no mystery, my dear madam," said he, smiling. "The left -arm of your jacket is spattered with mud in no less than seven -places. The marks are perfectly fresh. There is no vehicle save a -dog-cart which throws up mud in that way, and then only when you -sit on the left-hand side of the driver." - -"Whatever your reasons may be, you are perfectly correct," said -she. "I started from home before six, reached Leatherhead at -twenty past, and came in by the first train to Waterloo. Sir, I -can stand this strain no longer; I shall go mad if it continues. -I have no one to turn to--none, save only one, who cares for me, -and he, poor fellow, can be of little aid. I have heard of you, -Mr. Holmes; I have heard of you from Mrs. Farintosh, whom you -helped in the hour of her sore need. It was from her that I had -your address. Oh, sir, do you not think that you could help me, -too, and at least throw a little light through the dense darkness -which surrounds me? At present it is out of my power to reward -you for your services, but in a month or six weeks I shall be -married, with the control of my own income, and then at least you -shall not find me ungrateful." - -Holmes turned to his desk and, unlocking it, drew out a small -case-book, which he consulted. - -"Farintosh," said he. "Ah yes, I recall the case; it was -concerned with an opal tiara. I think it was before your time, -Watson. I can only say, madam, that I shall be happy to devote -the same care to your case as I did to that of your friend. As to -reward, my profession is its own reward; but you are at liberty -to defray whatever expenses I may be put to, at the time which -suits you best. And now I beg that you will lay before us -everything that may help us in forming an opinion upon the -matter." - -"Alas!" replied our visitor, "the very horror of my situation -lies in the fact that my fears are so vague, and my suspicions -depend so entirely upon small points, which might seem trivial to -another, that even he to whom of all others I have a right to -look for help and advice looks upon all that I tell him about it -as the fancies of a nervous woman. He does not say so, but I can -read it from his soothing answers and averted eyes. But I have -heard, Mr. Holmes, that you can see deeply into the manifold -wickedness of the human heart. You may advise me how to walk amid -the dangers which encompass me." - -"I am all attention, madam." - -"My name is Helen Stoner, and I am living with my stepfather, who -is the last survivor of one of the oldest Saxon families in -England, the Roylotts of Stoke Moran, on the western border of -Surrey." - -Holmes nodded his head. "The name is familiar to me," said he. - -"The family was at one time among the richest in England, and the -estates extended over the borders into Berkshire in the north, -and Hampshire in the west. In the last century, however, four -successive heirs were of a dissolute and wasteful disposition, -and the family ruin was eventually completed by a gambler in the -days of the Regency. Nothing was left save a few acres of ground, -and the two-hundred-year-old house, which is itself crushed under -a heavy mortgage. The last squire dragged out his existence -there, living the horrible life of an aristocratic pauper; but -his only son, my stepfather, seeing that he must adapt himself to -the new conditions, obtained an advance from a relative, which -enabled him to take a medical degree and went out to Calcutta, -where, by his professional skill and his force of character, he -established a large practice. In a fit of anger, however, caused -by some robberies which had been perpetrated in the house, he -beat his native butler to death and narrowly escaped a capital -sentence. As it was, he suffered a long term of imprisonment and -afterwards returned to England a morose and disappointed man. - -"When Dr. Roylott was in India he married my mother, Mrs. Stoner, -the young widow of Major-General Stoner, of the Bengal Artillery. -My sister Julia and I were twins, and we were only two years old -at the time of my mother's re-marriage. She had a considerable -sum of money--not less than 1000 pounds a year--and this she -bequeathed to Dr. Roylott entirely while we resided with him, -with a provision that a certain annual sum should be allowed to -each of us in the event of our marriage. Shortly after our return -to England my mother died--she was killed eight years ago in a -railway accident near Crewe. Dr. Roylott then abandoned his -attempts to establish himself in practice in London and took us -to live with him in the old ancestral house at Stoke Moran. The -money which my mother had left was enough for all our wants, and -there seemed to be no obstacle to our happiness. - -"But a terrible change came over our stepfather about this time. -Instead of making friends and exchanging visits with our -neighbours, who had at first been overjoyed to see a Roylott of -Stoke Moran back in the old family seat, he shut himself up in -his house and seldom came out save to indulge in ferocious -quarrels with whoever might cross his path. Violence of temper -approaching to mania has been hereditary in the men of the -family, and in my stepfather's case it had, I believe, been -intensified by his long residence in the tropics. A series of -disgraceful brawls took place, two of which ended in the -police-court, until at last he became the terror of the village, -and the folks would fly at his approach, for he is a man of -immense strength, and absolutely uncontrollable in his anger. - -"Last week he hurled the local blacksmith over a parapet into a -stream, and it was only by paying over all the money which I -could gather together that I was able to avert another public -exposure. He had no friends at all save the wandering gipsies, -and he would give these vagabonds leave to encamp upon the few -acres of bramble-covered land which represent the family estate, -and would accept in return the hospitality of their tents, -wandering away with them sometimes for weeks on end. He has a -passion also for Indian animals, which are sent over to him by a -correspondent, and he has at this moment a cheetah and a baboon, -which wander freely over his grounds and are feared by the -villagers almost as much as their master. - -"You can imagine from what I say that my poor sister Julia and I -had no great pleasure in our lives. No servant would stay with -us, and for a long time we did all the work of the house. She was -but thirty at the time of her death, and yet her hair had already -begun to whiten, even as mine has." - -"Your sister is dead, then?" - -"She died just two years ago, and it is of her death that I wish -to speak to you. You can understand that, living the life which I -have described, we were little likely to see anyone of our own -age and position. We had, however, an aunt, my mother's maiden -sister, Miss Honoria Westphail, who lives near Harrow, and we -were occasionally allowed to pay short visits at this lady's -house. Julia went there at Christmas two years ago, and met there -a half-pay major of marines, to whom she became engaged. My -stepfather learned of the engagement when my sister returned and -offered no objection to the marriage; but within a fortnight of -the day which had been fixed for the wedding, the terrible event -occurred which has deprived me of my only companion." - -Sherlock Holmes had been leaning back in his chair with his eyes -closed and his head sunk in a cushion, but he half opened his -lids now and glanced across at his visitor. - -"Pray be precise as to details," said he. - -"It is easy for me to be so, for every event of that dreadful -time is seared into my memory. The manor-house is, as I have -already said, very old, and only one wing is now inhabited. The -bedrooms in this wing are on the ground floor, the sitting-rooms -being in the central block of the buildings. Of these bedrooms -the first is Dr. Roylott's, the second my sister's, and the third -my own. There is no communication between them, but they all open -out into the same corridor. Do I make myself plain?" - -"Perfectly so." - -"The windows of the three rooms open out upon the lawn. That -fatal night Dr. Roylott had gone to his room early, though we -knew that he had not retired to rest, for my sister was troubled -by the smell of the strong Indian cigars which it was his custom -to smoke. She left her room, therefore, and came into mine, where -she sat for some time, chatting about her approaching wedding. At -eleven o'clock she rose to leave me, but she paused at the door -and looked back. - -"'Tell me, Helen,' said she, 'have you ever heard anyone whistle -in the dead of the night?' - -"'Never,' said I. - -"'I suppose that you could not possibly whistle, yourself, in -your sleep?' - -"'Certainly not. But why?' - -"'Because during the last few nights I have always, about three -in the morning, heard a low, clear whistle. I am a light sleeper, -and it has awakened me. I cannot tell where it came from--perhaps -from the next room, perhaps from the lawn. I thought that I would -just ask you whether you had heard it.' - -"'No, I have not. It must be those wretched gipsies in the -plantation.' - -"'Very likely. And yet if it were on the lawn, I wonder that you -did not hear it also.' - -"'Ah, but I sleep more heavily than you.' - -"'Well, it is of no great consequence, at any rate.' She smiled -back at me, closed my door, and a few moments later I heard her -key turn in the lock." - -"Indeed," said Holmes. "Was it your custom always to lock -yourselves in at night?" - -"Always." - -"And why?" - -"I think that I mentioned to you that the doctor kept a cheetah -and a baboon. We had no feeling of security unless our doors were -locked." - -"Quite so. Pray proceed with your statement." - -"I could not sleep that night. A vague feeling of impending -misfortune impressed me. My sister and I, you will recollect, -were twins, and you know how subtle are the links which bind two -souls which are so closely allied. It was a wild night. The wind -was howling outside, and the rain was beating and splashing -against the windows. Suddenly, amid all the hubbub of the gale, -there burst forth the wild scream of a terrified woman. I knew -that it was my sister's voice. I sprang from my bed, wrapped a -shawl round me, and rushed into the corridor. As I opened my door -I seemed to hear a low whistle, such as my sister described, and -a few moments later a clanging sound, as if a mass of metal had -fallen. As I ran down the passage, my sister's door was unlocked, -and revolved slowly upon its hinges. I stared at it -horror-stricken, not knowing what was about to issue from it. By -the light of the corridor-lamp I saw my sister appear at the -opening, her face blanched with terror, her hands groping for -help, her whole figure swaying to and fro like that of a -drunkard. I ran to her and threw my arms round her, but at that -moment her knees seemed to give way and she fell to the ground. -She writhed as one who is in terrible pain, and her limbs were -dreadfully convulsed. At first I thought that she had not -recognised me, but as I bent over her she suddenly shrieked out -in a voice which I shall never forget, 'Oh, my God! Helen! It was -the band! The speckled band!' There was something else which she -would fain have said, and she stabbed with her finger into the -air in the direction of the doctor's room, but a fresh convulsion -seized her and choked her words. I rushed out, calling loudly for -my stepfather, and I met him hastening from his room in his -dressing-gown. When he reached my sister's side she was -unconscious, and though he poured brandy down her throat and sent -for medical aid from the village, all efforts were in vain, for -she slowly sank and died without having recovered her -consciousness. Such was the dreadful end of my beloved sister." - -"One moment," said Holmes, "are you sure about this whistle and -metallic sound? Could you swear to it?" - -"That was what the county coroner asked me at the inquiry. It is -my strong impression that I heard it, and yet, among the crash of -the gale and the creaking of an old house, I may possibly have -been deceived." - -"Was your sister dressed?" - -"No, she was in her night-dress. In her right hand was found the -charred stump of a match, and in her left a match-box." - -"Showing that she had struck a light and looked about her when -the alarm took place. That is important. And what conclusions did -the coroner come to?" - -"He investigated the case with great care, for Dr. Roylott's -conduct had long been notorious in the county, but he was unable -to find any satisfactory cause of death. My evidence showed that -the door had been fastened upon the inner side, and the windows -were blocked by old-fashioned shutters with broad iron bars, -which were secured every night. The walls were carefully sounded, -and were shown to be quite solid all round, and the flooring was -also thoroughly examined, with the same result. The chimney is -wide, but is barred up by four large staples. It is certain, -therefore, that my sister was quite alone when she met her end. -Besides, there were no marks of any violence upon her." - -"How about poison?" - -"The doctors examined her for it, but without success." - -"What do you think that this unfortunate lady died of, then?" - -"It is my belief that she died of pure fear and nervous shock, -though what it was that frightened her I cannot imagine." - -"Were there gipsies in the plantation at the time?" - -"Yes, there are nearly always some there." - -"Ah, and what did you gather from this allusion to a band--a -speckled band?" - -"Sometimes I have thought that it was merely the wild talk of -delirium, sometimes that it may have referred to some band of -people, perhaps to these very gipsies in the plantation. I do not -know whether the spotted handkerchiefs which so many of them wear -over their heads might have suggested the strange adjective which -she used." - -Holmes shook his head like a man who is far from being satisfied. - -"These are very deep waters," said he; "pray go on with your -narrative." - -"Two years have passed since then, and my life has been until -lately lonelier than ever. A month ago, however, a dear friend, -whom I have known for many years, has done me the honour to ask -my hand in marriage. His name is Armitage--Percy Armitage--the -second son of Mr. Armitage, of Crane Water, near Reading. My -stepfather has offered no opposition to the match, and we are to -be married in the course of the spring. Two days ago some repairs -were started in the west wing of the building, and my bedroom -wall has been pierced, so that I have had to move into the -chamber in which my sister died, and to sleep in the very bed in -which she slept. Imagine, then, my thrill of terror when last -night, as I lay awake, thinking over her terrible fate, I -suddenly heard in the silence of the night the low whistle which -had been the herald of her own death. I sprang up and lit the -lamp, but nothing was to be seen in the room. I was too shaken to -go to bed again, however, so I dressed, and as soon as it was -daylight I slipped down, got a dog-cart at the Crown Inn, which -is opposite, and drove to Leatherhead, from whence I have come on -this morning with the one object of seeing you and asking your -advice." - -"You have done wisely," said my friend. "But have you told me -all?" - -"Yes, all." - -"Miss Roylott, you have not. You are screening your stepfather." - -"Why, what do you mean?" - -For answer Holmes pushed back the frill of black lace which -fringed the hand that lay upon our visitor's knee. Five little -livid spots, the marks of four fingers and a thumb, were printed -upon the white wrist. - -"You have been cruelly used," said Holmes. - -The lady coloured deeply and covered over her injured wrist. "He -is a hard man," she said, "and perhaps he hardly knows his own -strength." - -There was a long silence, during which Holmes leaned his chin -upon his hands and stared into the crackling fire. - -"This is a very deep business," he said at last. "There are a -thousand details which I should desire to know before I decide -upon our course of action. Yet we have not a moment to lose. If -we were to come to Stoke Moran to-day, would it be possible for -us to see over these rooms without the knowledge of your -stepfather?" - -"As it happens, he spoke of coming into town to-day upon some -most important business. It is probable that he will be away all -day, and that there would be nothing to disturb you. We have a -housekeeper now, but she is old and foolish, and I could easily -get her out of the way." - -"Excellent. You are not averse to this trip, Watson?" - -"By no means." - -"Then we shall both come. What are you going to do yourself?" - -"I have one or two things which I would wish to do now that I am -in town. But I shall return by the twelve o'clock train, so as to -be there in time for your coming." - -"And you may expect us early in the afternoon. I have myself some -small business matters to attend to. Will you not wait and -breakfast?" - -"No, I must go. My heart is lightened already since I have -confided my trouble to you. I shall look forward to seeing you -again this afternoon." She dropped her thick black veil over her -face and glided from the room. - -"And what do you think of it all, Watson?" asked Sherlock Holmes, -leaning back in his chair. - -"It seems to me to be a most dark and sinister business." - -"Dark enough and sinister enough." - -"Yet if the lady is correct in saying that the flooring and walls -are sound, and that the door, window, and chimney are impassable, -then her sister must have been undoubtedly alone when she met her -mysterious end." - -"What becomes, then, of these nocturnal whistles, and what of the -very peculiar words of the dying woman?" - -"I cannot think." - -"When you combine the ideas of whistles at night, the presence of -a band of gipsies who are on intimate terms with this old doctor, -the fact that we have every reason to believe that the doctor has -an interest in preventing his stepdaughter's marriage, the dying -allusion to a band, and, finally, the fact that Miss Helen Stoner -heard a metallic clang, which might have been caused by one of -those metal bars that secured the shutters falling back into its -place, I think that there is good ground to think that the -mystery may be cleared along those lines." - -"But what, then, did the gipsies do?" - -"I cannot imagine." - -"I see many objections to any such theory." - -"And so do I. It is precisely for that reason that we are going -to Stoke Moran this day. I want to see whether the objections are -fatal, or if they may be explained away. But what in the name of -the devil!" - -The ejaculation had been drawn from my companion by the fact that -our door had been suddenly dashed open, and that a huge man had -framed himself in the aperture. His costume was a peculiar -mixture of the professional and of the agricultural, having a -black top-hat, a long frock-coat, and a pair of high gaiters, -with a hunting-crop swinging in his hand. So tall was he that his -hat actually brushed the cross bar of the doorway, and his -breadth seemed to span it across from side to side. A large face, -seared with a thousand wrinkles, burned yellow with the sun, and -marked with every evil passion, was turned from one to the other -of us, while his deep-set, bile-shot eyes, and his high, thin, -fleshless nose, gave him somewhat the resemblance to a fierce old -bird of prey. - -"Which of you is Holmes?" asked this apparition. - -"My name, sir; but you have the advantage of me," said my -companion quietly. - -"I am Dr. Grimesby Roylott, of Stoke Moran." - -"Indeed, Doctor," said Holmes blandly. "Pray take a seat." - -"I will do nothing of the kind. My stepdaughter has been here. I -have traced her. What has she been saying to you?" - -"It is a little cold for the time of the year," said Holmes. - -"What has she been saying to you?" screamed the old man -furiously. - -"But I have heard that the crocuses promise well," continued my -companion imperturbably. - -"Ha! You put me off, do you?" said our new visitor, taking a step -forward and shaking his hunting-crop. "I know you, you scoundrel! -I have heard of you before. You are Holmes, the meddler." - -My friend smiled. - -"Holmes, the busybody!" - -His smile broadened. - -"Holmes, the Scotland Yard Jack-in-office!" - -Holmes chuckled heartily. "Your conversation is most -entertaining," said he. "When you go out close the door, for -there is a decided draught." - -"I will go when I have said my say. Don't you dare to meddle with -my affairs. I know that Miss Stoner has been here. I traced her! -I am a dangerous man to fall foul of! See here." He stepped -swiftly forward, seized the poker, and bent it into a curve with -his huge brown hands. - -"See that you keep yourself out of my grip," he snarled, and -hurling the twisted poker into the fireplace he strode out of the -room. - -"He seems a very amiable person," said Holmes, laughing. "I am -not quite so bulky, but if he had remained I might have shown him -that my grip was not much more feeble than his own." As he spoke -he picked up the steel poker and, with a sudden effort, -straightened it out again. - -"Fancy his having the insolence to confound me with the official -detective force! This incident gives zest to our investigation, -however, and I only trust that our little friend will not suffer -from her imprudence in allowing this brute to trace her. And now, -Watson, we shall order breakfast, and afterwards I shall walk -down to Doctors' Commons, where I hope to get some data which may -help us in this matter." - - -It was nearly one o'clock when Sherlock Holmes returned from his -excursion. He held in his hand a sheet of blue paper, scrawled -over with notes and figures. - -"I have seen the will of the deceased wife," said he. "To -determine its exact meaning I have been obliged to work out the -present prices of the investments with which it is concerned. The -total income, which at the time of the wife's death was little -short of 1100 pounds, is now, through the fall in agricultural -prices, not more than 750 pounds. Each daughter can claim an -income of 250 pounds, in case of marriage. It is evident, -therefore, that if both girls had married, this beauty would have -had a mere pittance, while even one of them would cripple him to -a very serious extent. My morning's work has not been wasted, -since it has proved that he has the very strongest motives for -standing in the way of anything of the sort. And now, Watson, -this is too serious for dawdling, especially as the old man is -aware that we are interesting ourselves in his affairs; so if you -are ready, we shall call a cab and drive to Waterloo. I should be -very much obliged if you would slip your revolver into your -pocket. An Eley's No. 2 is an excellent argument with gentlemen -who can twist steel pokers into knots. That and a tooth-brush -are, I think, all that we need." - -At Waterloo we were fortunate in catching a train for -Leatherhead, where we hired a trap at the station inn and drove -for four or five miles through the lovely Surrey lanes. It was a -perfect day, with a bright sun and a few fleecy clouds in the -heavens. The trees and wayside hedges were just throwing out -their first green shoots, and the air was full of the pleasant -smell of the moist earth. To me at least there was a strange -contrast between the sweet promise of the spring and this -sinister quest upon which we were engaged. My companion sat in -the front of the trap, his arms folded, his hat pulled down over -his eyes, and his chin sunk upon his breast, buried in the -deepest thought. Suddenly, however, he started, tapped me on the -shoulder, and pointed over the meadows. - -"Look there!" said he. - -A heavily timbered park stretched up in a gentle slope, -thickening into a grove at the highest point. From amid the -branches there jutted out the grey gables and high roof-tree of a -very old mansion. - -"Stoke Moran?" said he. - -"Yes, sir, that be the house of Dr. Grimesby Roylott," remarked -the driver. - -"There is some building going on there," said Holmes; "that is -where we are going." - -"There's the village," said the driver, pointing to a cluster of -roofs some distance to the left; "but if you want to get to the -house, you'll find it shorter to get over this stile, and so by -the foot-path over the fields. There it is, where the lady is -walking." - -"And the lady, I fancy, is Miss Stoner," observed Holmes, shading -his eyes. "Yes, I think we had better do as you suggest." - -We got off, paid our fare, and the trap rattled back on its way -to Leatherhead. - -"I thought it as well," said Holmes as we climbed the stile, -"that this fellow should think we had come here as architects, or -on some definite business. It may stop his gossip. -Good-afternoon, Miss Stoner. You see that we have been as good as -our word." - -Our client of the morning had hurried forward to meet us with a -face which spoke her joy. "I have been waiting so eagerly for -you," she cried, shaking hands with us warmly. "All has turned -out splendidly. Dr. Roylott has gone to town, and it is unlikely -that he will be back before evening." - -"We have had the pleasure of making the doctor's acquaintance," -said Holmes, and in a few words he sketched out what had -occurred. Miss Stoner turned white to the lips as she listened. - -"Good heavens!" she cried, "he has followed me, then." - -"So it appears." - -"He is so cunning that I never know when I am safe from him. What -will he say when he returns?" - -"He must guard himself, for he may find that there is someone -more cunning than himself upon his track. You must lock yourself -up from him to-night. If he is violent, we shall take you away to -your aunt's at Harrow. Now, we must make the best use of our -time, so kindly take us at once to the rooms which we are to -examine." - -The building was of grey, lichen-blotched stone, with a high -central portion and two curving wings, like the claws of a crab, -thrown out on each side. In one of these wings the windows were -broken and blocked with wooden boards, while the roof was partly -caved in, a picture of ruin. The central portion was in little -better repair, but the right-hand block was comparatively modern, -and the blinds in the windows, with the blue smoke curling up -from the chimneys, showed that this was where the family resided. -Some scaffolding had been erected against the end wall, and the -stone-work had been broken into, but there were no signs of any -workmen at the moment of our visit. Holmes walked slowly up and -down the ill-trimmed lawn and examined with deep attention the -outsides of the windows. - -"This, I take it, belongs to the room in which you used to sleep, -the centre one to your sister's, and the one next to the main -building to Dr. Roylott's chamber?" - -"Exactly so. But I am now sleeping in the middle one." - -"Pending the alterations, as I understand. By the way, there does -not seem to be any very pressing need for repairs at that end -wall." - -"There were none. I believe that it was an excuse to move me from -my room." - -"Ah! that is suggestive. Now, on the other side of this narrow -wing runs the corridor from which these three rooms open. There -are windows in it, of course?" - -"Yes, but very small ones. Too narrow for anyone to pass -through." - -"As you both locked your doors at night, your rooms were -unapproachable from that side. Now, would you have the kindness -to go into your room and bar your shutters?" - -Miss Stoner did so, and Holmes, after a careful examination -through the open window, endeavoured in every way to force the -shutter open, but without success. There was no slit through -which a knife could be passed to raise the bar. Then with his -lens he tested the hinges, but they were of solid iron, built -firmly into the massive masonry. "Hum!" said he, scratching his -chin in some perplexity, "my theory certainly presents some -difficulties. No one could pass these shutters if they were -bolted. Well, we shall see if the inside throws any light upon -the matter." - -A small side door led into the whitewashed corridor from which -the three bedrooms opened. Holmes refused to examine the third -chamber, so we passed at once to the second, that in which Miss -Stoner was now sleeping, and in which her sister had met with her -fate. It was a homely little room, with a low ceiling and a -gaping fireplace, after the fashion of old country-houses. A -brown chest of drawers stood in one corner, a narrow -white-counterpaned bed in another, and a dressing-table on the -left-hand side of the window. These articles, with two small -wicker-work chairs, made up all the furniture in the room save -for a square of Wilton carpet in the centre. The boards round and -the panelling of the walls were of brown, worm-eaten oak, so old -and discoloured that it may have dated from the original building -of the house. Holmes drew one of the chairs into a corner and sat -silent, while his eyes travelled round and round and up and down, -taking in every detail of the apartment. - -"Where does that bell communicate with?" he asked at last -pointing to a thick bell-rope which hung down beside the bed, the -tassel actually lying upon the pillow. - -"It goes to the housekeeper's room." - -"It looks newer than the other things?" - -"Yes, it was only put there a couple of years ago." - -"Your sister asked for it, I suppose?" - -"No, I never heard of her using it. We used always to get what we -wanted for ourselves." - -"Indeed, it seemed unnecessary to put so nice a bell-pull there. -You will excuse me for a few minutes while I satisfy myself as to -this floor." He threw himself down upon his face with his lens in -his hand and crawled swiftly backward and forward, examining -minutely the cracks between the boards. Then he did the same with -the wood-work with which the chamber was panelled. Finally he -walked over to the bed and spent some time in staring at it and -in running his eye up and down the wall. Finally he took the -bell-rope in his hand and gave it a brisk tug. - -"Why, it's a dummy," said he. - -"Won't it ring?" - -"No, it is not even attached to a wire. This is very interesting. -You can see now that it is fastened to a hook just above where -the little opening for the ventilator is." - -"How very absurd! I never noticed that before." - -"Very strange!" muttered Holmes, pulling at the rope. "There are -one or two very singular points about this room. For example, -what a fool a builder must be to open a ventilator into another -room, when, with the same trouble, he might have communicated -with the outside air!" - -"That is also quite modern," said the lady. - -"Done about the same time as the bell-rope?" remarked Holmes. - -"Yes, there were several little changes carried out about that -time." - -"They seem to have been of a most interesting character--dummy -bell-ropes, and ventilators which do not ventilate. With your -permission, Miss Stoner, we shall now carry our researches into -the inner apartment." - -Dr. Grimesby Roylott's chamber was larger than that of his -step-daughter, but was as plainly furnished. A camp-bed, a small -wooden shelf full of books, mostly of a technical character, an -armchair beside the bed, a plain wooden chair against the wall, a -round table, and a large iron safe were the principal things -which met the eye. Holmes walked slowly round and examined each -and all of them with the keenest interest. - -"What's in here?" he asked, tapping the safe. - -"My stepfather's business papers." - -"Oh! you have seen inside, then?" - -"Only once, some years ago. I remember that it was full of -papers." - -"There isn't a cat in it, for example?" - -"No. What a strange idea!" - -"Well, look at this!" He took up a small saucer of milk which -stood on the top of it. - -"No; we don't keep a cat. But there is a cheetah and a baboon." - -"Ah, yes, of course! Well, a cheetah is just a big cat, and yet a -saucer of milk does not go very far in satisfying its wants, I -daresay. There is one point which I should wish to determine." He -squatted down in front of the wooden chair and examined the seat -of it with the greatest attention. - -"Thank you. That is quite settled," said he, rising and putting -his lens in his pocket. "Hullo! Here is something interesting!" - -The object which had caught his eye was a small dog lash hung on -one corner of the bed. The lash, however, was curled upon itself -and tied so as to make a loop of whipcord. - -"What do you make of that, Watson?" - -"It's a common enough lash. But I don't know why it should be -tied." - -"That is not quite so common, is it? Ah, me! it's a wicked world, -and when a clever man turns his brains to crime it is the worst -of all. I think that I have seen enough now, Miss Stoner, and -with your permission we shall walk out upon the lawn." - -I had never seen my friend's face so grim or his brow so dark as -it was when we turned from the scene of this investigation. We -had walked several times up and down the lawn, neither Miss -Stoner nor myself liking to break in upon his thoughts before he -roused himself from his reverie. - -"It is very essential, Miss Stoner," said he, "that you should -absolutely follow my advice in every respect." - -"I shall most certainly do so." - -"The matter is too serious for any hesitation. Your life may -depend upon your compliance." - -"I assure you that I am in your hands." - -"In the first place, both my friend and I must spend the night in -your room." - -Both Miss Stoner and I gazed at him in astonishment. - -"Yes, it must be so. Let me explain. I believe that that is the -village inn over there?" - -"Yes, that is the Crown." - -"Very good. Your windows would be visible from there?" - -"Certainly." - -"You must confine yourself to your room, on pretence of a -headache, when your stepfather comes back. Then when you hear him -retire for the night, you must open the shutters of your window, -undo the hasp, put your lamp there as a signal to us, and then -withdraw quietly with everything which you are likely to want -into the room which you used to occupy. I have no doubt that, in -spite of the repairs, you could manage there for one night." - -"Oh, yes, easily." - -"The rest you will leave in our hands." - -"But what will you do?" - -"We shall spend the night in your room, and we shall investigate -the cause of this noise which has disturbed you." - -"I believe, Mr. Holmes, that you have already made up your mind," -said Miss Stoner, laying her hand upon my companion's sleeve. - -"Perhaps I have." - -"Then, for pity's sake, tell me what was the cause of my sister's -death." - -"I should prefer to have clearer proofs before I speak." - -"You can at least tell me whether my own thought is correct, and -if she died from some sudden fright." - -"No, I do not think so. I think that there was probably some more -tangible cause. And now, Miss Stoner, we must leave you for if -Dr. Roylott returned and saw us our journey would be in vain. -Good-bye, and be brave, for if you will do what I have told you, -you may rest assured that we shall soon drive away the dangers -that threaten you." - -Sherlock Holmes and I had no difficulty in engaging a bedroom and -sitting-room at the Crown Inn. They were on the upper floor, and -from our window we could command a view of the avenue gate, and -of the inhabited wing of Stoke Moran Manor House. At dusk we saw -Dr. Grimesby Roylott drive past, his huge form looming up beside -the little figure of the lad who drove him. The boy had some -slight difficulty in undoing the heavy iron gates, and we heard -the hoarse roar of the doctor's voice and saw the fury with which -he shook his clinched fists at him. The trap drove on, and a few -minutes later we saw a sudden light spring up among the trees as -the lamp was lit in one of the sitting-rooms. - -"Do you know, Watson," said Holmes as we sat together in the -gathering darkness, "I have really some scruples as to taking you -to-night. There is a distinct element of danger." - -"Can I be of assistance?" - -"Your presence might be invaluable." - -"Then I shall certainly come." - -"It is very kind of you." - -"You speak of danger. You have evidently seen more in these rooms -than was visible to me." - -"No, but I fancy that I may have deduced a little more. I imagine -that you saw all that I did." - -"I saw nothing remarkable save the bell-rope, and what purpose -that could answer I confess is more than I can imagine." - -"You saw the ventilator, too?" - -"Yes, but I do not think that it is such a very unusual thing to -have a small opening between two rooms. It was so small that a -rat could hardly pass through." - -"I knew that we should find a ventilator before ever we came to -Stoke Moran." - -"My dear Holmes!" - -"Oh, yes, I did. You remember in her statement she said that her -sister could smell Dr. Roylott's cigar. Now, of course that -suggested at once that there must be a communication between the -two rooms. It could only be a small one, or it would have been -remarked upon at the coroner's inquiry. I deduced a ventilator." - -"But what harm can there be in that?" - -"Well, there is at least a curious coincidence of dates. A -ventilator is made, a cord is hung, and a lady who sleeps in the -bed dies. Does not that strike you?" - -"I cannot as yet see any connection." - -"Did you observe anything very peculiar about that bed?" - -"No." - -"It was clamped to the floor. Did you ever see a bed fastened -like that before?" - -"I cannot say that I have." - -"The lady could not move her bed. It must always be in the same -relative position to the ventilator and to the rope--or so we may -call it, since it was clearly never meant for a bell-pull." - -"Holmes," I cried, "I seem to see dimly what you are hinting at. -We are only just in time to prevent some subtle and horrible -crime." - -"Subtle enough and horrible enough. When a doctor does go wrong -he is the first of criminals. He has nerve and he has knowledge. -Palmer and Pritchard were among the heads of their profession. -This man strikes even deeper, but I think, Watson, that we shall -be able to strike deeper still. But we shall have horrors enough -before the night is over; for goodness' sake let us have a quiet -pipe and turn our minds for a few hours to something more -cheerful." - - -About nine o'clock the light among the trees was extinguished, -and all was dark in the direction of the Manor House. Two hours -passed slowly away, and then, suddenly, just at the stroke of -eleven, a single bright light shone out right in front of us. - -"That is our signal," said Holmes, springing to his feet; "it -comes from the middle window." - -As we passed out he exchanged a few words with the landlord, -explaining that we were going on a late visit to an acquaintance, -and that it was possible that we might spend the night there. A -moment later we were out on the dark road, a chill wind blowing -in our faces, and one yellow light twinkling in front of us -through the gloom to guide us on our sombre errand. - -There was little difficulty in entering the grounds, for -unrepaired breaches gaped in the old park wall. Making our way -among the trees, we reached the lawn, crossed it, and were about -to enter through the window when out from a clump of laurel -bushes there darted what seemed to be a hideous and distorted -child, who threw itself upon the grass with writhing limbs and -then ran swiftly across the lawn into the darkness. - -"My God!" I whispered; "did you see it?" - -Holmes was for the moment as startled as I. His hand closed like -a vice upon my wrist in his agitation. Then he broke into a low -laugh and put his lips to my ear. - -"It is a nice household," he murmured. "That is the baboon." - -I had forgotten the strange pets which the doctor affected. There -was a cheetah, too; perhaps we might find it upon our shoulders -at any moment. I confess that I felt easier in my mind when, -after following Holmes' example and slipping off my shoes, I -found myself inside the bedroom. My companion noiselessly closed -the shutters, moved the lamp onto the table, and cast his eyes -round the room. All was as we had seen it in the daytime. Then -creeping up to me and making a trumpet of his hand, he whispered -into my ear again so gently that it was all that I could do to -distinguish the words: - -"The least sound would be fatal to our plans." - -I nodded to show that I had heard. - -"We must sit without light. He would see it through the -ventilator." - -I nodded again. - -"Do not go asleep; your very life may depend upon it. Have your -pistol ready in case we should need it. I will sit on the side of -the bed, and you in that chair." - -I took out my revolver and laid it on the corner of the table. - -Holmes had brought up a long thin cane, and this he placed upon -the bed beside him. By it he laid the box of matches and the -stump of a candle. Then he turned down the lamp, and we were left -in darkness. - -How shall I ever forget that dreadful vigil? I could not hear a -sound, not even the drawing of a breath, and yet I knew that my -companion sat open-eyed, within a few feet of me, in the same -state of nervous tension in which I was myself. The shutters cut -off the least ray of light, and we waited in absolute darkness. - -From outside came the occasional cry of a night-bird, and once at -our very window a long drawn catlike whine, which told us that -the cheetah was indeed at liberty. Far away we could hear the -deep tones of the parish clock, which boomed out every quarter of -an hour. How long they seemed, those quarters! Twelve struck, and -one and two and three, and still we sat waiting silently for -whatever might befall. - -Suddenly there was the momentary gleam of a light up in the -direction of the ventilator, which vanished immediately, but was -succeeded by a strong smell of burning oil and heated metal. -Someone in the next room had lit a dark-lantern. I heard a gentle -sound of movement, and then all was silent once more, though the -smell grew stronger. For half an hour I sat with straining ears. -Then suddenly another sound became audible--a very gentle, -soothing sound, like that of a small jet of steam escaping -continually from a kettle. The instant that we heard it, Holmes -sprang from the bed, struck a match, and lashed furiously with -his cane at the bell-pull. - -"You see it, Watson?" he yelled. "You see it?" - -But I saw nothing. At the moment when Holmes struck the light I -heard a low, clear whistle, but the sudden glare flashing into my -weary eyes made it impossible for me to tell what it was at which -my friend lashed so savagely. I could, however, see that his face -was deadly pale and filled with horror and loathing. He had -ceased to strike and was gazing up at the ventilator when -suddenly there broke from the silence of the night the most -horrible cry to which I have ever listened. It swelled up louder -and louder, a hoarse yell of pain and fear and anger all mingled -in the one dreadful shriek. They say that away down in the -village, and even in the distant parsonage, that cry raised the -sleepers from their beds. It struck cold to our hearts, and I -stood gazing at Holmes, and he at me, until the last echoes of it -had died away into the silence from which it rose. - -"What can it mean?" I gasped. - -"It means that it is all over," Holmes answered. "And perhaps, -after all, it is for the best. Take your pistol, and we will -enter Dr. Roylott's room." - -With a grave face he lit the lamp and led the way down the -corridor. Twice he struck at the chamber door without any reply -from within. Then he turned the handle and entered, I at his -heels, with the cocked pistol in my hand. - -It was a singular sight which met our eyes. On the table stood a -dark-lantern with the shutter half open, throwing a brilliant -beam of light upon the iron safe, the door of which was ajar. -Beside this table, on the wooden chair, sat Dr. Grimesby Roylott -clad in a long grey dressing-gown, his bare ankles protruding -beneath, and his feet thrust into red heelless Turkish slippers. -Across his lap lay the short stock with the long lash which we -had noticed during the day. His chin was cocked upward and his -eyes were fixed in a dreadful, rigid stare at the corner of the -ceiling. Round his brow he had a peculiar yellow band, with -brownish speckles, which seemed to be bound tightly round his -head. As we entered he made neither sound nor motion. - -"The band! the speckled band!" whispered Holmes. - -I took a step forward. In an instant his strange headgear began -to move, and there reared itself from among his hair the squat -diamond-shaped head and puffed neck of a loathsome serpent. - -"It is a swamp adder!" cried Holmes; "the deadliest snake in -India. He has died within ten seconds of being bitten. Violence -does, in truth, recoil upon the violent, and the schemer falls -into the pit which he digs for another. Let us thrust this -creature back into its den, and we can then remove Miss Stoner to -some place of shelter and let the county police know what has -happened." - -As he spoke he drew the dog-whip swiftly from the dead man's lap, -and throwing the noose round the reptile's neck he drew it from -its horrid perch and, carrying it at arm's length, threw it into -the iron safe, which he closed upon it. - -Such are the true facts of the death of Dr. Grimesby Roylott, of -Stoke Moran. It is not necessary that I should prolong a -narrative which has already run to too great a length by telling -how we broke the sad news to the terrified girl, how we conveyed -her by the morning train to the care of her good aunt at Harrow, -of how the slow process of official inquiry came to the -conclusion that the doctor met his fate while indiscreetly -playing with a dangerous pet. The little which I had yet to learn -of the case was told me by Sherlock Holmes as we travelled back -next day. - -"I had," said he, "come to an entirely erroneous conclusion which -shows, my dear Watson, how dangerous it always is to reason from -insufficient data. The presence of the gipsies, and the use of -the word 'band,' which was used by the poor girl, no doubt, to -explain the appearance which she had caught a hurried glimpse of -by the light of her match, were sufficient to put me upon an -entirely wrong scent. I can only claim the merit that I instantly -reconsidered my position when, however, it became clear to me -that whatever danger threatened an occupant of the room could not -come either from the window or the door. My attention was -speedily drawn, as I have already remarked to you, to this -ventilator, and to the bell-rope which hung down to the bed. The -discovery that this was a dummy, and that the bed was clamped to -the floor, instantly gave rise to the suspicion that the rope was -there as a bridge for something passing through the hole and -coming to the bed. The idea of a snake instantly occurred to me, -and when I coupled it with my knowledge that the doctor was -furnished with a supply of creatures from India, I felt that I -was probably on the right track. The idea of using a form of -poison which could not possibly be discovered by any chemical -test was just such a one as would occur to a clever and ruthless -man who had had an Eastern training. The rapidity with which such -a poison would take effect would also, from his point of view, be -an advantage. It would be a sharp-eyed coroner, indeed, who could -distinguish the two little dark punctures which would show where -the poison fangs had done their work. Then I thought of the -whistle. Of course he must recall the snake before the morning -light revealed it to the victim. He had trained it, probably by -the use of the milk which we saw, to return to him when summoned. -He would put it through this ventilator at the hour that he -thought best, with the certainty that it would crawl down the -rope and land on the bed. It might or might not bite the -occupant, perhaps she might escape every night for a week, but -sooner or later she must fall a victim. - -"I had come to these conclusions before ever I had entered his -room. An inspection of his chair showed me that he had been in -the habit of standing on it, which of course would be necessary -in order that he should reach the ventilator. The sight of the -safe, the saucer of milk, and the loop of whipcord were enough to -finally dispel any doubts which may have remained. The metallic -clang heard by Miss Stoner was obviously caused by her stepfather -hastily closing the door of his safe upon its terrible occupant. -Having once made up my mind, you know the steps which I took in -order to put the matter to the proof. I heard the creature hiss -as I have no doubt that you did also, and I instantly lit the -light and attacked it." - -"With the result of driving it through the ventilator." - -"And also with the result of causing it to turn upon its master -at the other side. Some of the blows of my cane came home and -roused its snakish temper, so that it flew upon the first person -it saw. In this way I am no doubt indirectly responsible for Dr. -Grimesby Roylott's death, and I cannot say that it is likely to -weigh very heavily upon my conscience." - - - -IX. THE ADVENTURE OF THE ENGINEER'S THUMB - -Of all the problems which have been submitted to my friend, Mr. -Sherlock Holmes, for solution during the years of our intimacy, -there were only two which I was the means of introducing to his -notice--that of Mr. Hatherley's thumb, and that of Colonel -Warburton's madness. Of these the latter may have afforded a -finer field for an acute and original observer, but the other was -so strange in its inception and so dramatic in its details that -it may be the more worthy of being placed upon record, even if it -gave my friend fewer openings for those deductive methods of -reasoning by which he achieved such remarkable results. The story -has, I believe, been told more than once in the newspapers, but, -like all such narratives, its effect is much less striking when -set forth en bloc in a single half-column of print than when the -facts slowly evolve before your own eyes, and the mystery clears -gradually away as each new discovery furnishes a step which leads -on to the complete truth. At the time the circumstances made a -deep impression upon me, and the lapse of two years has hardly -served to weaken the effect. - -It was in the summer of '89, not long after my marriage, that the -events occurred which I am now about to summarise. I had returned -to civil practice and had finally abandoned Holmes in his Baker -Street rooms, although I continually visited him and occasionally -even persuaded him to forgo his Bohemian habits so far as to come -and visit us. My practice had steadily increased, and as I -happened to live at no very great distance from Paddington -Station, I got a few patients from among the officials. One of -these, whom I had cured of a painful and lingering disease, was -never weary of advertising my virtues and of endeavouring to send -me on every sufferer over whom he might have any influence. - -One morning, at a little before seven o'clock, I was awakened by -the maid tapping at the door to announce that two men had come -from Paddington and were waiting in the consulting-room. I -dressed hurriedly, for I knew by experience that railway cases -were seldom trivial, and hastened downstairs. As I descended, my -old ally, the guard, came out of the room and closed the door -tightly behind him. - -"I've got him here," he whispered, jerking his thumb over his -shoulder; "he's all right." - -"What is it, then?" I asked, for his manner suggested that it was -some strange creature which he had caged up in my room. - -"It's a new patient," he whispered. "I thought I'd bring him -round myself; then he couldn't slip away. There he is, all safe -and sound. I must go now, Doctor; I have my dooties, just the -same as you." And off he went, this trusty tout, without even -giving me time to thank him. - -I entered my consulting-room and found a gentleman seated by the -table. He was quietly dressed in a suit of heather tweed with a -soft cloth cap which he had laid down upon my books. Round one of -his hands he had a handkerchief wrapped, which was mottled all -over with bloodstains. He was young, not more than -five-and-twenty, I should say, with a strong, masculine face; but -he was exceedingly pale and gave me the impression of a man who -was suffering from some strong agitation, which it took all his -strength of mind to control. - -"I am sorry to knock you up so early, Doctor," said he, "but I -have had a very serious accident during the night. I came in by -train this morning, and on inquiring at Paddington as to where I -might find a doctor, a worthy fellow very kindly escorted me -here. I gave the maid a card, but I see that she has left it upon -the side-table." - -I took it up and glanced at it. "Mr. Victor Hatherley, hydraulic -engineer, 16A, Victoria Street (3rd floor)." That was the name, -style, and abode of my morning visitor. "I regret that I have -kept you waiting," said I, sitting down in my library-chair. "You -are fresh from a night journey, I understand, which is in itself -a monotonous occupation." - -"Oh, my night could not be called monotonous," said he, and -laughed. He laughed very heartily, with a high, ringing note, -leaning back in his chair and shaking his sides. All my medical -instincts rose up against that laugh. - -"Stop it!" I cried; "pull yourself together!" and I poured out -some water from a caraffe. - -It was useless, however. He was off in one of those hysterical -outbursts which come upon a strong nature when some great crisis -is over and gone. Presently he came to himself once more, very -weary and pale-looking. - -"I have been making a fool of myself," he gasped. - -"Not at all. Drink this." I dashed some brandy into the water, -and the colour began to come back to his bloodless cheeks. - -"That's better!" said he. "And now, Doctor, perhaps you would -kindly attend to my thumb, or rather to the place where my thumb -used to be." - -He unwound the handkerchief and held out his hand. It gave even -my hardened nerves a shudder to look at it. There were four -protruding fingers and a horrid red, spongy surface where the -thumb should have been. It had been hacked or torn right out from -the roots. - -"Good heavens!" I cried, "this is a terrible injury. It must have -bled considerably." - -"Yes, it did. I fainted when it was done, and I think that I must -have been senseless for a long time. When I came to I found that -it was still bleeding, so I tied one end of my handkerchief very -tightly round the wrist and braced it up with a twig." - -"Excellent! You should have been a surgeon." - -"It is a question of hydraulics, you see, and came within my own -province." - -"This has been done," said I, examining the wound, "by a very -heavy and sharp instrument." - -"A thing like a cleaver," said he. - -"An accident, I presume?" - -"By no means." - -"What! a murderous attack?" - -"Very murderous indeed." - -"You horrify me." - -I sponged the wound, cleaned it, dressed it, and finally covered -it over with cotton wadding and carbolised bandages. He lay back -without wincing, though he bit his lip from time to time. - -"How is that?" I asked when I had finished. - -"Capital! Between your brandy and your bandage, I feel a new man. -I was very weak, but I have had a good deal to go through." - -"Perhaps you had better not speak of the matter. It is evidently -trying to your nerves." - -"Oh, no, not now. I shall have to tell my tale to the police; -but, between ourselves, if it were not for the convincing -evidence of this wound of mine, I should be surprised if they -believed my statement, for it is a very extraordinary one, and I -have not much in the way of proof with which to back it up; and, -even if they believe me, the clues which I can give them are so -vague that it is a question whether justice will be done." - -"Ha!" cried I, "if it is anything in the nature of a problem -which you desire to see solved, I should strongly recommend you -to come to my friend, Mr. Sherlock Holmes, before you go to the -official police." - -"Oh, I have heard of that fellow," answered my visitor, "and I -should be very glad if he would take the matter up, though of -course I must use the official police as well. Would you give me -an introduction to him?" - -"I'll do better. I'll take you round to him myself." - -"I should be immensely obliged to you." - -"We'll call a cab and go together. We shall just be in time to -have a little breakfast with him. Do you feel equal to it?" - -"Yes; I shall not feel easy until I have told my story." - -"Then my servant will call a cab, and I shall be with you in an -instant." I rushed upstairs, explained the matter shortly to my -wife, and in five minutes was inside a hansom, driving with my -new acquaintance to Baker Street. - -Sherlock Holmes was, as I expected, lounging about his -sitting-room in his dressing-gown, reading the agony column of The -Times and smoking his before-breakfast pipe, which was composed -of all the plugs and dottles left from his smokes of the day -before, all carefully dried and collected on the corner of the -mantelpiece. He received us in his quietly genial fashion, -ordered fresh rashers and eggs, and joined us in a hearty meal. -When it was concluded he settled our new acquaintance upon the -sofa, placed a pillow beneath his head, and laid a glass of -brandy and water within his reach. - -"It is easy to see that your experience has been no common one, -Mr. Hatherley," said he. "Pray, lie down there and make yourself -absolutely at home. Tell us what you can, but stop when you are -tired and keep up your strength with a little stimulant." - -"Thank you," said my patient, "but I have felt another man since -the doctor bandaged me, and I think that your breakfast has -completed the cure. I shall take up as little of your valuable -time as possible, so I shall start at once upon my peculiar -experiences." - -Holmes sat in his big armchair with the weary, heavy-lidded -expression which veiled his keen and eager nature, while I sat -opposite to him, and we listened in silence to the strange story -which our visitor detailed to us. - -"You must know," said he, "that I am an orphan and a bachelor, -residing alone in lodgings in London. By profession I am a -hydraulic engineer, and I have had considerable experience of my -work during the seven years that I was apprenticed to Venner & -Matheson, the well-known firm, of Greenwich. Two years ago, -having served my time, and having also come into a fair sum of -money through my poor father's death, I determined to start in -business for myself and took professional chambers in Victoria -Street. - -"I suppose that everyone finds his first independent start in -business a dreary experience. To me it has been exceptionally so. -During two years I have had three consultations and one small -job, and that is absolutely all that my profession has brought -me. My gross takings amount to 27 pounds 10s. Every day, from -nine in the morning until four in the afternoon, I waited in my -little den, until at last my heart began to sink, and I came to -believe that I should never have any practice at all. - -"Yesterday, however, just as I was thinking of leaving the -office, my clerk entered to say there was a gentleman waiting who -wished to see me upon business. He brought up a card, too, with -the name of 'Colonel Lysander Stark' engraved upon it. Close at -his heels came the colonel himself, a man rather over the middle -size, but of an exceeding thinness. I do not think that I have -ever seen so thin a man. His whole face sharpened away into nose -and chin, and the skin of his cheeks was drawn quite tense over -his outstanding bones. Yet this emaciation seemed to be his -natural habit, and due to no disease, for his eye was bright, his -step brisk, and his bearing assured. He was plainly but neatly -dressed, and his age, I should judge, would be nearer forty than -thirty. - -"'Mr. Hatherley?' said he, with something of a German accent. -'You have been recommended to me, Mr. Hatherley, as being a man -who is not only proficient in his profession but is also discreet -and capable of preserving a secret.' - -"I bowed, feeling as flattered as any young man would at such an -address. 'May I ask who it was who gave me so good a character?' - -"'Well, perhaps it is better that I should not tell you that just -at this moment. I have it from the same source that you are both -an orphan and a bachelor and are residing alone in London.' - -"'That is quite correct,' I answered; 'but you will excuse me if -I say that I cannot see how all this bears upon my professional -qualifications. I understand that it was on a professional matter -that you wished to speak to me?' - -"'Undoubtedly so. But you will find that all I say is really to -the point. I have a professional commission for you, but absolute -secrecy is quite essential--absolute secrecy, you understand, and -of course we may expect that more from a man who is alone than -from one who lives in the bosom of his family.' - -"'If I promise to keep a secret,' said I, 'you may absolutely -depend upon my doing so.' - -"He looked very hard at me as I spoke, and it seemed to me that I -had never seen so suspicious and questioning an eye. - -"'Do you promise, then?' said he at last. - -"'Yes, I promise.' - -"'Absolute and complete silence before, during, and after? No -reference to the matter at all, either in word or writing?' - -"'I have already given you my word.' - -"'Very good.' He suddenly sprang up, and darting like lightning -across the room he flung open the door. The passage outside was -empty. - -"'That's all right,' said he, coming back. 'I know that clerks are -sometimes curious as to their master's affairs. Now we can talk -in safety.' He drew up his chair very close to mine and began to -stare at me again with the same questioning and thoughtful look. - -"A feeling of repulsion, and of something akin to fear had begun -to rise within me at the strange antics of this fleshless man. -Even my dread of losing a client could not restrain me from -showing my impatience. - -"'I beg that you will state your business, sir,' said I; 'my time -is of value.' Heaven forgive me for that last sentence, but the -words came to my lips. - -"'How would fifty guineas for a night's work suit you?' he asked. - -"'Most admirably.' - -"'I say a night's work, but an hour's would be nearer the mark. I -simply want your opinion about a hydraulic stamping machine which -has got out of gear. If you show us what is wrong we shall soon -set it right ourselves. What do you think of such a commission as -that?' - -"'The work appears to be light and the pay munificent.' - -"'Precisely so. We shall want you to come to-night by the last -train.' - -"'Where to?' - -"'To Eyford, in Berkshire. It is a little place near the borders -of Oxfordshire, and within seven miles of Reading. There is a -train from Paddington which would bring you there at about -11:15.' - -"'Very good.' - -"'I shall come down in a carriage to meet you.' - -"'There is a drive, then?' - -"'Yes, our little place is quite out in the country. It is a good -seven miles from Eyford Station.' - -"'Then we can hardly get there before midnight. I suppose there -would be no chance of a train back. I should be compelled to stop -the night.' - -"'Yes, we could easily give you a shake-down.' - -"'That is very awkward. Could I not come at some more convenient -hour?' - -"'We have judged it best that you should come late. It is to -recompense you for any inconvenience that we are paying to you, a -young and unknown man, a fee which would buy an opinion from the -very heads of your profession. Still, of course, if you would -like to draw out of the business, there is plenty of time to do -so.' - -"I thought of the fifty guineas, and of how very useful they -would be to me. 'Not at all,' said I, 'I shall be very happy to -accommodate myself to your wishes. I should like, however, to -understand a little more clearly what it is that you wish me to -do.' - -"'Quite so. It is very natural that the pledge of secrecy which -we have exacted from you should have aroused your curiosity. I -have no wish to commit you to anything without your having it all -laid before you. I suppose that we are absolutely safe from -eavesdroppers?' - -"'Entirely.' - -"'Then the matter stands thus. You are probably aware that -fuller's-earth is a valuable product, and that it is only found -in one or two places in England?' - -"'I have heard so.' - -"'Some little time ago I bought a small place--a very small -place--within ten miles of Reading. I was fortunate enough to -discover that there was a deposit of fuller's-earth in one of my -fields. On examining it, however, I found that this deposit was a -comparatively small one, and that it formed a link between two -very much larger ones upon the right and left--both of them, -however, in the grounds of my neighbours. These good people were -absolutely ignorant that their land contained that which was -quite as valuable as a gold-mine. Naturally, it was to my -interest to buy their land before they discovered its true value, -but unfortunately I had no capital by which I could do this. I -took a few of my friends into the secret, however, and they -suggested that we should quietly and secretly work our own little -deposit and that in this way we should earn the money which would -enable us to buy the neighbouring fields. This we have now been -doing for some time, and in order to help us in our operations we -erected a hydraulic press. This press, as I have already -explained, has got out of order, and we wish your advice upon the -subject. We guard our secret very jealously, however, and if it -once became known that we had hydraulic engineers coming to our -little house, it would soon rouse inquiry, and then, if the facts -came out, it would be good-bye to any chance of getting these -fields and carrying out our plans. That is why I have made you -promise me that you will not tell a human being that you are -going to Eyford to-night. I hope that I make it all plain?' - -"'I quite follow you,' said I. 'The only point which I could not -quite understand was what use you could make of a hydraulic press -in excavating fuller's-earth, which, as I understand, is dug out -like gravel from a pit.' - -"'Ah!' said he carelessly, 'we have our own process. We compress -the earth into bricks, so as to remove them without revealing -what they are. But that is a mere detail. I have taken you fully -into my confidence now, Mr. Hatherley, and I have shown you how I -trust you.' He rose as he spoke. 'I shall expect you, then, at -Eyford at 11:15.' - -"'I shall certainly be there.' - -"'And not a word to a soul.' He looked at me with a last long, -questioning gaze, and then, pressing my hand in a cold, dank -grasp, he hurried from the room. - -"Well, when I came to think it all over in cool blood I was very -much astonished, as you may both think, at this sudden commission -which had been intrusted to me. On the one hand, of course, I was -glad, for the fee was at least tenfold what I should have asked -had I set a price upon my own services, and it was possible that -this order might lead to other ones. On the other hand, the face -and manner of my patron had made an unpleasant impression upon -me, and I could not think that his explanation of the -fuller's-earth was sufficient to explain the necessity for my -coming at midnight, and his extreme anxiety lest I should tell -anyone of my errand. However, I threw all fears to the winds, ate -a hearty supper, drove to Paddington, and started off, having -obeyed to the letter the injunction as to holding my tongue. - -"At Reading I had to change not only my carriage but my station. -However, I was in time for the last train to Eyford, and I -reached the little dim-lit station after eleven o'clock. I was the -only passenger who got out there, and there was no one upon the -platform save a single sleepy porter with a lantern. As I passed -out through the wicket gate, however, I found my acquaintance of -the morning waiting in the shadow upon the other side. Without a -word he grasped my arm and hurried me into a carriage, the door -of which was standing open. He drew up the windows on either -side, tapped on the wood-work, and away we went as fast as the -horse could go." - -"One horse?" interjected Holmes. - -"Yes, only one." - -"Did you observe the colour?" - -"Yes, I saw it by the side-lights when I was stepping into the -carriage. It was a chestnut." - -"Tired-looking or fresh?" - -"Oh, fresh and glossy." - -"Thank you. I am sorry to have interrupted you. Pray continue -your most interesting statement." - -"Away we went then, and we drove for at least an hour. Colonel -Lysander Stark had said that it was only seven miles, but I -should think, from the rate that we seemed to go, and from the -time that we took, that it must have been nearer twelve. He sat -at my side in silence all the time, and I was aware, more than -once when I glanced in his direction, that he was looking at me -with great intensity. The country roads seem to be not very good -in that part of the world, for we lurched and jolted terribly. I -tried to look out of the windows to see something of where we -were, but they were made of frosted glass, and I could make out -nothing save the occasional bright blur of a passing light. Now -and then I hazarded some remark to break the monotony of the -journey, but the colonel answered only in monosyllables, and the -conversation soon flagged. At last, however, the bumping of the -road was exchanged for the crisp smoothness of a gravel-drive, -and the carriage came to a stand. Colonel Lysander Stark sprang -out, and, as I followed after him, pulled me swiftly into a porch -which gaped in front of us. We stepped, as it were, right out of -the carriage and into the hall, so that I failed to catch the -most fleeting glance of the front of the house. The instant that -I had crossed the threshold the door slammed heavily behind us, -and I heard faintly the rattle of the wheels as the carriage -drove away. - -"It was pitch dark inside the house, and the colonel fumbled -about looking for matches and muttering under his breath. -Suddenly a door opened at the other end of the passage, and a -long, golden bar of light shot out in our direction. It grew -broader, and a woman appeared with a lamp in her hand, which she -held above her head, pushing her face forward and peering at us. -I could see that she was pretty, and from the gloss with which -the light shone upon her dark dress I knew that it was a rich -material. She spoke a few words in a foreign tongue in a tone as -though asking a question, and when my companion answered in a -gruff monosyllable she gave such a start that the lamp nearly -fell from her hand. Colonel Stark went up to her, whispered -something in her ear, and then, pushing her back into the room -from whence she had come, he walked towards me again with the -lamp in his hand. - -"'Perhaps you will have the kindness to wait in this room for a -few minutes,' said he, throwing open another door. It was a -quiet, little, plainly furnished room, with a round table in the -centre, on which several German books were scattered. Colonel -Stark laid down the lamp on the top of a harmonium beside the -door. 'I shall not keep you waiting an instant,' said he, and -vanished into the darkness. - -"I glanced at the books upon the table, and in spite of my -ignorance of German I could see that two of them were treatises -on science, the others being volumes of poetry. Then I walked -across to the window, hoping that I might catch some glimpse of -the country-side, but an oak shutter, heavily barred, was folded -across it. It was a wonderfully silent house. There was an old -clock ticking loudly somewhere in the passage, but otherwise -everything was deadly still. A vague feeling of uneasiness began -to steal over me. Who were these German people, and what were -they doing living in this strange, out-of-the-way place? And -where was the place? I was ten miles or so from Eyford, that was -all I knew, but whether north, south, east, or west I had no -idea. For that matter, Reading, and possibly other large towns, -were within that radius, so the place might not be so secluded, -after all. Yet it was quite certain, from the absolute stillness, -that we were in the country. I paced up and down the room, -humming a tune under my breath to keep up my spirits and feeling -that I was thoroughly earning my fifty-guinea fee. - -"Suddenly, without any preliminary sound in the midst of the -utter stillness, the door of my room swung slowly open. The woman -was standing in the aperture, the darkness of the hall behind -her, the yellow light from my lamp beating upon her eager and -beautiful face. I could see at a glance that she was sick with -fear, and the sight sent a chill to my own heart. She held up one -shaking finger to warn me to be silent, and she shot a few -whispered words of broken English at me, her eyes glancing back, -like those of a frightened horse, into the gloom behind her. - -"'I would go,' said she, trying hard, as it seemed to me, to -speak calmly; 'I would go. I should not stay here. There is no -good for you to do.' - -"'But, madam,' said I, 'I have not yet done what I came for. I -cannot possibly leave until I have seen the machine.' - -"'It is not worth your while to wait,' she went on. 'You can pass -through the door; no one hinders.' And then, seeing that I smiled -and shook my head, she suddenly threw aside her constraint and -made a step forward, with her hands wrung together. 'For the love -of Heaven!' she whispered, 'get away from here before it is too -late!' - -"But I am somewhat headstrong by nature, and the more ready to -engage in an affair when there is some obstacle in the way. I -thought of my fifty-guinea fee, of my wearisome journey, and of -the unpleasant night which seemed to be before me. Was it all to -go for nothing? Why should I slink away without having carried -out my commission, and without the payment which was my due? This -woman might, for all I knew, be a monomaniac. With a stout -bearing, therefore, though her manner had shaken me more than I -cared to confess, I still shook my head and declared my intention -of remaining where I was. She was about to renew her entreaties -when a door slammed overhead, and the sound of several footsteps -was heard upon the stairs. She listened for an instant, threw up -her hands with a despairing gesture, and vanished as suddenly and -as noiselessly as she had come. - -"The newcomers were Colonel Lysander Stark and a short thick man -with a chinchilla beard growing out of the creases of his double -chin, who was introduced to me as Mr. Ferguson. - -"'This is my secretary and manager,' said the colonel. 'By the -way, I was under the impression that I left this door shut just -now. I fear that you have felt the draught.' - -"'On the contrary,' said I, 'I opened the door myself because I -felt the room to be a little close.' - -"He shot one of his suspicious looks at me. 'Perhaps we had -better proceed to business, then,' said he. 'Mr. Ferguson and I -will take you up to see the machine.' - -"'I had better put my hat on, I suppose.' - -"'Oh, no, it is in the house.' - -"'What, you dig fuller's-earth in the house?' - -"'No, no. This is only where we compress it. But never mind that. -All we wish you to do is to examine the machine and to let us -know what is wrong with it.' - -"We went upstairs together, the colonel first with the lamp, the -fat manager and I behind him. It was a labyrinth of an old house, -with corridors, passages, narrow winding staircases, and little -low doors, the thresholds of which were hollowed out by the -generations who had crossed them. There were no carpets and no -signs of any furniture above the ground floor, while the plaster -was peeling off the walls, and the damp was breaking through in -green, unhealthy blotches. I tried to put on as unconcerned an -air as possible, but I had not forgotten the warnings of the -lady, even though I disregarded them, and I kept a keen eye upon -my two companions. Ferguson appeared to be a morose and silent -man, but I could see from the little that he said that he was at -least a fellow-countryman. - -"Colonel Lysander Stark stopped at last before a low door, which -he unlocked. Within was a small, square room, in which the three -of us could hardly get at one time. Ferguson remained outside, -and the colonel ushered me in. - -"'We are now,' said he, 'actually within the hydraulic press, and -it would be a particularly unpleasant thing for us if anyone were -to turn it on. The ceiling of this small chamber is really the -end of the descending piston, and it comes down with the force of -many tons upon this metal floor. There are small lateral columns -of water outside which receive the force, and which transmit and -multiply it in the manner which is familiar to you. The machine -goes readily enough, but there is some stiffness in the working -of it, and it has lost a little of its force. Perhaps you will -have the goodness to look it over and to show us how we can set -it right.' - -"I took the lamp from him, and I examined the machine very -thoroughly. It was indeed a gigantic one, and capable of -exercising enormous pressure. When I passed outside, however, and -pressed down the levers which controlled it, I knew at once by -the whishing sound that there was a slight leakage, which allowed -a regurgitation of water through one of the side cylinders. An -examination showed that one of the india-rubber bands which was -round the head of a driving-rod had shrunk so as not quite to -fill the socket along which it worked. This was clearly the cause -of the loss of power, and I pointed it out to my companions, who -followed my remarks very carefully and asked several practical -questions as to how they should proceed to set it right. When I -had made it clear to them, I returned to the main chamber of the -machine and took a good look at it to satisfy my own curiosity. -It was obvious at a glance that the story of the fuller's-earth -was the merest fabrication, for it would be absurd to suppose -that so powerful an engine could be designed for so inadequate a -purpose. The walls were of wood, but the floor consisted of a -large iron trough, and when I came to examine it I could see a -crust of metallic deposit all over it. I had stooped and was -scraping at this to see exactly what it was when I heard a -muttered exclamation in German and saw the cadaverous face of the -colonel looking down at me. - -"'What are you doing there?' he asked. - -"I felt angry at having been tricked by so elaborate a story as -that which he had told me. 'I was admiring your fuller's-earth,' -said I; 'I think that I should be better able to advise you as to -your machine if I knew what the exact purpose was for which it -was used.' - -"The instant that I uttered the words I regretted the rashness of -my speech. His face set hard, and a baleful light sprang up in -his grey eyes. - -"'Very well,' said he, 'you shall know all about the machine.' He -took a step backward, slammed the little door, and turned the key -in the lock. I rushed towards it and pulled at the handle, but it -was quite secure, and did not give in the least to my kicks and -shoves. 'Hullo!' I yelled. 'Hullo! Colonel! Let me out!' - -"And then suddenly in the silence I heard a sound which sent my -heart into my mouth. It was the clank of the levers and the swish -of the leaking cylinder. He had set the engine at work. The lamp -still stood upon the floor where I had placed it when examining -the trough. By its light I saw that the black ceiling was coming -down upon me, slowly, jerkily, but, as none knew better than -myself, with a force which must within a minute grind me to a -shapeless pulp. I threw myself, screaming, against the door, and -dragged with my nails at the lock. I implored the colonel to let -me out, but the remorseless clanking of the levers drowned my -cries. The ceiling was only a foot or two above my head, and with -my hand upraised I could feel its hard, rough surface. Then it -flashed through my mind that the pain of my death would depend -very much upon the position in which I met it. If I lay on my -face the weight would come upon my spine, and I shuddered to -think of that dreadful snap. Easier the other way, perhaps; and -yet, had I the nerve to lie and look up at that deadly black -shadow wavering down upon me? Already I was unable to stand -erect, when my eye caught something which brought a gush of hope -back to my heart. - -"I have said that though the floor and ceiling were of iron, the -walls were of wood. As I gave a last hurried glance around, I saw -a thin line of yellow light between two of the boards, which -broadened and broadened as a small panel was pushed backward. For -an instant I could hardly believe that here was indeed a door -which led away from death. The next instant I threw myself -through, and lay half-fainting upon the other side. The panel had -closed again behind me, but the crash of the lamp, and a few -moments afterwards the clang of the two slabs of metal, told me -how narrow had been my escape. - -"I was recalled to myself by a frantic plucking at my wrist, and -I found myself lying upon the stone floor of a narrow corridor, -while a woman bent over me and tugged at me with her left hand, -while she held a candle in her right. It was the same good friend -whose warning I had so foolishly rejected. - -"'Come! come!' she cried breathlessly. 'They will be here in a -moment. They will see that you are not there. Oh, do not waste -the so-precious time, but come!' - -"This time, at least, I did not scorn her advice. I staggered to -my feet and ran with her along the corridor and down a winding -stair. The latter led to another broad passage, and just as we -reached it we heard the sound of running feet and the shouting of -two voices, one answering the other from the floor on which we -were and from the one beneath. My guide stopped and looked about -her like one who is at her wit's end. Then she threw open a door -which led into a bedroom, through the window of which the moon -was shining brightly. - -"'It is your only chance,' said she. 'It is high, but it may be -that you can jump it.' - -"As she spoke a light sprang into view at the further end of the -passage, and I saw the lean figure of Colonel Lysander Stark -rushing forward with a lantern in one hand and a weapon like a -butcher's cleaver in the other. I rushed across the bedroom, -flung open the window, and looked out. How quiet and sweet and -wholesome the garden looked in the moonlight, and it could not be -more than thirty feet down. I clambered out upon the sill, but I -hesitated to jump until I should have heard what passed between -my saviour and the ruffian who pursued me. If she were ill-used, -then at any risks I was determined to go back to her assistance. -The thought had hardly flashed through my mind before he was at -the door, pushing his way past her; but she threw her arms round -him and tried to hold him back. - -"'Fritz! Fritz!' she cried in English, 'remember your promise -after the last time. You said it should not be again. He will be -silent! Oh, he will be silent!' - -"'You are mad, Elise!' he shouted, struggling to break away from -her. 'You will be the ruin of us. He has seen too much. Let me -pass, I say!' He dashed her to one side, and, rushing to the -window, cut at me with his heavy weapon. I had let myself go, and -was hanging by the hands to the sill, when his blow fell. I was -conscious of a dull pain, my grip loosened, and I fell into the -garden below. - -"I was shaken but not hurt by the fall; so I picked myself up and -rushed off among the bushes as hard as I could run, for I -understood that I was far from being out of danger yet. Suddenly, -however, as I ran, a deadly dizziness and sickness came over me. -I glanced down at my hand, which was throbbing painfully, and -then, for the first time, saw that my thumb had been cut off and -that the blood was pouring from my wound. I endeavoured to tie my -handkerchief round it, but there came a sudden buzzing in my -ears, and next moment I fell in a dead faint among the -rose-bushes. - -"How long I remained unconscious I cannot tell. It must have been -a very long time, for the moon had sunk, and a bright morning was -breaking when I came to myself. My clothes were all sodden with -dew, and my coat-sleeve was drenched with blood from my wounded -thumb. The smarting of it recalled in an instant all the -particulars of my night's adventure, and I sprang to my feet with -the feeling that I might hardly yet be safe from my pursuers. But -to my astonishment, when I came to look round me, neither house -nor garden were to be seen. I had been lying in an angle of the -hedge close by the highroad, and just a little lower down was a -long building, which proved, upon my approaching it, to be the -very station at which I had arrived upon the previous night. Were -it not for the ugly wound upon my hand, all that had passed -during those dreadful hours might have been an evil dream. - -"Half dazed, I went into the station and asked about the morning -train. There would be one to Reading in less than an hour. The -same porter was on duty, I found, as had been there when I -arrived. I inquired of him whether he had ever heard of Colonel -Lysander Stark. The name was strange to him. Had he observed a -carriage the night before waiting for me? No, he had not. Was -there a police-station anywhere near? There was one about three -miles off. - -"It was too far for me to go, weak and ill as I was. I determined -to wait until I got back to town before telling my story to the -police. It was a little past six when I arrived, so I went first -to have my wound dressed, and then the doctor was kind enough to -bring me along here. I put the case into your hands and shall do -exactly what you advise." - -We both sat in silence for some little time after listening to -this extraordinary narrative. Then Sherlock Holmes pulled down -from the shelf one of the ponderous commonplace books in which he -placed his cuttings. - -"Here is an advertisement which will interest you," said he. "It -appeared in all the papers about a year ago. Listen to this: -'Lost, on the 9th inst., Mr. Jeremiah Hayling, aged -twenty-six, a hydraulic engineer. Left his lodgings at ten -o'clock at night, and has not been heard of since. Was -dressed in,' etc., etc. Ha! That represents the last time that -the colonel needed to have his machine overhauled, I fancy." - -"Good heavens!" cried my patient. "Then that explains what the -girl said." - -"Undoubtedly. It is quite clear that the colonel was a cool and -desperate man, who was absolutely determined that nothing should -stand in the way of his little game, like those out-and-out -pirates who will leave no survivor from a captured ship. Well, -every moment now is precious, so if you feel equal to it we shall -go down to Scotland Yard at once as a preliminary to starting for -Eyford." - -Some three hours or so afterwards we were all in the train -together, bound from Reading to the little Berkshire village. -There were Sherlock Holmes, the hydraulic engineer, Inspector -Bradstreet, of Scotland Yard, a plain-clothes man, and myself. -Bradstreet had spread an ordnance map of the county out upon the -seat and was busy with his compasses drawing a circle with Eyford -for its centre. - -"There you are," said he. "That circle is drawn at a radius of -ten miles from the village. The place we want must be somewhere -near that line. You said ten miles, I think, sir." - -"It was an hour's good drive." - -"And you think that they brought you back all that way when you -were unconscious?" - -"They must have done so. I have a confused memory, too, of having -been lifted and conveyed somewhere." - -"What I cannot understand," said I, "is why they should have -spared you when they found you lying fainting in the garden. -Perhaps the villain was softened by the woman's entreaties." - -"I hardly think that likely. I never saw a more inexorable face -in my life." - -"Oh, we shall soon clear up all that," said Bradstreet. "Well, I -have drawn my circle, and I only wish I knew at what point upon -it the folk that we are in search of are to be found." - -"I think I could lay my finger on it," said Holmes quietly. - -"Really, now!" cried the inspector, "you have formed your -opinion! Come, now, we shall see who agrees with you. I say it is -south, for the country is more deserted there." - -"And I say east," said my patient. - -"I am for west," remarked the plain-clothes man. "There are -several quiet little villages up there." - -"And I am for north," said I, "because there are no hills there, -and our friend says that he did not notice the carriage go up -any." - -"Come," cried the inspector, laughing; "it's a very pretty -diversity of opinion. We have boxed the compass among us. Who do -you give your casting vote to?" - -"You are all wrong." - -"But we can't all be." - -"Oh, yes, you can. This is my point." He placed his finger in the -centre of the circle. "This is where we shall find them." - -"But the twelve-mile drive?" gasped Hatherley. - -"Six out and six back. Nothing simpler. You say yourself that the -horse was fresh and glossy when you got in. How could it be that -if it had gone twelve miles over heavy roads?" - -"Indeed, it is a likely ruse enough," observed Bradstreet -thoughtfully. "Of course there can be no doubt as to the nature -of this gang." - -"None at all," said Holmes. "They are coiners on a large scale, -and have used the machine to form the amalgam which has taken the -place of silver." - -"We have known for some time that a clever gang was at work," -said the inspector. "They have been turning out half-crowns by -the thousand. We even traced them as far as Reading, but could -get no farther, for they had covered their traces in a way that -showed that they were very old hands. But now, thanks to this -lucky chance, I think that we have got them right enough." - -But the inspector was mistaken, for those criminals were not -destined to fall into the hands of justice. As we rolled into -Eyford Station we saw a gigantic column of smoke which streamed -up from behind a small clump of trees in the neighbourhood and -hung like an immense ostrich feather over the landscape. - -"A house on fire?" asked Bradstreet as the train steamed off -again on its way. - -"Yes, sir!" said the station-master. - -"When did it break out?" - -"I hear that it was during the night, sir, but it has got worse, -and the whole place is in a blaze." - -"Whose house is it?" - -"Dr. Becher's." - -"Tell me," broke in the engineer, "is Dr. Becher a German, very -thin, with a long, sharp nose?" - -The station-master laughed heartily. "No, sir, Dr. Becher is an -Englishman, and there isn't a man in the parish who has a -better-lined waistcoat. But he has a gentleman staying with him, -a patient, as I understand, who is a foreigner, and he looks as -if a little good Berkshire beef would do him no harm." - -The station-master had not finished his speech before we were all -hastening in the direction of the fire. The road topped a low -hill, and there was a great widespread whitewashed building in -front of us, spouting fire at every chink and window, while in -the garden in front three fire-engines were vainly striving to -keep the flames under. - -"That's it!" cried Hatherley, in intense excitement. "There is -the gravel-drive, and there are the rose-bushes where I lay. That -second window is the one that I jumped from." - -"Well, at least," said Holmes, "you have had your revenge upon -them. There can be no question that it was your oil-lamp which, -when it was crushed in the press, set fire to the wooden walls, -though no doubt they were too excited in the chase after you to -observe it at the time. Now keep your eyes open in this crowd for -your friends of last night, though I very much fear that they are -a good hundred miles off by now." - -And Holmes' fears came to be realised, for from that day to this -no word has ever been heard either of the beautiful woman, the -sinister German, or the morose Englishman. Early that morning a -peasant had met a cart containing several people and some very -bulky boxes driving rapidly in the direction of Reading, but -there all traces of the fugitives disappeared, and even Holmes' -ingenuity failed ever to discover the least clue as to their -whereabouts. - -The firemen had been much perturbed at the strange arrangements -which they had found within, and still more so by discovering a -newly severed human thumb upon a window-sill of the second floor. -About sunset, however, their efforts were at last successful, and -they subdued the flames, but not before the roof had fallen in, -and the whole place been reduced to such absolute ruin that, save -some twisted cylinders and iron piping, not a trace remained of -the machinery which had cost our unfortunate acquaintance so -dearly. Large masses of nickel and of tin were discovered stored -in an out-house, but no coins were to be found, which may have -explained the presence of those bulky boxes which have been -already referred to. - -How our hydraulic engineer had been conveyed from the garden to -the spot where he recovered his senses might have remained -forever a mystery were it not for the soft mould, which told us a -very plain tale. He had evidently been carried down by two -persons, one of whom had remarkably small feet and the other -unusually large ones. On the whole, it was most probable that the -silent Englishman, being less bold or less murderous than his -companion, had assisted the woman to bear the unconscious man out -of the way of danger. - -"Well," said our engineer ruefully as we took our seats to return -once more to London, "it has been a pretty business for me! I -have lost my thumb and I have lost a fifty-guinea fee, and what -have I gained?" - -"Experience," said Holmes, laughing. "Indirectly it may be of -value, you know; you have only to put it into words to gain the -reputation of being excellent company for the remainder of your -existence." - - - -X. THE ADVENTURE OF THE NOBLE BACHELOR - -The Lord St. Simon marriage, and its curious termination, have -long ceased to be a subject of interest in those exalted circles -in which the unfortunate bridegroom moves. Fresh scandals have -eclipsed it, and their more piquant details have drawn the -gossips away from this four-year-old drama. As I have reason to -believe, however, that the full facts have never been revealed to -the general public, and as my friend Sherlock Holmes had a -considerable share in clearing the matter up, I feel that no -memoir of him would be complete without some little sketch of -this remarkable episode. - -It was a few weeks before my own marriage, during the days when I -was still sharing rooms with Holmes in Baker Street, that he came -home from an afternoon stroll to find a letter on the table -waiting for him. I had remained indoors all day, for the weather -had taken a sudden turn to rain, with high autumnal winds, and -the Jezail bullet which I had brought back in one of my limbs as -a relic of my Afghan campaign throbbed with dull persistence. -With my body in one easy-chair and my legs upon another, I had -surrounded myself with a cloud of newspapers until at last, -saturated with the news of the day, I tossed them all aside and -lay listless, watching the huge crest and monogram upon the -envelope upon the table and wondering lazily who my friend's -noble correspondent could be. - -"Here is a very fashionable epistle," I remarked as he entered. -"Your morning letters, if I remember right, were from a -fish-monger and a tide-waiter." - -"Yes, my correspondence has certainly the charm of variety," he -answered, smiling, "and the humbler are usually the more -interesting. This looks like one of those unwelcome social -summonses which call upon a man either to be bored or to lie." - -He broke the seal and glanced over the contents. - -"Oh, come, it may prove to be something of interest, after all." - -"Not social, then?" - -"No, distinctly professional." - -"And from a noble client?" - -"One of the highest in England." - -"My dear fellow, I congratulate you." - -"I assure you, Watson, without affectation, that the status of my -client is a matter of less moment to me than the interest of his -case. It is just possible, however, that that also may not be -wanting in this new investigation. You have been reading the -papers diligently of late, have you not?" - -"It looks like it," said I ruefully, pointing to a huge bundle in -the corner. "I have had nothing else to do." - -"It is fortunate, for you will perhaps be able to post me up. I -read nothing except the criminal news and the agony column. The -latter is always instructive. But if you have followed recent -events so closely you must have read about Lord St. Simon and his -wedding?" - -"Oh, yes, with the deepest interest." - -"That is well. The letter which I hold in my hand is from Lord -St. Simon. I will read it to you, and in return you must turn -over these papers and let me have whatever bears upon the matter. -This is what he says: - -"'MY DEAR MR. SHERLOCK HOLMES:--Lord Backwater tells me that I -may place implicit reliance upon your judgment and discretion. I -have determined, therefore, to call upon you and to consult you -in reference to the very painful event which has occurred in -connection with my wedding. Mr. Lestrade, of Scotland Yard, is -acting already in the matter, but he assures me that he sees no -objection to your co-operation, and that he even thinks that -it might be of some assistance. I will call at four o'clock in -the afternoon, and, should you have any other engagement at that -time, I hope that you will postpone it, as this matter is of -paramount importance. Yours faithfully, ST. SIMON.' - -"It is dated from Grosvenor Mansions, written with a quill pen, -and the noble lord has had the misfortune to get a smear of ink -upon the outer side of his right little finger," remarked Holmes -as he folded up the epistle. - -"He says four o'clock. It is three now. He will be here in an -hour." - -"Then I have just time, with your assistance, to get clear upon -the subject. Turn over those papers and arrange the extracts in -their order of time, while I take a glance as to who our client -is." He picked a red-covered volume from a line of books of -reference beside the mantelpiece. "Here he is," said he, sitting -down and flattening it out upon his knee. "'Lord Robert Walsingham -de Vere St. Simon, second son of the Duke of Balmoral.' Hum! 'Arms: -Azure, three caltrops in chief over a fess sable. Born in 1846.' -He's forty-one years of age, which is mature for marriage. Was -Under-Secretary for the colonies in a late administration. The -Duke, his father, was at one time Secretary for Foreign Affairs. -They inherit Plantagenet blood by direct descent, and Tudor on -the distaff side. Ha! Well, there is nothing very instructive in -all this. I think that I must turn to you Watson, for something -more solid." - -"I have very little difficulty in finding what I want," said I, -"for the facts are quite recent, and the matter struck me as -remarkable. I feared to refer them to you, however, as I knew -that you had an inquiry on hand and that you disliked the -intrusion of other matters." - -"Oh, you mean the little problem of the Grosvenor Square -furniture van. That is quite cleared up now--though, indeed, it -was obvious from the first. Pray give me the results of your -newspaper selections." - -"Here is the first notice which I can find. It is in the personal -column of the Morning Post, and dates, as you see, some weeks -back: 'A marriage has been arranged,' it says, 'and will, if -rumour is correct, very shortly take place, between Lord Robert -St. Simon, second son of the Duke of Balmoral, and Miss Hatty -Doran, the only daughter of Aloysius Doran. Esq., of San -Francisco, Cal., U.S.A.' That is all." - -"Terse and to the point," remarked Holmes, stretching his long, -thin legs towards the fire. - -"There was a paragraph amplifying this in one of the society -papers of the same week. Ah, here it is: 'There will soon be a -call for protection in the marriage market, for the present -free-trade principle appears to tell heavily against our home -product. One by one the management of the noble houses of Great -Britain is passing into the hands of our fair cousins from across -the Atlantic. An important addition has been made during the last -week to the list of the prizes which have been borne away by -these charming invaders. Lord St. Simon, who has shown himself -for over twenty years proof against the little god's arrows, has -now definitely announced his approaching marriage with Miss Hatty -Doran, the fascinating daughter of a California millionaire. Miss -Doran, whose graceful figure and striking face attracted much -attention at the Westbury House festivities, is an only child, -and it is currently reported that her dowry will run to -considerably over the six figures, with expectancies for the -future. As it is an open secret that the Duke of Balmoral has -been compelled to sell his pictures within the last few years, -and as Lord St. Simon has no property of his own save the small -estate of Birchmoor, it is obvious that the Californian heiress -is not the only gainer by an alliance which will enable her to -make the easy and common transition from a Republican lady to a -British peeress.'" - -"Anything else?" asked Holmes, yawning. - -"Oh, yes; plenty. Then there is another note in the Morning Post -to say that the marriage would be an absolutely quiet one, that it -would be at St. George's, Hanover Square, that only half a dozen -intimate friends would be invited, and that the party would -return to the furnished house at Lancaster Gate which has been -taken by Mr. Aloysius Doran. Two days later--that is, on -Wednesday last--there is a curt announcement that the wedding had -taken place, and that the honeymoon would be passed at Lord -Backwater's place, near Petersfield. Those are all the notices -which appeared before the disappearance of the bride." - -"Before the what?" asked Holmes with a start. - -"The vanishing of the lady." - -"When did she vanish, then?" - -"At the wedding breakfast." - -"Indeed. This is more interesting than it promised to be; quite -dramatic, in fact." - -"Yes; it struck me as being a little out of the common." - -"They often vanish before the ceremony, and occasionally during -the honeymoon; but I cannot call to mind anything quite so prompt -as this. Pray let me have the details." - -"I warn you that they are very incomplete." - -"Perhaps we may make them less so." - -"Such as they are, they are set forth in a single article of a -morning paper of yesterday, which I will read to you. It is -headed, 'Singular Occurrence at a Fashionable Wedding': - -"'The family of Lord Robert St. Simon has been thrown into the -greatest consternation by the strange and painful episodes which -have taken place in connection with his wedding. The ceremony, as -shortly announced in the papers of yesterday, occurred on the -previous morning; but it is only now that it has been possible to -confirm the strange rumours which have been so persistently -floating about. In spite of the attempts of the friends to hush -the matter up, so much public attention has now been drawn to it -that no good purpose can be served by affecting to disregard what -is a common subject for conversation. - -"'The ceremony, which was performed at St. George's, Hanover -Square, was a very quiet one, no one being present save the -father of the bride, Mr. Aloysius Doran, the Duchess of Balmoral, -Lord Backwater, Lord Eustace and Lady Clara St. Simon (the -younger brother and sister of the bridegroom), and Lady Alicia -Whittington. The whole party proceeded afterwards to the house of -Mr. Aloysius Doran, at Lancaster Gate, where breakfast had been -prepared. It appears that some little trouble was caused by a -woman, whose name has not been ascertained, who endeavoured to -force her way into the house after the bridal party, alleging -that she had some claim upon Lord St. Simon. It was only after a -painful and prolonged scene that she was ejected by the butler -and the footman. The bride, who had fortunately entered the house -before this unpleasant interruption, had sat down to breakfast -with the rest, when she complained of a sudden indisposition and -retired to her room. Her prolonged absence having caused some -comment, her father followed her, but learned from her maid that -she had only come up to her chamber for an instant, caught up an -ulster and bonnet, and hurried down to the passage. One of the -footmen declared that he had seen a lady leave the house thus -apparelled, but had refused to credit that it was his mistress, -believing her to be with the company. On ascertaining that his -daughter had disappeared, Mr. Aloysius Doran, in conjunction with -the bridegroom, instantly put themselves in communication with -the police, and very energetic inquiries are being made, which -will probably result in a speedy clearing up of this very -singular business. Up to a late hour last night, however, nothing -had transpired as to the whereabouts of the missing lady. There -are rumours of foul play in the matter, and it is said that the -police have caused the arrest of the woman who had caused the -original disturbance, in the belief that, from jealousy or some -other motive, she may have been concerned in the strange -disappearance of the bride.'" - -"And is that all?" - -"Only one little item in another of the morning papers, but it is -a suggestive one." - -"And it is--" - -"That Miss Flora Millar, the lady who had caused the disturbance, -has actually been arrested. It appears that she was formerly a -danseuse at the Allegro, and that she has known the bridegroom -for some years. There are no further particulars, and the whole -case is in your hands now--so far as it has been set forth in the -public press." - -"And an exceedingly interesting case it appears to be. I would -not have missed it for worlds. But there is a ring at the bell, -Watson, and as the clock makes it a few minutes after four, I -have no doubt that this will prove to be our noble client. Do not -dream of going, Watson, for I very much prefer having a witness, -if only as a check to my own memory." - -"Lord Robert St. Simon," announced our page-boy, throwing open -the door. A gentleman entered, with a pleasant, cultured face, -high-nosed and pale, with something perhaps of petulance about -the mouth, and with the steady, well-opened eye of a man whose -pleasant lot it had ever been to command and to be obeyed. His -manner was brisk, and yet his general appearance gave an undue -impression of age, for he had a slight forward stoop and a little -bend of the knees as he walked. His hair, too, as he swept off -his very curly-brimmed hat, was grizzled round the edges and thin -upon the top. As to his dress, it was careful to the verge of -foppishness, with high collar, black frock-coat, white waistcoat, -yellow gloves, patent-leather shoes, and light-coloured gaiters. -He advanced slowly into the room, turning his head from left to -right, and swinging in his right hand the cord which held his -golden eyeglasses. - -"Good-day, Lord St. Simon," said Holmes, rising and bowing. "Pray -take the basket-chair. This is my friend and colleague, Dr. -Watson. Draw up a little to the fire, and we will talk this -matter over." - -"A most painful matter to me, as you can most readily imagine, -Mr. Holmes. I have been cut to the quick. I understand that you -have already managed several delicate cases of this sort, sir, -though I presume that they were hardly from the same class of -society." - -"No, I am descending." - -"I beg pardon." - -"My last client of the sort was a king." - -"Oh, really! I had no idea. And which king?" - -"The King of Scandinavia." - -"What! Had he lost his wife?" - -"You can understand," said Holmes suavely, "that I extend to the -affairs of my other clients the same secrecy which I promise to -you in yours." - -"Of course! Very right! very right! I'm sure I beg pardon. As to -my own case, I am ready to give you any information which may -assist you in forming an opinion." - -"Thank you. I have already learned all that is in the public -prints, nothing more. I presume that I may take it as correct--this -article, for example, as to the disappearance of the bride." - -Lord St. Simon glanced over it. "Yes, it is correct, as far as it -goes." - -"But it needs a great deal of supplementing before anyone could -offer an opinion. I think that I may arrive at my facts most -directly by questioning you." - -"Pray do so." - -"When did you first meet Miss Hatty Doran?" - -"In San Francisco, a year ago." - -"You were travelling in the States?" - -"Yes." - -"Did you become engaged then?" - -"No." - -"But you were on a friendly footing?" - -"I was amused by her society, and she could see that I was -amused." - -"Her father is very rich?" - -"He is said to be the richest man on the Pacific slope." - -"And how did he make his money?" - -"In mining. He had nothing a few years ago. Then he struck gold, -invested it, and came up by leaps and bounds." - -"Now, what is your own impression as to the young lady's--your -wife's character?" - -The nobleman swung his glasses a little faster and stared down -into the fire. "You see, Mr. Holmes," said he, "my wife was -twenty before her father became a rich man. During that time she -ran free in a mining camp and wandered through woods or -mountains, so that her education has come from Nature rather than -from the schoolmaster. She is what we call in England a tomboy, -with a strong nature, wild and free, unfettered by any sort of -traditions. She is impetuous--volcanic, I was about to say. She -is swift in making up her mind and fearless in carrying out her -resolutions. On the other hand, I would not have given her the -name which I have the honour to bear"--he gave a little stately -cough--"had not I thought her to be at bottom a noble woman. I -believe that she is capable of heroic self-sacrifice and that -anything dishonourable would be repugnant to her." - -"Have you her photograph?" - -"I brought this with me." He opened a locket and showed us the -full face of a very lovely woman. It was not a photograph but an -ivory miniature, and the artist had brought out the full effect -of the lustrous black hair, the large dark eyes, and the -exquisite mouth. Holmes gazed long and earnestly at it. Then he -closed the locket and handed it back to Lord St. Simon. - -"The young lady came to London, then, and you renewed your -acquaintance?" - -"Yes, her father brought her over for this last London season. I -met her several times, became engaged to her, and have now -married her." - -"She brought, I understand, a considerable dowry?" - -"A fair dowry. Not more than is usual in my family." - -"And this, of course, remains to you, since the marriage is a -fait accompli?" - -"I really have made no inquiries on the subject." - -"Very naturally not. Did you see Miss Doran on the day before the -wedding?" - -"Yes." - -"Was she in good spirits?" - -"Never better. She kept talking of what we should do in our -future lives." - -"Indeed! That is very interesting. And on the morning of the -wedding?" - -"She was as bright as possible--at least until after the -ceremony." - -"And did you observe any change in her then?" - -"Well, to tell the truth, I saw then the first signs that I had -ever seen that her temper was just a little sharp. The incident -however, was too trivial to relate and can have no possible -bearing upon the case." - -"Pray let us have it, for all that." - -"Oh, it is childish. She dropped her bouquet as we went towards -the vestry. She was passing the front pew at the time, and it -fell over into the pew. There was a moment's delay, but the -gentleman in the pew handed it up to her again, and it did not -appear to be the worse for the fall. Yet when I spoke to her of -the matter, she answered me abruptly; and in the carriage, on our -way home, she seemed absurdly agitated over this trifling cause." - -"Indeed! You say that there was a gentleman in the pew. Some of -the general public were present, then?" - -"Oh, yes. It is impossible to exclude them when the church is -open." - -"This gentleman was not one of your wife's friends?" - -"No, no; I call him a gentleman by courtesy, but he was quite a -common-looking person. I hardly noticed his appearance. But -really I think that we are wandering rather far from the point." - -"Lady St. Simon, then, returned from the wedding in a less -cheerful frame of mind than she had gone to it. What did she do -on re-entering her father's house?" - -"I saw her in conversation with her maid." - -"And who is her maid?" - -"Alice is her name. She is an American and came from California -with her." - -"A confidential servant?" - -"A little too much so. It seemed to me that her mistress allowed -her to take great liberties. Still, of course, in America they -look upon these things in a different way." - -"How long did she speak to this Alice?" - -"Oh, a few minutes. I had something else to think of." - -"You did not overhear what they said?" - -"Lady St. Simon said something about 'jumping a claim.' She was -accustomed to use slang of the kind. I have no idea what she -meant." - -"American slang is very expressive sometimes. And what did your -wife do when she finished speaking to her maid?" - -"She walked into the breakfast-room." - -"On your arm?" - -"No, alone. She was very independent in little matters like that. -Then, after we had sat down for ten minutes or so, she rose -hurriedly, muttered some words of apology, and left the room. She -never came back." - -"But this maid, Alice, as I understand, deposes that she went to -her room, covered her bride's dress with a long ulster, put on a -bonnet, and went out." - -"Quite so. And she was afterwards seen walking into Hyde Park in -company with Flora Millar, a woman who is now in custody, and who -had already made a disturbance at Mr. Doran's house that -morning." - -"Ah, yes. I should like a few particulars as to this young lady, -and your relations to her." - -Lord St. Simon shrugged his shoulders and raised his eyebrows. -"We have been on a friendly footing for some years--I may say on -a very friendly footing. She used to be at the Allegro. I have -not treated her ungenerously, and she had no just cause of -complaint against me, but you know what women are, Mr. Holmes. -Flora was a dear little thing, but exceedingly hot-headed and -devotedly attached to me. She wrote me dreadful letters when she -heard that I was about to be married, and, to tell the truth, the -reason why I had the marriage celebrated so quietly was that I -feared lest there might be a scandal in the church. She came to -Mr. Doran's door just after we returned, and she endeavoured to -push her way in, uttering very abusive expressions towards my -wife, and even threatening her, but I had foreseen the -possibility of something of the sort, and I had two police -fellows there in private clothes, who soon pushed her out again. -She was quiet when she saw that there was no good in making a -row." - -"Did your wife hear all this?" - -"No, thank goodness, she did not." - -"And she was seen walking with this very woman afterwards?" - -"Yes. That is what Mr. Lestrade, of Scotland Yard, looks upon as -so serious. It is thought that Flora decoyed my wife out and laid -some terrible trap for her." - -"Well, it is a possible supposition." - -"You think so, too?" - -"I did not say a probable one. But you do not yourself look upon -this as likely?" - -"I do not think Flora would hurt a fly." - -"Still, jealousy is a strange transformer of characters. Pray -what is your own theory as to what took place?" - -"Well, really, I came to seek a theory, not to propound one. I -have given you all the facts. Since you ask me, however, I may -say that it has occurred to me as possible that the excitement of -this affair, the consciousness that she had made so immense a -social stride, had the effect of causing some little nervous -disturbance in my wife." - -"In short, that she had become suddenly deranged?" - -"Well, really, when I consider that she has turned her back--I -will not say upon me, but upon so much that many have aspired to -without success--I can hardly explain it in any other fashion." - -"Well, certainly that is also a conceivable hypothesis," said -Holmes, smiling. "And now, Lord St. Simon, I think that I have -nearly all my data. May I ask whether you were seated at the -breakfast-table so that you could see out of the window?" - -"We could see the other side of the road and the Park." - -"Quite so. Then I do not think that I need to detain you longer. -I shall communicate with you." - -"Should you be fortunate enough to solve this problem," said our -client, rising. - -"I have solved it." - -"Eh? What was that?" - -"I say that I have solved it." - -"Where, then, is my wife?" - -"That is a detail which I shall speedily supply." - -Lord St. Simon shook his head. "I am afraid that it will take -wiser heads than yours or mine," he remarked, and bowing in a -stately, old-fashioned manner he departed. - -"It is very good of Lord St. Simon to honour my head by putting -it on a level with his own," said Sherlock Holmes, laughing. "I -think that I shall have a whisky and soda and a cigar after all -this cross-questioning. I had formed my conclusions as to the -case before our client came into the room." - -"My dear Holmes!" - -"I have notes of several similar cases, though none, as I -remarked before, which were quite as prompt. My whole examination -served to turn my conjecture into a certainty. Circumstantial -evidence is occasionally very convincing, as when you find a -trout in the milk, to quote Thoreau's example." - -"But I have heard all that you have heard." - -"Without, however, the knowledge of pre-existing cases which -serves me so well. There was a parallel instance in Aberdeen some -years back, and something on very much the same lines at Munich -the year after the Franco-Prussian War. It is one of these -cases--but, hullo, here is Lestrade! Good-afternoon, Lestrade! -You will find an extra tumbler upon the sideboard, and there are -cigars in the box." - -The official detective was attired in a pea-jacket and cravat, -which gave him a decidedly nautical appearance, and he carried a -black canvas bag in his hand. With a short greeting he seated -himself and lit the cigar which had been offered to him. - -"What's up, then?" asked Holmes with a twinkle in his eye. "You -look dissatisfied." - -"And I feel dissatisfied. It is this infernal St. Simon marriage -case. I can make neither head nor tail of the business." - -"Really! You surprise me." - -"Who ever heard of such a mixed affair? Every clue seems to slip -through my fingers. I have been at work upon it all day." - -"And very wet it seems to have made you," said Holmes laying his -hand upon the arm of the pea-jacket. - -"Yes, I have been dragging the Serpentine." - -"In heaven's name, what for?" - -"In search of the body of Lady St. Simon." - -Sherlock Holmes leaned back in his chair and laughed heartily. - -"Have you dragged the basin of Trafalgar Square fountain?" he -asked. - -"Why? What do you mean?" - -"Because you have just as good a chance of finding this lady in -the one as in the other." - -Lestrade shot an angry glance at my companion. "I suppose you -know all about it," he snarled. - -"Well, I have only just heard the facts, but my mind is made up." - -"Oh, indeed! Then you think that the Serpentine plays no part in -the matter?" - -"I think it very unlikely." - -"Then perhaps you will kindly explain how it is that we found -this in it?" He opened his bag as he spoke, and tumbled onto the -floor a wedding-dress of watered silk, a pair of white satin -shoes and a bride's wreath and veil, all discoloured and soaked -in water. "There," said he, putting a new wedding-ring upon the -top of the pile. "There is a little nut for you to crack, Master -Holmes." - -"Oh, indeed!" said my friend, blowing blue rings into the air. -"You dragged them from the Serpentine?" - -"No. They were found floating near the margin by a park-keeper. -They have been identified as her clothes, and it seemed to me -that if the clothes were there the body would not be far off." - -"By the same brilliant reasoning, every man's body is to be found -in the neighbourhood of his wardrobe. And pray what did you hope -to arrive at through this?" - -"At some evidence implicating Flora Millar in the disappearance." - -"I am afraid that you will find it difficult." - -"Are you, indeed, now?" cried Lestrade with some bitterness. "I -am afraid, Holmes, that you are not very practical with your -deductions and your inferences. You have made two blunders in as -many minutes. This dress does implicate Miss Flora Millar." - -"And how?" - -"In the dress is a pocket. In the pocket is a card-case. In the -card-case is a note. And here is the very note." He slapped it -down upon the table in front of him. "Listen to this: 'You will -see me when all is ready. Come at once. F.H.M.' Now my theory all -along has been that Lady St. Simon was decoyed away by Flora -Millar, and that she, with confederates, no doubt, was -responsible for her disappearance. Here, signed with her -initials, is the very note which was no doubt quietly slipped -into her hand at the door and which lured her within their -reach." - -"Very good, Lestrade," said Holmes, laughing. "You really are -very fine indeed. Let me see it." He took up the paper in a -listless way, but his attention instantly became riveted, and he -gave a little cry of satisfaction. "This is indeed important," -said he. - -"Ha! you find it so?" - -"Extremely so. I congratulate you warmly." - -Lestrade rose in his triumph and bent his head to look. "Why," he -shrieked, "you're looking at the wrong side!" - -"On the contrary, this is the right side." - -"The right side? You're mad! Here is the note written in pencil -over here." - -"And over here is what appears to be the fragment of a hotel -bill, which interests me deeply." - -"There's nothing in it. I looked at it before," said Lestrade. -"'Oct. 4th, rooms 8s., breakfast 2s. 6d., cocktail 1s., lunch 2s. -6d., glass sherry, 8d.' I see nothing in that." - -"Very likely not. It is most important, all the same. As to the -note, it is important also, or at least the initials are, so I -congratulate you again." - -"I've wasted time enough," said Lestrade, rising. "I believe in -hard work and not in sitting by the fire spinning fine theories. -Good-day, Mr. Holmes, and we shall see which gets to the bottom -of the matter first." He gathered up the garments, thrust them -into the bag, and made for the door. - -"Just one hint to you, Lestrade," drawled Holmes before his rival -vanished; "I will tell you the true solution of the matter. Lady -St. Simon is a myth. There is not, and there never has been, any -such person." - -Lestrade looked sadly at my companion. Then he turned to me, -tapped his forehead three times, shook his head solemnly, and -hurried away. - -He had hardly shut the door behind him when Holmes rose to put on -his overcoat. "There is something in what the fellow says about -outdoor work," he remarked, "so I think, Watson, that I must -leave you to your papers for a little." - -It was after five o'clock when Sherlock Holmes left me, but I had -no time to be lonely, for within an hour there arrived a -confectioner's man with a very large flat box. This he unpacked -with the help of a youth whom he had brought with him, and -presently, to my very great astonishment, a quite epicurean -little cold supper began to be laid out upon our humble -lodging-house mahogany. There were a couple of brace of cold -woodcock, a pheasant, a pt de foie gras pie with a group of -ancient and cobwebby bottles. Having laid out all these luxuries, -my two visitors vanished away, like the genii of the Arabian -Nights, with no explanation save that the things had been paid -for and were ordered to this address. - -Just before nine o'clock Sherlock Holmes stepped briskly into the -room. His features were gravely set, but there was a light in his -eye which made me think that he had not been disappointed in his -conclusions. - -"They have laid the supper, then," he said, rubbing his hands. - -"You seem to expect company. They have laid for five." - -"Yes, I fancy we may have some company dropping in," said he. "I -am surprised that Lord St. Simon has not already arrived. Ha! I -fancy that I hear his step now upon the stairs." - -It was indeed our visitor of the afternoon who came bustling in, -dangling his glasses more vigorously than ever, and with a very -perturbed expression upon his aristocratic features. - -"My messenger reached you, then?" asked Holmes. - -"Yes, and I confess that the contents startled me beyond measure. -Have you good authority for what you say?" - -"The best possible." - -Lord St. Simon sank into a chair and passed his hand over his -forehead. - -"What will the Duke say," he murmured, "when he hears that one of -the family has been subjected to such humiliation?" - -"It is the purest accident. I cannot allow that there is any -humiliation." - -"Ah, you look on these things from another standpoint." - -"I fail to see that anyone is to blame. I can hardly see how the -lady could have acted otherwise, though her abrupt method of -doing it was undoubtedly to be regretted. Having no mother, she -had no one to advise her at such a crisis." - -"It was a slight, sir, a public slight," said Lord St. Simon, -tapping his fingers upon the table. - -"You must make allowance for this poor girl, placed in so -unprecedented a position." - -"I will make no allowance. I am very angry indeed, and I have -been shamefully used." - -"I think that I heard a ring," said Holmes. "Yes, there are steps -on the landing. If I cannot persuade you to take a lenient view -of the matter, Lord St. Simon, I have brought an advocate here -who may be more successful." He opened the door and ushered in a -lady and gentleman. "Lord St. Simon," said he "allow me to -introduce you to Mr. and Mrs. Francis Hay Moulton. The lady, I -think, you have already met." - -At the sight of these newcomers our client had sprung from his -seat and stood very erect, with his eyes cast down and his hand -thrust into the breast of his frock-coat, a picture of offended -dignity. The lady had taken a quick step forward and had held out -her hand to him, but he still refused to raise his eyes. It was -as well for his resolution, perhaps, for her pleading face was -one which it was hard to resist. - -"You're angry, Robert," said she. "Well, I guess you have every -cause to be." - -"Pray make no apology to me," said Lord St. Simon bitterly. - -"Oh, yes, I know that I have treated you real bad and that I -should have spoken to you before I went; but I was kind of -rattled, and from the time when I saw Frank here again I just -didn't know what I was doing or saying. I only wonder I didn't -fall down and do a faint right there before the altar." - -"Perhaps, Mrs. Moulton, you would like my friend and me to leave -the room while you explain this matter?" - -"If I may give an opinion," remarked the strange gentleman, -"we've had just a little too much secrecy over this business -already. For my part, I should like all Europe and America to -hear the rights of it." He was a small, wiry, sunburnt man, -clean-shaven, with a sharp face and alert manner. - -"Then I'll tell our story right away," said the lady. "Frank here -and I met in '84, in McQuire's camp, near the Rockies, where pa -was working a claim. We were engaged to each other, Frank and I; -but then one day father struck a rich pocket and made a pile, -while poor Frank here had a claim that petered out and came to -nothing. The richer pa grew the poorer was Frank; so at last pa -wouldn't hear of our engagement lasting any longer, and he took -me away to 'Frisco. Frank wouldn't throw up his hand, though; so -he followed me there, and he saw me without pa knowing anything -about it. It would only have made him mad to know, so we just -fixed it all up for ourselves. Frank said that he would go and -make his pile, too, and never come back to claim me until he had -as much as pa. So then I promised to wait for him to the end of -time and pledged myself not to marry anyone else while he lived. -'Why shouldn't we be married right away, then,' said he, 'and -then I will feel sure of you; and I won't claim to be your -husband until I come back?' Well, we talked it over, and he had -fixed it all up so nicely, with a clergyman all ready in waiting, -that we just did it right there; and then Frank went off to seek -his fortune, and I went back to pa. - -"The next I heard of Frank was that he was in Montana, and then -he went prospecting in Arizona, and then I heard of him from New -Mexico. After that came a long newspaper story about how a -miners' camp had been attacked by Apache Indians, and there was -my Frank's name among the killed. I fainted dead away, and I was -very sick for months after. Pa thought I had a decline and took -me to half the doctors in 'Frisco. Not a word of news came for a -year and more, so that I never doubted that Frank was really -dead. Then Lord St. Simon came to 'Frisco, and we came to London, -and a marriage was arranged, and pa was very pleased, but I felt -all the time that no man on this earth would ever take the place -in my heart that had been given to my poor Frank. - -"Still, if I had married Lord St. Simon, of course I'd have done -my duty by him. We can't command our love, but we can our -actions. I went to the altar with him with the intention to make -him just as good a wife as it was in me to be. But you may -imagine what I felt when, just as I came to the altar rails, I -glanced back and saw Frank standing and looking at me out of the -first pew. I thought it was his ghost at first; but when I looked -again there he was still, with a kind of question in his eyes, as -if to ask me whether I were glad or sorry to see him. I wonder I -didn't drop. I know that everything was turning round, and the -words of the clergyman were just like the buzz of a bee in my -ear. I didn't know what to do. Should I stop the service and make -a scene in the church? I glanced at him again, and he seemed to -know what I was thinking, for he raised his finger to his lips to -tell me to be still. Then I saw him scribble on a piece of paper, -and I knew that he was writing me a note. As I passed his pew on -the way out I dropped my bouquet over to him, and he slipped the -note into my hand when he returned me the flowers. It was only a -line asking me to join him when he made the sign to me to do so. -Of course I never doubted for a moment that my first duty was now -to him, and I determined to do just whatever he might direct. - -"When I got back I told my maid, who had known him in California, -and had always been his friend. I ordered her to say nothing, but -to get a few things packed and my ulster ready. I know I ought to -have spoken to Lord St. Simon, but it was dreadful hard before -his mother and all those great people. I just made up my mind to -run away and explain afterwards. I hadn't been at the table ten -minutes before I saw Frank out of the window at the other side of -the road. He beckoned to me and then began walking into the Park. -I slipped out, put on my things, and followed him. Some woman -came talking something or other about Lord St. Simon to -me--seemed to me from the little I heard as if he had a little -secret of his own before marriage also--but I managed to get away -from her and soon overtook Frank. We got into a cab together, and -away we drove to some lodgings he had taken in Gordon Square, and -that was my true wedding after all those years of waiting. Frank -had been a prisoner among the Apaches, had escaped, came on to -'Frisco, found that I had given him up for dead and had gone to -England, followed me there, and had come upon me at last on the -very morning of my second wedding." - -"I saw it in a paper," explained the American. "It gave the name -and the church but not where the lady lived." - -"Then we had a talk as to what we should do, and Frank was all -for openness, but I was so ashamed of it all that I felt as if I -should like to vanish away and never see any of them again--just -sending a line to pa, perhaps, to show him that I was alive. It -was awful to me to think of all those lords and ladies sitting -round that breakfast-table and waiting for me to come back. So -Frank took my wedding-clothes and things and made a bundle of -them, so that I should not be traced, and dropped them away -somewhere where no one could find them. It is likely that we -should have gone on to Paris to-morrow, only that this good -gentleman, Mr. Holmes, came round to us this evening, though how -he found us is more than I can think, and he showed us very -clearly and kindly that I was wrong and that Frank was right, and -that we should be putting ourselves in the wrong if we were so -secret. Then he offered to give us a chance of talking to Lord -St. Simon alone, and so we came right away round to his rooms at -once. Now, Robert, you have heard it all, and I am very sorry if -I have given you pain, and I hope that you do not think very -meanly of me." - -Lord St. Simon had by no means relaxed his rigid attitude, but -had listened with a frowning brow and a compressed lip to this -long narrative. - -"Excuse me," he said, "but it is not my custom to discuss my most -intimate personal affairs in this public manner." - -"Then you won't forgive me? You won't shake hands before I go?" - -"Oh, certainly, if it would give you any pleasure." He put out -his hand and coldly grasped that which she extended to him. - -"I had hoped," suggested Holmes, "that you would have joined us -in a friendly supper." - -"I think that there you ask a little too much," responded his -Lordship. "I may be forced to acquiesce in these recent -developments, but I can hardly be expected to make merry over -them. I think that with your permission I will now wish you all a -very good-night." He included us all in a sweeping bow and -stalked out of the room. - -"Then I trust that you at least will honour me with your -company," said Sherlock Holmes. "It is always a joy to meet an -American, Mr. Moulton, for I am one of those who believe that the -folly of a monarch and the blundering of a minister in far-gone -years will not prevent our children from being some day citizens -of the same world-wide country under a flag which shall be a -quartering of the Union Jack with the Stars and Stripes." - -"The case has been an interesting one," remarked Holmes when our -visitors had left us, "because it serves to show very clearly how -simple the explanation may be of an affair which at first sight -seems to be almost inexplicable. Nothing could be more natural -than the sequence of events as narrated by this lady, and nothing -stranger than the result when viewed, for instance, by Mr. -Lestrade of Scotland Yard." - -"You were not yourself at fault at all, then?" - -"From the first, two facts were very obvious to me, the one that -the lady had been quite willing to undergo the wedding ceremony, -the other that she had repented of it within a few minutes of -returning home. Obviously something had occurred during the -morning, then, to cause her to change her mind. What could that -something be? She could not have spoken to anyone when she was -out, for she had been in the company of the bridegroom. Had she -seen someone, then? If she had, it must be someone from America -because she had spent so short a time in this country that she -could hardly have allowed anyone to acquire so deep an influence -over her that the mere sight of him would induce her to change -her plans so completely. You see we have already arrived, by a -process of exclusion, at the idea that she might have seen an -American. Then who could this American be, and why should he -possess so much influence over her? It might be a lover; it might -be a husband. Her young womanhood had, I knew, been spent in -rough scenes and under strange conditions. So far I had got -before I ever heard Lord St. Simon's narrative. When he told us -of a man in a pew, of the change in the bride's manner, of so -transparent a device for obtaining a note as the dropping of a -bouquet, of her resort to her confidential maid, and of her very -significant allusion to claim-jumping--which in miners' parlance -means taking possession of that which another person has a prior -claim to--the whole situation became absolutely clear. She had -gone off with a man, and the man was either a lover or was a -previous husband--the chances being in favour of the latter." - -"And how in the world did you find them?" - -"It might have been difficult, but friend Lestrade held -information in his hands the value of which he did not himself -know. The initials were, of course, of the highest importance, -but more valuable still was it to know that within a week he had -settled his bill at one of the most select London hotels." - -"How did you deduce the select?" - -"By the select prices. Eight shillings for a bed and eightpence -for a glass of sherry pointed to one of the most expensive -hotels. There are not many in London which charge at that rate. -In the second one which I visited in Northumberland Avenue, I -learned by an inspection of the book that Francis H. Moulton, an -American gentleman, had left only the day before, and on looking -over the entries against him, I came upon the very items which I -had seen in the duplicate bill. His letters were to be forwarded -to 226 Gordon Square; so thither I travelled, and being fortunate -enough to find the loving couple at home, I ventured to give them -some paternal advice and to point out to them that it would be -better in every way that they should make their position a little -clearer both to the general public and to Lord St. Simon in -particular. I invited them to meet him here, and, as you see, I -made him keep the appointment." - -"But with no very good result," I remarked. "His conduct was -certainly not very gracious." - -"Ah, Watson," said Holmes, smiling, "perhaps you would not be -very gracious either, if, after all the trouble of wooing and -wedding, you found yourself deprived in an instant of wife and of -fortune. I think that we may judge Lord St. Simon very mercifully -and thank our stars that we are never likely to find ourselves in -the same position. Draw your chair up and hand me my violin, for -the only problem we have still to solve is how to while away -these bleak autumnal evenings." - - - -XI. THE ADVENTURE OF THE BERYL CORONET - -"Holmes," said I as I stood one morning in our bow-window looking -down the street, "here is a madman coming along. It seems rather -sad that his relatives should allow him to come out alone." - -My friend rose lazily from his armchair and stood with his hands -in the pockets of his dressing-gown, looking over my shoulder. It -was a bright, crisp February morning, and the snow of the day -before still lay deep upon the ground, shimmering brightly in the -wintry sun. Down the centre of Baker Street it had been ploughed -into a brown crumbly band by the traffic, but at either side and -on the heaped-up edges of the foot-paths it still lay as white as -when it fell. The grey pavement had been cleaned and scraped, but -was still dangerously slippery, so that there were fewer -passengers than usual. Indeed, from the direction of the -Metropolitan Station no one was coming save the single gentleman -whose eccentric conduct had drawn my attention. - -He was a man of about fifty, tall, portly, and imposing, with a -massive, strongly marked face and a commanding figure. He was -dressed in a sombre yet rich style, in black frock-coat, shining -hat, neat brown gaiters, and well-cut pearl-grey trousers. Yet -his actions were in absurd contrast to the dignity of his dress -and features, for he was running hard, with occasional little -springs, such as a weary man gives who is little accustomed to -set any tax upon his legs. As he ran he jerked his hands up and -down, waggled his head, and writhed his face into the most -extraordinary contortions. - -"What on earth can be the matter with him?" I asked. "He is -looking up at the numbers of the houses." - -"I believe that he is coming here," said Holmes, rubbing his -hands. - -"Here?" - -"Yes; I rather think he is coming to consult me professionally. I -think that I recognise the symptoms. Ha! did I not tell you?" As -he spoke, the man, puffing and blowing, rushed at our door and -pulled at our bell until the whole house resounded with the -clanging. - -A few moments later he was in our room, still puffing, still -gesticulating, but with so fixed a look of grief and despair in -his eyes that our smiles were turned in an instant to horror and -pity. For a while he could not get his words out, but swayed his -body and plucked at his hair like one who has been driven to the -extreme limits of his reason. Then, suddenly springing to his -feet, he beat his head against the wall with such force that we -both rushed upon him and tore him away to the centre of the room. -Sherlock Holmes pushed him down into the easy-chair and, sitting -beside him, patted his hand and chatted with him in the easy, -soothing tones which he knew so well how to employ. - -"You have come to me to tell your story, have you not?" said he. -"You are fatigued with your haste. Pray wait until you have -recovered yourself, and then I shall be most happy to look into -any little problem which you may submit to me." - -The man sat for a minute or more with a heaving chest, fighting -against his emotion. Then he passed his handkerchief over his -brow, set his lips tight, and turned his face towards us. - -"No doubt you think me mad?" said he. - -"I see that you have had some great trouble," responded Holmes. - -"God knows I have!--a trouble which is enough to unseat my -reason, so sudden and so terrible is it. Public disgrace I might -have faced, although I am a man whose character has never yet -borne a stain. Private affliction also is the lot of every man; -but the two coming together, and in so frightful a form, have -been enough to shake my very soul. Besides, it is not I alone. -The very noblest in the land may suffer unless some way be found -out of this horrible affair." - -"Pray compose yourself, sir," said Holmes, "and let me have a -clear account of who you are and what it is that has befallen -you." - -"My name," answered our visitor, "is probably familiar to your -ears. I am Alexander Holder, of the banking firm of Holder & -Stevenson, of Threadneedle Street." - -The name was indeed well known to us as belonging to the senior -partner in the second largest private banking concern in the City -of London. What could have happened, then, to bring one of the -foremost citizens of London to this most pitiable pass? We -waited, all curiosity, until with another effort he braced -himself to tell his story. - -"I feel that time is of value," said he; "that is why I hastened -here when the police inspector suggested that I should secure -your co-operation. I came to Baker Street by the Underground and -hurried from there on foot, for the cabs go slowly through this -snow. That is why I was so out of breath, for I am a man who -takes very little exercise. I feel better now, and I will put the -facts before you as shortly and yet as clearly as I can. - -"It is, of course, well known to you that in a successful banking -business as much depends upon our being able to find remunerative -investments for our funds as upon our increasing our connection -and the number of our depositors. One of our most lucrative means -of laying out money is in the shape of loans, where the security -is unimpeachable. We have done a good deal in this direction -during the last few years, and there are many noble families to -whom we have advanced large sums upon the security of their -pictures, libraries, or plate. - -"Yesterday morning I was seated in my office at the bank when a -card was brought in to me by one of the clerks. I started when I -saw the name, for it was that of none other than--well, perhaps -even to you I had better say no more than that it was a name -which is a household word all over the earth--one of the highest, -noblest, most exalted names in England. I was overwhelmed by the -honour and attempted, when he entered, to say so, but he plunged -at once into business with the air of a man who wishes to hurry -quickly through a disagreeable task. - -"'Mr. Holder,' said he, 'I have been informed that you are in the -habit of advancing money.' - -"'The firm does so when the security is good.' I answered. - -"'It is absolutely essential to me,' said he, 'that I should have -50,000 pounds at once. I could, of course, borrow so trifling a -sum ten times over from my friends, but I much prefer to make it -a matter of business and to carry out that business myself. In my -position you can readily understand that it is unwise to place -one's self under obligations.' - -"'For how long, may I ask, do you want this sum?' I asked. - -"'Next Monday I have a large sum due to me, and I shall then most -certainly repay what you advance, with whatever interest you -think it right to charge. But it is very essential to me that the -money should be paid at once.' - -"'I should be happy to advance it without further parley from my -own private purse,' said I, 'were it not that the strain would be -rather more than it could bear. If, on the other hand, I am to do -it in the name of the firm, then in justice to my partner I must -insist that, even in your case, every businesslike precaution -should be taken.' - -"'I should much prefer to have it so,' said he, raising up a -square, black morocco case which he had laid beside his chair. -'You have doubtless heard of the Beryl Coronet?' - -"'One of the most precious public possessions of the empire,' -said I. - -"'Precisely.' He opened the case, and there, imbedded in soft, -flesh-coloured velvet, lay the magnificent piece of jewellery -which he had named. 'There are thirty-nine enormous beryls,' said -he, 'and the price of the gold chasing is incalculable. The -lowest estimate would put the worth of the coronet at double the -sum which I have asked. I am prepared to leave it with you as my -security.' - -"I took the precious case into my hands and looked in some -perplexity from it to my illustrious client. - -"'You doubt its value?' he asked. - -"'Not at all. I only doubt--' - -"'The propriety of my leaving it. You may set your mind at rest -about that. I should not dream of doing so were it not absolutely -certain that I should be able in four days to reclaim it. It is a -pure matter of form. Is the security sufficient?' - -"'Ample.' - -"'You understand, Mr. Holder, that I am giving you a strong proof -of the confidence which I have in you, founded upon all that I -have heard of you. I rely upon you not only to be discreet and to -refrain from all gossip upon the matter but, above all, to -preserve this coronet with every possible precaution because I -need not say that a great public scandal would be caused if any -harm were to befall it. Any injury to it would be almost as -serious as its complete loss, for there are no beryls in the -world to match these, and it would be impossible to replace them. -I leave it with you, however, with every confidence, and I shall -call for it in person on Monday morning.' - -"Seeing that my client was anxious to leave, I said no more but, -calling for my cashier, I ordered him to pay over fifty 1000 -pound notes. When I was alone once more, however, with the -precious case lying upon the table in front of me, I could not -but think with some misgivings of the immense responsibility -which it entailed upon me. There could be no doubt that, as it -was a national possession, a horrible scandal would ensue if any -misfortune should occur to it. I already regretted having ever -consented to take charge of it. However, it was too late to alter -the matter now, so I locked it up in my private safe and turned -once more to my work. - -"When evening came I felt that it would be an imprudence to leave -so precious a thing in the office behind me. Bankers' safes had -been forced before now, and why should not mine be? If so, how -terrible would be the position in which I should find myself! I -determined, therefore, that for the next few days I would always -carry the case backward and forward with me, so that it might -never be really out of my reach. With this intention, I called a -cab and drove out to my house at Streatham, carrying the jewel -with me. I did not breathe freely until I had taken it upstairs -and locked it in the bureau of my dressing-room. - -"And now a word as to my household, Mr. Holmes, for I wish you to -thoroughly understand the situation. My groom and my page sleep -out of the house, and may be set aside altogether. I have three -maid-servants who have been with me a number of years and whose -absolute reliability is quite above suspicion. Another, Lucy -Parr, the second waiting-maid, has only been in my service a few -months. She came with an excellent character, however, and has -always given me satisfaction. She is a very pretty girl and has -attracted admirers who have occasionally hung about the place. -That is the only drawback which we have found to her, but we -believe her to be a thoroughly good girl in every way. - -"So much for the servants. My family itself is so small that it -will not take me long to describe it. I am a widower and have an -only son, Arthur. He has been a disappointment to me, Mr. -Holmes--a grievous disappointment. I have no doubt that I am -myself to blame. People tell me that I have spoiled him. Very -likely I have. When my dear wife died I felt that he was all I -had to love. I could not bear to see the smile fade even for a -moment from his face. I have never denied him a wish. Perhaps it -would have been better for both of us had I been sterner, but I -meant it for the best. - -"It was naturally my intention that he should succeed me in my -business, but he was not of a business turn. He was wild, -wayward, and, to speak the truth, I could not trust him in the -handling of large sums of money. When he was young he became a -member of an aristocratic club, and there, having charming -manners, he was soon the intimate of a number of men with long -purses and expensive habits. He learned to play heavily at cards -and to squander money on the turf, until he had again and again -to come to me and implore me to give him an advance upon his -allowance, that he might settle his debts of honour. He tried -more than once to break away from the dangerous company which he -was keeping, but each time the influence of his friend, Sir -George Burnwell, was enough to draw him back again. - -"And, indeed, I could not wonder that such a man as Sir George -Burnwell should gain an influence over him, for he has frequently -brought him to my house, and I have found myself that I could -hardly resist the fascination of his manner. He is older than -Arthur, a man of the world to his finger-tips, one who had been -everywhere, seen everything, a brilliant talker, and a man of -great personal beauty. Yet when I think of him in cold blood, far -away from the glamour of his presence, I am convinced from his -cynical speech and the look which I have caught in his eyes that -he is one who should be deeply distrusted. So I think, and so, -too, thinks my little Mary, who has a woman's quick insight into -character. - -"And now there is only she to be described. She is my niece; but -when my brother died five years ago and left her alone in the -world I adopted her, and have looked upon her ever since as my -daughter. She is a sunbeam in my house--sweet, loving, beautiful, -a wonderful manager and housekeeper, yet as tender and quiet and -gentle as a woman could be. She is my right hand. I do not know -what I could do without her. In only one matter has she ever gone -against my wishes. Twice my boy has asked her to marry him, for -he loves her devotedly, but each time she has refused him. I -think that if anyone could have drawn him into the right path it -would have been she, and that his marriage might have changed his -whole life; but now, alas! it is too late--forever too late! - -"Now, Mr. Holmes, you know the people who live under my roof, and -I shall continue with my miserable story. - -"When we were taking coffee in the drawing-room that night after -dinner, I told Arthur and Mary my experience, and of the precious -treasure which we had under our roof, suppressing only the name -of my client. Lucy Parr, who had brought in the coffee, had, I am -sure, left the room; but I cannot swear that the door was closed. -Mary and Arthur were much interested and wished to see the famous -coronet, but I thought it better not to disturb it. - -"'Where have you put it?' asked Arthur. - -"'In my own bureau.' - -"'Well, I hope to goodness the house won't be burgled during the -night.' said he. - -"'It is locked up,' I answered. - -"'Oh, any old key will fit that bureau. When I was a youngster I -have opened it myself with the key of the box-room cupboard.' - -"He often had a wild way of talking, so that I thought little of -what he said. He followed me to my room, however, that night with -a very grave face. - -"'Look here, dad,' said he with his eyes cast down, 'can you let -me have 200 pounds?' - -"'No, I cannot!' I answered sharply. 'I have been far too -generous with you in money matters.' - -"'You have been very kind,' said he, 'but I must have this money, -or else I can never show my face inside the club again.' - -"'And a very good thing, too!' I cried. - -"'Yes, but you would not have me leave it a dishonoured man,' -said he. 'I could not bear the disgrace. I must raise the money -in some way, and if you will not let me have it, then I must try -other means.' - -"I was very angry, for this was the third demand during the -month. 'You shall not have a farthing from me,' I cried, on which -he bowed and left the room without another word. - -"When he was gone I unlocked my bureau, made sure that my -treasure was safe, and locked it again. Then I started to go -round the house to see that all was secure--a duty which I -usually leave to Mary but which I thought it well to perform -myself that night. As I came down the stairs I saw Mary herself -at the side window of the hall, which she closed and fastened as -I approached. - -"'Tell me, dad,' said she, looking, I thought, a little -disturbed, 'did you give Lucy, the maid, leave to go out -to-night?' - -"'Certainly not.' - -"'She came in just now by the back door. I have no doubt that she -has only been to the side gate to see someone, but I think that -it is hardly safe and should be stopped.' - -"'You must speak to her in the morning, or I will if you prefer -it. Are you sure that everything is fastened?' - -"'Quite sure, dad.' - -"'Then, good-night.' I kissed her and went up to my bedroom -again, where I was soon asleep. - -"I am endeavouring to tell you everything, Mr. Holmes, which may -have any bearing upon the case, but I beg that you will question -me upon any point which I do not make clear." - -"On the contrary, your statement is singularly lucid." - -"I come to a part of my story now in which I should wish to be -particularly so. I am not a very heavy sleeper, and the anxiety -in my mind tended, no doubt, to make me even less so than usual. -About two in the morning, then, I was awakened by some sound in -the house. It had ceased ere I was wide awake, but it had left an -impression behind it as though a window had gently closed -somewhere. I lay listening with all my ears. Suddenly, to my -horror, there was a distinct sound of footsteps moving softly in -the next room. I slipped out of bed, all palpitating with fear, -and peeped round the corner of my dressing-room door. - -"'Arthur!' I screamed, 'you villain! you thief! How dare you -touch that coronet?' - -"The gas was half up, as I had left it, and my unhappy boy, -dressed only in his shirt and trousers, was standing beside the -light, holding the coronet in his hands. He appeared to be -wrenching at it, or bending it with all his strength. At my cry -he dropped it from his grasp and turned as pale as death. I -snatched it up and examined it. One of the gold corners, with -three of the beryls in it, was missing. - -"'You blackguard!' I shouted, beside myself with rage. 'You have -destroyed it! You have dishonoured me forever! Where are the -jewels which you have stolen?' - -"'Stolen!' he cried. - -"'Yes, thief!' I roared, shaking him by the shoulder. - -"'There are none missing. There cannot be any missing,' said he. - -"'There are three missing. And you know where they are. Must I -call you a liar as well as a thief? Did I not see you trying to -tear off another piece?' - -"'You have called me names enough,' said he, 'I will not stand it -any longer. I shall not say another word about this business, -since you have chosen to insult me. I will leave your house in -the morning and make my own way in the world.' - -"'You shall leave it in the hands of the police!' I cried -half-mad with grief and rage. 'I shall have this matter probed to -the bottom.' - -"'You shall learn nothing from me,' said he with a passion such -as I should not have thought was in his nature. 'If you choose to -call the police, let the police find what they can.' - -"By this time the whole house was astir, for I had raised my -voice in my anger. Mary was the first to rush into my room, and, -at the sight of the coronet and of Arthur's face, she read the -whole story and, with a scream, fell down senseless on the -ground. I sent the house-maid for the police and put the -investigation into their hands at once. When the inspector and a -constable entered the house, Arthur, who had stood sullenly with -his arms folded, asked me whether it was my intention to charge -him with theft. I answered that it had ceased to be a private -matter, but had become a public one, since the ruined coronet was -national property. I was determined that the law should have its -way in everything. - -"'At least,' said he, 'you will not have me arrested at once. It -would be to your advantage as well as mine if I might leave the -house for five minutes.' - -"'That you may get away, or perhaps that you may conceal what you -have stolen,' said I. And then, realising the dreadful position -in which I was placed, I implored him to remember that not only -my honour but that of one who was far greater than I was at -stake; and that he threatened to raise a scandal which would -convulse the nation. He might avert it all if he would but tell -me what he had done with the three missing stones. - -"'You may as well face the matter,' said I; 'you have been caught -in the act, and no confession could make your guilt more heinous. -If you but make such reparation as is in your power, by telling -us where the beryls are, all shall be forgiven and forgotten.' - -"'Keep your forgiveness for those who ask for it,' he answered, -turning away from me with a sneer. I saw that he was too hardened -for any words of mine to influence him. There was but one way for -it. I called in the inspector and gave him into custody. A search -was made at once not only of his person but of his room and of -every portion of the house where he could possibly have concealed -the gems; but no trace of them could be found, nor would the -wretched boy open his mouth for all our persuasions and our -threats. This morning he was removed to a cell, and I, after -going through all the police formalities, have hurried round to -you to implore you to use your skill in unravelling the matter. -The police have openly confessed that they can at present make -nothing of it. You may go to any expense which you think -necessary. I have already offered a reward of 1000 pounds. My -God, what shall I do! I have lost my honour, my gems, and my son -in one night. Oh, what shall I do!" - -He put a hand on either side of his head and rocked himself to -and fro, droning to himself like a child whose grief has got -beyond words. - -Sherlock Holmes sat silent for some few minutes, with his brows -knitted and his eyes fixed upon the fire. - -"Do you receive much company?" he asked. - -"None save my partner with his family and an occasional friend of -Arthur's. Sir George Burnwell has been several times lately. No -one else, I think." - -"Do you go out much in society?" - -"Arthur does. Mary and I stay at home. We neither of us care for -it." - -"That is unusual in a young girl." - -"She is of a quiet nature. Besides, she is not so very young. She -is four-and-twenty." - -"This matter, from what you say, seems to have been a shock to -her also." - -"Terrible! She is even more affected than I." - -"You have neither of you any doubt as to your son's guilt?" - -"How can we have when I saw him with my own eyes with the coronet -in his hands." - -"I hardly consider that a conclusive proof. Was the remainder of -the coronet at all injured?" - -"Yes, it was twisted." - -"Do you not think, then, that he might have been trying to -straighten it?" - -"God bless you! You are doing what you can for him and for me. -But it is too heavy a task. What was he doing there at all? If -his purpose were innocent, why did he not say so?" - -"Precisely. And if it were guilty, why did he not invent a lie? -His silence appears to me to cut both ways. There are several -singular points about the case. What did the police think of the -noise which awoke you from your sleep?" - -"They considered that it might be caused by Arthur's closing his -bedroom door." - -"A likely story! As if a man bent on felony would slam his door -so as to wake a household. What did they say, then, of the -disappearance of these gems?" - -"They are still sounding the planking and probing the furniture -in the hope of finding them." - -"Have they thought of looking outside the house?" - -"Yes, they have shown extraordinary energy. The whole garden has -already been minutely examined." - -"Now, my dear sir," said Holmes, "is it not obvious to you now -that this matter really strikes very much deeper than either you -or the police were at first inclined to think? It appeared to you -to be a simple case; to me it seems exceedingly complex. Consider -what is involved by your theory. You suppose that your son came -down from his bed, went, at great risk, to your dressing-room, -opened your bureau, took out your coronet, broke off by main -force a small portion of it, went off to some other place, -concealed three gems out of the thirty-nine, with such skill that -nobody can find them, and then returned with the other thirty-six -into the room in which he exposed himself to the greatest danger -of being discovered. I ask you now, is such a theory tenable?" - -"But what other is there?" cried the banker with a gesture of -despair. "If his motives were innocent, why does he not explain -them?" - -"It is our task to find that out," replied Holmes; "so now, if -you please, Mr. Holder, we will set off for Streatham together, -and devote an hour to glancing a little more closely into -details." - -My friend insisted upon my accompanying them in their expedition, -which I was eager enough to do, for my curiosity and sympathy -were deeply stirred by the story to which we had listened. I -confess that the guilt of the banker's son appeared to me to be -as obvious as it did to his unhappy father, but still I had such -faith in Holmes' judgment that I felt that there must be some -grounds for hope as long as he was dissatisfied with the accepted -explanation. He hardly spoke a word the whole way out to the -southern suburb, but sat with his chin upon his breast and his -hat drawn over his eyes, sunk in the deepest thought. Our client -appeared to have taken fresh heart at the little glimpse of hope -which had been presented to him, and he even broke into a -desultory chat with me over his business affairs. A short railway -journey and a shorter walk brought us to Fairbank, the modest -residence of the great financier. - -Fairbank was a good-sized square house of white stone, standing -back a little from the road. A double carriage-sweep, with a -snow-clad lawn, stretched down in front to two large iron gates -which closed the entrance. On the right side was a small wooden -thicket, which led into a narrow path between two neat hedges -stretching from the road to the kitchen door, and forming the -tradesmen's entrance. On the left ran a lane which led to the -stables, and was not itself within the grounds at all, being a -public, though little used, thoroughfare. Holmes left us standing -at the door and walked slowly all round the house, across the -front, down the tradesmen's path, and so round by the garden -behind into the stable lane. So long was he that Mr. Holder and I -went into the dining-room and waited by the fire until he should -return. We were sitting there in silence when the door opened and -a young lady came in. She was rather above the middle height, -slim, with dark hair and eyes, which seemed the darker against -the absolute pallor of her skin. I do not think that I have ever -seen such deadly paleness in a woman's face. Her lips, too, were -bloodless, but her eyes were flushed with crying. As she swept -silently into the room she impressed me with a greater sense of -grief than the banker had done in the morning, and it was the -more striking in her as she was evidently a woman of strong -character, with immense capacity for self-restraint. Disregarding -my presence, she went straight to her uncle and passed her hand -over his head with a sweet womanly caress. - -"You have given orders that Arthur should be liberated, have you -not, dad?" she asked. - -"No, no, my girl, the matter must be probed to the bottom." - -"But I am so sure that he is innocent. You know what woman's -instincts are. I know that he has done no harm and that you will -be sorry for having acted so harshly." - -"Why is he silent, then, if he is innocent?" - -"Who knows? Perhaps because he was so angry that you should -suspect him." - -"How could I help suspecting him, when I actually saw him with -the coronet in his hand?" - -"Oh, but he had only picked it up to look at it. Oh, do, do take -my word for it that he is innocent. Let the matter drop and say -no more. It is so dreadful to think of our dear Arthur in -prison!" - -"I shall never let it drop until the gems are found--never, Mary! -Your affection for Arthur blinds you as to the awful consequences -to me. Far from hushing the thing up, I have brought a gentleman -down from London to inquire more deeply into it." - -"This gentleman?" she asked, facing round to me. - -"No, his friend. He wished us to leave him alone. He is round in -the stable lane now." - -"The stable lane?" She raised her dark eyebrows. "What can he -hope to find there? Ah! this, I suppose, is he. I trust, sir, -that you will succeed in proving, what I feel sure is the truth, -that my cousin Arthur is innocent of this crime." - -"I fully share your opinion, and I trust, with you, that we may -prove it," returned Holmes, going back to the mat to knock the -snow from his shoes. "I believe I have the honour of addressing -Miss Mary Holder. Might I ask you a question or two?" - -"Pray do, sir, if it may help to clear this horrible affair up." - -"You heard nothing yourself last night?" - -"Nothing, until my uncle here began to speak loudly. I heard -that, and I came down." - -"You shut up the windows and doors the night before. Did you -fasten all the windows?" - -"Yes." - -"Were they all fastened this morning?" - -"Yes." - -"You have a maid who has a sweetheart? I think that you remarked -to your uncle last night that she had been out to see him?" - -"Yes, and she was the girl who waited in the drawing-room, and -who may have heard uncle's remarks about the coronet." - -"I see. You infer that she may have gone out to tell her -sweetheart, and that the two may have planned the robbery." - -"But what is the good of all these vague theories," cried the -banker impatiently, "when I have told you that I saw Arthur with -the coronet in his hands?" - -"Wait a little, Mr. Holder. We must come back to that. About this -girl, Miss Holder. You saw her return by the kitchen door, I -presume?" - -"Yes; when I went to see if the door was fastened for the night I -met her slipping in. I saw the man, too, in the gloom." - -"Do you know him?" - -"Oh, yes! he is the green-grocer who brings our vegetables round. -His name is Francis Prosper." - -"He stood," said Holmes, "to the left of the door--that is to -say, farther up the path than is necessary to reach the door?" - -"Yes, he did." - -"And he is a man with a wooden leg?" - -Something like fear sprang up in the young lady's expressive -black eyes. "Why, you are like a magician," said she. "How do you -know that?" She smiled, but there was no answering smile in -Holmes' thin, eager face. - -"I should be very glad now to go upstairs," said he. "I shall -probably wish to go over the outside of the house again. Perhaps -I had better take a look at the lower windows before I go up." - -He walked swiftly round from one to the other, pausing only at -the large one which looked from the hall onto the stable lane. -This he opened and made a very careful examination of the sill -with his powerful magnifying lens. "Now we shall go upstairs," -said he at last. - -The banker's dressing-room was a plainly furnished little -chamber, with a grey carpet, a large bureau, and a long mirror. -Holmes went to the bureau first and looked hard at the lock. - -"Which key was used to open it?" he asked. - -"That which my son himself indicated--that of the cupboard of the -lumber-room." - -"Have you it here?" - -"That is it on the dressing-table." - -Sherlock Holmes took it up and opened the bureau. - -"It is a noiseless lock," said he. "It is no wonder that it did -not wake you. This case, I presume, contains the coronet. We must -have a look at it." He opened the case, and taking out the diadem -he laid it upon the table. It was a magnificent specimen of the -jeweller's art, and the thirty-six stones were the finest that I -have ever seen. At one side of the coronet was a cracked edge, -where a corner holding three gems had been torn away. - -"Now, Mr. Holder," said Holmes, "here is the corner which -corresponds to that which has been so unfortunately lost. Might I -beg that you will break it off." - -The banker recoiled in horror. "I should not dream of trying," -said he. - -"Then I will." Holmes suddenly bent his strength upon it, but -without result. "I feel it give a little," said he; "but, though -I am exceptionally strong in the fingers, it would take me all my -time to break it. An ordinary man could not do it. Now, what do -you think would happen if I did break it, Mr. Holder? There would -be a noise like a pistol shot. Do you tell me that all this -happened within a few yards of your bed and that you heard -nothing of it?" - -"I do not know what to think. It is all dark to me." - -"But perhaps it may grow lighter as we go. What do you think, -Miss Holder?" - -"I confess that I still share my uncle's perplexity." - -"Your son had no shoes or slippers on when you saw him?" - -"He had nothing on save only his trousers and shirt." - -"Thank you. We have certainly been favoured with extraordinary -luck during this inquiry, and it will be entirely our own fault -if we do not succeed in clearing the matter up. With your -permission, Mr. Holder, I shall now continue my investigations -outside." - -He went alone, at his own request, for he explained that any -unnecessary footmarks might make his task more difficult. For an -hour or more he was at work, returning at last with his feet -heavy with snow and his features as inscrutable as ever. - -"I think that I have seen now all that there is to see, Mr. -Holder," said he; "I can serve you best by returning to my -rooms." - -"But the gems, Mr. Holmes. Where are they?" - -"I cannot tell." - -The banker wrung his hands. "I shall never see them again!" he -cried. "And my son? You give me hopes?" - -"My opinion is in no way altered." - -"Then, for God's sake, what was this dark business which was -acted in my house last night?" - -"If you can call upon me at my Baker Street rooms to-morrow -morning between nine and ten I shall be happy to do what I can to -make it clearer. I understand that you give me carte blanche to -act for you, provided only that I get back the gems, and that you -place no limit on the sum I may draw." - -"I would give my fortune to have them back." - -"Very good. I shall look into the matter between this and then. -Good-bye; it is just possible that I may have to come over here -again before evening." - -It was obvious to me that my companion's mind was now made up -about the case, although what his conclusions were was more than -I could even dimly imagine. Several times during our homeward -journey I endeavoured to sound him upon the point, but he always -glided away to some other topic, until at last I gave it over in -despair. It was not yet three when we found ourselves in our -rooms once more. He hurried to his chamber and was down again in -a few minutes dressed as a common loafer. With his collar turned -up, his shiny, seedy coat, his red cravat, and his worn boots, he -was a perfect sample of the class. - -"I think that this should do," said he, glancing into the glass -above the fireplace. "I only wish that you could come with me, -Watson, but I fear that it won't do. I may be on the trail in -this matter, or I may be following a will-o'-the-wisp, but I -shall soon know which it is. I hope that I may be back in a few -hours." He cut a slice of beef from the joint upon the sideboard, -sandwiched it between two rounds of bread, and thrusting this -rude meal into his pocket he started off upon his expedition. - -I had just finished my tea when he returned, evidently in -excellent spirits, swinging an old elastic-sided boot in his -hand. He chucked it down into a corner and helped himself to a -cup of tea. - -"I only looked in as I passed," said he. "I am going right on." - -"Where to?" - -"Oh, to the other side of the West End. It may be some time -before I get back. Don't wait up for me in case I should be -late." - -"How are you getting on?" - -"Oh, so so. Nothing to complain of. I have been out to Streatham -since I saw you last, but I did not call at the house. It is a -very sweet little problem, and I would not have missed it for a -good deal. However, I must not sit gossiping here, but must get -these disreputable clothes off and return to my highly -respectable self." - -I could see by his manner that he had stronger reasons for -satisfaction than his words alone would imply. His eyes twinkled, -and there was even a touch of colour upon his sallow cheeks. He -hastened upstairs, and a few minutes later I heard the slam of -the hall door, which told me that he was off once more upon his -congenial hunt. - -I waited until midnight, but there was no sign of his return, so -I retired to my room. It was no uncommon thing for him to be away -for days and nights on end when he was hot upon a scent, so that -his lateness caused me no surprise. I do not know at what hour he -came in, but when I came down to breakfast in the morning there -he was with a cup of coffee in one hand and the paper in the -other, as fresh and trim as possible. - -"You will excuse my beginning without you, Watson," said he, "but -you remember that our client has rather an early appointment this -morning." - -"Why, it is after nine now," I answered. "I should not be -surprised if that were he. I thought I heard a ring." - -It was, indeed, our friend the financier. I was shocked by the -change which had come over him, for his face which was naturally -of a broad and massive mould, was now pinched and fallen in, -while his hair seemed to me at least a shade whiter. He entered -with a weariness and lethargy which was even more painful than -his violence of the morning before, and he dropped heavily into -the armchair which I pushed forward for him. - -"I do not know what I have done to be so severely tried," said -he. "Only two days ago I was a happy and prosperous man, without -a care in the world. Now I am left to a lonely and dishonoured -age. One sorrow comes close upon the heels of another. My niece, -Mary, has deserted me." - -"Deserted you?" - -"Yes. Her bed this morning had not been slept in, her room was -empty, and a note for me lay upon the hall table. I had said to -her last night, in sorrow and not in anger, that if she had -married my boy all might have been well with him. Perhaps it was -thoughtless of me to say so. It is to that remark that she refers -in this note: - -"'MY DEAREST UNCLE:--I feel that I have brought trouble upon you, -and that if I had acted differently this terrible misfortune -might never have occurred. I cannot, with this thought in my -mind, ever again be happy under your roof, and I feel that I must -leave you forever. Do not worry about my future, for that is -provided for; and, above all, do not search for me, for it will -be fruitless labour and an ill-service to me. In life or in -death, I am ever your loving,--MARY.' - -"What could she mean by that note, Mr. Holmes? Do you think it -points to suicide?" - -"No, no, nothing of the kind. It is perhaps the best possible -solution. I trust, Mr. Holder, that you are nearing the end of -your troubles." - -"Ha! You say so! You have heard something, Mr. Holmes; you have -learned something! Where are the gems?" - -"You would not think 1000 pounds apiece an excessive sum for -them?" - -"I would pay ten." - -"That would be unnecessary. Three thousand will cover the matter. -And there is a little reward, I fancy. Have you your check-book? -Here is a pen. Better make it out for 4000 pounds." - -With a dazed face the banker made out the required check. Holmes -walked over to his desk, took out a little triangular piece of -gold with three gems in it, and threw it down upon the table. - -With a shriek of joy our client clutched it up. - -"You have it!" he gasped. "I am saved! I am saved!" - -The reaction of joy was as passionate as his grief had been, and -he hugged his recovered gems to his bosom. - -"There is one other thing you owe, Mr. Holder," said Sherlock -Holmes rather sternly. - -"Owe!" He caught up a pen. "Name the sum, and I will pay it." - -"No, the debt is not to me. You owe a very humble apology to that -noble lad, your son, who has carried himself in this matter as I -should be proud to see my own son do, should I ever chance to -have one." - -"Then it was not Arthur who took them?" - -"I told you yesterday, and I repeat to-day, that it was not." - -"You are sure of it! Then let us hurry to him at once to let him -know that the truth is known." - -"He knows it already. When I had cleared it all up I had an -interview with him, and finding that he would not tell me the -story, I told it to him, on which he had to confess that I was -right and to add the very few details which were not yet quite -clear to me. Your news of this morning, however, may open his -lips." - -"For heaven's sake, tell me, then, what is this extraordinary -mystery!" - -"I will do so, and I will show you the steps by which I reached -it. And let me say to you, first, that which it is hardest for me -to say and for you to hear: there has been an understanding -between Sir George Burnwell and your niece Mary. They have now -fled together." - -"My Mary? Impossible!" - -"It is unfortunately more than possible; it is certain. Neither -you nor your son knew the true character of this man when you -admitted him into your family circle. He is one of the most -dangerous men in England--a ruined gambler, an absolutely -desperate villain, a man without heart or conscience. Your niece -knew nothing of such men. When he breathed his vows to her, as he -had done to a hundred before her, she flattered herself that she -alone had touched his heart. The devil knows best what he said, -but at least she became his tool and was in the habit of seeing -him nearly every evening." - -"I cannot, and I will not, believe it!" cried the banker with an -ashen face. - -"I will tell you, then, what occurred in your house last night. -Your niece, when you had, as she thought, gone to your room, -slipped down and talked to her lover through the window which -leads into the stable lane. His footmarks had pressed right -through the snow, so long had he stood there. She told him of the -coronet. His wicked lust for gold kindled at the news, and he -bent her to his will. I have no doubt that she loved you, but -there are women in whom the love of a lover extinguishes all -other loves, and I think that she must have been one. She had -hardly listened to his instructions when she saw you coming -downstairs, on which she closed the window rapidly and told you -about one of the servants' escapade with her wooden-legged lover, -which was all perfectly true. - -"Your boy, Arthur, went to bed after his interview with you but -he slept badly on account of his uneasiness about his club debts. -In the middle of the night he heard a soft tread pass his door, -so he rose and, looking out, was surprised to see his cousin -walking very stealthily along the passage until she disappeared -into your dressing-room. Petrified with astonishment, the lad -slipped on some clothes and waited there in the dark to see what -would come of this strange affair. Presently she emerged from the -room again, and in the light of the passage-lamp your son saw -that she carried the precious coronet in her hands. She passed -down the stairs, and he, thrilling with horror, ran along and -slipped behind the curtain near your door, whence he could see -what passed in the hall beneath. He saw her stealthily open the -window, hand out the coronet to someone in the gloom, and then -closing it once more hurry back to her room, passing quite close -to where he stood hid behind the curtain. - -"As long as she was on the scene he could not take any action -without a horrible exposure of the woman whom he loved. But the -instant that she was gone he realised how crushing a misfortune -this would be for you, and how all-important it was to set it -right. He rushed down, just as he was, in his bare feet, opened -the window, sprang out into the snow, and ran down the lane, -where he could see a dark figure in the moonlight. Sir George -Burnwell tried to get away, but Arthur caught him, and there was -a struggle between them, your lad tugging at one side of the -coronet, and his opponent at the other. In the scuffle, your son -struck Sir George and cut him over the eye. Then something -suddenly snapped, and your son, finding that he had the coronet -in his hands, rushed back, closed the window, ascended to your -room, and had just observed that the coronet had been twisted in -the struggle and was endeavouring to straighten it when you -appeared upon the scene." - -"Is it possible?" gasped the banker. - -"You then roused his anger by calling him names at a moment when -he felt that he had deserved your warmest thanks. He could not -explain the true state of affairs without betraying one who -certainly deserved little enough consideration at his hands. He -took the more chivalrous view, however, and preserved her -secret." - -"And that was why she shrieked and fainted when she saw the -coronet," cried Mr. Holder. "Oh, my God! what a blind fool I have -been! And his asking to be allowed to go out for five minutes! -The dear fellow wanted to see if the missing piece were at the -scene of the struggle. How cruelly I have misjudged him!" - -"When I arrived at the house," continued Holmes, "I at once went -very carefully round it to observe if there were any traces in -the snow which might help me. I knew that none had fallen since -the evening before, and also that there had been a strong frost -to preserve impressions. I passed along the tradesmen's path, but -found it all trampled down and indistinguishable. Just beyond it, -however, at the far side of the kitchen door, a woman had stood -and talked with a man, whose round impressions on one side showed -that he had a wooden leg. I could even tell that they had been -disturbed, for the woman had run back swiftly to the door, as was -shown by the deep toe and light heel marks, while Wooden-leg had -waited a little, and then had gone away. I thought at the time -that this might be the maid and her sweetheart, of whom you had -already spoken to me, and inquiry showed it was so. I passed -round the garden without seeing anything more than random tracks, -which I took to be the police; but when I got into the stable -lane a very long and complex story was written in the snow in -front of me. - -"There was a double line of tracks of a booted man, and a second -double line which I saw with delight belonged to a man with naked -feet. I was at once convinced from what you had told me that the -latter was your son. The first had walked both ways, but the -other had run swiftly, and as his tread was marked in places over -the depression of the boot, it was obvious that he had passed -after the other. I followed them up and found they led to the -hall window, where Boots had worn all the snow away while -waiting. Then I walked to the other end, which was a hundred -yards or more down the lane. I saw where Boots had faced round, -where the snow was cut up as though there had been a struggle, -and, finally, where a few drops of blood had fallen, to show me -that I was not mistaken. Boots had then run down the lane, and -another little smudge of blood showed that it was he who had been -hurt. When he came to the highroad at the other end, I found that -the pavement had been cleared, so there was an end to that clue. - -"On entering the house, however, I examined, as you remember, the -sill and framework of the hall window with my lens, and I could -at once see that someone had passed out. I could distinguish the -outline of an instep where the wet foot had been placed in coming -in. I was then beginning to be able to form an opinion as to what -had occurred. A man had waited outside the window; someone had -brought the gems; the deed had been overseen by your son; he had -pursued the thief; had struggled with him; they had each tugged -at the coronet, their united strength causing injuries which -neither alone could have effected. He had returned with the -prize, but had left a fragment in the grasp of his opponent. So -far I was clear. The question now was, who was the man and who -was it brought him the coronet? - -"It is an old maxim of mine that when you have excluded the -impossible, whatever remains, however improbable, must be the -truth. Now, I knew that it was not you who had brought it down, -so there only remained your niece and the maids. But if it were -the maids, why should your son allow himself to be accused in -their place? There could be no possible reason. As he loved his -cousin, however, there was an excellent explanation why he should -retain her secret--the more so as the secret was a disgraceful -one. When I remembered that you had seen her at that window, and -how she had fainted on seeing the coronet again, my conjecture -became a certainty. - -"And who could it be who was her confederate? A lover evidently, -for who else could outweigh the love and gratitude which she must -feel to you? I knew that you went out little, and that your -circle of friends was a very limited one. But among them was Sir -George Burnwell. I had heard of him before as being a man of evil -reputation among women. It must have been he who wore those boots -and retained the missing gems. Even though he knew that Arthur -had discovered him, he might still flatter himself that he was -safe, for the lad could not say a word without compromising his -own family. - -"Well, your own good sense will suggest what measures I took -next. I went in the shape of a loafer to Sir George's house, -managed to pick up an acquaintance with his valet, learned that -his master had cut his head the night before, and, finally, at -the expense of six shillings, made all sure by buying a pair of -his cast-off shoes. With these I journeyed down to Streatham and -saw that they exactly fitted the tracks." - -"I saw an ill-dressed vagabond in the lane yesterday evening," -said Mr. Holder. - -"Precisely. It was I. I found that I had my man, so I came home -and changed my clothes. It was a delicate part which I had to -play then, for I saw that a prosecution must be avoided to avert -scandal, and I knew that so astute a villain would see that our -hands were tied in the matter. I went and saw him. At first, of -course, he denied everything. But when I gave him every -particular that had occurred, he tried to bluster and took down a -life-preserver from the wall. I knew my man, however, and I -clapped a pistol to his head before he could strike. Then he -became a little more reasonable. I told him that we would give -him a price for the stones he held--1000 pounds apiece. That -brought out the first signs of grief that he had shown. 'Why, -dash it all!' said he, 'I've let them go at six hundred for the -three!' I soon managed to get the address of the receiver who had -them, on promising him that there would be no prosecution. Off I -set to him, and after much chaffering I got our stones at 1000 -pounds apiece. Then I looked in upon your son, told him that all -was right, and eventually got to my bed about two o'clock, after -what I may call a really hard day's work." - -"A day which has saved England from a great public scandal," said -the banker, rising. "Sir, I cannot find words to thank you, but -you shall not find me ungrateful for what you have done. Your -skill has indeed exceeded all that I have heard of it. And now I -must fly to my dear boy to apologise to him for the wrong which I -have done him. As to what you tell me of poor Mary, it goes to my -very heart. Not even your skill can inform me where she is now." - -"I think that we may safely say," returned Holmes, "that she is -wherever Sir George Burnwell is. It is equally certain, too, that -whatever her sins are, they will soon receive a more than -sufficient punishment." - - - -XII. THE ADVENTURE OF THE COPPER BEECHES - -"To the man who loves art for its own sake," remarked Sherlock -Holmes, tossing aside the advertisement sheet of the Daily -Telegraph, "it is frequently in its least important and lowliest -manifestations that the keenest pleasure is to be derived. It is -pleasant to me to observe, Watson, that you have so far grasped -this truth that in these little records of our cases which you -have been good enough to draw up, and, I am bound to say, -occasionally to embellish, you have given prominence not so much -to the many causes clbres and sensational trials in which I -have figured but rather to those incidents which may have been -trivial in themselves, but which have given room for those -faculties of deduction and of logical synthesis which I have made -my special province." - -"And yet," said I, smiling, "I cannot quite hold myself absolved -from the charge of sensationalism which has been urged against my -records." - -"You have erred, perhaps," he observed, taking up a glowing -cinder with the tongs and lighting with it the long cherry-wood -pipe which was wont to replace his clay when he was in a -disputatious rather than a meditative mood--"you have erred -perhaps in attempting to put colour and life into each of your -statements instead of confining yourself to the task of placing -upon record that severe reasoning from cause to effect which is -really the only notable feature about the thing." - -"It seems to me that I have done you full justice in the matter," -I remarked with some coldness, for I was repelled by the egotism -which I had more than once observed to be a strong factor in my -friend's singular character. - -"No, it is not selfishness or conceit," said he, answering, as -was his wont, my thoughts rather than my words. "If I claim full -justice for my art, it is because it is an impersonal thing--a -thing beyond myself. Crime is common. Logic is rare. Therefore it -is upon the logic rather than upon the crime that you should -dwell. You have degraded what should have been a course of -lectures into a series of tales." - -It was a cold morning of the early spring, and we sat after -breakfast on either side of a cheery fire in the old room at -Baker Street. A thick fog rolled down between the lines of -dun-coloured houses, and the opposing windows loomed like dark, -shapeless blurs through the heavy yellow wreaths. Our gas was lit -and shone on the white cloth and glimmer of china and metal, for -the table had not been cleared yet. Sherlock Holmes had been -silent all the morning, dipping continuously into the -advertisement columns of a succession of papers until at last, -having apparently given up his search, he had emerged in no very -sweet temper to lecture me upon my literary shortcomings. - -"At the same time," he remarked after a pause, during which he -had sat puffing at his long pipe and gazing down into the fire, -"you can hardly be open to a charge of sensationalism, for out of -these cases which you have been so kind as to interest yourself -in, a fair proportion do not treat of crime, in its legal sense, -at all. The small matter in which I endeavoured to help the King -of Bohemia, the singular experience of Miss Mary Sutherland, the -problem connected with the man with the twisted lip, and the -incident of the noble bachelor, were all matters which are -outside the pale of the law. But in avoiding the sensational, I -fear that you may have bordered on the trivial." - -"The end may have been so," I answered, "but the methods I hold -to have been novel and of interest." - -"Pshaw, my dear fellow, what do the public, the great unobservant -public, who could hardly tell a weaver by his tooth or a -compositor by his left thumb, care about the finer shades of -analysis and deduction! But, indeed, if you are trivial, I cannot -blame you, for the days of the great cases are past. Man, or at -least criminal man, has lost all enterprise and originality. As -to my own little practice, it seems to be degenerating into an -agency for recovering lost lead pencils and giving advice to -young ladies from boarding-schools. I think that I have touched -bottom at last, however. This note I had this morning marks my -zero-point, I fancy. Read it!" He tossed a crumpled letter across -to me. - -It was dated from Montague Place upon the preceding evening, and -ran thus: - -"DEAR MR. HOLMES:--I am very anxious to consult you as to whether -I should or should not accept a situation which has been offered -to me as governess. I shall call at half-past ten to-morrow if I -do not inconvenience you. Yours faithfully, - "VIOLET HUNTER." - -"Do you know the young lady?" I asked. - -"Not I." - -"It is half-past ten now." - -"Yes, and I have no doubt that is her ring." - -"It may turn out to be of more interest than you think. You -remember that the affair of the blue carbuncle, which appeared to -be a mere whim at first, developed into a serious investigation. -It may be so in this case, also." - -"Well, let us hope so. But our doubts will very soon be solved, -for here, unless I am much mistaken, is the person in question." - -As he spoke the door opened and a young lady entered the room. -She was plainly but neatly dressed, with a bright, quick face, -freckled like a plover's egg, and with the brisk manner of a -woman who has had her own way to make in the world. - -"You will excuse my troubling you, I am sure," said she, as my -companion rose to greet her, "but I have had a very strange -experience, and as I have no parents or relations of any sort -from whom I could ask advice, I thought that perhaps you would be -kind enough to tell me what I should do." - -"Pray take a seat, Miss Hunter. I shall be happy to do anything -that I can to serve you." - -I could see that Holmes was favourably impressed by the manner -and speech of his new client. He looked her over in his searching -fashion, and then composed himself, with his lids drooping and -his finger-tips together, to listen to her story. - -"I have been a governess for five years," said she, "in the -family of Colonel Spence Munro, but two months ago the colonel -received an appointment at Halifax, in Nova Scotia, and took his -children over to America with him, so that I found myself without -a situation. I advertised, and I answered advertisements, but -without success. At last the little money which I had saved began -to run short, and I was at my wit's end as to what I should do. - -"There is a well-known agency for governesses in the West End -called Westaway's, and there I used to call about once a week in -order to see whether anything had turned up which might suit me. -Westaway was the name of the founder of the business, but it is -really managed by Miss Stoper. She sits in her own little office, -and the ladies who are seeking employment wait in an anteroom, -and are then shown in one by one, when she consults her ledgers -and sees whether she has anything which would suit them. - -"Well, when I called last week I was shown into the little office -as usual, but I found that Miss Stoper was not alone. A -prodigiously stout man with a very smiling face and a great heavy -chin which rolled down in fold upon fold over his throat sat at -her elbow with a pair of glasses on his nose, looking very -earnestly at the ladies who entered. As I came in he gave quite a -jump in his chair and turned quickly to Miss Stoper. - -"'That will do,' said he; 'I could not ask for anything better. -Capital! capital!' He seemed quite enthusiastic and rubbed his -hands together in the most genial fashion. He was such a -comfortable-looking man that it was quite a pleasure to look at -him. - -"'You are looking for a situation, miss?' he asked. - -"'Yes, sir.' - -"'As governess?' - -"'Yes, sir.' - -"'And what salary do you ask?' - -"'I had 4 pounds a month in my last place with Colonel Spence -Munro.' - -"'Oh, tut, tut! sweating--rank sweating!' he cried, throwing his -fat hands out into the air like a man who is in a boiling -passion. 'How could anyone offer so pitiful a sum to a lady with -such attractions and accomplishments?' - -"'My accomplishments, sir, may be less than you imagine,' said I. -'A little French, a little German, music, and drawing--' - -"'Tut, tut!' he cried. 'This is all quite beside the question. -The point is, have you or have you not the bearing and deportment -of a lady? There it is in a nutshell. If you have not, you are -not fitted for the rearing of a child who may some day play a -considerable part in the history of the country. But if you have -why, then, how could any gentleman ask you to condescend to -accept anything under the three figures? Your salary with me, -madam, would commence at 100 pounds a year.' - -"You may imagine, Mr. Holmes, that to me, destitute as I was, -such an offer seemed almost too good to be true. The gentleman, -however, seeing perhaps the look of incredulity upon my face, -opened a pocket-book and took out a note. - -"'It is also my custom,' said he, smiling in the most pleasant -fashion until his eyes were just two little shining slits amid -the white creases of his face, 'to advance to my young ladies -half their salary beforehand, so that they may meet any little -expenses of their journey and their wardrobe.' - -"It seemed to me that I had never met so fascinating and so -thoughtful a man. As I was already in debt to my tradesmen, the -advance was a great convenience, and yet there was something -unnatural about the whole transaction which made me wish to know -a little more before I quite committed myself. - -"'May I ask where you live, sir?' said I. - -"'Hampshire. Charming rural place. The Copper Beeches, five miles -on the far side of Winchester. It is the most lovely country, my -dear young lady, and the dearest old country-house.' - -"'And my duties, sir? I should be glad to know what they would -be.' - -"'One child--one dear little romper just six years old. Oh, if -you could see him killing cockroaches with a slipper! Smack! -smack! smack! Three gone before you could wink!' He leaned back -in his chair and laughed his eyes into his head again. - -"I was a little startled at the nature of the child's amusement, -but the father's laughter made me think that perhaps he was -joking. - -"'My sole duties, then,' I asked, 'are to take charge of a single -child?' - -"'No, no, not the sole, not the sole, my dear young lady,' he -cried. 'Your duty would be, as I am sure your good sense would -suggest, to obey any little commands my wife might give, provided -always that they were such commands as a lady might with -propriety obey. You see no difficulty, heh?' - -"'I should be happy to make myself useful.' - -"'Quite so. In dress now, for example. We are faddy people, you -know--faddy but kind-hearted. If you were asked to wear any dress -which we might give you, you would not object to our little whim. -Heh?' - -"'No,' said I, considerably astonished at his words. - -"'Or to sit here, or sit there, that would not be offensive to -you?' - -"'Oh, no.' - -"'Or to cut your hair quite short before you come to us?' - -"I could hardly believe my ears. As you may observe, Mr. Holmes, -my hair is somewhat luxuriant, and of a rather peculiar tint of -chestnut. It has been considered artistic. I could not dream of -sacrificing it in this offhand fashion. - -"'I am afraid that that is quite impossible,' said I. He had been -watching me eagerly out of his small eyes, and I could see a -shadow pass over his face as I spoke. - -"'I am afraid that it is quite essential,' said he. 'It is a -little fancy of my wife's, and ladies' fancies, you know, madam, -ladies' fancies must be consulted. And so you won't cut your -hair?' - -"'No, sir, I really could not,' I answered firmly. - -"'Ah, very well; then that quite settles the matter. It is a -pity, because in other respects you would really have done very -nicely. In that case, Miss Stoper, I had best inspect a few more -of your young ladies.' - -"The manageress had sat all this while busy with her papers -without a word to either of us, but she glanced at me now with so -much annoyance upon her face that I could not help suspecting -that she had lost a handsome commission through my refusal. - -"'Do you desire your name to be kept upon the books?' she asked. - -"'If you please, Miss Stoper.' - -"'Well, really, it seems rather useless, since you refuse the -most excellent offers in this fashion,' said she sharply. 'You -can hardly expect us to exert ourselves to find another such -opening for you. Good-day to you, Miss Hunter.' She struck a gong -upon the table, and I was shown out by the page. - -"Well, Mr. Holmes, when I got back to my lodgings and found -little enough in the cupboard, and two or three bills upon the -table, I began to ask myself whether I had not done a very -foolish thing. After all, if these people had strange fads and -expected obedience on the most extraordinary matters, they were -at least ready to pay for their eccentricity. Very few -governesses in England are getting 100 pounds a year. Besides, -what use was my hair to me? Many people are improved by wearing -it short and perhaps I should be among the number. Next day I was -inclined to think that I had made a mistake, and by the day after -I was sure of it. I had almost overcome my pride so far as to go -back to the agency and inquire whether the place was still open -when I received this letter from the gentleman himself. I have it -here and I will read it to you: - - "'The Copper Beeches, near Winchester. -"'DEAR MISS HUNTER:--Miss Stoper has very kindly given me your -address, and I write from here to ask you whether you have -reconsidered your decision. My wife is very anxious that you -should come, for she has been much attracted by my description of -you. We are willing to give 30 pounds a quarter, or 120 pounds a -year, so as to recompense you for any little inconvenience which -our fads may cause you. They are not very exacting, after all. My -wife is fond of a particular shade of electric blue and would -like you to wear such a dress indoors in the morning. You need -not, however, go to the expense of purchasing one, as we have one -belonging to my dear daughter Alice (now in Philadelphia), which -would, I should think, fit you very well. Then, as to sitting -here or there, or amusing yourself in any manner indicated, that -need cause you no inconvenience. As regards your hair, it is no -doubt a pity, especially as I could not help remarking its beauty -during our short interview, but I am afraid that I must remain -firm upon this point, and I only hope that the increased salary -may recompense you for the loss. Your duties, as far as the child -is concerned, are very light. Now do try to come, and I shall -meet you with the dog-cart at Winchester. Let me know your train. -Yours faithfully, JEPHRO RUCASTLE.' - -"That is the letter which I have just received, Mr. Holmes, and -my mind is made up that I will accept it. I thought, however, -that before taking the final step I should like to submit the -whole matter to your consideration." - -"Well, Miss Hunter, if your mind is made up, that settles the -question," said Holmes, smiling. - -"But you would not advise me to refuse?" - -"I confess that it is not the situation which I should like to -see a sister of mine apply for." - -"What is the meaning of it all, Mr. Holmes?" - -"Ah, I have no data. I cannot tell. Perhaps you have yourself -formed some opinion?" - -"Well, there seems to me to be only one possible solution. Mr. -Rucastle seemed to be a very kind, good-natured man. Is it not -possible that his wife is a lunatic, that he desires to keep the -matter quiet for fear she should be taken to an asylum, and that -he humours her fancies in every way in order to prevent an -outbreak?" - -"That is a possible solution--in fact, as matters stand, it is -the most probable one. But in any case it does not seem to be a -nice household for a young lady." - -"But the money, Mr. Holmes, the money!" - -"Well, yes, of course the pay is good--too good. That is what -makes me uneasy. Why should they give you 120 pounds a year, when -they could have their pick for 40 pounds? There must be some -strong reason behind." - -"I thought that if I told you the circumstances you would -understand afterwards if I wanted your help. I should feel so -much stronger if I felt that you were at the back of me." - -"Oh, you may carry that feeling away with you. I assure you that -your little problem promises to be the most interesting which has -come my way for some months. There is something distinctly novel -about some of the features. If you should find yourself in doubt -or in danger--" - -"Danger! What danger do you foresee?" - -Holmes shook his head gravely. "It would cease to be a danger if -we could define it," said he. "But at any time, day or night, a -telegram would bring me down to your help." - -"That is enough." She rose briskly from her chair with the -anxiety all swept from her face. "I shall go down to Hampshire -quite easy in my mind now. I shall write to Mr. Rucastle at once, -sacrifice my poor hair to-night, and start for Winchester -to-morrow." With a few grateful words to Holmes she bade us both -good-night and bustled off upon her way. - -"At least," said I as we heard her quick, firm steps descending -the stairs, "she seems to be a young lady who is very well able -to take care of herself." - -"And she would need to be," said Holmes gravely. "I am much -mistaken if we do not hear from her before many days are past." - -It was not very long before my friend's prediction was fulfilled. -A fortnight went by, during which I frequently found my thoughts -turning in her direction and wondering what strange side-alley of -human experience this lonely woman had strayed into. The unusual -salary, the curious conditions, the light duties, all pointed to -something abnormal, though whether a fad or a plot, or whether -the man were a philanthropist or a villain, it was quite beyond -my powers to determine. As to Holmes, I observed that he sat -frequently for half an hour on end, with knitted brows and an -abstracted air, but he swept the matter away with a wave of his -hand when I mentioned it. "Data! data! data!" he cried -impatiently. "I can't make bricks without clay." And yet he would -always wind up by muttering that no sister of his should ever -have accepted such a situation. - -The telegram which we eventually received came late one night -just as I was thinking of turning in and Holmes was settling down -to one of those all-night chemical researches which he frequently -indulged in, when I would leave him stooping over a retort and a -test-tube at night and find him in the same position when I came -down to breakfast in the morning. He opened the yellow envelope, -and then, glancing at the message, threw it across to me. - -"Just look up the trains in Bradshaw," said he, and turned back -to his chemical studies. - -The summons was a brief and urgent one. - -"Please be at the Black Swan Hotel at Winchester at midday -to-morrow," it said. "Do come! I am at my wit's end. HUNTER." - -"Will you come with me?" asked Holmes, glancing up. - -"I should wish to." - -"Just look it up, then." - -"There is a train at half-past nine," said I, glancing over my -Bradshaw. "It is due at Winchester at 11:30." - -"That will do very nicely. Then perhaps I had better postpone my -analysis of the acetones, as we may need to be at our best in the -morning." - -By eleven o'clock the next day we were well upon our way to the -old English capital. Holmes had been buried in the morning papers -all the way down, but after we had passed the Hampshire border he -threw them down and began to admire the scenery. It was an ideal -spring day, a light blue sky, flecked with little fleecy white -clouds drifting across from west to east. The sun was shining -very brightly, and yet there was an exhilarating nip in the air, -which set an edge to a man's energy. All over the countryside, -away to the rolling hills around Aldershot, the little red and -grey roofs of the farm-steadings peeped out from amid the light -green of the new foliage. - -"Are they not fresh and beautiful?" I cried with all the -enthusiasm of a man fresh from the fogs of Baker Street. - -But Holmes shook his head gravely. - -"Do you know, Watson," said he, "that it is one of the curses of -a mind with a turn like mine that I must look at everything with -reference to my own special subject. You look at these scattered -houses, and you are impressed by their beauty. I look at them, -and the only thought which comes to me is a feeling of their -isolation and of the impunity with which crime may be committed -there." - -"Good heavens!" I cried. "Who would associate crime with these -dear old homesteads?" - -"They always fill me with a certain horror. It is my belief, -Watson, founded upon my experience, that the lowest and vilest -alleys in London do not present a more dreadful record of sin -than does the smiling and beautiful countryside." - -"You horrify me!" - -"But the reason is very obvious. The pressure of public opinion -can do in the town what the law cannot accomplish. There is no -lane so vile that the scream of a tortured child, or the thud of -a drunkard's blow, does not beget sympathy and indignation among -the neighbours, and then the whole machinery of justice is ever -so close that a word of complaint can set it going, and there is -but a step between the crime and the dock. But look at these -lonely houses, each in its own fields, filled for the most part -with poor ignorant folk who know little of the law. Think of the -deeds of hellish cruelty, the hidden wickedness which may go on, -year in, year out, in such places, and none the wiser. Had this -lady who appeals to us for help gone to live in Winchester, I -should never have had a fear for her. It is the five miles of -country which makes the danger. Still, it is clear that she is -not personally threatened." - -"No. If she can come to Winchester to meet us she can get away." - -"Quite so. She has her freedom." - -"What CAN be the matter, then? Can you suggest no explanation?" - -"I have devised seven separate explanations, each of which would -cover the facts as far as we know them. But which of these is -correct can only be determined by the fresh information which we -shall no doubt find waiting for us. Well, there is the tower of -the cathedral, and we shall soon learn all that Miss Hunter has -to tell." - -The Black Swan is an inn of repute in the High Street, at no -distance from the station, and there we found the young lady -waiting for us. She had engaged a sitting-room, and our lunch -awaited us upon the table. - -"I am so delighted that you have come," she said earnestly. "It -is so very kind of you both; but indeed I do not know what I -should do. Your advice will be altogether invaluable to me." - -"Pray tell us what has happened to you." - -"I will do so, and I must be quick, for I have promised Mr. -Rucastle to be back before three. I got his leave to come into -town this morning, though he little knew for what purpose." - -"Let us have everything in its due order." Holmes thrust his long -thin legs out towards the fire and composed himself to listen. - -"In the first place, I may say that I have met, on the whole, -with no actual ill-treatment from Mr. and Mrs. Rucastle. It is -only fair to them to say that. But I cannot understand them, and -I am not easy in my mind about them." - -"What can you not understand?" - -"Their reasons for their conduct. But you shall have it all just -as it occurred. When I came down, Mr. Rucastle met me here and -drove me in his dog-cart to the Copper Beeches. It is, as he -said, beautifully situated, but it is not beautiful in itself, -for it is a large square block of a house, whitewashed, but all -stained and streaked with damp and bad weather. There are grounds -round it, woods on three sides, and on the fourth a field which -slopes down to the Southampton highroad, which curves past about -a hundred yards from the front door. This ground in front belongs -to the house, but the woods all round are part of Lord -Southerton's preserves. A clump of copper beeches immediately in -front of the hall door has given its name to the place. - -"I was driven over by my employer, who was as amiable as ever, -and was introduced by him that evening to his wife and the child. -There was no truth, Mr. Holmes, in the conjecture which seemed to -us to be probable in your rooms at Baker Street. Mrs. Rucastle is -not mad. I found her to be a silent, pale-faced woman, much -younger than her husband, not more than thirty, I should think, -while he can hardly be less than forty-five. From their -conversation I have gathered that they have been married about -seven years, that he was a widower, and that his only child by -the first wife was the daughter who has gone to Philadelphia. Mr. -Rucastle told me in private that the reason why she had left them -was that she had an unreasoning aversion to her stepmother. As -the daughter could not have been less than twenty, I can quite -imagine that her position must have been uncomfortable with her -father's young wife. - -"Mrs. Rucastle seemed to me to be colourless in mind as well as -in feature. She impressed me neither favourably nor the reverse. -She was a nonentity. It was easy to see that she was passionately -devoted both to her husband and to her little son. Her light grey -eyes wandered continually from one to the other, noting every -little want and forestalling it if possible. He was kind to her -also in his bluff, boisterous fashion, and on the whole they -seemed to be a happy couple. And yet she had some secret sorrow, -this woman. She would often be lost in deep thought, with the -saddest look upon her face. More than once I have surprised her -in tears. I have thought sometimes that it was the disposition of -her child which weighed upon her mind, for I have never met so -utterly spoiled and so ill-natured a little creature. He is small -for his age, with a head which is quite disproportionately large. -His whole life appears to be spent in an alternation between -savage fits of passion and gloomy intervals of sulking. Giving -pain to any creature weaker than himself seems to be his one idea -of amusement, and he shows quite remarkable talent in planning -the capture of mice, little birds, and insects. But I would -rather not talk about the creature, Mr. Holmes, and, indeed, he -has little to do with my story." - -"I am glad of all details," remarked my friend, "whether they -seem to you to be relevant or not." - -"I shall try not to miss anything of importance. The one -unpleasant thing about the house, which struck me at once, was -the appearance and conduct of the servants. There are only two, a -man and his wife. Toller, for that is his name, is a rough, -uncouth man, with grizzled hair and whiskers, and a perpetual -smell of drink. Twice since I have been with them he has been -quite drunk, and yet Mr. Rucastle seemed to take no notice of it. -His wife is a very tall and strong woman with a sour face, as -silent as Mrs. Rucastle and much less amiable. They are a most -unpleasant couple, but fortunately I spend most of my time in the -nursery and my own room, which are next to each other in one -corner of the building. - -"For two days after my arrival at the Copper Beeches my life was -very quiet; on the third, Mrs. Rucastle came down just after -breakfast and whispered something to her husband. - -"'Oh, yes,' said he, turning to me, 'we are very much obliged to -you, Miss Hunter, for falling in with our whims so far as to cut -your hair. I assure you that it has not detracted in the tiniest -iota from your appearance. We shall now see how the electric-blue -dress will become you. You will find it laid out upon the bed in -your room, and if you would be so good as to put it on we should -both be extremely obliged.' - -"The dress which I found waiting for me was of a peculiar shade -of blue. It was of excellent material, a sort of beige, but it -bore unmistakable signs of having been worn before. It could not -have been a better fit if I had been measured for it. Both Mr. -and Mrs. Rucastle expressed a delight at the look of it, which -seemed quite exaggerated in its vehemence. They were waiting for -me in the drawing-room, which is a very large room, stretching -along the entire front of the house, with three long windows -reaching down to the floor. A chair had been placed close to the -central window, with its back turned towards it. In this I was -asked to sit, and then Mr. Rucastle, walking up and down on the -other side of the room, began to tell me a series of the funniest -stories that I have ever listened to. You cannot imagine how -comical he was, and I laughed until I was quite weary. Mrs. -Rucastle, however, who has evidently no sense of humour, never so -much as smiled, but sat with her hands in her lap, and a sad, -anxious look upon her face. After an hour or so, Mr. Rucastle -suddenly remarked that it was time to commence the duties of the -day, and that I might change my dress and go to little Edward in -the nursery. - -"Two days later this same performance was gone through under -exactly similar circumstances. Again I changed my dress, again I -sat in the window, and again I laughed very heartily at the funny -stories of which my employer had an immense rpertoire, and which -he told inimitably. Then he handed me a yellow-backed novel, and -moving my chair a little sideways, that my own shadow might not -fall upon the page, he begged me to read aloud to him. I read for -about ten minutes, beginning in the heart of a chapter, and then -suddenly, in the middle of a sentence, he ordered me to cease and -to change my dress. - -"You can easily imagine, Mr. Holmes, how curious I became as to -what the meaning of this extraordinary performance could possibly -be. They were always very careful, I observed, to turn my face -away from the window, so that I became consumed with the desire -to see what was going on behind my back. At first it seemed to be -impossible, but I soon devised a means. My hand-mirror had been -broken, so a happy thought seized me, and I concealed a piece of -the glass in my handkerchief. On the next occasion, in the midst -of my laughter, I put my handkerchief up to my eyes, and was able -with a little management to see all that there was behind me. I -confess that I was disappointed. There was nothing. At least that -was my first impression. At the second glance, however, I -perceived that there was a man standing in the Southampton Road, -a small bearded man in a grey suit, who seemed to be looking in -my direction. The road is an important highway, and there are -usually people there. This man, however, was leaning against the -railings which bordered our field and was looking earnestly up. I -lowered my handkerchief and glanced at Mrs. Rucastle to find her -eyes fixed upon me with a most searching gaze. She said nothing, -but I am convinced that she had divined that I had a mirror in my -hand and had seen what was behind me. She rose at once. - -"'Jephro,' said she, 'there is an impertinent fellow upon the -road there who stares up at Miss Hunter.' - -"'No friend of yours, Miss Hunter?' he asked. - -"'No, I know no one in these parts.' - -"'Dear me! How very impertinent! Kindly turn round and motion to -him to go away.' - -"'Surely it would be better to take no notice.' - -"'No, no, we should have him loitering here always. Kindly turn -round and wave him away like that.' - -"I did as I was told, and at the same instant Mrs. Rucastle drew -down the blind. That was a week ago, and from that time I have -not sat again in the window, nor have I worn the blue dress, nor -seen the man in the road." - -"Pray continue," said Holmes. "Your narrative promises to be a -most interesting one." - -"You will find it rather disconnected, I fear, and there may -prove to be little relation between the different incidents of -which I speak. On the very first day that I was at the Copper -Beeches, Mr. Rucastle took me to a small outhouse which stands -near the kitchen door. As we approached it I heard the sharp -rattling of a chain, and the sound as of a large animal moving -about. - -"'Look in here!' said Mr. Rucastle, showing me a slit between two -planks. 'Is he not a beauty?' - -"I looked through and was conscious of two glowing eyes, and of a -vague figure huddled up in the darkness. - -"'Don't be frightened,' said my employer, laughing at the start -which I had given. 'It's only Carlo, my mastiff. I call him mine, -but really old Toller, my groom, is the only man who can do -anything with him. We feed him once a day, and not too much then, -so that he is always as keen as mustard. Toller lets him loose -every night, and God help the trespasser whom he lays his fangs -upon. For goodness' sake don't you ever on any pretext set your -foot over the threshold at night, for it's as much as your life -is worth.' - -"The warning was no idle one, for two nights later I happened to -look out of my bedroom window about two o'clock in the morning. -It was a beautiful moonlight night, and the lawn in front of the -house was silvered over and almost as bright as day. I was -standing, rapt in the peaceful beauty of the scene, when I was -aware that something was moving under the shadow of the copper -beeches. As it emerged into the moonshine I saw what it was. It -was a giant dog, as large as a calf, tawny tinted, with hanging -jowl, black muzzle, and huge projecting bones. It walked slowly -across the lawn and vanished into the shadow upon the other side. -That dreadful sentinel sent a chill to my heart which I do not -think that any burglar could have done. - -"And now I have a very strange experience to tell you. I had, as -you know, cut off my hair in London, and I had placed it in a -great coil at the bottom of my trunk. One evening, after the -child was in bed, I began to amuse myself by examining the -furniture of my room and by rearranging my own little things. -There was an old chest of drawers in the room, the two upper ones -empty and open, the lower one locked. I had filled the first two -with my linen, and as I had still much to pack away I was -naturally annoyed at not having the use of the third drawer. It -struck me that it might have been fastened by a mere oversight, -so I took out my bunch of keys and tried to open it. The very -first key fitted to perfection, and I drew the drawer open. There -was only one thing in it, but I am sure that you would never -guess what it was. It was my coil of hair. - -"I took it up and examined it. It was of the same peculiar tint, -and the same thickness. But then the impossibility of the thing -obtruded itself upon me. How could my hair have been locked in -the drawer? With trembling hands I undid my trunk, turned out the -contents, and drew from the bottom my own hair. I laid the two -tresses together, and I assure you that they were identical. Was -it not extraordinary? Puzzle as I would, I could make nothing at -all of what it meant. I returned the strange hair to the drawer, -and I said nothing of the matter to the Rucastles as I felt that -I had put myself in the wrong by opening a drawer which they had -locked. - -"I am naturally observant, as you may have remarked, Mr. Holmes, -and I soon had a pretty good plan of the whole house in my head. -There was one wing, however, which appeared not to be inhabited -at all. A door which faced that which led into the quarters of -the Tollers opened into this suite, but it was invariably locked. -One day, however, as I ascended the stair, I met Mr. Rucastle -coming out through this door, his keys in his hand, and a look on -his face which made him a very different person to the round, -jovial man to whom I was accustomed. His cheeks were red, his -brow was all crinkled with anger, and the veins stood out at his -temples with passion. He locked the door and hurried past me -without a word or a look. - -"This aroused my curiosity, so when I went out for a walk in the -grounds with my charge, I strolled round to the side from which I -could see the windows of this part of the house. There were four -of them in a row, three of which were simply dirty, while the -fourth was shuttered up. They were evidently all deserted. As I -strolled up and down, glancing at them occasionally, Mr. Rucastle -came out to me, looking as merry and jovial as ever. - -"'Ah!' said he, 'you must not think me rude if I passed you -without a word, my dear young lady. I was preoccupied with -business matters.' - -"I assured him that I was not offended. 'By the way,' said I, -'you seem to have quite a suite of spare rooms up there, and one -of them has the shutters up.' - -"He looked surprised and, as it seemed to me, a little startled -at my remark. - -"'Photography is one of my hobbies,' said he. 'I have made my -dark room up there. But, dear me! what an observant young lady we -have come upon. Who would have believed it? Who would have ever -believed it?' He spoke in a jesting tone, but there was no jest -in his eyes as he looked at me. I read suspicion there and -annoyance, but no jest. - -"Well, Mr. Holmes, from the moment that I understood that there -was something about that suite of rooms which I was not to know, -I was all on fire to go over them. It was not mere curiosity, -though I have my share of that. It was more a feeling of duty--a -feeling that some good might come from my penetrating to this -place. They talk of woman's instinct; perhaps it was woman's -instinct which gave me that feeling. At any rate, it was there, -and I was keenly on the lookout for any chance to pass the -forbidden door. - -"It was only yesterday that the chance came. I may tell you that, -besides Mr. Rucastle, both Toller and his wife find something to -do in these deserted rooms, and I once saw him carrying a large -black linen bag with him through the door. Recently he has been -drinking hard, and yesterday evening he was very drunk; and when -I came upstairs there was the key in the door. I have no doubt at -all that he had left it there. Mr. and Mrs. Rucastle were both -downstairs, and the child was with them, so that I had an -admirable opportunity. I turned the key gently in the lock, -opened the door, and slipped through. - -"There was a little passage in front of me, unpapered and -uncarpeted, which turned at a right angle at the farther end. -Round this corner were three doors in a line, the first and third -of which were open. They each led into an empty room, dusty and -cheerless, with two windows in the one and one in the other, so -thick with dirt that the evening light glimmered dimly through -them. The centre door was closed, and across the outside of it -had been fastened one of the broad bars of an iron bed, padlocked -at one end to a ring in the wall, and fastened at the other with -stout cord. The door itself was locked as well, and the key was -not there. This barricaded door corresponded clearly with the -shuttered window outside, and yet I could see by the glimmer from -beneath it that the room was not in darkness. Evidently there was -a skylight which let in light from above. As I stood in the -passage gazing at the sinister door and wondering what secret it -might veil, I suddenly heard the sound of steps within the room -and saw a shadow pass backward and forward against the little -slit of dim light which shone out from under the door. A mad, -unreasoning terror rose up in me at the sight, Mr. Holmes. My -overstrung nerves failed me suddenly, and I turned and ran--ran -as though some dreadful hand were behind me clutching at the -skirt of my dress. I rushed down the passage, through the door, -and straight into the arms of Mr. Rucastle, who was waiting -outside. - -"'So,' said he, smiling, 'it was you, then. I thought that it -must be when I saw the door open.' - -"'Oh, I am so frightened!' I panted. - -"'My dear young lady! my dear young lady!'--you cannot think how -caressing and soothing his manner was--'and what has frightened -you, my dear young lady?' - -"But his voice was just a little too coaxing. He overdid it. I -was keenly on my guard against him. - -"'I was foolish enough to go into the empty wing,' I answered. -'But it is so lonely and eerie in this dim light that I was -frightened and ran out again. Oh, it is so dreadfully still in -there!' - -"'Only that?' said he, looking at me keenly. - -"'Why, what did you think?' I asked. - -"'Why do you think that I lock this door?' - -"'I am sure that I do not know.' - -"'It is to keep people out who have no business there. Do you -see?' He was still smiling in the most amiable manner. - -"'I am sure if I had known--' - -"'Well, then, you know now. And if you ever put your foot over -that threshold again'--here in an instant the smile hardened into -a grin of rage, and he glared down at me with the face of a -demon--'I'll throw you to the mastiff.' - -"I was so terrified that I do not know what I did. I suppose that -I must have rushed past him into my room. I remember nothing -until I found myself lying on my bed trembling all over. Then I -thought of you, Mr. Holmes. I could not live there longer without -some advice. I was frightened of the house, of the man, of the -woman, of the servants, even of the child. They were all horrible -to me. If I could only bring you down all would be well. Of -course I might have fled from the house, but my curiosity was -almost as strong as my fears. My mind was soon made up. I would -send you a wire. I put on my hat and cloak, went down to the -office, which is about half a mile from the house, and then -returned, feeling very much easier. A horrible doubt came into my -mind as I approached the door lest the dog might be loose, but I -remembered that Toller had drunk himself into a state of -insensibility that evening, and I knew that he was the only one -in the household who had any influence with the savage creature, -or who would venture to set him free. I slipped in in safety and -lay awake half the night in my joy at the thought of seeing you. -I had no difficulty in getting leave to come into Winchester this -morning, but I must be back before three o'clock, for Mr. and -Mrs. Rucastle are going on a visit, and will be away all the -evening, so that I must look after the child. Now I have told you -all my adventures, Mr. Holmes, and I should be very glad if you -could tell me what it all means, and, above all, what I should -do." - -Holmes and I had listened spellbound to this extraordinary story. -My friend rose now and paced up and down the room, his hands in -his pockets, and an expression of the most profound gravity upon -his face. - -"Is Toller still drunk?" he asked. - -"Yes. I heard his wife tell Mrs. Rucastle that she could do -nothing with him." - -"That is well. And the Rucastles go out to-night?" - -"Yes." - -"Is there a cellar with a good strong lock?" - -"Yes, the wine-cellar." - -"You seem to me to have acted all through this matter like a very -brave and sensible girl, Miss Hunter. Do you think that you could -perform one more feat? I should not ask it of you if I did not -think you a quite exceptional woman." - -"I will try. What is it?" - -"We shall be at the Copper Beeches by seven o'clock, my friend -and I. The Rucastles will be gone by that time, and Toller will, -we hope, be incapable. There only remains Mrs. Toller, who might -give the alarm. If you could send her into the cellar on some -errand, and then turn the key upon her, you would facilitate -matters immensely." - -"I will do it." - -"Excellent! We shall then look thoroughly into the affair. Of -course there is only one feasible explanation. You have been -brought there to personate someone, and the real person is -imprisoned in this chamber. That is obvious. As to who this -prisoner is, I have no doubt that it is the daughter, Miss Alice -Rucastle, if I remember right, who was said to have gone to -America. You were chosen, doubtless, as resembling her in height, -figure, and the colour of your hair. Hers had been cut off, very -possibly in some illness through which she has passed, and so, of -course, yours had to be sacrificed also. By a curious chance you -came upon her tresses. The man in the road was undoubtedly some -friend of hers--possibly her fianc--and no doubt, as you wore -the girl's dress and were so like her, he was convinced from your -laughter, whenever he saw you, and afterwards from your gesture, -that Miss Rucastle was perfectly happy, and that she no longer -desired his attentions. The dog is let loose at night to prevent -him from endeavouring to communicate with her. So much is fairly -clear. The most serious point in the case is the disposition of -the child." - -"What on earth has that to do with it?" I ejaculated. - -"My dear Watson, you as a medical man are continually gaining -light as to the tendencies of a child by the study of the -parents. Don't you see that the converse is equally valid. I have -frequently gained my first real insight into the character of -parents by studying their children. This child's disposition is -abnormally cruel, merely for cruelty's sake, and whether he -derives this from his smiling father, as I should suspect, or -from his mother, it bodes evil for the poor girl who is in their -power." - -"I am sure that you are right, Mr. Holmes," cried our client. "A -thousand things come back to me which make me certain that you -have hit it. Oh, let us lose not an instant in bringing help to -this poor creature." - -"We must be circumspect, for we are dealing with a very cunning -man. We can do nothing until seven o'clock. At that hour we shall -be with you, and it will not be long before we solve the -mystery." - -We were as good as our word, for it was just seven when we -reached the Copper Beeches, having put up our trap at a wayside -public-house. The group of trees, with their dark leaves shining -like burnished metal in the light of the setting sun, were -sufficient to mark the house even had Miss Hunter not been -standing smiling on the door-step. - -"Have you managed it?" asked Holmes. - -A loud thudding noise came from somewhere downstairs. "That is -Mrs. Toller in the cellar," said she. "Her husband lies snoring -on the kitchen rug. Here are his keys, which are the duplicates -of Mr. Rucastle's." - -"You have done well indeed!" cried Holmes with enthusiasm. "Now -lead the way, and we shall soon see the end of this black -business." - -We passed up the stair, unlocked the door, followed on down a -passage, and found ourselves in front of the barricade which Miss -Hunter had described. Holmes cut the cord and removed the -transverse bar. Then he tried the various keys in the lock, but -without success. No sound came from within, and at the silence -Holmes' face clouded over. - -"I trust that we are not too late," said he. "I think, Miss -Hunter, that we had better go in without you. Now, Watson, put -your shoulder to it, and we shall see whether we cannot make our -way in." - -It was an old rickety door and gave at once before our united -strength. Together we rushed into the room. It was empty. There -was no furniture save a little pallet bed, a small table, and a -basketful of linen. The skylight above was open, and the prisoner -gone. - -"There has been some villainy here," said Holmes; "this beauty -has guessed Miss Hunter's intentions and has carried his victim -off." - -"But how?" - -"Through the skylight. We shall soon see how he managed it." He -swung himself up onto the roof. "Ah, yes," he cried, "here's the -end of a long light ladder against the eaves. That is how he did -it." - -"But it is impossible," said Miss Hunter; "the ladder was not -there when the Rucastles went away." - -"He has come back and done it. I tell you that he is a clever and -dangerous man. I should not be very much surprised if this were -he whose step I hear now upon the stair. I think, Watson, that it -would be as well for you to have your pistol ready." - -The words were hardly out of his mouth before a man appeared at -the door of the room, a very fat and burly man, with a heavy -stick in his hand. Miss Hunter screamed and shrunk against the -wall at the sight of him, but Sherlock Holmes sprang forward and -confronted him. - -"You villain!" said he, "where's your daughter?" - -The fat man cast his eyes round, and then up at the open -skylight. - -"It is for me to ask you that," he shrieked, "you thieves! Spies -and thieves! I have caught you, have I? You are in my power. I'll -serve you!" He turned and clattered down the stairs as hard as he -could go. - -"He's gone for the dog!" cried Miss Hunter. - -"I have my revolver," said I. - -"Better close the front door," cried Holmes, and we all rushed -down the stairs together. We had hardly reached the hall when we -heard the baying of a hound, and then a scream of agony, with a -horrible worrying sound which it was dreadful to listen to. An -elderly man with a red face and shaking limbs came staggering out -at a side door. - -"My God!" he cried. "Someone has loosed the dog. It's not been -fed for two days. Quick, quick, or it'll be too late!" - -Holmes and I rushed out and round the angle of the house, with -Toller hurrying behind us. There was the huge famished brute, its -black muzzle buried in Rucastle's throat, while he writhed and -screamed upon the ground. Running up, I blew its brains out, and -it fell over with its keen white teeth still meeting in the great -creases of his neck. With much labour we separated them and -carried him, living but horribly mangled, into the house. We laid -him upon the drawing-room sofa, and having dispatched the sobered -Toller to bear the news to his wife, I did what I could to -relieve his pain. We were all assembled round him when the door -opened, and a tall, gaunt woman entered the room. - -"Mrs. Toller!" cried Miss Hunter. - -"Yes, miss. Mr. Rucastle let me out when he came back before he -went up to you. Ah, miss, it is a pity you didn't let me know -what you were planning, for I would have told you that your pains -were wasted." - -"Ha!" said Holmes, looking keenly at her. "It is clear that Mrs. -Toller knows more about this matter than anyone else." - -"Yes, sir, I do, and I am ready enough to tell what I know." - -"Then, pray, sit down, and let us hear it for there are several -points on which I must confess that I am still in the dark." - -"I will soon make it clear to you," said she; "and I'd have done -so before now if I could ha' got out from the cellar. If there's -police-court business over this, you'll remember that I was the -one that stood your friend, and that I was Miss Alice's friend -too. - -"She was never happy at home, Miss Alice wasn't, from the time -that her father married again. She was slighted like and had no -say in anything, but it never really became bad for her until -after she met Mr. Fowler at a friend's house. As well as I could -learn, Miss Alice had rights of her own by will, but she was so -quiet and patient, she was, that she never said a word about them -but just left everything in Mr. Rucastle's hands. He knew he was -safe with her; but when there was a chance of a husband coming -forward, who would ask for all that the law would give him, then -her father thought it time to put a stop on it. He wanted her to -sign a paper, so that whether she married or not, he could use -her money. When she wouldn't do it, he kept on worrying her until -she got brain-fever, and for six weeks was at death's door. Then -she got better at last, all worn to a shadow, and with her -beautiful hair cut off; but that didn't make no change in her -young man, and he stuck to her as true as man could be." - -"Ah," said Holmes, "I think that what you have been good enough -to tell us makes the matter fairly clear, and that I can deduce -all that remains. Mr. Rucastle then, I presume, took to this -system of imprisonment?" - -"Yes, sir." - -"And brought Miss Hunter down from London in order to get rid of -the disagreeable persistence of Mr. Fowler." - -"That was it, sir." - -"But Mr. Fowler being a persevering man, as a good seaman should -be, blockaded the house, and having met you succeeded by certain -arguments, metallic or otherwise, in convincing you that your -interests were the same as his." - -"Mr. Fowler was a very kind-spoken, free-handed gentleman," said -Mrs. Toller serenely. - -"And in this way he managed that your good man should have no -want of drink, and that a ladder should be ready at the moment -when your master had gone out." - -"You have it, sir, just as it happened." - -"I am sure we owe you an apology, Mrs. Toller," said Holmes, "for -you have certainly cleared up everything which puzzled us. And -here comes the country surgeon and Mrs. Rucastle, so I think, -Watson, that we had best escort Miss Hunter back to Winchester, -as it seems to me that our locus standi now is rather a -questionable one." - -And thus was solved the mystery of the sinister house with the -copper beeches in front of the door. Mr. Rucastle survived, but -was always a broken man, kept alive solely through the care of -his devoted wife. They still live with their old servants, who -probably know so much of Rucastle's past life that he finds it -difficult to part from them. Mr. Fowler and Miss Rucastle were -married, by special license, in Southampton the day after their -flight, and he is now the holder of a government appointment in -the island of Mauritius. As to Miss Violet Hunter, my friend -Holmes, rather to my disappointment, manifested no further -interest in her when once she had ceased to be the centre of one -of his problems, and she is now the head of a private school at -Walsall, where I believe that she has met with considerable success. - - - - - - - - - -End of the Project Gutenberg EBook of The Adventures of Sherlock Holmes, by -Arthur Conan Doyle - -*** END OF THIS PROJECT GUTENBERG EBOOK THE ADVENTURES OF SHERLOCK HOLMES *** - -***** This file should be named 1661-8.txt or 1661-8.zip ***** -This and all associated files of various formats will be found in: - http://www.gutenberg.org/1/6/6/1661/ - -Produced by an anonymous Project Gutenberg volunteer and Jose Menendez - -Updated editions will replace the previous one--the old editions -will be renamed. - -Creating the works from public domain print editions means that no -one owns a United States copyright in these works, so the Foundation -(and you!) can copy and distribute it in the United States without -permission and without paying copyright royalties. Special rules, -set forth in the General Terms of Use part of this license, apply to -copying and distributing Project Gutenberg-tm electronic works to -protect the PROJECT GUTENBERG-tm concept and trademark. Project -Gutenberg is a registered trademark, and may not be used if you -charge for the eBooks, unless you receive specific permission. If you -do not charge anything for copies of this eBook, complying with the -rules is very easy. You may use this eBook for nearly any purpose -such as creation of derivative works, reports, performances and -research. They may be modified and printed and given away--you may do -practically ANYTHING with public domain eBooks. Redistribution is -subject to the trademark license, especially commercial -redistribution. - - - -*** START: FULL LICENSE *** - -THE FULL PROJECT GUTENBERG LICENSE -PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK - -To protect the Project Gutenberg-tm mission of promoting the free -distribution of electronic works, by using or distributing this work -(or any other work associated in any way with the phrase "Project -Gutenberg"), you agree to comply with all the terms of the Full Project -Gutenberg-tm License (available with this file or online at -http://gutenberg.net/license). - - -Section 1. General Terms of Use and Redistributing Project Gutenberg-tm -electronic works - -1.A. By reading or using any part of this Project Gutenberg-tm -electronic work, you indicate that you have read, understand, agree to -and accept all the terms of this license and intellectual property -(trademark/copyright) agreement. If you do not agree to abide by all -the terms of this agreement, you must cease using and return or destroy -all copies of Project Gutenberg-tm electronic works in your possession. -If you paid a fee for obtaining a copy of or access to a Project -Gutenberg-tm electronic work and you do not agree to be bound by the -terms of this agreement, you may obtain a refund from the person or -entity to whom you paid the fee as set forth in paragraph 1.E.8. - -1.B. "Project Gutenberg" is a registered trademark. It may only be -used on or associated in any way with an electronic work by people who -agree to be bound by the terms of this agreement. There are a few -things that you can do with most Project Gutenberg-tm electronic works -even without complying with the full terms of this agreement. See -paragraph 1.C below. There are a lot of things you can do with Project -Gutenberg-tm electronic works if you follow the terms of this agreement -and help preserve free future access to Project Gutenberg-tm electronic -works. See paragraph 1.E below. - -1.C. The Project Gutenberg Literary Archive Foundation ("the Foundation" -or PGLAF), owns a compilation copyright in the collection of Project -Gutenberg-tm electronic works. Nearly all the individual works in the -collection are in the public domain in the United States. If an -individual work is in the public domain in the United States and you are -located in the United States, we do not claim a right to prevent you from -copying, distributing, performing, displaying or creating derivative -works based on the work as long as all references to Project Gutenberg -are removed. Of course, we hope that you will support the Project -Gutenberg-tm mission of promoting free access to electronic works by -freely sharing Project Gutenberg-tm works in compliance with the terms of -this agreement for keeping the Project Gutenberg-tm name associated with -the work. You can easily comply with the terms of this agreement by -keeping this work in the same format with its attached full Project -Gutenberg-tm License when you share it without charge with others. - -1.D. The copyright laws of the place where you are located also govern -what you can do with this work. Copyright laws in most countries are in -a constant state of change. If you are outside the United States, check -the laws of your country in addition to the terms of this agreement -before downloading, copying, displaying, performing, distributing or -creating derivative works based on this work or any other Project -Gutenberg-tm work. The Foundation makes no representations concerning -the copyright status of any work in any country outside the United -States. - -1.E. Unless you have removed all references to Project Gutenberg: - -1.E.1. The following sentence, with active links to, or other immediate -access to, the full Project Gutenberg-tm License must appear prominently -whenever any copy of a Project Gutenberg-tm work (any work on which the -phrase "Project Gutenberg" appears, or with which the phrase "Project -Gutenberg" is associated) is accessed, displayed, performed, viewed, -copied or distributed: - -This eBook is for the use of anyone anywhere at no cost and with -almost no restrictions whatsoever. You may copy it, give it away or -re-use it under the terms of the Project Gutenberg License included -with this eBook or online at www.gutenberg.net - -1.E.2. If an individual Project Gutenberg-tm electronic work is derived -from the public domain (does not contain a notice indicating that it is -posted with permission of the copyright holder), the work can be copied -and distributed to anyone in the United States without paying any fees -or charges. If you are redistributing or providing access to a work -with the phrase "Project Gutenberg" associated with or appearing on the -work, you must comply either with the requirements of paragraphs 1.E.1 -through 1.E.7 or obtain permission for the use of the work and the -Project Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or -1.E.9. - -1.E.3. If an individual Project Gutenberg-tm electronic work is posted -with the permission of the copyright holder, your use and distribution -must comply with both paragraphs 1.E.1 through 1.E.7 and any additional -terms imposed by the copyright holder. Additional terms will be linked -to the Project Gutenberg-tm License for all works posted with the -permission of the copyright holder found at the beginning of this work. - -1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm -License terms from this work, or any files containing a part of this -work or any other work associated with Project Gutenberg-tm. - -1.E.5. Do not copy, display, perform, distribute or redistribute this -electronic work, or any part of this electronic work, without -prominently displaying the sentence set forth in paragraph 1.E.1 with -active links or immediate access to the full terms of the Project -Gutenberg-tm License. - -1.E.6. You may convert to and distribute this work in any binary, -compressed, marked up, nonproprietary or proprietary form, including any -word processing or hypertext form. However, if you provide access to or -distribute copies of a Project Gutenberg-tm work in a format other than -"Plain Vanilla ASCII" or other format used in the official version -posted on the official Project Gutenberg-tm web site (www.gutenberg.net), -you must, at no additional cost, fee or expense to the user, provide a -copy, a means of exporting a copy, or a means of obtaining a copy upon -request, of the work in its original "Plain Vanilla ASCII" or other -form. Any alternate format must include the full Project Gutenberg-tm -License as specified in paragraph 1.E.1. - -1.E.7. Do not charge a fee for access to, viewing, displaying, -performing, copying or distributing any Project Gutenberg-tm works -unless you comply with paragraph 1.E.8 or 1.E.9. - -1.E.8. You may charge a reasonable fee for copies of or providing -access to or distributing Project Gutenberg-tm electronic works provided -that - -- You pay a royalty fee of 20% of the gross profits you derive from - the use of Project Gutenberg-tm works calculated using the method - you already use to calculate your applicable taxes. The fee is - owed to the owner of the Project Gutenberg-tm trademark, but he - has agreed to donate royalties under this paragraph to the - Project Gutenberg Literary Archive Foundation. Royalty payments - must be paid within 60 days following each date on which you - prepare (or are legally required to prepare) your periodic tax - returns. Royalty payments should be clearly marked as such and - sent to the Project Gutenberg Literary Archive Foundation at the - address specified in Section 4, "Information about donations to - the Project Gutenberg Literary Archive Foundation." - -- You provide a full refund of any money paid by a user who notifies - you in writing (or by e-mail) within 30 days of receipt that s/he - does not agree to the terms of the full Project Gutenberg-tm - License. You must require such a user to return or - destroy all copies of the works possessed in a physical medium - and discontinue all use of and all access to other copies of - Project Gutenberg-tm works. - -- You provide, in accordance with paragraph 1.F.3, a full refund of any - money paid for a work or a replacement copy, if a defect in the - electronic work is discovered and reported to you within 90 days - of receipt of the work. - -- You comply with all other terms of this agreement for free - distribution of Project Gutenberg-tm works. - -1.E.9. If you wish to charge a fee or distribute a Project Gutenberg-tm -electronic work or group of works on different terms than are set -forth in this agreement, you must obtain permission in writing from -both the Project Gutenberg Literary Archive Foundation and Michael -Hart, the owner of the Project Gutenberg-tm trademark. Contact the -Foundation as set forth in Section 3 below. - -1.F. - -1.F.1. Project Gutenberg volunteers and employees expend considerable -effort to identify, do copyright research on, transcribe and proofread -public domain works in creating the Project Gutenberg-tm -collection. Despite these efforts, Project Gutenberg-tm electronic -works, and the medium on which they may be stored, may contain -"Defects," such as, but not limited to, incomplete, inaccurate or -corrupt data, transcription errors, a copyright or other intellectual -property infringement, a defective or damaged disk or other medium, a -computer virus, or computer codes that damage or cannot be read by -your equipment. - -1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the "Right -of Replacement or Refund" described in paragraph 1.F.3, the Project -Gutenberg Literary Archive Foundation, the owner of the Project -Gutenberg-tm trademark, and any other party distributing a Project -Gutenberg-tm electronic work under this agreement, disclaim all -liability to you for damages, costs and expenses, including legal -fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT -LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE -PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE -TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE -LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR -INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH -DAMAGE. - -1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a -defect in this electronic work within 90 days of receiving it, you can -receive a refund of the money (if any) you paid for it by sending a -written explanation to the person you received the work from. If you -received the work on a physical medium, you must return the medium with -your written explanation. The person or entity that provided you with -the defective work may elect to provide a replacement copy in lieu of a -refund. If you received the work electronically, the person or entity -providing it to you may choose to give you a second opportunity to -receive the work electronically in lieu of a refund. If the second copy -is also defective, you may demand a refund in writing without further -opportunities to fix the problem. - -1.F.4. Except for the limited right of replacement or refund set forth -in paragraph 1.F.3, this work is provided to you 'AS-IS' WITH NO OTHER -WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO -WARRANTIES OF MERCHANTIBILITY OR FITNESS FOR ANY PURPOSE. - -1.F.5. Some states do not allow disclaimers of certain implied -warranties or the exclusion or limitation of certain types of damages. -If any disclaimer or limitation set forth in this agreement violates the -law of the state applicable to this agreement, the agreement shall be -interpreted to make the maximum disclaimer or limitation permitted by -the applicable state law. The invalidity or unenforceability of any -provision of this agreement shall not void the remaining provisions. - -1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the -trademark owner, any agent or employee of the Foundation, anyone -providing copies of Project Gutenberg-tm electronic works in accordance -with this agreement, and any volunteers associated with the production, -promotion and distribution of Project Gutenberg-tm electronic works, -harmless from all liability, costs and expenses, including legal fees, -that arise directly or indirectly from any of the following which you do -or cause to occur: (a) distribution of this or any Project Gutenberg-tm -work, (b) alteration, modification, or additions or deletions to any -Project Gutenberg-tm work, and (c) any Defect you cause. - - -Section 2. Information about the Mission of Project Gutenberg-tm - -Project Gutenberg-tm is synonymous with the free distribution of -electronic works in formats readable by the widest variety of computers -including obsolete, old, middle-aged and new computers. It exists -because of the efforts of hundreds of volunteers and donations from -people in all walks of life. - -Volunteers and financial support to provide volunteers with the -assistance they need are critical to reaching Project Gutenberg-tm's -goals and ensuring that the Project Gutenberg-tm collection will -remain freely available for generations to come. In 2001, the Project -Gutenberg Literary Archive Foundation was created to provide a secure -and permanent future for Project Gutenberg-tm and future generations. -To learn more about the Project Gutenberg Literary Archive Foundation -and how your efforts and donations can help, see Sections 3 and 4 -and the Foundation web page at http://www.pglaf.org. - - -Section 3. Information about the Project Gutenberg Literary Archive -Foundation - -The Project Gutenberg Literary Archive Foundation is a non profit -501(c)(3) educational corporation organized under the laws of the -state of Mississippi and granted tax exempt status by the Internal -Revenue Service. The Foundation's EIN or federal tax identification -number is 64-6221541. Its 501(c)(3) letter is posted at -http://pglaf.org/fundraising. Contributions to the Project Gutenberg -Literary Archive Foundation are tax deductible to the full extent -permitted by U.S. federal laws and your state's laws. - -The Foundation's principal office is located at 4557 Melan Dr. S. -Fairbanks, AK, 99712., but its volunteers and employees are scattered -throughout numerous locations. Its business office is located at -809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887, email -business@pglaf.org. Email contact links and up to date contact -information can be found at the Foundation's web site and official -page at http://pglaf.org - -For additional contact information: - Dr. Gregory B. Newby - Chief Executive and Director - gbnewby@pglaf.org - - -Section 4. Information about Donations to the Project Gutenberg -Literary Archive Foundation - -Project Gutenberg-tm depends upon and cannot survive without wide -spread public support and donations to carry out its mission of -increasing the number of public domain and licensed works that can be -freely distributed in machine readable form accessible by the widest -array of equipment including outdated equipment. Many small donations -($1 to $5,000) are particularly important to maintaining tax exempt -status with the IRS. - -The Foundation is committed to complying with the laws regulating -charities and charitable donations in all 50 states of the United -States. Compliance requirements are not uniform and it takes a -considerable effort, much paperwork and many fees to meet and keep up -with these requirements. We do not solicit donations in locations -where we have not received written confirmation of compliance. To -SEND DONATIONS or determine the status of compliance for any -particular state visit http://pglaf.org - -While we cannot and do not solicit contributions from states where we -have not met the solicitation requirements, we know of no prohibition -against accepting unsolicited donations from donors in such states who -approach us with offers to donate. - -International donations are gratefully accepted, but we cannot make -any statements concerning tax treatment of donations received from -outside the United States. U.S. laws alone swamp our small staff. - -Please check the Project Gutenberg Web pages for current donation -methods and addresses. Donations are accepted in a number of other -ways including including checks, online payments and credit card -donations. To donate, please visit: http://pglaf.org/donate - - -Section 5. General Information About Project Gutenberg-tm electronic -works. - -Professor Michael S. Hart is the originator of the Project Gutenberg-tm -concept of a library of electronic works that could be freely shared -with anyone. For thirty years, he produced and distributed Project -Gutenberg-tm eBooks with only a loose network of volunteer support. - - -Project Gutenberg-tm eBooks are often created from several printed -editions, all of which are confirmed as Public Domain in the U.S. -unless a copyright notice is included. Thus, we do not necessarily -keep eBooks in compliance with any particular paper edition. - - -Most people start at our Web site which has the main PG search facility: - - http://www.gutenberg.net - -This Web site includes information about Project Gutenberg-tm, -including how to make donations to the Project Gutenberg Literary -Archive Foundation, how to help produce our new eBooks, and how to -subscribe to our email newsletter to hear about new eBooks. diff --git a/Students/apklock/session04/trigram.py b/Students/apklock/session04/trigram.py deleted file mode 100644 index 3e144e62..00000000 --- a/Students/apklock/session04/trigram.py +++ /dev/null @@ -1,141 +0,0 @@ -# infilename = "sherlock_small.txt" -infilename = "sherlock.txt" - -import sys -import string -import random - - -def make_words(text): - - """ - make a list of words from a large bunch of text - - strips all the punctuation and other stuff from a string - """ - - # build a translation table for string.translate: - # there are other ways to do this: - # a_word.strip() works well, too. - - punctuation = string.punctuation - punctuation = punctuation.replace("'", "") # keep apostropies - punctuation = punctuation.replace("-", "") # keep hyphenated words - ## this will replace punctiation with spaces - ## -- then split() will remove the extra spaces - table = string.maketrans(punctuation, " "*len(punctuation)) - - # lower-case everything to remove that complication: - text = text.lower() - - # remove punctuation - text = text.translate(table) - - # remove "--" -- can't do multiple characters with translate - text = text.replace("--", " ") - - # split into words - words = text.split() - - # remove the bare single quotes - # " ' " is both a quote and an apostrophe - words2 = [] - for word in words: - if word != "'": # remove quote by itself - # "i" by itself should be capitalized - words2.append("I" if word == 'i' else word) - ## could be done with list comp too -- next week! - # words2 = [("I" if word == 'i' else word) for word in words if word != "'"] - - return words2 - - -def read_in_data(infilename): - - infile = open(infilename, 'r') # text mode is default - # strip out the header, table of contents, etc. - for i in range(61): - infile.readline() - - full_text = [] - # read the rest of the file line by line - for line in infile: - if line.startswith("End of the Project Gutenberg EBook"): - break - full_text.append(line) - - # put all the lines together into one big string: - return " ".join(full_text) - - -def build_trigram(words): - """build a trigram dict from the passed-in list of words""" - - # Dictionary for trigram results: - # The keys will be all the word pairs - # The values will be a list of the words that follow each pair - word_pairs = {} - - - # loop through the words - # (rare case where using the index to loop is easiest) - for i in range(len(words) - 2): # minus 2, 'cause you need a pair' - pair = tuple( words[i:i+2] ) # a tuple so it can be a key in the dict - follower = words[i+2] - word_pairs.setdefault(pair,[]).append(follower) - - # setdefault() returns the value if pair is already in the dict - # if it's not, it adds it, setting the value to a an empty list - # then it returns the list, which we then append the following - # word to -- cleaner than: - # if pair in word_pairs: - # word_pairs[pair].append(follower) - # else: - # word_pairs[pair] = [follower] - return word_pairs - - -def build_text(word_pairs): - - """ - Build some new text from the word_pair dict supplied - - A bit of fancy stuff to make them look like sentences.. - """ - - new_text = [] - for i in range(40): # do thirty sentences - # pick a word pair to start the sentence - sentence = list(random.choice( word_pairs.keys() ) ) - - # now add a random number of additional words to the sentence - for j in range(random.randint(2,10)): - pair = tuple(sentence[-2:]) - sentence.append( random.choice(word_pairs[pair]) ) - #capitalize the first word: - sentence[0] = sentence[0].capitalize() - #Add the period - sentence[-1] += "." - new_text.extend(sentence) - - new_text = " ".join(new_text) - - return new_text - - -if __name__ == "__main__": - - # get the filename from the command line - try: - filename = sys.argv[1] - except IndexError: - print "You must pass in a filename" - sys.exit(1) - - in_data = read_in_data(filename) - words = make_words(in_data) - word_pairs = build_trigram(words) - new_text = build_text(word_pairs) - - print new_text - diff --git a/Students/apklock/session05/dict_set_comp.py b/Students/apklock/session05/dict_set_comp.py deleted file mode 100644 index 1360ed67..00000000 --- a/Students/apklock/session05/dict_set_comp.py +++ /dev/null @@ -1,76 +0,0 @@ -# creating the food list -food_prefs = {"name": "Andrew", "city": "Bellevue", "cake": "rum", "fruit": "cherry", "salad": "caesar", "pasta": "ravioli"} - -print "{name} is from {city}, and he likes {cake} cake, {fruit} fruit, {salad} salad, and {pasta} pasta.".format(**food_prefs) - - -# building a hex dictionary with list comprehension -nums = range(16) - -hex_list = [hex(num) for num in nums] - -hex_zipped = dict(zip(nums, hex_list)) - -print hex_zipped - - -# building a hex dictionary with dict comprehension -hex_dict = {num: hex(num) for num in nums} - -print hex_dict - - -# Using the dictionary from food_prefs: make a dictionary of 'a's and 'A's - -a_dict = {} -for key, val in food_prefs.items(): - a_dict[key] = val.count('a') + val.count('A') -print a_dict - - -# creating sets s2, s3, s4 - -s2 = set() -s3 = set() -s4 = set() -for i in range(21): - if not i%2: - s2.add(i) - if not i%3: - s3.add(i) - if not i%4: - s4.add(i) - -print s2 -print s3 -print s4 - - -# creating sets s2, s3, s4 as set comprehensions - -s2_set = {i for i in range(21) if not i%2} -s3_set = {i for i in range(21) if not i%3} -s4_set = {i for i in range(21) if not i%4} - -print s2_set -print s3_set -print s4_set - - -# creating a sequence of all 3 sets - -s2_new = set() -s3_new = set() -s4_new = set() - -all_s_set = [[s2_new], [s3_new], [s4_new]] - -for i in range(21): - if not i%2: - s2_new.add(i) - if not i%3: - s3_new.add(i) - if not i%4: - s4_new.add(i) - -print all_s_set \ No newline at end of file diff --git a/Students/apklock/session05/keyword_lab.py b/Students/apklock/session05/keyword_lab.py deleted file mode 100644 index 42e86749..00000000 --- a/Students/apklock/session05/keyword_lab.py +++ /dev/null @@ -1,24 +0,0 @@ -def colour(fore_colour = 'gold', back_colour = 'black', link_colour = 'green', visited_colour = 'red'): - print "The default foreground colour is:", fore_colour - print "The default background colour is:", back_colour - print "The default link colour is:", link_colour - print "The default visited colour is:", visited_colour - -colour() - -fore = raw_input("Type a new foreground colour here -->") -fore_colour = fore - -back = raw_input("Type a new background colour here -->") -back_colour = back - -link = raw_input("Type a new link colour here -->") -link_colour = link - -visited = raw_input("Type a new visited colour here -->") -visited_colour = visited - -def new_colours(*args): - print "This is the new colour scheme:", args - -new_colours(fore, back, link, visited) diff --git a/Students/apklock/session05/list_comp.py b/Students/apklock/session05/list_comp.py deleted file mode 100644 index d1fa270c..00000000 --- a/Students/apklock/session05/list_comp.py +++ /dev/null @@ -1,90 +0,0 @@ ->>> feast = ['lambs', 'sloths', 'orangutans', 'breakfast cereals', 'fruit bats'] - ->>> comprehension = [delicacy.capitalize() for delicacy in feast] - -# What is the output of: - ->>> comprehension[0] -'Lambs' - ->>> comprehension[2] -'Orangutans' - - -# On to next set - ->>> feast = ['spam', 'sloths', 'orangutans', 'breakfast cereals', 'fruit bats'] - ->>> comprehension = [delicacy for delicacy in feast if len(delicacy) > 6] - -# What is the output of: - ->>> len(feast) -5 - ->>> len(comprehension) -3 # Only orangutans, breakfast cereals, and fruit bats - - -# On to the next one - ->>> list_of_tuples = [(1, 'lumberjack'), (2, 'inquisition'), (4, 'spam')] - ->>> comprehension = [ skit * number for number, skit in list_of_tuples ] - -# What is the output of: - ->>> comprehension[0] -'lumberjack' - ->>> len(comprehension[2]) -11 # I'm not sure about this one, length of 'inquisition'? - - -# Onward we go - ->>> list_of_eggs = ['poached egg', 'fried egg'] - ->>> list_of_meats = ['lite spam', 'ham spam', 'fried spam'] - ->>> comprehension = [ '{0} and {1}'.format(egg, meat) for egg in list_of_eggs for meat in list_of_meats] - -# What is the output of: - ->>> len(comprehension) -6 # Because there are 6 different permutations for this set - ->>> comprehension[0] -'poached egg and lite spam' # 0th item in each list - - -# Moving along - ->>> comprehension = { x for x in 'aabbbcccc'} - -# What is the output of: - ->>> comprehension -'a', 'b', 'c' # I think... - - -# Now for the final one - ->>> dict_of_weapons = {'first': 'fear', - 'second': 'surprise', - 'third': 'ruthless efficiency', - 'fourth': 'fanatical devotion', - 'fifth': None} ->>> dict_comprehension = \ -{ k.upper(): weapon for k, weapon in dict_of_weapons.iteritems() if weapon} - -# What is the output of: - ->>> 'first' in dict_comprehension -False # because 'first' should be capitalized due to the iteration ->>> 'FIRST' in dict_comprehension -True ->>> len(dict_of_weapons) -5 # got to include None in there ->>> len(dict_comprehension) -4 # doesn't iterate through None so no fifth weapon \ No newline at end of file diff --git a/Students/apklock/session06/html_render.py b/Students/apklock/session06/html_render.py deleted file mode 100644 index 5600b521..00000000 --- a/Students/apklock/session06/html_render.py +++ /dev/null @@ -1,47 +0,0 @@ -# html render code...here goes nothing... -# trying to build using your code but i just have no idea what to do... - -class Element(object): - tag = 'html' - indent = ' ' - - def __init__(self, content=None, **attributes): # defining the initializer - self.content = [] - self.attributes = attributes - if content is not None: - self.content.append(content) - - def append(self, content): # defining how to append content - self.content.append(content) - - def render_tag(self, current_ind): # defining the render tag - attrbs = "".join(['{} = "{}"'.format(key, val) for key, val in self.attributes.ietms()]) - tag_str = "{}<{}{}>".format(current_ind, self.tag, attrbs) - return tag_str - - def render(self, file_out, current_ind=""): # defining how the code renders and presents itself - file_out.write(self.render_tag(current_ind)) - file_out.write('\n') - for con in self.content: - try: - file_out.write(current_ind + self.indent + con + "\n") - except TypeError: - con.render(file_out, current_ind + self.indent) - file_out.write("{}\n".format(current_ind, self.tag)) - -class OneLineTag(Element): - def render(self, file_out, current_ind=""): - file_out.write(self.render_tag(current_ind)) - for con in self.content: - file_out.write(con) - file_out.write("{}\n".format(self.tag)) - -class Title(OneLineTag): - tag = 'title' - -#def __init__(self, "Python is fun, Python is fast, Python is fascicular but not Macaca fascicularis!!"): - #pass -#def append(self, "But what if Python WAS Macaca fascicularis? Well, for one thing that would be extremely weird,"/n "even if we consider the ramifications of Python being a member of the Animalia phylum,"/n "that would not grant them access to being a Primata. Could they breed with Macaca? Prezygotic barriers along with a multitude of other factors would say no."/n "I mean, c'mon, Macaca fascicularis would NEVER find Python sexy!"): - #pass -#def render(self, file_out, ind=""): - #pass diff --git a/Students/apklock/session06/lambda_lab.py b/Students/apklock/session06/lambda_lab.py deleted file mode 100644 index 8186b665..00000000 --- a/Students/apklock/session06/lambda_lab.py +++ /dev/null @@ -1,14 +0,0 @@ -print "The equation is x**4 + (x*y) + y**2 - x**y + y**x," -print "where y is the set of numbers 1 through 10" - -x = raw_input("Input value for x here -->") - -x = int(x) - -lam = [] -for i in range(10): - lam.append(lambda x, y=i: x**4 + (x*y) + y**2 - x**y + y**x) - -for f in lam: - print f(x) - diff --git a/Students/brydavis/session02/ack.py b/Students/brydavis/session02/ack.py deleted file mode 100644 index 947c0ac4..00000000 --- a/Students/brydavis/session02/ack.py +++ /dev/null @@ -1,33 +0,0 @@ -#!/usr/bin/env python - -from sys import argv - -len_argv = len(argv) -_m = int(argv[1]) if len_argv > 1 else 4 -_n = int(argv[2]) if len_argv > 2 else 4 - -def ack(m,n): - '''Demonstrate the power of the recursive via the Ackermann function.''' - if m == 0: - return n + 1 - elif m > 0 and n == 0: - return ack(m-1,1) - elif m > 0 and n > 0: - return ack(m-1,ack(m, n-1)) - - -if __name__ == '__main__': - # print 'ack.py is running...' - ''' - Test each pair of inputs between 0 and 4 and assert that the result produced by your function is the result expected by the wikipedia table. - ''' - try: - for m in range(_m+1): - for n in range(_n+1): - print 'ack(%d,%d):' % (m, n), ack(m,n) - else: - print 'Test Run: All Pass' - except: - print '...\nTest Run: Uh Oh, Fail!' - - \ No newline at end of file diff --git a/Students/brydavis/session02/series.py b/Students/brydavis/session02/series.py deleted file mode 100644 index c5b0d4d3..00000000 --- a/Students/brydavis/session02/series.py +++ /dev/null @@ -1,89 +0,0 @@ -#!/usr/bin/env python - -from sys import argv - -def fibonacci(n=10): - ''' - Return an array where each subsequent integer - is the sum of the previous two, and the length - equals the one parameter given, 'n'. - The first and second intergers are 0 and 1, respectively. - ''' - - fibo_seq = [0,1] - - for i in range(2,n): - fibo_seq.append(fibo_seq[i-2] + fibo_seq[i-1]) - - return fibo_seq - - - -def lucas(n=10): - ''' - Return an array where each subsequent integer - is the sum of the previous two, and the length - equals the one parameter given, 'n'. - The first and second intergers are 2 and 1, respectively. - ''' - - lucas_seq = [2,1] - - for i in range(2,n): - lucas_seq.append(lucas_seq[i-2] + lucas_seq[i-1]) - - return lucas_seq - - - -def sum_series(n=10,x=0,y=1): - ''' - Return an array where each subsequent integer - is the sum of the previous two, and the length - equals the one parameter given, 'n'. - The first and second intergers are based on input. - - ''' - - series_seq = [x,y] - - for i in range(2,n): - series_seq.append(series_seq[i-2] + series_seq[i-1]) - - return series_seq - - -if __name__ == '__main__': - - len_argv = len(argv) - n = int(argv[1]) if len_argv > 1 else 10 - a = int(argv[2]) if len_argv > 2 else 0 - b = int(argv[3]) if len_argv > 3 else 1 - - print '\n' - print 'Fibonacci Series:' - assert fibonacci(n) - print fibonacci(n) - - print '\n' - print 'Lucas Series:' - assert lucas(n) - print lucas(n) - - print '\n' - print 'Custom Sum Series:' - assert sum_series(n,a,b) - print sum_series(n,a,b) - - print '\n' - - # try: - # except: - - -# TODO: -# - Update docstrings for each function -# - Add assert statements that demonstrate that your three functions work properly -# - Use comments in this block to inform the observer what your tests do -# - When you are finished, push your changes to your fork of the class repository in GitHub -# - Then make a pull request and submit your assignment in Canvas \ No newline at end of file diff --git a/Students/brydavis/session03/list_lab.py b/Students/brydavis/session03/list_lab.py deleted file mode 100644 index 68f0b1fb..00000000 --- a/Students/brydavis/session03/list_lab.py +++ /dev/null @@ -1,146 +0,0 @@ -#!/usr/bin/env python - -# Create a list that contains fruit -fruit = ['Apples', 'Pears', 'Oranges', 'Peaches'] - -def series_one(fruit=fruit): - - print '\nFruit: Series One' - print '=================' - - # Display the list - print '\nCurrent list: ', fruit - - # Ask the user for another fruit and add it to the end of the list - fruit.append(raw_input('What\'s another fruit you like? ')) - - # Display the list again - print fruit - - # Ask the user for a number and display the number back to the user and the fruit corresponding to that number (on a 1-is-first basis) - num_select = raw_input('\nType a number between 1 and 5: ') - print 'You selected: ', fruit[int(num_select) - 1] - - # Add another fruit to the beginning of the list using '+' and display the list. - fruit = [raw_input('\nHow about another fruit you like? ')] + fruit - print 'Updated list: ', fruit - - # Add another fruit to the beginning of the list using insert() and display the list. - fruit.insert(0, raw_input('\nAnd another fruit? ')) - print 'Updated list: ', fruit - - # Display all the fruits that begin with 'P', using a for loop. - print '\nFruit starting with the letter\'P\':' - for f in fruit: - if f[0].lower() == 'p': - print '\t', f - - return series_two(fruit) - - - -def series_two(fruit=fruit): - - print '\nFruit: Series Two' - print '=================' - - # Display the list. - print '\nCurrent list: ', fruit - - # Remove the last fruit from the list. - print 'Removing the last fruit from the list.' - gone = fruit.pop() - - # Display the list. - print '\nNew list without %s: ' % gone, fruit - - # Ask the user for a fruit to delete and find it and delete it. - bad_fruit = raw_input('What fruit would you remove from the list? ') - - try: - gone = fruit.remove(bad_fruit[0].upper() + bad_fruit[1:].lower()) - print '\nNew list without %s: ' % bad_fruit, fruit - except: - print '%s not found. No updates to list.' % bad_fruit - - # (Bonus: Multiply the list times two. Keep asking until a match is found. Once found, delete all occurrences.) - # {{{{{{{{{{{{{{{{{{{{{{{here you are}}}}}}}}}}}}}}}}}}}}}}} - - return series_three(fruit) - - - -def series_three(fruit=fruit): - - print '\nFruit: Series Three' - print '===================' - - # Display the list. - print '\nCurrent list: ', fruit - - fruit_copy = fruit[:] - - # Ask the user for input displaying a line like 'Do you like apples?' - # for each fruit in the list (making the fruit all lowercase). - for f in fruit_copy: - def get_likes(): - return raw_input('Do you like %s? ' % f.lower()) - - response = get_likes().lower() - - while response != 'no' and response != 'yes': - print 'Please respond either\'yes\' or \'no\'.' - response = get_likes().lower() - - if response == 'no': - fruit.remove(f) - else: - pass - - # Display the list. - print '\nRemaining list: ', fruit - - return series_four(fruit) - - - -def series_four(fruit=fruit): - - print '\nFruit: Series Four' - print '==================' - - - # Make a copy of the list and reverse the letters in each fruit in the copy - scrambled_fruit = fruit[:] - - # Display the original list sans the last element. - print '\nCurrent list (sans the last value): ', fruit - fruit.pop() - print '\nCurrent list (sans the last value): ', fruit - - - for i, f in enumerate(scrambled_fruit): - scrambled_fruit[i] = f[::-1] - - # Delete the last item of the original list. Display the original list and the copy - print 'A scrambled copy: ', scrambled_fruit - - return - - - - -if __name__ == '__main__': - # When the script is run, it should run four series of actions: - series_one() - - -# Q: use original 'fruit' list for each new series? -# Q: skipping entries in list? - - - - - - - diff --git a/Students/brydavis/session03/rot13.py b/Students/brydavis/session03/rot13.py deleted file mode 100644 index 704e34f2..00000000 --- a/Students/brydavis/session03/rot13.py +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env python - -from sys import argv - -s = argv[1] if len(argv) > 1 else 'Hello World!' - -def rot13(s=s): - hashed = '' - - for i in s: - hashed += chr(ord(i)+13) - - return hashed - - -if __name__ == '__main__': - - print 'Testin ROT13 encryption...' - assert rot13() - - print 'Orignal text: %s' % s - print 'Encrypted text: %s' % rot13() \ No newline at end of file diff --git a/Students/brydavis/start b/Students/brydavis/start deleted file mode 100755 index f69c4300..00000000 --- a/Students/brydavis/start +++ /dev/null @@ -1,57 +0,0 @@ -#!/usr/bin/env bash - -# alias start="source ./start" - -# Begin work session -function start_session { - git checkout master; - git fetch upstream master; - git merge upstream/master; - git push; - git status; - echo; - echo 'Ready to develop!'; - echo 'Please proceed...'; -} - - -# Always save your work! -function commit_work { - # git add $1; - # -m is for adding a message - # to commit - git commit -a -m 'another update'; - git push; -} - -# End work session -function end_session { - echo 'Pusing git...'; - git push origin master; - echo 'Push complete!'; - echo 'Goodbye ~'; -} - - -function init { - echo "Welcome to UW-PCE's Intro to Python" - # cd /www/IntroToPython; - start_session; -} - - -# Initialize -init; - - - -# # Set aliases -# alias ux='chmod u+x'; -# alias ax='chmod a+x'; - -# # Set in ~/.bash_profile -# export GIT_EDITOR=nano - - - - diff --git a/Students/brydavis/test.js b/Students/brydavis/test.js deleted file mode 100644 index e69de29b..00000000 diff --git a/Students/ebuer/session_01/box_builder.py b/Students/ebuer/session_01/box_builder.py deleted file mode 100644 index 3e1199d9..00000000 --- a/Students/ebuer/session_01/box_builder.py +++ /dev/null @@ -1,28 +0,0 @@ -##gridprinter python script -##written by EB 2014-10-04 - - -def print_grid(): - separator = 2 * ('+' + 4 * ' -' + ' ') + '+' + '\n' - walls = 2 * (('|' + 4 * ' ') + ' ') + '|' + '\n' - - print 2 * (separator + 4 * walls) + separator - -print_grid() - - -def scale_grid(n): - separator = 2 * ('+' + n * ' -' + ' ') + '+' + '\n' - walls = n * (2 * (('|' + n * ' ') + ' ') + '|' + '\n') - print 2 * (separator + walls) + separator - -scale_grid(9) - - -def expand_grid(num_rows, scale_factor): - separator = num_rows * ('+' + scale_factor * ' -' + ' ') + '+' + '\n' - walls = scale_factor * (num_rows * (('|' + scale_factor * ' ') - + ' ') + '|' + '\n') - print (num_rows * (separator + walls) + separator) - -expand_grid(3, 4) diff --git a/Students/ebuer/session_01/break_me.py b/Students/ebuer/session_01/break_me.py deleted file mode 100644 index 7bb7bd49..00000000 --- a/Students/ebuer/session_01/break_me.py +++ /dev/null @@ -1,17 +0,0 @@ -#create four functions that raise errors - -##NameError Function -def bad_name(str): - return a_bad_name - -##TypeError function -- enter a string to receive TypeError -def a_bad_type(string_val): - return string_val + 5 - -##SyntaxError function -- any value will do -def a_syn_error(some_value): - n +,= 1 - -##AttributeError function -- enter an integer -def att_error(n): - n.title() diff --git a/Students/ebuer/session_01/codebat_solutions/diff_21.py b/Students/ebuer/session_01/codebat_solutions/diff_21.py deleted file mode 100644 index dd90a95a..00000000 --- a/Students/ebuer/session_01/codebat_solutions/diff_21.py +++ /dev/null @@ -1,10 +0,0 @@ -def diff21(n): - if n >= 21: - return 2 * (n - 21) - else: - return 21 - n - -n = 21 -ans = diff21(n) - -print ans diff --git a/Students/ebuer/session_01/codebat_solutions/front_back.py b/Students/ebuer/session_01/codebat_solutions/front_back.py deleted file mode 100644 index aec0e4a8..00000000 --- a/Students/ebuer/session_01/codebat_solutions/front_back.py +++ /dev/null @@ -1,29 +0,0 @@ -##make a function that swaps first and last letter of a string - - -def front_back(str): - if len(str) > 1: - first_letter = str[0] - last_letter = str[len(str) - 1] - mid_letters = str[1:len(str) - 1] - return last_letter + mid_letters + first_letter - else: - return str - -#codingbat solution -# def front_back(str): -# if len(str) <= 1: -# return str - -# mid = str[1:len(str)-1] # can be written as str[1:-1] - -# # last + mid + first -# return str[len(str)-1] + mid + str[0] - - -def front3(str): - if len(str) <= 3: - return 3 * str - return 3 * str[0:3] - -#codingbat says slicing is silent on indexing errors, not sure aobut this diff --git a/Students/ebuer/session_01/codebat_solutions/monkey_trouble.py b/Students/ebuer/session_01/codebat_solutions/monkey_trouble.py deleted file mode 100644 index 235a2428..00000000 --- a/Students/ebuer/session_01/codebat_solutions/monkey_trouble.py +++ /dev/null @@ -1,24 +0,0 @@ - -def monkey_trouble(a_smile, b_smile): - if (a_smile and b_smile) or (not a_smile and not b_smile): - return True - else: - return False - -a_smile = False -b_smile = True - -answer_1 = monkey_trouble(a_smile, b_smile) -print answer_1, a_smile, b_smile - -""" -solution notes really short answer: -def more_trouble(a_smile, b_smile) -return (a_smile==b_smile) -""" - -def more_trouble(a_smile, b_smile): - return (a_smile==b_smile) -answer_2=more_trouble(a_smile, b_smile) -print answer_2 - diff --git a/Students/ebuer/session_01/codebat_solutions/near_hundred.py b/Students/ebuer/session_01/codebat_solutions/near_hundred.py deleted file mode 100644 index 0d946674..00000000 --- a/Students/ebuer/session_01/codebat_solutions/near_hundred.py +++ /dev/null @@ -1,35 +0,0 @@ -##given an integer n return true when it is within 10 of 100 or 200 - - -def near_hundred(i): - temp1 = abs(100 - i) - temp2 = abs(200 - i) - if temp1 < 10 or temp2 < 10: - return True - -i = 91 -print 'Near Hundred Result:', near_hundred(i) - - -##pos_neg() - -def pos_neg(a, b, negative): - if {(a > 0 and b < 0) or (a < 0 and b > 0)} and not negative: - return True - elif (a < 0 and b < 0) and negative: - return True - else: - return False - -a = -3 -b = -2 -negative = True - -print 'Positive Negative Result:', pos_neg(a, b, negative) - -#codingbat solution -# def pos_neg(a, b, negative): -# if negative: -# return (a < 0 and b < 0) -# else: -# return ((a < 0 and b > 0) or (a > 0 and b < 0)) \ No newline at end of file diff --git a/Students/ebuer/session_01/codebat_solutions/not_string.py b/Students/ebuer/session_01/codebat_solutions/not_string.py deleted file mode 100644 index f955462a..00000000 --- a/Students/ebuer/session_01/codebat_solutions/not_string.py +++ /dev/null @@ -1,25 +0,0 @@ -#the not string function - - -def not_string(str): - if str.find('not') > 0 or str.find('not') == -1: - return 'not ' + str - else: - return str - -str = 'not candy bad' -print 'Not string result:', not_string(str) - -print str.find('not') - -##codingbat solution, note use of double returns since only 1 is executed -# def not_string(str): -# if len(str) >= 3 and str[:3] == "not": -# return str -# return "not " + str -# # str[:3] goes from the start of the string up to but not -# # including index 3 - - -def missing_char(str, n): - return str[:n - 1] + str[n:] diff --git a/Students/ebuer/session_01/codebat_solutions/parrot_trouble.py b/Students/ebuer/session_01/codebat_solutions/parrot_trouble.py deleted file mode 100644 index 6f9fe458..00000000 --- a/Students/ebuer/session_01/codebat_solutions/parrot_trouble.py +++ /dev/null @@ -1,36 +0,0 @@ -##parrot trouble in paradise - - -def parrot_trouble(talking, hour): - if not talking: - return False - elif hour < 7 or hour > 20: - return True - else: - return False - -talking = True -hour = 8 - -print parrot_trouble(talking, hour) - -""" -def parrot_trouble(talking, hour): - return (talking and (hour < 7 or hour > 20)) - # Need extra parenthesis around the or clause - # since and binds more tightly than or. - # and is like arithmetic *, or is like arithmetic + -""" - -#makes 10 - -def makes10(a, b): - if a == 10 or b == 10: - return True - elif a + b == 10: - return True - else: - return False -a = 5 -b = 10 -print 'Makes 10:', makes10(a, b) diff --git a/Students/ebuer/session_01/codebat_solutions/sleep_in.py b/Students/ebuer/session_01/codebat_solutions/sleep_in.py deleted file mode 100644 index 66453342..00000000 --- a/Students/ebuer/session_01/codebat_solutions/sleep_in.py +++ /dev/null @@ -1,21 +0,0 @@ -""" -Written by EB, 2014-10-01 -create a function that takes two variables and runs logical eval - -sleep in when it is not a weekday, or you are on vacation -do not sleep in on a weekday that is not vacation -""" - - -def sleep_in(weekday, vacation): - if not weekday or vacation: - return True - else: - return False - -weekday = False -vacation = True - -result = sleep_in(weekday, vacation) - -print result diff --git a/Students/ebuer/session_01/codebat_solutions/string_times.py b/Students/ebuer/session_01/codebat_solutions/string_times.py deleted file mode 100644 index 087064c7..00000000 --- a/Students/ebuer/session_01/codebat_solutions/string_times.py +++ /dev/null @@ -1,48 +0,0 @@ - -def string_times(str, n): - return n * str - -def front_times(str, n): - front_end=str[:3] - return n * front_end - -def string_bits(str): - copier = True - print_string = '' - for l in str: - if copier: - print_string += l - print print_string - copier = False - else: - copier = True - return print_string - -str='' -print string_bits(str) - -def string_splosion(str): - print_string='' - for n in range(len(str)): - temp = str[0:n+1] - #print_string += temp - print print_string - return print_string - -str='Code' -string_splosion(str) - -def last2(str): - end_string = str[-2:] - i = 0 - for n in range(len(str)-2): - if str[n:n+2] == end_string: - i += 1 - return i - -def count9(nums): - i = 0 - for n in nums: - if n == 9: - i += 1 - return i diff --git a/Students/ebuer/session_01/codebat_solutions/sum_double.py b/Students/ebuer/session_01/codebat_solutions/sum_double.py deleted file mode 100644 index 25927bef..00000000 --- a/Students/ebuer/session_01/codebat_solutions/sum_double.py +++ /dev/null @@ -1,15 +0,0 @@ -##sum_double excercise -##given two int values return sum unless the two are == then double sum - - -def sum_double(x, y): - if x == y: - return 2 * (x + y) - else: - return x + y - -x = 3 -y = 3 -z = sum_double(x, y) - -print "Solution: %i"% z diff --git a/Students/ebuer/session_02/ack.py b/Students/ebuer/session_02/ack.py deleted file mode 100644 index 2ff5c7d8..00000000 --- a/Students/ebuer/session_02/ack.py +++ /dev/null @@ -1,35 +0,0 @@ -def ack(m, n): - """Perfom Ackermann function calculation. - - Syntax: ack(m, n) - - Arguments: - m -- a positive integer - n -- a positive integer - Function will return "none" if a negative argument is passed. - - When run in __main__ namespace function will test several - primary inputs to ensture correct function. Passage of all - tests will generate a pass message. - - Note: the Ackermann function is very computationally intensive - and will flood most desktop computers' available RAM for (m, n) - greater than (3, 4). - """ - if m < 0 or n < 0: - return None - elif not m: - return n + 1 - elif not n: - return ack(m - 1, 1) - else: - return ack(m - 1, ack(m, n - 1)) - -if __name__ == "__main__": - assert ack(0, 0) == 1 - assert ack(1, 0) == 2 - assert ack(2, 0) == 3 - assert ack(3, 0) == 5 - assert ack(4, 0) == 13 - assert ack(3, 4) == 125 - print "\nAll tests pass.\nCongratulations, you've done it again Mr. Wayne." diff --git a/Students/ebuer/session_02/ack.pyc b/Students/ebuer/session_02/ack.pyc deleted file mode 100644 index d3723118..00000000 Binary files a/Students/ebuer/session_02/ack.pyc and /dev/null differ diff --git a/Students/ebuer/session_02/fizzbuzz.py b/Students/ebuer/session_02/fizzbuzz.py deleted file mode 100644 index 5373040e..00000000 --- a/Students/ebuer/session_02/fizzbuzz.py +++ /dev/null @@ -1,17 +0,0 @@ - -def fizzbuzz(rng): - for r in rng: - if not r % 3 and not r % 5: - print "fizzbuzz" - elif not r % 3: - print "fizz" - elif not r % 5: - print "buzz" - else: - print r - -GLOBAL_RANGE = range(100) - -fizzbuzz(GLOBAL_RANGE) - -print locals() diff --git a/Students/ebuer/session_02/series.py b/Students/ebuer/session_02/series.py deleted file mode 100644 index e5a5e526..00000000 --- a/Students/ebuer/session_02/series.py +++ /dev/null @@ -1,127 +0,0 @@ -import numpy as np - -def fibonacci(n): - """Return the nth value in the Fibonacci series - - Syntax: - fibonacci(n) - - Arguments: - n -- a positive integer - - The function calculates the specified value in the - Fibonacci series given by the argument "n". For example - an n-value of 5 will return 5, the 5th value in the Fibonacci - series. - - Note that this function has opted to use the same indexing as python - series, which assigns a position of 0 to the first value. - """ - - if n < 0: - return None - elif not n: - return 0 - elif n == 1: - return 1 - else: - v1 = 0 - v2 = 1 - v3 = 0 - for r in range(n): - v3 += v2 - v1 = v2 - v2 = v3 - v1 - return v3 - -# print "Test Fibonacci output:" -# for m in range(20): -# print fibonacci(m), - -def lucas(n): - """Return the nt value in the Lucas series - - Syntax: - lucas(n) - - Arguments: - n -- a positive integer - - The function calculates the specified value in the Lucas series - given an argument "n". For example an n-value of 4 will return the - 4th value in the Lucas series: 7. - - Note that this function has opted to use the same indexing as python - series, which assigns a position of 0 to the first value. - """ - if n < 0: - return None - elif not n: - return 2 - elif n == 1: - return 1 - else: - v1 = 2 - v2 = 1 - v3 = v2 + v1 - for r in np.arange(2,n): - v3 += v2 - v1 = v2 - v2 = v3 - v1 - return v3 - -# print "\nTest Lucas output:" -# for m in range(20): -# print lucas(m), - -def sum_series(n, a = 0, b = 1): - """Return the nth value in an additive series with a and b as starting integers - - Syntax: - sum_series(n, a, b) - - Arguments: - n -- a positive integer - a (optional) -- a positive integer, default value is 0 - b (optional) -- a positive integer, default value is 1 - - The function is set up to act as a Fibonacci additive series unless - the new starting values for a and b are provided when the function is - called. For example: providing the values a = 2 and b = 1 will return - the nth value in the Lucas series. - - Note that this function has opted to use the same indexing as python - series, which assigns a position of 0 to the first value. - """ - if (a or b) < 0: - print 'Both a and b must be positive integers.' - return None - - if n < 0: - return None - elif not n: - return a - elif n == 1: - return b - else: - v1 = a - v2 = b - v3 = v2 + v1 - for r in np.arange(2,n): - v3 += v2 - v1 = v2 - v2 = v3 - v1 - return v3 - -# print "\nTest sum_series output:" -# for m in range(20): -# print sum_series(m, 3, 5), - -if __name__ == "__main__": - #provide test values to fibo, lucas and sum_series - #to make sure function argument passing is working. - assert fibonacci(5) == 5 - assert lucas(4) == 7 - assert sum_series(10) == 55 - - print "All functions have passed initialization tests." \ No newline at end of file diff --git a/Students/ebuer/session_02/series.pyc b/Students/ebuer/session_02/series.pyc deleted file mode 100644 index f9cb6374..00000000 Binary files a/Students/ebuer/session_02/series.pyc and /dev/null differ diff --git a/Students/ebuer/session_03/list_lab.py b/Students/ebuer/session_03/list_lab.py deleted file mode 100644 index 5662000a..00000000 --- a/Students/ebuer/session_03/list_lab.py +++ /dev/null @@ -1,91 +0,0 @@ -#@python: 2 - -#part 1 of list lab -listo = ['Apples', 'Pears', 'Oranges', 'Peaches'] -print listo - -usr_fruit = raw_input("Please add another fruit: ") -listo.append(usr_fruit) -print listo, '\n' - -usr_number = raw_input('And now provide a number: ') -list_value = int(usr_number)-1 - -if list_value < len(listo): - print 'Value %i is %s\n' %(int(usr_number), listo[list_value]) -else: - print "Sorry, there is no value there.\n" - -print 'Let me add something for you, like an Avocado.' -listo = ['Avocado'] + listo -print listo - -print '\nAnd now a mango.' -listo.insert(0, 'Mango') -print '%s\n' %listo - -print 'Can I share all the "P" fruits with you?' -for fruit in listo: - if 'P' in fruit[0]: - print fruit - -# part 2 of list lab -print "\nI'm still excited about our fruit list:" -for fruit in listo: - print fruit - -print "\nBut I don't care for %s" % listo[-1] -# del listo[-1] -listo.pop() -print listo - -# copy list since we did bonus scripting and don't want something too long -p3_list = listo -p4_list = listo - - -usr_rm = raw_input("Is there anything you don't care for? ") -print "I can remove %s" % (usr_rm) - -# bonus scripting -spincycle = False -while not spincycle: - if usr_rm in listo: - n = listo.count(usr_rm) - for m in range(n): # need this since .remove only does 1 instance - listo.remove(usr_rm) - print '\nGreat, consider it gone.\n%s\n' % listo - spincycle = True - else: - print "\nSorry, I checked but %s isn't in our list. I checked twice." % usr_rm - listo = listo * 2 - listo.sort() - print '\n%s' % listo - usr_rm = raw_input("\nPlease check the list and let me remove something else. ") - -# part 3 -print "I think we got off on the wrong foot, let's go back to an earlier list." -for fruit in p3_list: - usr_fruit = raw_input('Do you like %s? '% fruit.lower()) - spincycle = False - while not spincycle: - if usr_fruit == 'no': - p3_list.remove(fruit) - spincycle = True - elif usr_fruit == 'yes': - spincycle = True - else: - print "A yes or no will do, thanks." - usr_fruit = raw_input('Do you like %s? ' % fruit.lower()) - -print "Here's your modified final list: %s" % p3_list - -#part 4 -backward_fruit=[] -for fruit in p4_list: - backward_fruit.append(fruit[::-1]) - -del p4_list[-1] - -print "Original List: %s" %p4_list -print "Backwards List: %s" %backward_fruit diff --git a/Students/ebuer/session_03/mailroom.py b/Students/ebuer/session_03/mailroom.py deleted file mode 100644 index d9ac810c..00000000 --- a/Students/ebuer/session_03/mailroom.py +++ /dev/null @@ -1,185 +0,0 @@ -# mailroom program to break the monotony - -# this may be a bad idea but we will see -# a list of tuples for donors and donations -client_list = [ - (('Askew', 'Anne'), (87.50, 100, 200)), - (('Bocher', 'Joan'), (25, 43.27)), - (('Clarkson', 'Jeremy'), (10.03,)), - (('Hamont', 'Matthew'), (1000, 250, 5)), - (('May', 'James'), (30, 75)), - (('Parris', 'George van'), (25, 35, 45))] - -# length of person name for printing - - -def person_len(person): - l = 0 - for p in person: - l += len(p) - return l - - -# make a name list and a money list -def list_maker(client_list): - donors = [] - donations = [] - for person in client_list: - donors.append(person[0]) - donations.append(person[1]) - return donors, donations - -donors, donations = list_maker(client_list) - - -# make standard name format for handling -def name_split(nme): - fname, lname = nme.split(' ') - return (lname, fname) - - -# take a name and check the list, return true where present, else false -def client_check(nme, donors): - fname, lname = nme.split(' ') - if (lname, fname) in donors: - print '{f} {l} is a previous donor.'.format(f=fname, l=lname) - return True - else: - print '{f} {l} is a not a previous donor.'.format(f=fname, l=lname) - return False - - -# function takes no arguments, prompts for value then - # validates and returns float - -def donation_func(): - val_donation = False - while not val_donation: - usr_donation = raw_input('Please enter a donation: ') - try: - usr_donation = float(usr_donation) - val_donation = True - except ValueError: - print "Sorry, that wasn't a valid donation.\n" - return usr_donation - -# test block prior to starting mailroom -if __name__ is '__main__': - assert person_len(('Archer', 'Sterling')) == 14 - - l, f = name_split('Sterling Archer') - assert l == 'Archer' - assert f == 'Sterling' - - print 'Initial tests pass.\n' - - -# mailroom looping we will used bored for flow control since that -# was the genesis of this brilliant program - - -bored = True -print 'Welcome to the Mailroom timesaver!' - -while bored: - print 'Please choose an option:\n\ - 0: Send a thank you\n\ - 1: Create a report\n\ - 2: Exit the timesaver\n' - - report_opt = int(raw_input('Please enter your choice: ')) - - # sending a thank you - if not report_opt: - usr_name = raw_input('Please enter a name, m for menu, or "list" for a list of donors: ') - - if usr_name == 'm': - continue - - if usr_name == 'list': - print '\n' - for person in donors: - print '{first} {last}'.format(last=person[0], first=person[1]) - print '\n' - continue - - # existing name, scan records and insert new donation - if client_check(usr_name, donors): - usr_donation = donation_func() - - for person in client_list: - # need to get correct record - if name_split(usr_name) in person: - new_record = (name_split(usr_name), - (person[1] + (usr_donation,))) - client_list[client_list.index(person)] = new_record - - # new donor, just append the name and donation to the end of the list - else: - usr_donation = donation_func() - new_record = ((name_split(usr_name)), (usr_donation,)) - client_list.append(new_record) - - print "Dear {donor}, \n\n\ - Thank you for choosing to contribute the generous sum\n\ - of ${amount:.2f} to the Midvale School for the Gifted.\n\ - We are confident you will be pleased with what your\n\ - ${amount:.2f} will be used for since we are definitely\n\ - not laundering it in a complex scheme with Mr. Walter White.\n\n\ - All the best,\n\ - MSG\n\n\ - ".format(donor=usr_name, amount=usr_donation) - - elif report_opt == 1: - # print a report of all donors and donations - - client_list.sort() - donors, donations = list_maker(client_list) - - # find max name length - name_length_value = 0 - for d in donors: - if person_len(d) > name_length_value: - name_length_value = person_len(d) - - name_length_value += 5 # need to add some space after the name - - print '{0: >{l}}'.format(' ', l=name_length_value), - print '{a: >8} {b: >8} {c: >8} {d: >8}'\ - .format(a='Num', b='Total', c='Avg', d='Donations') - - for person in donors: - i = donors.index(person) - - l = len(donations[i]) - avg_d = 0 - tot_d = 0 - d_list = [] # d-listed, hilarious - c_list = [] - - for d in donations[i]: - avg_d += d / l - tot_d += d - d_list.append(d) - - cwidth = 10 - len(str(d)) - c_list.append(cwidth) - - name_str = '{first} {last}'.format(first=person[1], last=person[0]) - print '{name_str: <{l}}'.format(name_str=name_str, l=name_length_value), - print '{l: >8d} {tot_d: >8.2f} {avg_d: >8.2f} '\ - .format(l=l, tot_d=tot_d, avg_d=avg_d), - - d_list.sort(reverse=True) - - for d in d_list: - print '{d: >8.2f}'.format(d=d), - - print '\n' - - elif report_opt == 2: - bored = False - - else: - print \ - "\nSorry, that isn't an option, please choose from 0 to 2.\n" diff --git a/Students/ebuer/session_03/print_test.py b/Students/ebuer/session_03/print_test.py deleted file mode 100644 index 3c3a8a37..00000000 --- a/Students/ebuer/session_03/print_test.py +++ /dev/null @@ -1,74 +0,0 @@ - - -client_list = [ - (('Askew', 'Anne'), (87.50, 100, 200)), - (('Bocher', 'Joan'), (25, 43.27)), - (('Clarkson', 'Jeremy'), (10.03,)), - (('Hamont', 'Matthew'), (1000, 250, 5)), - (('May', 'James'), (30, 75)), - (('Parris', 'George van'), (25, 35, 45))] - - -def person_len(person): - l = 0 - for p in person: - l += len(p) - return l - - -#make a name list and a money list -def list_maker(client_list): - donors = [] - donations = [] - for person in client_list: - donors.append(person[0]) - donations.append(person[1]) - return donors, donations - -donors, donations = list_maker(client_list) - -#find max person name length -name_length_value = 0 -for d in donors: - if person_len(d) > name_length_value: - name_length_value = person_len(d) - -name_length_value += 5 # need to add some space after the name - - -print '{0: >{l}}'.format(' ',l=name_length_value), -print '{a: >8} {b: >8} {c: >8} {d: >8}'\ - .format(a='Num', b='Total', c='Avg', d='Donations') - -for person in donors: - i = donors.index(person) - #print '{f} {l}'.format(f=person[1], l=person[0]), - - l = len(donations[i]) - avg_d = 0 - tot_d = 0 - d_list = [] # d-listed, hilarious - c_list = [] - - - for d in donations[i]: - avg_d += d / l - tot_d += d - d_list.append(d) - - cwidth = 10 - len(str(d)) - c_list.append(cwidth) - - name_str = '{first} {last}'.format(first=person[1], last=person[0]) - print '{name_str: <{l}}'.format(name_str=name_str, l=name_length_value), - print '{l: >8d} {tot_d: >8.2f} {avg_d: >8.2f} '\ - .format(l=l, tot_d=tot_d, avg_d=avg_d), - - d_list.sort(reverse=True) - - for d in d_list: - print '{d: >8.2f}'.format(d=d), - - print '\n' - - diff --git a/Students/ebuer/session_03/rot13.py b/Students/ebuer/session_03/rot13.py deleted file mode 100644 index 6d10a886..00000000 --- a/Students/ebuer/session_03/rot13.py +++ /dev/null @@ -1,12 +0,0 @@ -#create a function that encodes/decodes rot13 - -import string as s - -inkey = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz' -outkey = 'NOPQRSTUVWXYZABCDEFGHIJKLMnopqrstuvwxyzabcdefghijklm' -complete_key = s.maketrans(inkey, outkey) - -test_phrase = 'Zntargvp sebz bhgfvqr arne pbeare' -print test_phrase.translate(complete_key) - -#Seems too easy! May try again using extended looping for practice. diff --git a/Students/ebuer/session_03/s3_notefile.txt b/Students/ebuer/session_03/s3_notefile.txt deleted file mode 100644 index 345e8745..00000000 --- a/Students/ebuer/session_03/s3_notefile.txt +++ /dev/null @@ -1,48 +0,0 @@ -Session 03 notes from class ---------------------------------- -Strings -ord () is the ordinal of a string value. This allows us to quickly alphabetize strings. Cap letters are indexed in front of lower case. - -string.index() locates the first instance of a specified string passed to the operator. - -string.count() acts as you'd expect it to with the count looking for the argument passed. - -raw_input() takes a string that is presented to the user -- this function always returns a string, if you want an integer or float you must cast the value - -float() -int() -etc - -input() trys to make an intelligent guess as to what type the input is. This is a bad habit to get into using since it will accept bad inputs and attempt to run them, allowing for reverse injection attacks. - -enumerate() will return the index for each value in a list - -FLOW CONTROL -break -- terminates loop - -continue -- skips everything below the continue line and returns to the top of the loop - -else on a "FOR" loop -- else is executed if the loop does not break, e.g. it runs to completion. - -enumerate(argument) -- returns both the index and the value for an argument - -string.split(argument) -- splits string on argument passed -string.join(argument) -- join list values into a string with argument separators - -strings are immutible, so all string operations return a new string. - -.isnumeric() -.isalnum() -.isalpha() -etc - - -ord() translates a character to ordinal value -char() translates values into characters - -string.format() -- most current formatting tool, pretty powerful - -string function lab -list lab -string formatting lab -homework diff --git a/Students/ebuer/session_03/str_print_lab.py b/Students/ebuer/session_03/str_print_lab.py deleted file mode 100644 index 68e2993c..00000000 --- a/Students/ebuer/session_03/str_print_lab.py +++ /dev/null @@ -1,29 +0,0 @@ -# String formatting lab - -# create a function that prints in integer format for -# an arbitary number of ints or other values -test_list = [1, 3, 5, 7, 13, 17, 23, 29.5] - - -def intprinter(L=[0, 1, 2, 3]): - n = len(L) - ni = [] - for i in L: - ni.append(int(i)) - temp = str(ni).strip("[]") - print 'The first %i numbers are %s' % (n, temp) - -intprinter(test_list) - - -# write a formatting string to transform the provided inputs -lab_inp = (2, 123.4567, 10000) # it's a tuple! - -# using old formatting -print 'file_00%i, %.2f, %.3e' % (lab_inp[0], lab_inp[1], lab_inp[2]) - -# using .format -newstring = 'file_00{a:d}, {b:.2f}, {c:.0e}'\ - .format(a=lab_inp[0], b=lab_inp[1], c=lab_inp[2]) - -print 'your formatted string: %s' % newstring diff --git a/Students/ebuer/session_03/string_funcs.py b/Students/ebuer/session_03/string_funcs.py deleted file mode 100644 index e8111cbd..00000000 --- a/Students/ebuer/session_03/string_funcs.py +++ /dev/null @@ -1,41 +0,0 @@ -#@python: 2 -#slicing lab functions - -test_string = 'The quick brown fox jumps over the lazy dog' -test_string2 = 'Pack my box with five dozen liquor jugs' -test_string3 = [0, 1, 1, 2, 3, 5, 8, 13] - - -#first and last characters exchanged -def switcher(t_str): - return '%s%s%s' %(t_str[-1], t_str[1:-1],t_str[0]) - - -#ever other character -def skipper(t_str): - return t_str[::2] - -#first 4 and last 4 chars removed, every other in between -def hacker(t_str): - return t_str[4:-4:2] - - -#reverse a string using slicing -def reverso(t_str): - return t_str[::-1] #whole string, step/walk backwards - -#return middle, last, first thirds of random string -def scrambler(t_str): - temp = len(t_str) - front = t_str[0:temp / 3] - mid = t_str[temp / 3 : 2 * temp / 3] - last = t_str[2 * temp /3 :] - return '%s%s%s' %(mid, last, front) - -#printing block -print switcher(test_string) -print skipper(test_string3) -print hacker(test_string2) -print reverso(test_string2) -print scrambler(test_string) - diff --git a/Students/ebuer/session_04/OSlab/oslab4.py b/Students/ebuer/session_04/OSlab/oslab4.py deleted file mode 100644 index 43fbe6b9..00000000 --- a/Students/ebuer/session_04/OSlab/oslab4.py +++ /dev/null @@ -1,47 +0,0 @@ -""" -Write a little script that: - Reads that file - Generates a list of all the languages that have been used. - Extra credit: keep track of how many times each language is used. - - There has to be some better way than what is on lines 20/21 -""" - -f = open('students.txt', 'r') -f.readline() # throw out header - -lang_dict = dict() - -while True: - line = f.readline() - if not line: - break - - temp = line.split(':')[1] - temp = temp.split(',') - - for l in temp: - l = l.strip(' \n ') - l = l.upper() # reduce keys by converting case - lang_count = lang_dict.get(l, 'new') - - if lang_count is 'new': - lang_dict.setdefault(l, 1) - else: - lang_count += 1 - lang_dict.update({l: lang_count}) -f.close() - -lang_dict.pop('') -print_list = lang_dict.items() - - -def plist(ltup): - return ltup[1] - -print_list.sort(key=plist, reverse=True) - -print 'List of languages sorted by popularity:' - -for lang, n in print_list: - print '{lang}: {n}'.format(lang=lang.title(), n=n) diff --git a/Students/ebuer/session_04/OSlab/students.txt b/Students/ebuer/session_04/OSlab/students.txt deleted file mode 100644 index 1919f50e..00000000 --- a/Students/ebuer/session_04/OSlab/students.txt +++ /dev/null @@ -1,36 +0,0 @@ -name: languages -Albright, Ryan J : VBA, -Ascoli, Louis John : Basic, assm, shell -Balcarce, Darcy : matlab, autocad, python -Brand, Ralph P : C, C++, SQL, -Buer, Eric : matlab, VBA, SQL, -Claessens, Michel : VBA, basic SQL, pascal, matlab -Conde, Ousmane : -Davis, Bryan L : Javascript, PHP, SQL, Bash -Davis, Ian M : C++ -Evans, Carolyn J : SQL, -Fischer, Henry B : C, VB, SQL, SAS, -Fries, Lauren : python -Fugelso, David : C, C++, C#, Java -Fukuhara, Wayne R : VB, -Galvin, Alexander R : shell, C++, python -Gupta, Vinay : C, C++, shell -Hamed, Salim Hassan : Java, R, SAS, VBA -Hart, Kyle R : QBasic, HTML, -Hashemloo, Alireza :Javascript, PHP, C++ -Huynh, Chantal : Basic, SQL, Stata -Kazakova, Alexandra N : R, python, -Klock, Andrew P : C++, R, perl -Kramer, Aleksey :Java, R, shell -Lottsfeldt, Erik Ivan : basic, fortran, -Marcos, Danielle G : python -Mier, Benjamin C : C++, C#, -Nunn, James Brent : shell, SQL, perl, pl1 -Perkins, Robert W : fortran, pascal, stata, javascript, sql -Reece, Lesley D : html, SQL, PLSQL, perl, shell -Schwafel, Schuyler Alan : bash, python, perl, php -Simmons, Arielle R : Scheme, Java, VBA, python -Sylvan, Gideon I : -Westman, Eric W : C#, PHP, SQL, javascript -Zhang, Hui : FoxBase -Zhu, Changqing : C, diff --git a/Students/ebuer/session_04/dict_lab4.py b/Students/ebuer/session_04/dict_lab4.py deleted file mode 100644 index 806fa236..00000000 --- a/Students/ebuer/session_04/dict_lab4.py +++ /dev/null @@ -1,96 +0,0 @@ -""" -Dictonary Lab 4.1 -- fun with dictionaries -""" - -practice_dict = {'name': 'Chris', "city": 'Seattle', "cake": 'Chocolate'} - -print 'Original dict:' -for k, v in practice_dict.items(): - print '{key}: {item}'.format(key=k, item=v) - -practice_dict.pop('cake') - -print '\nRevised dict:' -for k, v in practice_dict.items(): - print '{key}: {item}'.format(key=k, item=v) - -practice_dict.setdefault('fruit', 'mango') - -print '\nAdded dict:' -for k, v in practice_dict.items(): - print '{key}: {item}'.format(key=k, item=v) - -print '\nDict Keys and values:' -for i, j in zip(practice_dict.keys(), practice_dict.values()): - print 'Key: {key: <15} Value: {val: <15}'.format(key=i, val=j) - -# using view items to check for membership -cake_var = 'cake' in practice_dict.viewkeys() -mango_var = 'mango' in practice_dict.viewvalues() - -print '\nCake in dict: {cake}\nMango in dict: {mango}'\ - .format(cake=cake_var, mango=mango_var) - - -# Part 4.2 -- a hexadecimal dictionary from a range - -r = range(16) -h = [] - -for n in r: - h.append(hex(n)) - -hex_dict = dict(zip(r, h)) - -# Part 4.3 Recode first dictionary to show number of 't's in each value - -t_dict = {} - -for vname, n in practice_dict.iteritems(): - n = vname.count('t') - t_dict.update(vname=n) - -for k, v in t_dict.iteritems(): - print "Key: {k}, number of t's: {v}".format(k=k, v=v) - -# Part 4.4 working with sets - -seed_nums = range(21) - -s2 = [] -s3 = [] -s4 = [] - -for s in seed_nums: - if s % 2 == 0: - s2.append(s) - if s % 3 == 0: - s3.append(s) - if s % 4 == 0: - s4.append(s) - -s2 = set(s2) -s3 = set(s3) -s4 = set(s4) - -print '\n' -print s2.issubset(s3) -print s4.issubset(s2) - -# part 4.5 python set -s5 = set() -temp = 'python' -for l in temp: - s5.add(l) - -s5.add('i') - -temp = 'marathon' -s6 = [] -for l in temp: - s6.append(l) - -s6 = frozenset(s6) - -print "Here's the union: {setvar}".format(setvar=s5.union(s6)) -print "Here's the intersection: {setvar:s}".format(setvar=s5.intersection(s6)) diff --git a/Students/ebuer/session_04/katalab/kata.py b/Students/ebuer/session_04/katalab/kata.py deleted file mode 100644 index a96c0d2d..00000000 --- a/Students/ebuer/session_04/katalab/kata.py +++ /dev/null @@ -1,81 +0,0 @@ -""" -OBJECTIVE: -Look at each set of three adjacent words in a document. -Use the first two words of the set as a key. -The value for each key is a list of words that follow the key. - -Initialize with a random set of two words and build - -HELP REQUESTS: I ha a really hard time with writing the dict to a file, -ended up using csv module to help me out. Any advice would be great. - -""" - -from katafunc import stringbreak, sanitize # linebreak, bookbreak, -import csv - -book = open('sherlock.txt') -book.seek(1289) # 1289 to skip header in large file - -katadict = dict() - -book_text = book.read(560492) # 560491 to capture text of large file - -book.close() - -temp = book_text.split(' ') -# at this point you have a list of words w\n and punctuation mixed in - - -for i, word in enumerate(temp): - if word.find('\n') != -1: - temp.pop(i) # entry must be popped or loop hangs up - temp.insert(i, stringbreak(word, '\n')[0]) - temp.insert(i + 1, stringbreak(word, '\n')[1]) - - -for i, word in enumerate(temp): - temp[i] = sanitize(word) - if temp[i] is '': - temp.pop(i) - - -while len(temp) > 3: - n = 0 - word1 = temp[n] # .lower() - word2 = temp[n + 1] # .lower() - val = temp[n + 2] # .lower() - - key = '{word1} {word2}'.format(word1=word1, word2=word2) - - if key not in katadict: # some single word keys are slipping through - katadict.setdefault(key, [val]) - - elif key in katadict: - templist = katadict.get(key) - - if val not in templist: - templist.append(val) - katadict.update({key: templist}) - - temp.pop(0) - - -# write everything to a file to save memory later -f = open('kata_dfile.csv', 'w') - -for k, v in katadict.iteritems(): - dline = (k, v) - spamwriter = csv.writer(f, delimiter=',', quotechar='|', quoting=csv.QUOTE_MINIMAL) - spamwriter.writerow(dline) -f.close() - -# crap that didn't work -# csvwriter = csv.DictWriter(f, delimiter= ',', fieldnames= k) -# dline = "{key}: {values},".format(key=k, values=v) -# f.write(dline) - -# print to terminal to check functionality -# for k, v in katadict.iteritems(): -# dline = '{key}: {values},\n'.format(key=k, values=v) -# print dline diff --git a/Students/ebuer/session_04/katalab/kata_dfile.csv b/Students/ebuer/session_04/katalab/kata_dfile.csv deleted file mode 100644 index 02d3b421..00000000 --- a/Students/ebuer/session_04/katalab/kata_dfile.csv +++ /dev/null @@ -1,52761 +0,0 @@ -syllables He,['was'] -dad is,['very'] -at We,['are'] -dashed down,['the'] -work He,['started'] -expect the,['bank'] -in Baker,['Street'] -There it,['is'] -now when,['I'] -yawning yes;,['plenty'] -hundred for,['the'] -the scenery,['It'] -dad in,['the'] -another word,|['shall', 'he', 'about']| -wander so.",['comes'] -Who did,['you'] -landing-places for,['river'] -office just,['this'] -of dozen,['birds'] -measure Have,['you'] -say a,|["night's", 'probable', 'word']| -whether she,|['has', 'married']| -are both,['an'] -to prevent,|['He', 'it', 'me', 'anyone', 'some', 'an', 'him']| -point I,['have'] -the Bank,['of'] -first third,['and'] -called for,|['My', 'He', 'the', 'us']| -desired his,['attentions'] -desultory chat,['with'] -not arresting,['Boone'] -knew but,['whether'] -plainly the,['matter'] -de soie,['with'] -of cardboard,['hammered'] -sleep considered,['that'] -any cried,['the'] -I listened,['to'] -feelings I,['am'] -down got,['a'] -old and,|['oily', 'only', 'foolish', 'discoloured']| -Find what,['I'] -carries us,['right'] -were fortunate,['in'] -course well,['known'] -sir if,['it'] -future I,['leave'] -imperturbably You,['put'] -your whole,['position'] -dress or,['appearance'] -it see,['no'] -head which,|['showed', 'is']| -personal affairs,['in'] -his father's,['dying'] -drawn the,['gossips'] -I mean,['to'] -also and,['I'] -the sense,['that'] -blue cloud-wreaths,['spinning'] -bottom I,['am'] -had better,|['go', 'discuss', 'do', 'not', 'proceed', 'put', 'say', 'take', 'postpone']| -double chin,['who'] -body Under,['these'] -occurrences perhaps,['I'] -made for,|['my', 'the']| -her sell,['the'] -my breath,['to'] -and cloak,['went'] -scent as,['this'] -pipe and,|['leaning', 'wondered', 'turn', 'gazing']| -bottom a,['noble'] -shan't tell,['you'] -the Colony,['of'] -right But,["I'll"] -over with,|['you', 'his', 'one', 'notes', 'bloodstains', 'cotton', 'its']| -downstairs as,['quietly'] -us he,|['remarked', 'put']| -now why,['you'] -quite incapable,['of'] -Australian from,['Ballarat'] -to fear,|['note', 'had']| -steps leading,['down'] -a handsome,|['competence', 'commission']| -gas was,|['half', 'lit']| -tree in,['the'] -gaiters and,['well-cut'] -reliability is,['quite'] -serious investigation,['It'] -if Dr,['Roylott'] -heavy-lidded expression,['which'] -fields There,['it'] -this little,|['matter', 'mystery', 'book']| -were brilliantly,['lit'] -miles through,['the'] -proof against,['the'] -slept in,['her'] -society I,['am'] -had for,['years'] -me perhaps,['it'] -right over,['the'] -help to-night,['what'] -quick steps,['upon'] -letters first,['was'] -was? I,['had'] -no maker's,['name'] -tragedy of,['the'] -energy of,['his'] -rang the,['bell'] -different points,['Holmes'] -you up,|['Watson', 'so', 'to']| -some subtle,['and'] -shattered stern-post,['of'] -cannot recall,|['when', 'any']| -company he,['asked'] -monogram rather,['at'] -All will,['come'] -I confess,|['that', 'to', 'is']| -childish She,['dropped'] -my coming,['at'] -Monday last,['McCarthy'] -sooner or,['later'] -end what,['to'] -|all however,|,['just'] -soon drive,['away'] -victim had,['come'] -and shouts,['of'] -Roylott's room,['a'] -these garments,['and'] -drew over,['the'] -statement is,|['I', 'singularly']| -then closing,['it'] -would am,['still'] -uttered it,['before'] -would at,['such'] -we went,|['into', 'to', 'mother', 'as', 'then', 'towards']| -or I,|['am', 'will', 'may']| -knew he,['was'] -cried can,['you'] -a fresh,['convulsion'] -discoloured There,['was'] -lank wrists,['protruded'] -opened his,|['lips', 'mouth', 'lids', 'bag']| -them Of,['course'] -devoid of,['interest'] -continued The,['postmark'] -or a,|['crack', 'person', 'friend', 'plaid', 'boot', 'detective', 'compositor', 'plot', 'villain', 'look']| -first time,|['that', 'saw']| -central portion,|['and', 'was']| -practical questions,['as'] -around I,['saw'] -and inquiry,['showed'] -the narrow,['passage'] -corridor Twice,['he'] -villain a,['man'] -him scribble,['on'] -a state,|['I', 'of']| -and armchairs,['With'] -money I,['do'] -fly Such,['a'] -my problem,['When'] -room The,['fire'] -room from,['whence'] -way that,|['it', 'showed', 'they']| -deep-set bile-shot,['eyes'] -to refund,['but'] -good-night Watson,['he'] -the slow,['process'] -although what,['his'] -startled at,|['the', 'my']| -little I,|["don't", 'heard']| -his belief,['the'] -sprang from,|['his', 'the', 'my']| -Arthur caught,['him'] -it's as,['much'] -uses lime-cream,['are'] -impression generally,['of'] -shaking hands,['with'] -hedges were,['just'] -yourself that,['the'] -very ordinary,['black'] -the Testament,['that'] -jealousy is,['a'] -of Mr,|['Sherlock', 'Merryweather', 'Hosmer', 'Turner', 'Neville', 'Armitage', "Hatherley's", 'Aloysius', 'Rucastle', "Rucastle's", 'Fowler']| -drawn over,['his'] -may start,['with'] -note-book and,['handed'] -remarked returning,['to'] -|some 30,000|,['pounds'] -Mr Fordham,['shows'] -Naturally it,['was'] -on felony,['would'] -firmly very,['well'] -gold-mine Naturally,['it'] -of bushy,['whiskers'] -Suppose that,['this'] -rang out,['crisply'] -wrong if,['we'] -and perhaps,|['the', 'write', 'he', 'just', 'I']| -own statement,['of'] -Flora Millar,|['the', 'a', 'in', 'how?"', 'and']| -son as,['far'] -will make,|['it', 'the', 'no']| -fallen his,['eyes'] -somewhat cold,['and'] -is Saturday,['and'] -I hadn't,['been'] -quarter Wimpole,['Street'] -two and,|['thirty', 'three']| -mopping his,['forehead'] -all mark,['him'] -emigrant ship,['the'] -promise you,['that'] -perfectly simple,['You'] -sins are,['they'] -ledger Now,['then'] -was torn,['at'] -as Spaulding,['said'] -his dog-cart,['to'] -weapon which,['will'] -to Captain,['James'] -the footman,['The'] -and insects,['But'] -it's time,['we'] -are not,|['injuring', 'very', 'connected', 'over-pleasant', 'entirely', 'averse', 'there', 'many', 'fitted', 'too']| -my books,['Round'] -took place,|['two', 'That', 'really,']| -have always,|['loved', 'about']| -had caught,|['his', 'a']| -in Hafiz,['as'] -trousers with,['brown'] -any piece,['of'] -crate with,['a'] -was all-important,['When'] -smokes of,['the'] -commonplace British,['tradesman'] -metal dangling,['down'] -your mother,|['is', 'take']| -his concluding,['remarks'] -were mostly,['concerned'] -shrugged his,|['broad', 'shoulders']| -of drawers,|['stood', 'in']| -face uncertain,['whether'] -either fathomed,['it'] -he fought,['in'] -distance to,|['travel', 'come', 'the']| -announced in,['the'] -unfenced the,['jury'] -altar and,['before'] -boots half-buttoned,['it'] -relations of,['any'] -bureau is,['a'] -wine and,['water'] -home am,['afraid'] -Holmes yes!,['In'] -may set,['your'] -worth? I,['asked'] -follow you,|['For', 'said']| -undoubtedly my,|["uncle's", 'hat']| -speak plainly,['the'] -an ordnance,['map'] -over this,|['matter', 'great', 'sort', 'ground', 'stile', 'trifling', 'business', "you'll"]| -may see,['for'] -home at,['the'] -little used,['thoroughfare'] -speed down,['the'] -a madman,['coming'] -got beyond,['words'] -She became,['restive'] -has awakened,['me'] -darkness as,['I'] -attic which,['had'] -and unclaspings,['of'] -you show,['us'] -and mind,['and'] -strangest and,['most'] -begin to,['think'] -could anyone,|['have', 'offer']| -merit that,['I'] -go none are,['sure'] -doctor's advice,['and'] -these witnesses,['depose'] -bricks It,['was'] -sleeves and,['fronts'] -have compromised,['yourself'] -having closed,['the'] -Cedars is,['a'] -though some,['dreadful'] -hour there,['arrived'] -leaned back,['in'] -him Some,['woman'] -heels and,['vanished'] -taking coffee,['in'] -as true,['as'] -the flags,['which'] -and told,|['her', 'you']| -you down,['all'] -comical pomposity,['of'] -heavy blow,['from'] -smiling it,['was'] -no more,|['They', 'to', 'of', 'than', 'compunction', 'words', 'but', 'It']| -it Did,['I'] -she never,['said'] -showed made,['the'] -to find,|['the', 'my', 'some', 'out', 'it', 'anything', 'you', 'a', 'an', 'It', 'Sherlock', 'any', 'ourselves', 'remunerative', 'that', 'there', 'another', 'her']| -whom I,|['may', 'was', 'had', 'recognised', 'can', 'have', 'buy', 'could']| -little monograph,|['some', 'on']| -clay but,['as'] -ENGINEER'S THUMB,['all'] -Times and,['smoking'] -had again,['and'] -and Suburban,['Bank'] -snuff that,['he'] -we dashed,|['away', 'down']| -and coming,['to'] -perhaps better,['first'] -lot it,['had'] -deep slumber,['Holmes'] -Windigate of,['the'] -them which,|['would', 'makes']| -of brandy,|['and', 'So']| -of bicycling,['He'] -was deadly,|['pale', 'still']| -Christmas morning,|['in', 'Peterson', 'knowing']| -amount but,['I'] -well-groomed and,['trimly'] -dare you,['touch'] -man As,|['far', 'I']| -as pa,['So'] -|entered madam,"|,['said'] -the drawing-room,|['followed', 'that', 'and', 'which', 'sofa']| -long newspaper,['story'] -miles I,['think'] -who does,['a'] -gasped the,['banker'] -coat his,['red'] -did he,|['come', 'live', 'meet', 'make', 'not', 'is']| -sounds feasible,['we'] -perturbed expression,['upon'] -gave him,|['Hatherley', 'without', 'somewhat', 'a', 'into', 'every']| -an average,['commonplace'] -building near,['the'] -myself without,['a'] -marks while,['Wooden-leg'] -course borrow,['so'] -to vanish,['away'] -states and,['were'] -Those are,|['the', 'all']| -for Gesellschaft,['which'] -endeavouring to,|['imitate', 'trace', 'send', 'tell', 'straighten', 'communicate']| -a boot-lace,['Now'] -ladies sitting,['round'] -fellow-men had,['cleared'] -left-hand side,|['there', 'of']| -claim-jumping which in,['miners'] -ears Then,['suddenly'] -mastiff I,['call'] -winds and,['the'] -remarkable episode,['was'] -the prime,['of'] -almost overcome,['my'] -A lens,['and'] -bed It,|['must', 'might']| -her thick,['black'] -had by,['no'] -spend most,['of'] -neither sickness,['nor'] -look will,['not'] -Giving pain,['to'] -tinged with,['a'] -don't bring,['it'] -dressed You,['observed'] -pushing her,|['face', 'back']| -Bridge. Here,['is'] -indeed at,|['the', 'liberty']| -discovery furnishes,['a'] -I entered,|['the', 'It', 'a']| -reach A,['jagged'] -him hope,['we'] -detain you,['longer'] -yes. It,['is'] -surprised I,['was'] -methods which,['are'] -it appeared,|['to', 'and']| -not understand,['reasons'] -you upon,['a'] -Both these,['witnesses'] -assistant having,['come'] -Merryweather the,['stake'] -the gasfitters,['ball'] -Thames The,['other'] -track You,|['can', 'must']| -wanted to,|['know', 'do', 'see']| -sure when,['he'] -a traveller,['in'] -stepfather's case,['it'] -second day,['of'] -course we,|['still', 'may']| -The bridge,['no'] -this unfortunate,|['man', 'lady']| -was never,|['so', 'to', 'any', 'able', 'weary', 'happy']| -another door,['It'] -fare and,['the'] -laughed Here,['is'] -a comfortable-looking,['man'] -didn't do,['it'] -no truth,['Mr'] -sinister quest,['upon'] -of villas,['on'] -advertisement had,['upon'] -nose station-master,['laughed'] -insists upon,['seeing'] -my youth,['took'] -came upstairs,['there'] -relative position,['to'] -showed any,['signs'] -words you,['understand'] -pay is,['good too'] -London slavey,['As'] -he his,['name'] -marriage with,|['so', 'Miss']| -Such a,['charge'] -our visitor's,['knee'] -no mother,['she'] -a fairly,['long'] -|promise," said|,['Holmes'] -single half-column,['of'] -was bound,['to'] -point Now,['I'] -spoke the,|['gleam', 'man', 'door']| -she married,|['again', 'or']| -This business,|['at', 'has']| -to money,['have'] -a coster's,['orange'] -glance however,['I'] -our seats,['to'] -attendant at,['the'] -statement to,|['you', 'be']| -sit without,['light'] -advise both,['sat'] -down Tottenham,['Court'] -absolute reliability,['is'] -Openshaw and,|['the', 'whose']| -Good-bye it,['is'] -hobby of,['mine'] -certain horror,['It'] -sister or,['landlady'] -themselves and,['others'] -narrow corridor,['while'] -Miss Honoria,['Westphail'] -at least,|['in', 'an', 'had', 'a', 'four', 'throw', 'you', 'there', 'tell', 'tenfold', 'I', 'said', 'the', 'will', 'she', 'criminal', 'ready']| -doubt You,['have'] -told more,['than'] -Spaulding and,["he's"] -slight motion,['to'] -error by,['a'] -flew open,['and'] -a persevering,['man'] -of solid,|['gold', 'iron']| -depressed and,['shaken'] -court at,['all'] -yet which,['presented'] -present instance,['I'] -precious stone,|['It', 'the']| -of those,|['boxes', 'hours', 'simple', 'great', 'which', 'drunken', 'poor', 'letters', 'who', 'singular', 'whimsical', 'geese', 'metal', 'hysterical', 'bulky', 'unwelcome', 'all-night']| -middle-sized fellow,['some'] -will follow,['in'] -children from,['being'] -expression his,['manner'] -quite recent,['and'] -beautifully I,['exclaimed'] -lady came,|['to', 'in']| -handed it,|['to', 'back', 'up']| -us to-night,['we'] -passed the,|['well-remembered', 'tall', 'Hampshire']| -Singularity is,['almost'] -west of,['England'] -every man,|['who', 'I', 'but']| -gasped What,['of'] -memory had,['seen'] -let us,|['talk', 'do', 'consider', 'try', 'put', 'hear', 'have', 'know', 'hurry', 'hope', 'lose']| -inspector Here,['it'] -not search,['for'] -that to,|['me', 'He', 'do']| -drank more,['than'] -of dingy,['two-storied'] -either mad,['or'] -everyone finds,['his'] -hard black,['lines'] -husband was,|['a', 'Was']| -that line,['You'] -last Saturday's,['Chronicle'] -Then suddenly,|['he', 'realising', 'another', 'springing']| -over to,|['anyone', 'the', 'mother', 'Ross', 'England', 'him', 'his', 'America']| -ominous bloodstains,['upon'] -is easy,|['for', 'to']| -Disregarding my,['presence'] -greatest danger,['of'] -given us,['in'] -given up,['his'] -coincidence of,['dates'] -condition of,|['the', 'his']| -penetrating to,['this'] -uncertain foot,['Then'] -are on,|['the', 'intimate']| -heartless a,['trick'] -are feared,['by'] -Christmas with,['the'] -are of,|['an', 'great', 'interest']| -found which,|['could', 'may']| -recent events,['so'] -drifting slowly,['across'] -But when,['I'] -important addition,['has'] -could this,['American'] -passion also,['for'] -meet signs,['of'] -not knowing,['what'] -on Christmas,['morning'] -break her,|['heart it', 'heart']| -of their,|['travellers', 'employ', 'saddles', 'senses', 'father', 'beds', 'tents', 'profession', 'pictures', 'journey', 'isolation']| -mysterious and,['inexplicable'] -the cellar,|['like', 'of', 'I', 'The', 'stretched', 'on', 'said', 'If']| -my bureau,['made'] -looked again,['there'] -be immediately,['implicated'] -quavering voice,['will'] -small jollification,['and'] -before cannot,['say'] -pressure When,['I'] -attract the,['attention'] -Holmes continued,['I'] -10 1883,['His'] -nose and,|['there', 'cheeks', 'chin']| -case considerably,['in'] -and screamed,['upon'] -into Holborn,['Holmes'] -repute of,['a'] -might afford,['some'] -Station no,['one'] -of staining,['the'] -furniture van,['That'] -perhaps of,['petulance'] -carrying was,['of'] -down into,|['an', 'the', 'his', 'a', 'Holborn', 'its']| -comes back,|['all', 'Then']| -but otherwise,['everything'] -stopping the,['wagons'] -my wedding-clothes,['and'] -last before,['a'] -in vegetables,['to'] -to twelve,['and'] -Holmes because,['we'] -slut from,['off'] -not Neville,['St'] -houses to,['talk'] -furiously with,['his'] -quarrels and,['this'] -time Mr,['Windibank'] -was saying,['to'] -house in,|['Kensington', 'the', 'my']| -and looking,|['eagerly', 'out', 'defiantly', 'about', 'keenly', 'at']| -him dear,['Holmes'] -house it,|['has', 'would']| -house is,|['on', 'it']| -mind about,|['that', 'father', 'them']| -mere pittance,['while'] -Oakshott of,['Brixton'] -You understand,['am'] -monotonous occupation,['my'] -I lifted,['the'] -prosperous man,['without'] -as white,['as'] -wicker-work chairs,['made'] -about Mr,|['Jabez', 'Hosmer']| -at each,|['successive', 'other', 'of']| -do shall,['spend'] -eyes travelled,['round'] -visible upon,['the'] -which neither,['alone'] -I claim,['full'] -de coeur,['She'] -criminal how,['did'] -a curt,['announcement'] -raise your,['cry'] -and shook,['my'] -it amiss,['if'] -lumber-room of,['his'] -the ship,|['must', 'The', 'last']| -felt about,['in'] -him Among,['these'] -matter will,|['be', 'fall']| -case Watson,['if'] -lips tight,['and'] -particulars As,['far'] -remember Botany,['variable'] -me see,|['said', 'it']| -a pale,|['face', 'sad-faced']| -month by,['the'] -it photograph!",['King'] -from whom,['I'] -Bordeaux where,['the'] -from showing,['my'] -bell-pull I,['cried'] -do his,['worst'] -thought seized,['me'] -crony of,['the'] -my suspicion,['became'] -door said,['Holmes'] -damp marshy,['ground'] -has suffered,['if'] -a muttered,['exclamation'] -do him,['no'] -might find,|['it', 'a']| -first of,|['all', 'criminals', 'course']| -you become,['engaged'] -at me,|['I', 'Will', 'God!', 'The', 'with', 'closed', 'until', 'as', 'again', 'her', 'Perhaps', 'are', 'out', 'now', 'keenly']| -anyone were,['to'] -in when,['I'] -has refused,['him'] -finished Between,['your'] -and simple-minded,['Nonconformist'] -who believe,|['in', 'that']| -Post Office,['to'] -she sings,['Has'] -a German,|['Do', 'accent', 'very']| -others being,['volumes'] -at my,|['hair', 'own', 'companion', 'elbow', 'request', 'skirt', 'side', 'surprise', 'disposal', 'watch', "wit's", "companion's", 'wrist', 'hand', 'facts', 'Baker', 'remark']| -The next,['instant'] -hand the,|['face', 'cord']| -taken by,['Mr'] -silence of,['the'] -indulge yourself,['in'] -pipes four,['pipes I'] -suicide and,['several'] -all You,['just'] -with he,['asked'] -police reports,['realism'] -events working,['through'] -hedge close,['by'] -him again,|['fear', 'and']| -Robinson he,['answered'] -up these,['points'] -followed her,['but'] -those all-night,['chemical'] -drawer and,['I'] -butt-end of,|['his', 'the']| -letter my,['father'] -been broken,|['into', 'so']| -professional from,['a'] -will still,['call'] -common often,['vanish'] -the savage,['creature'] -only claim,['the'] -borne away,['by'] -my secret,|['He', 'was']| -as such,['I'] -portly and,['imposing'] -is usual,['in'] -and chair,['Will'] -cellar The,|['crate', 'cellar']| -he placed,|['upon', 'his']| -singular mystery,['which'] -K ceases,['to'] -|Becher's." me,"|,['broke'] -happened he,['spoke'] -the advantage,['of'] -crowded in,['to'] -or so.,['how'] -finger-tips together,|['and', 'The', 'to']| -chair Watson,["He's"] -The fund,['was'] -someone but,['I'] -hung up,['indoors'] -had entered,|['and', 'his']| -knowing anything,['about'] -papers but,['it'] -I suggest,['that'] -lady's jewel-case,['The'] -were insufficient,['It'] -being an,['average'] -my tongue,['Reading'] -just fixed,['it'] -seen swinging,['in'] -Streatham and,['saw'] -inhabited wing,['of'] -end What,['could'] -from Ross,['in'] -in her,|['own', 'life', 'ways', 'overpowering', 'interests', 'lap', 'eagerness', 'night-dress', 'left', 'statement', 'hand', 'ear', 'right', 'then', 'as', 'room', 'hands', 'direction', 'young']| -over most,['painful'] -Young McCarthy,['must'] -should they,['give'] -ten last,['night'] -heavy brassy,['Albert'] -the value,['of'] -his quietly,['genial'] -links which,['bind'] -brown tint,['Gone'] -another man,|['As', 'since']| -appear at,['the'] -rabbit into,['its'] -are threatened,['by'] -do try,['to'] -Holmes Was,|['he', 'it']| -them into,|['an', 'the']| -asked about,['the'] -me from,|['any', 'ennui', 'Marseilles', 'breaking', 'my', 'showing', 'the']| -neck with,['a'] -wilful murder,['having'] -come from?,|["Dundee,'"]| -the land,['may'] -free on,['my'] -suspected a,['mere'] -from Horsham,['clay'] -free of,['any'] -clearly perceive,['that'] -bent with,['age'] -to Duncan,['Ross'] -goodness to,|['sit', 'open', 'touch', 'look']| -most resolute,['of'] -the three,|['at', 'of', 'rooms', 'bedrooms', 'missing', 'figures']| -and face,['protruded'] -are points,['in'] -to harm,['I'] -these vague,['theories'] -he By,['the'] -|really, I|,['came'] -barrow I,['should'] -postmark is,['London eastern'] -suspecting that,['she'] -strength causing,['injuries'] -In my,['position'] -pleasure of,|['introducing', 'assisting', 'making']| -to command,['and'] -said for,['it'] -professional and,['of'] -in colour,['a'] -own station,['What'] -first did,['you'] -myself some,['small'] -blush passed,['over'] -boards while,['the'] -blood in,['my'] -framework of,['the'] -bad companions,['took'] -most extreme,['importance'] -looked inside,['the'] -was allowed,['some'] -Sutherland I,['tell'] -extreme limits,|['and', 'of']| -prefer not,['to'] -circumstances made,['a'] -hoard where,['he'] -light mousseline,['de'] -220 pounds,['standing'] -Angel must,['have'] -specialist in,['crime'] -only fair,['to'] -he now,|['has', 'and']| -Only two,['days'] -the trouble,['of'] -set an,['edge'] -will tell,|['you', 'me']| -ourselves Frank,['said'] -thrown from,['the'] -sides All,['my'] -hands what,['will'] -lit and,|['even', 'shone']| -cleaned it,['dressed'] -drawer At,['last'] -finally returning,['to'] -appearance at,['the'] -The lamps,['had'] -vilest alleys,['in'] -though a,['window'] -City Just,['ring'] -was staying,['in'] -next evening,['I'] -day the,['wind'] -equalled It,['was'] -desk but,['China'] -contemplative mood,['which'] -slit of,['dim'] -Holmes was,|['not', 'pacing', 'transformed', 'silent', 'able', 'wrong', 'already', 'a', 'well', 'as', 'favourably', 'settling']| -remains You,['must'] -his presence,['I'] -blue smoke,['curling'] -shot Do,['you'] -already recorded,['still'] -sat again,['in'] -bedroom through,['the'] -copier of,['the'] -abstracted from,['the'] -UNCLE: I feel,['that'] -enemies I,['know'] -employ of,['Mr'] -should or,['should'] -I help,['suspecting'] -war time,['and'] -is willing,['to'] -the leaking,['cylinder'] -mind before,['he'] -trained it,['probably'] -written beneath,['These'] -I held,['most'] -purposes and,['the'] -knows to,['be'] -advocate here,['who'] -half-clad stable-boy,['waiting'] -fire her,['instinct'] -beggary and,['he'] -at for,['my'] -been lounging,['in'] -afterwards we,['were'] -wicked lust,['for'] -dog cried,['Miss'] -cord is,['hung'] -very essential,|['Miss', 'to']| -flags which,['lined'] -impatient snarl,['in'] -innocent man,|['or', 'who']| -wonder who,['the'] -really confined,['to'] -preserve my,['disguise'] -a vacancy,|['and', 'did', 'in']| -man entered,['who'] -he actually,['within'] -spirits swinging,['an'] -had misgivings,['upon'] -the gipsies,|['do', 'and']| -freely over,['his'] -understand without,['being'] -you advance,['with'] -our actions,['I'] -eyebrows What,['can'] -mentioned for,['I'] -plans I,['expect'] -houses of,|['Europe', 'Great']| -professional case,['of'] -sensationalism for,['out'] -of roofs,['some'] -It looks,['as'] -They drove,['away'] -thin knees,['drawn'] -place The,['Copper'] -with whom,['I'] -seeing what,['I'] -January 85,|['that', 'my']| -marry another,['woman'] -been much,|['perturbed', 'attracted']| -Venner &,['Matheson'] -confided it,['to'] -hardly found,['upon'] -rejoin you,['in'] -marriage also but,['I'] -clearly and,|['concisely', 'kindly']| -on such,['a'] -him about,['it'] -lens You,['know'] -and pale,['with'] -unusual salary,['the'] -employed my,['morning'] -though to,['remember'] -explanations each,['of'] -City She,['little'] -to acquiesce,['in'] -rain to,['lengthen'] -enormous pressure,['When'] -BLUE CARBUNCLE,['had'] -was evident,['that'] -lamp the,['fat'] -double point,['our'] -field down,['considerably'] -flattered as,['any'] -I really,|["wouldn't", 'cannot', 'could']| -envelope So,['it'] -foot we,['are'] -a wonderful,|['sympathy', 'man', 'manager']| -disappointed in,['his'] -that though,|['the', 'we']| -edge to,['a'] -pensioners upon,['the'] -secrecy is,['quite'] -middle-aged gentlemen,['are'] -much addicted,['to'] -that address,['it'] -your money,['for'] -woman very,['much'] -word it,['is'] -in to-night's,['adventure'] -word is,['inviolate'] -transform myself,['into'] -perhaps she,['might'] -won't claim,['to'] -the High,['Street'] -of Horner,['who'] -been drinking,['hard'] -may mean,['a'] -silent but,['some'] -Charming rural,['place'] -rise within,['me'] -following paragraph,['Cosmopolitan'] -done better,['to'] -did You,['remember'] -don't believe,['it'] -official police,|['From', 'agent', 'but', 'I', 'as']| -it bless,['you'] -sacrificing it,['in'] -either openly,['abjure'] -A month,['ago'] -had occurred,|['two', 'I', 'Miss', 'during', 'A', 'he']| -very heartily,|['with', 'at']| -story right,['away'] -would think,|['of', 'that', 'they']| -taken It,['corresponds'] -well to,|['do', 'follow', 'earn', 'have', 'think', 'cringe', 'perform']| -|position here,|,['Watson'] -bill for,['a'] -offer an,['opinion'] -served upon,['me'] -accept in,['return'] -the new,|['role', 'year', 'conditions', 'foliage']| -friend's incisive,['reasoning'] -There the,['matter'] -get out,['and'] -vague account,['of'] -parents by,['studying'] -dad she,['asked'] -the trustees,['are'] -slovenly as,['we'] -doddering loose-lipped,['senility'] -faithfully ST,['SIMON.'] -rain with,['high'] -branches in,['different'] -just buy,['a'] -dimly imagine,['Several'] -my inheritance,['You'] -one limb,['is'] -strong agitation,['which'] -he appears,|['as', 'to']| -cards said,['that'] -some paternal,['advice'] -and grotesque,['As'] -solve this,['problem'] -cigar which,|['my', 'had']| -their horses,['and'] -not connected,['with'] -our task,['to'] -thick hanging,['lip'] -was stirring,['It'] -keys in,|['his', 'the']| -and sinking,['his'] -it pulled,['up'] -corner still,['looking'] -I Charming,['rural'] -we compress,['it'] -to France,|['upon', 'again', 'Hosmer', 'were']| -shown into,['the'] -skill I,['took'] -effects and,['extraordinary'] -bore the,['name'] -poultry supplier.,|['then,']| -him Good-bye,['and'] -rules of,['your'] -Oh let,['us'] -lay in,['wait'] -discriminate When,['a'] -reabsorbed by,['them'] -flush upon,|['her', 'his']| -pennies and,|['half-pennies 421', '270']| -have bitterly,['regretted'] -the McCarthys,['were'] -second floor,|['of', 'About']| -politicians who,['had'] -it she,['had'] -Then creeping,['up'] -her beautiful,['hair'] -intention to,|['make', 'charge']| -just left,|['him', 'Turning', 'everything']| -He suddenly,['sprang'] -shown extraordinary,['energy'] -the Sherlock,['Holmes'] -most clumsy,['and'] -us through,['the'] -notably in,['Tennessee'] - John,['Swain'] -our red-headed,['client'] -Shall be,['glad'] -you against,['him'] -firm then,['in'] -hunting in,['couples'] -and Horner,['was'] -investigation The,['larger'] -latter led,['to'] -the Museum,['itself'] -whither that,['hypothesis'] -his clearing,['up'] -advertisement never,['hope'] -Some scaffolding,['had'] -did you,|['find', 'know', 'take', 'do', 'pick', 'see', 'beat', 'come', 'address', 'gather', 'verify', 'understand', 'learn', 'go', 'gain', 'wish', 'not', 'trace', 'deduce', 'get', 'sell', 'first', 'observe', 'hope', 'give', 'think?']| -have read,|['the', 'about']| -other means.,['was'] -separate explanations,['each'] -son laughed,['softly'] -go down,['to'] -leave him,|['Good-bye', 'alone', 'stooping']| -woven into,['the'] -ten would,['be'] -more miserable,['ways'] -peace I,['love'] -liar as,['well'] -leave his,['room'] -settle his,['debts'] -her mother,|['Then', 'when']| -seventeen steps,['because'] -touched bottom,['at'] -might betray,['me'] -from Dundee,|['and', 'If']| -and preserved,['her'] -wild goose,['may'] -blood had,['fallen'] -any harm,['were'] -photograph which,['he'] -very friendly,['footing'] -quick firm,['steps'] -the young,|["lady's", 'lady', 'man', "man's", 'widow', "lady's your"]| -self-respect reasoning,['is'] -events in,['question'] -scar ran,['right'] -Civil War,['and'] -show how,['strange'] -Square and,|['I', 'the', 'that']| -may stop,['his'] -events it,['was'] -events is,['certainly'] -a rending,['tearing'] -strange antics,['of'] -moment that,|['my', 'I']| -apparently have,['gone'] -geese for,['a'] -his lips,|['to', 'and', 'compressed', 'his', 'the', 'tight', "heaven's"]| -horse's head,|['and', 'while']| -and Mrs,|['St', 'Francis', 'Rucastle']| -barque Sophy,['Anderson"'] -the simple,|['fare', 'faith']| -about shooting,['them'] -drove faster,['but'] -got blood,['enough'] -think as,['if'] -been made,|['Twice', 'We', 'in', 'during']| -might see,['him'] -think at,|['one', 'this']| -buy a,['goose'] -your existence,['THE'] -wooden thicket,['which'] -cleared the,['matter'] -sight which,['met'] -think and,|['he', 'so']| -despair If,['his'] -letter he,['spoke'] -Southern states,|['and', 'after']| -eager enough,['to'] -soothingly bending,['forward'] -dottles left,['from'] -are breaking,['the'] -with silk,['black'] -disappeared that,['the'] -That bears,['out'] -Our footfalls,['rang'] -world It,['is'] -were broken,['and'] -bald enough,['and'] -extremely difficult,['sounds'] -with Miss,['Hatty'] -actual ill-treatment,['from'] -youth took,['to'] -didn't know,|['much', 'this', 'what']| -most difficult,['to'] -without the,|['knowledge', 'payment']| -heels with,['the'] -letters are,|['without', 'all']| -tumultuously in,['at'] -practice when,['my'] -hear you,|['give', 'say']| -30 pounds,|['to', 'a']| -Reading and,['possibly'] -which was,|['thrown', 'suggested', 'increased', 'the', 'not', 'piled', 'tilted', 'peculiar', 'to', 'quite', 'so', 'found', 'a', 'hanging', 'of', 'invariably', 'full', 'answered', 'weighted', 'tied', 'characteristic', 'loose', 'buttoned', 'passing', 'associated', 'ajar', 'used', 'mottled', 'composed', 'standing', 'my', 'round', 'throbbing', 'performed', 'no', 'acted', 'naturally', 'even', 'all', 'wont']| -revolver in,|['your', 'his']| -serious case,|['against', 'Nothing']| -lady might,['with'] -trouble he,['might'] -the girl,|['said', 'who']| -who went,['to'] -year our,['good'] -year out,['in'] -last London,['season'] -my station,|['in', 'However']| -My limbs,['were'] -as brave,['as'] -stepfather learned,['of'] -The wind,['was'] -literary shortcomings,['the'] -injuries reveal,['something'] -right I'm,['sure'] -acknowledges me,['to'] -being the,|['scene', 'nearest']| -propriety of,['my'] -of circumstances,['which'] -study of,|['crime', 'tattoo', 'the']| -which hangs,['over'] -my cousin,['Arthur'] -you best,|['And', 'by']| -business to,|['a', 'do', 'know', 'an']| -than any,|['effort', 'other']| -evidently seen,['more'] -above my,['head'] -badly on,['account'] -cases have,['indeed'] -announced his,['approaching'] -emotion akin,['to'] -home that,['she'] -shocked at,['having'] -or two,|['of', 'matters', 'questions', 'To-day', 'little', 'details', 'minor', 'points', 'twinkled', 'plain', 'things', 'very', 'places', 'above', 'do,']| -view of,|['your', 'the', 'recent']| -my reach,['With'] -visitor but,['a'] -in your,|['chamber', 'eyes', 'absence', 'pocket', 'position', 'example', 'bedroom', 'undertaking', 'lot', 'London', 'sleep?', 'hands', 'room', 'case', 'power', 'house', 'rooms']| -picked nervously,['at'] -exclaimed is,['obvious'] -I earn,['at'] -shag which,['I'] -at climbing,['down'] -having signalled,['to'] -Yard With,['him'] -lady he,['cried'] -customary contraction,['like'] -this two,['days'] -doubt which,['might'] -is you,['who'] -the Church,['of'] -noble man,['night it'] -many feet,['both'] -suddenly in,['the'] -since it,|['has', 'was']| -You see,|['but', 'Mr', 'it', 'all', 'how', 'Watson', 'this', 'that', 'we', 'no']| -pounds shall,['endeavour'] -rooms the,['gems'] -perfect happiness,['gently'] -me? so.,['But'] -it took,['all'] -and complete,['silence'] -mystery my,['dear'] -she we've,['set'] -read for,|['yourself', 'about']| -the home-centred,['interests'] -him round,['myself'] -ordered and,['when'] -set yours,['aside'] -shaken me,['more'] -and better,['not'] -received an,|['excellent', 'appointment']| -upstairs said,['he'] -ground as,['is'] -meanly of,['me'] -fire until,['he'] -salary of,['4'] -girl and,|['as', 'has']| -of satisfaction,|['For', 'This']| -water was,['but'] -friend remarked,['This'] -landowner who,['believe'] -garden below,['was'] -Norton of,['the'] -are without,['looking'] -stairs got,['into'] -half wages,|['so', 'it']| -becomes Still,['of'] -none said,['he'] -back Fritz!',['she'] -of light,|['For', 'now', 'mousseline', 'one', 'and', 'upon', 'shot']| -a narrow,|['passage', 'belt', 'strip', 'white-counterpaned', 'corridor', 'path']| -I fainted,|['when', 'dead']| -from Lord,['St'] -grey shepherd's,['check'] -|tut, tut|,['I'] -of energy,['Holmes'] -plans That,['is'] -a head,|['that', 'of', 'In', 'which']| -quite imagine,['that'] -But never,['mind'] -an English,|['paper', 'lawyer', 'provincial']| -a panel,['in'] -to-morrow large,['and'] -for Pope's,['Court'] -struck the,['light'] -the precious,|['stone', 'case', 'treasure', 'coronet']| -of mere,['vagueness'] -else could,|['she', 'outweigh']| -contraction has,['turned'] -loathsome serpent,['is'] -all and,|['I', 'to']| -search he,['had'] -a slow,['staccato'] -this business,|['already', 'since']| -ran thus,['MR.'] -was printed,|['the', 'upon']| -the ruffian,['who'] -dashed open,['and'] -As Cuvier,['could'] -windows of,|['the', 'this']| -asked formed,['any'] -page-boy throwing,['open'] -But I'll,|['go', 'have']| -for two,|['years', 'days', 'nights']| -1869 the,['movement'] -power would,['rise'] -Hotel Cosmopolitan,|['I', 'Pray']| -become delirious,['No'] -none missing,['There'] -took my,|['gun', 'station', 'wedding-clothes']| -fingers fidgeted,['with'] -in vain,|['to', 'for', 'Good-bye']| -on board,['of'] -took me,|['in', 'away', 'to']| -resided Some,['scaffolding'] -word Watson,['you'] -cuff so,['very'] -complete loss,['for'] -there we,['found'] -A large,['face'] -husband Here,['we'] -curve of,['the'] -lunatic that,['he'] -resort to,['her'] -asked He,['is'] -pounds which,['lay'] -see upon,['your'] -shown up,|['to', 'together']| -India He,['has'] -yourself last,['night'] -just where,['the'] -Toller and,['his'] -off his,|['coat', 'very']| -whimsical problem,['and'] -him standing,['by'] -hand all,['that'] -Lady Clara,['St'] -We got,|['to', 'away', 'into']| -narrative years,['have'] -within that,|['time a', 'radius']| -his system,['of'] -first key,['fitted'] -as strong,['as'] -was indeed,|['he', 'in', 'at', 'a', 'our', 'well']| -bewilderment Then,['suddenly'] -personal advantages,['and'] -another piece?,['have'] -he lay,|['upon', 'there']| -ceremony and,['occasionally'] -hypothesis for,['want'] -depression of,['the'] -all followed,['the'] -gesture and,['vanished'] -black canvas,['bag'] -different way,['long'] -could any,['gentleman'] -uncertain whether,['to'] -saw it,|['all', 'by', 'in']| -most remarkable,|['to', 'bird']| -him last,['he'] -to look,|['into', 'three', 'how', 'after', 'and', 'at', 'sleepily', 'for', 'out', 'it', 'round', 'Why']| -resolved to,['use'] -towards my,['wife'] -saw in,['the'] -greyish and,['were'] -the geese,|['which', 'to?', 'off']| -put our,|['little', 'eyes']| -could and,['soon'] -yours perhaps,['yourself'] -will refuse,['will'] -were flying,['across'] -day my,['editor'] -has written,|['to', 'the']| -carpenter hands,['my'] -of fortune,|['have', 'I']| -Oh Heaven,['bless'] -shall set,|['to', 'my']| -has done,|['a', 'from', 'it', 'me', 'no']| -heard by,['Miss'] -in completely,['Until'] -him? at,['his'] -future lives,['That'] -dog-cart at,|['the', 'Winchester']| -shall see,|['He', 'whither', 'you', 'who', 'whether', 'if', 'which']| -singular man,['fierce'] -he over,["Lloyd's"] -stream upon,['the'] -ears and,['next'] -bell Holmes,['whistled'] -every mood,['and'] -data were,['insufficient'] -face are,['you'] -happy Mr.,['Sherlock'] -minutes said,['he'] -base my,['articles'] -need you,["Here's"] -in by,|['repeated', 'train', 'the']| -there never,|['was', 'has']| -her face,|['and', 'all', 'blanched', 'forward', 'that', 'I', 'More', 'After']| -dress does,['implicate'] -endured imprisonment,['ay'] -because there,['are'] -folk from,['whom'] -bar of,|['the', 'light']| -man without,|['a', 'heart']| -defined my,['limits'] -by Mr,|['Godfrey', 'Aloysius', 'Lestrade']| -the wealthy,['Mr'] -gave an,|['inarticulate', 'undue']| -harm station-master,['had'] -geese!" The,['man'] -Was it,|['to', 'possible', 'your', 'all', 'not']| -its conventionalities,['and'] -Clair has,|['entered', 'most']| -bear the,|['unconscious', 'disgrace', 'news']| -thread no,['doubt'] -bring a,['man'] -having it,['all'] -impending misfortune,['impressed'] -know her,['but'] -can always,['draw'] -Clair had,|['her', 'last', 'been', 'fainted']| -miles over,['heavy'] -black with,|['the', 'black']| -The dog,['is'] -start at,['once'] -good seaman,['should'] -was sure,|['that', 'of']| -word that,['I'] -not observed,['And'] -disgust you,['with'] -passionate as,['his'] -afterwards the,|['sitting-room', 'clang']| -a philanthropist,['or'] -by evening,['I'] -a frantic,['plucking'] -vacant chair,['upon'] -waistcoat yellow,['gloves'] -that petered,['out'] -monotonous said,['he'] -good health,['landlord'] -murderer must,['have'] -be the,|['blackest', 'hours?', 'end', 'man', 'simpler', 'only', 'young', 'result', 'best', 'signs', 'lodge', 'easier', 'reason', 'holder', 'initials', 'stone', 'chief', 'house', 'more', 'ruin', 'very', 'richest', 'worse', 'fragment', 'matter', 'position', 'maid', 'police', 'truth', 'most']| -his seeing,['Mr'] -secret hoard,['where'] -That fatal,['night'] -and 90,['I'] -as correct this,['article'] -his Lordship,['I'] -named There,['are'] -scratching his,['chin'] -than there,['are'] -What was,|['the', 'this', 'that', 'he']| -The swing,['of'] -eccentricity brought,['in'] -the cross,['bar'] -eyes at,['his'] -it snatched,['it'] -laughed. I,['am'] -Archery and,['Armour'] -wealthy Mr,['Turner'] -them A,['single'] -her like,['one'] -walk brought,['us'] -them I,|['answered', 'think', 'have', 'returned', 'leave']| -in opposing,['the'] -What can,|['this', 'it', 'I', 'you', 'he']| -limps with,['the'] -was obviously,['caused'] -shall write,|['two', 'to']| -seen more,['in'] -this You,|['have', 'will']| -man appeared,['at'] -methods I,['hold'] -farther side,|['we', 'of']| -outside however,['and'] -writing lately,['I'] -death that,['I'] -mixture of,['the'] -have placed,|['himself', 'before', 'them']| -this in,|['itself', 'one', 'it']| -lady to,|['whom', 'a']| -be committed,['there'] -dear boy,['to'] -a composer,['of'] -wish that,['you'] -fainted on,['seeing'] -the outer,|['edge', 'side']| -gems to,['his'] -some great,|['hoax', 'anxiety', 'crisis', 'trouble']| -residence of,['the'] -very quietly,|['sir', 'It', 'we', 'entered']| -ideal spring,['day'] -soda in,['Baker'] -live happily,['together'] -poor girl,|['no', 'placed', 'who']| -long I,['remained'] -while she,|['was', 'held']| -dreadful mess,['but'] -possible that,|['graver', 'he', 'it', 'we', 'even', 'our', 'I', 'this', 'the', 'his']| -the reception,['by'] -an egg,['after'] -time Instead,['of'] -any which,['presented'] -It drove,['me'] -may open,['his'] -their escape,|['We', 'For']| -royal blood,['in'] -of removing,['any'] -affair the,['consciousness'] -few hundred,['pounds.'] -faced although,['I'] -may prove,|['to', 'it']| -kept talking,['of'] -possible than,['that'] -angle of,|['the', 'Surrey']| -but one,|['woman', 'retreat', 'thing', 'way', 'of']| -Bohemia in,['return'] -the mastiff.,['was'] -I drove,|['home', 'one']| -out little,|['is', 'and']| -he takes,['snuff'] -little promise,['that'] -them was,|['of', 'his', 'mine', 'Sir', 'that']| -fat and,['burly'] -would hurry,['on'] -I thought,|['we', 'at', 'he', 'that', 'over', 'as', 'it', 'of', 'there', "I'd", 'her', 'little', 'a', 'I', 'however']| -wash linen,['of'] -should produce,['her'] -is seared,['into'] -note-paper It,['read'] -in June,['89 there'] -place where,|['four', 'our', 'my']| -impossible but,['I'] -we erected,['a'] -years said,['she'] -|Holmes yes,|,['I'] -had such,['faith'] -the doors,['of'] -off into,['silence'] -also because,['the'] -dying man,['said'] -heart of,|['great', 'hearts', 'a']| -my fields,['On'] -see deeply,['into'] -cannot blame,['you'] -admiring your,["fuller's-earth"] -yellow envelope,['and'] -remarkable about,['the'] -investigations Inspector,['Barton'] -place might,['not'] -old gold,['with'] -visit to,|['Warsaw', 'Saxe-Coburg', 'her', 'Brixton', 'an']| -blaze house,['is'] -that likely,|['I', 'not']| -the explanation,['may'] -replace his,['clay'] -Holmes no,['sir'] -Petrified with,['astonishment'] -between cocaine,['and'] -an importance,['which'] -looked from,|['one', 'the']| -it or,|['whether', 'convinced', 'bending']| -it on,|['the', 'my', 'either', 'a', 'The', 'we']| -stained and,['streaked'] -cried I,|['am', 'do', 'seem', 'if']| -picked it,['up'] -it of,|['late', 'course', 'you']| -his hunting-crop,['I'] -known the,|['truth', 'quiet', 'bridegroom']| -adventures which,['were'] -autumnal winds,['and'] -so savagely,['I'] -daresay There,['is'] -pips is,['the'] -knowledge which,|['you', 'even', 'is']| -to-day and,['send'] -and returned,|['in', 'some', 'towards']| -pirates who,['will'] -we paced,|['up', 'to']| -would suit,|['me', 'them']| -Then Sherlock,['Holmes'] -pips in,|['the', 'others']| -over into,['the'] -a shudder,['to'] -father when,['I'] -maddening doubts,['and'] -stile and,['so'] -only provoked,['a'] -worm-eaten oak,['so'] -my dear,|['sir', 'Watson', 'girl', 'little', 'madam', 'wife', 'boy', 'fellow', 'young', 'daughter']| -viewed for,['instance'] -except the,['criminal'] -he by,['binding'] -wife looking,['across'] -Square was,['a'] -rug Here,['are'] -his consciousness,['He'] -Merryweather but,['he'] -that voice,['before'] -must stop,['here'] -woman to,|['him', 'bear']| -upon European,['history'] -travelled round,['and'] -armchair and,|['closing', 'putting', 'cheery', 'warmed', 'greeting', 'stood']| -alternately asserted,['itself'] -single child?,['no'] -you just,['to'] -Great Britain,['is'] -glass above,['the'] -walk up,['and'] -a knot,['in'] -were greyish,['and'] -even redder,['than'] -how strongly,['it'] -of finding,|['this', 'them']| -more ready,['to'] -my conscience,['THE'] -windows This,['strange'] -does his,['wit'] -forgiveness for,['those'] -No servant,['would'] -would bring,|['the', 'a', 'his', 'you', 'me']| -a sturdy,['middle-sized'] -chamber so,['we'] -down near,['Briony'] -married again,|['so', 'She']| -son The,|['son', 'first']| -secret as,['a'] -is better,|['said', 'to', 'that']| -His letters,['were'] -a foreign,|['stamp', 'tongue']| -fine stroke,['to'] -away like,|['this', 'the', 'that.']| -glass in,|['his', 'my']| -tear off,['another'] -furnished A,['camp-bed'] -under your,['roof'] -to Lord,['St'] -long after,['my'] -of sherry,['pointed'] -drawn from,|['him', 'my']| -letter you,['certainly'] -anatomy unsystematic,['sensational'] -for river,['steamboats'] -twisted you,['not'] -nonsense. was,['in'] -matter as,['I'] -of whoever,['it'] -very bright,['red'] -matter at,['all'] -criminals in,['London'] -air they,['were'] -his powerful,['magnifying'] -the very,|['deepest', 'word', 'soul', 'possibility', 'room', 'simple', 'remarkable', 'morning', 'strongest', 'thought', 'letters', 'shape', 'words', 'day', 'best', 'man', 'horror', 'bed', 'peculiar', 'heads', 'station', 'painful', 'note', 'items', 'few', 'first']| -large curling,['red'] -sill but,['I'] -They laid,['me'] -down my,['face'] -nose I,['ventured'] -a sallow,['Malay'] -written in,|['a', 'pencil', 'the']| -for who,['else'] -go together,['We'] -call for,|['it', 'help', 'protection']| -saw to,|['my', 'return']| -The police,['have'] -doubt travel,['a'] -a mixed,['affair'] -so and,|['saw', 'Holmes', 'I']| -darkness which,['surrounds'] -comical he,['was'] -sharp you,['ought'] -father met,['his'] -are sentimental,['considerations'] -sitting up,['in'] -ennui he,['answered'] -a Lascar,['was'] -out the,|['League', 'Encyclopaedia', 'case', 'paragraph', 'very', 'pips', 'vile', 'grounds', 'present', 'grey', 'full', 'diadem', 'required', 'coronet', 'first', 'contents']| -photograph and,['a'] -showed by,['its'] -slowly from,['the'] -acute and,['original'] -dropped in,|['my', 'sheer']| -violent and,['the'] -spreading out,['of'] -alone A,['prodigiously'] -who live,['under'] -alone I,['promised'] -recovering them,['naturally.'] -central window,['with'] -covered over,['her'] -Street we,['shall'] -there has,|['then', 'been']| -kissed her,['and'] -us hope,['so'] -associate crime,['with'] -the senior,['partner'] -having met,['you'] -gather yourself,['as'] -drawer With,['trembling'] -him Do,['you'] -time a,['decrepit'] -of Eastern,['divan'] -he flung,['open'] -must raise,['the'] -light And,['first'] -perpetrators For,['some'] -look feeling,['of'] -seem trivial,['to'] -time I,|['heard', 'was', 'have', 'hope']| -a fine,|['actor', 'law-abiding', 'stroke', 'to']| -chair against,['the'] -rashness of,['my'] -way up,['and'] -a preliminary,['to'] -could get,|['the', 'rid', 'no']| -our arrangements,['when'] -strong emotion,['in'] -so. little,['time'] -wing are,['on'] -murder-trap on,['the'] -catch a,['glimpse'] -man fresh,['from'] -clues which,|['would', 'I']| -this but,['the'] -market Tell,['us'] -mixed Watson,['for'] -bulldog and,['as'] -rifled jewel-case,['at'] -obey any,['little'] -awful to,['me'] -for it's,|['town', 'as']| -he should,|['be', 'go', 'come', 'reach', 'succeed', 'return', 'retain']| -Your task,['is'] -sinking his,['voice "have'] -cap on,['the'] -shall try,['not'] -unfortunately more,['than'] -might throw,['a'] -hinges but,['they'] -came by,|['the', 'his']| -should think,|['sound', 'we', 'from', 'fit', 'while']| -and stood,|['very', 'with']| -case made,['a'] -grow to,['be'] -all means,|['was', 'and']| -he feared,['we'] -conditions obtained,['an'] -just quitted,['me'] -the sympathetic,['sister'] -done our,['work'] -then to,|['the', 'raise', 'throw', 'tell', 'cause', 'bring']| -extreme darkness,['he'] -sit down,|['upon', 'in', 'on', 'and']| -had disappeared,|['that', 'Mr']| -whatever it,['was'] -one remarkable,['point'] -my handkerchief,|['very', 'round', 'On', 'up', 'and']| -know everything,['of'] -of apology,['and'] -that are,|['destroyed.', 'all']| -affair when,['there'] -tugged until,['I'] -in Bow,['Street'] -would look,|['askance', 'at']| -never together,['but'] -nice work,['as'] -dog to,['help'] -soon remedied,['and'] -berths to,['men'] -snug chamber,['me'] -woman who,|['had', 'is', 'has']| -to Stoke,['Moran'] -do he,['went'] -bring up,['your'] -who forgot,['all'] -whole they,['seemed'] -carte blanche,|['tell', 'to']| -and lowliest,['manifestations'] -I question,|['whether', 'sir']| -the ceaseless,['tread'] -the account,['nine'] -table waiting,['for'] -a couple,['of'] -now past,['the'] -in such,|['contrast', 'a', 'words', 'trouble', 'places']| -has said,['that'] -my things,['and'] -me having,['someone'] -done before,['now'] -hands to,['the'] -probably transferred,['the'] -and sensations,['he'] -monotonous voice,['their'] -is lightened,['already'] -Windibank Holmes,['continued'] -revolver cocked,['upon'] -cigar and,|['let', 'cigarette', 'waited']| -man hesitated,['for'] -banker wrung,['his'] -Ah miss,['it'] -look askance,['at'] -paragraph in,['which'] -become the,['laughing-stock'] -planking and,['probing'] -D.D. Principal,['of'] -his collar,|['or', 'turned']| -coroner's jury,|['was', 'There']| -near Reading,['My'] -than what,['we'] -Holmes My,['overstrung'] -murder having,['been'] -blood were,['to'] -can This,['is'] -to whether,['I'] -public-house at,['the'] -your London,['you'] -weeks was,['at'] -upbraided for,['not'] -the Theological,['College'] -his compasses,['drawing'] -direction It,['grew'] -snow which,['might'] -is really,|['confined', 'a', 'very', 'impossible', 'no', 'two', 'to', 'the', 'managed']| -third point,['which'] -next to,|['the', 'each']| -its horrid,['perch'] -fortunate as,['I'] -risers were,['just'] -very sharp,['you'] -tell them,['apart.'] -their first,['green'] -in Berkshire,['It'] -cigarette into,['the'] -had known ,|['then,']| -until to-morrow,['was'] -morose Englishman,['Early'] -principle appears,['to'] -records and,['when'] -her young,['man'] -sounding the,['planking'] -I were,|['not', 'alone', 'twins', 'glad', 'it']| -says it,['is'] -this unhappy,|['young', 'family']| -few of,|['us', 'my']| -For an,|['instant', 'hour']| -per cent,['Two'] -says is,|['true', 'absolutely']| -his path,|['and', 'Violence']| -under them,['and'] -entirely different,['It'] -anything to,|['a', 'do']| -Lord Robert,|['Walsingham', 'St']| -day so,['far'] -than such,['a'] -makes one,['for'] -is grizzled,['that'] -knowing that,['even'] -is given,['to'] -on You,['can'] -intuition fastening,['upon'] -notes three,['have'] -Arthur is,['innocent'] -during our,|['drive', 'homeward', 'short']| -laughed I,['remember'] -is fear,['Mr'] -rolled them,['all'] -that bell,['communicate'] -twice He,['is'] -which his,['son'] -gentleman named,['Hosmer'] -sunk and,['a'] -|yes, Mr|,['Holmes'] -sound would,['be'] -play such,['tricks'] -as day,['I'] -red hair,|['With', 'all', 'grew', 'and']| -confession could,['make'] -quiet one,|['that', 'no']| -own shadow,['might'] -remarked Mr,['Holmes'] -stopped to,['light'] -o'clock my,['friend'] -not It,|['must', 'is']| -not until,['close'] -everything of,|['importance', 'it']| -fulfilled A,['fortnight'] -beds It,['struck'] -as Peter,['Jones'] -feet thrust,['into'] -crime the,['more'] -brougham rolled,['down'] -I settled,['myself'] -believing her,['to'] -with stout,['cord'] -do yourself,['have'] -woman of,|['thirty', 'strong', 'the']| -this nocturnal,['expedition'] -This note,['I'] -her consciousness,['Such'] -abruptly and,['in'] -am ever,['your'] -round the,|['edges', 'curve', 'corner', 'edge', 'angle', 'body', 'flaring', 'room', "reptile's", 'wrist', 'head', 'house', 'garden']| -interest It,['is'] -all safe,['and'] -in France,['the'] -at 12s.,['have'] -vague figure,['huddled'] -striking face,['attracted'] -to Fordham,['the'] -must find,['your'] -very lovely,['woman'] -Bank There,['is'] -came over,|['the', 'our', 'me']| -virtues and,['of'] -whom you,|['wish', 'can', 'may', 'helped', 'had']| -never met,['so'] -mind with,|['my', 'a']| -be explained,['away'] -sir There's,['never'] -sank his,['face'] -Christmas dinner,['he'] -surely the,['bell'] -Some woman,['came'] -matter This,['is'] -they appeared,['to'] -modern and,['the'] -of grief,|['and', 'than', 'that']| -absurd to,|['anyone', 'suppose']| -no need,['for'] -ex-Australian The,['men'] -his deserts,|['This', 'it']| -strenuously having,['ever'] -to what,|['of', 'it', 'these', 'took', 'we', 'had', 'you', 'I', 'the']| -she became,|['engaged', 'his']| -he evolved,['from'] -There he,|['was', 'is']| -Rucastle however,['who'] -way with,['a'] -be regretted,['Having'] -narrowly it,['seemed'] -accompanying them,['in'] -shall investigate,['the'] -done The,['smoke'] -last three,|['days', 'years']| -visitor be,['precise'] -have had,|['the', 'several', 'misgivings', 'one', 'some', 'little', 'diabetes', 'none', 'nothing', 'a', 'to', 'considerable', 'three', 'your']| -reptile's neck,['he'] -the barmaid,['finding'] -Kent See,['that'] -these charming,['invaders'] -and sent,|['them', 'for']| -it says,['and'] -very tall,['and'] -once There,['is'] -of interest,|['then', 'to', 'They', 'It', 'The', 'cannot', 'and', 'in', 'after', 'my']| -gloss with,['which'] -his ghost,['at'] -fashion ordered,['fresh'] -overtopped every,['other'] -that Miss,|['Sutherland', 'Helen', 'Stoner', 'Stoper', 'Hunter', 'Rucastle']| -tree as,['far'] -us some,['harm'] -should know,['if'] -fastened at,['the'] -first that,|['you', 'the', 'this', 'which']| -coil of,['hair'] -fastened as,['I'] -slept at,['Baker'] -satisfy my,['own'] -road there,['who'] -may well,['have'] -the Californian,['heiress'] -that strike,['you'] -is of,|['such', 'that', 'a', 'some', 'course', 'importance', 'the', 'her', 'no', 'value.', 'paramount', 'value']| -rather to,|['himself', 'the', 'those']| -help to,|['them', 'clear', 'this']| -half-hopeful eyes,['as'] -is on,|['fire', 'Monday', 'duty', 'the', 'Wednesday']| -pestered as,['I'] -home a,|['dozen', 'box']| -we had,|['turned', 'all', 'listened', 'just', 'some', 'found', 'never', 'got', 'a', '1000', 'been', 'better', 'come', 'seen', 'noticed', 'hydraulic', 'sat', 'under', 'passed']| -he enlarged,['at'] -right side,|['of', 'well', 'right', "You're", 'was']| -Then let,['us'] -books Bill,['said'] -usual remarking,['before'] -several delicate,['cases'] -table was,|['set', 'beautifully']| -has left,|['England', 'it']| -North it,['was'] -goes Sherlock,['Holmes.'] -1000 pound,['notes'] -the chalk-pit,['unfenced'] -by so,|['formidable', 'many', 'elaborate']| -home I,|["don't", 'ventured']| -look round,['me'] -slipped through,['was'] -her mother's,['and'] -felt by,['daubing'] -and should,|['you', 'be']| -never leave,['his'] -carelessly scraped,['round'] -might help,|['us', 'me']| -him mention,['her'] -evidence but,['he'] -the few,['acres'] -armchair You,['see'] -artistic I,['could'] -and we,|['were', 'all', 'keep', 'can', 'heard', 'shall', 'set', 'will', 'had', 'lay', "can't", 'both', 'dashed', 'rattled', 'fattened', 'got', 'could', 'are', 'waited', 'listened', 'wish', 'drove', 'came', 'sat']| -dispose of,['it'] -some vague,['account'] -map of,['the'] -summoned Holmes,['sat'] -Watson this,['is'] -will come,|['to', 'with', 'well']| -Square presented,['as'] -stop the,|['night.', 'service']| -house shortly,['after'] -they fire,['Watson'] -memory too,['of'] -this forty-grain,['weight'] -The case,|['has', 'is', 'would']| -any practice,['at'] -if there,|['is', 'was', 'were']| -hush this,['thing'] -afraid to,['break'] -knew where,['I'] -the glade,['It'] -once convinced,['from'] -it lengthened,['out'] -marines to,['whom'] -able with,['a'] -Then she,|['threw', 'got']| -avert another,['public'] -authorities that,['there'] -my revolver,|['cocked', 'and', 'said']| -said yesterday,['some'] -body had,['been'] -serving-man in,['the'] -near St,["Paul's."] -ashes were,['of'] -point He,['placed'] -between puckered,['lids'] -drawn him,['into'] -rogue incites,['the'] -collecting pillows,['from'] -be kept,|['up', 'upon']| -my remarks,['very'] -noble in,['the'] -that It,|['is', 'conveyed', 'was']| -fare that,['our'] -wood though,['I'] -pushed her,['out'] -went about,['however'] -misgivings upon,['the'] -boasting when,['I'] -rather severe,['upon'] -must also,['put'] -him Everybody,['about'] -corridor with,['a'] -will prove,['to'] -are to,|['understand', 'station', 'watch', 'the', 'hush', 'be', 'examine', 'take']| -crisply and,['loudly'] -still held,['in'] -remains however,['improbable'] -sound a,['gash'] -that whatever,|['happened', 'danger', 'her']| -less now,['than'] -The shutters,['cut'] -suggest got,['off'] -since to,['a'] -on their,['way'] -all! said,['he'] -sound I,['must'] -destroy his,['theory'] -reconstruction of,['the'] -protruding out,['of'] -awkward doing,['business'] -Francisco a,['year'] -gave his,['evidence'] -task is,['confined'] -grotesque As,['I'] -the bisulphate,['of'] -you could,|['never', 'do', 'solve', 'see', 'help', 'not', 'manage', 'make', 'come', 'wink!', 'tell', 'perform', 'send']| -my dooties,['just'] -are careful,['I'] -grey cloth,['seen'] -to accept,['anything'] -are women,['in'] -employer laughing,['at'] -back hung,['a'] -town this,['morning'] -think evil,['of'] -incoherent ramblings,['of'] -all engaged,['for'] -glass-factories and,['paper-mills.'] -alive It,['was'] -ring and,['confided'] -guessed as,['much'] -cable will,['have'] -very gipsies,['in'] -watered silk,['a'] -and what,|['the', 'then', 'their', 'were', 'was', 'happened', 'Hugh', 'did', 'of', 'purpose', 'have', 'it']| -and interesting,['features'] -brought about,['for'] -the sobered,['Toller'] -pipe thrusting,['out'] -fallen As,['I'] -him now,['with'] -words Holmes,['sat'] -itself upon,|['the', 'me']| -I continually,['visited'] -of lime-cream,['This'] -would when,['he'] -books in,['which'] -home in,|['a', 'the', 'it']| -places although,['there'] -just whatever,['he'] -incident be,['a'] -implored him,['to'] -bed after,['his'] -then wandered,|['through', 'about']| -dear Arthur,['in'] -seemed than,['to'] -am going,|['through', 'out', 'mad', 'right']| -coffee and,['then'] -A camp-bed,['a'] -crossed the,['threshold'] -your company,['said'] -address it,['was'] -dear! That,['is'] -well. And,['I'] -again for,['I'] -wintry sun,['Down'] -grand gift,['of'] -coroner indeed,['who'] -or orange,['pips'] -two or,['three'] -the Bermuda,['Dockyard'] -finally that,['C'] -two of,|['my', 'us', 'them', 'which', 'the']| -such trouble,['she'] -frost it,['would'] -for God's,['sake'] -just have,['time'] -Oakshott here,['and'] -the tradesmen's,|['entrance', 'path']| -prime of,['life'] -pitch of,|['expectancy', 'tension']| -few details,['which'] -gained on,['every'] -has become,|['known', 'of']| -been burned,['had'] -stood smiling,['holding'] -her way,|['see.', 'with', 'into', 'back', 'up', 'in', 'least,"']| -was pretty,['and'] -swear and,['that'] -are several,|['people', 'other', 'quiet', 'singular', 'points']| -a life,['of'] -hat on,|['which', 'I']| -1846. He's,['forty-one'] -respects he,['appears'] -finger in,['the'] -hat of,['the'] -she threw,|['open', 'her']| -he Pray,['lie'] -make her,['way'] -hardly knows,['his'] -CARBUNCLE had,['called'] -openly abjure,['his'] -lip to,['this'] -tread pass,['his'] -unique portly,['client'] -house about,['half'] -chance at,['all'] -he disentangled,['the'] -chance as,['any'] -simplify matters,['We'] -not effusive,['It'] -labour It's,['as'] -light was,['still'] -you come,|['to', 'away', 'pestering', 'with']| -doing all,['that'] -playing but,['I'] -a cluster,['of'] -has her,['freedom'] -paramount importance,['Yours'] -spun the,['web'] -be worth,|['your', 'while']| -fell a,['cascade'] -a ghastly,['face'] -the convincing,['evidence'] -father's laughter,['made'] -pity especially,['as'] -any criminal,['in'] -within two,['hours'] -struck him,['down'] -half opened,['his'] -medical man,['are'] -fell I,['was'] -Pray proceed,|['my', 'with']| -feet would,['carry'] -clearly how,['simple'] -nothing and,|['generally', 'kept']| -it's the,['common'] -gear If,['you'] -solution is,['its'] -with great,|['yellow', 'care', 'intensity']| -beef would,['do'] -Frank here,|['again', 'and', 'had']| -first wife,['was'] -longed to,['meet'] -a gibe,['and'] -your purpose,['equally'] -Plantagenet blood,['by'] -What does,['her'] -cannot be,['any'] -were travelling,['in'] -and braced,['it'] -whole way,['out'] -and ruin,['of'] -a salesman,|['in', 'named']| -an arm,['back'] -the silence,|['of', 'from', 'I', 'Holmes']| -you remark,|['in', 'the']| -have yourself,['formed'] -inside then,|['once,']| -must put,|['the', 'this']| -meant for,|['the', 'a']| -suddenly he,['plunged'] -angry and,|['said', 'of']| -do Your,['advice'] -alone friend,['rose'] -my honour,|['but', 'my']| -Even when,['she'] -fellow for,['photography'] -earth one of,['the'] -locked up,|['We', 'I']| -pointing at,['the'] -resist the,['fascination'] -indeed is,['most'] -one belonging,['to'] -old ancestral,['house'] -a hundred,|['a', 'yards', 'other', 'before']| -that her,|['house', 'word', 'right', 'stepfather', 'sister', 'dowry', 'education', 'temper', 'mistress', 'position', 'father']| -indeed it,['was'] -Yard is,['acting'] -and Tudor,['on'] -help us,|['said', 'is', 'in']| -abstracted air,['but'] -Cooee was,['a'] -been recognised,['in'] -down We,['will'] -How long,['they'] -desperate man,|['Though', 'who']| -to lead,|['me', 'It']| -only bring,['you'] -gathering darkness,['I'] -nerve to,['lie'] -Holmes drew,['one'] -check trousers,['a'] -led a,['life'] -goodwill and,['interest'] -further points,['that'] -august person,['who'] -opinion about,['a'] -was fresh,['and'] -distorted child,['who'] -fuss made,['about'] -me fresh,['life'] -formerly pointing,['to'] -worth of,['the'] -over heavy,['roads'] -Miss Rucastle,['was'] -three gentlemen,['are'] -door He,|['was', 'stretched']| -nothing was,['to'] -the couch,|['I', 'and', 'was']| -What sundial?,['he'] -City the,['other'] -lot at,['once'] -A B,['and'] -of spectators,['well'] -insufficient data,['The'] -band! There,['was'] -side That,['dreadful'] -regret that,['I'] -delight everything,['was'] -glare of,['the'] -one shook,['my'] -a probable,['one'] -how hard,['it'] -it unless,['it'] -errand as,['it'] -of reeds,['round'] -the occupant,['perhaps'] -myself inside,['the'] -is familiar,['to'] -Scala hum,['Prima'] -get her,|['to', 'out']| -uncle returned,['to'] -here a,|['highway', 'few']| -doctor was,|['furnished', 'kind']| -engine could,['be'] -to lay,|['your', 'a']| -drove back,['into'] -that laugh,['it!"'] -until then,['that'] -drawn as,['I'] -read the,|['indications', 'evidence', 'advertisement', 'following', 'whole']| -genial fashion,|['ordered', 'He']| -you Holmes,|['answered', 'said', 'and']| -finely adjusted,['temperament'] -was gone.,['cannot'] -here I,|['shall', 'believe', 'have', 'traced', 'gave', 'put']| -may want,['your'] -figure pass,['twice'] -a wonderfully,['silent'] - THE,['RED-HEADED'] -and lashed,['furiously'] -club of,['which'] -sold by,['Mrs'] -was none,['other'] -now to,|['have', 'solve', 'him', 'go']| -common lot,['this'] -away was,|['suggestive', 'pitch']| -your laughter,['whenever'] -and another,['little'] -the fantastic,['Of'] -importance At,['present'] -just such,|['as', 'a']| -if something,['quite'] -through one,['of'] -at what,|['he', 'moment', 'point', 'hour']| -to time,|['I', 'to', 'or', 'is']| -Malay attendant,['had'] -over such,['a'] -the news,|['that', 'of', 'and', 'to']| -one begins,['to'] -fish that,['you'] -had little,['of'] -to showing,['his'] -of cause,['and'] -too said,['Mr'] -glasses more,['vigorously'] -manner as,['if'] -again on,|['the', 'its']| -of Peterson's,['fire'] -rather painful,['tale'] -pungent cleanly,['smell'] -it did,|['not', 'though', 'I', 'to']| -and whatever,['it'] -flicked the,['horse'] -let Mr,['Hosmer'] -six o'clock,|['tomorrow', 'that', 'sir.']| -were usually,['preceded'] -tool and,['was'] -so Mr,|['Jones', 'Rucastle']| -|however, the|,['knowledge'] -bone had,['been'] -I rushed,|['forward', 'out', 'upstairs', 'towards', 'across', 'down']| -is safely,['in'] -the curtain,|['near', 'long']| -so My,['room'] -death's door,['Then'] -ventured a,['remark'] -other from,['the'] -you sure,|['about', 'that']| -facts I,|['have', 'must']| -there The,|['cabman', 'Embankment']| -the engineer,['is'] -any news,['to-morrow'] -|perhaps, Mr|,['Holmes'] -my bracelets,['on'] -village inn,['over'] -settee said,['Holmes'] -should continue,['my'] -a herd,['of'] -golden sovereigns,['for'] -small matter,|['will', 'in']| -silent house,['There'] -faddy people,['you'] -are we,['to'] -Majesty to,['regain'] -you supplied,['to'] -to this,|['room', 'mysterious', 'and', 'place', 'dear', 'gentleman', 'Mrs', 'man', 'trip', 'floor', 'ventilator', 'extraordinary', 'Lost', 'lucky', 'no', 'Alice', 'young', 'You', 'address', 'long', 'most', 'poor', 'system']| -might change,['my'] -given me,|['Yet', 'fresh', 'And', 'such', 'satisfaction', 'your']| -no. No,['crime'] -find yourself,['in'] -lad tugging,['at'] -overhearing the,['questions'] -Holmes have,|['but', 'notes']| -newspaper from,['the'] -snigger Well,['would'] -we regained,['our'] -in sitting,['by'] -experience would,['tell'] -little bald,['in'] -smart little,['landau'] -a heart,['which'] -deduce the,['select'] -of excitement,['who'] -a roof,['over'] -things Perhaps,['I'] -an oak,['shutter'] -passage paused,['immediately'] -over him,|['I', 'for']| -he paced,['up'] -despairing gesture,['and'] -I repeatedly,['told'] -picking up,['a'] -to Saxe-Coburg,['Square'] -this single,['sheet'] -should return,['We'] -a strongly,['marked'] -ordinary plumber's,['smoke-rocket'] -gone must,['have'] -over his,|['shoulders', 'high', 'shoulder', 'eyes', 'head', 'parched', 'grounds', 'outstanding', 'forehead', 'brow', 'business', 'throat', 'face']| -Might not,['the'] -very absurd,['I'] -not over-bright,['pawnbroker'] -twelve-mile drive,['gasped'] -up the,|['lane', 'side', 'steps', 'shutters', 'street', 'lantern', 'morning', 'dead', 'case', 'envelope', 'paper', 'mystery', 'outer', 'small', 'stair', 'stone', 'blue', 'steel', 'windows', 'epistle', 'garments', 'path', 'trains']| -greatest consternation,['by'] -set your,|['mind', 'foot']| -make by,['the'] -Bohemian paper,['and'] -been hurt,['When'] -legible upon,['the'] -the hotel,|['where', 'waiter', 'gave', 'Then', 'I']| -brought to,['bear'] -facility of,['repartee'] -nearly fell,['from'] -a number,['of'] -perhaps we,['might'] -driven down,['to'] -he says,|['wish', 'DEAR']| -But as,|['I', 'a']| -for He,|['said', 'sank']| -But at,['any'] -sailing-ship reaches,['Savannah'] -look of,|['peering', 'infinite', 'incredulity', 'grief', 'it']| -the Alpha,|['Inn', 'yes;', 'then,', 'were', 'at', 'and']| -with much,['less'] -had stopped,['at'] -look on,|['these', 'his']| -said then,['that'] -those bulky,['boxes'] -my shoes,['I'] -goose may,['not'] -a Christmas,['present'] -not want,['any'] -energetic inquiries,['are'] -cupboard. often,['had'] -infirmity of,['speech'] -anyhow so,['I'] -a pitch,['of'] -every one,['of'] -was face,['to'] -folded up,['the'] -controlled when,['she'] -it decline,['of'] -sometimes he,['would'] -plentiful with,['me'] -of character,|['His', 'he']| -passing In,['that'] -six figures,['with'] -a baleful,['light'] -the fluffy,['brown'] -ten minutes,|['I', 'to', 'was', 'before', 'or', 'beginning']| -instant We,['cannot'] -there the,['body'] -I do,|['not', 'unless', 'is', 'so', 'for', 'Holmes', 'I', 'put', 'and']| -drawn back,['by'] -to jump,['until'] -the deepest,|['impression', 'thought', 'interest']| -came running,|['as', 'up']| -Serpentine They,['were'] -been seriously,['wronged'] -often?" some,['hundreds'] -season I,['met'] -long cherry-wood,['pipe'] -careless servant,['girl'] -nerve and,['he'] -Stoner said,['he'] -His whole,|['face', 'life']| -only chance,|['young', 'said']| -who desires,['to'] -thirty Hatherley?,['said'] -visitor And,['now'] -then Found,['at'] -butcher's cleaver,['in'] -your judgment,['and'] -iodoform with,['a'] -mean that,|['she', 'it', 'he', 'any']| -tapping at,['the'] -attempts of,['the'] -Encyclopaedia Britannica,['There'] -matter with,|['me', 'him']| -young womanhood,['had'] -This ground,['in'] -my household,['Mr'] -not laid,['on'] -London eastern division,['Within'] -not itself,['within'] -no question,|['as', 'that']| -minutes and,['then'] -clothes pulled,['on'] -to settle,|['with', 'down']| -have belonged,['to'] -he assumed,['The'] -young men,['who'] -consideration at,['his'] -high autumnal,['winds'] -about how,['a'] -she stood,['at'] -jacket I,|['met', 'wish']| -ever chance,['to'] -was either,['a'] -assures me,['that'] -be silent,|['and', 'Oh']| -one thing,|['but', 'said', 'to', 'in']| -all Europe,['and'] -who leads,['a'] -the action,|['to', 'and']| -to move,|['into', 'me', 'and']| -embarrassed by,['the'] -Coroner: How,['was'] -What else,['could'] -consented to,['take'] -of linen,['The'] -a boat,['was'] -will find,|['me', 'the', 'said', 'parallel', 'little', 'it', 'that', 'an']| -my servant,['will'] -did at,|['first', 'last']| -as plainly,['furnished'] -the advertised,['description'] -A stable-boy,['had'] -before and,|['that', 'after', 'on', 'he', 'also', 'finally']| -floor Why,['dear'] -languid lounging,['figure'] -that den,|['my', 'It']| -right through,['the'] -within the,|['week', 'edge', 'space', 'last', 'hydraulic', 'grounds', 'room']| -examine the,|['third', 'machine']| -see did,['you'] -gave the,|['appearance', 'alarm', 'impression', 'maid', 'name']| -father I,|['had', 'looked', 'am']| -all these,|['reasons', 'isolated', 'varied', 'luxuries', 'vague']| -handwriting Unless,['they'] -the blue,|['smoke-rings', 'smoke', 'carbuncle', 'dress']| -but these,['may'] -parish who,['has'] -was remarkably,['animated'] -frightened of,['the'] -disguise the whiskers,['the'] -comparatively small,['one'] -was remarkable,['and'] -the result,|['that', 'is', 'of', 'when']| -house at,|['Hatherley', 'Stoke', 'Lancaster', 'Streatham']| -house as,['in'] -of logical,['synthesis'] -little income,|['he', 'she']| -tying up,['of'] -drunken-looking groom,['ill-kempt'] -knew your,['energetic'] -To do,['this'] -K.! he,['shrieked'] -shot the,['slide'] -being in,|['the', 'favour']| -with just,['a'] -music at,['St'] -a second-floor,['window'] -furnished with,|['long', 'a']| -retain her,['secret the'] -had foreseen,['the'] -so absolutely,['concentrated'] -new discovery,['furnishes'] -closely into,['details'] -want must,['be'] -is innocent,|['think', 'who', 'cannot', 'You', 'knows?', 'Let', 'of']| -laying her,['hand'] -peasant had,['met'] -another loafer,['who'] -in London,|['for', 'and', "He's", 'He', 'It', 'One', 'By', 'which', 'do']| -man himself,|["He'll", 'at']| -they not,['fresh'] -and passed,|['his', 'her']| -secured at,['the'] -|moment," Holmes|,['interposed'] -began talking,['rather'] -|cheap half-wages,|,['in'] -alone for,['Lestrade'] -that rate,['In'] -mad Here,['is'] -superscribed to,['Sherlock'] -were from,['a'] -the ceiling,|['a', 'Then', 'think,', 'the', 'Round']| -reach the,|['ventilator', 'door']| -to 226,['Gordon'] -at first,|['that', 'sight', 'she', 'groaned', 'been', 'but', 'inclined', 'developed']| -over me,|['Who', 'and', 'I']| -All was,|['going', 'as']| -met you,['succeeded'] -do had,['a'] -The distinction,['is'] -now another,['vacancy'] -got mixed,['Watson'] -have arrived,['almost'] -fixed vacantly,['upon'] -at this,|['Mr', 'time', 'but', 'moment', 'hour', "lady's", 'He', 'sudden', 'to']| -been already,['referred'] -den in,|['the', 'which']| -lay upon,|['the', 'a', 'our']| -him free,['I'] -which They,['laid'] -the fate,['of'] -and remember,['the'] -where a,|['lawn', 'room', 'few', 'corner']| -he naturally,['did'] -beaten against,['the'] -my partner,|['and', 'I', 'with']| -ourselves to,['find'] -drink and,['that'] -the buildings,['Of'] -to use,|['it', 'my', 'and', 'slang', 'your']| -may both,['think'] -for wear,|['and', 'The']| -never very,|['much', 'absorbing']| -band! the,['speckled'] -It appeared,|['in', 'to']| -no other,|['woman', 'said', 'traces', 'exit']| -rain had,['beaten'] -figures with,['expectancies'] -where I,|['was', 'lay', 'would', 'liked', 'received', 'could', 'hope', 'might', 'had']| -the tinted,['spectacles'] -passage gazing,['at'] -sharply I,['have'] -been well,['with'] -formidable man a,['man'] -refer them,['to'] -the exact,|['spot', 'purpose']| -to us?,['could'] -and not,|['to', 'me', 'another', 'a', 'very', 'Neville', 'sink', 'one', 'in', 'too']| -couple And,['yet'] -cheetah and,['a'] -fresh There,['is'] -Again I,['changed'] -the list,['of'] -an active,['member'] -first day,['that'] -brown dustcoat,['and'] -cry of,|['fire', 'Fire', 'Cooee', 'satisfaction', 'surprise', 'astonishment', 'hope', 'dismay', 'a']| -our friendship,['defined'] -you raise,|['your', 'up']| -Now my,['theory'] -the plantation,|['at', 'I']| -the Sign,['of'] -matter away,['with'] -|apart. then,|,['of'] -the walls,|['were', 'and']| -his anger,|['week', 'by']| -hand just,['now'] -Logic is,['rare'] -and driving,['from'] -no cause,['to'] -but neither,['of'] -Waterloo I,['should'] -daughter can,['claim'] -puffing at,['his'] -may seem,['to'] -my room,|['as', 'to-day', 'here', 'above', 'There', 'that', 'a', 'swung', 'however', 'and', 'It', 'I']| -follow your,['Majesty'] -to defray,['whatever'] -destroyed it,['You'] -remarked my,['friend'] -and raised,['his'] -great greasy-backed,['one'] -the ventilator,|['is', 'too', 'and', 'nodded', 'which', 'when', 'The', 'also']| -it brought,['him'] -Clair walked,['slowly'] -within an,['hour'] -cases save,['for'] -their fists,['and'] -but her,|['hair', 'eyes']| -several robberies,['brought'] -weather There,['are'] -trouble which,['is'] -families to,['whom'] -complimentary of,['you'] -our vegetables,['round'] -horse was,['fresh'] -If the,|['former', 'latter', 'lady', 'young', 'police']| -Square furniture,['van'] -which represent,|['at', 'the']| -a blunt,|['weapon', 'pen-knife']| -shoulder The,['envelope'] -may need,['to'] -our increasing,['our'] -do said,|['Holmes', 'he']| -dates until,['at'] -whole garden,['has'] -sake don't,|['back', 'you']| -jump it.,['she'] -The cab,['and'] -little fellow,['with'] -A hundred,['and'] -views Its,['outrages'] -the mind,['of'] -short greeting,['he'] -soothing answers,['and'] -leader of,['the'] -other similar,['cases'] -they went,['and'] -servants escapade,['with'] -three rooms,['open'] -first she,['answered'] -opinion and,|['yet', 'I']| -initials were,['of'] -a charge,|['is', 'of']| -handy me,['all'] -a ship's,['carpenter'] -either his,['gun'] -breast and,|['the', 'his']| -that end,['wall'] -whole time,['If'] -recollect were,['twins'] -into just,['at'] -kind as,['to'] -and massive,|['boxes', 'mould']| -of his,|['own', 'doings', 'summons', 'clearing', 'activity', 'drug-created', 'top-hat', 'double-breasted', 'face', 'note-book', 'client', 'failing', 'repeated', 'harness', 'princess', 'hand', 'greatcoat', 'voice', 'flaming', 'chair', 'trousers', 'nature', 'profession', 'lantern', "accomplice's", 'words', 'passion', 'which', 'armchair', 'wife', 'assurance', 'speed', 'seeing', 'belief', "son's", 'had', 'father', 'trap', 'conversation', "father's", 'keen', 'dress', 'kindness', 'death', 'actions', 'murderer', 'stride', 'right', 'nostrils', 'civilisation', 'overpowering', 'time', 'soul', 'way', 'supposed', 'Major', 'absence', 'room', 'library', 'long', 'fate', 'dreams', 'neighbour', 'existence', 'thoughts', 'coat', 'upper', 'hair', 'beggary', 'hands', 'who', 'fortunes', 'nose', 'name', 'extended', 'shoulders', 'pocket', 'stall', 'art', 'quick', 'step-daughter', 'safe', 'cheeks', 'family.', 'double', 'suspicious', 'little', 'case', 'wardrobe', 'frock-coat', 'dressing-gown', 'reason', 'friend', 'manner', 'presence', 'person', 'head', 'return', 'uneasiness', 'opponent', 'cast-off', 'new', 'small', 'should', 'mouth', 'neck']| -thumb in,['the'] -forbid you,['I'] -the peace,['which'] -of him,|['He', 'in', 'before', 'at', 'than', 'for', 'seems', 'and', 'there', 'In', 'he', 'It', 'that', 'whether', 'would', 'Listen', 'from', 'but']| -considerable confidence,['in'] -however I,|['left', 'am', 'was', 'shall', 'cannot', 'found', 'may', 'examined', 'perceived']| -or anger,['would'] -town a,['good'] -the boards,|['Then', 'which']| -her instinct,['is'] -its coming,['to'] -soon managed,['to'] -too good,|['to', 'and']| -amiable and,['simple-minded'] -trouble she,['cried'] -Chubb lock,['to'] -hush the,['matter'] -horrible scar,['which'] -yourself I,|['have', 'am']| -advise you,|['man', 'as']| -to see,|['Holmes', 'me', 'how', 'which', 'my', 'such', 'that', 'did', 'You', 'what', 'the', 'Sherlock', 'you', 'each', 'James', 'him', 'more', 'her', 'it', 'an', 'a', 'anyone', 'over', 'whether', 'dimly', 'solved', 'something', 'exactly', 'someone', 'if', 'Mr', 'his', 'all']| -principally for,['the'] -quite easy,['in'] -good-bye to,['any'] -morning letters,['if'] -to set,|['it', 'any', 'him']| -deal of,|['him', 'German', 'brandy', 'supplementing']| -the unusual,['and'] -clinked upon,['the'] -haste Pray,['wait'] -a piteous,['spectacle'] -certainly plausible,['further'] -most fleeting,['glance'] -daylight I,['slipped'] -humble lodging-house,['mahogany'] -thought of,|['it', 'the', 'her', 'death', 'do', 'making', 'nothing', 'my', 'looking', 'you', 'seeing']| -burglar could,['have'] -my character,['God'] -me palpitating,['with'] -all wrong,['we'] -poor ignorant,['folk'] -move her,['bed'] -leaving said,['I'] -A conversation,['ensued'] -the tradespeople,['so'] -and lethargy,['which'] -stood a,|['large', 'dark-lantern']| -lodgings Good-bye,['I'] -same class,['of'] -law now,['and'] -my ulster,|['After', 'ready']| -use slang,['of'] -tangled beard,['grizzled'] -bit his,['lip'] -do you,|['know', 'imagine', 'deduce', 'make', 'call', 'think', 'conceal', 'say', 'good', 'mean', 'read', 'intend', 'go', 'want', 'not', 'said', 'give', 'ask?', 'foresee']| -down her,['throat'] -since he,['went'] -still open,['when'] -shoulder-high and,['waist-high'] -not seen,|['her', 'you', 'a']| -comfortable sofa,['This'] -not seem,['to'] -of Hosmer,['again'] -imagine that,|['it', 'I', 'this', 'you', 'her']| -order to,|['remove', 'master', 'see', 'give', 'avoid', 'put', 'help', 'prevent', 'get']| -has completed,['the'] -foot or,['two'] -trained as,['an'] -famous coronet,['but'] -how curious,['I'] -Star was,['there'] -foot of,|['yours', 'the']| -half-past ten,|['to-morrow', 'now']| -are some,|['thousands', 'on']| -most unlikely,['that'] -that asked,['Holmes'] -quarter yet,['it'] -sudden indisposition,['and'] -foul tongue,['I'] -chance has,|['made', 'placed']| -ready for,['me'] -week she,['must'] -lodgings he,['had'] -head and,|['the', 'looking', 'springing', 'face', 'shrugged', 'a', 'puffed', 'laid', 'declared', 'with', 'writhed', 'rocked']| -The one,['unpleasant'] -learn the,|['business', 'only']| -his elbows,['upon'] -ran her,['over'] -analytical reasoner,['And'] -yourself your,['household'] -outside of,|['the', 'it']| -brilliant talker,['and'] -but this,|['has', 'fault', 'horrible', 'really', 'fellow']| -a vague,|['impression', 'figure']| -troubles You,['say'] -my museum,['visitor'] -nation He,['might'] -discovered stored,['in'] -persevering man,['as'] -gold Albert,['chain'] -crowd I,['made'] -coincidences the,['plannings'] -rueful face,['behind'] -feet opened,['the'] -compelled our,['respect'] -you ask,|['me', 'a']| -mine that,|['the', 'when', 'I']| -once as,['a'] -Holmes here,['is'] -London when,['he'] -stalls my,['companion'] -near King's,['Cross'] -greeting his,['visitor'] -house won't,['be'] -Four yes.,['Save'] -Carolinas Georgia,['and'] -such business,['in'] -pretends to,['a'] -Mr Doran's,|['house', 'door']| -gentleman half,['rose'] -write a,['little'] -a poor,['man'] -Wilson's presence in,['other'] -manner told,['their'] -he Just,['see'] -blew out,['into'] -who insists,['upon'] -leaving home,['but'] -a conclusion,|['Watson,"']| -fall a,['victim'] -pocket stuffed,['with'] -sneer I,['saw'] -thumb instead,['of'] -at some,|['time', 'small', 'pains', 'future', 'more']| -reaches Savannah,['the'] -And then,|['suddenly', 'I', 'the', 'as', 'seeing', 'realising']| -e and,['a'] -not joking,['he'] -of cases,['of'] -will recollect,['were'] -to personate,['someone'] -farms which,['he'] -stated and,['were'] -he vanished,['into'] -one way,|['out', 'for']| -longer and,['he'] -Sholtos have,['you'] -I And,|['the', 'then']| -clear The,|['question', 'most']| -a wager,['Well'] -then been,['a'] -may draw,['would'] -driving rapidly,['in'] -bed wrapped,['a'] -us glance,['at'] -appearance saved,['the'] -with making,['away'] -we took,|['Hosmer Mr', 'that', 'our']| -the locality,['appeared'] -a well-dressed,['man'] -been overjoyed,['to'] -coronet had,['been'] -a fair,|['sum', 'proportion']| -nicely and,['lived'] -only are,['the'] -same porter,['was'] -evidently a,['woman'] -until close,['upon'] -unopened newspaper,['from'] -sure if,['I'] -the Carolinas,['Georgia'] -make all,['fiction'] -once called,['Maudsley'] -denied strenuously,['having'] -coins were,['to'] -his talk,['all'] -his tall,|['spare', 'gaunt']| -own circle,['to'] -a companion,|['lithe', 'Pon']| -His rusty,['black'] -Scott Jump,['Archie'] -the mere,['sight'] -direction with,['dismantled'] -Aldershot the,['little'] -has anything,['which'] -steps but,['she'] -thick-soled shooting-boots,['and'] -was damp,['marshy'] -eyes sparkled,['and'] -those boxes,['and'] -on her,['way'] -greyish colour,['which'] -along It,['seems'] -realising the,|['full', 'exposure', 'dreadful']| -steaming horses,['were'] -assistant hardly,['knowing'] -seen such,['as'] -Now Robert,['you'] -face before,['I'] -my statement,['for'] -of high,['gaiters'] -my client,|['but', 'is', 'was', 'Lucy']| -standing and,['looking'] -a trusty,['comrade'] -very obstinate,['man'] -our hotel,['where'] -The postmark,['is'] -clear he,['whispered'] -settled on,['him'] -found Holmes,['in'] -that railway,['cases'] -our doors,['were'] -low voice,|['whispered', 'changing']| -Rucastle walking,['up'] -the forefinger,['but'] -You bring,['Mrs'] -stood firm,['McCarthy'] -same whined,['the'] -died and,['to'] -tramped into,['the'] -cheetah is,['just'] -least to,['my'] -I found,|['her', 'myself', 'my', 'how', 'it', 'Holmes', 'Sherlock', 'the', 'him', 'this', 'that', 'to', 'rather', 'as', 'waiting']| -public-house The,['group'] -the subject,|['That', 'in', 'were', 'We', 'Turn', 'naturally']| -and seven,|['hundred', 'sheets']| -else which,['she'] -fangs had,['done'] -and among,['them'] -but sooner,['or'] -laurel-bushes made,['a'] -bell until,['the'] -conditions if,['you'] -hesitated for,['an'] -Come along,['travelled'] -deduce from,|['it', 'that']| -other within,['the'] -threatened If,['she'] -deepest impression,['upon'] -England without,['being'] -can understand,|['said', 'that', 'little']| -no harm,|['done', 'station-master', 'and']| -know all,|['that', 'about']| -He put,|['his', 'less', 'out']| -With him,['we'] -possible to,|['conceive', 'confirm']| -heads to,['search'] -front Then,['I'] -draws my,['interest'] -sensational literature,['and'] -ulster put,['on'] -to meddle,['with'] -Moran Manor,['House'] -which branches,['out'] -little startled,['at'] -something depressing,['and'] -slight shrug,['of'] -our troubles,['were'] -may hang,['from'] -Maggie says,['I'] -Why all,['the'] -unfeigned admiration,['It'] -by their,|['violence', 'beauty']| -incident gives,['zest'] -Standard Echo,['and'] -of iodoform,['with'] -looking back,['into'] -had named,['There'] -martyrdom to,['atone'] -soul of,|['delicacy', 'steel']| -He learned,['to'] -something unnatural,['about'] -find her,['eyes'] -so plentiful,['with'] -lenient view,['of'] -this thank,['goodness'] -wrote them,['they'] -been more,|['nearly', 'question', 'than']| -voice which,|['both', 'I']| -and sleeves,['Her'] -us follow,['it'] -bad fellow,['though'] -important highway,['and'] -the deception,['could'] -purposes principally,['for'] -experienced The,['smell'] -Jack-in-office chuckled,['heartily'] -branded thief,['without'] -cried you,['are'] -who when,['he'] -skirts The,['light'] -white letters,['upon'] -with odd,['boots'] -quicker at,['climbing'] -trace of,['them'] -see my,|['double', 'little', 'husband', 'way', 'own']| -natural effect,['of'] -my other,['clients'] -certain ball,['What'] -At my,['cry'] -poured in,['upon'] -then vanished,['from'] -simple cases,['which'] -Carlsbad Remarkable,['as'] -have rushed,['past'] -really no,['tie'] -only gainer,['by'] -took advantage,['now'] -glancing his,['eye'] -is The,|['Morning', 'Cedars']| -their travellers,['I'] -say before,['this'] -Miss Alice,|['Rucastle', "wasn't", 'had']| -to-night than,['you'] -|rather, I|,['fancy'] -and prevent,['her'] -rusty key,['which'] -alluded are,['there'] -an orphanage,['in'] -my belief,|['unique', 'that', 'Watson']| -we looked,['at'] -to hesitate,['said'] -my love,['of'] -since as,|['you', 'my']| -back I will,['not'] -once his,['case'] -hour that,['he'] -down between,['the'] -experience this,['lonely'] -merry over,|['the', 'them']| -home Miss,['Alice'] -Dr Roylott's,|['the', 'conduct', 'chamber', 'cigar', 'room']| -reporter on,['an'] -Jump Archie,['jump'] -verge of,|['a', 'foppishness']| -pet The,['little'] -madam said,|['I', 'he']| -upon those,['whom'] -knees of,['his'] -obeyed His,['manner'] -a touch,['of'] -certain therefore,['that'] -grizzled brown,['A'] -had driven,|['him', 'over', 'several']| -was stepping,['into'] -been hereditary,['in'] -felt the,|['stone', 'draught.', 'room']| -ground in,['front'] -beautiful Stroud,['Valley'] -coarsely clad,['as'] -meaning of,|['it', 'this']| -of smoke,|['curled', 'which']| -we never,['know'] -pen and,['the'] -cases we,['have'] -matter name,['is'] -remembered in,['the'] -ring after,['all'] -faced round,|['to', 'where']| -see me,|['With', 'here', 'He', 'upon', 'when']| -by two,['persons'] -and taken,['to'] -is fond,['of'] -well-known adventuress,['Irene'] -portion was,['in'] -and heavy,|['step', 'with']| -upon such,['a'] -a myth,['There'] -talent in,['planning'] -does to,['the'] -|see, Watson|,['he'] -remarked upon,['at'] -armchairs With,['these'] -In each,['case'] -the darker,['against'] -of yours,|['who', 'Mr', 'with', 'perhaps', 'I', 'Now', 'Miss']| -considering the,['formidable'] -travelled by,['the'] -her eagerness,['her'] -lookout for,['any'] -near Briony,['Lodge'] -Mrs Rucastle,|['It', 'is', 'and', 'came', 'expressed', 'however', 'to', 'drew', 'were', 'are', 'that']| -none knew,['better'] -was now,|['preparing', 'sleeping', 'to', 'made', 'pinched']| -was not,|['that', 'effusive', 'in', 'a', 'merely', 'broken', 'on', 'to', 'sure', 'quite', 'very', 'the', 'until', 'unnatural', 'surprised', 'aware', 'and', 'familiar', 'much', 'one', 'of', 'itself', 'yet', 'Arthur', 'are', 'mistaken', 'you', 'alone', 'offended', 'mere', 'there']| -you rather,['that'] -the male,['relatives'] -the billet,['was'] -two sons my,['uncle'] -I promise,|['you', 'to']| -is the,|['very', 'German', 'writing', 'daintiest', 'name', 'address', 'first', 'less', 'most', 'chairman', 'Dundas', 'motive', 'slip', 'idea', "girl's", 'more', 'daughter', 'brightest', 'young', 'glass', 'butt-end', 'true', 'object', 'envelope', 'only', 'account', 'vilest', 'man', 'clue', 'foresight', 'precious', 'reward', 'sequence', 'stone', 'making', 'season', 'last', 'worst', 'village', 'Crown', 'baboon', 'gravel-drive', 'one', 'right', 'note', 'purest', 'lot', 'truth', 'good', 'green-grocer', 'corner', 'person', 'letter', 'meaning', 'five', 'tower', 'disposition']| -huge error,['which'] -laughing it's,['a'] -save some,['twisted'] -wear such,['a'] -too She,['has'] -indeed the,|['culprit', 'missing']| -deserts This,['observation'] -chestnut or,['fresh'] -remember every,['feature'] -word has,['ever'] -Clair His,['name'] -employer who,['was'] -Your recent,['services'] -Roylott clad,['in'] -gained property,['under'] -represented as,['I'] -Watson You,['did'] -so necessitate,['very'] -well as,|['we', 'for', 'possible', 'a', 'mine', 'in', 'I']| -order that,|['you', 'he']| -came out,|['before', 'into', 'save', 'of', 'it', 'to']| -its views,['Its'] -yes he,['cried'] -one white,['with'] -and locked,|['the', 'with', 'it']| -the page,|['we', 'indicated', 'Mr.', 'he']| -Well would,['you'] -house even,['had'] -chair from,['which'] -worse and,['the'] -Arthur were,['much'] -chuckling It,['may'] -shortly to,['my'] -trees and,|['the', 'wayside']| -his accuser,['have'] -Impossible is,['unfortunately'] -case as,|['they', 'this', 'the', 'I']| -the huge,|['crest', 'famished']| -tense over,['his'] -sister and,['I'] -the sound,|['said', 'of', 'produced', 'as']| -developed the,['snuff'] -public though,['little'] -dear fellow,|['said', 'is', 'I', 'there', 'wanted', 'what']| -induce her,['to'] -by trying,['begging'] -business Up,['to'] -stone It,|['cuts', 'is']| -arrested the,['same'] -find a,|['friend', 'clue', 'ventilator', 'doctor', 'letter', 'trout']| -men When,['he'] -deposit all,['over'] -be ungrateful,['if'] -grass twenty,['paces'] -a shapeless,['pulp'] -hurriedly ransacked,['them'] -forward something,['lay'] -was flattered,['by'] -and rage,['I'] -from within,|['assuring', 'Then', 'and']| -made He,['relapsed'] -save only,|['one', 'his']| -shattered by,|['a', 'his']| -it seems,|['upon', 'made', 'to', 'exceedingly', 'rather']| -there through,['the'] -In only,['one'] -among bad,['companions'] -the saddest,['look'] -bad?" God,['for'] -she been,['saying'] -cost our,['unfortunate'] -pressing need,['for'] -within his,['reach'] -out again,|['his', 'She', 'Oh']| -one next,['to'] -her uncle,['and'] -deed followed,['the'] -to detain,['you'] -my watch,['It'] -Here signed,['with'] -so inadequate,['a'] -within him,['we'] -relative which,['enabled'] -which gave,|['him', 'me']| -here we,['may'] -in one,|['of', 'direction', 'long', 'hand', 'house', 'limb', 'corner', 'or', 'easy-chair', 'night', 'by']| -have passed,['since'] -cabman to,|['wait', 'your']| -half rose,['from'] -fowl fancier,['and'] -days said,['Holmes'] -sort since,['that'] -absurdly agitated,['over'] -cry for,['help'] -was he,|['then', 'feared', 'suffered', 'that', 'doing', 'who']| -trembling hands,['I'] -and slow,['He'] -in soft,['flesh-coloured'] -a brain,['must'] -start in,['business'] -man about,['town'] -be millions,['of'] -entrance On,['the'] -have we,['here'] -Duke say,['he'] -danger You,['have'] -old Turner,['I'] -turning to,|['the', 'me']| -miss. Mr,['Rucastle'] -devil's pet,['baits'] -more a,['feeling'] -fill me,['with'] -and marry,['her'] -the prize,['but'] -weary eyes,|['as', 'made']| -trap it,["won't"] -and huge,['projecting'] -Hyde Park,['in'] -sinking He,['throws'] -you hear,['him'] -set eyes,|['on', 'upon']| -robbery and,['to'] -he speaks,['of'] -THE BERYL,['CORONET'] -immense capacity,['for'] -open The,['woman'] -trap in,['the'] -more I,|['fancy', 'could', 'imagine', 'presume']| -is evident,['therefore'] -accessory to,['the'] -London in,['order'] -either in,['word'] -mercy he,['shrieked'] -something Mr,['Holmes'] -|now, in|,['considering'] -goose all,['this'] -now fallen,['upon'] -have spared,['you'] -do Mr,|['Wilson', 'Holmes']| -the aid,['of'] -light blue,['sky'] -the 9th,['inst.'] -London it,['has'] -she may,|['find', 'have']| -do your,['work'] -whip and,['we'] -weight it,['may'] -water some,['fifty'] -Kilburn I,['told'] -grief than,['the'] -or Russian,['could'] -when taken,['with'] -house She,|['had', 'was']| -there's always,['a'] -grief that,['he'] -feather over,['the'] -precise but,['admirably'] -use he,['remarked'] -me slowly,['jerkily'] -Metropolitan Station,['no'] -district for,['the'] -Both he,['and'] -the Dundee,['records'] -absolutely ignorant,['that'] -an observer,['contain'] -a hurry,|['asked', 'what', 'and']| -the rate,['that'] -years About,['1869'] -walked into,['the'] -recommended to,|['you', 'me']| -name She,['is'] -Do not,|['join', 'dream', 'worry']| -some comment,['her'] -Already I,['was'] -have decoyed,['him'] -The group,['of'] -lip a,['bulldog'] -was really,|['an', 'dead']| -way please,['and'] -inward twist,['is'] -Imperial Opera,['of'] -in Nova,['Scotia'] -the fourteen,['other'] -gave it,|['a', 'up', 'over']| -fall so,['I'] -was working,['a'] -from Baker,['Street'] -small railed-in,['enclosure'] -folded asked,['me'] -hurried round,['to'] -police-court said,['Holmes'] -his newly,['gained'] -matter now,['so'] -should send,['him'] -the sleepers,['from'] -perhaps even,['to'] -advertising my,['virtues'] -beeches immediately,['in'] -dint of,['a'] -been undoubtedly,['alone'] -fund was,['of'] -the hope,|['of', 'that']| -Oh I'm,['in'] -his lad,['should'] -springing down,['I'] -bottles and,['test-tubes'] -should run,['for'] -advance was,['a'] -his lap,|['and', 'lay']| -missing lady,['There'] -photograph It,['might'] -advertisement about,['it'] -here there,['was'] -a window,['had'] -Peterson's fire,['The'] -of since,['Was'] -|Lee, in|,['Kent'] -well indeed,|['It', 'cried']| -nothing should,['stand'] -brought trouble,['upon'] -pocket An,["Eley's"] -son finding,['that'] -Rucastles as,['I'] -The Lascar,['was'] -seven miles,|['of', 'from', 'but']| -ago to,|['strengthen', 'the', 'Mr']| -immensely indebted,['to'] -people in,|['the', 'their']| -is laid,['perhaps'] -straight now,['is'] -have effected,['He'] -course if,['you'] -from you,|['in', 'cannot', 'giving', 'should']| -square block,['of'] -for unrepaired,['breaches'] -another note,['in'] -your snug,['chamber'] -are there,|['many?', 'as']| -Angel the,['contrary'] -Then the,|['fact', 'charge']| -autumnal evenings,['THE'] -deposition it,['was'] -I shouted,['beside'] -at himself,['in'] -it we,|["don't", 'heard', 'shall']| -was glad,|['I', 'that', 'for']| -Hunter's intentions,['and'] -stepped as,['it'] -gaol-bird for,['life'] -Simon glanced,['over'] -separate and,['was'] -overpowering impulse,['and'] -stood there,['She'] -exchanged a,['few'] -march upstairs,['where'] -seized and,['searched'] -greater or,['less'] -questioning you,['do'] -reach is,['easy'] -reach it,['in'] -comrade is,['always'] -herself she,['would'] -old These,['flat'] -the excellent,|['lining', 'bird']| -won't do really,['it'] -my powers,['to'] -glancing along,['the'] -spark upon,['the'] -out by,|['Holmes', 'the']| -with laudanum,['in'] -with notes,['and'] -all impatience,['to'] -interest is,['well'] -both into,['it'] -well see,['that'] -went under,['and'] -violence that,['she'] -woman She,['would'] -Grimesby Roylott,|['which', 'of', 'remarked', 'drive', 'clad']| -seven places,['The'] -ten now,['and'] -Holmes Here,['I'] -the reverse,['She'] -a national,['possession'] -I consider,['that'] -a wooden,|['chair', 'leg']| -facts together,['with'] -business It,|['is', 'may']| -answer her,['but'] -millionaire Ezekiah,['Hopkins'] -in contemplation,['I'] -no part,['in'] -towards a,['definite'] -a round,['table'] -turned all,['the'] -garments thrust,['them'] -absolutely innocent,['man'] -the street,|['If', 'and', 'The', 'you', 'the', 'May', 'was', 'We', 'am', 'with', 'Filled', 'There', 'but', 'all,', 'here']| -to communicate,|['with', 'Should']| -from fifteen,['to'] -its contraction,|['has', 'had']| -facts but,['my'] -ladies from,['boarding-schools'] -am for,|['west', 'north']| -of heart,['but'] -emerged looking,['even'] -described She,['is'] -battle and,['also'] -knows that,['the'] -secret it,['might'] -peeped up,['in'] -threshold the,['door'] -|two do,|,['sir'] -is writhing,['towards'] -to frighten,['a'] -human life,['as'] -for days,|['on', 'and']| -in didn't,['know'] -is locked,['up'] -Rucastle to,|['be', 'find']| -corresponds to,['that'] -an appearance,['of'] -darker than,['coffee'] -thick blue,['cloud-wreaths'] -swiftly to,['the'] -me half-mad,['to'] -Surely your,['medical'] -breath for,['I'] -office as,['usual'] -Holmes ingenuity,['failed'] -for half,|['wages', 'an']| -hurt by,['the'] -four before,['the'] -apparently see,['that'] -a correspondent,['and'] -an instant,|['and', 'the', 'for', 'among', 'entered', 'And', 'to', 'My', 'his', 'I', 'said', 'threw', 'all', 'caught', 'of', 'in']| -third name,['Just'] -inquiry showed,['it'] -strange out-of-the-way,['place'] -a twitter,['I'] -she loved,['you'] -crimes and,['occasionally'] -captured ship,['Well'] -the habits,['and'] -waist-high until,['one'] -neighbourhood it,['was'] -women It,['must'] -Trepoff murder,['of'] -neighbourhood in,|['whom', 'which']| -transparent and,['it'] -wedding in,['a'] -knew the,|['firm', 'true']| -led down,['a'] -gentle slope,['thickening'] -a burden,['to'] -any old,['key'] -to indulge,['in'] -considerable amount,['of'] -as belonging,['to'] -and bustled,['off'] -laying out,['money'] -the salesman,|['then', 'nothing', 'I', 'framed', 'just']| -and companion,['night--it'] -sat for,|['some', 'a']| -geese which,|['you', 'were']| -freely down,['his'] -business papers,['you'] -Street on,['earth'] -brown worm-eaten,['oak'] -Stoper She,['sits'] -K repeated,['upon'] -Miss Turner,|['the', 'said', 'You', 'must', 'thereby', 'On']| -secrecy you,['understand'] -ate a,['hearty'] -face away,['from'] -Major Prendergast,|['how', 'about']| -Mr. Sherlock,['Holmes'] -Holmes went,|['home', 'to']| -heartily at,['the'] -eyes It,['was'] -arrested You,['then '] -late acquaintance,['are'] -Star instantly,['attracted'] -brandy down,['her'] -held above,['her'] -fields On,['examining'] -his civilisation,['like'] -a commanding,['figure'] -thereby hangs,['a'] -was so,|['delicate', 'pleased', 'acute', 'dear', 'familiar', 'frightened', 'disturbed', 'thin', 'absolutely', 'remarkable', 'strong', 'pale', 'small', 'strange', 'ashamed', 'out', 'angry', 'I', 'terrified', 'quiet']| -see someone,['but'] -stage of,['my'] -see we,['have'] -|suppose," said|,['Holmes'] -hunting-crop I,['know'] -noticed and,['she'] -the wife,|['tried', 'it']| -think sir,['was'] -one with,['the'] -pittance while,['even'] -body stretched,['out'] -house after,['the'] -few months,['She'] -rashers and,['eggs'] -realise the,['importance'] -twenty sheets,['in'] -scandal and,|['seriously', 'I']| -register written,['beneath'] -keep an,['eye'] -Your affection,['for'] -speaking to,['her'] -having to,|['sally', 'go']| -keep at,['three'] -a step,|['backward', 'in', 'forward', 'which', 'between']| -weather through,['which'] -roofs and,['peep'] -There but,['for'] -sooner they,['do'] -singular character,|['the', 'it']| -were stained,['with'] -dress. No,['one'] -the Hotel,['Cosmopolitan'] -failed to,|['recognise', 'take', 'catch']| -have And,['many'] -points in,|['connection', 'it', 'the']| -extraordinary mystery,['will'] -to Mary,|['Jane', 'but']| -be They,['were'] -to recommence,['your'] -gritty grey,['dust'] -which no,['foresight'] -imagine in,['which'] -and called,['for'] -Lee in,['the'] -line before,['I'] -hydraulic engineers,['coming'] -this that,['I'] -see Miss,['Doran'] -day eight,['weeks'] -lady and,|['to', 'such', 'your', 'gentleman', 'nothing', 'the']| -whipcord were,['enough'] -probably on,['the'] -reward If,['you'] -I seized,['my'] -knows more,['about'] -me Your,['news'] -explanations founded,['rather'] -have faced,['although'] -Twice he,|['was', 'struck']| -paces across,['between'] -surprised you,['by'] -berth you.,['I'] -was compelled,['to'] -ringing note,['leaning'] -Sand III.,['A'] -agree with,|['you', 'me']| -|do. madam,'|,['said'] -old papers,['following'] -wood-work with,['which'] -swinging an,['old'] -was associated,['with'] -obvious course,['of'] -of September,['and'] -me looking,['as'] -cigars uses,['a'] -hands wrung,['together'] -lad says,['is'] -the shoulder,|['you', 'He', 'and', 'are']| -At least,['that'] -my Afghan,['campaign'] -sky I,['have'] -both sat,['in'] -window sprang,['out'] -to relieve,['his'] -60 pounds,['could'] -aloud note,['was'] -assure you,|['that', 'Watson']| -said on,['the'] -Indian cigar,|['I', 'of']| -Toller in,['the'] -so candid,['Can'] -so they,['have'] -happiness and,['the'] -Yes it,['is'] -busy this,['afternoon'] -begged my,['father'] -the founder,['of'] -the plumber,['had'] -charred stump,['of'] -a butcher's,['cleaver'] -together they,['manage'] -quite tense,['over'] -her family,['She'] -ungrateful turned,['to'] -this inquiry,['and'] -with exceptional,['violence'] -are continually,['gaining'] -loose at,['night'] -addicted to,['opium'] -little god's,['arrows'] -the small,|['t', 'unburned', 'landing-places', 'winding', 'morocco', 'estate']| -neither of,|['them', 'us', 'you']| -another formidable,['gate'] -upon four,['before'] -am forced,['to'] -up Ryder,['said'] -death had,['much'] -size no,['water-mark'] -an official-looking,['person'] -Holmes shot,|['the', 'one']| -our drive,['but'] -we know,|['that', 'them']| -case Nothing,['less'] -forty than,['thirty'] -to take,|['the', 'a', 'Kindly', 'comfort', '2', 'place', 'this', 'great', 'charge', 'care', 'no']| -College of,['St'] -fade even,['for'] -who endeavoured,['to'] -though her,|['manner', 'abrupt']| -sound came,['from'] -quietly I,['have'] -effect was,|['increased', 'in']| -top with,['her'] -good a,|['chance', 'character?', 'wife']| -to close,['the'] -presence she,['went'] -on each,['side'] -would tell,['you'] -while you,|['were', 'explain']| -all about,|['him', 'yourself', 'it', 'your', 'McCarthy', 'the']| -the loafing,['men'] -points which,|['were', 'might']| -his outstanding,['bones'] -red and,['grey'] -my mtier,['and'] -Chinese coin,['hanging'] -painted my,['face'] -put a,|['hand', 'stop']| -market All,['the'] -world Now,['I'] -fortunate in,|['having', 'catching']| -her slipping,['in'] -a yawn,['That'] -eyes like,['those'] -thumb care,['about'] -quietly Hold,['up'] -mostly of,['a'] -carbuncle I,['ejaculated'] -walked behind,['him'] -his wicked,['little'] -I slipped,|['off', 'down', 'out', 'in']| -character God,['help'] -those exalted,['circles'] -and pointed,['over'] -a match-seller,['but'] -said something,['about'] -keep two,['assistants'] -in both,['his'] -and helpless,['in'] -only remaining,['point'] -indeed! Then,['you'] -ragged edge,['that'] -the child,|['is', 'There', 'was', 'They', 'Now', 'on']| -authority for,['what'] -Windibank said,['Holmes'] -sent the,|['pips', "society's", 'house-maid']| -see whither,['that'] -which has,|['prompted', 'been', 'perhaps', 'come', 'dried', 'deprived', 'disturbed', 'already', 'got', 'taken', 'occurred', 'saved']| -glad I,['think'] -knows a,['word'] -severe upon,['young'] -there whoa,['had'] -air when,['his'] -to Waterloo,|['Sir', 'I']| -were occasionally,['allowed'] -which had,|['been', 'formerly', 'seamed', 'given', 'caught', 'cost', 'come']| -He shook,['hands'] -the singular,|['tragedy', 'story', 'mystery', 'adventures', 'case', 'experience']| -game leg,['I'] -cigarettes here,['which'] -goose on,['your'] -either to,|['you', 'be']| -no record,['of'] -suggested at,['once'] -knows I,['have! a'] -terrible fate,['I'] -was farther,['from'] -not short,['of'] -and fluttered,['off'] -always well,['dressed'] -whether north,['south'] -Having taken,['the'] -so McCarthy,['became'] -iota from,['your'] -peculiar words,['of'] -seen it,['in'] -He would,|['not', 'get', 'rather', 'seize', 'show', 'see', 'put']| -due at,['Winchester'] -floor instantly,['gave'] -looking even,['more'] -strange idea,['look'] -from hushing,['the'] -road was,|['exchanged', 'undoubtedly']| -very deepest,['moment'] -know The,['initials'] -my tale,['to'] -solemn Mr,['Merryweather'] -or twelve,['but'] -sworn it,['by'] -wouldn't do,['it'] -good seven,['miles'] -she seemed,['absurdly'] -fell down,|['clapped', 'senseless']| -unnecessary delay,['Its'] -most inextricable,['mysteries'] -has made,|['up', 'it']| -edge where,['a'] -Known to,['have'] -and gloomy,['intervals'] -more convenient,['hour?'] -Breckinridge but,['he'] -when up,['the'] -down past,['the'] -it a,|['character', 'pleasure', 'stricken', 'brisk', 'few', 'matter', 'dishonoured']| -richest man,['on'] -Morris or,['Mr'] -were one,['or'] -fell immediately,["me!'"] -ground-floor and,['I'] -is good,['ground'] -the stable-boy,['sleeps'] -do to-day,['My'] -knocked up,['she'] -got 4700,['pounds'] -he here's,['another'] -younger brother,['and'] -address you,['never'] -out right,['in'] -least she,['became'] -home there,['Both'] -eye he,['waved'] -it I,|['deduce', 'know', 'only', 'was', 'could', 'came', 'answered', 'asked', 'will', 'should', 'married', 'answer', 'seem', 'shall', 'would', 'suppose', 'saw', 'knew', 'had', 'looked', 'already', 'am', 'called', 'thought', 'heard', 'ejaculated', 'tell']| -signal I,['tossed'] -taken fresh,['heart'] -a bird,|['at', 'to', 'will']| -was fairly,['well-to-do'] -Alpha Inn,|['near', 'which']| -been taken,|['It', 'down', 'from', 'by']| -than 26s,['4d'] -lithe and,['small'] -time which,|['it', 'suits']| -more deeply,['into'] -be such,|['a', 'an']| -the knees,['as'] -Such paper,['could'] -myself because,['I'] -after I,|['became', 'had', 'found', 'was']| -aged twenty-six,['a'] -for medical,['aid'] -salesman framed,['in'] -on what,['day'] -at 221B,['Baker'] -sharing rooms,|['as', 'with']| -|Eyford, in|,['Berkshire'] -acknowledge that,['I'] -those who,|['were', 'have', 'believe', 'ask']| -drifted into,['the'] -wired for,['from'] -earn as,['much'] -tell him,|['afterwards', 'and', 'that', 'about']| -avenue It,['was'] -sitting by,['the'] -earn at,['typewriting'] -a box,['of'] -after a,|['time', 'few', 'long', 'careful', 'painful', 'pause']| -later that is,['on'] -little moist,['red'] -way altered,['for'] -forward In,['an'] -herself While,['she'] -tattered object,['in'] -not stand,['it'] -fainted away,['at'] -right and,|['peering', 'found', 'a', 'left both', 'swinging', 'that', 'to', 'eventually']| -friends but,['I'] -used. instant,['that'] -thoroughly at,['home'] -tragedy which,['followed'] -in every,|['direction', 'way', 'case', 'respect', 'particular', 'detail']| -husband looking,['down'] -operations we,['erected'] -savagely I,['could'] -cab by,['the'] -secret lies,['in'] - IS,[''] -near Crewe,['Dr'] -shining coldly,['in'] -me however,['I'] -private banking,['concern'] -of blood,|['were', 'had', 'showed']| -age an,['opium'] -clothes walked,['into'] -nothing It,['may'] -hard enough,['to'] -ship We,['have'] -trooped away,['in'] -fell over,|['into', 'with']| -was busy,|['at', 'with']| -received no,['less'] -of coffee,|['and', 'in']| -about them,|['and', 'can', 'but']| -me no,|['peace', 'surprise']| -deductions and,|['the', 'your']| -secure the,|['photograph', "girl's"]| -imprisonment sir.",['brought'] -than those,['which'] -yours Miss,['Hunter?'] -the South,|['Eventually', 'and']| -notes upon,['anything'] -turn the,|['lamp', 'stone', 'key']| -have your,|['rubber', 'opinion', 'pistol']| -yes; I,['sent'] -Baker can,['have'] -upon short,['sight'] -or so,|['This', 'from', 'afterwards', 'she', 'Mr']| -hundred pounds,|['in', 'was']| -warnings that,['an'] -that once,['or'] -and on,|['Saturday', 'the', 'inquiring', 'looking']| -her seems,['that'] -silence for,['some'] -entered It,['was'] -and of,|['course', 'late', 'the', 'meditation', 'reeds', 'which', 'character', 'a', 'some', 'endeavouring', 'something', 'how', 'tin', 'her', 'fortune', "Arthur's", 'every', 'logical', 'interest']| -Anstruther would,['do'] -afterwards and,['mother'] -friend and,|['companion', 'colleague', 'school', 'had', 'associate', 'I', 'me', 'that']| -a lamp,['in'] -helped himself,['to'] -luxurious club,['in'] -claim to the,['whole'] -not know.,['is'] -an enemy's,['country'] -ready when,['he'] -a purple,['dressing-gown'] -influence him,['There'] -pockets began,['talking'] -rare accomplishment,['It'] -loafer to,['Sir'] -he answering,['as'] -were seen,['after'] -uncouth man,['with'] -spectacle a,['small'] -hoarse roar,['of'] -folks would,['fly'] -we might,|['expect', 'spend', 'find', 'give']| -About 1869,['or'] -hand Miss,['Hunter'] -of placing,['upon'] -|conclusion Watson,"|,['said'] -finally with,['a'] -wont to,['replace'] -glimmer of,['china'] -entering the,|['grounds', 'house']| -were very,|['well', 'black', 'old', 'obvious']| -affair up,['heard'] -example of,['observation'] -So say,['the'] -beating upon,|['the', 'her']| -mission was,['practically'] -an ill-dressed,['vagabond'] -him has,['your'] -greater sense,['of'] -ribbed silk,['and'] -existence These,['little'] -retort and,['a'] -business affairs,['A'] -four in,['the'] -manner his,['very'] -so It,|['is', 'seemed']| -between his,|['knees', 'teeth', 'lips']| -fat-encircled eyes,['the'] -and pattered,['against'] -combination of,['events'] -young widow,['of'] -our lives,|['I', 'No']| -yourself doubt,['upon'] -on discovering,['the'] -villain in,['you'] -He quietly,['shot'] -Mr Hatherley,|['said', 'as', 'and']| -Now I,|['know', 'wonder', 'am', 'knew', 'have']| -hope which,|['sank', 'had']| -am much,|['mistaken', 'indebted']| -my bell,['about'] -He curled,['himself'] -conjecture and,['surmise'] -which gaped,['in'] -My room,['at'] -married or,['not'] -night he,['heard'] -some city,['in'] -fits were,['over'] -fuss that,['is'] -weary after,['my'] -were started,['in'] -demeanour with,['which'] -shriek of,|['Fire', 'joy']| -then inquired,['as'] -back white,['with'] -step up,['to'] -I disregarded,['them'] -Angel did,['you'] -cannot with,['this'] -hands at,['once'] -so transparent,['a'] -variety he,['answered'] -a moral,['retrogression'] -step and,['bowed'] -help you,|['was', 'in', 'thought']| -a sort,['of'] -he jerked,['his'] -up Pondicherry,['postmark'] -him he,|['set', 'was', 'throw', 'saw', 'might']| -pretext set,['your'] -swinging it,['over'] -story feel,['that'] -way perhaps,['and'] -sinister enough,['if'] -be our,|['companion', 'foreman', 'noble']| -swinging in,|['the', 'his']| -peeped out,['from'] -turn to,|['Mr', 'rain', 'you']| -ear I,|['glanced', "didn't"]| -winced from,['the'] -his courage,['We'] -the smooth,['patch'] -lest the,['dog'] -extraordinary matters,['they'] -|sir, that|,|['is', 'be']| -Duke his,['father'] -Your wife,['has'] -yourselves behind,['those'] -annual sum,['should'] -and crawl,['now'] -so soon,['after'] -lady's house,['Julia'] -several passers-by,['it'] -see a,|['Chinese', 'change', 'possession', 'spark', 'man', 'Roylott', 'bed', 'crust', 'dark', 'shadow', 'sister']| -they always,['send'] -so here,['evidence'] -and towards,['the'] -responsibility which,['it'] -chiffon at,['her'] -gold watch,['from'] -so he,|['sat', 'followed', 'rose']| -I spend,['most'] -open his,|['mouth', 'lips']| -Englishman being,['less'] -a paragraph,['amplifying'] -see I,|['expected', 'had', 'made']| -see K,['K'] -pretty a,['toy'] -and clattered,['down'] -itself within,['the'] -moving softly,['in'] -just come,['at'] -should allow,['him'] -every meal,['by'] -tore it,['open'] -air Remember,['Watson'] -you? he,['asked'] -a line,|['to', 'before', 'of', 'asking', 'the']| -have 200,['pounds?'] -a link,['between'] -its inward,['twist'] -Clay and,['I'] -heroic self-sacrifice,['and'] -hanged has,['thrown'] -prepared to,['leave'] -a confused,['memory'] -Bohemia not,['far'] -confession I,['ejaculated'] -from Major,['Prendergast'] -perfectly happy,['and'] -the voice,|['of', 'and']| -very energetic,['inquiries'] -he family,['was'] -waste the,['so-precious'] -remark in,['this'] -seized the,|['intruder', 'poker']| -the agonies,['I'] -a bundle,['of'] -glanced my,['eye'] -meantime Mr,['Merryweather'] -So he,['sat'] -sitting-room pacing,['up'] -baggy trousers,['his'] -the lookout,['for'] -serves to,['show'] -One other,['question'] -|father," said|,['Holmes'] -country One,['of'] -remark is,['one'] -to drop,['his'] -any unnecessary,['footmarks'] -so dearly,['Large'] -he whose,['step'] -sure you,['could'] -them? the,['papers'] -somewhat rare,['accomplishment'] -Should I,['stop'] -wooden shelf,['full'] -issue from,['it'] -which marked,|['a', 'the']| -length of,|['obstinacy', 'his']| -was seven,['weeks'] -table It,|['came', 'was']| -California millionaire,['Miss'] -pocket all,['covered'] -Whitney pale,['haggard'] -which present,|['any', 'strange', 'a']| -hearty fit,['of'] -came bustling,['in'] -room Would,['the'] -lake Lestrade,['showed'] -come within,['my'] -my dark,['room'] -the red-headed,|['man?', 'copier']| -|then, what's|,['the'] -any chemical,['test'] -for showing,['traces'] -staggered sir,['I'] -the cadaverous,['face'] -re-entering her,["father's"] -beyond that,['I'] -a rescue,['The'] -been sporadic,['outbreaks'] -bird at,['Christmas'] -We were,|['engaged', 'to', 'sitting', 'all']| -I sitting,['down'] -stone which,['he'] -the electric-blue,['dress'] -barque Lone,['Star'] -deprived me,['of'] -answered firmly,['very'] -useless since,['you'] -observant as,['you'] -future As,['it'] -fro like,['that'] -some good,|['news', 'might']| -can most,['readily'] -I It,['is'] -awkward Could,['I'] -at fifty,['miles'] -to chat,['this'] -there reared,['itself'] -these whom,['I'] -THE MAN,['WITH'] -runs the,['corridor'] -instant to,|['be', 'horror']| -the Vegetarian,['Restaurant'] -laughed He,['laughed'] -was loose,['He'] -turned round,['the'] -who may,|['safely', 'remain', 'be', 'have', 'some']| -kind-spoken free-handed,['gentleman'] -or was,['a'] -small for,['his'] -part She,['is'] -our short,|['drive', 'interview']| -impossible It,['was'] -altogether past,['belief'] -now cried,['Lestrade'] -He bowed,|['and', 'me']| -money of,['the'] -money on,['the'] -flush sprang,['to'] -money or,|['if', 'else']| -have them,|['in', 'ashamed', 'back']| -as his,|['And', 'client', 'fingers', 'murderer', 'grief', 'tread', 'Fowler']| -o'clock to,['Duncan'] -enables me,['to'] -just received,['Mr'] -yesterday that,['the'] -nominal? you,['have'] -it ring,['it'] -he small,['boy'] -clergyman absolutely,['refused'] -an unpleasant,['impression'] -less interest,['of'] -indications but,['these'] -instant from,['the'] -affectionate father,['and'] -the belt,['of'] -but friend,['Lestrade'] -fasten all,['the'] -myself down,['in'] -rest upon,['me'] -to Paddington,|['Station', 'and']| -No doubt,['you'] -and Friday,['evening'] -faced by,['so'] -thrust Neville,['St'] -Off I,['set'] -And underneath,['to'] -for standing,['in'] -the good,|['pawnbroker', 'sense', 'of']| -but Holmes,|['caught', 'had', 'hunting']| -finding the,['track'] -and borrowed,['for'] -which caused,|['me', 'him']| -all swept,['from'] -and tearing,|['a', 'it']| -in!" said,|['Holmes', 'he']| -I gazed,['at'] -niece but,['when'] -penal servitude,['unless'] -put my,|['pistol', 'hat', 'handkerchief']| -me so,|['well', 'Why', 'if', 'far', 'good', 'that']| -round But,['I'] -man she,|['no', 'said']| -were fond,['of'] -a strange,|['tangle', 'and', 'errand', 'low', 'contrast', 'idea', 'transformer']| -Holmes asked,['this'] -of relief,['course'] -to lie,|['back', 'and', 'broke']| -ask me,|['why', 'however', 'whether']| -a station,['from'] -to put,|['yourself', 'up', 'us', 'so', 'me', 'the', 'on', 'it', 'colour', 'a']| -he beat,['his'] -same evening,['but'] -sleeping in,['the'] -and extraordinary,|['powers', 'combinations', 'energy', 'calamity']| -and this,|['I', 'also', 'in', 'sinister', 'he']| -and soon,|['found', 'overtook']| -and walls,['are'] -the fogs,['of'] -creature hiss,['as'] -gone to,|['the', 'bed', 'his', 'town', 'it', 'England', 'your', 'live', 'Philadelphia', 'America']| -sight he,['appears'] -Street but,['Holmes'] -open-eyed within,['a'] -accident near,['Crewe'] -Dundee records,['and'] -abstracted it,['from'] -it prove,['to'] -his thin,|['knees', 'white']| -result sign,['of'] -of shag,|['tobacco', 'which', 'I']| -the glass,|['Twenty-nine', 'above', 'in']| -hungry I,['remarked'] -hole to,['develop'] -yourself held,['up'] -fortune and,['I'] -I'll lock,['it'] -roof and,['I'] -bonniest brightest,['little'] -and sympathy,['were'] -all If,['his'] -mistaken for,['those'] -had then,|['had', 'run']| -Grice Patersons,['in'] -had them,['on'] -hour experience,['of'] -a dramatic,['manner'] -reproachfully indeed.,['And'] -colonel himself,['a'] -the ruined,['coronet'] -greasy-backed one,['laying'] -feet deep,['so'] -piteous spectacle,|['It', 'a']| -to exclude,['them'] -marry before,['father'] -the tide,|['was', 'receded', 'But']| -spent his,['day'] -than on,|['any', 'that']| -than of,|['a', 'the']| -trials in,['which'] -generally recognised,['shape a'] -his immense,['faculties'] -presence might,['be'] -very natural,['that'] -dubious and,['questionable'] -is currently,['reported'] -Lascar entreated,['him'] -keeping If,['the'] -The possession,['of'] -was said,['to'] -gets his,['claws'] -to that,|['open', 'When', 'address', 'imbecile', 'said', 'of', 'About', 'which', 'remark', 'noble', 'clue']| -merely for,["cruelty's"] -pain of,['my'] -Oh do,|['not', 'do']| -her match,['were'] -admirable queen,['Is'] -a group,['of'] -regulations he,['pretends'] -inner side,['and'] -my mother,|['It', 'Mrs', 'died she', 'had']| -Paramore and,[''] -deeper still,['But'] -his boots,['I'] -motive In,['these'] -I sleep,['more'] -did I,|['fainted', 'not', 'suppose']| -birds they,['were'] -sudden ejaculation,['caused'] -to alter,['the'] -sunk that,['clear'] -fancier and,['I'] -you he,|['remarked', 'shouted']| -Watson And,['in'] -humming the,['tunes'] -was angry,['and'] -liberty to,['defray'] -was suggested,['by'] -87 furnished,['us'] -have still,|['time', 'to']| -trunks and,['bundles'] -to persuade,['myself'] -you imagine,|['that', 'said']| -shook himself,['shrugged'] -front room,|['she', 'during', 'was', 'were']| -sir A,['precious'] -sitting-room window,['will'] -ten to-morrow,['if'] -sir I,|['did', 'have', 'shall', 'think', 'should', 'really']| -hard at,|['his', 'me', 'the']| -hard as,|['he', 'my', 'it', 'I']| -on glancing,['down'] -hardly consider,['that'] -avoid publicity,['On'] -those lines,|['what,']| -Mr John,|['Hare', 'Clay', 'Turner']| -from boarding-schools,['I'] -a prior,['claim'] -no remarks,['before'] -light green,['of'] -But if,|['I', 'your', 'you', 'it']| -Be one,['of'] -sir a,['public'] -respect shall,['most'] -a crackling,['voice'] -cried Sherlock,['Holmes'] -a cold,|['sneer', 'day', 'supper', 'night', 'brilliant', 'dank', 'morning']| -admit such,['intrusions'] -here but,['must'] -myself that,|['the', 'he', 'it', 'I', 'night']| -excellent education,['I'] -and politics,['were'] -and choked,['her'] -a compressed,['lip'] -supper began,['to'] -hair took,['it'] -the duplicates,['of'] -reopening by,['my'] -details are,['of'] -laid a,['glass'] -boxes are,['not'] -synthesis which,['I'] -Why he,['shrieked'] -well There,|['is', 'was']| -her eager,['and'] -magistrate than,['upon'] -try not,['to'] -I doubt,['if'] -neutral-tinted London,['street'] -carrying a,|['white', 'large']| -I miss,['my'] -is cabinet,['size'] -Pray take,|['this', 'the', 'a']| -apiece Then,['I'] -outside and,|['I', 'the', 'yet']| -flag which,['shall'] -word spoken,['but'] -personally threatened,['If'] -the blinds,|['had', 'in']| -he protested,['that'] -certainly sounds,['feasible'] -has an,['interest'] -it French,['gold'] -He moved,['out'] -comely to,['look'] -as Aldersgate,['and'] -mean this,['relentless'] -armchair with,['the'] -now so far,['as'] -fire-engines were,['vainly'] -conveniently vanished,['away'] -results reached,['this'] -to Godfrey,['Norton'] -safety passed,['his'] -year 1869,['the'] -he chuckling,['It'] -one object,['of'] -would then,['never'] -walked away,['He'] -in Montana,['and'] -relatives should,['allow'] -later we,|['saw', 'were']| -abroad and,['he'] -of most,['vital'] -everything But,|['how', 'when']| -both his,['hands'] -so serious,['It'] -all aside,['and'] -no slit,['through'] -may make,['them'] -consideration is,['to'] -started from,|['London', 'home']| -been observed,['there'] -Peterson just,['buy'] -At his,['fall'] -his house,|['which', 'at', 'being', 'and', 'are', 'tallow']| -pressure looked,['startled'] -the india-rubber,['bands'] -then so,['that'] -though none,['as'] -both seen,['and'] -notes of,|['the', 'several']| -some service,['in'] -in Australia,|['and', 'of']| -the envelope,|['which', 'and', 'wish', 'So', 'he', 'had', 'upon']| -brass box,|['like', 'stood', 'there', 'which']| -I think,|['to', 'Watson', 'perhaps', 'that', 'you', 'it', 'of', 'I', 'myself', 'were', 'Doctor', 'was', 'if', 'much', 'all', 'we', 'sir', 'and', 'Miss']| -back at,['me'] -her secret the,['more'] -to renew,['her'] -shining her,['lips'] -eyes very,['many'] -persons in,['the'] -and taking,|['his', 'out']| -problem upon,|['the', 'his']| -wants it,['Now'] -would I,|['am', 'should', 'could']| -wants is,['an'] -Street wheeled,['sharply'] -|come, it|,['may'] -touched his,['heart'] -here As,['I'] -a stately,['old-fashioned'] -door however,['they'] -been caught,['in'] -cause the,['cause'] -the gallows,['and'] -come into,|['a', 'town', 'Winchester']| -keenly what,['did'] -thing a thing,['beyond'] -rifled the,['jewel-case'] -committed As,['far'] -it? asked,['Arthur'] -we met,['him that'] -Pondicherry postmark,['What'] -A. there,['is'] -the indications,['which'] -instance in,['Aberdeen'] -when however,['it'] -walls though,['no'] -keen incisive,['reasoning'] -Another Lucy,['Parr'] -our room,['still'] -you lying,['fainting'] -a man,|['of', 'She', 'who', 'might', 'with', 'whose', 'she', 'it', 'should', 'as', 'out', 'gives', 'in', 'however', 'can', 'named', 'that', 'rather', 'His', 'either', 'and', 'bent', 'without', 'As', 'fresh', 'standing', 'appeared']| -its contents,['had'] -never guess,|['how', 'what']| -alarm however,['was'] -own to,['settle'] -after we,|['had', 'returned']| -swiftly forward,['seized'] -him talking,['with'] -gushes and,['then'] -This account,['of'] -success of,['our'] -seven-and-twenty years,['that'] -is Hugh,['Boone'] -exhilarating nip,['in'] -commonly become,['delirious'] -framed in,['the'] -along heavy,['roads'] -that she,|['will', 'has', 'would', 'carries', 'does', 'had', 'was', 'came', 'ran', 'is', 'must', 'could', 'died', 'went', 'with', 'might', 'may', 'refers', 'alone', 'loved', 'carried', 'no', 'never']| -who stares,['up'] -from men's,['motives'] -her what,['then'] -Every morning,['I'] -pounds Great,['Lord'] -the gravel-drive,['and'] -which direction,['he'] -know did,['he'] -three times,|['before', 'he', 'repeated', 'shook']| -scissors of,['the'] -merry and,['jovial'] -sad that,['his'] -found us,['is'] -tension within,['him'] -brought into,['frequent'] -good money,['for'] -same source,|['He', 'that']| -a red-headed,['man.'] -my valise,['rattling'] -this we,['must'] -hurried down,['to'] -foot-path over,['the'] -So there,['were'] -looking outside,['the'] -are a,|['benefactor', 'funny', 'few', 'thousand', 'good', 'most']| -also true,['that'] -answered The,['cases'] -salesman chuckled,['grimly'] -to avert,|['another', 'scandal']| -away five,['years'] -start which,['I'] -every precaution,['has'] -every chink,['and'] -leading from,['a'] -this creature,|['takes', 'back']| -a relative,['which'] -are I,|['am', 'fancy', 'think', 'know']| -at that,|['hour', 'moment', 'for', 'third', 'end', 'deadly', 'time', 'rate', 'window']| -protesting to,['the'] -was making,['his'] -moonshine moonshine,['is'] -transverse bar,['Then'] -was aware,|['of', 'that', 'more']| -of by,['the'] -tide with,['at'] -visitor of,['the'] -Holder Might,['I'] -a double,|['stream', 'tide', 'line']| -instant threw,['up'] -James's Hall,|['this', 'I']| -cocked and,['his'] -you months,['ago'] -last message,['K'] -landlady had,['provided'] -your silly,['talk'] -did they,|['come', 'say']| -cause of,|['quarrel', 'death', 'this', 'my', 'the', 'complaint']| -problems which,|['were', 'have']| -was apprenticed,['to'] -back twitching,['and'] -sleepy porter,['with'] -not object,['to'] -pale of,['the'] -opportunity I,['turned'] -term of,['imprisonment'] -added opium-smoking,['to'] -He throws,['it'] -talk of,|['marrying', 'delirium', "woman's"]| -wiry sunburnt,['man'] -West End,|['It', 'called']| -whole incident,['be'] -Robert Walsingham,['de'] -conduct But,['you'] -very penetrating,['dark'] -raised his,|['hand', 'stick', 'eyebrows', 'finger']| -had feared,['to'] -office got,['her'] -to learn,|['the', 'what', 'wisdom', 'it', 'of']| -earrings sir.,['He'] -chemical researches,['which'] -for Papier.,['Now'] -remonstrance He,['is'] -how are,['you'] -violet eyes,['shining'] -are legible,['upon'] -theory You,['suppose'] -the entries,['against'] -the postmarks,['of'] -lose hope,['as'] -Holmes gazed,['long'] -had written,|['a', 'and', 'about', 'in', 'my']| -arranged it,['says'] -business travels,['for'] -say in,['anything'] -amiable as,['ever'] -couldn't slip,['away'] -lane His,['footmarks'] -feeble than,['his'] -of very,|['red', 'penetrating', 'bright']| -creature weaker,['than'] -a clanging,['sound'] -him afterwards,['and'] -85 On,['the'] -between us,|['That', 'James', 'that']| -not unlike,['each'] -he managed,|['it', 'that']| -from this,|['double', 'old', 'hat', 'allusion', 'four-year-old']| -hours to,['something'] -refuse will,['not'] -me out,|['of', 'but', 'when']| -daughter could,['not'] -superb figure,['outlined'] -fantastic poses,['bowed'] -becomes positively,['slovenly'] -west The,['roadway'] -to seek,|['the', 'a', 'his']| -confound me,['with'] -the easier,['for'] -more first,['thing'] -K which,['I'] -deep harsh,['voice'] -married remarked,['Holmes'] -virtue He,['is'] -the secure,['tying'] -as tender,['and'] -world. shall,['leave'] -off in,|['my', 'the', 'one']| -walked to,['the'] -life would,['not'] -jutted out,['the'] -drug beckoning,['me'] -snarled I,['have'] -Its owner,['is'] -eyes into,['his'] -horror I,|['took', 'should']| -favour Don't,['you'] -of purchasing,['one'] -body in,['one'] -there doubtless,['among'] -acted so,['harshly'] -readily upon,['him'] -longer I,['shall'] -broke loose,['and'] -there not,['more'] -this trophy,['belongs'] -commission and,|['I', 'without']| -there now,['my'] -from Fareham,['in'] -NOBLE BACHELOR,['Lord'] -sake of,|['a', 'this']| -pursuers But,['to'] -Good-night for,['Mr'] -railed-in enclosure,['where'] -explain the,|['state', 'appearance', 'necessity', 'true']| -will he,|['see', 'say']| -vanished from,['the'] -question me,['upon'] -regard to,['his'] -Holder we,['will'] -been identified,['as'] -working upon,['There'] -the vestry,['She'] -the use,['of'] -under the,|['name', 'honourable', 'full', 'letter', 'circumstances', 'shadow', 'sponge', 'impression', 'three', 'door']| -|yes,' said|,['he'] -to Eton,['and'] -further Above,['all'] -pierced bit,['of'] -is from,|['you', 'Lord']| -clock which,['boomed'] -fashion of,|['my', 'speech', 'old']| -a hearty,|['fit', 'laugh', 'meal', 'supper']| -metal had,['fallen'] -a sharp,|['pull', 'cry', 'frost', 'face']| -very thought,['of'] -my wounded,['thumb'] -conclusion and,['was'] -so ashamed,['of'] -turning his,['head'] -A broad,['wheal'] -seaports That,['the'] -queer things,['which'] -was shot,['with'] -between savage,['fits'] -|bank moment,"|,['Holmes'] -mass of,|['black', 'metal']| -his professional,|['acquaintance', 'investigations', 'skill']| -hat I,['cannot'] -entirely to,['a'] -corner of,|['the', "Paul's", 'Goodge', 'one', 'my']| -undertake to,['go'] -our noble,|['benefactor', 'client']| -you That,['was'] -groaned the,['prisoner'] -quite made,['up'] -Watson if,['there'] -Stoner the,['young'] -a blaze,['house'] -to advance,|['it', 'to']| -in Brixton,['Road'] -was closed,|['Mary', 'and']| -remarked and,|['yet', 'bowing']| -an exceeding,['thinness'] -clever stepfather,['do'] -so did,['you'] -man confessed,['to'] -God!" I,|['cried', 'whispered']| -quietly sings,['at'] -the goose,|['as', 'and', 'came', 'into', 'My']| -waited in,|['absolute', 'my', 'the']| -not miss,['it'] -bachelor It,['was'] -|influence morning,|,['at'] -are outside,['the'] -my stone,['to'] -more precious,['to'] -him this,['sinister'] -just on,['with'] -and eventually,|['married', 'got']| -the reconstruction,['of'] -a crib,['in'] -snake ring,['from'] -consider the,|['situation', 'blow']| -are fatal,['or'] -shoulder I,['saw'] -the interim,['had'] -diggings I,['was'] -justice in,['the'] -her her,['head'] -mistake and,['by'] -he tell,['me'] -thresholds of,['which'] -I not,|['tell', 'snap', 'escort', 'come', 'see']| -is hardest,['for'] -motive she,['may'] -going back,['to'] -one retreat,['whispered'] -prison but,['only'] -time Ferguson,['remained'] -Hercules His,['dress'] -and Godfrey,['Norton'] -our unfortunate,['acquaintance'] -answered Mr,['Baker'] -Westhouse &,['Marbank'] -died five,['years'] -corridor and,['down'] -there only,['remained'] -after Pa,['thought'] -young I,['am'] -day which,|['had', 'has']| -given you,|['Let', 'the', 'my', 'all', 'pain']| -say to,|['me', 'mother', 'this', 'you']| -your reasoning,['I'] -men's heads,['down'] -now entirely,['see'] -his purpose,['were'] -With hardly,['a'] -levers which,['controlled'] -hurried scrawl,['telling'] -he allow,['me'] -along here,['I'] -rather roughly,['what'] -and plucked,['at'] -wanted ten,['minutes'] -sketch of,['this'] -chatted with,['him'] -the sunlight,['but'] -innocent human,['life'] -trying begging,['as'] -conceal its,['repulsive'] -gaiters with,['a'] -to Leatherhead,|['from', 'thought']| -of Winchester,['It'] -to light,|['a', 'in', 'for', 'the']| -her lap,['and'] -latter how,['in'] -long term,['of'] -arrested may,['not'] -circumstances connected,['with'] -to enter,|['into', 'upon', 'With', 'through']| -Pennsylvania U,['S'] -a radius,['of'] -my Baker,['Street'] -singular contrast,['to'] -were sitting,['there'] -his step-daughter,['but'] -you call,|['eight', 'to-morrow', 'purely', 'a']| -|have, however|,['allowed'] -were we,|['going', 'to']| -Farm and,['the'] -his hawk-like,['nose'] -visible from,['there'] -dear young,|['lady', "lady!' you", 'lady?']| -myth There,['is'] -and found,|['as', 'him', 'that', 'your', 'herself', 'ourselves', 'a', 'they', 'little']| -unfortunately lost,['Might'] -Morcar's was,['Catherine'] -arrived the,['door'] -you followed,['me'] -a dweller,['once'] -reported as,['having'] -least important,['and'] -take charge,['of'] -costume His,['expression'] -and help,['too'] -now Doctor,|["we've", 'we', 'I', 'perhaps']| -day and,|['returns', 'often', 'to', 'I', 'by', 'at', 'he', 'Mrs', 'was', 'that', 'not']| -for seven,['months'] -chance his,['wife'] -are Whoa,['there'] -tumbled onto,['the'] -eyes she,['eclipses'] -kind-hearted If,['you'] -enough lash,['But'] -area of,['light'] -youngster I,['have'] -bare ankles,['protruding'] -the big,|['ledger', 'white']| -some loophole,['some'] -days was,['it'] -picked out,['from'] -a dream,['has'] -fancy that,|['my', 'this', 'I']| -before he,|['could', 'died', 'saw', 'even', 'really', 'knew', 'entered', 'started', 'wrote', 'roused', 'was', 'went']| -the mission,['which'] -just the,['same'] -morning so,['there'] -excellent bird,['which'] -confronted him,['villain!"'] -train so,['as'] -disguises I,['had'] -to punish,['the'] -a most,|['clumsy', 'entertaining', 'mysterious', 'useful', 'suspicious', 'retiring', 'unimpeachable', 'remarkable', 'singular', 'dark', 'interesting', 'unpleasant', 'searching']| -was twisted,['you'] -gradually away,['as'] -like dark,['shapeless'] -of the,|['softer', 'drug', 'Trepoff', 'singular', 'Atkinson', 'mission', 'daily', 'Study', 'sole', 'London', 'medical', 'very', 'royal', 'paper', 'maker', 'death', "sentence 'This", 'window', 'face', 'most', 'reigning', 'man', 'well-known', 'King', 'Count', 'provinces', 'grim', 'case', 'investigation', 'fire', 'coach-house', 'garden', 'Inner', 'sitting-room', 'buckles', 'hall', 'door', 'altar', 'occasion', 'street', 'house', 'sort', 'side-lights', 'avenue', 'loafing', 'loungers', 'quiet', 'Darlington', 'preceding', 'freedom', 'lady', 'woman', 'utmost', 'greatest', 'imagination', 'story', 'course', 'subject', 'bequest', 'late', 'League', 'Red-headed', 'vacancies.', 'way', 'others', 'manager', 'pensioners', 'red-heads', 'room', 'whole', 'office', 'panel', 'affair', 'minute', 'main', 'City', 'houses', 'chase', 'red-headed', 'Encyclopaedia', 'Sholto', 'principal', 'wooden', 'vault', 'bulky', 'bank', 'floor', 'little', 'broad', 'aperture', 'hole', 'detective', 'morning', 'advertisement', 'assistant', 'question', "assistant's", 'coolest', 'race', 'magistrate', 'average', 'lid', 'Irene', 'swimmer', 'bell', 'business', 'money', 'drawer', 'firm', 'wedding', 'matter', 'church', 'trouser', 'hand', 'fourteenth', 'Sign', 'disappearing', 'sufferer', 'salt', 'details', 'e', 'r.', 'mantelpiece', 'daughter', "girl's", 'bitter', 'typewriter', 'world', 'murdered', 'farms', 'same', 'neighbouring', 'neighbourhood', 'stream', 'tragedy', 'lodge-keeper', 'Boscombe', 'woods', 'wood', 'body', 'jaw', "coroner's", 'situation', 'local', 'carriage', 'deceased', 'yard', 'matter.', 'wood?', 'witness', 'jury', 'vanishing', 'light', 'crime', 'events', 'day', 'injuries', 'inquest', 'left', 'occipital', 'accused', 'grey', 'Hall', "son's", 'wealthy', 'rich', 'pool', 'trees', 'stricken', 'gun', 'tree', 'rat', 'Colony', 'map', 'ground', 'criminal', 'injury', 'variety', 'clutches', 'wagon-driver', 'police', 'peace', 'black', 'Sherlock', 'fact', 'adventure', 'Paradol', 'Amateur', 'facts', 'British', 'Grice', 'Camberwell', 'fireplace', 'gale', 'rain', 'sea', "landlady's", 'fierce', 'lamp', 'storm', 'invention', 'Openshaw', 'war', 'Republican', "colonel's", 'estate', 'reception', 'letter', 'attic', 'cover', 'papers', 'Southern', 'other', 'sort.', 'forts', 'deep', 'law', 'American', 'time', 'Ku', 'book', 'country', 'negro', 'society', 'efforts', 'United', 'better', 'community', 'more', 'first', 'H', 'help', 'water-police', 'small', 'authorities', 'riverside', 'flap', 'gang', 'old', 'states', 'Union', 'Lone', 'fate', 'Theological', 'docks', 'river', 'metal', 'policeman', 'clouds', 'belt', 'Aberdeen', 'company', 'stairs', 'continued', 'proprietor', 'wharves', 'bedroom', 'vilest', 'stair', 'missing', 'opium', 'blood', 'premises', 'clothes', 'tell-tale', "coat's", 'great', 'greyish', 'ceiling', 'heap', 'previous', 'Surrey', 'upper', 'city', 'season', 'back', 'chair', 'last', 'latter', 'field', 'spoils', 'slight', 'unknown', 'usual', 'hat-securer', 'lower', 'lining', 'barber', "man's", 'palm', 'market', 'Countess', 'robbery', 'grate', 'one', 'Amoy', 'carbuncle', 'passers-by', 'streets', 'private', 'largest', 'Alpha', 'kind', 'folk', 'circle', 'stranger', 'nervous', 'next', 'agonies', 'birds a', 'flock.', 'stone', 'table', 'seventy', 'Roylotts', 'driver', 'human', 'oldest', 'Regency', 'Bengal', 'family', 'village', 'engagement', 'buildings', 'three', 'strong', 'night?', 'corridor-lamp', "doctor's", 'spring', 'building', 'night', 'dying', 'devil', 'professional', 'agricultural', 'doorway', 'year', 'investments', "wife's", 'pleasant', 'moist', 'trap', 'windows', 'walls', 'chairs', 'apartment', 'bed', 'repairs', 'inhabited', 'lad', 'sitting-rooms', 'Manor', 'parish', 'ventilator', 'gipsies', 'word', 'whistle', 'milk', 'safe', 'blows', 'fifty', "fuller's-earth", 'journey', 'road', 'front', 'wheels', 'passage', 'country-side', 'utter', 'unpleasant', 'creases', 'descending', 'side', 'india-rubber', 'loss', 'machine', 'colonel', 'levers', 'leaking', 'boards', 'two', 'hedge', 'ponderous', 'county', 'beautiful', 'fugitives', 'second', 'machinery', 'highest', 'Duke', 'Grosvenor', 'Morning', 'noble', 'prizes', 'bride', 'common', 'attempts', 'friends', 'bridegroom', 'footmen', 'bride.', 'knees', 'lustrous', 'general', 'pea-jacket', 'pile', 'Arabian', 'afternoon', 'clergyman', 'change', 'foot-paths', 'Metropolitan', 'banking', 'foremost', 'clerks', 'Beryl', 'empire', 'gold', 'coronet', 'confidence', 'immense', 'precious', 'box-room', 'beryls', 'police!', 'noise', 'disappearance', 'thirty-nine', "banker's", 'door that', 'sill', 'cupboard', 'lumber-room', "jeweller's", 'class', 'West', 'servants', 'passage-lamp', 'struggle', 'kitchen', 'boot', 'receiver', 'Daily', 'early', 'blue', 'founder', "child's", 'features', 'acetones', 'farm-steadings', 'new', 'curses', 'impunity', 'deeds', 'cathedral', 'funniest', 'glass', 'scene', 'copper', 'third', 'thing', 'Tollers', 'child', 'parents', 'setting', 'barricade', 'disagreeable']| -rather walk,['with'] -glance so,['simple'] -opened for,['us'] -boy was,['putting'] -sodden grass,['twenty'] -stole I,['knew'] -stooped to,['the'] -subdued brightness,['through'] -pay and,['very'] -The panel,['had'] -and glances,['at'] -brave soldier,['Others'] -highest pitch,|['of', 'it']| -his conversation,['with'] -long shining,['waterproof'] -is known,['knows'] -patient for,['I'] -every quarter,|['and', 'of']| -Lane where,|['you', 'I']| -many hours,['a'] -old quarters,['at'] -money But,['how'] -strike you,|['are', 'as', 'cannot']| -indicate I,['cudgelled'] -even the,|['smallest', 'bark', 'fantastic', 'drawing']| -been cut,|['off', 'near', 'to']| -afterwards returned,['to'] -some years,|['and', 'ago', 'the', 'There', 'back']| -promise were,['instituted'] -observed And,['yet'] -defend himself,['and'] -very rich,['is'] -will if,|['rumour', 'you']| -actually saw,['him'] -less murderous,['than'] -probable now!",['she'] -too Now,['where'] -grove at,['the'] -blanched with,['terror'] -Ryder said,['Holmes'] -had remarked,['the'] -so fixed,['a'] -small public-house,['at'] -of disguises,['I'] -in 77,['and'] -trivial but,['characteristic'] -his speech,['before'] -the prizes,['which'] -Edgeware Road,|['Half', 'did']| -in grief,['came'] -to Hatherley,['Farm'] -something very,|['bad', 'pressing']| -light brown,['dustcoat'] -would often,['be'] -your lad,['tugging'] -murderer a,['tall'] -fate while,['indiscreetly'] -afterwards That,['is'] -may have,|['an', 'the', 'something', 'noticed', 'been', 'to', 'remarked', 'happened', 'a', 'referred', 'dated', 'deduced', 'remained', 'afforded', 'explained', 'some', 'any', 'heard', 'gone', 'planned', 'bordered']| -has proved,['that'] -wrote it,['was'] -strict principles,['of'] -rising Sir,['I'] -trim side-whiskers,['was'] -Lordship I,['may'] -friend he,['ought'] -shrilly a signal,['which'] -her expression,['was'] -because the,['peculiar'] -never thought,['that'] -stepped over,['to'] -families in,['England'] -dear girl,['It'] -blocked with,|['the', 'wooden']| -not. But,['why?'] -has put,['in'] -son came,['down'] -a magnifying,['lens'] -done to-night,['so'] -all assembled,['round'] -with cotton,['wadding'] -foul of,['See'] -Toller to,['bear'] -quite master,['of'] -tell-tale garments,['He'] -crawled swiftly,['backward'] -had enough,['of'] -How you,['startled'] -my real,|['occupation', 'name']| -the London,|['slavey', 'Road']| -the further,['end'] -held that,['of'] -lamp and,|['I', 'we', 'examined', 'led', 'a']| -to mind,|['about', 'anything']| -to mine,|['Tottering', 'and']| -might hardly,['yet'] -be led,['to'] -the splash,['of'] -is small,['for'] -but for,['the'] -pale-faced woman,['much'] -Holmes looking,['keenly'] -eggs and,['joined'] -I ventured,|['a', 'to']| -kitchen rug,['Here'] -pavement Then,['it'] -know devoted,['some'] -searching fashion,['and'] -recovered It,['proved'] -o'clock she,['rose'] -light flashed,['upon'] -imagine what,|['had', 'I']| -wasn't best,['pleased'] -Madame rather,['returns'] -explain I,|['was', 'believe']| -stamping machine,['which'] -HUNTER." you,['come'] -dilate with,['a'] -three missing,|['And', 'stones']| -will ask,['me'] -national property,['I'] -wing of,|['the', 'Stoke']| -grasp of,|['a', 'some', 'his']| -gone has,['been'] -ten or,['twelve'] -will have,|['for', 'carried', 'informed', 'nothing', 'a', 'the']| -man whom,|['we', 'I']| -shall glance,['into'] -mentioned and,['the'] -piece? have,['called'] -sitting-rooms you,['know'] -same corridor,['Do'] -actionable from,['the'] -this fellow,|['Striding', 'will', 'should']| -and wasteful,['disposition'] -corner house,['announced'] -human thumb,['upon'] -though I,|['see', 'was', 'repeatedly', 'saw', 'should', 'disregarded', 'very', 'presume', 'am', 'have']| -most amiable,['manner'] -than either,['you'] -is needed,['If'] -door cried,['Holmes'] -the blow,|['the', 'fell', 'which']| -twentieth part,['of'] -them ever,['since'] -a partie,['carre'] -a sight,|['as', 'The']| -long golden,['bar'] -office experience,['has'] -metallic deposit,['all'] -and Stripes,['case'] -window nor,['have'] -window not,['long'] -own Indeed,['apart'] -almost instantly,['expired'] -doubted that,['Frank'] -having lit,['it'] -appears from,['an'] -simpler for,['the'] -creature must,['be'] -his theory,['by'] -and passing,['his'] -advanced slowly,['into'] -good strong,['lock'] -pronounce as,['an'] -a level,['with'] -I close,['the'] -having rushed,['into'] -untamed beasts,['in'] -upon business,['He'] -which faced,['that'] -currently reported,['that'] -hours He,['cut'] -John Cobb,['the'] -pit. said,['he'] -might die,['for'] -his features,|["Holmes'", 'as']| -open drawers,['as'] -the glimmer,['from'] -his direction,['that'] -You look,|['cold', 'dissatisfied', 'at']| -knows it,['already'] -house being,['the'] -they must,['have'] -Pray let,['me'] -must not,|['interfere', 'discourage', 'fear', 'sit', 'think']| -should be,|['better', 'But', 'a', 'able', 'happy', 'pushed', 'ungrateful', 'at', 'alone', 'in', 'entangled', 'ashamed', 'exceedingly', 'rich', 'here', 'eaten', 'excellent', 'so', 'an', 'the', 'allowed', 'very', 'tied', 'surprised', 'immensely', 'compelled', 'putting', 'paid', 'taken.', 'deeply', 'stopped.', 'liberated', 'late', 'proud', 'glad', 'among', 'taken', 'blockaded']| -six hundred,['for'] -one" he jerked,['his'] -and rich,['tint'] -he loved,|['But', 'his']| -yourself absolutely,['at'] -his conclusions,|['he', 'have', 'were']| -a youngster,|['of', 'I']| -long windows,|['almost', 'reaching']| -silence which,['was'] -chuckled my,['word'] -consideration that,['we'] -bed beside,['him'] -following you,['closely'] -4 1/2,['per'] -before experienced,['The'] -sharp cry,['of'] -|me," he|,['said'] -in terrible,['pain'] - ,|['', 'Very', '"IRENE', 'THE', 'IS', 'DISSOLVED', 'October', 'John', '"VIOLET', '"\'The']| -shortly take,['place'] -some perplexity,|['my', 'from']| -Encyclopaedia which,['stands'] -word band,['which'] -High Street,['at'] -tomorrow evening,['It'] -and ready,['traveller'] -was equally,|['hot', 'clear']| -divan upon,['which'] -nervous woman,['He'] -is situated,['at'] -uncongenial atmosphere,['Three'] -sternly He,['caught'] -|sir, I|,['do'] -the contents,|['come,', 'startled', 'and']| -terrorising of,['the'] -it belongs,['to'] -before three,|['I', "o'clock"]| -greater distance,['to'] -the screen,['over'] -case in,|['the', 'his']| -Toller will,['we'] -case is,|['an', 'nothing', 'as', 'no', 'in', 'the']| -case it,|['was', 'had', 'appears', 'does']| -our interview,['but'] -It conveyed,['no'] -dress I,|['took', 'knew', 'rushed']| -blackmailing or,['other'] -engaging a,['bedroom'] -true state,['of'] -another little,|['monograph', 'smudge']| -Then with,|['a', 'his']| -and as,|['much', 'he', 'my', 'I', 'tenacious', 'it', 'the', 'resolute', 'such', 'soon', 'noiselessly', 'Lord', 'you', 'his']| -the pressing,['danger'] -he wouldn't,['have'] -a union,['he'] -answer forever,['She'] -the deuce,['that'] -myself with,|['a', 'the', 'rage']| -enclosure here,['there'] -might escape,['every'] -Ah he's,['breathing'] -Wilson it,['is'] -suit of,['heather'] -eye and,['your'] -assistant there,['pushed'] -dark aquiline,['and'] -was merely,['the'] -already at,['breakfast'] -be invaluable,['I'] -the daughter,|['as', 'of', 'who', 'could', 'Miss']| -cumbrous The,['thing'] -give it,['all'] -a coquettish,['Duchess'] -a hunting,['crop'] -practically accomplished,['and'] -his attentions,['The'] -We could,['write'] -incalculable The,['lowest'] -guardsmen took,['to'] -sudden commission,['which'] -should tell,['anyone'] -In her,['right'] -young fellow,['who'] -went for,['help?'] -of none,['other'] -petered out,['and'] -matter quiet,['for'] -He leaned,['back'] -ideal reasoner,['he'] -|geese Whose,|,['then'] -can only,|['touch', 'be', 'deduce', 'mean', 'say', 'claim']| -a guttering,['candle'] -his violence,['of'] -endeavoured in,|['my', 'every']| -became consumed,['with'] -that Lord,['St'] -sleeves which,['is'] -brightness through,['the'] -his actions,|['was', 'were']| -other methods,['will'] -Countess was,['accustomed'] -hurt When,['he'] -wish a,['smarter'] -make clear,['the'] -the housekeeper's,['room'] -in lodgings,['in'] -was probably,|['some', 'on']| -For goodness,['sake'] -persecution papers,['which'] -you about,|['this', 'one']| -work has,['not'] -the traffic,|['of', 'but']| -thin eager,['face'] -off another,['piece?'] -livid spots,['the'] -the push,['the'] -all was,|['right', 'dark', 'silent', 'secure a']| -old at,['the'] -have caught,|['him', 'in', 'you']| -here or,|['sit', 'there']| -when viewed,['for'] -morning he,['was'] -drop until,['the'] -She states,['that'] -terrible event,['occurred'] -here on,|['the', 'this']| -We can,['do'] -You know,|['me', 'Peterson', 'my', 'what']| -sir!" said,['the'] -unusual I,['will'] -faults as,['no'] -attracted much,['attention'] -his cunning,['grinning'] -walk amid,['the'] -your casting,['vote'] -centre bushy,['black'] -give in,['the'] -that dreadful,|['time', 'vigil', 'snap']| -find ourselves,['in'] -the barrel,['of'] -of Reading,|['There', 'I', 'but']| -that anything,['dishonourable'] -the different,['incidents'] -sister of,|['the', 'mine', 'his']| -seriously to,['finding'] -over-good for,['some'] -knees drawn,['up'] -back You,['did'] -footfall in,['the'] -trap at,|['the', 'a']| -Well Mrs,['St'] -250 pounds,['in'] -with mine,['not'] -told from,['their'] -calmly but,['I'] -passion How,['could'] -lately It,['is'] -baleful light,['sprang'] -true facts,['of'] -seen so,|['thin', 'suspicious']| -of Sherlock,['Holmes'] -is barred,['up'] -ordinary man,['could'] -Holmes stopped,['in'] -spoke his,['eyes'] -armchair amid,['his'] -opening clad,['in'] -some resistless,['inexorable'] -now Lord,['St'] -tradesman obese,['pompous'] -here evidence,['is'] -a curtain,['in'] -the extraordinary,|['announcement', 'story', 'circumstances']| -he hope,['to'] -throw up,['his'] -lover which,['was'] -Rucastle were,['both'] -were locked,['so'] -lodge-keeper his,['house'] -want the,["doctor's"] -Valley tragedy,['Shall'] -penetrating grey,['eyes'] -Fowler being,['a'] -who gets,['it'] -much sense,['in'] -friend Mr,['Sherlock'] -electric point,['in'] -the still,['more'] -his deep-set,['bile-shot'] -and hence,|['also', 'it', 'my']| -raved in,['the'] -the stile,['that'] -either from,['the'] -an object,['of'] -last hear,['that'] -hotel where,|['I', 'we', 'it']| -me but,|['he', 'when', 'I', 'she', 'as', 'the', 'you', 'upon']| -the dearest,['old'] -his library,['where'] -red-headed man.,["that?'"] -of charity,['descends'] -stepfather has,['offered'] -The whole,|['party', 'garden']| -the weeks,['passed'] -night could,['not'] -then." attempts,['have'] -see He,['pushed'] -red-headed man?,['said'] -a subject,|['or', 'to', 'of']| -murderer So,['and'] -kingdom of,['Bohemia'] -public one,['since'] -blue egg,['that'] -his sympathetic,['smile'] -insight into,|['character', 'the']| -shutter heavily,['barred'] -is excellent,['I'] -having carried,['out'] -his lip,['from'] -view be,['an'] -he drew,|['over', 'the', 'it']| -threatened I,['braved'] -miserable story,['we'] -provided only,['that'] -wishes his,['agent'] -have gained,['on'] -destruction Beyond,['the'] -appearance Describe,['it'] -pocket In,['the'] -up in,|['my', 'Serpentine', 'his', 'despair', 'hope', 'surprise', 'a', 'the', 'your', 'front', 'me']| -communicate with,|['you', 'he', 'her']| -Watson Could,['your'] -pocket It,['is'] -this she,['bequeathed'] -feet He,['drew'] -longer against,['the'] -my plan,['of'] -pressing which,['they'] -a horsey-looking,['man'] -room that,['is'] -of electric,['blue'] -would give,|['one', 'them', 'it', 'him', 'his', 'these', 'you', 'my']| -position Draw,['your'] -means that,['it'] -listen to,|['what', 'another', 'her', 'An']| -mole could,['trace'] -have devoted,['some'] -and eerie,['in'] -Walsingham de,['Vere'] -where's your,['daughter'] -face was,|['bent', 'of', 'pale', 'deadly', 'one']| -larger but,['with'] -second from,['Dundee'] -I gasped,['means'] -the lust,['of'] -thieves I,['have'] -charge of,|['murder', 'the', 'having', 'it', 'sensationalism', 'a']| -Arabian Nights,['with'] -to you,|['and', 'look', 'Now', 'when', 'Pray', 'you', 'that', 'who', 'sir', 'father,"', 'as', 'before', 'for', 'it', "There's", 'If', 'is', 'That', 'Watson', 'or', 'might."', 'well,', 'I', 'by?"', 'Who', 'how', "I'd", 'You', 'screamed', 'to', 'call', 'a', 'The', 'however', 'It', 'in', 'since', 'Lestrade', 'now', 'first', 'Miss', '', 'will', 'Ah', 'said']| -average story-teller,['Take'] -I've let,['them'] -black and,|['bitter', 'heavily']| -her geese,['for'] -longer about,['Mr'] -deed What,['would'] -inferences pray,['tell'] -lowest estimate,['would'] -cripple in,['the'] -speedy clearing,['up'] -until night,['should'] -but the,|['sequel', 'others', 'locality', 'blinds', 'coachman', 'greeting', 'course', 'work', 'door', 'letter', 'signature', 'cut', 'laugh', 'papers', 'facts', 'enclosure', 'lines', 'grime', 'dollars', 'man', 'elastic', 'fluffy', 'reward', 'stone', 'high', 'brandy', 'right-hand', 'sudden', 'other', 'words', 'colonel', 'floor', 'remorseless', 'crash', 'gentleman', 'two', 'methods', "father's", 'woods']| -paleness in,['a'] -your process,['And'] -been this,['morning'] -so want,['a'] -friendship defined,['my'] -call the,['police'] -criminal in,['London'] -confidence He,['would'] -dark red,['or'] -a pipe-rack,['within'] -finger on,['it'] -relentless keen-witted,['ready-handed'] -|secret. bowed,|,['feeling'] -ask do,['you'] -criminal it,['does'] -silence with,['his'] -was because,['I'] -overhear what,['they'] -woman They,['would'] -wife pulling,['up'] -lie His,['silence'] -my wife's,|['neck', 'and']| -then You,|['see', 'want', 'made']| -prisoner the,['magistrate'] -to watch,|['me', 'you']| -this not,['over-bright'] -is said,|['that', 'he', 'to']| -little is,['out'] -English window,['fasteners'] -in peace,|['I', 'well']| -does go,['wrong'] -Now would,['you'] -card-case is,['a'] -taking his,['heavy'] -windows they,['all'] -At one,['side'] -implicate some,['of'] -The lash,['however'] -green-room for,['my'] -just put,['on'] -heaving chest,['fighting'] -now can't,['lie'] -glimmer from,['beneath'] -actionable he,['stammered'] -hypothesis will,['lead'] -deductions as,['swift'] -once at,['our'] -who used,['to'] -his self-respect,['reasoning'] -smoke-rocket from,['under'] -carts were,['stirring'] -The last,['squire'] -very extraordinary,['one'] -been fastened,|['upon', 'by', 'one']| -the desk,['but'] -glasses on,['his'] -assaulted me,['had'] -robberies brought,['about'] -again Then,['I'] -doing there,|['A', 'at']| -suburban villas,['when'] -the rich,["landowner's"] -an interview,['with'] -ostrich feather,['over'] -receive a,|['bird', 'more']| -innocent he,['might'] -me seemed to,['me'] -the opportunity,['of'] -had caged,['up'] -stiff for,['I'] -quite beyond,['my'] -high wharves,['which'] -swept the,['matter'] -subdued the,['flames'] -is four-and-twenty,|['matter,']| -Hum Born,['in'] -vagabonds leave,['to'] -me shiver,['said'] -waterproof to,['have'] -he married,|['the', 'my']| -future proceedings,['which'] -finished when,['Holmes'] -drawers as,['if'] -son himself,['indicated that'] -family itself,['is'] -in London.,['is'] -Now what,|['did', 'do']| -me narrowly,['it'] -more the,['hand'] -quite committed,['myself'] -their hands,['at'] -happened And,['why'] -before nine,["o'clock"] -your gesture,['that'] -nervous hands,['together'] -signal to,|['throw', 'us']| -startled I,['do'] -the character,['of'] -appeared in,['all'] -bramble-covered land,['which'] -paint I,['could'] -unknown to,|['you', 'him']| -is easterly,['I'] -for thousands,['They'] -nostrils were,['tinged'] -late And,['when'] -for not,|['doing', 'waiting']| -ran with,['her'] -Roylott's conduct,['had'] -possible with,['us'] -children groaned,['the'] -entirely wrong,['scent'] -and jovial,['as'] -and beneath,['were'] -nails at,['the'] -never mind,|['about', 'that']| -They may,['rest'] -the complete,['truth'] -me You,|['may', 'must', "won't", 'owe']| -reverse She,['was'] -we going,['and'] -whose name,|['is', 'as', 'has']| -friend Sir,['George'] -outside said,['he'] -coloured shirt,['protruding'] -kept two,['servants a'] -You cannot,['imagine'] -go weak,['and'] -blow fell,|['Still', 'in', 'I']| -up You,['said'] -I much,['prefer'] -large towns,['were'] -guard against,|['tut!"', 'him']| -is unusual,['in'] -to-morrow was,['no'] -alone had,['touched'] -year so,|['what', 'as']| -limit on,['the'] -old Oh,['if'] -been wrongfully,['hanged'] -wife that,['he'] -an equally,['uncompromising'] -arrest of,|['Horner', 'the']| -do for,|['you', 'my']| -sudden wealth,['so'] -would fly,['at'] -affected There,['was'] -oil and,['heated'] -fishes me,['see'] -wish your,['advice'] -without pa,['knowing'] -a candle,|['Then', 'in']| -in business,|['for', 'a']| -fragment in,['the'] -gale and,['the'] -social stride,['had'] -away to,|['you', 'consult', 'Paddington', 'his', 'your', 'Frisco', 'the', 'some']| -tales was,['a'] -that bed,['was'] -slim with,['dark'] -shop You,['see'] -through at,['the'] -the principal,|['room', 'London', 'points', 'things']| -this fashion,|['', 'said']| -have dishonoured,['me'] -yet a,['saucer'] -|yet," said|,['I'] -this noised,['abroad'] -carry that,['feeling'] -bored or,['to'] -shall approach,['this'] -a basin,['to'] -yet I,|['believe', 'am', 'question', 'had', 'need', 'know', 'in', 'knew', 'could']| -there fell,['a'] -certainly be,|['you', 'there.']| -keep it,['only'] -notice of,|['such', 'it']| -soda and,['a'] -beyond myself,['Crime'] -even as,|['I', 'science', 'mine']| -powers to,['determine'] -quarters of,['the'] -you lived,['a'] -sin than,['does'] -possibly have,|['come', 'been', 'concealed']| -you would,|['have', 'just', 'go', 'do', 'not', 'call', 'guess', 'agree', 'wish', 'I', 'slip', 'kindly', 'like', 'be', 'really', 'understand', 'never', 'facilitate']| -shop the,['Coburg'] -my years,['nor'] -boxes which,['have'] -be described,['She'] -ever done,|['yet', 'In']| -youth asked,['Sherlock'] -job in,['my'] -gain that,['by'] -deposit and,['that'] -our foreman,['and'] -the literature,['of'] -baffled his,['analytical'] -table Then,['my'] -really done,['very'] -have neither,['of'] -join a,['Sunday-school'] -which shall,['be'] -Besides she,['is'] -worn through,['at'] -hollow in,['the'] -collar nor,['necktie'] -caught up,|['an', 'a']| -before for,['it'] -wearisome journey,['and'] -told me,|['that', 'I', 'and', 'You', 'to', 'of', 'some', 'all', 'by', 'how', 'in']| -calling so,['late'] -George's house,['managed'] -dropped his,|['gloves', 'goose']| -ventilator The,['sight'] -a barmaid,['in'] -few governesses,['in'] -ivory miniature,['and'] -wedding-ring upon,['the'] -there another,['with'] -arrived so,['I'] -character nobleman,['swung'] -household he,['murmured'] -hair grew,['low'] -who our,['client'] -collapse I,['suppose'] -cannot escape,['and'] -Rucastle then,['I'] -hand so.,['That'] -that lay,['upon'] -wrist and,|['pushed', 'the', 'braced', 'I']| -principal room,['while'] -the tunes,['which'] -misses me,['so'] -drove one,['of'] -says I,['but'] -throw you,['to'] -Holmes looked,['deeply'] -from cause,['to'] -Square is,['serious'] -wishes that,['she'] -You don't,['comply'] -trace some,['geese'] -much annoyance,['upon'] -and asked,|['me', 'several', 'about']| -discover that,['there'] -soul At,['such'] -this time,|['I', 'yes,', 'Instead', 'the']| -your practice,['if'] -rose from,|['his', 'my']| -the tattered,['object'] -a clean-cut,['boyish'] -I asks,['says'] -his excitement,['it'] -22nd inst.,['abstracted'] -in high,['spirits'] -any emotion,['akin'] -surprise the,|['three', 'question']| -became entangled,['with'] -fowls for,['the'] -life are,['very'] -very thick,['and'] -in is,['on'] -ran swiftly,|['so', 'across']| -in it,|['It', 'crowded', 'after', 'had', 'which', 'what', 'and', 'But', 'You', 'decline', 'I', 'of', 'for', 'He', 'was', 'but']| -fatal but,['we'] -Street once,['more'] -of keeping,['her'] -King Edward,['Street'] -of which,|['I', 'his', 'a', 'Mr', 'he', 'ended', 'was', 'were', 'the', 'would', 'my']| -I cared,['to'] -in in,|['the', 'height', 'safety']| -gave to,['that'] -represented the,['difference'] -his knowledge,['and'] -you verify,['them'] -all traces,|['were', 'of']| -said Mister,['Sherlock'] -do now,['that'] -somewhere where,['no'] -turned to,|['lead', 'the', 'speak', 'water', 'his', 'me']| -railway cases,['were'] -A husband's,['cruelty'] -lamp on,['the'] -fee and,['what'] -door passed,['down'] -if she,|['were', 'could', 'died', 'had']| -Arthur my,['own'] -paper-mills. Ha,['ha'] -eyes For,['many'] -He's forty-one,['years'] -Clair through,['the'] -and left,|['us', 'a', 'the', 'her']| -us could,['hardly'] -should very,['much'] -in having,|['an', 'every']| -clearly not,['only'] -twenty-five minutes,|['to', 'past']| -which closed,['the'] -porter was,['on'] -other Frank,['and'] -penetrating dark,['eyes'] -son had,|['returned', 'no']| -task more,['difficult'] -someone who,|['has', 'had']| -his every,['mood'] -either of,|['the', 'us']| -him Just,['tell'] -They come,['they'] -to But,['I'] -conundrums friend,['was'] -face sloping,['down'] -tackle the,['facts'] -sleep and,['so'] -you leave,|['you', 'it']| -degrees he,['made'] -most refreshingly,['unusual'] -should according,['to'] -not alone,['A'] -THE NOBLE,['BACHELOR'] -into the,|['texture', 'room', 'bedroom', 'church', 'streets', 'house', 'crowd', 'street', 'sitting-room', 'drawing-room', 'very', 'cellar', 'office', 'city', 'chair', 'habit', 'dull', 'fire', 'bargain', 'case', 'nearest', 'open', 'glade', 'clutches', 'air', 'meadow', 'pool', 'whole', 'long', 'brass', 'greasy', 'river', 'pockets', 'apartment', 'bright', 'lock', 'papers', 'Thames', 'same', 'frosty', 'darkness', 'cab', 'goose', 'back', 'manifold', 'corridor', 'chamber', 'crackling', 'fireplace', 'massive', 'whitewashed', 'inner', 'silence', 'pit', 'iron', 'water', 'secret', 'carriage', 'hall', 'gloom', 'garden', 'station', 'hands', 'greatest', 'pew', 'breakfast-room', 'bag', 'breast', 'Park', 'most', 'easy-chair', 'right', 'stable', 'dining-room', 'matter', 'glass', 'armchair', 'snow', 'advertisement', 'little', 'moonshine', 'shadow', 'quarters', 'arms', 'empty', 'affair', 'character']| -carried my,['takings'] -shouts of,['some'] -terribly agitated,['He'] -upstairs where,['we'] -the deadliest,['snake'] -carry our,['researches'] -carry out,|['my', 'that']| -You'll know,['all'] -to fetch,['the'] -of suburban,['villas'] -large practice,['In'] -trousers and,['shirt'] -firm upon,['this'] -years penal,['servitude'] -Holmes ,[''] -probable that,|['when', 'I', 'no', 'he', 'the']| -I stay,['at'] -wharves Between,['the'] -successive heirs,['were'] -starting a,['chase'] -man's body,['is'] -be terribly,['anxious'] -of bread,['and'] -tender and,['quiet'] -waistcoat But,['he'] -his claws,['upon'] -he glancing,['into'] -be rich,['men'] -stealthily open,['the'] -Bridge Between,['a'] -without your,['having'] -engagement when,['my'] -everything You,['fail'] -both my,|['hat', 'friend']| -immensely obliged,['to'] -thousand details,['which'] -Hosmer again,['As'] -side-table took,['it'] -Frank if,['I'] -So tall,['was'] -sinister way,['I'] -with terror,['her'] -and shrugged,['his'] -feather in,['a'] -then walk,['to'] -matter was,|['so', 'perfectly', 'angry', 'serious', 'nearly']| -his own,|['delicate', 'high-power', 'establishment', 'keen', 'hands', 'little', 'eyes', 'arrest', 'statement', 'inner', 'and', 'brother', 'thoughts', 'strength', 'As', 'save', 'said', 'before', 'request', 'family']| -me always,['to'] -suddenly snapped,['and'] -successful banking,['business'] -little whim,['Heh?'] -ensue if,['any'] -rpertoire and,['which'] -true some,['blood-stains'] -even knew,['that'] -Down the,['centre'] -Miss Sutherland,|['question', 'has', 'to', 'I']| -Lane on,['her'] -of campaign,['Godfrey'] -her marriage,['would'] -complex story,['was'] -great hurry,['shouted'] -lip and,|['a', 'the']| -one dreadful,['shriek'] -dare to,|['conceive', 'meddle']| -|mind," said|,['Holmes'] -the shock,['And'] -Well the,['temptation'] -like whipcord,['in'] -all save,['the'] -refused him,['I'] -rule when,['I'] -mail-boat which,['brought'] -extraordinary energy,|['in', 'The']| -matter shortly,['to'] -he thought,|['of', 'best']| -the turf,['until'] -myself Ha,['I'] -you'll be,['into'] -press set,['fire'] -to buy,|['so', 'their', 'the']| -a picture,|['does', 'of']| -Crewe Dr,['Roylott'] -frightened! I,['panted'] -trousers was,['standing'] -lane now,['stable'] -At eleven,["o'clock"] -being terribly,['agitated'] -a brisk,['tug'] -lecture me,['upon'] -But to-day,['being'] -someone with,['me'] -retained until,['this'] -two By,['degrees'] -grasp it,['there'] -having ever,|['recovered', 'seen', 'consented']| -hardly imagine,['a'] -great a,|['contrast', 'length']| -was troubled,['by'] -his keen,|['incisive', 'questioning', 'and']| -may add,|['a', 'that']| -and test-tubes,['with'] -dreadfully still,['in'] -all just,['as'] -Looking over,['his'] -the inhabited,['wing'] -shutters for,['the'] -the public,|['press', 'prints', 'the']| -rooms up,['there'] -He waved,['his'] -wore those,['boots'] -suddenly dashed,['open'] -hopeless attempt,['at'] -not go none,['are'] -should proceed,['to'] -lady with,['such'] -not selfishness,['or'] -no man,|['and', 'on']| -him Very,['likely'] -a gentleman,|['walks', 'who', 'sprang', 'called', 'named', 'Neville', 'seated', 'waiting', 'staying', 'in', 'by', 'down']| -very heart,['Not'] -it said,|['a', 'Holmes', 'he', 'I', 'on', 'the', 'Do']| -bag from,['under'] -happened you,['have'] -bent downward,['his'] -limbs as,['a'] -strange disappearance,['of'] -jest in,['his'] -Aloysius Doran,|['Esq.', 'Two', 'the', 'at', 'in']| -your circle,['of'] -fire asked,['Bradstreet'] -few nights,['I'] -understand who,['is'] -sister's voice,['I'] -legs As,['he'] -I look,['at'] -humdrum routine,['of'] -deadliest enemy,['I'] -freckled like,['a'] -sir? said,['I'] -early days,['of'] -are sound,|['in', 'and']| -and through,['a'] -wife was,|['on', 'not', 'standing', 'twenty', 'the']| -me some,['weeks'] -sobbed upon,['her'] -age is,['a'] -sun Down,['the'] -Tiptoes tiptoes,['Square'] -legs towards,['the'] -City All,['day'] -gentleman in,|['place', 'the']| -who? I,['would'] -well continued,['my'] -the ring,['I'] -being suspected,['There'] -find something,['to'] -to little,['Edward'] -heartily No,['sir'] -down placed,['my'] -peaceful beauty,['of'] -trifling a,['sum'] -should wish,['to'] -Wilton carpet,['in'] -come so,|['we', 'suddenly']| -marriage market,['for'] -the unconscious,['man'] -pushed as,['far'] -simple You,['of'] -jump in,['his'] -looking over,|['the', 'my']| -more terrible,['than'] -a steep,['flight'] -enemy?" one,['of'] -cannot undertake,['to'] -wages it,['was'] -magnificent specimen,['of'] -I tell,|['her', 'you', 'him']| -evening said,['Mr'] -whom McCarthy,['expected'] -powers in,['the'] -from side,['to'] -its repulsive,['ugliness'] -want your,|['help', 'co-operation', 'opinion']| -room what,|['I', 'do']| -was well-nigh,['certain'] -remained for,['three'] -them go,['at'] -that time a,['deduction'] -and go,|['together', 'to']| -1s. lunch,['2s'] -his failing,['had'] -and paced,|['up', 'about']| -brother your,['father'] -dejected but,['we'] -at last,|['as', 'after', 'flung', 'he', 'that', 'It', 'How', 'hear', 'and', 'There', 'pointing', 'my', 'I', 'before', 'successful', 'saturated', 'pa', 'on', "banker's", 'with', 'having', 'however', 'all']| -whatever happened,['I'] -favour and,['you'] -Trincomalee and,['finally'] -something just,['a'] -pouring from,['my'] -banged and,['from'] -would only,|['change', 'have']| -bizarre without,['being'] -week. the,['work?'] -highway and,['there'] -story My,|['father', 'friend']| -panoply she,['peeped'] -but that,|['he', 'the', 'was', 'of', "didn't"]| -of Florida,['for'] -scene of,|['the', 'action', 'uproar', 'this']| -are badly,['wanted'] -written to,|['me', 'him']| -you John,['said'] -is confined,['to'] -stood in,|['the', 'one']| -murder of,['his'] -be less,|['private', 'than']| -hand on,['either'] -shoes With,['these'] -can't say,['what'] -in Jackson's,['army'] -bed struck,['a'] -putting myself,['in'] -permanent impression,['upon'] -and loudly,['as'] -drawn to,['it'] -result The,['chimney'] -doors of,['the'] -would respond,['to'] -we rushed,['into'] -doors on,['each'] -lady coloured,['deeply'] -to typewrite,['them'] -letters back,['so.'] -gone against,['my'] -do so,|['I', 'you', 'much', 'as', 'Watson', 'now,', 'want', 'matter', 'did', 'Of', 'and']| -chapter and,['then'] -manner had,['shaken'] -reasonable I,['told'] -appeared with,['a'] -clue Then,['I'] -hour or,|['more', 'so']| -I surveyed,['this'] -pack at,['once'] -and confided,['it'] -hands I,|['should', 'rather', 'shall', 'undid']| -not commonly,['become'] -descends into,['the'] -grasped one,['fact'] -hour of,|['the', 'her']| -compasses drawing,['a'] -present case,['is'] -Kindly hand,['me'] -to tackle,|['facts', 'the']| -woman appeared,['with'] -Street cells,['does'] -hands a,['little'] -roots heavens!",['I'] -shortly and,['yet'] -and waiting,['for'] -all Hold,['it'] -is peculiarly,['strong'] -too far,['for'] -I soon,|['found', 'managed', 'devised', 'had']| -of gear,['If'] -the earliest,['risers'] -brought some,['traces'] -to control,['am'] -stone steps,['which'] -had long,['been'] -dying from,['a'] -face me,['introduce'] -having letters,['from'] -hands softly,['together'] -child one dear,['little'] -possible bearing,['upon'] -your consideration,['Miss'] -friend rose,|['and', 'lazily', 'now']| -texture of,['the'] -about for,['the'] -little better,['repair'] -Lancaster Gate,|['which', 'where']| -|possible so,|,['much'] -never so,|['truly', 'much']| -took professional,['chambers'] -be consulted,['And'] -been perpetrated,['in'] -English paper,['at'] -my first,|['inquiries', 'duty', 'impression', 'real']| -imitate my,["companion's"] -Roylott of,['Stoke'] -followed on,['down'] -and quick,['march'] -Every good,['stone'] -you thieves,['Spies'] -up. looked,['surprised'] -what have,|['you', 'I']| -only now,['that'] -our throats,['Outside'] -articles with,['two'] -my writings,['And'] -cannot possibly,['leave'] -energy All,['over'] -however may,['open'] -it Now,|['for', 'what']| -practical jokes,['and'] -for Streatham,['together'] -Listen to,['this'] -may I,['ask'] -lips and,|['glancing', 'the']| -knees seemed,['to'] -hand me,|['down', 'over', 'my']| -followed the,|['winding', 'sign']| -one when,['she'] -Then there,|['was', 'is', 'are']| -its true,['value'] -approach for,['he'] -nearly every,['evening'] -an ounce,['of'] -twisted poker,['into'] -Frank so,['at'] -know them,['But'] -excellent lining,['If'] -and light,['heel'] -know then,|['that', 'grass']| -obvious that,|['the', 'you', 'no', 'he']| -turned over,|['upon', 'a', 'the']| -to step,|['into.', 'in', 'out', 'up']| -little commands,['my'] -at about,['11:15.'] -their whereabouts,['firemen'] -out ready,['for'] -that help,['you'] -of all,|['that', 'we', 'our', 'knowledge', 'others', 'I', 'the', 'those', 'these', 'details']| -the stone-flagged,['passage'] -implies as,['you'] -simpler You,['say'] -curious chance,['you'] -be up,['so'] -prisoner passionately,['I'] -Aberdeen Shipping,['Company'] -great widespread,['whitewashed'] -tell the,|['truth" he', 'truth']| -Garden. was,['there'] -and becomes,['the'] -our way,|['over', 'downstairs', 'a', 'among', 'home', 'to', 'in']| -It's hard,['to'] -recognised as,['Peter'] -the bush,['and'] -cripple him,['to'] -to Turner,['should'] -Jones from,['the'] -not help,|['laughing', 'me', 'commenting', 'overhearing', 'suspecting', 'remarking']| -origin then?",['searched'] -my body,['in'] -guilty parties,['thank'] -the greyish,['colour'] -remark upon,['short'] -given its,['name'] -shall either,['confirm'] -behind a,|['sliding', 'tiny', 'tree', 'curtain', 'small']| -neither collar,['nor'] -my wooing,['and'] -he stretched,['out'] -hands in,|['his', 'the', 'her']| -apology to,|['me', 'that']| -coldly grasped,['that'] -of beauties,['A'] -accept it,['I'] -|then, madam|,['I'] -carried a,|['broad-brimmed', 'black']| -friend's arm,['in'] -hands it,['might'] -can know,['nothing'] -believe however,['that'] -husband a,['very'] -asked Sherlock,['Holmes'] -raising money,['to'] -a vitriol-throwing,['a'] -art it,['is'] -these days,|['on', 'of']| -again presently,['said'] -serious trouble,['and'] -Street Post,['Office'] -as much,|['information', 'when', 'said', 'for', 'as', 'individuality', 'sense', 'knowledge', 'Do', 'How', 'a', 'in', 'depends']| -meadow Lestrade,['and'] -pavement always,['means'] -my lodgings,['and'] -John said,['my'] -skylight which,['let'] -of loans,['where'] -bird it,['proved'] -duties? it,['is'] -it now,|['he', 'said']| -it not,|['a', 'strike', 'been', 'only', 'as', 'for', 'that', 'absolutely', 'obvious', 'possible', 'extraordinary']| -of supplementing,['before'] -attics which,['was'] -corners with,['three'] -a girl,|['of', 'Turner']| -more dreadful,['record'] -wandered about,['the'] -to chin,['and'] -am armed,['is'] -go slowly,['through'] -there been,['women'] -five minutes,|['tweed-suited', 'afterwards', 'was', 'The']| -proof with,['which'] -myself up,|['entirely', 'and']| -boots I,|["didn't", 'think']| -and scenery,['perfect'] -rests upon,['their'] -the endless,['succession'] -need to,|['detain', 'be']| -smear of,['ink'] -a case,|['of', 'as', 'upon', 'and']| -himself and,|['rubbed', 'earn', 'stretched', 'his', 'towards', 'swinging', 'lit']| -tale to,['the'] -upon their,|['past', 'mission', 'track']| -homesteads always,['fill'] -This strange,['wild'] -assertion that,['she'] -disconnected I,['fear'] -wings the,['windows'] -He placed,['his'] -delicate and,['finely'] -McCarthy for,['all'] -matters The,['photograph'] -shall you,['be'] -as had,['been'] -or stopping,['the'] -last echoes,['of'] -apparelled but,['had'] -chin in,['some'] -but perhaps,['it'] -Omne ignotum,['pro'] -of everyday,['life'] -the sombre,['thinker'] -had happened,|['but', 'and', 'Do']| -improving his,['mind'] -over those,['papers'] -come again,['whenever'] -flight of,|['winding', 'steps']| -power by,['telling'] -complain of,|['sir', 'I']| -forehead three,['times'] -comforted her,['by'] -a listless,['way'] -transpired the,['Countess'] -half-mad to,['think'] -quietly with,['everything'] -me where,|['you', 'it', 'she']| -rubber think,['you'] -a year,|['but', 'in', 'with', 'so', 'ago', 'and', 'Besides', 'when']| -stable lane,|['So', 'now', 'She', 'This', 'His', 'a']| -your client ,['mind'] -yet quite,['clear'] -own arrest,['or'] -drop in,['from'] -jet of,['steam'] -thing to,|['do', 'have']| -as he,|['entered', 'could', 'turned', 'reached', 'lay', 'was', 'noticed', 'came', 'released', 'held', 'would', 'has', 'threw', 'had', 'passed', 'remarks', 'sat', 'paced', 'knew', 'His', 'took', 'ordered', 'is', 'finished', 'leaned', 'spoke', 'did', 'folded', 'walked', 'swept', 'said', 'looked']| -man is,|['young', 'a', 'aware']| -church door,|['however', 'he']| -man it,|['is', 'was']| -interest They,['are'] -object which,['had'] -man in,|['London', 'some', 'the', 'a']| -limbs came,['staggering'] -were compelled,['to'] -sitting-room in,['his'] -we go,|['farther', 'What']| -certain arguments,['metallic'] -or fresh,['fresh'] -long Now,['her'] -director and,['personally'] -week I,|['began', 'went', 'was']| -the Ku,['Klux'] -lady? his,['voice'] -open upon,['the'] -ejaculation caused,['me'] -Serpentine-mews to,['a'] -had risen,|['out', 'from', 'and']| -was set,|['out', 'on']| -cab within,['two'] -Look at,['the'] -|Bradstreet, how|,['are'] -means was,['a'] -is she,['to'] -ashen white,['while'] -yet see,['any'] -had spoken,['to'] -high but,['it'] -disturbed you,|['believe,']| -you let,['me'] -ladies. manageress,['had'] -police appeared,['certainly'] -his natural,|['manner', 'habit']| -and wedding,['you'] -innocent aspect,['Here'] -flying westward,['at'] -London which,['charge'] -lines of,|['dingy', 'villas', 'dun-coloured']| -the flaring,['stalls'] -such narratives,['its'] -all into,['a'] -necessitate very,['prompt'] -us me,['and'] -story he,['was'] -and again,|['to', 'I']| -doubts which,['may'] -gathered from,['a'] -dreadful position,['in'] -strip which,['is'] -pence every,['week'] -remains Mrs,['Toller'] -carriage but,['my'] -dreams and,|['was', 'sensations']| -a wire,|['This', 'I']| -return We,['were'] -his had,['the'] -lose a,['minute'] -loudly protesting,['to'] -|matter, from|,['what'] -this matter,|['are', 'which', 'Holmes', 'was', 'is', 'over', 'I', 'probed', 'really', 'or', 'as', 'like', 'than']| -my attempt,['to'] -his hat,|['I', 'and', 'no,', 'you', 'Also', 'in', 'actually', 'pulled', 'drawn']| -different directions,|['and', 'until']| -side-whiskers and,['moustache'] -taken the,|['printed', 'place']| -door behind,|['me', 'him']| -good pawnbroker,['is'] -confessed neither,['fascinating'] -arm back,['into'] -on there,['said'] -summer than,['for'] -warm over,['such'] -are found never,['Mary'] -neat hedges,['stretching'] -|all Roylott,|,['you'] -borrowed my,['money'] -made inquiries,['as'] -evening to,['his'] -company of,|['people', 'the']| -better classes,['of'] -problem I,['rang'] -hand Now,["I'll"] -already regretted,['having'] -red In,['spite'] -presently to,['my'] -second half,['of'] -Put the,['papers'] -completed by,['a'] -went as,|['well', 'fast']| -the roofs,['and'] -way sir!",['said'] -careful to,['the'] -his sitting-room,['in'] -in all,|['his', 'your', 'its', 'the', 'this']| -say Watson,['what'] -awake but,['it'] -deserved your,['warmest'] -tangible cause,['And'] -the court,['to'] -like burnished,['metal'] -will end,['in'] -a permanent,['impression'] -my very,|['great', 'soul', 'heart']| -boat Sherlock,['Holmes'] -bearing assured,['He'] -lives in,['the'] -Every shade,['of'] -brought together,['by'] -but he,|['was', 'pushed', 'would', 'has', 'is', "wouldn't", 'never', 'almost', 'had', 'looked', 'passed', 'first', 'pointed', 'half', 'assures', 'still', 'plunged', 'always', 'slept', 'swept']| -doing there?,['he'] -hard it,['was'] -advertisement which,['will'] -easily rest,['you'] -horrify me,|['sponged', 'the']| -off once,['more'] -brought her,|['and', 'over']| -keenest interest,['in'] -wondering lazily,['who'] -stand erect,['when'] -enters port,['said'] -What would,['he'] -horse into,['the'] -ever heard,|['of', 'my', 'anyone', 'Lord']| -Station and,['that'] -is Vincent,['Spaulding'] -perched himself,|['upon', 'cross-legged']| -the newspapers,|['he', 'but']| -post a,['letter'] -thought over,|['the', 'it']| -advertised and,['I'] -remained forever,['a'] -becoming ungovernable,['I'] -Mary They,['have'] -signal said,['Holmes'] -what this,|['young', 'new']| -exclude them,['when'] -have endeavoured,['in'] -Cannon Street,['every'] -protruding through,['the'] -of trifles,['height'] -still shook,['my'] -sofa placed,['a'] -boy all,['might'] -Harrow Now,['we'] -Presently she,['emerged'] -short interview,['but'] -Watson let,['us'] -weigh very,['heavily'] -judgment and,['discretion'] -smell of,|['hot', 'hydrochloric', 'the', 'burning', 'drink']| -victory in,['the'] -ran away,['and'] -that radius,['so'] -mission You,['see'] -proposed that,['we'] -groan of,['disappointment'] -the Arnsworth,['Castle'] -the guidance,['of'] -huffed Which,['is'] -property under,['his'] -to complain,['of'] -loophole some,['flaw'] -velvet lay,['the'] -continuously into,['the'] -and ill gentlemen,['ostlers'] -quick eye,|['took', 'for']| -hour How,['long'] -terribly anxious,['I'] -Now carry,['out'] -hide the,['discoloured'] -something grey,['in'] -sitting with,['a'] -both hat,['and'] -elbows upon,|['the', 'his']| -bear If,['on'] -which sparkled,['upon'] -Gladstone bag,|['Come', 'as']| -whether to,|['attempt', 'claim']| -pleasant to,|['have', 'me']| -ground Then,['here'] -stepmother As,['the'] -small dog,['lash'] -a remarkable,|['man', 'brilliant']| -in Aberdeen,['some'] -tugged at,|['me', 'the']| -to theorize,['before'] -we can't,|['have', 'all']| -too delicate,['for'] -sprung from,['his'] -not extraordinary,['Puzzle'] -a remarkably,['handsome'] -is anything,|['very', 'else', 'in']| -but which,|['I', 'have']| -business been,['attended'] -to Boscombe,['Pool'] -wouldn't frighten,['Kate poor'] -sinister result,['for'] -I deduce,['it'] -our dinner,['into'] -see? He,['was'] -district and,['there'] -an innocent,|['man', 'human']| -had divined,['that'] -you There,['is'] -black lines,['while'] -|apparition name,|,['sir'] -of order,['and'] -there jutted,['out'] -been far,['too'] -little from,['the'] -front three,['fire-engines'] -back next,['day'] -from turning,['towards'] -hardly wander,['so."'] -King to-morrow,['and'] -next I've,['been'] -old chest,['of'] -possibly other,['large'] -suggestive detail,['which'] -pokers into,['knots'] -faint right,['there'] -minutes or,|['it', 'so']| -ears As,['you'] -hand Majesty,['has'] -The pressure,['of'] -for both,['of'] -minutes of,|['his', 'returning']| -trousers a,['not'] -metropolis and,['I'] -there during,['those'] -by our,['noble'] -could help,|['it', 'me']| -momentary With,['a'] -vague feeling,['of'] -be very,|['much', 'glad', 'happy', 'gracious']| -please sir,['march'] -have every,|['possible', 'reason', 'cause']| -prevent our,['children'] -her fresh,['young'] -Openshaw's steps,['will'] -I rather,|['imprudently', 'think']| -I received,|['a', 'an', 'this']| -happiness gently,['waving'] -hurling them,['at'] -message threw,['it'] -a well-known,['agency'] -man? said,['he'] -chivalrous view,['however'] -had stated,['in'] -forgive me,|['for', 'You']| -the honourable,['title'] -Agra treasure,['he'] -us that,|['the', 'I']| -our investigation,['however'] -so dreadfully,['still'] -the fifty,['guineas'] -cry Cooee!,['before'] -my father took,['it'] -might take,|['an', 'in']| -Adler herself,['in'] -found my,|['plans', 'father', 'attention', 'acquaintance', 'thoughts']| -right must,['be'] -she left,|['him', 'me']| -with eager,['eyes'] -thumped vigorously,['upon'] -ever reached,['us'] -across at,|['me', 'my', 'his']| -servants There,['are'] -up for,|['dead', 'the', 'he', 'ourselves', 'me']| -her figure,['outlined'] -up our,['trap'] -the interview,['between'] -preach to,['you'] -found me,|['to-night', 'to-night and']| -part I,['should'] -her voice,['downstairs'] -I parted,['from'] -not hurt,['by'] -the Continent,['Sherlock'] -where we,|['can', 'found', 'hired', 'are', 'were', 'compress', 'shall']| -a coloured,['shirt'] -awaited us,['upon'] -Baker with,['a'] -steel poker,['and'] -house Arthur,['who'] -invent a,|['cause', 'lie']| -our hearts,['and'] -sound nor,['motion'] -sum? I,['asked'] -doctor?" have,['you'] -an account,['of'] -sound not,['even'] -floor no,['use'] -murder was,['done'] -at four,["o'clock"] -went against,['him'] -plucked back,['by'] -helpless worms,['I'] -through two,['scattered'] -and drop,['a'] -back in,|['deep', 'the', 'his', 'a', 'one']| -father though,['it'] -had taken,|['a', 'place', 'in', 'it']| -The rooms,['were'] -He rose,['as'] -cousin however,['there'] -is country,['bred'] -friend Lestrade,['held'] -certificates I,['fail'] -with Flora,['Millar'] -noiselessly closed,['the'] -at us,['I'] -ushered in,['a'] -injured wrist,['He'] -take great,['liberties'] -drawers in,['the'] -a deep,|['harsh', 'game', 'black', 'slumber', 'impression']| -possible The,['table'] -his strength,|['of', 'At', 'upon']| -leg I,|['should', 'could']| -Square too,['quite'] -the child's,['amusement'] -that his,|['ears', 'brilliant', 'handwriting', 'arrest', 'passion', 'nervous', 'son', 'life', 'father', 'lad', 'face', 'whole', 'data', 'wife', 'hair', 'hat', 'explanation', 'daughter', 'relatives', 'marriage', 'lateness', 'master', 'only']| -seen that,['her'] -public press,['an'] -|2,000 napoleons|,['packed'] -sleep in,['the'] -opium-smoking to,['cocaine'] -about this,|['little', 'time', 'whistle', 'room', 'business', 'matter']| -quite what,['to'] -not suffer,['from'] -more tangible,['cause'] -delicate pink,['is'] -tip had,['been'] -hands all,['the'] -VALLEY MYSTERY,['were'] -back all,|['the', 'that']| -since although,['it'] -custody A,['search'] -reply was,['typewritten'] -box official,['detective'] -owe something,['Find'] -its legal,['sense'] -|madam," said|,['Holmes'] -of wheels,|['It', 'and']| -see know,['me'] -Simon and,['his'] -the stone-work,['had'] -stillness that,['we'] -so; at,['the'] -Bohemia was,['also'] -not encourage,['visitors'] -observe anything,['very'] -as assistant,['there'] -the vacant,['chair'] -rubbing his,|['eyes', 'hands']| -done and,['I'] -companions but,['I'] -begin another,['investigation'] -the criminal,|['then', 'how', 'news']| -McCarthy old,['man'] -loosened and,['I'] -would convulse,['the'] -2 pounds,|['a', 'I']| -clearing the,['matter'] -falls into,['the'] -your heart,['of'] -far more,['daring'] -rattle of,|['wheels', 'running', 'the']| -building the,['whole'] -Frisco Frank,["wouldn't"] -She spoke,['a'] -lining If,['this'] -that we,|['shall', 'both', 'started', 'have', 'arranged', 'cannot', 'met', 'took', 'should', 'may', 'could', 'are', 'turn', 'need', 'were', 'might', 'heard', 'had', 'seemed', 'found', 'just', 'would']| -picture of,|['ruin', 'offended']| -from that,|["woman's", 'have', 'are', 'side', 'day', 'time']| -all do,['not'] -category You,['know'] -the gleam,['of'] -brewer by,['whom'] -police I,|['said', 'shall', 'have']| -for Irene,['Adler'] -assumed a,['much'] -retained by,['the'] -of so,|['dense', 'tangled', 'transparent']| -whip but,['before'] -man would,|['have', 'not', 'at']| -deeper heavier,['in-breath'] -without having,|['ever', 'recovered', 'carried']| -the will,['of'] -faced that,['which'] -miss your,['case'] -drove to,|['the', 'our', 'Leatherhead', 'Paddington', 'some']| -the wild,|['scream', 'talk']| -counsellor and,['having'] -silent and,|['wait', 'buried', 'lifeless', 'she']| -speciously enough,['Suppose'] -lodge to,['say'] -series of,|['events', 'cases', 'incidents', 'articles', 'disgraceful', 'tales', 'the']| -does she,['propose'] -of events,|['is', 'I', 'working', 'and', 'Mr', 'it', 'than', 'which', 'we', 'may', 'leading', 'as']| -yourself to,|['your', 'the']| -to base,['my'] -from France,['he'] -By it,['he'] -our connection,['and'] -yourself up,['from'] -roof suppressing,['only'] -country But,['if'] -every characteristic,['of'] -a gigantic,|['ball', 'one', 'column']| -best to,|['make', 'do']| -very obvious,|['to', 'The']| -dream has,['been'] -the doctors,|['quarter', 'in']| -it rapidly,['formed'] -quiet nature,['Besides'] -bricks Now,['by'] -was gazing,|['at', 'up']| -the seal,['and'] -bulldog chin,['and'] -a large,|['E', 'G', 'woman', 'curling', 'sheet', 'villa', 'blue', 'number', 'man', 'practice', 'iron', 'scale', 'sum', 'bureau', 'square', 'animal', 'black']| -I pushed,['forward'] -and displayed,['upon'] -some of,|['the', 'these', 'them']| -see her,['husband'] -brown gaiters,|['over', 'and']| -her society,['and'] -which could,|['account', 'be', 'suggest', 'tell', 'incriminate', 'have', 'not']| -some on,['the'] -carriage-building depot,['That'] -perhaps be,['able'] -lips As,['a'] -but we,|['wedged', 'must', 'provide', 'had', 'went', 'have', 'emptied', 'can', 'believe']| -if evil,['came'] -light which,|['was', 'shone']| -upon this,|['gang', 'same', 'metal', 'as', 'point']| -think Watson,|['that', 'said', 'Could']| -a California,['millionaire'] -make of,|['that', 'it', 'a']| -double-edged weapon,['now'] -these little,|['problems', 'records']| -Boswell And,['this'] -ever think,['that'] -knees were,['what'] -trough and,['when'] -gentleman said,['Mrs'] -me And,['so'] -War and,['it'] -reporting and,['sat'] -for we,|['have', 'may', 'must', 'lurched', 'are']| -lost his,|['Christmas', 'self-respect', 'wife']| -not injuring,['her'] -really!" he,['cried'] -very considerable,['fortune'] -so. And,['she'] -stepfather comes,['back'] -far grasped,['this'] -to straighten,['it'] -fashion suits,['you'] -what makes,['me'] -three fire-engines,['were'] -purpose The,['walls'] -crowd of,|['spectators', 'mendicants']| -had just,|['quitted', 'transferred', 'left', 'a', 'finished', 'observed']| -two glowing,['eyes'] -would inform,['me'] -higher and,['louder'] -would rather,|['have', 'walk', 'die', 'not']| -think? I,['asked'] -bad hat,['and'] -pounds and,['for'] -press You,['must'] -buried among,['his'] -hand recalled,['Holmes'] -trifle You'd,['be'] -was full,['of'] -probably never,['will'] -highest in,['England'] -the e,['and'] -a fortnight,['of'] -last pointing,['to'] -be made,|['upon', 'out', 'of']| -him driven,['through'] -woodcock I,['believe'] -be frightened,|['All', 'said']| -all along,['has'] -little want,['and'] -confidential servant,['little'] -my brains,['to'] -your room,|['and', 'Miss', 'on', 'slipped']| -was returning,['from'] -set my,['hand'] -important to,['raise'] -duty as,['to'] -Round this,['corner'] -you This,|['ring ', 'is', 'case']| -use and,|['the', 'a']| -signal between,|['my', 'you']| -let yourself,['doubt'] -had the,|["lady's", 'real', 'hint', 'quinsy', 'effect', 'carriage', 'natural', 'hardihood', 'appointment', 'letter', 'surest', 'money', 'good', 'pleasure', 'misfortune', 'marriage', 'coronet']| -splendidly Dr,['Roylott'] -the H,['Division'] -remunerative investments,['for'] -knowledge and,['this'] -woman there,['are'] -suspect or,['from'] -mine and,|['to', 'began']| -but above,['all'] -lengthened at,['this'] -The bird,['gave'] -funds as,['upon'] -residing alone,['in'] -month or,['six'] -against my,|['wishes', 'records']| -have! a trouble,['which'] -Baker had,['anything'] -close by,['the'] -present make,['nothing'] -its place,['I'] -stepfather surely,['since'] -has thrown,['him'] -husband not,['more'] -evil came,['upon'] -between them,|['and', 'I', 'but', 'your']| -covered their,['traces'] -none I,['believe'] -to its,|['being', 'coming', 'extreme', 'highest', 'views']| -in was,['an'] -your appearance,['We'] -intimate friends,['would'] -pointing upward,['with'] -finger could,['reach'] -any words,['of'] -maid and,|['of', 'her']| -were he,|['remarked', 'I', 'whose']| -Streatham since,['I'] -devouring energy,['and'] -his said,['the'] -with us,|['We', 'is', 'also', 'then,"', 'until', 'and', 'warmly']| -braved the,['matter'] -concluded the,['examination'] -yours or,['mine'] -on his,|['face', 'business', 'heel', 'track', 'brow', 'overcoat', 'lap', 'boots', 'nose']| -to-night His,['orders'] -these scattered,['houses'] -sense of,|['my', 'grief', 'humour']| -English remember,['your'] -the threat,['and'] -or more,|['the', 'with', 'he', 'down']| -the necessity,['for'] -curled through,['the'] -come Watson,['said'] -violet ink,['She'] -thoughts We,['had'] -this Alice,['a'] -gems out,['of'] -her master,['wore'] -my family,|['this,']| -secretly work,['our'] -is undoubtedly,['my'] -no farther,|['he', 'for']| -of nothing,|['save', 'except', 'but']| -faces and,['one'] -my window,|['I', 'and']| -room thick,['and'] -of wilful,['murder'] -brave as,['a'] -nicely Then,['perhaps'] -fishes scales,['of'] -his desk,|['can', 'and', 'took']| -possession very,['soon'] -The Hague,['last'] -breaking through,['in'] -new foliage,['they'] -villas on,['either'] -gaunt figure,['made'] -ADLER a,['woman oh'] -for felony,['with'] -shriek at,['mankind'] -long a,['chain'] -likely I,|['never', 'have']| -as smiled,['but'] -o'clock when,|['we', 'Sherlock']| -astonishment goose,['Mr'] -daughter who,|['is', 'required', 'has']| -of constabulary,['informing'] -present You,['will'] -task What,['was'] -by four,['large'] -the sort,|['have', 'He', 'at', 'in', 'And', 'was', 'and']| -purpose equally,['well'] -these three,|['gentlemen', 'rooms']| -sent for,|['Then', 'medical']| -which gets,['to'] -before pay-day,['so'] -coronet His,['wicked'] -the control,['of'] -state the,['case'] -of burrowing,['The'] -case was,['told'] -conceive In,['his'] -serenely He,['made'] -lawyer and,['self-poisoner'] -mere detail,['I'] -very sick,['for'] -only half-buttoned,['and'] -kicked from,['here'] -of adventure,['Sherlock'] -now carry,['our'] -yours ,[''] -still carrying,['with'] -the doings,['of'] -considerable excitement,['I'] -it upstairs,['and'] -a trifle,|['more', 'but', 'and', "You'd"]| -might think,|['he', 'as']| -least an,['hour'] -embellish so,['many'] -it Yes,['it'] -brightly in,['the'] -a tissue,['of'] -look thoroughly,['into'] -it Yet,['I'] -the sequel,['was'] -searched the,['Dundee'] -seems made,['his'] -road and,|['we', 'the']| -window will,['open'] -hanging him,['I'] -sweet temper,['to'] -anyone have,['in'] -fingers protruded,['out'] -the bar,['Then'] -all appear,['to'] -the bag,['and'] -the bad,|['hat', 'and']| -suggestive said,['Holmes'] -the kitchen,|['window', 'door', 'rug']| -profession It,['is'] -having heard,["Ryder's"] -go elsewhere,|['no,"']| -I locked,['it'] -count upon,['delay'] -an immediate,['departure'] -interesting This,['looks'] -practice it,['seems'] -may know,['the'] -got his,|['coat-tails', 'leave']| -|day Friday,|,['June'] -select prices,['Eight'] -afternoon I,|['left', 'have', 'waited']| -don't comply,['with'] -perceive also,['that'] -Then here,['are'] -which she,|['would', 'waited', 'values', 'was', 'had', 'found', 'describes', 'used', 'slept', 'held', 'extended', 'closed', 'must', 'has']| -wasted said,['Holmes'] -is over,|['he', 'for', 'and']| -that caught,['the'] -the Paradol,['Chamber'] -jostling each,['other'] -overstrung nerves,['failed'] -upon a,|['matter', 'sheet', 'business', 'chair', 'corner', 'crate', 'Testament', 'handsome', 'heading', 'charge', 'small', 'strong', 'window-sill', 'man', 'scent']| -alone The,|['game-keeper', 'very']| -private diary,['The'] -gentleman down,['from'] -problems have,['you'] -turned his,|['back', 'face']| -satisfied why,['should'] -her yesterday,['said'] -me more,['than'] -adjusted temperament,['was'] -practice in,['London'] -Hence those,['vows'] -man alive,['who'] -had shaken,['me'] -researches into,['the'] -matters. have,['been'] -your shoulders,['By'] -man can,['take'] -unprecedented a,['position'] -county but,['he'] -rooms 8s.,['breakfast'] -sombre thinker,['of'] -set a,['price'] -Faces to,['the'] -night you,|['must', 'can']| -and died,['without'] -horror still,['lay'] -Crown good.,['Your'] -matter Holmes,['hailed'] -bell Doctor,['we'] -only trust,['that'] -farthest east,['of'] -for securing,['the'] -You surprise,['me'] -our funds,['as'] -note is,|['a', 'also']| -note it,['is'] -next instant,['I'] -soon asleep,['am'] -his body,['and'] -he would,|['have', 'see', 'drop', 'not', 'do', 'be', 'think', 'claim', 'come', 'give', 'return', 'take', 'never', 'make', 'spend', 'emerge', 'rush', 'bring', 'go', 'but', 'always']| -the treble,['K'] -and turn,['our'] -how far,['from'] -this particular,['colour'] -begin a,['narrative'] -example you,['have'] -method was,['no'] -I uttered,['the'] -former friend,['and'] -pledged myself,['not'] -and making,|['my', 'a']| -finally been,['called'] -it voraciously,['washing'] -fit you,['very'] -it yet,['am'] -the bright,|['morning', 'semicircle']| -her flight,['Holmes'] -should prolong,['a'] -had influence,['over'] -trees with,['their'] -heard You,['have'] -her resort,['to'] -never tell,['them'] -disappeared and,['even'] -much excited,['without'] -pay it,['the'] -lock key,['was'] -you out,['of'] -him The,|['swing', 'self-reproach', 'other', 'singular', 'boy', 'trap']| -people I,['just'] -advertisement Fleet,['Street'] -variety which,['are'] -to prove,|['their', 'that']| -travelled back,['next'] -Too little,['if'] -villas when,['he'] -leather bag,|['from', 'in']| -points One,['is'] -a promise,|['to', 'of']| -heard his,['wife'] -us That,['will'] -is extremely,['improbable'] -dressing-gown reading,['the'] -yours I,['should'] -little you,['may'] -Where are,|['we', 'the', 'they']| -afternoon stroll,['to'] -not looks,['like'] -cried Who,['would'] -in place,['of'] -thing has,['some'] -discovered and,['the'] -yonder There's,['twenty-six'] -telling you,|['how', 'Mr']| -thing had,['come'] -passed in,['the'] -|League see,|,['Watson'] -two may,['have'] -history of,['the'] -poisoning case,['In'] -Proosia for,['all'] -of shabbily,['dressed'] -whether the,|['present', 'cellar', 'spotted', 'objections', 'place', 'man']| -major imploring,['me'] -knew my,|['secret', 'man']| -some danger,['or'] -that even,|['if', 'here', 'the', 'now', 'he', 'in']| -have made,|['myself', 'He', 'an', 'a', 'your', 'you', 'no', 'two', 'him', 'my']| -box and,|['looked', 'the']| -wind still,['screamed'] -had Miss,['Hunter'] -that ever,|['was', 'lived']| -again. a,['very'] -presume that,|['this', 'it', 'they', 'I']| -flurried than,['before'] -threw my,['arms'] -ladyship's waiting-maid,['Well'] -feature of,['interest'] -we want,['must'] -her dowry,['will'] -now fled,['together'] -a useless,['expense'] -very first,|['day', 'key']| -frosty air,['Remember'] -whenever he,['saw'] -too does,['his'] -Jack of,['Ballarat'] -Living in,['London quite'] -wearing were,['not'] -listened Let,['me'] -present expenses,['King'] -of resolution,['pushed'] -the proper,['authorities'] -the earth one,['of'] -corridor As,['I'] -much you,['are'] -more bizarre,['a'] -Holmes before,|['you', 'his']| -obviously of,['vital'] -to effect,|['a', 'which']| -most lay,['silent'] -the description,|['of', 'tallied']| -group of,|['shabbily', 'ancient', 'trees']| -had tossed,['it'] -touch that,['coronet?'] -and smoking,['his'] -deserting Miss,['Sutherland'] -and good,['If'] -human beings,['all'] -Hotel Hosmer,['came'] -really don't,['know'] -stagger and,['carrying'] -partially cleared,['up'] -conclusive what?",['dear'] -up though,['of'] -RED-HEADED LEAGUE,|['had', 'On', '']| -him the,|['sympathy', 'detective', 'stone', 'compliments', 'coronet']| -could open,['Behind'] -at night,|['She', 'until', 'probably', 'why?"', 'the', 'your', 'and', 'for', 'to']| -continued our,['strange'] -But he'll,['be'] -you can,|['understand', 'get', 'easily', 'see', 'read', 'do', 'speak', 'spare', 'catch', 'imagine', 'have', 'enjoy', 'he', 'hardly', 'infer', 'always', 'ask', 'know', 'but', 'jump', 'This', 'most', 'readily', 'for', 'call']| -Holmes rather,['sternly'] -me extremely,['said'] -above us,['My'] -are many,|['inquiries', 'noble']| -hands remarked,['our'] -her jewel-box,['Now'] -and results,['all'] -of agony,['with'] -some pains,['said'] -leaving them,['was'] -Hampshire border,['he'] -qualities which,['my'] -McCarthy I,|['promise', 'wish']| -defined The,['sewing-machine'] -book and,['do'] -times lately,['No'] -making me,['a'] -nickel and,['of'] -dressing-room Petrified,['with'] -recess behind,['a'] -and flattening,['it'] -a close,|['thing', 'examination']| -other people,|['in', 'who', "don't"]| -stars were,['shining'] -of directors,['and'] -step into,['the'] -motives were,['innocent'] -the killed,['I'] -hadn't been,|['for', 'at']| -your skill,|['in', 'can']| -two rooms,|['at', 'It']| -words and,|['almost', 'say', 'then']| -making my,['excuses'] -sank into,['a'] -story I,['told'] -death He,['sprang'] -Unless they,['are'] -They put,['in'] -once to,|['rush', 'the', 'break', 'let']| -heavens The,['trees'] -ascended to,['your'] -very stealthily,['along'] -that James,["didn't"] -remarkable I,['feared'] -found waiting,['for'] -which a,|['child', 'newcomer', 'cold', 'man', 'singular', 'knife']| -body would,['not'] -towards it,|['I', 'and', 'In']| -amiss with,['him'] -up any,['cried'] -point out,['to'] -we left,['Baker'] -point our,['research'] -The discovery,['that'] -neither Miss,['Stoner'] -in deserting,['Miss'] -which I,|['merely', 'have', 'knew', 'ever', 'must', 'suspected', 'should', 'took', 'sit', 'crouched', 'shall', 'come', 'served', 'can', 'had', 'gave', 'could', 'retain', 'see', 'was', 'beg', 'wished', 'used', 'failed', 'carried', 'perceive', 'sold', 'would', 'am', 'met', 'hold', 'will', 'promise', 'visited', 'usually', 'thought', 'do', 'pushed', 'reached', 'saw', 'endeavoured', 'frequently', 'found', 'speak']| -with dirt,['that'] -though so,['he'] -the footmen,['declared'] -save the,|['two', 'single', 'five', 'loss', 'wandering', 'bell-rope', 'occasional', 'small', 'father']| -He started,['me'] -true account,['of'] -Philosophy astronomy,['and'] -And no,['later'] -bewilderment at,['my'] -from their,|['traces', 'windows', 'beds']| -for Indian,['animals'] -may recollect,['in'] -on very,|['nicely', 'much']| -had parted,['from'] -are found,['again'] -will win,['in'] -lamp onto,['the'] -a form,|['of', 'have']| -than six,['feet'] -English lawyer,['named'] -Her gloves,['were'] -walking and,['once'] -touching me,['on'] -friends of,|['any', 'last']| -She held,['up'] -object to,['our'] -yourself deprived,['in'] -a zigzag,['of'] -were by,['a'] -a noise,['like'] -cases and,|['I', 'a']| -the introduction,['of'] -his eyes,|['she', 'visitor', 'and', 'once', 'For', 'upon', 'open', 'closed', 'shining', 'to', 'were', 'shone', 'heavy', 'I', 'bent', 'fixed', 'twinkled', 'Yes', 'travelled', 'round', 'cast', 'It', 'as', 'that', 'sunk', 'into']| -and flapped,['off'] -the injunction,['as'] -young chap,['then'] -to drink,['had'] -eyes sunk,['in'] -immediately but,['was'] -full effect,['of'] -that no,|['one', 'apology', 'crime', 'further', 'memoir', 'good', 'man', 'sister']| -death would,|['unfailingly', 'depend']| -hard and,|['much', 'a', 'yesterday']| -conscious of,|['a', 'two']| -being whose,['eyes'] -place we,|['may', 'want']| -our chase,['observed'] -conclusions have,['laid'] -together the,['colonel'] -Holmes lately,['My'] -form curled,['up'] -dared to,['leave'] -unfortunate Your,['wedding'] -Nothing simpler,['You'] -Now lead,['the'] -however before,['we'] -described You,['must'] -such contrast,['to'] -keen nature,['He'] -everyone who,['knows'] -evening light,['glimmered'] -my orders,['to'] -have fled,['from'] -Neither you,['nor'] -Ross with,['John'] -of 4,['pounds'] -faint among,['the'] -lid was,['printed'] -to change,|['my', 'not', 'her']| -And now,|['Mr', 'Doctor', 'it', 'we', 'here', 'let', 'you', 'I', 'Watson', 'Miss', 'Lord']| -silence during,['which'] -six shillings,['made'] -concise But,['will'] -stated I,['was'] -story now,['in'] -visits Was,['she'] -lit in,['one'] -threw itself,['upon'] -pen-knife in,['his'] -so tangled,['a'] -lit it,['he'] -said when,['the'] -not treated,['her'] -of a,|['Hercules', 'single', 'Hebrew', 'staff-commander', 'doubt', 'situation', 'groom', 'cabman', 'man', 'best', 'carriage', 'little', 'delicate', 'bit', 'few', 'very', 'morning', 'sheet', 'day', 'picture', 'detective', 'light', 'lantern', 'revolver', 'brickish', 'pince-nez', 'good', 'hundred', 'four-wheeler', 'disguise the', 'mile', 'healthy', 'guilty', 'barmaid', 'proposal', 'great', 'place', 'grey', 'cigar', 'number', 'furniture', 'most', 'brave', 'date', 'ship', 'society', 'young', 'boat', 'wave', 'noble', 'cave', 'flickering', 'local', 'better', 'large', 'deep', 'book', 'woman', 'dense', 'small', 'low', 'beggar', 'goose', 'certain', 'weakening', 'previous', 'fowl', 'windfall', 'catastrophe', 'door', 'return', 'nervous', 'dissolute', 'terrified', 'drunkard', 'match', 'band', 'crab', 'technical', 'headache', 'candle', 'breath', 'night-bird', 'loathsome', 'snake', 'painful', 'problem', 'German', 'train', 'hydraulic', 'passing', 'gravel-drive', 'harmonium', 'frightened', 'driving-rod', 'narrow', 'dull', 'California', 'sudden', 'hotel', 'youth', 'bee', 'monarch', 'minister', 'bouquet', 'business', 'quiet', 'broad', 'lover', 'booted', 'loafer', 'cheery', 'succession', 'lady', 'child', 'rather', 'particular', 'mind', 'tortured', "drunkard's", 'house', 'peculiar', 'chapter', 'sentence', 'chain', 'vague', "demon 'I'll", 'long', 'hound', 'husband']| -door to,['announce'] -chamber door,['without'] -gaslight a,['tallish'] -business address,['asking'] -deduction which,['was'] -scissors-grinder with,['his'] -my dressing-room,|['now', 'door']| -During that,['time'] -with three,|['of', 'gems', 'long']| -and worn,['He'] -grizzled round,['the'] -won't forgive,['me'] -already in,|['the', 'debt']| -gentleman with,|['fiery', 'a', 'the']| -prefers wearing,['a'] -or perhaps,['that'] -Victoria he,['said'] -of K,['K'] -into Farrington,['Street'] -of I,['have'] -into bricks,['so'] -up would,['suit'] -seven months,['after'] -tobacconist the,['little'] -wooden berths,['like'] -much You,['would'] -its solution,['is'] -price thousand,['pounds'] -of manner,['he'] -hired a,['trap'] -a disagreeable,['task'] -hint from,['Holmes'] -are yourself,['aware'] -Everybody about,['here'] -whole life,|['but', 'appears']| -next occasion,['in'] -lids drooping,['and'] -hands "I have,['felt'] -|way least,"|,['said'] -others and,|['he', 'some', 'in']| -you address,|['me', 'your']| -Horsham lawyer.,['did'] -this girl,['Miss'] -Duke of,|['Cassel-Felstein', 'Balmoral.', 'Balmoral']| -end where,['to'] -a solicitor,['and'] -are good,['enough'] -one singular,['exception'] -enough said,|['Lestrade', 'he']| -wrote to,|['George', 'father', 'the']| -fire Watson,['have'] -at Lestrade's,['opinion'] -crate upon,['which'] -But there,|['is', 'I']| -very sorry,['if'] -black ceiling,['was'] -made which,['will'] -States and,['his'] -the western,['border'] -his soul,['At'] -fancy to,['me'] -so what,['does'] -ready-handed criminal,['agent'] -pounds My,['God'] -Hold it,['up'] -light a,['lantern'] -man were,['a'] -Oh sir,|['he', 'do']| -may rest,|['in', 'here', 'assured']| -bride gave,['me'] -most solemn,['oaths'] -invested it,['and'] -light I,|['heard', 'saw']| -the business,|['is', 'has', 'up', 'for', 'no', 'of', 'to', 'part', 'but', 'there', 'You']| -purpose of,|['consulting', 'examination']| -sitting-room There,['is'] -robbery what,['is'] -you one,['or'] -with blood,['from'] -a means,['My'] -lost sight,['of'] -baits In,['the'] -to realise,|['as', 'the']| -disturbance at,['Mr'] -to town,|['about', 'in', 'and', 'before']| -believe that,|['my', 'we', 'a', 'he', 'I', 'the', 'Mrs', 'you', 'it', 'that', 'here', 'she']| -neatly dressed,|['has', 'and', 'with']| -ominous What,['was'] -my mission,['was'] -tags of,['his'] -run short,['and'] -accepted explanation,['He'] -eyes could,['not'] -slipping in,['I'] -never seen,|['or', 'my', 'so']| -His brain,['is'] -interesting features,['that'] -linoleum Our,['own'] -devil knows,['best'] -always the,['way'] -so homely,['a'] -stay with,['us'] -much importance,['in'] -him him.",['then?"'] -breaking the,|['law', 'window']| -cave I,['found'] -degrees Mr,['Duncan'] -was nearly,|['fifteen', 'four', 'ten', 'one']| -any warning,['or'] -that whether,['she'] -instantly became,['riveted'] -immediately behind,['and'] -to refer,['them'] -mysterious business,['a'] -health it,['seemed'] -the lowest,['and'] -of going,|['to', 'Watson']| -excuse me,|['for', 'said', 'if']| -the ostlers,['a'] -pockets with,['coppers'] -Europe Holmes,['slowly'] -excuse my,|['saying', 'calling', 'beginning', 'troubling']| -crop had,['been'] -be confessed,|['neither', 'however']| -speech and,['the'] -can take,['that'] -plate I,['began'] -would seize,['the'] -difficult sounds,['a'] -half-fainting upon,['the'] -Your duty,['would'] -keep you,|['out', 'waiting']| -advance to,['my'] -business came,['to'] -passed out,|['he', 'through', 'I']| -jewellery which,['he'] -whims so,['far'] -window fasteners,['which'] -many inquiries,['which'] -sewn upon,['it'] -be coming,['upon'] -character has,['never'] -country-side but,['an'] -woman's instinct,|['perhaps', 'which']| -vows to,['her'] -their way,|['to', 'into']| -is most,|['unlikely', 'refreshingly', 'entertaining', 'important']| -come here,|['As', 'as']| -it meant,['I'] -how there,['a'] -climbed the,['stile'] -which improved,['by'] -upon them,|['close', 'It', 'There']| -afforded a,['finer'] -a dog,['who'] -woman should,['be'] -and close-fitting,['cloth'] -night's work,|['suit', 'but']| -case which,['he'] -an actor,['I'] -America they,['look'] -|least,' said|,['he'] -place been,['reduced'] -Every day,['from'] -two-edged thing,['but'] -Backwater's place,['near'] -therefore the,['deceased'] -you consider,|['that', 'the']| -satisfy myself,['as'] -remains to,|['be', 'you']| -struggled frantically,['and'] -and astuteness,['represented'] -laughing Only,['one'] -whole figure,['swaying'] -sadly at,['my'] -helping a,['boy'] -suicide letter,['arrived'] -communicative during,['the'] -modest residence,['of'] -point It,['is'] -a result,['I'] -It looked,['as'] -point In,['the'] -Who could,['come'] -companion to,['read'] -had drunk,['himself'] -some sort,|['and', 'or', 'of']| -where four,['lines'] -to visit,|['the', 'an']| -tut I,['have'] -I You,['are'] -Just a,['trifle'] -you. And,['your'] -ferret-like man,['furtive'] -strange in,['its'] -narrowed the,['field'] -red paint,['in'] -For God's,['sake'] -cried this,['is'] -colonies in,['a'] -up then,['is'] -pressing danger,['which'] -before Sherlock,['Holmes'] -wants and,['there'] -while he,|['wore', 'has', 'lived', 'could', 'can', 'writhed']| -to-day at,['Gravesend'] -baboon We,['had'] -Her bed,['this'] -and spread,['of'] -Tennessee Louisiana,['the'] -coat His,['boots'] -know It,['was'] -nothing except,|['of', 'the']| -neck With,['much'] -played in,['this'] -alone He,['is'] -us very,['clearly'] -some distance,['to'] -|gracious Watson,"|,['said'] -moving about,['in'] -my violence,['a'] -in California,['and'] -Our client,['appeared'] -landed proprietor,['in'] -home Obviously,['something'] -and crime,['records'] -set aside,['altogether'] -doubt you,|['have', 'will', 'think']| -single room,['a'] -double row,['of'] -dirty but,['the'] -shouted to,|['the', 'Mr']| -who surrounded,['him'] -be walking,['amid'] -before waiting,['for'] -fattest. says,['she'] -separation case,['and'] -his bundle,['a'] -bearded man,['in'] -have some,|['good', 'lunch', 'business', 'solid', 'strong', 'remembrance', 'of', 'wine', 'account', 'company']| -Coroner That,['is'] -and though,|['we', 'my', 'he']| -his who,['forgot'] -We waited,|['long', 'all']| -lying on,|['the', 'my']| -as freely,['as'] -history There,['have'] -more interesting,|['than', 'This']| -spent police,['have'] -drive you,['think'] -interest to,|['the', 'me', 'buy']| -back Then,['when'] -curious way,['of'] -dressed has,['come'] -of terror,['when'] -one morning,|['my', 'to', 'in']| -carry it,|['about', 'away']| -proof I,['heard'] -the clouds,|['However', 'Holmes', 'lighten']| -temperament was,['to'] -lime-cream This,['dust'] -the rush,['of'] -enter With,['a'] -mean took,['an'] -son do,['should'] -Eustace and,['Lady'] -effect upon,['him'] -the gale,|['from', 'there', 'and']| -hill and,['there'] -the stake,['will'] -of revellers,['A'] -very massive,['iron'] -away But,['what'] -a grand,['gift'] -both rushed,['upon'] -one to,|['the', 'me', 'be', 'give', 'turn', 'your', 'Reading', 'advise']| -in dangling,['his'] -he remain,['away'] -even if,|['something', 'it', 'they']| -Mr Henry,['Baker'] -and Dr,['Willows'] -wedding-clothes and,['things'] -even in,|['these', 'the', 'your']| -a hansom,|['cab', 'but', 'and', 'on', 'driving']| -top-hat and,['a'] -do with,|['the', 'much', 'this', 'sundials', 'his', 'it', 'my']| -certainty I,['then'] -buttoned up,['to'] -than from,|['one', 'the']| -refuse the,['most'] -twenty minutes,['was'] -narrative promises,['to'] -be too,|['late', 'limp']| -found nor,['would'] -Spaulding would,['not'] -shall reach,['some'] -have breakfast,['afterwards'] -purchasing one,['as'] -for Briony,['Lodge'] -warn me,['to'] -instinct perhaps,['it'] -form have,['been'] -fellow what,['do'] -dark lack-lustre,['eye'] -written a,|['monograph', 'note', 'little']| -purport to,['come'] -womanly hand,['which'] -fraud though,['what'] -night that,['she'] -looked deeply,['chagrined'] -the ground-floor,['and'] -inexorable face,['in'] -street with,|['Sherlock', 'her']| -dropped my,|['gun', 'bouquet']| -this and,|['I', 'lay', 'written', 'then']| -us where,['the'] -railway accident,['near'] -interfere very,['much'] -lad said,['Holmes'] -typewriter and,|['its', 'I']| -intrusted to,['me'] -bring me,|['along', 'down']| -left leg,['and'] -far forgotten,['his'] -was brown,['rather'] -in possession,['of'] -had screamed,['and'] -into Briony,['Lodge'] -a widower,['and'] -it looks,['this'] -mtier and,['it'] -can leave,['your'] -little smudge,['of'] -early and,['yet'] -So were,['the'] -the hasp,['put'] -of acid,['upon'] -just before,|['we', 'pay-day', 'it']| -neighbour At,['the'] -blood showed,['that'] -Moran and,['perhaps'] -I kissed,['her'] -from whence,|['I', 'she']| -in as,|['well', 'many', 'I']| -great thing,['for'] -in at,|['all', 'the', 'one', 'night']| -son for,['his'] -will cause,['him'] -This incident,['gives'] -explanation was,['a'] -of insensibility,['that'] -fighting against,['his'] -shaking finger,['to'] -no hills,['there'] -in an,|['instant', 'ulster', "enemy's", 'office', 'equally', 'equal', 'attempt', 'advertisement', 'affair', 'angle', 'out-house', 'hour', 'anteroom', 'alternation']| -studies summons,['was'] -shall live,|['a', 'to']| -deduce nothing,['else'] -the distance,|['But', 'followed']| -father but,|['they', 'just', 'still']| -eaten without,['unnecessary'] -offhand fashion,['am'] -the smoke-rocket,['from'] -to-night If,['he'] -arm alone.,['She'] -even Holmes,['ingenuity'] -who writes,['upon'] -had several,['warnings'] -ground I,|['gained', 'sent']| -more human,['What'] -it afterwards,['transpired'] -immediately outside,['the'] -open Behind,['there'] -the tropics,['A'] -and over,['the'] -blowing rushed,['at'] -the object,['of'] -her mind,|['on', 'that', 'She', 'and', 'What', 'for']| -ill and,['he'] -Lascar confederate,['that'] -tenfold what,['I'] -you villain,['you'] -of self-respect,['he'] -two facts,['were'] -room swiftly,['eagerly'] -choked with,['red-headed'] -use a,['trusty'] -the magnificent,['piece'] -carriage Now,['carry'] -occasionally Mr,['Rucastle'] -wishing him,['the'] -dear should,['be'] -lamp but,['nothing'] -the genii,['of'] -it always,['is'] -most only,['provoked'] -cried Here,['are'] -shamefaced laugh,['Shillings'] -run over,['the'] -mixture which,['I'] -two with,['my'] -she sat,['for'] -she saw,|['at', 'the', 'that', 'you']| -on which,|['he', 'I', 'you', 'several', 'we', 'she']| -Male costume,['is'] -over I,['went'] -such words,['as'] -out together,['beneath'] -to supply,|['them', 'their']| -had sunk,['and'] -is married,['remarked'] -vile that,['the'] -now and,|['do', 'not', 'if', 'what', 'drop', 'in', 'you', 'glanced', 'I', 'why', 'paced']| -left England,['to'] -and asking,['your'] -earn the,['money'] -pretty diversity,['of'] -the Boscombe,|['Pool', 'Valley']| -London by,['the'] -red Her,['jacket'] -Holmes stretching,['his'] -over a,|['sheet', 'glass', 'cup', 'new', 'parapet', 'fess', 'retort']| -dated from,|['the', 'Grosvenor', 'Montague']| -not have,|['written', 'made', 'thought', 'talked', 'been', 'let', 'his', 'carried', 'them', 'given', 'missed', 'spoken', 'me', 'a']| -in body,['and'] -inexplicable chain,['of'] -already For,['my'] -visitor wear,['a'] -he threatened,['to'] -chronicler still,['more'] -agrees with,['you'] -companion sat,|['in', 'open-eyed']| -sat moodily,['at'] -child's disposition,['is'] -lives upon,['the'] -cried throwing,|['back', 'his']| -not as,|['remarkable', 'a']| -not at,['once'] -of future,['annoyance'] -great issues,['that'] -partner I,['must'] -common transition,['from'] -out on,|['the', 'such', 'each']| -nervous tension,|['within', 'in']| -gathering up,['what'] -precisely for,['that'] -summer sun,['shining'] -out of,|['his', 'the', 'work', 'my', 'that', 'her', 'five', 'it', 'this', 'evil', 'mere', 'Upper', 'training', 'court', 'geese', 'their', 'gear', 'order', 'danger', 'breath', 'bed', 'these']| -he as,['he'] -betrayed myself,['I'] -mother's and,['for'] -he at,|['my', 'me', 'last']| -not an,|['English', 'action', 'idea', 'instant']| -was urging,['his'] -me Already,['I'] -soul Besides,['it'] -some most,['important'] -large staples,['It'] -than well perhaps,['even'] -all red-headed,['men'] -details of,['his'] -an attempt,|['might', 'to']| -have when,['I'] -little funny,['about'] -know. is,['to'] -least said,['Holmes'] -he released,['me'] -the fuller's-earth,['was'] -or tie,['I'] -study Mr,['Windibank'] -than might,['at'] -obstinate man,['I'] -missed it,['for'] -is Mortimer's,['the'] -widespread whitewashed,['building'] -and bizarre,|['But', 'without']| -and keep,['up'] -a beauty,["isn't"] -Horsham then,['your'] -instruction seated,['myself'] -she gave,|['a', 'such']| -that Perhaps,['on'] -my wrist,|['in', 'and']| -porch which,['gaped'] -my back,|['towards', 'At']| -really puzzling,['just'] -aversion to,|['the', 'her']| -shaking him,['by'] -shaking his,|['fists', 'hunting-crop', 'sides']| -any creature,['weaker'] -he stuffs,['all'] -make a,|['mystery', 'mistake', 'note', 'case', 'loop', 'scene']| -yours When,['shall'] -help him,['to'] -man took,['from'] -my lamp,['beating'] -paying to,['you'] -man's lap,['and'] -to chronicle,|['one', 'and']| -he treated,['the'] -unusually large,['ones'] -Sunday-school treat,['But'] -conditions So,['far'] -the 11:15,['do'] -he murmured,|['That', 'when']| -Swiftly and,['silently'] -remember right,|['sent', 'were', 'who']| -it again,|['Deeply', 'Then']| -sinister business,['enough'] -cap which,|['lies', 'he']| -page Mr.,['Holmes'] -he remained,|['there', 'for']| -his wife,|['which', 'he', 'received', 'has', 'Remember', 'can', 'is', 'and', 'Toller', 'find', 'tell', 'I']| -shoulder you,['leave'] -sallow cheeks,|['and', 'He']| -had hurriedly,['ransacked'] -Berkshire village,['There'] -and bent,|['it', 'his']| -high-nosed and,['pale'] -in exchange,['twopence'] -during this,['inquiry'] -been pierced,['so'] -two things,|['about', 'which']| -heart but,['I'] -placed it,|['when', 'in']| -readily imagine,['Mr'] -it be,|['I', 'once', 'Might', 'possible', 'that', 'who']| -his pale,['face'] -fly jealousy,['is'] -point but,['he'] -it by,|['the', 'presuming']| -blame you,['for'] -his thick,['red'] -contraction had,['turned'] -chamber then,['at'] -injured man,|['Irene', 'And']| -Road My,['sister'] -Sign of,['Four'] -Spaulding I,['should'] -from himself,['and'] -went into,|['the', 'town']| -long thin,|['fingers', 'sad-faced', 'form', 'hands', 'cane', 'legs']| -ventilator into,['another'] -flaming beryl,['Boots'] -Might I,|['beg', 'not', 'ask']| -You'll come,['with'] -dozen paces,['off'] -sitting beside,['him'] -strong box,['now'] -stone of,['the'] -too great,['a'] -of murder,|['There', 'is']| -his conjecture,['however'] -also have,['been'] -windows on,['either'] -called my,['cock-and-bull'] -adventure Sherlock,['Holmes'] -morning between,['nine'] -curious I,['became'] -work he,['remarked'] -bent it,['into'] -work appears,['to'] -dreadful shriek,['They'] -Winchester I,['should'] -someone or,['something'] -that their,|['sailing-ship', 'land']| -of secrecy,|['was', 'which']| -glade It,['was'] -first train,['to'] -only remains,|['therefore', 'Mrs']| -can at,|['present', 'least']| -and oily,['clay'] -Adler of,['dubious'] -doubted for,['a'] -sloping down,['to'] -Adler so;,['but'] -while others,['have'] -a singular,|['man', 'document', 'contrast', 'case', 'chance', 'sight']| -door My,['attention'] -bad compliment,['when'] -seen him,|['get', 'hurts', 'driven']| -gentleman at,|['No', 'this']| -Adler or,['when'] -ventilator when,['suddenly'] -good-sized square,['house'] -two months,|['ago', 'older']| -reasoning from,['cause'] -Doctor of,['the'] -the track,|['which', 'until']| -looking personally,['into'] -machine. is,['not'] -not now,['I'] -his existence,|['In', 'there']| -the mines,['so;'] -them on,['promising'] -elementary but,['I'] -missing And,['you'] -is that,|['double', 'there', 'two', 'the', 'compared', 'which', 'this', 'I', 'you', 'all', 'we', 'has']| -glasses against,['the'] -Watson our,['little'] -A groan,['of'] -and carried,['him'] -inspector They,['have'] -main chamber,['of'] -find Did,['she'] -Oakshott for,['it'] -clean-shaven with,['a'] -water and,|['sit', 'the']| -pay ten,['would'] -for daring,['I'] -Having once,['made'] -to wash,['linen'] -ostlers a,['hand'] -counsel Old,['Turner'] -of town,['chemistry'] -not escort,['her'] -in question,|['occurred', 'he']| -marriage but,['within'] -then lounged,['down'] -tax his,['powers'] -dressing-room of,['the'] -his bluff,['boisterous'] -on three,|['English', 'sides']| -down under,['them'] -was weighted,['by'] -of thread,['no'] -been possible,['to'] -Mansions written,['with'] -my nerves,|['worked', 'were']| -downstairs As,['I'] -us He,['has'] -of small,['streets'] -English at,['me'] -begged me,['to'] -down by,|['one', 'two']| -best policy,['to'] -late than,['never'] -from across,['the'] -strange bird,['I'] -trivial I,['cannot'] -the far,['side'] -attentions to,['the'] -cunning devils,['he'] -something out,['of'] -of resource,['and'] -stood as,['good'] -stood at,['the'] -heavy with,|['the', 'snow']| -ambition the,['drowsiness'] -same trouble,['he'] -brain is,['as'] -singularly lucid,['come'] -ended in,|['a', 'the']| -papers were,['burned'] -facts to,['suit'] -the rapid,['deductions'] -my attention,|['while', 'to', 'wander', 'since', 'was']| -would cripple,['him'] -Reading I,|['was', 'had']| -was overwhelmed,['by'] -any furniture,['above'] -the hall,|['to', 'door', 'looking', 'so', 'behind', 'which', 'onto', 'table', 'beneath', 'window', 'when']| -sitting here,['or'] -Let the,|['weight', 'whole', 'matter']| -St. Simon,|['glanced', 'then', 'said', 'shrugged', 'shook', 'sank', 'had']| -twelve or,['so'] -wild night,['The'] -put away,['in'] -door slammed,|['heavily', 'overhead']| -business myself,['In'] -having charming,['manners'] -laurel bushes,['there'] -his shelves,['Eglow'] -along has,['been'] -man seemed,['surprised'] -cried impatiently,['I'] -last man,['to'] -station from,['time'] -bring home,|['discovery,']| -a gaol,['rose'] -replied Holmes,['so'] -window rose,['as'] -take any,|['steps', 'action']| -could towards,['me'] -expression was,['weary'] -ploughed into,['a'] -have asked,|['had', 'I']| -was visited,['with'] -or should,['not'] -realise that,['the'] -the empire,['said'] -wreaths Our,['gas'] -Police-Constable Cook,['of'] -his long,|['nervous', 'thin', 'grey', 'sinewy', 'arm', 'shining', 'residence', 'pipe']| -uttered and,['of'] -an endless,['labyrinth'] -what others,['overlook'] -marry my,['daughter'] -villages up,['there'] -Good-day to,['you'] -of wealth,['he'] -Pall Mall,['St'] -him names,['at'] -became bad,['for'] -but silence,['that'] -epistle says,['four'] -to pass,|['through', 'the']| -as mine,|['are', 'has', 'if']| -breakfast This,['is'] -truth he,['said'] -and soothing,['his'] -the crackling,['fire'] -mistress allowed,['her'] -equally well,|['certainly,']| -peeled off,['under'] -sovereign from,['his'] -only daughter,['of'] -left that,['is'] -returned Those,['are'] -not ask,|['for', 'it']| -great scandal,['threatened'] -not prove,['to'] -clever forgery,['to'] -shining with,['a'] -gems Mr,['Holmes'] -names at,['a'] -broken him,['down'] -grow lighter,['as'] -I fell,|['into', 'in']| -formed my,['conclusions'] -Rucastle at,['once'] -street and,|['found', 'I', 'in', 'then']| -by man,['or'] -was actually,['in'] -young lady!' you,['cannot'] -singular tragedy,['of'] -straggling houses,['had'] -a chapter,['and'] -as plain,['as'] -ways so,['that'] -in hard,['work'] -was trying,['to'] -has in,|['some', 'the']| -a staff-commander,['who'] -robbery no,['record'] -air was,['full'] -which awoke,['you'] -forefingers between,['his'] -have heard,|['Clotilde', 'me', 'it', 'some', 'of', 'Mr', 'that', 'so.', 'what', 'all', 'however,', "uncle's", 'something']| -dramatic in,|['its', 'fact']| -discretion must,['be'] -been informed,['that'] -in saying,['that'] -most dear,['should'] -thirty feet,['down'] -nod he,['vanished'] -done to,|['death', 'be', 'a']| -coolest and,['most'] -distinct sound,['of'] -have someone,['to'] -large iron,|['safe', 'trough', 'gates']| -found never Mary,['Your'] -But which,['of'] -She kept,['talking'] -recognised in,['that'] -binding you,['both'] -a reporter,['on'] -are able,['to'] -the occipital,['bone'] -is condemned,['I'] -or other,|['purposes', 'trace', 'about']| -seen young,['McCarthy'] -suggested to,["Clay's"] -drawing-room which,['is'] -his aversion,['to'] -as rather,['against'] -marked with,['every'] -had evidently,|['taken', 'been']| -Road where,['she'] -hasp put,['your'] -his force,['of'] -scent The,['ring'] -sour face,['as'] -Street suppose,['that'] -nothing actionable,['from'] -very often,|['connected', 'for']| -particular He,['shook'] -that suite,['of'] -by another,['loafer'] -Mrs Hudson,|['to', 'has']| -throw and,['will'] -tangled a,['business'] -interjected Holmes,['only'] -St Augustine,['McCauley'] -whole machinery,['of'] -down considerably,['The'] -stand Colonel,['Lysander'] -which slopes,['down'] -little sketch,['of'] -hesitate said,['he'] -throw any,['light'] -us Well,['there'] -looked like,['a'] -blow which,['has'] -the riverside,['landing-stages'] -without her,['In'] -faded laurel-bushes,['made'] -excitement it,['would'] -Ha And,['the'] -closed upon,['it'] -the accused,['as'] -amusing though,['rather'] -ill-trimmed lawn,['and'] -the levers,|['which', 'and', 'drowned']| -presence of,|['a', 'those', 'the', 'one']| -male visitor,['but'] -all dark,['to'] -these gems,['are'] -consulted And,['so'] -dreadful hand,['were'] -the twilight,['and'] -regular footfall,['of'] -his credit,|['at', 'in']| -up out,['of'] -having caused,['some'] -more subsided,['into'] -the pledge,|['was', 'of']| -day to,|['ask', 'this']| -article there,['should'] -it then,|['that', 'took', 'Lee,', 'Has', 'I']| -had no,|['idea', 'difficulty', 'means', 'luck', 'friends', 'hesitation', 'time', 'occupation', 'knowledge', 'cause', 'hat', 'doubt', 'keener', 'great', 'feeling', 'capital', 'just', 'one', 'shoes', 'say']| -prepared It,['appears'] -you fully,['into'] -wines They,['got'] -rain into,['your'] -alone once,['more'] -jeweller's art,['and'] -telling us,['where'] -entangled in,['the'] -be my,['own'] -death My,['evidence'] -bone and,['the'] -even gaunter,['and'] -to secure,|['it', 'the', 'his']| -third chamber,['so'] -was ten,['miles'] -she no,['longer'] -care of,|['yourself', 'her', 'herself']| -the jewel,|['robbery', 'with']| -She is,|['herself', 'the', 'waiting', 'what', 'impetuous volcanic', 'swift', 'an', 'a', 'my', 'four-and-twenty', 'even']| -spread of,['the'] -other words,['that'] -of decrepitude,['and'] -rather simplifies,['matters'] -Moulton you,['would'] -of wood,|['but', 'As']| -little Berkshire,['village'] -has turned,|['all', 'up', 'out', 'her']| -confidence now,['Mr'] -presumption that,|['the', 'Colonel']| -The more,['featureless'] -carved upon,['it'] -experiences sat,['in'] -frame he,['stumbled'] -man as,|['he', 'this', 'Sir', 'a']| -right very,['right'] -man at,['my'] -least ray,['of'] -sum ten,['times'] -may gain,['that'] -air You,['dragged'] -you Let,['the'] -replied our,['visitor'] -a burst,['of'] -must wire,['to'] -of artificial,['knee-caps'] -child is,['concerned'] -should secure,['your'] -easy to,|['get', 'restore', 'tell', 'see']| -in staring,['at'] -advice my,['boy'] -Holmes sprang,|['out', 'from', 'forward']| -distrusted So,['I'] -force of,|['character', 'many']| -He might,['avert'] -way long,['did'] -through in,|['coming', 'green']| -been burgled,['They'] -contents startled,['me'] -his fists,['fiercely'] -us consider,|['the', 'another']| -are that,['she'] -two constables,['at'] -is off,['that'] -Ross A,['lean'] -through it,|['at', 'upon']| -would do,|['as', 'nothing', 'he', 'your', 'you', 'it', 'him']| -through is,['asleep'] -cold supper,|['had', 'began']| -rumours as,['to'] -was suggestive,['So'] -Union Jack,['with'] -horrible crime,['enough'] -breathe freely,['until'] -a possession,['of'] -charming invaders,['Lord'] -house Once,['we'] -ceased ere,['I'] -your jacket,['is'] -narratives its,['effect'] -them He,['was'] -singular business,['Up'] -tail right,['in'] -Neville St. ,['Oh'] -sentence he,['ordered'] -little slit,['of'] -certainly come,['is'] -won't cut,['your'] -little slip,['of'] -go to,|['life', 'it', 'the', 'you', 'bed', 'any', 'little']| -instantly occurred,['to'] -inferences You,['have'] -lodger at,['the'] -the agency,['and'] -worthless or,['else'] -a constable,['entered'] -room for,|['doubt', 'an', 'a', 'those']| -stains which,['had'] -stout man,['with'] -these vagabonds,['leave'] -worth considering,['are'] -laughed his,['eyes'] -considerably over,['the'] -deep attention,['the'] -inheritance You,['will'] -little passage,['in'] -question she,['cried'] -upper-attendant at,['the'] -room often?",['some'] -parallel cuts,['Obviously'] -he enters,['port'] -helps us,['much'] -Rucastle are,['going'] -mind to,|['go', 'control', 'run']| -they exactly,['fitted'] -young McCarthy,|['He', 'If', 'what', 'for', 'I']| -anyone whistle,['in'] -a husband,|['already', 'Her', 'coming']| -once sacrifice,['my'] -eight-and-forty hours,['and'] -incorrigible and,['my'] -friends were,['to'] -noised abroad,['Besides'] -we entered,|['so', 'a', 'madam,"', 'he']| -fact in,|['all', 'the']| -I kept,|['all', 'a']| -what point,|['your', 'upon']| -memory The,['manor-house'] -No crime,['said'] -the larger,|['but', 'and']| -presently Klux,['Klan'] -sideboard Holmes,['glanced'] -any visitors,['if'] -have longed,['to'] -this sum?,['I'] -fact it,['struck'] -fact is,['he'] -me too,|['well', 'and']| -your time,['Watson'] -so you,|['will', 'are', 'missed', "won't"]| -describe it,['I'] -little man,|['was', 'then', 'and', 'stood']| -lest I,['should'] -big cat,['and'] -Street half,['afraid'] -a battered,['billycock'] -doing something,['in'] -fixed upon,|['the', 'me']| -coronet their,['united'] -quite essential absolute,['secrecy'] -Problems may,['be'] -visitor sitting,['down'] -allow himself,['to'] -woman thinks,['that'] -take you,|['away', 'round', 'up']| -there in,|['an', 'twenty', 'January', 'time', 'private', 'silence', 'the']| -the St,|["James's", 'Pancras']| -him stooping,['over'] -his bearing,|['The', 'assured']| -to expect,['company'] -cleaver in,['the'] -he conveniently,['vanished'] -hoping that,['I'] -stands thus,['You'] -finally the,['fact'] -there it,['vanishes'] -mother Then,['Mr'] -there is,|['nothing', 'to', 'no', 'room', 'now', 'the', 'anything', 'if', 'a', 'some', 'really', 'every', 'hardly', 'as', 'any', 'still', 'little', 'good', 'someone', 'at', 'plenty', 'another', 'only', 'but', 'an']| -is amusing,['though'] -incident of,['the'] -of mind,|['and', 'to', 'than']| -Leatherhead thought,['it'] -before said,|['Holmes', 'I', 'Lestrade']| -items which,['I'] -matter I,|['have', 'stood', 'thought', 'may', 'went', 'remarked']| -little breakfast,['with'] -green-grocer who,['brings'] -few and,['simple'] -was weary,|['after', 'and']| -always oppressed,['with'] -A girl,['of'] -sots as,['I'] -pounds is,|['certainly', 'now']| -or when,['he'] -my cock-and-bull,['story'] -affair so,['completely'] -England? have,['heard'] -you two,['will'] -have dropped,['some'] -what that,['surly'] -League. he,['is'] -bar and,['ordered'] -footmarks no,['robbery'] -lock opened,['the'] -see all,|['the', 'these', 'that']| -the pay,|['munificent.', 'is']| -both before,['and'] -the clang,['of'] -power and,['I'] -as pale,['as'] -name what,['for'] -was carried,['out'] -The chances,['are'] -own province,['has'] -and closing,['his'] -eliminated everything,['from'] -haggard and,['unkempt'] -and return,['to'] -quite as,|['much', 'valuable', 'prompt']| -Holmes suavely,|['There', 'that']| -ways he,['has'] -my uncle,|['Ned', 'returned', 'to', 'however', 'burned', 'here']| -a possible,|['supposition', 'solution in']| -to influence,['him'] -am Dr,['Grimesby'] -gather together,['that'] -forward who,['would'] -Chesterfield where,['I'] -way there,|['every', 'does']| -5:15 train,['from'] -disturbance in,|['the', 'my']| -sister returned,['and'] -shake-down. is,['very'] -Serpentine plays,['no'] -disappearance of,|['Openshaw', 'Mr', 'the', 'these']| -afford to,['buy'] -Holmes sternly,['It'] -of Gold,['in'] -sunshine In,['the'] -an accurate,['description'] -prisoner gone,['has'] -and ran,|['in', 'with', 'down', 'thus', 'out']| -liberty Far,['away'] -for many,['years'] -will but,['she'] -than others,['and'] -attend to,|['the', 'Will', 'my']| -good friend,['whose'] -honour to,|['address', 'wish', 'ask', 'bear" he']| -lady loves,['her'] -rocket into,['the'] -father went,['from'] -mean answer,['Holmes'] -have confided,['my'] -dreadful vigil,['I'] -reward my,['profession'] -was throbbing,['painfully'] -places A,['lens'] -how do,['you'] -nature when,['some'] -the number,|['of', 'Next']| -if on,['some'] -one having,['a'] -of March,['1888 I'] -100 pounds,|['down', 'a']| -should become,['the'] -them know,['my'] -passed along,['the'] -so immense,['a'] -departed I,['followed'] -are proof,['positive'] -impatiently at,['his'] -been brushed,['for'] -very fat,['and'] -death in,['that'] -taste than,['Italian'] -very far,|['from', 'in']| -young girl,['is'] -pounds apiece,|['an', 'That', 'Then']| -meet you,['with'] -man strikes,['even'] -three now,['He'] -bow and,['stalked'] -princess Now,['the'] -other occupations.,['you'] -very own,['writing'] -was grizzled,['round'] -Francis Prosper,|['stood,"']| -of doubting,|['did,']| -problem promises,['to'] -conveyed her,['by'] -for north,['said'] -still lay,|['heavy', 'deep', 'as']| -One mistake,['had'] -is equally,|['certain', 'valid']| -cannot as,|['you', 'yet']| -problems help,['me'] -William Crowder,|['a', 'the']| -did so,['and'] -chap then,['hot-blooded'] -myself Bradstreet,['had'] -nicely with,['a'] -I may,|['want', 'trust', 'confess', 'have', 'add', 'sketch', 'be', 'possibly', 'place', 'take', 'arrive', 'say', 'give', 'draw', 'call', 'tell']| -fire Give,['him'] -Clair which,['lay'] -this German,['who'] -golden pince-nez,['to'] -the noble,|['lord', 'houses', 'bachelor']| -lawn and,|['examined', 'vanished']| -coming up,['to'] -have caused,['the'] -ears Suddenly,['to'] -engineer had,['been'] -minutely examined,['my'] -name to,|['be', 'the']| -in couples,['again'] -lameness impression,['of'] -feet and,|['by', 'clutched', 'suddenly', 'ran', 'the']| -the proprietor,|['they', 'a']| -so matter,['is'] -a thief,['Did'] -more featureless,['and'] -touched at,['Pondicherry'] -compelled to,|['listen', 'open', 'eat', 'stop', 'sell']| -little romper,['just'] -his agitation,['Then'] -its outrages,['were'] -dear daughter,['Alice'] -without question,['land'] -gazed about,['him'] -and possibly,['other'] -o'clock I,|['should', 'was']| -and laid,|['it', 'out', 'a', 'some']| -son saw,['that'] -strain no,['longer'] -lateral columns,['of'] -artist had,['brought'] -smiling And,['now'] -that Neville,|['St', 'is']| -cellar There,['was'] -us this,['evening'] -active member,['of'] -late he,['had'] -metal bars,['that'] -was dated,|['at', 'from']| -small deal,['box'] -Holder said,|['Holmes', 'he', 'Sherlock']| -Continental Gazetteer,['He'] -dead cried,['several'] -through was,['a'] -else to,|['enter', 'do', 'think']| -so dramatic,['in'] -the vague,['feeling'] -carrying it,['at'] -too much,|['You', 'to', 'imagination', 'if', 'you', 'not', 'for', 'Let', 'so', 'secrecy', 'responded', 'then']| -to accommodate,['myself'] -theory certainly,['presents'] -Farm I,['had'] -will confine,['my'] -at Briony,['Lodge'] -single fact,['in'] -a visitor,['man'] -brim for,['a'] -impossibility of,['the'] -draught of,['water'] -torn away,['Mr.'] -injustice to,['hesitate'] -short railway,['journey'] -very grave,['face'] -hand With,['a'] -time saw,['that'] -current of,['his'] -inspector with,['a'] -might prove,['useful'] -so many,|['of', 'as', 'in', 'reasons', 'which', 'more', 'pistol']| -before your,|['time', 'own']| -abomination I,['do'] -reached her,|['he', 'yesterday']| -twenty-one years,['are'] -practice had,['steadily'] -his manners,['but'] -Arthur had,['discovered'] -while the,|['deep', 'clergyman', 'footpaths', 'other', 'lady', 'brass', 'inspector', 'marks', 'roof', 'plaster', 'fourth']| -find you,|['cannot', 'there', 'came']| -down glancing,['at'] -From that,['appointment'] -for solution,['during'] -waiting I,|['would', 'shall']| -his dress,|['or', 'presumably', 'it', 'and']| -a distinctly,['Australian'] -known eccentricity,['brought'] -eye which,|['could', 'made']| -get over,['this'] -a doubt,|['upon', 'as', 'that']| -a loud,|['and', 'hubbub']| -mercifully and,['thank'] -steps for the,['house'] -was newly,['come'] -may save,['us'] -and knocked,['It'] -correspondent and,['he'] -accustomed His,['cheeks'] -looked round,|['for', 'and']| -those of,|['Holmes', 'a', 'some']| -particular shade,['of'] -will read,|['it', 'to']| -descending beg,['pardon'] -seized my,|['hair', 'coat']| -ornament A,['frayed'] -seized me,['and'] -shall just,|['treat', 'have', 'be']| -well convinced,['that'] -is stirring,['yet'] -But for,['the'] -small like,['himself'] -own manner,['was'] -fascinating daughter,['of'] -he whispered,|['Have', 'into', 'jerking', 'I']| -had my,|['note', 'rubber', 'purple', 'girl', 'man']| -go in,|['and', 'it', 'for', 'without']| -marriage may,['mean'] -compared with,['the'] -McCauley cleared,['John'] -smiling and,|['the', 'beautiful']| -go if,['a'] -connivance and,['assistance'] -and silent,['man'] -buttons entered,['to'] -Lestrade showed,['us'] -my takings,['I'] -the contrary,|['for', 'my', 'you', 'he', 'said', 'are', 'Watson', 'this', 'your']| -a welcome,['for'] -obtained an,['advance'] -dashing never,['calls'] -nerve in,['a'] -o'clock is,['it'] -his lens,|['not', 'he', 'in']| -wanted so,['much'] -o'clock it,['said'] -most dangerous,['men'] -little clearer,['both'] -have her,['way'] -duly paid,['and'] -across it,|['from', 'It']| -across is,['situated'] -mind is,['made'] -during that,['time.'] -what occurred,['in'] -o'clock in,['the'] -little shabby-genteel,['place'] -I travelled,|['in', 'and']| -been loading,['their'] -you rest,['it'] -much angry,['as'] -About sunset,['however'] -that on,|['the', 'earth ']| -clothes I,["can't"] -almost womanly,['hand'] -that of,|['a', 'the', 'other', 'their', 'Hatherley', 'all', 'late', 'your', 'his', 'Colonel', 'none', 'one']| -can't be,['charged'] -|pair, by|,['the'] -London There,['is'] -pieces he,['squeezed'] -parts melon,['seeds'] -a gentle,|['slope', 'sound']| -but she,|['has', 'was', 'could', 'stood', 'is', 'paused', 'threw', 'glanced']| -of vital,['importance'] -long and,|['very', 'earnestly', 'complex']| -like gravel,['from'] -silence Watson,['said'] -did your,|['mother', 'wife']| -were there,|['before', 'There', 'the']| -him so,|['I', 'that']| -I began,|['to', 'as']| -you. You,['have'] -You do,['not'] -capable of,|['having', 'preserving', 'exercising', 'heroic']| -shouldn't we,['be'] -was waiting,|['for', 'outside']| -no change,['in'] -truly yours,[''] -this planet,['So'] -threw her,['arms'] -during which,|['he', 'Holmes', 'I']| -to Hosmer,|['He', 'Angel']| -very strong,|['language', 'reason', 'piece']| -she stabbed,['with'] -cylinders and,['iron'] -the earth,['into'] -separated he,['driving'] -that had,|['occurred', 'passed', 'been']| -very woman,['afterwards'] -and under,|['the', 'strange']| -have bled,['considerably'] -cried Holmes,|['shoving', 'the', 'with', 'and']| -a middle-sized,['man'] -daughter may,['come'] -to rise,['within'] -we swung,['through'] -confederate Cusack and,['you'] -suspicions were,['all'] -Calhoun leader,['of'] -left ran,['a'] -a scandal,|['in', 'which']| -matters will,['come'] -closed Mary,['and'] -coronet broke,['off'] -the Scotland,['Yard'] -that imbecile,['Lestrade'] -even to,|['you', 'discuss']| -stream of,|['commerce', 'pennies']| -Harris tweed,['trousers'] -hall onto,['the'] -hungrily on,['the'] -place I,|['think', 'was', 'may']| -controlled it,['I'] -persistence of,['Mr'] -place A,['mole'] -Holmes to,|['draw', 'the']| -upon which,|['it', 'I', 'you', 'the', 'a', 'he', 'to', 'we']| -liked so,['long'] -was composed,['of'] -situation which,|['has', 'I']| -its brains,['out'] -advertisement one,['rogue'] -flood of,['light'] -down Threadneedle,['Street'] -were what,['I'] -somewhere I,|['cannot', 'lay']| -you. would,['be'] -highest at,['the'] -never calls,['less'] -these one,['the'] -pavement with,|['his', 'my']| -you before,|['he', 'You', 'I']| -stair some,['going'] -the terrorising,['of'] -injured expression,['upon'] -disposition but,['affectionate'] -were ready,['He'] -destiny Be,['it'] -a prompt,['and'] -mail-boat will,['have'] -drives me,['half-mad'] -night probably,['with'] -hunting-crop swinging,['in'] -detailed to,['us'] -numerous glass-factories,['and'] -am endeavouring,['to'] -then Mr,|['Cocksure', 'Rucastle']| -roughly judge,['from'] -by its,|['ragged', 'contraction']| -tall portly,['and'] -of ground,['and'] -then My,['God'] -me she,['will'] -boarding-schools I,['think'] -mere chance,['that'] -to-night Mrs,['St'] -smoking his,['before-breakfast'] -late one,['night'] -a pair,['of'] -last seen,['in'] -him father,['though'] -part with,|['half', 'poor']| -in last,["Saturday's"] -thing under,['a'] -the connivance,['and'] -round we,['saw'] -nervous hesitating,['fashion'] -dog-cart dashed,['up'] -sprang in,['and'] -quite weary,['Mrs'] -dignity and,['power'] -combined to,['give'] -hat Mr,|['Henry', 'Baker']| -clothes and,|['was', 'it', 'waited']| -the resemblance,['to'] -dig fuller's-earth,['in'] -firmly into,['the'] -promise after,['the'] -heads thrown,['back'] -his signature,|['if', 'which']| -he exchanged,['a'] -is near,['Horsham'] -bride St.,['Simon'] -I continue,['to'] -God goes,['Sherlock'] -call at,|['four', 'the', 'half-past']| -concerts drives,['out'] -lounging up,['and'] -papers diligently,['of'] -yellow light,|['from', 'which', 'twinkling', 'between']| -am descending,['beg'] -narrow belt,['of'] -us what,|['do', 'you', 'is', 'has']| -Pool is,|['a', 'thickly', 'serious']| -occasionally even,['persuaded'] -companion noiselessly,['closed'] -death Monday.",|['perhaps,']| -was made,|['in', 'at']| -whiskers My,['suspicions'] -conviction that,|['when', 'every']| -steam escaping,['continually'] -precious treasure,['which'] -to-day By,['an'] -with my,|['wooing', 'assistant', 'writings', 'nerves', 'stick', 'things', 'hands', 'valise', 'back', 'claim', 'money', 'friend', 'stepfather', 'affairs', 'knowledge', 'new', 'nails', 'hand', 'wedding', 'miserable', 'own', 'lens', 'story', 'linen', 'charge']| -one left,['in'] -is young,|['John', 'and']| -pray go,['on'] -paying 4,['1/2'] -an experience,['which'] -gone Presently,['he'] -face onto,['his'] -sir.' what,['salary'] -well dressed,|['and', 'very']| -resolute she,['was'] -fly at,['his'] -with me,|['He', 'At', 'in', 'that', 'for', 'Air', 'on', 'beg', 'and', 'he', 'now', 'If', "won't", 'as', 'so', 'I', 'a', 'over', 'Watson', 'madam', 'asked']| -great kindness,['to'] -dried orange,['pips'] -a porch,['which'] -muttered exclamation,['in'] -shape of,|['this', 'loans', 'a']| -an afternoon,['stroll'] -it bears,['upon'] -me prick,['up'] -forebodings the,['third'] -and outstanding,['drooping'] -taken advantage,['of'] -theories to,|['suit', 'the']| -thought we,['are'] -I retain,['the'] -police inspector,['suggested'] -the bedroom,|['whence', 'window', 'Thrust', 'and', 'that', 'My', 'flung']| -heavily veiled,['who'] -idea The,['daughter'] -She listened,['for'] -absolutely true,|['then', 'of']| -other idler,['who'] -heavily timbered,['park'] -twinkled like,['an'] -she there,['is'] -grown goose,|['sir,"']| -shook hands,['with'] -I wouldn't,['frighten'] -continued resistance,['of'] -private matter,['but'] -spirits It,['is'] -there must,|['be', 'confine']| -to caution,['The'] -Holmes indeed!,['You'] -hear all,['this'] -Even after,['I'] -scene that,['she'] -rooms open,|['out', 'There']| -ground She,['writhed'] -had ever,|['met', 'heard', 'done', 'seen', 'before', 'been']| -terrified woman,['I'] -what?" dear,['fellow'] -asking your,['advice'] -crust of,['metallic'] -outside well-groomed,['and'] -had even,['smoked'] -ledgers and,['sees'] -it Data,['data'] -bosom of,['his'] -true then,['what'] -introduced to,['me'] -|answered good-bye,|,['Mr'] -your brandy,['and'] -upon evil,['days'] -being right,['across'] -out what,['had'] -can read,|['for', 'it']| -have added,|['opium-smoking', 'to']| -Holmes suddenly,['bent'] -the bond,['I'] -change not,['only'] -to father,['at'] -as right,['as'] -see you,|['have', 'father', 'at', 'said', 'my', 'I', 'trying']| -seeds or,['orange'] -that you,|['have', 'intended', 'had', 'are', 'were', 'share', 'should', "won't", 'inquired', 'might', 'will', 'would', 'alternately', 'wished', 'could', 'may', 'imagine', 'can', 'also', 'bet', 'did', 'keep', 'saw', 'wish', 'disliked', 'do', 'at', 'remarked', 'heard', 'give', 'place', 'went']| -list at,['present'] -days after,['my'] -objection might,['be'] -than five-and-twenty,['I'] -limp to,['get'] -their League,['offices'] -sport and,['were'] -it short,['and'] -cannot call,['to'] -taken in,['Gordon'] -back to,|['the', 'me', 'business', 'our', 'fetch', 'Europe', 'her', 'my', 'his', 'town', 'Lord', 'claim', 'pa', 'that']| -deep chalk-pits,['which'] -two little,|['turns', 'scores', 'dark', 'shining']| -waving his,|['arms', 'long']| -thanking me,['on'] -dull eyes,['had'] -a cool,['and'] -least in,['the'] -10s. while,['he'] -uncovered as,['the'] -an actress,['myself'] -threatened an,['occupant'] -foreign stamp,['lay'] -a sailing-ship,['It'] -then hot-blooded,['and'] -Times every,['day'] -given orders,['that'] -even a,['touch'] -hurrying behind,['us'] -own person,['Yet'] -baffled until,['you'] -plantation at,['the'] -chamber which,['had'] -the investments,['with'] -transferred to,['it'] -to-night and running,['through'] -shouting of,['two'] -and chalk,['mixture'] -the disjecta,['membra'] -Leatherhead from,['whence'] -there every,['man'] -heaven's sake,['tell'] -understood that,|['I', 'there']| -Tuesday he,['was'] -thoroughly earning,['my'] -Holmes remarked,['as'] -been submitted,['to'] -around Aldershot,['the'] -closed my,['door'] -Getting a,['vacancy'] -thing like,|['that', 'a']| -sprig of,['oak-leaves'] -not with,['the'] -army revolver,['in'] -have found,|['that', 'to', 'myself']| -long light,['ladder'] -one the,|['Lone', 'alterations', 'management']| -seen my,["friend's"] -red in,|['his', 'nose']| -having turned,['down'] -of sleeves,['the'] -as Gustave,['Flaubert'] -good gentleman,['Mr'] -engaged for,|['the', 'us']| -it open,['and'] -manner for,['the'] -of evidence,['to'] -fished about,['with'] -coffee I,['waited'] -throw into,['the'] -commence the,['duties'] -rush tumultuously,['in'] -another with,['a'] -hope that,|['I', 'by', 'you', 'this', 'the']| -hours might,['have'] -clatter upon,['the'] -unique things,['are'] -volunteered to,['supply'] -concerning men,['and'] -heavy fur,['boa'] -herself at,|['exactly', 'the']| -the depression,['of'] -its exact,['meaning'] -Now do,['try'] -saturated with,['the'] -definite end,['Boscombe'] -drove in,['silence'] -his extended,['hand'] -were suddenly,['cut'] -Dr Roylott,|['entirely', 'then', 'had', 'has', 'returned']| -Passing down,['the'] -reply to,['any'] -examine its,['crop'] -person but,['of'] -discovering a,['newly'] -is spent,['in'] -had seen,|['little', 'what', 'and', 'him', 'his', 'upon', 'it', 'a', 'in', 'her']| -taking part,['in'] -fiver on,['it'] -gone through,|['in', 'under']| -none would,['be'] -and everyone,['had'] -came upon,|['him', 'the', 'her']| -12s. have,['you'] -noble families,['to'] -The second,['is'] -always ready,['to'] -body and,|['mind', 'of', 'plucked']| -other so,['thick'] -single gentleman,['whose'] -reveal something,['to'] -Having done,|['that', 'this']| -was looking,|['at', 'earnestly']| -and keeps,|['the', 'off']| -six troopers,['and'] -nothing At,|['the', 'least']| -this offhand,['fashion'] -also She,['is'] -her before,['many'] -side Without,['a'] -feel it,|['closing', 'give']| -exposure What,['can'] -interesting object,['which'] -wrong we,|['shall', "can't"]| -the ultimate,['destiny'] -treasure trove,['indeed'] -any rate,|['she', 'that', 'it']| -bag I,['think'] -light shining,['upon'] -no ordinary,|['merit', 'one']| -the private,|['park', 'bar']| -will show,['you'] -man out,|['on', 'of']| -nothing a,['few'] -her and,|['then', 'as', 'threw', 'choked', 'have', 'soon', 'went']| -conclusions before,['ever'] -letter Ha,['there'] -and fronts,['of'] -we climbed,['the'] -lower vault,['of'] -observe it,['at'] -he bade,['me'] -listless watching,['the'] -the neighbouring,|['English', 'landowner', 'fields']| -observe is,['not'] -matter she,['answered'] -his heel,['and'] -displayed upon,['the'] -need not,|['interfere', 'point', 'tell', 'say', 'however']| -acquaintance her,['father'] -observe if,|['you', 'there']| -Valley is,['a'] -was rather,|['unusual', 'severe', 'above']| -the amalgam,['which'] -ground Running,['up'] -many who,|['had', 'will']| -facts But,['the'] -Watson for,|['I', 'something']| -talk as,['to'] -of thumb-nails,['or'] -he raising,['up'] -Winchester this,['morning'] -flushed and,|['struggling', 'darkened']| -for how,['could'] -had regained,['their'] -expressed a,['delight'] -tempted to,['give'] -the ashes,|['of', 'were']| -entirely is,['middle-aged'] -episodes which,['have'] -of McCarthy's,['and'] -vague The,['point'] -I wrote,|['them', 'to']| -sweetheart I,['think'] -the letter,|['he', 'was', 'A', 'came', 'K', 'and', 'my', 'We', 'had', 'Ha', 'the', 'which']| -concert I,['called'] -richer by,['some'] -I hear,|['you', 'the', 'it', 'his', 'now']| -question as,['to'] -lumber-room up,['among'] -methods will,['you'] -refinement and,['delicacy'] -large and,['comfortable'] -Doran San,['Francisco'] -frequently gained,['my'] -possible gasped,['the'] -had laid,|['down', 'beside']| -wish man,['burst'] -dying words,['They'] -wish Mrs.,['Turner'] -every way,|['I', 'in', 'to', 'that', 'much']| -what salary,['do'] -matter all,['day'] -feared we,['can'] -been several,|['in', 'times']| -were gravely,['set'] -descending the,['stairs'] -waves My,['wife'] -agent as,['it'] -coming along,|['wonderfully', 'It']| -interest myself,['in'] -on you,|['what', 'until', 'is']| -excited face,|['here,']| -danger if,['we'] -autumn of,['last'] -baying of,['a'] -widened gradually,['until'] -danger is,['over'] -whereabouts of,['the'] -facts Holmes,['without'] -Holmes buttoning,['up'] -without ever,['having'] -upstairs together,['the'] -first signs,|['that', 'of']| -India he,['married'] -loungers and,['by'] -public slight,['said'] -upon There,['was'] -our bow-window,['looking'] -fronts of,['his'] -had caused,['the'] -hugged his,['recovered'] -the door,|['Then', 'opened', 'Large', 'with', 'when', 'of', 'in', 'He', 'behind', 'as', 'was', 'and', 'fellow,', 'said', 'is', 'I', 'yet', 'had', 'locked', 'open', 'forget', 'flew', 'one', 'saluted', 'out!"', 'window', 'for', 'My', 'to', 'tightly', 'The', 'slammed', 'no', 'myself', 'pushing', 'A', 'he', 'Recently', 'open.', 'lest', 'followed']| -varied by,['silver'] -without even,['giving'] -twice read,['over'] -pray tell,['me'] -all paid,['in'] -they both,['said'] -this crate,['and'] -My own,['complete'] -carried off,['both'] -lower one,['locked'] -so far,|['that', 'forgotten', 'is', 'as', 'grasped']| -gaze My,['mistress'] -rattled up,['to'] -prints nothing,['more'] -an accountant,['living'] -had passed,|['away', 'some', 'during', 'after', 'out', 'the']| -a dull,['pain'] -grounds for,|['the', 'unrepaired', 'hope']| -more natural,['than'] -the vilest,|['murder-trap', 'antecedents']| -putting a,['new'] -have interrupted,['you'] -it Might,['I'] -unreasoning terror,['rose'] -a white,|['splash', 'almost', 'goose']| -the pockets,|['cannot', 'to', 'of']| -three miles,['off'] -cases of,|['greater', 'this']| -unnecessary footmarks,['might'] -might come,|['and', 'by', 'from']| -little souvenir,['from'] -course obvious,['upon'] -or sorry,['to'] -important at,['the'] -The idea,['of'] -sofa said,['Holmes'] -important as,['trifles'] -hearts do,['you'] -to withdraw,['when'] -lie undoubtedly,['in'] -words he,['sketched'] -a pince-nez,['at'] -Barton who,['had'] -great beech,['the'] -times from,['Serpentine-mews'] -understand from,['some'] -little detour,['into'] -expense of,|['six', 'purchasing']| -clothes would,['have'] -and mortar,['its'] -chins pointing,['upward'] -expensive hotels,['There'] -Roylott entirely,['while'] -glasses masked,['the'] -she retorted,['upon'] -himself like,['a'] -some apparent,['surprise'] -paid the,|['man', 'debt']| -individuality of,['the'] -rapidly and,['told'] -crime and,|['occupied', 'the']| -the Camberwell,['poisoning'] -experiences you,['may'] -a lobster,['if'] -diving down,['into'] -changing her,['seat'] -went home,|['with', 'to']| -before which,['were'] -three figures,['Your'] -a trout,['in'] -taste Heavy,['bands'] -summons was,['a'] -graceful figure,['and'] -read with,['intervals'] -prizes which,['have'] -place That,['is'] -plucking at,['my'] -sense would,['suggest'] -and chatted,['with'] -acquaintance upon,['the'] -exceedingly remarkable,['one'] -each candidate,['as'] -and sickness,['came'] -Europe and,|['took', 'America']| -father having,['signalled'] -said just,['now'] -books of,['reference'] -tragedy now,['as'] -been fortunate,['enough'] -complex Consider,['what'] -coaxing He,['overdid'] -shave by,['the'] -it need,['not'] -put this,['piece'] -garden Perhaps,['the'] -do take,|['my', 'a']| -benevolent curiosity,['were'] -sentinel sent,['a'] -clbres and,['sensational'] -remarkable to,['which'] -never beaten,['have'] -companion I,|['am', 'suppose']| -traveller My,['wants'] -another was,['in'] -Pool It,['was'] -where all,|['is', 'traces']| -must act,['man'] -should prefer,|['not', 'to']| -been found,['and'] -gratitude which,['she'] -ulster ready,['I'] -after theories,['and'] -So accustomed,['was'] -who my,["friend's"] -behind One,['singular'] -has actually,['been'] -wrenching at,['it'] -women that,['I'] -discover the,['least'] -guess you,['have'] -knows? Perhaps,['because'] -tapping the,['safe'] -saw In,['this'] -her So,['much'] -in Leadenhall,|['Street and ', 'Street']| -marriage celebrated,['so'] -was always,|['glad', 'oppressed', 'well', 'to', 'less', 'the', 'as']| -opulence which,['was'] -lens and,|['lay', 'a', 'I']| -arms folded,|['his', 'asked']| -one from,['I'] -has got,|['out', 'worse', 'beyond']| -borders into,['Berkshire'] -correct and,['if'] -column The,['latter'] -large animal,['moving'] -the cable,['will'] -too of,['having'] -this John,['Openshaw'] -smearing them,['with'] -readers of,['the'] -been arrested,|['it', 'It']| -out hear,['that'] -a hideous,|['outcry', 'and']| -door his,['keys'] -I'm always,['ready'] -Out there,['fell'] -remarkable talent,['in'] -Local aid,['is'] -made one,['of'] -man's face,|['it', 'peeled']| -overpowering excitement,['and'] -me beg,['that'] -what o'clock,['is'] -stairs I,['saw'] -was conscious,['of'] -is room,['for'] -exceptional violence,['All'] -of Baker,['Street'] -cases were,['seldom'] -city to,['answer'] -entered and,['we'] -ran ran as,['though'] -his suspicious,['looks'] -It would,|['be', 'break', 'of', 'only', 'cease']| -sounds quite,['hollow'] -your bandage,['I'] -small business,['matters'] -met so,|['fascinating', 'utterly']| -to-morrow afternoon,['at'] -write every,['day'] -lady my,['dear'] -a colonel,['When'] -small sliding,['shutter'] -door opened,|['and', 'at']| -my inspection,['Our'] -hair too,['as'] -he knew,|['who', 'that', 'was', 'nothing', 'so']| -his blow,['fell'] -known him,|['to', 'in']| -is John,['Turner'] -money through,['my'] -objection to,|['the', 'your']| -his legs,|['in', 'stretched', 'As']| -gazing at,|['it', 'Holmes', 'the']| -his brows,['knitted'] -write two,['letters'] -took sides,['with'] -Roylott returned,['and'] -a pocket-book,['and'] -of desperation,['he'] -case What,['did'] -least throw,['a'] -be cooped,['up'] -has followed,['me'] -down What,['is'] -as fast,['as'] -this rather,['fantastic'] -My sister,|['asked', 'thinks', 'Julia', 'and']| -finished." the,['mystery'] -asked merely,['a'] -sharp instrument,['thing'] -of twenty-one,['years'] -also aware,['of'] -An examination,['showed'] -is have,['you'] -he raised,['his'] -as Holmes,|['shot', 'had']| -follow from,['it'] -very fortunate,['as'] -what interest,['could'] -and self-poisoner,['by'] -Sutherland that,['for'] -office No,['one'] -extraordinary narrative,['Then'] -River in,['southern'] -and attempted,['when'] -married right,['away'] -burned had,['you'] -all open,['out'] -really wouldn't,['miss'] -tobacco with,['laudanum'] -bed within,['that'] -you done,['asked'] -has something,['which'] -but real,['bright'] -in recognising,['Lestrade'] -treated you,['real'] -to Kilburn,|['where', 'There', 'I']| -driven through,['the'] -the match,['and'] -he not,|['write', 'advertise', 'say', 'invent', 'explain', 'a']| -your advantage,['as'] -cross-purposes the,['wonderful'] -seen but,['as'] -e's slurred,['and'] -you dare,['to'] -he denied,['everything'] -yet to,['learn'] -results which,|['would', 'the']| -The evidence,['against'] -just did,['it'] -and clutched,|['the', 'at']| -1888 I was,['returning'] -wished to,|['ask', 'see', 'be', 'have', 'speak']| -black top-hat,['a'] -my cases,|['Whom', 'and']| -pass twice,['in'] -enabled him,['to'] -head sunk,|['upon', 'forward', 'in']| -Evidently there,['was'] -dangerously slippery,['so'] -cloud in,['the'] -man's energy,['All'] -as passionate,['as'] -|Moran Doctor,"|,['said'] -matters to,['attend'] -out their,['first'] -patentee of,['the'] -ungenerously and,['she'] -her What,['has'] -of people,|['You', 'of', 'who', 'perhaps']| -straighten it,|['bless', 'when']| -had listened,|['to', 'with', 'I', 'spellbound']| -makes the,|['danger', 'matter']| -an Eastern,['training'] -here All,['right'] -founder of,['the'] -deserved little,['enough'] -him will,|['leave', 'direct', 'break']| -any reply,['from'] -his drug-created,['dreams'] -stone Thank,['you'] -visitor collapsed,['into'] -of understanding,['To'] -the title,['by'] -As if,['a'] -funny stories,['of'] -might or,['might'] -answered glancing,|['keenly', 'at']| -know anything,|['about', 'of']| -come What,['are'] -|whistled pair,|,['by'] -As it,|['pulled', 'was', 'is', 'emerged']| -marriage rather,['simplifies'] -it possible,|['you', 'that', 'for', 'gasped']| -feed him,['once'] -could even,|['dimly', 'tell']| -pool He,['appeared'] -supposed suicide,['letter'] -profound gravity,['upon'] -objections are,['fatal'] -exclaimed in,['unfeigned'] -glanced over,|['the', 'it']| -minute grind,['me'] -those months,['Of'] -extreme anxiety,['lest'] -better The,['method'] -wife. There,['is'] -sat in,|['the', 'silence', 'his']| -the sun,|['was', 'and']| -her death,|['and', 'that']| -it Or,['should'] -devote the,['same'] -it Oh,|['do', 'let']| -ascertain amount,['to'] -had always,|['laughed', 'been']| -without anyone,['having'] -cabinet size,['Too'] -was open,['and'] -we've had,['just'] -of talking,|['to', 'so']| -could therefore,['hardly'] -assisted the,['woman'] -arrived a,["confectioner's"] -though no,['doubt'] -iron gates,|['and', 'which']| -because we,['expected'] -turned the,|['handle', 'key']| -when with,|['a', 'the']| -ill-treatment from,['Mr'] -spoke he,|['picked', 'drew']| -it went,|['against', 'to', 'off']| -Pacific slope,['how'] -I must,|['be', 'begin', 'discuss', 'insist', 'wire', 'compliment', 'go', 'pack', 'press', 'still', 'owe', 'confess', 'spend', 'have', 'use', 'turn', 'leave', 'raise', 'try', 'not', 'fly', 'remain', 'look']| -face should,['be'] -resolution pushed,['to'] -caused if,['any'] -sleeper half,['turned'] -little brain-attic,['stocked'] -eyes as,|['though', 'one', 'if', 'he']| -engagement lasting,['any'] -which presented,|['such', 'more']| -lead to,['other'] -Three gilt,['balls'] -heard of,|['the', 'any', 'either', 'you', 'her', 'that', 'Colonel', 'since', 'such', 'Frank', 'him', 'it']| -and stately,['business'] -sit contains,|['2,000']| -had married,|['me', 'a', 'this', 'Lord', 'my']| -and illegal,['constraint'] -little over-precipitance,['may'] -justice As,['we'] -our heads,['and'] -been wasted,['since'] -strong probability is,['that'] -interesting than,|['her', 'it']| -to make,|['my', 'it', 'a', 'merry', 'me', 'up', 'anything', 'sure', 'him', 'myself', 'the', 'in']| -dried and,['collected'] -driver looked,['twice'] -am inclined,['to'] -sinking back,['in'] -pounds There,['must'] -traced them,['as'] -such faith,['in'] -subtle are,['the'] -enable us,['to'] -his instructions,['when'] -her again,['and'] -laid out,|['in', 'the', 'I', 'upon', 'all']| -indisposition and,['retired'] -the parents,["Don't"] -the robbery,|['in', 'and', 'what']| -custom when,['in'] -little reward,['I'] -the manager,|['name', 'came', 'As']| -rapidly threw,['on'] -husband lies,['snoring'] -the sly,['so'] -way James,['McCarthy'] -sure that,|['she', 'I', 'he', 'you', 'the', 'this', 'my', 'everything']| -danger for,['him'] -gang at,['all'] -the strain,['would'] -worn our,['visitor'] -said she,|['am', 'would', 'Here', "You'll", 'pressing', 'and', 'a', 'I', 'have', 'trying', 'It', 'Well', 'looking', 'How', 'as', 'in', 'sharply', 'there', 'Her']| -a healthy,['mind'] -the daytime,['Then'] -stair and,|['brought', 'a']| -than thirty,|['Hatherley?', 'feet', 'I']| -understand Mr,['Turner'] -simple problem,['presented'] -got off,|['however', 'paid']| -the what,['asked'] -events we,['had'] -walls and,['the'] -horrible worrying,['sound'] -pocket I,['was'] -analysis and,['deduction'] -his life,|['is', 'abroad', 'appeared']| -a verdict,['of'] -he folded,['up'] -very new,['and'] -eccentricity Very,['few'] -wire Here,['we'] -vestry She,['was'] -done now,['I'] -entered my,['consulting-room'] -years ago,|['during', 'to', 'when', 'and', 'in', 'sister', 'I', 'having', 'Then']| -go armed,['Where'] -derived from,['the'] -without another,['word'] -officials One,['of'] -morning upon,['the'] -drawing out,['a'] -a glance,|['that', 'as']| -Road In,['front'] -which rattled,['up'] -know at,['what'] -to blend,['with'] -beautifully situated,['but'] -respects you,['would'] -broad intelligent,['face'] -particular that,['had'] -have our,|['web', 'own']| -and uncongenial,['atmosphere'] -the future,|['I', 'career', 'only', 'As']| -anything dishonourable,['would'] -me uneasy,['Why'] -end Besides,['there'] -blanche to,['act'] -became known,['that'] -be upbraided,['for'] -of Cassel-Felstein,['and'] -inconvenience which,['our'] -offered of,['1000'] -|up, then|,['asked'] -though not,['the'] -dazed face,['the'] -where breakfast,['had'] -my disguise,|['In', 'as']| -sitting-rooms being,['in'] -a nonentity,['It'] -when just,['as'] -awaiting him,['however'] -another person,['has'] -deathbeds when,['they'] -one knee,['rested'] -over Miss,["Sutherland's"] -Does not,['that'] -there who,['stares'] -is often,['compensated'] -a pipe,|['for', 'and']| -Turner Both,['these'] -my life,|['and', 'than', 'Her', "I'll", 'would', 'have', 'has', 'we', 'was']| -feeling away,['with'] -fellows there,['in'] -Hatherley said,['he'] -horrible scandal,['would'] -of Holder,['&'] -pawnbroker's assistant,['was'] -You quite,['follow'] -stop here,['however'] -villainy here,['said'] -some little,|['pride', 'danger', 'use', 'slurring', 'attention', 'time', 'sketch', 'trouble', 'nervous']| -bitten off,['but'] -door-mat In,['that'] -which abound,['in'] -been upon,|['me', 'him']| -friend once,['called'] -in tears,['I'] -These articles,['with'] -well-lit dining-room,['upon'] -face yet.",['you'] -ventilator and,['to'] -the hour,|['when', 'you', 'of', 'that']| -singular chance,['has'] -little blue,['egg'] -the bridge,['of'] -that fellow,['answered'] -truth Mr,['Holmes'] -I when,['the'] -folding up,['the'] -do put,['a'] -was partly,['caved'] -else save,['the'] -head solemnly,['and'] -he like,['this'] -features which,['were'] -she looking,['I'] -direction in,['which'] -wonder at,|['that', "Lestrade's"]| -he suffered,['a'] -Gravesend Well,['Mrs'] -whether any,['positive'] -see Holmes,|['again', 'as']| -a hunting-crop,['swinging'] -be third,['I'] -cases between,['the'] -made sure,['that'] -had described,['Holmes'] -must go,|['to', 'back', 'home', 'My', 'now']| -lens in,['his'] -you she,|['would', 'cried']| -expect us,|['early', 'to']| -hand while,|['he', 'she']| -post brought,['me'] -speak about,['it'] -vulgar comfortable,['easy-going'] -usually people,['there'] -Republican policy,['in'] -had drawn,['my'] -but gave,['it'] -gang That,['he'] -took off,['his'] -quite short,['before'] -salary the,['curious'] -down all,['would'] -quite right,['to'] -is easily,|['got', 'done']| -scar and,['fixed'] -us talk,|['it', 'about']| -a dark-lantern,|['I', 'with']| -look back,['at'] -place between,['Lord'] -of nickel,['and'] -slight defect,['in'] -never doubted,|['that', 'for']| -the posterior,['third'] -not accustomed,['to'] -not in,|['the', 'front', 'sitting', 'anger', 'darkness']| -Grosvenor Square,['furniture'] -very completely,['I'] -deadly pale,['and'] -he in,|['favour', 'a']| -be next,['Monday'] -he is,|['a', 'willing', 'satisfied', 'admirably', 'Mr', 'at', 'only', 'indeed', 'quite', 'mistaken', 'too', 'innocent', 'right', 'young', 'as', 'in', 'now', 'John', 'likely', 'acting', 'ever', 'dead', 'middle-aged', 'sure', 'on', 'easy', 'violent', 'the', 'all', 'said', 'coming', 'one', 'locked', 'always']| -he it,|['would', 'ring']| -continued disregarding,['my'] -tray I,['will'] -country-houses A,['brown'] -not it,['shall'] -upon begging,['in'] -his supporters,['though'] -place no,['limit'] -most determined,['attempts'] -were sold,['by'] -Step into,['my'] -opposing windows,['loomed'] -sleeps and,['we'] -to occur,|['There', 'to']| -represents the,['last'] -further of,['the'] -are Must,['I'] -chamber so.,['But'] -for satisfaction,['than'] -are fatigued,['with'] -mouth than,['the'] -found and,['indeed'] -low room,['thick'] -idea who,['you'] -be all,|['anxiety', 'right']| -was publicly,['proclaimed'] -story was,|['so', 'written']| -I put,|['ideas', 'my', 'the', 'on']| -Twenty-nine I,['see'] -visitor and,['I'] -then flicked,['the'] -collar The,['other'] -one There,['the'] -ashes enables,['me'] -bought will,['not'] -should value,|['even', 'your']| -other mortals,['When'] -he hears,['that'] -the fly-leaf,['of'] -of meditation,['until'] -two crimes,['which'] -then blotted,['none'] -with ink,|['can', 'which']| -he heard,|['in', 'the', 'a']| -ran off,['as'] -Eastern divan,['upon'] -been eight,['or'] -thing was,['I'] -best pleased,['Mr'] -a Republican,['lady'] -approached it,['I'] -much when,['the'] -cried and,|['then', 'half', 'sobbed', 'above']| -their breakfasts,['at'] -care about,['the'] -fairly well-to-do,|['in', 'within']| -to bed,|['within', 'no,', 'again', 'after']| -|purpose 30,000|,['napoleons'] -I leave,|['a', 'him', 'left', 'my', 'it']| -uncle and,|['that', 'passed']| -you startled,['me'] -they look,['upon'] -harm done,|['it', 'save']| -grave against,['the'] -hard with,['occasional'] -its youth,['it'] -ink which,|['has', 'is']| -way out,|['of', 'I', 'to']| -it. went,['upstairs'] -him hastening,['from'] -and pressed,['down'] -the woman's,['entreaties'] -marriage might,['have'] -gun or,['his'] -a holder,['The'] -the thirty-six,['stones'] -my intimate,['friend'] -am very,|['much', 'stupid', 'angry', 'sorry', 'anxious']| -scraped but,['was'] -neatness which,['characterises'] -men with,['long'] -succinct description,['but'] -the direct,['line'] -nine o'clock,|['Lestrade', 'the', 'Sherlock']| -believe it,|['think', 'cried']| -my clients,['or'] -your shoulder,['to'] -Your husband,['as'] -tide this,['morning'] -gate and,['of'] -case into,|['your', 'my']| -perfectly trivial,['one" he'] -even attached,['to'] -quiet pipe,['and'] -believe in,|['my', 'his', 'hard']| -amplifying this,['in'] -painful episodes,['which'] -all plain?,['quite'] -heard to,['cry'] -tall spare,['figure'] -entirely lost,['his'] -gentleman by,['courtesy'] -always carry,['the'] -were Colonel,['Lysander'] -of silence,['Watson'] -bet then,['merely'] -my conduct,['would'] -the smile,|['fade', 'hardened']| -sir said,|['the', 'he', 'I', 'Holmes']| -I meant,['it'] -loss of,|['it', 'a', 'the', 'power']| -place concealed,['three'] -asked save,['my'] -accompli really,['have'] -Horsham I,['doubt'] -a heading,['which'] -across to,|['the', 'me']| -repair but,['the'] -can it,['mean'] -past belief,['that'] -more feeble,['than'] -yours who,['first'] -had her,|['lunch', 'own']| -of German,|['music', 'I']| -interest in,|['this', 'it', 'preventing', 'here', 'those']| -wondered what,['it'] -waxed or,['waned'] -sound that,['there'] -smudge of,['blood'] -and cravat,['which'] -he must,|['have', 'hurry', 'apparently', 'get', 'be', 'adapt', 'recall']| -accident which,['should'] -ready traveller,['My'] -offices but,['the'] -reach The,['bird'] -father young,['man'] -Twice she,['has'] -Swain of,['St'] -bang of,['a'] -one in,|['it', 'these', 'the']| -confession and,['if'] -Still it,|['did', 'might', 'is']| -heavens!" I,['cried'] -little problem,|['said', 'which', 'upon', 'will', 'of', 'and', 'promises']| -gaping hole,['through'] -it between,['two'] -one is,['stirring'] -that such,['a'] -passage my,["sister's"] -one it,|['is', 'is ', 'was']| -them back,['good.'] -of question,['in'] -toe-cap and,['the'] -and forward,|['and', 'examining', 'with', 'against']| -9 1890,['Holmes'] -seaman should,['be'] -I shrugged,['his'] -absorbed as,['ever'] -ever have,['accepted'] -pa was,|['working', 'very']| -father's place,['of'] -when your,|['wife', 'stepfather']| -to describe,|['was', 'it']| -which it,|['was', 'gives', 'is', 'left', 'had', 'would', 'may', 'rose', 'took', 'worked', 'entailed']| -which is,|['the', 'always', 'just', 'rather', 'in', 'a', 'upon', 'used', 'likely', 'given', 'dry', 'familiar', 'I', 'about', 'itself', 'opposite', 'mature', 'enough', 'really', 'quite']| -to wake,|['up', 'a']| -it formed,['a'] -portion and,['two'] -sleepers holding,['my'] -turn like,['mine'] -doubt indirectly,['responsible'] -Simon but,['it'] -not dispose,['of'] -pounds. it,['is'] -his trembling,['hand'] -incisive reasoning,|['which', 'noted,']| -into but,['there'] -skylight We,['shall'] -stepfather what,['do'] -cheery fire,['in'] -little heed,['to'] -title by,['which'] -instantly gave,|['the', 'rise']| -statement she,['said'] -All this,['is'] -head There,['was'] -wouldn't hear,['of'] -service and,['make'] -search was,['made'] -column that,['the'] -was panelled,['Finally'] -her end,['Besides'] -The other,|['dived', 'was', 'clothes']| -hat and,|['come', 'oppressively', 'the', 'his', 'a', 'goose', 'when', 'all', 'cloak']| -retiring disposition,['During'] -each other,|['My', 'with', 'before', 'until', 'they', 'in', 'as', 'since', 'up', 'within', 'Frank']| -little expenses,['of'] -scintillating blue,['stone'] -very noblest,['in'] -the boots,['which'] -much older,['than'] -really ask,['you'] -fire spinning,['fine'] -flaming head,['If'] -shall call,|['with', 'upon', 'a', 'for', 'at']| -bird said,['he'] -There cannot,['be'] -five miles,|['through', 'on', 'of']| -plans nodded,['to'] -may conceal,['what'] -this coronet,['with'] -be something,|['out', 'grey', 'of']| -twelve miles,['over'] -different man,['to'] -hands that,['you'] -workmen at,['the'] -there Do,['you'] -conjectured that,['he'] -is Friday,['man'] -state your,|['case', 'business']| -is dated,['from'] -in to,|['help', 'me']| -alternating from,['week'] -at present,|['Your', 'Doctor as', 'is', 'than', 'Anstruther', 'see', 'I', 'in', 'and', 'make']| -Roylott was,['in'] -rather die,['under'] -I tossed,|['my', 'them']| -occasionally allowed,['to'] -lived Why,["shouldn't"] -is this,|['then', 'written', 'K', 'Captain', 'infernal', 'extraordinary']| -pounds Each,['daughter'] -the low,['whistle'] -are Finns,['and'] -corner and,|['glancing', 'sat', 'helped']| -the lot,|['at', 'of']| -the various,['keys'] -What a,|['queen', 'tissue', 'week', 'shrimp', 'strange']| -new to,|['me', 'him']| -pooh! Forgery,['private'] -coronet We,['must'] -dog-whip swiftly,['from'] -chase All,['he'] -not conceal,['its'] -hurrying swarm,['of'] -have divined in,['the'] -head to,['look'] -near each,['other'] -inst. Mr,['Jeremiah'] -and thin,['upon'] -the vessel,['in'] -heavily barred,['was'] -cheetah was,['indeed'] -left this,|['morning', 'door']| -then without,['any'] -that both,['glove'] -names in,['England'] -most interesting,|['character dummy', 'statement', 'which', 'one']| -red feather,['in'] -pocket of,['his'] -hat was,|['a', 'grizzled']| -chuckled the,['inspector'] -had pursued,['the'] -security unless,['our'] -one o'clock,['when'] -shivering is,['not'] -to it,|['as', 'I', 'certainly', 'also', 'Then', 'but', 'from', 'Here', 'and', 'was', 'we', 'that', 'What', 'would']| -commonplaces of,['existence'] -this ground,['One'] -was placed,['I'] -none commonplace,['for'] -slipped into,['her'] -suggest no,['explanation'] -paper so,['that'] -has at,|['some', 'this']| -Twice my,['boy'] -fingertips still,['pressed'] -with JABEZ,['WILSON'] -sleepily from,['their'] -the whistle,['Of'] -swollen glands,['when'] -peeped a,['clean-cut'] -Holmes attention,['to'] -|be yes,|,['you'] -Millar how?",['the'] -became wealthy,['men'] -direction that,['he'] -match were,['sufficient'] -in considering,['this'] -the country,|['looking', 'was', 'notably', 'of', 'If', 'and', 'folk', 'sir', 'It', 'I', 'is', 'But']| -goes to,|['the', 'my']| -on me,|['in', 'is']| -wall of,['the'] -meddler friend,['smiled'] -He takes,['the'] -to-night Some,['friend'] -forestalling it,['if'] -know your,['train'] -Afghanistan had,['at'] -of victory,['in'] -a rich,|['material', 'man', 'pocket']| -for seven-and-twenty,['years'] -on my,|['watch-chain', 'part', 'level', 'success', 'face', 'best', 'word', 'boy', 'pigments', 'slippers', 'clothes', 'things', 'guard', 'bed', 'hat']| -my spine,['and'] -answered what,['are'] -was larger,['than'] -graver issues,['hang'] -McCarthy the,|['elder', 'only']| -entirely devoid,['of'] -was coincident,['with'] -dim veil,['which'] -body is,|['a', 'to']| -Stoner to,['some'] -I rely,['upon'] -searched and,['there'] -|will, Miss|,['Turner'] -shone out,|['from', 'like', 'right']| -obligations. how,['long'] -the corner,|['Then', 'of', 'dashed', 'still', 'from', 'and', 'saw', 'which', 'I']| -quite cleared,['up'] -around the,['man'] -any expense,['which'] -hurry back,['to'] -opposed to,['its'] -sleep? not.,['But'] -from amid,['the'] -home In,|['this', 'that']| -Helen It,['was'] -an ex-Australian,['The'] -dual nature,['alternately'] -reply from,['within'] -along and,['slipped'] -deserve to,['be'] -went alone,['at'] -trouble But,['he'] -no vice,['in'] -two police,['fellows'] -armed Where,['were'] -the immense,|['stream', 'responsibility']| -want into,['the'] -typewrite them,['like'] -mother died she,['was'] -a collection,['of'] -heels hardly,['visible'] -himself I,['have'] -We cannot,['spare'] -however one,['of'] -Doctor you,['see'] -there stood,['a'] -shots Our,['footfalls'] -much hurt,['she'] -threw myself,|['screaming', 'through']| -Horace and,['as'] -rather have,|['my', 'that']| -Give him,|['an', 'a']| -of astonishment,['He'] -from time,['to'] -as described,['by'] -no result,['sign'] -than for,|['winter', 'the']| -search for,|['him', 'me']| -could pass,['these'] -and down,|['the', 'near', 'talking', 'in', 'with', 'What', 'sometimes', 'into', 'taking', 'a', 'waggled', 'on', 'glancing']| -his departure,['to'] -same position,|['Draw', 'when']| -tied is,['not'] -towns were,['within'] -the stable,['lane'] -of Europe,|['have', 'To']| -a lure,['which'] -some obstacle,['in'] -exchanging visits,['with'] -layers of,['lead'] -table and,|['chair', 'went', 'glanced', 'tore', 'a', 'cast', 'in', 'wondering', 'I']| -were absolutely,|['true', 'ignorant']| -bond I,['was'] -he disguised,['himself'] -camera when,['he'] -the dollars,['won'] -will-o'-the-wisp but,['I'] -With the,['connivance'] -from Charing,['Cross'] -a signal,['to'] -profession could,['not'] -pick up,['an'] -have but,|['to', 'one']| -this page,['are'] -quick-tempered very,['foul-mouthed'] -He has,|['every', 'his', 'one', 'written', 'taken', 'not', 'little', 'been', 'a', 'nerve', 'died', 'seen']| -that Lady,['St'] -that double,['possibility'] -to sally,['out'] -occurred to,|['separate', 'him', 'me']| -He had,|['risen', 'been', 'stood', 'even', 'made', 'a', 'always', 'as', 'turned', 'no', 'for', 'foresight', 'remained', 'ceased', 'trained', 'set', 'evidently', 'nothing', 'returned']| -third my,['own'] -In Victoria,['That'] -up before,['she'] -doubtless among,['the'] -while busy,['with'] -night She,['pulled'] -boys were,['killed'] -thinking of,|['leaving', 'turning']| -features as,|['the', 'inscrutable']| -town the,['earliest'] -lady dressed,['in'] -dashed into,['the'] -he unpacked,['with'] -then never,['go'] -|continue," said|,['Holmes'] -bell I,['have'] -write from,['here'] -and read,|['as', 'with', 'it', 'the']| -will give,['a'] -clear the,|['matter', 'contrary']| -run down,|['to', 'the']| -other while,|['the', 'a']| -poor little,['reputation'] -could ask,['advice'] -boot-lace Now,['what'] -her you,|['for', 'her', 'would']| -much astonished,['as'] -criminal then,['gentleman'] -opinion I,['think'] -a garden,|['at', 'and']| -bile-shot eyes,['and'] -would talk,['if'] -look how,['will'] -keen questioning,['glances'] -drawback which,['we'] -her interests,['Young'] -disadvantage they,['may'] -her secret,['that'] -scuffle your,['son'] -as not,|['to', 'quite']| -crime committed,['and'] -slighter evidence,['I'] -Her boots,['I'] -what conclusions,['did'] -a crime,|['is', 'of']| -On my,['way'] -succession of,|['sombre', 'papers']| -precisely I,['was'] -past about,['a'] -remained in,|['our', 'the']| -do Should,['I'] -he with,|['an', 'his', 'something', 'a']| -remained it,['seems'] -Ha Well,['there'] -document Philosophy,['astronomy'] -and daughter,['may'] -through an,['endless'] -absolutely refused,['to'] -respectable self,['could'] -near Waterloo,['Bridge'] -rush to,|['the', 'secure']| -a lane,['which'] -asked which,['my'] -familiar to,|['you', 'me', 'her', 'every', 'your']| -indeed It,['is'] -plaid perhaps,['When'] -Stroud Valley,['and'] -sister could,['smell'] -afraid so,['I'] -that were,|['true', 'he']| -noble bachelor,['were'] -cannot take,['my'] -month ago,['however'] -household What,['did'] -was dreadful,|['hard', 'to']| -take for,['the'] -and tossed,['them'] -lives No,['servant'] -they will,|['not', 'have', 'soon']| -could earn,|['as', '700']| -sable Born,['in'] -the opium,['den'] -strong woman,['with'] -writing madam,['but'] -continued I,['think'] -astonished at,['his'] -true of,['this'] -Warsaw yes Retired,['from'] -filled with,['horror'] -for by,['exceptional'] -frenzy of,['this'] -bouquet over,['to'] -famous in,['the'] -my unhappy,['boy'] -shrunk so,['as'] -idea of,|['the', 'murder', 'a', 'using', 'amusement']| -an ornament,['A'] -acted otherwise,['though'] -search laughed.,['I'] -the ugly,['wound'] -Azure three,['caltrops'] -King took,['a'] -are none,|['do', 'missing']| -|had," said|,['he'] -fact as,['matters'] -strength At,['my'] -be taken.,['should'] -can't make,['bricks'] -some extent,['in'] -weakness in,['one'] -kindly eye,['he'] -yes; plenty,['Then'] -your pal,['again'] -strange adjective,['which'] -became his,|['tenant', 'calling', 'tool']| -looked keenly,['about'] -fashion until,['his'] -superior being,['a'] -McQuire's camp,['near'] -diversity of,['opinion'] -Bradstreet If,['the'] -having touched,['the'] -Study in,['Scarlet'] -rushed up,['with'] -unlocking it,['drew'] -the wedding,|['missed', 'James', 'the', 'had', 'breakfast', 'she', 'was', 'in', 'ceremony']| -were standing,['at'] -office behind,['me'] -unravel left,['him'] -assistance presence,['might'] -there at,|['ten', 'Christmas', 'about', 'all']| -soul here,['is'] -Presently he,|['emerged', 'came']| -there as,|['well', 'a']| -like our,['Co.'] -still screamed,['and'] -your hat,|['and', 'Mr', 'then']| -that some,|['unforeseen', 'foul', 'terrible', 'little', 'good']| -two fists,['and'] -smaller than,['a'] -there an,['old'] -trifling experiences,['you'] -than random,['tracks'] -would finally,['secure'] -and yesterday,['evening'] -which extended,['halfway'] -The prisoner,['lay'] -confused memory,['too'] -yet returned,['The'] -learned of,['the'] -Wimpole Street,['Harley'] -front with,['the'] -home to,|['Saxe-Coburg', 'my', 'visit', 'the']| -surprise her,['surprised'] -Suddenly however,|['he', 'as']| -test-tube at,['night'] -again Oh,['it'] -died He,['mumbled'] -or might,|['fly', 'not']| -her stepfather,|['do', 'was', 'hastily']| -disappearance Here,['signed'] -happened but,['what'] -week far,['as'] -throwing out,|['two', 'their']| -He'll crack,['a'] -dashed away,['through'] -cabman got,['down'] -approach of,['Peterson'] -the pit,['which'] -of hydraulics,['you'] -hardly avoid,['publicity'] -half asleep,['with'] -thought with,|['a', 'the']| -nut for,['you'] -cried Your,['duty'] -weapon now,['The'] -huge brown,['hands'] -wind But,['since'] -is what,|['began', 'he', 'we', 'Mr', 'appears', 'makes']| -strange talk,['for'] -but when,|['I', 'Mr', 'they', 'my', 'there']| -and laughed,|['heartily', 'again', 'in', 'He', 'his']| -other trace,['But'] -entering his,['room'] -danger threatened,['an'] -not remain,['clear'] -hurry as,['he'] -spoils of,['victory'] -hour I,|['sat', 'have']| -their explanations,['founded'] -house What,['could'] -extraordinary combinations,['we'] -theory tenable,['what'] -find me,|['at', 'ready', 'ungrateful']| -cause and,['effect'] -meanwhile for,['I'] -character in,['the'] -should make,['their'] -shall no,['doubt'] -character it,['is'] -Windibank running,['at'] -slipped on,['some'] -of probability,['That'] -find my,["friend's"] -One by,['one'] -rooms than,['was'] -I understood,['that'] -then hat,['is'] -and walked,|['quietly', 'down', 'over', 'slowly']| -fixed it,['all'] -footfalls rang,['out'] -man that,|['I', 'he', 'it']| -safe upon,['its'] -fixed in,['a'] -man than,['he'] -Stevenson of,['Threadneedle'] -said a,|['gentleman', 'woman', 'few', 'word']| -occasionally during,['the'] -me God!,["It's"] -prepare for,['the'] -in person,|['on', 'to']| -I hold,|['in', 'to']| -Balmoral. Hum,['Arms'] -chased each,['other'] -are engaged,['said'] -the Study,['in'] -as governess,['I'] -had pretty,['nearly'] -a lie,['His'] -it very,|['nicely', 'well', 'carefully', 'slow', 'hard', 'unlikely']| -said I,|['this', 'and', 'said', 'there', 'never', 'And', 'excuse', 'the', 'Mr', 'shrugged', 'that', 'as', 'wired', 'shall', 'glancing', 'looked', 'but', 'say', 'There', 'What', 'I', 'perhaps', 'handing', 'laughing', 'you', 'just', 'suppose', 'sitting', 'examining', 'my', 'The', 'is', 'because', 'ruefully', 'for', 'were', 'He', 'smiling', 'A', 'Charming', 'considerably', 'close']| -his glasses,|['a', 'more']| -hour But,['I'] -form of,|['society', 'poison']| -since that,['date.'] -money should,['be'] -now learn,['to'] -not venture,['to'] -your roof,['and'] -she slowly,['sank'] -returned on,['hearing'] -solder the,['second'] -Evening News,['Standard'] -her money,|['said', 'When']| -to crime,|['It', 'until', 'it']| -client rising,['have'] -cell and,['I'] -rather unusual,['I'] -manner one,['of'] -yesterday and,['I'] -would claim,['his'] -of Henry,['Bakers'] -tune under,['my'] -and inquire,|['as', 'whether']| -pea-jacket and,|['taking', 'cravat']| -in time,|['to', 'for']| -fifty 1000,['pound'] -cut was,['not'] -searched without,['anything'] -tones which,['he'] -presence could,['be'] -his companion,['had'] -any influence,|['morning,', 'with']| -sweat was,['pouring'] -a sound,|['not', 'which']| -the port,['of'] -wrong with,['it.'] -in Gravesend,['by'] -rectify Wait,['in'] -loaf he,['devoured'] -laid some,['terrible'] -enemy's preparations,['have'] -myself by,|['the', 'a', 'examining']| -was unfortunate,['Your'] -reward and,['I'] -had staggered,['and'] -much secrecy,['over'] -Holmes clapped,|['his', 'the']| -was escorted,['home'] -employers and,['spent'] -heard him,|['mention', 'do', 'yourselves']| -frank acceptance,['of'] -attention was,|['speedily', 'a']| -it just,['as'] -if possible,['He'] -being himself,['not'] -seen now,['all'] -you refuse,['the'] -not know,|['her', 'how', 'whether', 'what', 'where', 'Juryman:', 'when', 'It', 'that', 'at']| -indicated a,['spirit'] -probably familiar,['to'] -with whatever,['interest'] -took the,|['smoke-rocket', 'liberty', 'paper', 'advice', 'letters', 'tattered', 'bell-rope', 'lamp', 'precious', 'more']| -has consoled,['young'] -announce Miss,['Mary'] -Cross But,['I'] -his successors,['Did'] -day is,['my'] -possible getting,['out'] -observation not,['for'] -which touched,['at'] -was before,['your'] -lame his,['left-handedness'] -observed It,['is'] -lose Watson,['I'] -real and,['imminent'] -just show,['you'] -now though indeed,['it'] -would recognise,['even'] -House Two,['hours'] -Without a,['word'] -day in,|['the', 'which']| -of existence,|['These', 'If']| -geese said,['he'] -is This,['is'] -his And,['yet'] -surprised and,|['interested', 'as']| -significant allusion,['to'] -news and,|['the', 'he']| -throwing a,['brilliant'] -the problems,['which'] -Large sitting-room,['on'] -postmark and,['with'] -evening papers,|['If', 'which,']| -book It,['was'] -sponged the,['wound'] -pierced in,['the'] -station lady,['gave'] -absolute stillness,['that'] -closely am,['armed'] -dressed men,['smoking'] -clear upon,|['that', 'the']| -men of,|['resource', 'the']| -indifferent and,['contemptuous'] -summonses which,['call'] -old days,['in'] -my gun,['and'] -have mercy,['he'] -patient but,['I'] -Valley and,['over'] -wheal from,['an'] -thick fog,['rolled'] -pavement beside,['him'] -out!" said,['he'] -taking the,|['paper', 'final']| -no active,['enemies'] -finger-tips one,['who'] -same with,['the'] -everything a,['brilliant'] -bachelor. face,['lengthened'] -broke into,['a'] -them Having,['done'] -little weaknesses,['on'] -am convinced,|['now', 'that', 'from']| -often do,['from'] -of causing,|['it', 'some']| -in braving,['it'] -will begin,|['it', 'another']| -easy at,['night'] -vanishes among,['the'] -him but,|['that', 'he', 'I', 'Sherlock']| -now it,['is'] -If that,['were'] -of view,|['but', 'a', 'that', 'until', 'be']| -now is,|['straight', 'precious', 'such']| -have failed,['to'] -Wilhelm Gottsreich,['Sigismond'] -drops of,['blood'] -had once,['been'] -now if,|['you', 'I']| -coat only,['half-buttoned'] -better-dressed people,['who'] -the acquirement,['of'] -to clearing,['James'] -occasionally good,['enough'] -we progress,['do'] -now in,|['the', 'custody', 'which', 'Philadelphia']| -hardly think,['that'] -and spent,|['the', 'some']| -|Friday, June|,['19th'] -press has,['not'] -Lestrade winking,['at'] -and west,|['every', 'The']| -which brought,|['the', 'a']| -go at,|['scratch', 'six']| -vizard mask,['which'] -at work,|['again', 'upon', 'The', 'said', 'returning']| -if rumour,['is'] -If his,|['purpose', 'motives']| -they give,['you'] -newcomers were,['Colonel'] -stones were,['the'] -remarked to,|['you', 'your']| -could however,['see'] -nerves were,['worked'] -I paid,['the'] -the ladder,['was'] -indeed to,['be'] -221B Baker,['Street.'] -nothing yourself,['last'] -the grip,['of'] -to Melbourne,['and'] -mind at,['rest'] -stirring bearing,['in'] -papers all,['the'] -|that mind,"|,['said'] -mind as,|['well', 'I']| -never bring,['you'] -a royal,['duke'] -cut to,['the'] -trunk One,['evening'] -barometric pressure,['looked'] -him before,|['said', 'seeing', 'as']| -the grim,['and'] -house this,['marriage'] -understand reasons,['for'] -Alpha and,['by'] -was inclined,['to'] -departure and,['so'] -yet said,['Holmes'] -o'clock for,['Mr'] -there. not,['a'] -abandons himself,['to'] -rest he,['can'] -There were,|['meetings', 'six', 'no', 'thirty-six', 'it', 'four', 'Sherlock', 'a']| -the utter,['stillness'] -finally of,['the'] -carried are,['obviously'] -has that,['to'] -him When,['I'] -instant for,['I'] -you budge,['from'] -a ship,|['We', 'And']| -excitement I,['thought'] -this unpleasant,['interruption'] -the fringe,['of'] -drifting across,['from'] -prior claim,['to the'] -you go,|['at', 'really', 'into', 'back', 'out', 'to']| -to hunt,['down'] -sole not,['the'] -case for,|['the', 'you']| -little above,['the'] -are absolutely,['safe'] -inconvenience that,['we'] -U S,['A.'] -was exceedingly,['pale'] -house she,['said'] -breakfast 2s,['6d.'] -sea waves,['My'] -bureau took,['out'] -inspector and,|['two', 'a', 'gave']| -own said,['Sherlock'] -solve anything,['said'] -Edward in,['the'] -letter was,['superscribed'] -fingers it,['would'] -them are,['so'] -the early,|['hours', "60's", 'days', 'tide', 'spring']| -her bedroom,['and'] -self-sacrifice and,['that'] -boards round,['and'] -fingers in,['time'] -there she,['saw'] -saviour and,['the'] -the Pacific,['slope'] -had apparently,['adjusted'] -itself said,['he'] -escapade with,['her'] -Angel at,['the'] -a housekeeper,['now'] -not wait,['and'] -the greasy,['leather'] -your papers,['for'] -old-fashioned manner,['he'] -bodies lying,['in'] -five now,['In'] -K K.!,['he'] -is walking,['the'] -been away,|['from', 'five']| -Arms Azure,['three'] -cannot! I,['answered'] -had sold,['the'] -being placed,['upon'] -the clank,['of'] -me without,|['pa', 'a']| -as death,['I'] -Joseph My,['father'] -between my,|['father', 'pride', 'saviour']| -am tempted,['to'] -over in,|['his', 'the', 'cool', 'despair']| -Mr Neville,|['St', 'St. ']| -but stop,['when'] -woman might,['for'] -killed I,['fainted'] -but it's,|['Where', 'the']| -over it,|['all', 'Here', 'and', 'It', 'I', 'Yes']| -again to,|['the', 'come']| -my house sweet,['loving'] -he half,['opened'] -bundle of,|['papers', 'paper', 'them']| -you last,['but'] -house nor,['garden'] -a witness,|['of', 'if']| -wedding The,['ceremony'] -hold myself,['absolved'] -where the,|['firelight', 'letters', 'company', 'typewritist', 'party', 'stable-boy', 'lady', 'family', 'little', 'poison', 'thumb', 'security', 'beryls', 'snow', 'wet']| -surmise than,['on'] -other weapon,['the'] -now through,['the'] -of winding,|['stone', 'up']| -parallel cases,['if'] -was coming,|['down', 'save']| -a fancy,['to'] -main facts,['of'] -was Neville,['St'] -the ominous,|['words', 'bloodstains']| -with straining,['ears'] -patient Then,['that'] -all to,|['know', 'be', 'go', 'preserve']| -Temple See,['the'] -servants and,['with'] -the hanging,['lamp'] -elder using,['very'] -doctor says,['it'] -bouquet as,['we'] -|elsewhere no,"|,['cried'] -is easier,['to'] -cried breathlessly,['They'] -the tassel,['actually'] -Indians and,['there'] -picture does,['to'] -down once,['more'] -observer who,['has'] -a confession,['I'] -then glanced,['at'] -caseful of,['cigarettes'] -what strange,['side-alley'] -sprang at,['a'] -momentary gleam,['of'] -so interested,['in'] -reached it,|['we', 'And']| -instructions when,['she'] -the foresight,|['and', 'said']| -Henry Bakers,['in'] -accomplish There,['is'] -back At,['first'] -and blunt,['weapon'] -it hurriedly,['out'] -budge from,['the'] -the winds,['ate'] -call in,['England'] -he needed,['it'] -metal Someone,['in'] -only could,['show'] -on re-entering,['her'] -and marked,['with'] -obvious from,['the'] -no official,['agent'] -again and,|['to', 'put', 'Mr', 'proposed', 'it', 'he', 'again', 'in']| -wax which,['would'] -morning marks,['my'] -call it,|['conclusive', 'cruel', "It's", 'since']| -trick in,['a'] -dressing-gown and,['then'] -dangerous company,['which'] -|Holmes has,|,['however'] -woman cried,['the'] -After an,['hour'] -it points,['to'] -evolved from,['his'] -thick and,|['there', 'heavy']| -oily clay,['pipe'] -lawyer There,['is'] -suddenly springing,['to'] -to touch,['the'] -Assizes so,['it'] -trace remained,['of'] -within its,['own'] -odd ones,['the'] -became suspicious,['I'] -a mind,['with'] -more heavily,['than'] -movement and,|['an', 'then']| -chose? Jem;,['there'] -morning I,|['sat', 'determined', 'was', 'went', 'see']| -find said,['Sherlock'] -spare Alice,['the'] -the Surrey,['side'] -she Her,['husband'] -socket along,['which'] -value than,['if'] -meshes which,['held'] -last How,['could'] -morning a,['peasant'] -really quite,['as'] -an outbreak,['is'] -setting sun,['were'] -blue paper,['scrawled'] -the smell,|['of', 'grew']| -all enterprise,['and'] -No 2,['is'] -vanishing into,['the'] -stopped and,['looked'] -strong character,['with'] -wedding the,['terrible'] -by her,|['stepfather', 'society']| -a regurgitation,['of'] -a thousand,|['details', 'wrinkles']| -Your duties,['as'] -ever on,['any'] -disown it,["game's"] -we've done,['our'] -ran down,['the'] -he soon,['saw'] -has endeavoured,['to'] -cheeks and,|['a', 'the', 'he']| -reason of,['his'] -one idea,['of'] -You then ,['threw'] -part is,['a'] -begging times;,['but'] -married with,['the'] -time When,['I'] -conclusions did,['the'] -lady in,['the'] -part in,|['it', 'opposing', 'the']| -and their,|['more', 'wardrobe.']| -Quick quick,['or'] -deep-sea fishes,['me'] -hardly listened,['to'] -SIMON. is,['dated'] -little Mary,['who'] -his two,|['fists', 'forefingers']| -to two,|['points', 'large']| -ascended the,['stair'] -gate This,['also'] -the pistol,['clinked'] -Francisco Cal.,['U.S.A.'] -waiting in,['the'] -drew up,|['in', 'his', 'the']| -laid an,['egg'] -end Round,['this'] -if McCarthy,['is'] -grass was,['growing'] -talking excitedly,['and'] -miserable secret,['as'] -tradespeople so,['that'] -as relics,['of'] -bed padlocked,['at'] -single lurid,['spark'] -leaps and,['bounds'] -can go,['elsewhere'] -confess at,['once'] -must yourself,['have'] -client was,['anxious'] -of quarrel,['which'] -want to,|['find', 'introspect', 'go', 'do', 'frighten', 'test', 'know', 'see', 'get']| -there for,['one'] -pleasant lot,['it'] -world I,['adopted'] -hunted animal,['Her'] -distinct and,['a'] -career of,['every'] -live a,['month'] -gale and now,['to'] -insult your,['intelligence'] -evening he,['was'] -Southampton Road,['a'] -reasoner when,['he'] -the directors,['have'] -my theory,|['certainly', 'all']| -wickedness which,['may'] -extended halfway,['up'] -All is,['lost'] -talking something,['or'] -gather about,['the'] -pray not,['sir'] -of wishing,['him'] -close-fitting cloth,['cap'] -help and,|['so', 'a', 'that', 'advice']| -Now by,['the'] -it are,['the'] -thirty-nine enormous,['beryls'] -his new,|['premises', 'offices', 'client']| -what the,|['object', 'motive', 'lad', 'county', 'exact', 'girl', 'fellow', 'law', 'meaning']| -any dislike,['to'] -here had,['a'] -out The,['murder'] -now explore,['the'] -catching a,['train'] -importance of,['sleeves'] -here has,['been'] -The lowest,['estimate'] -job and,['that'] -close thing,['but'] -beauties A,['hundred'] -his room,|['I', 'He', 'leaving', 'with', 'and', 'was', 'early', 'in', 'An']| -fashion choosing,['his'] -Windibank wished,['Miss'] -Lord St,|['Simon', "Simon's"]| -would commence,['at'] -for father,['to'] -attacked it,|['There', 'the']| -he consulted,['said'] -dealer's?' of,['Covent'] -been my,|['partner', 'escape']| -crop of,['a'] -shy man,['Mr'] -this to,['see'] -money If,['my'] -Ryder stood,['glaring'] -have any,|['grievance', 'visitors', 'news', 'influence', 'practice', 'other', 'bearing']| -Mr Hardy,|['the', 'who']| -finished speaking,['to'] -the cut,['was'] -a quiet,|['neighbourhood', 'and', 'air', 'word', 'pipe', 'little', 'nature']| -later he,['was'] -habit and,['due'] -help of,|['the', 'several', 'a']| -wasted since,['it'] -have and,['whatever'] -manner was 'and,['what'] -engagement which,['would'] -Co. P,['of'] -herself in,['evening'] -whatever interest,['you'] -little past,['six'] -had half,['risen'] -some foolish,['freak'] -and explained,['that'] -the advance,['was'] -Angel held,['the'] -up heard,['nothing'] -unless it,|['were', 'is']| -to in,|['your', 'the']| -hunt waited,['until'] -son He,['had'] -above suspicion,['Another'] -the fourth,|['smartest', 'day', 'a', 'was']| -one goes,['into'] -him do,|['it', 'better', 'not']| -a particularly,|['malignant', 'unpleasant']| -and made,|['my', 'me', 'our', 'a', 'for']| -youth it,['has'] -early spring,['and'] -kindly attend,['to'] -Holmes has,['she'] -put so,['nice'] -ground You,['are'] -crippled wretch,['of'] -of vanishing,['into'] -seat as,['requested'] -into Hyde,['Park'] -star or,['two'] -youth in,['an'] -find your,['own'] -Holmes had,|['not', 'sprung', 'been', 'brought', 'foretold', 'remarked', 'opened', 'a']| -arms about,['my'] -two o'clock,|['he', 'after', 'in']| -neither Women,['are'] -in forming,|['his', 'an']| -know you,|['engaged', 'well', 'can', 'you', 'have']| -was behind,['me'] -this relentless,['persecution'] -steps by,['which'] -you. I,|['have', 'did', 'am']| -The skylight,['above'] -get the,|['tickets', 'end', 'facts', 'money', 'address']| -gather from,|['that', 'this']| -a headache,['when'] -antics of,['this'] -of being,|['an', 'fairly', 'right', 'identified', 'bitten', 'placed', 'excellent', 'discovered']| -tall gaunt,|['figure', 'woman']| -days and,|['even', 'which', 'nights']| -matter Reading,['and'] -a suicide,['and'] -thoughts and,['paying'] -overjoyed to,['see'] -are screening,['your'] -little relation,['between'] -a while,['he'] -court So,['much'] -looked me,['over'] -may think,['the'] -sundial in,['the'] -have something,|['better', 'in']| -I looked,|['up', 'back', 'round', 'inside', 'out', 'at', 'again', 'in']| -her lunch,['started'] -he sprang,['to'] -devised a,['means'] -lying empty,['upon'] -upward with,['here'] -didn't drop,['I'] -save to,['indulge'] -evening which,['is'] -Highness to,['the'] -the boy,|['in', 'was']| -Company. It,['is'] -doctor bandaged,['me'] -intensified by,['his'] -bordered on,['the'] -move into,['the'] -less weight,['upon'] -and due,['to'] -seen everything,['a'] -warmest thanks,['He'] -steamed off,['again'] -grave face,|['he', 'here,']| -|can is,|,['of'] -red cravat,['and'] -would suggest,['to'] -a steely,['glitter'] -your family,|['is', 'circle']| -very shiny,|['for', 'hat']| -not worry,['about'] -prevent anyone,['from'] -all town,['the'] -and tucked,['his'] -veil it,['is'] -question in,|['my', 'his']| -Think of,|['my', 'the']| -which sent,|['a', 'my']| -a bachelor,|['he', 'residing', 'and']| -A CASE,['OF'] -wife's character,['nobleman'] -morning Mrs,['Hudson'] -sat frequently,['for'] -gummed if,['I'] -partie carre,['you'] -presuming that,['what'] -yet So,['there'] -question is,['Where'] -populous neighbourhood,['shrugged'] -few particulars,['as'] -work your,['own'] -pink-tinted note-paper,['which'] -found how,['I'] -and careless,['servant'] -will throw,['into'] -silence when,['the'] -held a,|['luxurious', 'candle']| -was written,|['man', 'in']| -was drifting,['slowly'] -advise not,['lose'] -it while,['I'] -give me,|['a', 'one', 'an', 'the', 'hopes', 'carte']| -agent it,['would'] -fixed full,['upon'] -may put,['our'] -factor which,['might'] -will postpone,['it'] -dank air,['of'] -to cocaine,['injections'] -photograph to,['his'] -agent in,['Europe'] -to carry,|['your', 'it', 'out']| -Herefordshire paper,['and'] -you once,['more'] -made him,|['throw', 'mad', 'keep', 'a']| -|HOLMES, You really|,['did'] -hand pulled,['out'] -it break,['out'] -clouds lighten,['though'] -best with,['the'] -colour they,['were straw'] -convenience until,['his'] -news to-morrow,['No'] -sight The,["man's"] -gang I,['shall'] -blinds had,['not'] -made his,|['money', 'way', 'home']| -made their,['way'] -not heard,|['him', 'the', 'Poor']| -be breaking,['above'] -you intended,['to'] -way but,['his'] -therefore hardly,['be'] -answered He,['has'] -with passion,['He'] -this blue,['stone'] -saving a,['soul'] -The head,['had'] -could fathom,['they'] -were traced,['home'] -time so,['kindly'] -repugnant to,['her'] -success At,['last'] -Our friend,['here'] -The bedrooms,['in'] -who sold,['you'] -shamefully treated,['said'] -throws it,['out'] -footsteps moving,['softly'] -Puzzle as,['I'] -say so,|['am', 'Mr', 'said', 'but', 'And', 'It', 'You']| -He picked,['a'] -deduce all,['that'] -evident therefore,['that'] -rise up,['around'] -an unfortunate,|['one', 'accident']| -the families,['Now'] -do but,|['get', 'what']| -coat then,['and'] -is a,|['capital', 'customary', 'German', 'man', 'wonderful', 'bijou', 'Mr', 'very', 'comfortable', 'perfectly', 'Freemason', 'little', 'fact', 'most', 'good', 'time', 'hobby', 'bank', 'field', 'broken', 'love', 'date', 'useless', 'curious', 'subject', 'murder', 'country', 'small', 'quarter', 'wreck', 'brighter', 'distinctly', 'strong', 'map', 'question', 'serious', 'hereditary', 'page', 'somewhat', 'sailing-ship', 'petty', 'vile', 'friend', 'trap-door', 'double-bedded', 'great', 'narrow', 'professional', 'piteous', 'cripple', 'different', 'fierce', 'huge', 'clever', 'dirty', 'hat', 'sign', 'distinct', 'nucleus', 'woodcock', 'cold', 'matter', 'list', 'member', 'hard', 'decided', 'cheetah', 'nice', 'swamp', 'terrible', 'train', 'drive', 'valuable', 'mere', 'likely', 'foreigner', 'curt', 'common', 'suggestive', 'ring', 'fait', 'possible', 'strange', 'detail', 'pocket', 'card-case', 'note', 'myth', 'madman', 'household', 'pure', 'sunbeam', 'noiseless', 'pen', 'well-known', 'pity', 'lunatic', 'feeling', 'large', 'rough']| -at Boscombe,['Pool'] -The husband,['was'] -and pays,['it'] -if God,['sends'] -third day,['after'] -banking firm,['of'] -the Agra,['treasure'] -is I,|['foresee', 'have', 'hope']| -seven separate,['explanations'] -Mr Windigate,['of'] -be make,['no'] -rain as,['Holmes'] -is K,['K'] -Watson no,['means'] -stupidity in,['my'] -few drops,['of'] -the lining,|['of', 'The']| -were ordered,['to'] -villa with,['a'] -come down,|['the', 'in']| -whispered something,|['in', 'to']| -believe By,['the'] -a dazed,['face'] -and fears,['she'] -experience that,|['railway', 'the']| -should step,['into'] -his baggy,['trousers'] -unwound the,['handkerchief'] -I see,|['a', 'that', 'the', 'you', 'No', 'your', 'my', 'from', 'upon', 'it', 'no', 'But', 'continued', 'know', 'nothing']| -years that,|['I', 'he']| -attempt at,['recovering'] -son's though,['not'] -this earth,['would'] -I set,|['myself', 'a', 'to']| -marriage legal,['papers'] -advice have,['done'] -into convulsive,['sobbing'] -the streets,|['in', 'of', 'It', 'which']| -time stated,['I'] -a lens,['and'] -matter Lady,['St'] -Doctor I,|['shall', 'have']| -evening but,['the'] -man Dr.,['Roylott'] -an exclamation,['from'] -his Lascar,['confederate'] -Some too,['have'] -human body,['is'] -at Trincomalee,['and'] -sole in,['order'] -surprise I,['do'] -yourselves in,['at'] -dressing-gown When,['he'] -didn't want,['to'] -will pay,['it'] -has disturbed,['you'] -April in,['the'] -insanely in,['love'] -blunt pen-knife,|['in', 'I']| -to-day." She,['stood'] -bedrooms the,['first'] -out his,|['legs', 'chest', 'false', 'snuffbox', 'story', 'long', 'own', 'wrinkles', 'hand', 'existence']| -first Pray,['give'] -a thin,['line'] -weeks I,['shall'] -reeds which,['lined'] -readily assume,['Pray'] -prevent He,['said'] -One is,|['to', 'that']| -was ascertaining,['whether'] -ferocious quarrels,['with'] -in places,['over'] -it across,|['the', 'and', 'from', 'to']| -anything had,|['no', 'turned']| -double line,|['a', 'of', 'which']| -the moonless,['nights'] -has very,|['carelessly', 'kindly']| -I hastened,['here'] -action without,['a'] -I ran,|['forward', 'off', 'down', 'to', 'a']| -points a,['singular'] -the mention,['of'] -breathing in,['the'] -glass Twenty-nine,['I'] -appointment with,|['me', 'someone', 'But', 'no']| -little dried,['orange'] -rich man,['During'] -never happy,['at'] -you You,|['have', 'shave', 'should', 'bring', 'knew', 'can', 'are', 'will']| -lying senseless,['with'] -the card-case,['is'] -heart She,['held'] -soon made,['up'] -newly come,['back'] -was naturally,|['my', 'of', 'annoyed']| -watch me,['for'] -me Bankers,['safes'] -were within,|['a', 'that']| -he lost,['his'] -prompt for,['this'] -near There,['was'] -shouted beside,['myself'] -ventilator too,['but'] -from an,|['envelope', 'old', 'afternoon']| -were surprised,['to'] -presently was,['about'] -from at,|['ease', 'least']| -similar cases,|['which', 'though']| -chat with,['me'] -to produce,['the'] -the Rucastles,|['as', 'go', 'went']| -to Scotland,['Yard'] -shade of,|['red', 'colour', 'blue', 'electric']| -in others,['On'] -and could,|['go', 'therefore']| -prospecting in,['Arizona'] -turn our,|['dinner', 'minds']| -turn out,['to'] -you Bradstreet,['Certainly'] -McCarthy is,['condemned'] -against you,|['months', 'I']| -bound tightly,['round'] -of despair,['If'] -writhed his,['face'] -ladies fancies,|['you', 'must']| -dark coat,['such'] -eye down,['it'] -notable feature,['about'] -those hysterical,['outbursts'] -man with,|['a', 'such', 'his', 'the', 'so', 'rounded', 'whiskers', 'naked', 'grizzled']| -was possessed,['of'] -door had,|['hardly', 'been']| -in begging,['in'] -see more,['than'] -governess I,['shall'] -to Europe,['and'] -door has,['given'] -night for,|['seven-and-twenty', 'their', 'a', "it's"]| -no time,|['for', 'That', 'to']| -died just,['two'] -very instructive,['in'] -has worn,['this'] -deduction to,['say'] -air like,['a'] -middle-aged has,['grizzled'] -downstairs and,['the'] -upward and,|['the', 'his']| -Station we,['saw'] -cried But,['I'] -another vacancy,|['open', 'on']| -Jabez Wilson,|['here', 'started', 'laughed', 'mopping', 'said', 'and', 'Why']| -it without,['further'] -window where,['Boots'] -several voices,|['no,']| -planning the,['capture'] -last interview,['was'] -as clearly,['as'] -been famous,['in'] -from all,|['quarters', 'gossip']| -or dark,['red'] -risen and,['tucked'] -train to,|['Hereford', 'Waterloo', 'the', 'Eyford']| -lay with,['his'] -tut tut,['sweating rank'] -him Had,['he'] -Yet his,['actions'] -always send,['their'] -repented of,['it'] -little huffed,['Which'] -recorded still,['the'] -painful and,|['lingering', 'prolonged']| -and thrusting,['this'] -is drawn,['at'] -him and,|['that', 'read', 'what', 'he', 'any', 'his', 'a', 'let', 'even', 'returned', 'the', 'usually', 'instantly', 'occasionally', 'we', 'I', 'tried', 'presently', 'tore', 'for', 'she', 'finding', 'there', 'after']| -the smiling,['and'] -his right,|['forefinger', 'hand', 'foot', 'shirt-sleeve', 'little']| -as brother,['and'] -precise fashion,['I'] -a telephone,['projecting'] -and settled,['upon'] -be exaggerated,['This'] -near Boscombe,['Pool'] -you you,|['did', 'were', 'can', 'scoundrel', 'may', 'be', 'would']| -was comparatively,['modern'] -manner I,['fancy'] -sure left,['the'] -remarked how,['worn'] -and empty,['beside'] -which met,|['the', 'our']| -was deeply,['moved'] -long time,|['he', 'in', 'we', 'When', 'for']| -engineers coming,['to'] -A dull,['wrack'] -her over,|['in', 'with', 'for']| -he swept,|['off', 'the']| -hurried away,['had'] -at Swindon,['and'] -says DEAR,['MR'] -to defend,['himself'] -mysterious assistant,['and'] -standpoint fail,['to'] -London It,['is'] -variable geology,['profound'] -face sharpened,['away'] -foresight since,['he'] -background which,['would'] -dnouement of,['the'] -as matters,['stand'] -nearly fifteen,['years'] -of treachery,['never'] -another and,['a'] -possible so,['I'] -end may,['have'] -average commonplace,['British'] -with compunction,['at'] -How did,|['you', 'your']| -and dried,['sticks'] -window when,|['the', 'out']| -new case,['and'] -business in,|['my', 'the']| -facilitate matters,['immensely'] -the three!,['I'] -London you,['will'] -and heavily,|['He', 'veiled']| -man cast,['his'] -had plush,['upon'] -Three gone,['before'] -he showing,['me'] -nervous disturbance,['in'] -a policeman,|['within', 'who', 'or']| -solid gold,['That'] -business is,|['the', 'mostly']| -Yet when,['I'] -business since,['you'] -point However,['I'] -consults her,['ledgers'] -a friend's,['house'] -are eligible,|['Apply', 'yourself']| -read Holmes,['so.'] -aristocratic pauper,['but'] -morning train,|['to', 'There']| -chin and,|['a', 'by', 'the']| -has always,|['fallen', 'answered', 'given']| -I interrupt,['you'] -sudden effort,['straightened'] -pausing only,['at'] -pen-knife I,['said'] -destroyed. said,['he'] -intimate friend,['and'] -my confidence,|['He', 'now']| -should ask,['his'] -chin which,['rolled'] -being fully,['dressed'] -opening the,['door'] -get farther,['back'] -him with,|['a', 'this', 'sleepy', 'the', 'theft', 'my']| -was what,|['they', 'the', 'use']| -surprised if,|['they', 'that', 'this']| -male relatives,['And'] -this mask,['continued'] -that note,['Mr'] -Well he,|['said', 'has']| -sunlight but,['since'] -moonshine I,['saw'] -the Amoy,['River'] -so. In,['dress'] -had sprung,|['out', 'from']| -certainly the,|['last', 'charm']| -inspector you,['have'] -both instantly,['although'] -holes And,['now'] -bowing in,['a'] -clean cut,['by'] -end and,['two'] -examined and,|['retained', 'results']| -sat as,['I'] -come and,|['the', 'visit', 'I']| -sat at,|['my', 'her']| -must leave,|['that', 'you']| -the lawn,|['That', 'I', 'had', 'neither', 'crossed', 'into', 'in', 'and']| -spent some,['time'] -stout official,['had'] -have recourse,['to'] -claim me,['until'] -companion with,['despair'] -exclaimed at,['last'] -lovers by,['making'] -grey dressing-gown,['his'] -Mister Sherlock,['Holmes'] -as will,['carry'] -clears gradually,['away'] -difficulties Sherlock,['Holmes'] -Mr and,['Mrs'] -dark place,['and'] -it We,|['have', 'called', 'used', 'shall']| -amateur that,['I'] -voices one,['answering'] -I There,['is'] -fifty-guinea fee,|['without', 'of', 'and']| -vanish then,['the'] -following out,['those'] -was shown,|['up', 'by', 'into', 'out']| -asked this,['apparition'] -and take,|['him', 'it']| -that deadly,['black'] -I shan't,['tell'] -pressing my,['hand'] -to poor,['folk'] -plainer it,['becomes'] -the sheets,['for'] -sir. And,['no'] -my ear,|['and', 'I', 'is', 'again']| -when will,['you'] -to name,|['a', 'it']| -are windows,['in'] -my peculiar,['experiences'] -joy was,['as'] -knot of,|['flushed', 'roughs']| -must sit,|['in!"', 'without']| -missed his,['path'] -situation I,['advertised'] -wrote hurriedly,['It'] -and ,[''] -your services,['but'] -he was,|['employing', 'glad', 'obliged', 'borne', 'seized', 'playing', 'watching', 'young', 'handy', 'a', 'never', 'running', 'remarkable', 'very', 'alive', 'of', 'Even', 'quite', 'only', 'saying', 'on', 'not', 'going', 'in', 'delirious', 'averse', 'face', 'Mark', 'hot', 'walking', 'within', 'possessed', 'able', 'reported', 'angry', 'sober', 'less', 'afraid', 'sitting', 'farther', 'away', 'deeply', 'at', 'to', 'known', 'allowed', 'pulled', 'now', 'left', 'fairly', 'bringing', 'carrying', 'doing', 'unable', 'exceedingly', 'looking', 'still', 'writing', 'all', 'soon', 'keeping', 'gone', 'too', 'removed', 'dissatisfied', 'so', 'off', 'with', 'safe', 'joking', 'and', 'the', 'convinced']| -before they,|['came', 'discovered']| -in patience. NEVILLE.,['Written'] -missed him,['then'] -can then,['remove'] -an instep,['where'] -carriage the,|['door', 'night']| -large square,['block'] -forward fell,['down'] -they made,['their'] -girl who,|['waited', 'is']| -personally interested,['in'] -unlikely perhaps,['you'] -lie down,['there'] -tree until,['he'] -vagabond in,['the'] -wheels and,['the'] -developed into,['a'] -without betraying,['one'] -were those,['of'] -of hers possibly,['her'] -old country-houses,['A'] -crime in,['its'] -coming together,['and'] -but each,['time'] -unheeded upon,['his'] -constructed a,['sort'] -the black,|['cloud', 'shadows', 'ceiling']| -culprit There,['are'] -news of,|['the', 'her', 'this']| -fire to,|['the', 'go']| -find out,|['showed', 'about', 'This']| -gained out,['of'] -shall fear,['that'] -away with,|['a', 'me', 'the', 'him', 'Mr', 'them', 'you']| -the jewels,['which'] -rather useless,['since'] -for dad,['is'] -his clinched,['fists'] -a minute,|['for', 'or', 'grind']| -Street with,['hardly'] -a poky,['little'] -to observe,|['that', 'it', 'if', 'Watson']| -his bills,['were'] -fell upon,['his'] -of metal,|['dangling', 'had', 'told']| -secure on,['account'] -Heaven bless,['you'] -Cuvier could,['correctly'] -up into,['the'] -papers the,['ring'] -came but,['she'] -system is,['shattered'] -gained the,|['trifling', 'cover']| -the cathedral,['and'] -clear that,|['the', 'that', 'there', 'she', 'Mrs']| -her self-control,['she'] -cripple who,['lives'] -lovely young,['women'] -the whole,|['of', 'crowd', "he's", 'country', 'time', 'affair', 'thing', 'business', 'success', 'matter', 'incident', 'property', 'day', 'riverside', 'place', 'it', 'case', 'house', 'story', 'way', 'transaction', 'machinery', 'with', 'they']| -knew his,['every'] -old country-house.,['my'] -features and,|['his', 'figure']| -a railway,['accident'] -definite in,['May'] -a gipsy,['had'] -for starting,['a'] -remarkable in,|['its', 'having']| -Lee It,['seems'] -the brisk,['manner'] -imagine It,|['seemed', 'is']| -the pleasant,['smell'] -still remembered,['in'] -That however,|['was', 'I']| -May I,|['see', 'ask']| -of Hugh,['Boone'] -mouth of,['a'] -round but,['none'] -lawyer took,['it'] -a fringe,['of'] -was enough,|['I', 'for', 'to']| -the stroke,['of'] -be for,['you'] -Where is,['your'] -you shift,['your'] -yet there,|['was', 'never', 'are']| -possible will,['excuse'] -been employed,['in'] -open which,['entitles'] -then and,|['the', 'what', 'be', 'there', 'quick', 'my', 'we', 'you']| -preventing her,['from'] -high he,['remarked'] -a small,|['g', 't', 'street', 'sliding', 'study', "pawnbroker's", 'man', 'railed-in', 'corridor', 'one', 'lake', 'factory', 'estate', 'brass', 'brazier', 'parcel', 'deal', 'bedroom', 'trade', 'angle', 'rain', 'office-like', 'slip', 'cut', 'card', 'public-house', 'thin', 'case-book', 'wooden', 'saucer', 'dog', 'opening', 'jet', 'place a', 'square', 'panel', 'clump', 'wiry', 'portion', 'bearded', 'outhouse', 'table']| -unfinished finished.",['the'] -innocence and,['who'] -amethyst in,['the'] -little paradoxical,['it'] -pheasant a,['pt'] -one always,['appeared'] -long frock-coat,['and'] -|then, is|,['my'] -dog-cart to,['the'] -given and,['by'] -stride had,['the'] -know something,['of'] -grime which,['covered'] -mother it,['bodes'] -funny cried,['our'] -laughter cannot,['see'] -pew of,['the'] -vagueness to,['the'] -a tidy,['business'] -so During,['two'] -both come,['What'] -very horror,['of'] -heads than,['yours'] -they doing,['living'] -use of,|['disguises', 'the', 'an', 'our']| -Doctor murmured,['Holmes'] -the little,|['man', 'newspaper', 'area', 'that', 'things', 'printed', 'mystery', 'girl', 'town', 'disc', 'fellow', 'opening', 'figure', 'dim-lit', 'door', 'Berkshire', 'problem', "god's", 'I', 'glimpse', 'money', 'office', 'red', 'slit']| -once before,|['ever', 'our']| -and puzzled,['now'] -Hunter not,['been'] -with diligence,['that'] -him Listen,['to'] -fancy of,|['that', 'my']| -fat hands,['out'] -laugh it!",['I'] -pew on,['the'] -had 4,['pounds'] -After that,['came'] -oscillates and,['the'] -also come,['into'] -it But,|['to-day', 'that', 'I', 'have', 'never']| -brownish speckles,['which'] -o'clock this,['morning'] -maid who,|['opened', 'is', 'had', 'has']| -money settled,['on'] -had I,|['understand', 'known', 'been', 'believe', 'set', 'the', 'knew', 'am']| -Stark had,['said'] -sharply across,['at'] -named Hosmer,['Angel'] -obeyed to,['the'] -that for,|['strange', 'you', 'you.', 'he', 'ten', 'the']| -here he,|['comes', 'asked', 'whispered']| -seriously compromise,['one'] -pawnbroker's and,['having'] -who entered,|['was', 'As']| -Arthur in,['prison'] -essential Miss,['Stoner'] -had a,|['country', 'particularly', 'little', 'great', 'shade', 'dozen', 'slate-coloured', 'considerable', 'feeling', 'very', 'wild', 'small', 'garden', 'single', 'long', 'writ', 'friend', 'good', 'mere', 'peculiar', 'handkerchief', 'slight', 'claim', 'decline', 'talk', 'wooden', 'fear', 'mirror', 'pretty']| -ink can,['see'] -shoulder He,['sprang'] -high roof-tree,['of'] -whole animal,['by'] -note I,['had'] -time the,|['matter', 'circumstances', 'influence', 'whole']| -proprietor a,['horsey-looking'] -a flaw,['however'] -more heinous,['If'] -who agrees,['with'] -for Winchester,['to-morrow'] -Clair was,['doing'] -woven round,['him'] -service in,['the'] -are pierced,['for'] -had made,|['a', 'an', 'it', 'so']| -Doctor we've,['done'] -disappointed There,['was'] -light glimmered,['dimly'] -with wooden,|['berths', 'boards']| -scene he,['could'] -an inquiry,['on'] -valuable gem,['known'] -that have,|['ever', 'got']| -of better-dressed,['people'] -can for,['him'] -feet it,['comes'] -before now,|['Had', 'for', 'and', 'if']| -must on,['no'] -her superb,['figure'] -think so,|['I', 'too']| -unnecessary to,['put'] -had cleared,|['in', 'it']| -heard so.,['little'] -them has,['the'] -upon me,|['this', 'My', 'now', 'these', 'had', 'and', 'There', 'for', 'I', 'slowly', 'Already', 'but', 'at', 'with', 'How']| -upon my,|['friend', 'companion', 'doing', 'own', "uncle's", 'father', "father's", 'ear', "companion's", 'wrist', 'conscience', 'books', 'peculiar', 'professional', 'two', 'spine', 'approaching', 'hand', 'accompanying', 'literary', 'face', 'experience']| -servant-maids joined in,['a'] -border he,['threw'] -since we,|['were', 'know', 'see']| -to side,['A'] -her approaching,['wedding'] -some skirmishes,['but'] -them had,['wives'] -and distorted,['child'] -row three,['of'] -winding track,['which'] -then remove,['Miss'] -thumb used,['to'] -a metallic,['clang'] -us makes,['the'] -Greenwich Two,['years'] -them better,['than'] -until seven,["o'clock"] -is shattered,['Mr'] -said Of,['course'] -paused immediately,['outside'] -a consideration,['of'] -and easy,['demeanour'] -retire upon,['a'] -cried grasping,['Sherlock'] -pain and,|['her', 'fear', 'I']| -staying in,['lodgings'] -died I,['felt'] -throbbing painfully,['and'] -heads of,|['their', 'your']| -face fell,['immediately'] -Turner made,['his'] -custom said,['he'] -it but,|['really', 'it', 'also', 'without', 'there', 'I']| -that She,['smiled'] -been there,|['and', 'when']| -minutes during,['which'] -barbaric opulence,['which'] -Ballarat was,['the'] -are mad,['Elise!'] -senility I,['whispered'] -bell-rope remarked,['Holmes'] -yet it,|['would', 'appeared']| -sum should,['be'] -article for,['example'] -are two,['points'] -he throw,['no'] -the Duke,|['of', 'say']| -surgeon is,['a'] -|50,000 pounds|,['at'] -mind anything,['quite'] -yet if,['it'] -briar pipe,['between'] -go through,['you'] -to themselves,['and'] -strong factor,['in'] -contents and,['drew'] -the sleuth-hound,['Holmes'] -and his,|['hands', 'keen', 'tie', 'black', 'languid', 'extreme', 'black-letter', 'trick', 'eyes', 'gaze', 'son', 'right', 'singular', 'father', 'mind', 'enormous', 'long', 'business', 'reason', 'dislike', 'successors', 'family', 'elbows', 'watch all', 'hideous', 'face', 'lank', 'arms', 'force', 'head', 'breadth', 'high', 'chin', 'feet', 'bearing', 'age', 'wedding', 'hand', 'hat', 'features', 'worn', 'opponent', 'finger-tips', 'wife']| -only known,['the'] -me such,['complete'] -Holmes sir,['said'] -which bordered,['our'] -perform myself,['that'] -their deficiencies,['If'] -waited by,['the'] -hundred in,['notes'] -tomboy with,['a'] -these very,|['carefully', 'gipsies']| -it flashed,['through'] -en bloc,['in'] -listening to,['this'] -Well Watson,['we'] -1869 or,['1870'] -84 when,['my'] -windows would,['be'] -hear it,|['is', 'he', 'and', 'also.', 'for']| -and quiet,['and'] -note only,['reached'] -I motioned,['for'] -man's favour,["Don't"] -off upon,|['the', 'his', 'her']| -say Don't,['you'] -JABEZ WILSON,['in'] -existence THE,['ADVENTURE'] -That was,|['last', 'to', 'the', 'always', 'a']| -roads before,['you'] -matter to,|['an', 'know', 'the', 'me', 'your']| -allow that,['there'] -a right,|['to', 'angle']| -one occasion,['in'] -dealing with,['a'] -assume as,['a'] -gone by,['that'] -enter upon,['your'] -waited outside,['the'] -By Jove,|['he', 'Peterson']| -your stepfather,|['surely', 'returned', 'what', 'it', 'comes']| -success would,['be'] -its numerous,['glass-factories'] -4th rooms,['8s.'] -been attacked,['by'] -thrust her,['back'] -lip Well,['I'] -I remembered,['that'] -this American,['be'] -of astrakhan,['were'] -that is ,['McCarthy'] -behind her,|['landau', 'the', 'would']| -marble you,['have'] -Ryder's cry,['of'] -awakened by,|['the', 'some']| -know a,['little'] -note into,['my'] -then run,['down'] -will fly,['Mr'] -and nearly,['fallen'] -at his,|['gigantic', 'new', 'skirts', 'face', 'wife', 'black', 'business', 'own', 'very', 'rooms', 'courage', 'time', 'desk', 'accuser', 'approach', 'visitor', 'heels', 'hair', 'hands', 'long', 'words', 'temples']| -processes Such,['paper'] -dead body,|['stretched', 'of']| -a word,|['spoken', 'I', 'of', 'with', 'became', 'to', 'he', 'as', 'the', 'without', 'or', 'my', 'about']| -tell Black,['Swan'] -should settle,['the'] -The larger,['crimes'] -cloak Now,['where'] -positive that,['the'] -Alice a,['few'] -really takes,['the'] -clang heard,['by'] -for worlds,['But'] -bureau had,['been'] -bright crisp,['February'] -have planned,['the'] -in strange,['fantastic'] -struggled with,['him'] -moments afterwards,['the'] -at him,|['in', 'as', 'by', 'The', 'again', 'are']| -affectionate and,['warm-hearted'] -for ten,|['years', 'minutes']| -the doctor's,|['advice', 'room', 'acquaintance', 'voice']| -make myself,|['as', 'plain', 'useful.']| -other matters,['you'] -regards your,['hair'] -its extreme,['limits'] -chill wind,['blowing'] -not Hatherley,['Farm'] -camp life,['in'] -statement which,['had'] -dinner he,['not'] -position and,['the'] -more upon,['his'] -instant among,['the'] -of sport,['and'] -the pensioners,['upon'] -will question,['me'] -of horses,['hoofs'] -I'm sure,['I'] -what time,['will'] -ground "let us,['put'] -exceptional advantages,['in'] -and sitting,|['still', 'beside']| -when his,|['father', 'blow']| -three days,|['yet', 'at', 'in']| -pounds standing,['to'] -your friends,['of'] -years of,|['age', 'our', 'waiting']| -A twitch,['brought'] -Mr Breckinridge,['he'] -what were,|['we', 'they']| -In dress,['now'] -wooing and,|['with', 'wedding']| -and seeing,['an'] -forth the,['wild'] -its value,['can'] -weak but,['I'] -his bloodless,['cheeks'] -I laughed,|['until', 'very']| -the prisoner,|['God', 'passionately', 'the', 'gone']| -the brute,['broke'] -mankind through,['the'] -columns of,|['water', 'a']| -end Faces,['to'] -job to,['pay'] -had held,['out'] -petty way,['as'] -chimney are,['impassable'] -were guilty,['why'] -of turning,['in'] -Then something,['suddenly'] -him living,['but'] -premises but,['without'] -be improving,['his'] -knowledge of,|['London', 'the', 'tobacco', 'your', 'pre-existing']| -ran right,['across'] -which as,|['it', 'I']| -So I,['think'] -worn hollow,['in'] -yes! he,['is'] -That represents,['the'] -a common,|['experience', 'signal', 'thing', 'enough', 'subject', 'loafer']| -been waiting,|['this', 'so']| -aid is,['always'] -He took,|['down', 'a', 'two', 'off', 'up', 'the']| -holding up,['a'] -discrepancy about,['his'] -the rug,['and'] -years are,['eligible'] -a field,|['for', 'which']| -Holder There,['would'] -marks of,|['many', 'moisture', 'any', 'four']| -and fell,['into'] -profession and,['I'] -win in,['the'] -and felt,['that'] -regular prison,['bath'] -learn nothing,['from'] -The name,|['is', 'was']| -was lying,|['among', 'senseless', 'empty']| -forgotten. your,['forgiveness'] -is alive,|['yes,', 'and', 'Holmes']| -do. said,['I'] -lay to,['his'] -poor devil,['who'] -together beneath,['the'] -again the,['introduction'] -pounds was,['the'] -them There,|['was', 'were', 'can']| -doubt Doctor,['he'] -newer than,['the'] -you are,|['interested', 'good', 'one', 'I', 'to', 'eligible', 'personally', 'as', 'a', 'brought', 'coming', 'typewritten', 'not', 'so', 'always', 'bound', 'never', 'lost', 'threatened', 'too', "You'll", 'well', 'sure', 'now', 'found', 'joking', 'unable', 'Peterson', 'Mrs', 'And', 'the', 'shivering', 'perfectly', 'at', 'ready', 'likely', 'hinting', 'tired', 'both', 'going', 'said', 'and', 'in', 'like', 'nearing', 'trivial', 'impressed', 'right']| -not the,|['point', 'nature', 'pair', 'first', 'wife', 'gritty', 'only', 'bearing', 'sole', 'situation']| -it self-lighting,['Your'] -you cried,['the'] -your deductions,['and'] -nine The,['streets'] -human heart,['You'] -double-breasted coat,['while'] -so. Now,['turn'] -gas-jet Are,['you'] -there. far,['from'] -set myself,['to'] -night He,|['put', 'will']| -lap lay,['the'] -me remark,['that'] -From time,['to'] -and haggard,['Sherlock'] -you put,|['to', 'it?']| -her baby,['an'] -my bouquet,['over'] -lining had,['been'] -be burgled,['during'] -curling up,['from'] -I begged,['a'] -I A,['little'] -Clair is,['now'] -I said,|['And', 'he', 'Of', 'yesterday', 'you', 'be', 'then', 'no', 'nothing']| -your commonplace,['featureless'] -I I,|['am', 'shall', 'have', 'opened', 'think', 'found']| -Restaurant and,["McFarlane's"] -those deductive,['methods'] -be useful,['to'] -lawn into,['the'] -open the,|['door', 'window', 'shutters', 'lower']| -feature She,['impressed'] -and light-coloured,['gaiters'] -The marks,['are'] -however to,|['its', 'reason', 'understand']| -the light,|['did', 'was', 'of', 'it', 'brown', 'shining', "It's", 'among', 'I', 'and', 'shone', 'holding', 'duties', 'green']| -some glimpse,['of'] -affair and,['of'] -my daughter,|['with', 'She']| -floating near,['the'] -boy in,['buttons'] -green unhealthy,['blotches'] -will without,['hindrance'] -was pale,['and'] -Testament that,['whatever'] -good thing,['too!'] -Hare alone,['could'] -his summons,['to'] -"IRENE NORTON,['ne'] -other characteristics,|['but', 'to', 'with']| -carbuncle which,|['shone', 'appeared']| -skill and,|['would', 'his']| -asked facing,['round'] -crumpled letter,['across'] -a chronicler,['still'] -one as,|['would', 'in', 'we']| -play will,['be'] -peeped through,['the'] -touch me,['with'] -more readily,['upon'] -Clay's ingenious,['mind'] -with some,|['apparent', 'warmth', 'great', 'details', 'bitterness', 'misgivings', 'coldness']| -say his,['age'] -held information,['in'] -so. She,['has'] -Windibank your,['stepfather'] -confidence in,['Mr'] -of crystallised,['charcoal'] -almost gone,['and'] -black bar,['across'] -example What,['a'] -volume from,|['his', 'a']| -died of,|['then', 'pure']| -methods would,['look'] -war he,['fought'] -to break,|['in', 'the', 'away', 'it']| -sharply You,['can'] -undid my,['trunk'] -campaign throbbed,['with'] -is necessary,|['that', 'to']| -I cannot,|['recall', 'confide', 'do', 'waste', 'tell', 'imagine', 'say', 'see', 'possibly', 'understand', 'call', 'allow', 'persuade', 'swear', 'with', 'find', 'quite', 'blame']| -action likely,['to'] -your foot,['over'] -European history,|['promise,"']| -dog is,['let'] -rage and,['he'] -was recommended,['to'] -A formidable,['array'] -die under,['my'] -in buttons,['entered'] -side tapped,['on'] -probably by,['the'] -the salt,['that'] -the beginning,['of'] -looked across,['at'] -is water,['in'] -fire and,|['looked', 'laughed', 'to', 'favour', 'there', 'grinning', 'we', 'composed']| -indulgently You,['have'] -bed trembling,['all'] -metallic sound,['Could'] -example that,['I'] -answer madam,['not'] -probably be,['some'] -Suddenly amid,['all'] -arrangements are,['cold'] -serious It,['is'] -fainted at,['the'] -impetuous volcanic I,['was'] -morning Lestrade,['observed'] -once said,['she'] -was followed,['by'] -of Trafalgar,['Square'] -thoroughfare Holmes,['left'] -the discoloured,['patches'] -could grasp,['it'] -hurried glimpse,['of'] -settling down,['to'] -handy and,|['would', 'I']| -little awkward,['for'] -locked your,['doors'] -preposterous English,['window'] -F.H.M. Now,['my'] -meant to,['attract'] -heavier said,['she'] -out to,|['him', 'you', 'the', 'my', 'me', 'Calcutta', 'them', 'see', 'tell', 'Streatham', 'be']| -data data,['he'] -side Sometimes,['Holmes'] -more fantastic,['than'] -not to,|['have', 'interfere', 'see', 'wash', 'answer', 'be', 'abuse', 'know', 'propound', 'marry', 'disturb', 'me', 'miss']| -it sticking,['up'] -cold blood,['far'] -Did he,['make'] -of pennies,['varied'] -commencement and,['I'] -suddenly collapsed,['although'] -features for,['he'] -the moonshine,['I'] -the Freemasonry,["won't"] -no two,['of'] -skill can,['inform'] -kept you,['waiting'] -conjecture which,['seemed'] -imposing with,['a'] -story seemed,['to'] -face into,|['his', 'the']| -in coming,|['from', 'in']| -pool midway,['between'] -fall in,['agricultural'] -self-reproach and,['contrition'] -prove useful,['so'] -an eye,|['on', 'you']| -advertisement columns,['of'] -assist at,['the'] -went prospecting,['in'] -important young,['man'] -the celebrated,['Mr'] -Atlantic An,['important'] -what to,|['do', 'say', 'think']| -came here,|['It', 'and']| -street We,['got'] -tracks which,['I'] -by that,|['right', 'single', 'It', 'note', 'time']| -and that,|['one', 'woman', 'you', 'of', 'my', 'he', 'his', 'the', 'it', 'even', 'I', 'they', 'she', 'there', 'in', 'all', 'was', 'therefore', 'this', 'is', 'slip', 'suspicion', 'a', 'anything', 'Frank', 'we', 'if', 'your']| -her advice,['I'] -me of,|['it', 'my', 'poor']| -undoubtedly alone,['when'] -judge Lord,['St'] -with care,['and'] -for communication,['And'] -lord has,['had'] -myself My,['clothes'] -good husband,['a'] -matter of,|['the', 'fact', 'no', 'fowls', 'yours', 'less', 'business', 'form']| -gravely set,['but'] -Astonishment at,['the'] -extraordinary luck,['during'] -old maxim,['of'] -anything in,['the'] -a decline,['and'] -want you,['to'] -wait for,|['the', 'it', 'him']| -curb followed,['by'] -Stoner we,|['shall', 'must']| -have only,|['just', 'half', 'been', 'to']| -Openshaw carried,['are'] -the Bengal,['Artillery'] -your power,['by'] -steps upon,['the'] -of hair-ends,['clean'] -her St.,['Simon'] -keep a,|['roof', 'cat', 'secret']| -terms Evidence,['of'] -was mottled,['all'] -except of,['my'] -Obviously something,['had'] -and flattened,['it'] -all what,['I'] -us early,['in'] -halfway up,['his'] -fact gentlemen,['as'] -throats Outside,['the'] -erect when,['my'] -has helped,['him'] -the invention,['of'] -it also.,['but'] -seen the,|['steps', 'police', 'deed', 'will', 'machine.', 'man']| -grinning face,['at'] -the spreading,['out'] -money but,|['a', 'the']| -drink at,['work'] -blunt weapon,|['The', 'I']| -and sensible,['girl'] -so glad,['that'] -that there,|['are', 'is', 'was', 'had', 'should', 'can', 'must', 'may', 'were', 'might', 'would', 'you']| -affect the,['kingdom'] -Name the,['sum'] -visitor gave,['a'] -suspicion of,['treachery'] -was flight,['when'] -my companion's,|['processes', 'knees', 'sleeve', 'mind']| -space of,['a'] -this hour,['of'] -men Be,['one'] -Adler to,|['send', 'say']| -twelve o'clock,['train'] -once saw,['him'] -was brought,|['up', 'in']| -passage outside,['was'] -dress nor,['seen'] -judgment the,['fourth'] -clean-shaven and,['sallow-skinned'] -now He,['will'] -were observed,['to'] -for something,|['passing', 'more']| -table in,|['front', 'the']| -Lascar stoutly,['swore'] -the defending,['counsel'] -another sound,['became'] -reason behind,['thought'] -his opponent,|['at', 'So']| -meet an,['American'] -papers are,['as'] -and coldly,['grasped'] -high spirits,['It'] -business then,['said'] -he does,['something'] -meet at,['the'] -character with,|['a', 'immense']| -your lodgings,['Good-bye'] -that feeling,|['away', 'At']| -and send,['down'] -tend to,['make'] -he smoothed,['one'] -leather is,['scored'] -snap Easier,['the'] -After all,|['I', 'if']| -observed there,['came'] -it never,|['to', 'really']| -sweetly It,['is'] -thoughtful a,['man'] -letters who,['had'] -bill at,['one'] -somewhere in,['the'] -is even,['more'] -murky river,['flowing'] -she bequeathed,['to'] -dweller once,['more'] -explanation And,['then'] -Dr Becher,|['a', 'is']| -paper label,['with'] -are next,['to'] -else There,['you'] -Horsham It,['is'] -letters why,['should'] -a patient,|['for', 'as']| -not dad,['she'] -entirely cleared,['up'] -all worn,['to'] -of human,|['plans', 'experience']| -o'clock but,['the'] -having cleared,|['from', 'the']| -waved his,|['hand', 'hands']| -only notable,['feature'] -track The,['idea'] -dowry will,['run'] -|back me,|,['Helen'] -little faster,['and'] -actions But,['for'] -to blows,['for'] -backward cocked,['his'] -whole of,|['her', 'next', 'that']| -This fellow,|['Merryweather', 'is', 'a', 'will']| -mind when,|['a', 'after']| -spirits again,['for'] -forward to,|['open', 'protect', 'seeing', 'meet']| -understand which,['is'] -what will,['you'] -called away,['On'] -Voil tout,['Miss'] -of 1100,['pounds'] -them close,['in'] -not wonder,|['at', 'that']| -his habits,['His'] -my grip,|['he', 'was', 'loosened']| -features than,['that'] -will you,|['look', 'call', 'take', 'do', 'say']| -shining waterproof,['told'] -flames but,['not'] -reveal what,['you'] -to any,|['man', 'of', 'piece', 'one', 'such', 'chance', 'expense', 'creature']| -not sat,['again'] -to and,['fro'] -empty beside,['it'] -features that,['it'] -wiser Had,['this'] -of fuller's-earth,['in'] -not say,|['so', 'a', 'upon', 'that', 'another']| -signalled to,['him'] -room help,['us'] -soon as,|['it', 'their']| -the tobacconist,['the'] -quality Look,['at'] -you He,['turned'] -clattered upon,['his'] -lock said,|['Holmes', 'he']| -tenable what,['other'] -his art,['than'] -himself covered,['those'] -to single,['out'] -been trivial,['in'] -Lebanon Pennsylvania,['U'] -like the,|['devil', 'bill', 'mouth', 'forecastle', 'neighbourhood', 'bark', 'claws', 'genii', 'buzz']| -call upon,|['you', 'me', 'a']| -father and,|['that', 'myself', 'his', 'the', 'son', 'a']| -cannot spare,['time'] -more important,['and'] -countryside away,['to'] -his Christmas,['dinner'] -his thoughts,|['We', 'before']| -manner I'll,['tell'] -fate It,['was'] -footsteps was,['heard'] -correctly describe,['a'] -had experience,['of'] -other question,['said'] -rather suddenly,['collapsed'] -won't said,['Holmes'] -Esq. of,['San'] -To be,['left'] -one wing,|['is', 'however']| -kept on,|['saying', 'worrying']| -and be,|['raising', 'in', 'brave']| -jesting tone,['but'] -expressions towards,['my'] -and by,|['the', 'evening', 'hearing', 'rare', 'its', 'him', 'rearranging']| -of hours,|['every', 'walked']| -draw so,['large'] -he will,|['without', 'be', 'explain', 'have']| -animated conversation,['with'] -companion by,['the'] -produced by,['cocking'] -that only,['half'] -startling in,['its'] -did what,|['he', 'she', 'I']| -and upon,['the'] -would come,|['cheap', 'here', 'upon', 'of']| -thing clear,['to'] -cases but hullo,['here'] -every subject,['which'] -speaking only,['half'] -peculiar qualities,['which'] -frill of,['black'] -remains therefore,['to'] -the colonel,|['but', 'himself', 'answered', 'fumbled', 'By', 'first', 'ushered', 'looking', 'to', 'needed', 'was', 'received']| -never to,|['mind', 'speak', 'receive', 'leave', 'learn']| -no precautions,['can'] -does this,['mean'] -very particularly,['to'] -the dog-whip,['swiftly'] -of Upper,['Swandam'] -paper do,['you'] -foot was,['always'] -have its,['way'] -fellow though,['an'] -good article,['there'] -care for,|['Dr', 'it']| -fastened for,['the'] -Wigmore Street,['into'] -Finally he,|['returned', 'walked', 'took']| -unusual and,['even'] -own room,['which'] -hall behind,['her'] -already formed,['your'] -architects or,['on'] -because I,|['have', 'heard', 'was', 'felt', 'need']| -might cross,['his'] -was surely,['the'] -half of,|['the', 'a']| -sparkles Of,['course'] -clever and,|['ruthless', 'dangerous']| -am to,|['be', 'remain', 'go', 'do']| -burrowing for,['I'] -enough but,['there'] -boy but,['concentrate'] -sure your,['good'] -towards him,['dropped'] -their last,['interview'] -the chisel,['and'] -footing for,['some'] -opal tiara,['I'] -particulars It,['seems'] -to came,['here'] -Too large,['for'] -but you,|['do', 'understand', 'have', 'did', 'will', 'can', 'were', 'thought', 'are', 'know', 'would', 'remember', 'shall']| -troubled by,['the'] -a sigh,['of'] -own services,['and'] -Men It's,['worth'] -a sign,|['that', 'of']| -real bad,['and'] -visitor bore,['every'] -trap should,['be'] -to-day had,['nothing'] -the yellow,|['light', 'envelope']| -excellent explanation,['why'] -hardly knowing,['what'] -dropped them,['away'] -With that,['he'] -left He,['put'] -native-born Americans,['in'] -massive masonry,['Hum'] -Which is,['it'] -of mine,|['to', 'that', 'And', 'here', 'said', 'I', 'apply']| -the bank,|['director', 'can', 'to', 'directors', 'she', 'moment,"', 'when']| -Jones the,['official'] -a cleaver,['said'] -It becomes,['a'] -little square,['of'] -The dear,['fellow'] -the bang,['of'] -shooting them,['down'] -my direction,['The'] -with half,['her'] -water within,['his'] -plunged at,['once'] -lit but,['the'] -an antagonist,['so'] -official detective,|['force', 'was']| -inexplicable Nothing,['could'] -makings of,['a'] -face he,|['appeared', 'lit']| -he always,|['managed', 'felt', 'glided']| -a soul,|['of', 'there', 'This']| -laughed softly,['to'] -trees That,['is'] -dozen birds,['they'] -and look,['up'] -shock And,['now'] -a sour,['face'] -myself should,['be'] -my stepfather,|['I', 'who', 'seeing', 'and']| -very day,|['so', 'or', 'that']| -It arrived,['upon'] -stairs as,['hard'] -for help?,['it'] -knots That,['and'] -pinch of,['snuff'] -a misfortune,['this'] -up together,['to'] -inquiries I,|['may', 'heard']| -diligence that,['I'] -joking he,['continued'] -right. took,['the'] -mine he,['remarked'] -the keeper,['of'] -what part,['he'] -mine I,|['shall', 'should']| -bedtime I,['had'] -dress is,['a'] -dress it,['was'] -firemen had,['been'] -Balmoral has,['been'] -else would,|['do', 'follow']| -the den,['of'] -bolted Well,['we'] -Californian heiress,['is'] -him though,['I'] -a cave,['I'] -individual must,['be'] -shown in,['one'] -frequently indulged,['in'] -were four,|['protruding', 'of']| -instant of,['wife'] -a door,|['and', 'opened', 'slammed', 'which']| -only have,|['been', 'come', 'made']| -is sure,['to'] -the moment,|['but', 'when', 'of', 'as', 'that']| -than 750,['pounds'] -one half-raised,['in'] -rose as,|['we', 'he']| -bulky boxes,|['driving', 'which']| -landscape house,['on'] -sheet upon,['the'] -bank when,['a'] -son in,['one'] -to steal,['over'] -looking in,['my'] -day as,['it'] -details remarked,['my'] -coming out,['through'] -and horrible,|['crime', 'enough']| -was fulfilled,['A'] -time though,['the'] -very useful,['they'] -avert it,['all'] -a cell,['and'] -how to,|['look', 'turn', 'get', 'walk', 'while', 'employ']| -gallows and,['the'] -advertisement Spaulding,['he'] -Watson before,['whom'] -the woman,|['II.', 'in', 'to', 'who', 'whom', 'had', 'of']| -me back,['into'] -noise like,['a'] -WILSON in,['white'] -Horner 26,['plumber'] -so continually,['from'] -dead away,['and'] -his strong-set,['aquiline'] -of work,|['and', 'There']| -finger All,['this'] -slept on,['the'] -endless labyrinth,['of'] -very possibility,['of'] -Majesty all,['fear'] -bottom my,['own'] -and observing,|['machine', 'the']| -Beside this,['table'] -night just,['as'] -out towards,['the'] -voraciously washing,['it'] -the holes,['And'] -we do,|['nothing', 'not']| -elaborate a,['story'] -what hellish,['thing'] -any on,['hand'] -dark again,['save'] -sober he,['used'] -settle down,|['they', 'to']| -look after,|['that', 'the']| -Europe I,['deserve'] -the charm,|['to', 'of']| -I blew,['its'] -evil however,['for'] -errand and,['then'] -colonel answered,['only'] -or French,['It'] -Lestrade whom,['you'] -far away,['from'] -Holmes Have,['you'] -to-day is,['possible'] -had now,['returned'] -would certainly,|['have', 'be']| -walls The,['drawn'] -unless some,['way'] -to-day in,['Gravesend'] -understand the,['situation'] -colonel received,['an'] -colonel but,['he'] -gravely I,['am'] -of money not,['less'] -ever and,|['he', 'with', 'was']| -not already,|['done', 'arrived']| -still to,['solve'] -days yet,['said'] -Hall I,['felt'] -elbow with,['a'] -were turned,['in'] -our ulsters,['and'] -aloud to,['him'] -a wife,['as'] -his chin,|['waiting', 'upon', 'sunk', 'in']| -white cheeks,['of'] -his process,['of'] -door itself,['was'] -Grimesby Roylott's,|['chamber', 'death']| -He overdid,['it'] -means which,['he'] -winding gravel-drive,['which'] -kept all,['the'] -had covered,['their'] -gone so,['far'] -whole transaction,['which'] -had surrounded,['myself'] -whole business,|['came', 'was']| -little slurring,['over'] -time they,['will'] -This man,|['has', 'strikes', 'however']| -his friends,['and'] -Holmes rushed,['at'] -fetch the,['cloak'] -cried but,['you'] -at Bordeaux,['where'] -Holmes This,['is'] -in despair,|['but', 'and', 'It']| -introduce a,['distracting'] -This may,['account'] -very tightly,['round'] -train of,['circumstances'] -mumbling out,['his'] -little brougham,['and'] -the gesture,['of'] -with every,|['fresh', 'nerve', 'evil', 'possible', 'confidence']| -into mine,['where'] -advertisement you,['can'] -wash his,['hands'] -pocket-book and,['took'] -was lounging,['upon'] -is little,|['which', 'accustomed']| -perpetual smell,['of'] -was the,|['late', 'sharp', 'relation', 'gentleman', 'most', 'thought', 'centre', 'very', 'same', 'end', 'amount', 'bisulphate', 'chain', 'stepfather', 'point', 'only', 'peculiar', 'ground', 'criminal', 'fact', 'word', 'name', 'beginning', 'organisation', 'case', 'toy', 'coarse', 'horrid', 'children', 'keeper', 'matter', 'fattest.', 'band', 'dreadful', 'cause', 'momentary', 'means', 'place', 'merest', 'clank', 'third', 'first', 'more', 'girl', 'man', 'daughter', 'disposition', 'appearance', 'key', 'huge', 'one']| -confusion I,['do'] -nose looking,['very'] -dark-coloured stuff,['with'] -an arc-and-compass,['breastpin'] -Suburban Bank,|['the', 'abutted']| -next act,['How'] -dooties just,['the'] -force which,['must'] -strongly it,['bears'] -there But,['dear'] -you on,['one'] -road He,['beckoned'] -apologise to,['him'] -the gas-light,['that'] -smallest sample,['of'] -income of,|['about', '250']| -also my,['custom'] -correct said,['she'] -Holmes insight,['that'] -recovered yourself,['and'] -hopes which,['you'] -idiot do,['but'] -glove and,['finger'] -screaming against,['the'] -to You,['cannot'] -hearing the,|['very', 'cry']| -scoundrel of,['whom'] -was Mark,['that'] -the Southampton,|['highroad', 'Road']| -adventure and,['I'] -paper where,['Mr'] -cross-legged with,|['his', 'an']| -others continue,['your'] -account of,|['his', 'you', 'the', 'it', 'who']| -blows for,['my'] -When shall,['you'] -great pleasure,['in'] -finger planted,['halfway'] -and vulgar,['enough'] -might veil,['I'] -every requirement,['I'] -statement of,['what'] -lids now,['and'] -the swish,['of'] -to-morrow With,['a'] -he putting,|['his', 'a']| -jewel-box Now,['it'] -an emigrant,['ship'] -turn over,['these'] -each side,|['third', 'In']| -me to,|['an', 'be', 'study', 'say', 'step', 'do', 'the', 'solve', 'run', 'tell', 'hide', 'pronounce', 'judge', 'come', 'approach', 'have', 'bring', 'wake', 'explain', 'believe', 'ask', 'get', 'this', 'do.', 'speak', 'a', 'go', 'introduce', 'leave', 'half', 'join', 'think', 'give', 'my', 'cut', 'observe', 'refuse', 'read', 'cease']| -client of,['the'] -your results,['reached'] -peaked cap,['and'] -Singular Occurrence,['at'] -richer I,['grew'] -lady about,['the'] -would of,['course'] -causing it,['to'] -If this,|['young', 'man', 'fail']| -now as,|['safe', 'I', 'absorbed', 'to']| -scoundrel I,['have'] -Flaubert wrote,['to'] -lips would,['fifty'] -others overlook,['If'] -soul there,['save'] -position which,['you'] -followed me,|['so', 'then', 'there', 'to']| -possible I,['made'] -evening of,['the'] -Holmes do,['tell'] -followed my,['remarks'] -this curt,['announcement'] -three hours,['or'] -which when,|['taken', 'it']| -fine big,['one'] -at Gravesend,['Well'] -equally valid,['I'] -yellow blotches,['of'] -with fiery,['red'] -good-humoured face,["You've"] -city of,['ours'] -me congratulate,['you'] -signet-ring you,['are'] -courtesy but,['he'] -drawing tut!',['he'] -buy the,|['geese', 'neighbouring']| -were dismissed,['and'] -street Looking,['over'] -row of,['sleepers'] -like advice,['but'] -chuckled and,['wriggled'] -What do,['you'] -Turner the,['daughter'] -fiver for,["it's"] -quite time,['that'] -the firelight,['strikes'] -still flatter,['himself'] -c'est tout,['as'] -But have,['you'] -over an,['angle'] -show him,['that'] -forever She,['became'] -tenant but,['still'] -and kindliness,['with'] -a highway,['robber'] -any reason,['that'] -gravity upon,['his'] -the States,|['and', 'you']| -swear with,['my'] -extremely said,['Holmes'] -eyes shone,['out'] -sundial I,['read'] -right-hand block,['was'] -whole house,|['resounded', 'was', 'in']| -joined us,['in'] -fathomed it,['or'] -Bradstreet of,['Scotland'] -happened and,['that'] -my knowledge,['that'] -call She,['left'] -need certainly,['to'] -still sharing,['rooms'] -who wrote,|['it', 'the']| -remember aright,['at'] -the verge,['of'] -other shot,['an'] -field for,|['the', 'those', 'an']| -foresight and,|['no', 'the']| -hair would,['only'] -but will,['not'] -So and,['so'] -Flora decoyed,['my'] -was transformed,['when'] -and entered,['I'] -village There,['were'] -Her violet,['eyes'] -ten days,['I'] -mother and,|['I', 'all']| -threw them,['down'] -entered As,['I'] -been twenty-seven,['years'] -but on,['the'] -conclusion Do,['you'] -pew handed,['it'] -be seized,['and'] -but of,|['course', 'such', 'an', 'his']| -swiftly and,|['in', 'as']| -weeks on,['end'] -through knew,['that'] -strange and,|['bizarre', 'impressive', 'interesting', 'unforeseen', 'painful']| -have erred,['perhaps'] -or shall,['I'] -hook and,['will'] -then you,['were'] -a crack,['in'] -wink at,['night'] -me angry,['to'] -him very,|['much', 'well']| -one point,|['on', 'which']| -bowed solemnly,['to'] -the point,|['However', 'upon', 'of', 'is', 'from', 'I', 'remarked', 'St.', 'but']| -circumstantial evidence,['pointed'] -remarkable narrative,['of'] -not wake,['you'] -neither alone,['could'] -combinations we,['must'] -though whether,['a'] -your husband,|['is', 'until']| -house any,['more'] -an American,|['millionaire', 'origin', 'and', 'Mr', 'Then', 'gentleman']| -foot-paths it,['still'] -house and,|['there', 'tear', 'seldom', 'the', 'may', 'I', 'then', 'having']| -seven when,['we'] -photograph it,['is'] -daily seat,['cross-legged'] -drawn face,['uncertain'] -a reply,['to'] -a third,|['door', 'point']| -rubbing down,['their'] -met him,|['first', 'that', 'twice', 'in', 'coming', 'hastening']| -met his,|['fate', 'death', 'end']| -girls had,['married'] -nodding myself,['when'] -less cheerful,['frame'] -Street name,['was'] -to announce,|['Miss', 'that']| -net round,['this'] -horrible doubt,['came'] -his powers,['so'] -|discovery, and|,['the'] -presumably heiress,['to'] -he picked,['up'] -old friend,|['of', 'and']| -and never,|['had', 'would', 'come', 'see']| -better time,['my'] -aright at,['the'] -came like,['a'] -among horsey,['men'] -temper so,['that'] -of Saxe-Coburg,['Square'] -You had,|['my', 'heard']| -us James,['and'] -few more,['of'] -The same,|['post', 'porter']| -honour of,['addressing'] -He chucked,['it'] -a fragment,['in'] -whether we,|['should', 'cannot']| -three! I,['soon'] -your new,['duties?'] -I recognised,['as'] -typewritten and,['revealed'] -over utterly,|['had', 'and']| -Our reserve,['of'] -swear that,['the'] -my way,|['led', 'to', 'across', 'I', 'into', 'for']| -little more,|['Just', 'quiet', 'of', 'human', 'I', 'clearly', 'closely', 'reasonable', 'before']| -may place,|['considerable', 'implicit']| -confess is,['more'] -take when,['you'] -debt you,['can'] -sound and,['that'] -ash I,['then'] -features So,['he'] -clear and,|['concise', 'that']| -scream of,|['a', 'agony']| -chronicle and,['if'] -examination of,['the'] -smoked there,['I'] -many tragic,['some'] -Tell Mary,['that'] -first with,['the'] -O Then,['he'] -own affairs,['have'] -sir he,|['gasped', 'cried']| -was handling,['just'] -me keenly,['what'] -o'clock sir.,['I'] -and nothing,|['happened', 'stranger']| -once It,['would'] -smearing my,['face'] -trespasser whom,['he'] -my sister,|['to', 'returned', 'was', 'described', 'appear', 'died']| -thing you,['owe'] -spoiled him,['Very'] -politics for,['he'] -considerably astonished,['at'] -the Tollers,['opened'] -sir for,['a'] -and implore,['me'] -so deep,['an'] -a shake-down.,['is'] -income and,['then'] -to devouring,['energy'] -were identical,['Was'] -four-wheeler which,|['happened', 'was']| -originality As,['to'] -upon any,|['other', 'of', 'point']| -of footsteps,['moving'] -and improbabilities,['the'] -where there,['is'] -left Lestrade,['at'] -up like,['a'] -or dead,['shall'] -she seems,|['indeed', 'to']| -a great,|['blue', 'hurry', 'scandal', 'sympathy', 'amethyst', 'benefactor', 'beech', 'deal', 'many', 'thing', 'greasy-backed', 'widespread', 'public', 'heavy', 'convenience', 'coil']| -servant girl,['dear'] -cardboard about,['the'] -your life,|['you', 'are', 'is']| -a faded,['brown'] -back this,['maid'] -Theories are,['all'] -blow was,['struck'] -oak so,['old'] -criminal agent,['as'] -certainly have,|['been', 'a']| -had ceased,|['to', 'ere']| -King nothing,['could'] -misjudged him,['I'] -with flame-coloured,['silk'] -words least,['sound'] -their beat,['The'] -gracious either,['if'] -the return,['to'] -me it's,['a'] -as either,['an'] -up Wellington,['Street'] -good might,['come'] -ceiling were,['of'] -cut at,['me'] -never have,|['been', 'turned', 'any', 'occurred', 'had']| -take care,['of'] -anyone who,['really'] -the way,|['Doctor', 'for', 'I', 'is', 'in', 'Folk', 'that', 'about', 'would', 'there', 'to', 'You', 'of', 'down', 'out', 'said', 'and']| -minds for,|['the', 'a']| -the war,|['he', 'time']| -smile broadened,['the'] -else of,['interest'] -singular which,['I'] -should ever,['have'] -waiting at,['the'] -very bad,|['Your', 'compliment', 'and', 'effect', 'day']| -waiting an,['instant'] -were weak,['just'] -me introduce,['you'] -forefinger but,['you'] -undue impression,['of'] -outside I,['shall'] -laid it,|['on', 'out', 'upon']| -no light,['at'] -while indiscreetly,['playing'] -fringed the,['hand'] -could of,['course'] -bandy words,['with'] -him first,['at'] -me live,['with'] -and since,['you'] -like all,|['such', 'Europe']| -be wrenching,['at'] -most horrible,['cry'] -fortunately I,['spend'] -few days,|['It', 'There', 'I', 'and']| -you share,['my'] -II. THE,['RED-HEADED'] -when young,|['Mr', 'ladies']| -doubt they,['were'] -to at,['the'] -rude if,['I'] -advise her,['at'] -the magistrate,|['than', 'refused']| -to an,|['armchair', 'agent', 'end', 'advertisement', 'observer', 'investigation', 'action', 'empty', 'abominable', 'acquaintance', 'entirely', 'asylum']| -off do,['you'] -to hush,|['this', 'the']| -suggestive Now,['on'] -morning waiting,['in'] -duty I,['found'] -drawn so,['that'] -silk but,['was'] -question or,|['remark', 'two']| -cried that!,['I'] -so much,|['about', 'angry', 'typewriting', 'as', 'faith', 'public', 'that', 'influence', 'to', 'annoyance', 'stronger']| -Fleet Street,|['on', 'was']| -bag and,['made'] -her papers,['without'] -make such,|['a', 'reparation']| -every facet,['may'] -cleared it,['all'] -De Quincey's,['description'] -drive before,['us'] -my plans,['very'] -coat of,['some'] -the repairs,['you'] -my notes,|['and', 'three', 'of']| -imperilled the,['whole'] -he I've,['let'] -but some,|['two', 'muttered']| -yourself look,['upon'] -he shut,['himself'] -him there,|['might', 'In']| -recognise the,|['presence', 'symptoms']| -the dreadful,|['end', 'position']| -but must,['get'] -ashen face,['will'] -in failing,['health'] -three long,['windows'] -But that,|['was', 'my', 'is']| -looked up,|['I', 'with']| -were beginning,['to'] -side she,['was'] -threw up,|['reporting', 'my', 'her']| -cab humming,['the'] -Watson a,['common'] -lips his,['eyes'] -accumulated the,['fruits'] -ways and,['simple'] -fads may,['cause'] -of Warsaw yes,['Retired'] -slammed the,['little'] -quote this,['as'] -red silk,['but'] -broad and,['massive'] -keeping her,['at'] -talked of,['marrying'] -of no,|['importance', 'ordinary', 'man', 'help', 'use', 'great']| -for anyone,['to'] -foresee shook,['his'] -gold invested,['it'] -white as,['when'] -that one,|['particularly', 'I', 'of']| -prison I'll,['lock'] -and bundles,['as'] -door into,['a'] -will readily,['see'] -Bradstreet would,['I'] -note As,['I'] -a specialist,['in'] -the horrid,['scar'] -and much,|['the', 'less']| -cut the,['cord'] -I answer,['because'] -hardly resist,['the'] -see was,['the'] -indeed?" murmured,['Holmes'] -sprang to,|['his', 'the', 'my']| -Colonel Stark,|['went', 'laid']| -staggered to,|['his', 'my']| -snarl in,['reply'] -sight of,|['the', 'them', 'his', 'you', 'these', 'him']| -his forehead,|['I', 'sat', 'three', 'will']| -it bodes,['evil'] -peering at,['us'] -a suit,['of'] -and without,|['either', 'the']| -its curious,['termination'] -something was,|['there.', 'amiss', 'moving']| -key tell,['you'] -this were,['he'] -your relations,['to'] -the somewhat,['vacuous'] -it does,|['Your', 'so', 'not']| -difficult For,['an'] -still in,|['the', 'there!']| -great deduction,['to'] -telegram from,['the'] -been generally,['successful'] -returned and,|['I', 'offered', 'saw', 'she']| -soothed and,['comforted'] -have certainly,['been'] -room dusty,['and'] -secret very,['jealously'] -volume that,['the'] -can claim,['an'] -felt hat,['Mr'] -you ever,|['observed', 'heard', 'see', 'on', 'put']| -not think,|['of', 'that', 'so', 'Flora', 'very', 'then', '1000', 'me', 'you']| -News Standard,['Echo'] -We should,|['have', 'be']| -when all,|["father's", 'is']| -it within,['a'] -is upon,['the'] -has placed,['in'] -chance you,['came'] -week and,|['the', 'be', 'Hosmer']| -the bureau,|['had', 'of', 'first', 'is']| -clue entering,['the'] -appeared not,['to'] -sallow-skinned with,['a'] -away into,|['the', 'nose']| -dark and,|['stormy', 'sinister']| -do Holmes,['sat'] -passionately I,['would'] -in case,|['of', 'we', 'I']| -|asked no,|,['my'] -ball and,['tossed'] -own opinion,['is'] -great creases,['of'] -rule said,['Holmes'] -very high,['he'] -is wonderful,['I'] -from Bristol,['(with'] -none do,['you'] -question for,['us'] -then what,|['hellish', 'is', 'occurred']| -world and,['when'] -impressions on,['one'] -that armchair,['Doctor'] -toast and,['coffee'] -his foot,['we'] -thought her,['to'] -is practically,['finished'] -turned hungrily,['on'] -mining. He,['had'] -on December,['22nd'] -the clue,['which'] -unfettered by,['any'] -mean by,['that'] -the mud-stains,['from'] -feared by,['the'] -interest than,['you'] -cock-and-bull story,['about'] -rattling of,['a'] -which chanced,['to'] -before them,['when'] -lingering disease,['was'] -rather above,['the'] -envelope he,['continued'] -chin suggestive,['of'] -and prying,['its'] -sherry pointed,['to'] -not another,['word'] -a part,['of'] -shook his,|['head', 'clenched', 'clinched']| -up those,['mysteries'] -It is,|['true', 'a', 'peculiarly', 'not', 'in', 'the', 'both', 'quite', 'nearly', 'an', 'cabinet', 'her', 'all', 'exceedingly', 'most', 'your', 'introspective', 'past', 'so', 'possible', 'just', 'really', 'entirely', 'of', 'said', 'founded', 'K', 'there', 'probable', 'no', 'conjectured', 'well', 'Wednesday', 'very', 'unthinkable', 'perhaps', 'absolutely', 'clear', 'my', 'always', 'terror', 'certain', 'precisely', 'evident', 'evidently', 'to', 'high', 'three', 'headed', 'impossible', 'thought', 'one', 'this', 'likely', 'equally', 'pleasant', 'due', 'only', 'as']| -|hoofs Watson,"|,['said'] -thrown him,['over'] -veil as,['she'] -on worrying,['her'] -felt any,['emotion'] -example what,['a'] -powerful an,['engine'] -passed during,['those'] -placed his,|['shiny', 'elbows', 'cuttings', 'finger']| -discretion whom,['I'] -Mendicant Society,['who'] -ending in,['Kent'] -by now,["Holmes'"] -she complained,['of'] -Mr. Holder,['said'] -confess to,['my'] -quarrel with,['his'] -case All,['these'] -so ridiculously,['simple'] -notices which,['appeared'] -will contradict,['me'] -publicly proclaimed,['That'] -strong masculine,['face'] -at Christmas,|['My', 'two']| -Armitage Percy Armitage the,['second'] -drop you,['a'] -your shaving,['is'] -Simon is,['a'] -carefully sounded,['and'] -feat I,['should'] -consultations and,['one'] -to without,['success I'] -missing There,['cannot'] -company said,['Sherlock'] -Simon in,['particular'] -the shelf,|['for', 'beside', 'one']| -trust her,['own'] -I because,['there'] -fell into,|['talk', 'the']| -arranged what,['is'] -contrary Watson,['you'] -little finger,['remarked'] -case In,['the'] -and collected,['on'] -& Hankey's,['in'] -could incriminate,['him'] -case It,['is'] -informing him,['that'] -|face here,|,|['sir', 'dad']| -Pray what,|['steps', 'is']| -whisky and,['soda'] -heard an,['ejaculation'] -of barbaric,['opulence'] -waggled his,['head'] -an open,['secret'] -just a,|['little', 'fringe', 'baby', 'big']| -so delicately,['and'] -curly-brimmed hat,['was'] -ask for,|['the', 'assistance', 'it', 'anything', 'all']| -the practice,['is'] -year 87,['furnished'] -an indiscretion,['was'] -year 83,['that'] -of 140,['different'] -have known,|['something', 'each', 'for']| -it's Where,['are'] -tied so,['as'] -affairs I,['know'] -hurriedly for,['I'] -moment Your,['recent'] -Boscombe Valley,|['tragedy', 'He', 'estate']| -from it,|['Hence', 'carefully', 'than', 'which', 'not', 'As', 'In', 'Out', 'By', 'to']| -He's not,['got'] -two children,['He'] -that again,['Mr'] -one has,['data'] -cubic capacity,['said'] -second window,['is'] -wood until,['he'] -failed Majesty,['must'] -and pledged,['myself'] -was cocked,['upward'] -choose to,['call'] -manager name,['said'] -hardly have,|['been', 'allowed']| -before me,|['Now', 'in', 'Was']| -was even,|['redder', 'fonder', 'a', 'more']| -these luxuries,['my'] -midday to-morrow,['it'] -then Has,['it'] -change all,['their'] -before my,|['own', "friend's"]| -on one,|['side', 'occasion', 'corner']| -assume Pray,['take'] -lip from,['time'] -this is,|['too', 'a', 'one', 'amusing', 'not', 'the', 'your', 'treasure']| -the scuffle,|['without', 'downstairs', 'your']| -"Pray do,['so'] -and others,|['have', 'talked']| -disturbance has,['actually'] -also stout,['gentleman'] -written and,['locked'] -To determine,['its'] -Montague Place,['upon'] -own account,['of'] -writings And,['then'] -you scoundrel,['I'] -blackguard!' I,['shouted'] -explained that,|['the', 'any']| -the senders,['to'] -company They,['have'] -crumbly band,['by'] -most pitiable,['pass'] -man Breckinridge,['but'] -lay before,['us'] -line You,['said'] -him His,['face'] -suppose I,|['remarked', 'never']| -the sensational,['I'] -bite I,['had'] -Honoria Westphail,['who'] -|husband yes,'|,['said'] -been senseless,['for'] -maid will,['bring'] -banker recoiled,['in'] -aquiline and,['moustached evidently'] -ejaculated for,['it'] -a story,['as'] -taken from,['him'] -valet learned,['that'] -evidence is,|['a', 'so', 'occasionally']| -|baboon yes,|,['of'] -pleasure is,['to'] -obvious fact,|['he', 'that']| -silence from,['which'] -thumb Ha,['And'] -may carry,['that'] -fur completed,['the'] -writhed as,['one'] -were enough,['to'] -a steamer,['they'] -bundles as,['would'] -quest a,['cripple'] -evil influence,['probably'] -the circumstances,|['were', 'and', 'made', 'you']| -he cried,|['I', 'and', "You'll", 'grasping', 'Certainly', 'But', 'Here', 'have,', 'can', "thief!'", 'And', 'throwing', 'This', 'Your', 'impatiently', "here's", 'Someone']| -mistress told,['me'] -and terraced,['with'] -|wife short,|,['that'] -me closed,['my'] -carries a,['blunt'] -wrong by,['opening'] -at 6:30,['this'] -supply their,['deficiencies'] -pavement at,['the'] -him like,['a'] -illness through,['which'] -the right-hand,|['side', 'block']| -loved by,['a'] -the banking,['firm'] -visitors had,['left'] -arrangements when,['you'] -make your,['guilt'] -harness were,['sticking'] -of five,['and'] -see something,['of'] -essential that,['they'] -apparently given,['up'] -books upon,['the'] -everything from,['it'] -see them,['again'] -or anyone,['else'] -the lines,['of'] -our word,|['client', 'for']| -the grate,|['there', 'which']| -danger it,['would'] -our work,['so'] -corner seats,['I'] -with Colonel,['Spence'] -Your wedding,['was'] -drawing of,['a'] -police It,['was'] -strong object,['for'] -was helping,['a'] -master wore,['at'] -Bohemian soul,['remained'] -had yet,['to'] -breakfast-table and,|['as', 'waiting']| -same effects,['He'] -a typewriter,['has'] -Now I'll,['state'] -child? no,['not'] -choose and,['which'] -and gazing,['down'] -my words,['If'] -this mysterious,['assistant'] -rolled in,['Rotterdam'] -marry her,['at'] -to those,|['letters', 'details', 'incidents']| -which have,|['happened', 'baffled', 'come', 'to', 'been', 'taken', 'given']| -must adapt,['himself'] -true the,['murderer'] -conclusive proof,['Was'] -and third,['of'] -been leaning,['back'] -frequent the,['Alpha'] -fog rolled,['down'] -maid that,|['he', 'she']| -solved my,['problem'] -bearings deduce,['from'] -refuse Coroner:,['I'] -this infernal,['St'] -the tiger,['cub'] -one Cedars?",['that'] -pity by,['my'] -more you,['know'] -surprised at,|['his', 'seeing', 'the']| -have clearer,['proofs'] -leave the,|['room', 'papers', 'country', 'house']| -settle the,['matter'] -up indoors,['most'] -heavens! I,['thought'] -photograph at,['once'] -your revolver,['into'] -the fund,['left'] -crack in,['one'] -been trying,['to'] -America As,['to'] -continue your,|['very', 'narrative', 'most']| -be here,|['at', 'He', 'in']| -screen over,['that'] -even threatening,['her'] -case you,['would'] -dine at,['seven'] -the cupboard,|['and', 'of']| -her whole,['figure'] -examining with,['his'] -a lengthy,['visit'] -down upon,|['the', 'one', 'his', 'my', 'me']| -most dark,['and'] -oath Tell,['Mary'] -a commonplace,['face'] -efforts of,['the'] -the remorseless,['clanking'] -he gets,['his'] -plenty of,|['thread', 'money', 'time']| -perfect Leave,['Paddington'] -upon details,['My'] -of flushed,['and'] -with whoever,['might'] -peace which,['you'] -them from,|['the', 'my']| -of Morcar's,|['blue', 'was']| -remember rightly,['you'] -is south,['for'] -dozen did,['you'] -Data data,['data'] -would be.,['child one'] -knew be,['a'] -the change,|['would', 'in', 'which']| -you more,['words'] -This barricaded,['door'] -him hurts,['my'] -were burrowing,['for'] -on McCauley,['Paramore'] -Matheson the,['well-known'] -you what,['is'] -bachelor residing,['alone'] -those geese,['sir."'] -mother carried,['on'] -her positive,['intention'] -before anyone,['could'] -above where,['the'] -She heard,['Mr'] -mastiff. was,['so'] -he ought,['to'] -|see," remarked|,['Holmes'] -And if,|['it', 'you']| -ground to,|['the', 'think']| -Jones have,['an'] -enemies or,['shall'] -And in,|['practice', 'this']| -well Kill,['it'] -lost my,|['thumb', 'honour']| -rejoiced to,['find'] -so. looked,['very'] -of assistance,|['to', 'presence']| -thing very,['completely'] -corridor while,['a'] -murder and,['the'] -very real,['and'] -the impulse,['which'] -dawdling especially,['as'] -Angel was,['a'] -reaction of,|['so', 'joy']| -For Christ's,['sake'] -to exert,['ourselves'] -barred tail?,['I'] -For Mrs,['Henry'] -cab came,['through'] -the reason,|['why', 'of', 'alone', 'is']| -two neat,['hedges'] -obtaining a,['note'] -card-case In,['the'] -gone before,['you'] -pound a,['week'] -our very,['window'] -increasing our,['connection'] -himself to,|['hunt', 'his', 'the', 'tell', 'and', 'a', 'be', 'listen']| -warren which,['is'] -pacing the,['room'] -isn't he,['said'] -that God,['keep'] -didn't make,['no'] -empty There,['was'] -dim light,|['of', 'which', 'that']| -much perturbed,['at'] -patients from,['among'] -open to,|['an', 'a']| -scaffolding had,['been'] -dispatched the,['sobered'] -surly fellow,['said'] -that suggest,['anything'] -with enthusiasm,['Now'] -had occasion,|['some', 'to']| -having a,|['slightly', 'violent', 'suspicion', 'black', 'witness']| -despair and,['set'] -attempt to-night,['I'] -handled them,['ever'] -we shut,['the'] -to wear,|['it', 'when', 'any', 'such']| -person who,|['employs', 'had']| -does but,['he'] -fields round,['his'] -sedentary life,['goes'] -round like,['a'] -Coronet? of,['the'] -produce the,['same'] -yards from,['the'] -chucked it,['down'] -fresh will,['answer'] -many were,['waiting'] -possible case,['against'] -your sleep?,['not.'] -by rearranging,['my'] -meadows and,['so'] -notion as,['to'] -plunged forward,['wrung'] -gave rise,['to'] -against our,['home'] -gripping hard,['at'] -clear this,['horrible'] -path between,['two'] -sad-faced refined-looking,['man'] -story have,|['you', 'been']| -My pence,['were'] -seeking employment,['wait'] -my reason,['so'] -enemy's country,['We'] -it serves,['to'] -her heart,['when'] -flight That,['is'] -people who,|['had', 'have', 'lounged', 'live']| -friend whether,['they'] -process And,['yet'] -vacantly upon,['the'] -Then it,|['was', 'lengthened', 'flashed']| -finger upon,['the'] -and planked,['down'] - Very,['truly'] -have frequently,|['seen', 'gained']| -here can,['witness'] -those Then,['when'] -intention that,['he'] -Peterson so,['that'] -I beg,|['that', 'pardon']| -determined therefore,|['to', 'that']| -why she,|['should', 'shrieked', 'had']| -understand them,['and'] -some stiffness,['in'] -and rushed,|['into', 'off']| -little face,['of'] -saw Dr,['Grimesby'] -I reached,|['the', 'it']| -will interest,['you'] -fate was,['sealed'] -though little,['used'] -chair as,|['was', 'if']| -gravely It,['would'] -far is,['very'] -sweetness and,['delicacy'] -another thing,['but'] -there Both,['he'] -force a,['small'] -to nothing,['The'] -here as,['architects'] -|evening cannot,|,['and'] -opened envelope,['in'] -education has,['come'] -short time,|['a', 'His']| -tailing off,['into'] -New Jersey,['in'] -postmark What,['can'] -Southerton's preserves,['A'] -eavesdroppers? the,['matter'] -window while,['in'] -asked I.",['is'] -This looks,['like'] -newspaper story,['about'] -his favour,|['from', 'and']| -advertisement of,['the'] -so she,['rose'] -west country,['there'] -handkerchief round,['it'] -your name,['to'] -caught the,|['glint', "son's", 'last', 'name', 'clink']| -at other,['times'] -our page-boy,['throwing'] -been hurrying,['down'] -to-night at,['a'] -may rely,['upon'] -saved began,['to'] -the platitudes,['of'] -darkness glanced,['at'] -a beggar,|['For', 'and']| -Deeply as,['I'] -person whom,['McCarthy'] -with But,['Cooee'] -o'clock that,['I'] -fancy we,['may'] -am unable,['to'] -child and,['it'] -sceptic he,['said'] -overtaken me!,['is'] -request showed,['us'] -C Well,['I'] -expound "Pray,['do'] -other In,['the'] -and wrinkled,['newspaper'] -seen inside,['then'] -morning my,['wife'] -hanging gold,['earrings'] -shop window,['behind'] -has knowledge,['Palmer'] -Windibank asking,['him'] -breaking above,['us'] -considerable self-restraint,['and'] -remarkable as,['your'] -animal Her,['features'] -of ink,|['and', 'upon']| -spoken now,['had'] -be exposed,['to'] -least four,['and'] -wreck and,|['that', 'ruin']| -lunch 2s,['6d.'] -two will,['take'] -a skylight,['which'] -my kicks,['and'] -of power,['and'] -lies snoring,['on'] -Come now,['we'] -fro in,['front'] -pledged to,['him'] -her would,['go'] -an acute,|['reasoner', 'and']| -my request,['made'] -subjected to,['such'] -by young,['McCarthy'] -of Scandinavia,|['You', 'Had']| -cried my,['patient'] -into glass,['as'] -afraid Holmes,['that'] -against a,|['smoke-laden', 'man']| -boot-slitting specimen,['of'] -then retire,['for'] -man stood,['glancing'] -Let me,|['introduce', 'have', 'explain', 'out!', 'pass', 'see', 'know']| -common one,['Mr'] -cruelly used,['said'] -sent down,['from'] -learn what,['this'] -of whom,|['I', 'we', 'had', 'you']| -was inside,['a'] -above As,['I'] -wife died,|['young', 'I']| -5:14 from,['Cannon'] -fixed a,['look'] -lie broke,['the'] -will however,['I'] -months have,['elapsed'] -probably some,['more'] -lies in,|['London', 'the']| -just five,['days'] -Jove Peterson,['said'] -surely since,['the'] -inconsequential narrative,['but'] -compunction than,['if'] -He wished,['us'] -yet am,['sure'] -handkerchief and,|['held', 'glanced']| -Turner's lodge-keeper,['his'] -never saw,['a'] -papers since,['to'] -be dust,['into'] -City to,['the'] -off but,|['the', 'that']| -facing round,['to'] -yet as,|['clearly', 'tender']| -liberated have,['you'] -in Bristol,|['and', 'It']| -usually in,|['unimportant', 'some']| -one remarked,['Holmes'] -to? and,['What'] -long draught,['of'] -His name,['is'] -For you,['Mr'] -matters as,['described'] -look then?",['will'] -hour ago,['to'] -Holmes sat,|['silent', 'moodily', 'for', 'down', 'up']| -your applying,['if'] -lawyer That,['sounded'] -and has,|['seen', 'written', 'had', 'not', 'just', 'always', 'attracted', 'carried']| -sent them,['to'] -The cases,['which'] -announced our,['page-boy'] -her devotedly,['but'] -charge against,['him'] -the bearing,['and'] -force the,['shutter'] -feet up,['on'] -might spend,['the'] -my virtues,['and'] -always instructive,['But'] -was dissatisfied,['with'] -carriage rattle,['off'] -deeply distrusted,['So'] -six inches,['in'] -small brazier,['of'] -was himself,['red-headed'] -got my,['money'] -get hold,['of'] -recourse to,['other'] -been reabsorbed,['by'] -commonplace featureless,['crimes'] -grip was,['not'] -has ceased,['to'] -got me,['through'] -outward while,['the'] -fists fiercely,['at'] -my Boswell,['And'] -pity you,["didn't"] -our happiness,['a'] -work which,['was'] -someone then,['If'] -silently for,['whatever'] -there And,['he'] -of law,['to'] -my double,['deduction'] -that three,['teeth'] -I would,|['call', 'give', 'there', 'have', 'not', 'rather', 'go', 'always', 'find', 'do', 'send', 'respond', 'take', 'carry', 'just', 'wish', 'leave', 'I']| -recovered the,['page'] -remained when,['the'] -breakfast had,['been'] -excitable impulsive,['girl'] -Besides it,['is'] -mining camp,['and'] -roused its,['snakish'] -with business,['matters.'] -are now,|['standing', 'said']| -the clerks,['I'] -laughing Indirectly,['it'] -maker no,['doubt'] -do this,|['we', 'I']| -terror of,['the'] -have changed,|['my', 'his']| -immense scandal,['and'] -see everything,['You'] -catastrophe has,['occurred'] -kindness to,|['recommence', 'him', 'get', 'go', 'wait']| -clay And,['yet'] -entered was,|['a', 'young']| -goes much,['to'] -her veil,|['it', 'as']| -quite bashful,['Then'] -Be it,['so'] -extreme languor,['to'] -only five,['years'] -are small,['lateral'] -an orange,['from'] -doctor the,['fact'] -Horsham after,['all'] -I pointed,['it'] -result when,['viewed'] -be legal.,['was'] -panel had,['closed'] -Be in,['your'] -civil practice,|['when', 'and']| -sat over,['a'] -in this,|['He', 'case', 'object', 'way', 'age', 'fashion', 'mystery', 'cellar', 'note', 'season', 'chair', 'den', 'letter', 'Gladstone', 'manner', 'city', 'little', 'matter', 'wind-swept', 'weather', 'wing', 'room', 'strange', 'crowd', 'new', 'public', 'country', 'direction', 'offhand', 'dim', 'chamber']| -the quinsy,['and'] -man whose,|['knowledge', 'disgust', 'pleasant', 'character', 'round']| -Peterson the,['commissionaire'] -paper which,|['contained', 'showed', 'you']| -cat But,['there'] -aware of,|['it', 'that']| -objections to,['any'] -flash a,['light'] -All we,['wish'] -pleasant smell,['of'] -avoided to,['avert'] -A shock,['of'] -boy and,|['leave', 'we']| -her from,|['injuring', 'looking', 'a']| -dress and,|['features', 'go', 'were']| -determined that,|['nothing', 'the']| -influence might,['be'] -Beeches near,['Winchester'] -needle-work down,['in'] -conceal some,['of'] -out save,['to'] -farther end,|['was', 'Round']| -impression At,['the'] -assistant But,['he'] -who they,['are'] -bedroom My,['companion'] -I thrust,['the'] -fire in,|['his', 'my', 'the']| -in less,['than'] -footfalls from,['the'] -guilt of,['the'] -friend Sherlock,['Holmes'] -She smiled,|['back', 'but']| -rickety door,['and'] -shoulders bent,['knees'] -foolish and,['I'] -attired in,['a'] -From under,['this'] -fire is,['a'] -fire it,['will'] -match and,|['in', 'we', 'lashed']| -body Then,['I'] -might be,|['I', 'brought', 'a', 'presented', 'fatal', 'coming', 'made', 'discovered', 'removed', 'some', 'summoned', 'too', 'he', 'worth', 'told', 'which', 'met', 'useful', 'invaluable', 'of', 'caused', 'the', 'loose']| -metal for,['the'] -are getting,['100'] -that said,|['Holmes', 'Bradstreet']| -handkerchief up,['to'] -those symptoms,['before'] -rushing towards,['him'] -out doubled,['it'] -of humanity,['every'] -shoe just,['where'] -own thoughts,|['and', 'are']| -matter becomes,['even'] -come incognito,['from'] -|suppose. no,|,['it'] -idea And,['which'] -can attain,['to'] -echoes of,['it'] -morning had,|['hurried', 'not']| -mysteries So,['accustomed'] -realised for,['from'] -to retain,['the'] -most daring,['criminals'] -sir." brought,['Miss'] -ruefully pointing,['to'] -mind She,['was'] -or slippers,['on'] -facts upon,['which'] -never hope,['to'] -must hurry,['as'] -holding my,|['breath', 'tongue']| -stood hid,['behind'] -living the,|['horrible', 'life']| -I urged,['young'] -be good-bye,['to'] -in India,|['he', 'He']| -clay and,['chalk'] -her up,['in'] -miss it,|['your', 'for', 'is']| -With my,['body'] -himself seems,['to'] -a homely,['little'] -we will,|['begin', 'take', 'soon', 'see', 'enter', 'talk', 'set']| -cries The,['ceiling'] -party proceeded,['afterwards'] -not obvious,['to'] -given her,|['notice', 'the']| -client could,['not'] -have avoided,['the'] -had nothing,|['in', 'fit', 'since', 'else', 'a', 'on']| -law-abiding country,['is'] -We had,|['occasion', 'driven', 'however', 'no', 'walked', 'hardly']| -his soothing,['answers'] -occurred between,['the'] -a stream,|['of', 'and']| -white wrist,['have'] -nothing whatever,|['There', 'about']| -result in,['a'] -Isa Whitney's,['medical'] -residence is,['near'] -which were,|['trimmed', 'associated', 'whispered', 'new', 'brought', 'upon', 'received', 'reported', 'the', 'sold', 'waddling', 'submitted', 'secured', 'hollowed', 'quite', 'not', 'simply', 'open']| -it Pray,['what'] -Up to,['a'] -answered that,|['I', 'the', 'it']| -off through,['the'] -residence in,['the'] -result is,['it'] -doctor a,['worthy'] -laid down,|['his', 'upon', 'the']| -she sharply,['You'] -its advantages,['and'] -I let,['you'] -absurdly simple,['and'] -see by,|['his', 'the']| -Colony of,['Victoria'] -America Some,['of'] -desires to,|['consult', 'keep']| -come I,|['am', 'have', 'do']| -much Let,['me'] -come A,["husband's"] -and such,|['an', 'a']| -waistcoat pocket,['I'] -noble client,|['of', 'Do']| -coming down,|['with', 'upon']| -was then,|['much', 'called', 'beginning']| -yet done,['what'] -dishonoured man,['said'] -journey but,['the'] -besides Mr,['Rucastle'] -times shook,['his'] -the altar,|['I', 'faced', 'and', 'Mrs.', 'with', 'rails']| -general shriek,['of'] -maid leave,['to'] -there and,|['the', 'I', 'what', 'make', 'there', 'our', 'he', 'then', 'had', 'one', 'annoyance']| -running a,|['chance', 'tunnel']| -severe reasoning,['from'] -We neither,['of'] -Holmes changed,['his'] -Clara St,['Simon'] -words they,['were'] -was absolutely,['determined'] -your son's,['guilt'] -may assist,['you'] -me reveal,['what'] -not change,['all'] -one She,['had'] -that side,|['is', 'Now']| -also put,['in'] -be solved,|['in', 'for']| -rate that,|['I', 'we']| -a splash,['in'] -us put,|['it', 'their']| -beauty has,['guessed'] -heart at,['the'] -for drawing,['the'] -no; I,['call'] -you see,|['my', 'I', 'said', 'that', 'but', 'nothing', 'had', 'the', 'K', 'is', 'You', 'sir', 'a', 'it', 'and', 'some', 'Miss']| -I'll tell,|['you', 'our']| -years There,['are'] -coffee for,['I'] -my sins,['have'] -Now her,['marriage'] -volley Three,['of'] -dog at,['you'] -uneasy Why,['should'] -foot for,['the'] -done He,['spoke'] -away so.,['She'] -he added,['as'] -old briar,['pipe'] -good look,['at'] -me and,|['Godfrey', 'also', 'Mr', 'it', 'got', 'hence', 'asked', 'my', 'he', 'I', 'was', 'a', 'then', 'we', 'fell', 'rushed', 'making', 'when', 'the', 'tugged', 'implore', 'inquiry']| -villain you,['thief'] -started in,['the'] -passionately devoted,['both'] -me any,['more'] -much afraid,['that'] -those vows,['of'] -pounds since,['I'] -intimate terms,['with'] -hesitation in,['bringing'] -years older,['than'] -face lengthened,['at'] -the compliments,['of'] -office he,['would'] -said be,['laughed'] -apply for,|['particulars', 'it', 'is']| -from Nature,['rather'] -already been,|['made', 'engaged', 'minutely']| -two deaths,['in'] -the League,|['to', '7', 'of', 'has', 'was', 'and']| -bears out,['his'] -again just sending,['a'] -face may,['be'] -petulance about,['the'] -Street life,['is'] -braced it,['up'] -her notice,['but'] -crowd for,['your'] -contrary are,['the'] -useless however,['He'] -Toller for,['that'] -fairly to,['work'] -I crouched,['Holmes'] -beautiful woman,['the'] -was extremely,['dark'] -the great,|['House', 'kindness', 'claret', 'issues', 'city', 'town', 'goodness', 'financier', 'unobservant', 'cases', 'creases']| -much upon,['the'] -|then, you've|,['lost'] -work again,['He'] -years been,['known'] -married man,['Mr'] -turned it,|['every', 'over']| -was concerned,|['in', 'with']| -sentence 'This account,['of'] -States you,['become'] -to rectify,['Wait'] -dragged with,['my'] -turning white,['to'] -round that,['breakfast-table'] -which spoke,['her'] -mine And,['yet'] -seal and,['glanced'] -Come in,['man'] -turned in,['an'] -smoking and,|['laughing', 'the']| -the Amateur,['Mendicant'] -by this,|['German', 'lady']| -the flowers,['It'] -eight years,|['studied', 'ago']| -Hatherley side,['of'] -eight o'clock,|['it', 'in', 'this']| -solemn oaths,['which'] -you Who,['are'] -Good-afternoon Lestrade,['You'] -shall drive,['out'] -fad or,['a'] -previous husband the,['chances'] -the green-grocer,['who'] -it gentleman?",['she'] -whistles at,['night'] -a definite,['end'] -At that,['hour'] -of immense,['strength'] -turn where,['I'] -indeed if,|['I', 'you']| -the blood,|['running', 'upon', 'was']| -serious accident,['during'] -asked tapping,['the'] -takings amount,['to'] -not ascend,['Swiftly'] -we drew,|['up', 'on']| -not listen,['to'] -We descended,['and'] -cracked exceedingly,['dusty'] -now let,['us'] -pin-point pupils,['all'] -I excuse,['will'] -are others,['besides'] -quite new,['no'] -lengthen out,['into'] -hideous face,['is'] -a basketful,['of'] -lived for,['seven'] -hurried past,['me'] -Burnwell was,['enough'] -situation miss?,['he'] -quarters received.,['A'] -safe which,['he'] -in Regent,['Street'] -alone however,['half'] -lounged up,['the'] -ever believed,['it?'] -to coming,['in'] -so said,|['Holmes', 'he']| -could distinguish,['the'] -again he,|['is', 'cried']| -accomplice's hair,['The'] -the bosom,['of'] -results all,['pointed'] -answered our,['visitor'] -he do,['then'] -a flag,['which'] -was fear,['of'] -|narrative me,"|,['he'] -least that,['was'] -your lips,['As'] -been returned,['at'] -Hunter Do,['you'] -solemnly Your,['own'] -crime no.,['No'] -same world-wide,['country'] -would happen,['if'] -go they,['come'] -If so,['how'] -correct can,['only'] -or token,['before'] -can be,|['indicated', 'a', 'no', 'of', 'little', 'served', 'the']| -bloodstains He,['was'] -stiffness in,['the'] -table am,['so'] -presume said,['Holmes'] -companions who,['followed'] -got away,['with'] -first yawn,['and'] -your deadliest,['enemy'] -regained their,['fire'] -kindly given,['me'] -Can you,|['not', 'remember', 'suggest']| -chamber in,['which'] -wet lately,['and'] -chamber is,['really'] -meet it,['The'] -hurry quickly,['through'] -waited until,['midnight'] -very curly-brimmed,['hat'] -ventilate With,['your'] -James off,['to'] -you explain,|['your', 'this']| -11:30 will,['do'] -you who,|['have', 'are', 'had']| -sworn to,['have'] -helper to,['everybody'] -Holmes face,['clouded'] -line of,|['fine', 'doors', 'investigation', 'yellow', 'books', 'tracks']| -has secreted,['his'] -claim that,['petered'] -wheels as,['the'] -old woman,['whose'] -point on,['which'] -McCarthy who,|['was', 'appears']| -logical basis,['with'] -Ormstein hereditary,['kings'] -point of,['view'] -poker into,['the'] -considerably more,['value'] -suggestive So,['were'] -story He,|['was', 'ran']| -seen you,['for'] -constables at,['the'] -And she,|['will', 'was']| -and wrapped,['cravats'] -Perhaps it,|['would', 'was']| -facts are,|['briefly', 'to', 'so', 'these', 'quite']| -your sister,['dressed'] -rug and,|['looking', 'clutched']| -fair personal,['advantages'] -us My,|['limbs', 'practice']| -take it,|['the', 'amiss', 'then', 'that', 'as', 'good.', 'into', 'now', 'with', 'belongs']| -wing runs,['the'] -moment later,|['the', 'we']| -so. Then,['I'] -the Bar,['of'] -amazement photograph!",['he'] -been obliged,['to'] -it cried,['the'] -You'll have,['to'] -take in,['the'] -plate morning,['I'] -spoken but,['with'] -wooded round,['with'] -are spies,['in'] -OF IDENTITY,['dear'] -March 1888 I,['was'] -waited for,['him'] -Baker was,['printed'] -year after,['the'] -as your,|['advertisement', 'geese', 'life']| -strength and,['absolutely'] -Road egg,['and'] -man was,|['sure', 'much', 'instantly', 'heard', 'highly', 'intellectual', 'either']| -Here I,['had'] -rearing of,['a'] -the weighted,['coat'] -that also,['may'] -coat and,|['umbrella', 'not', 'waistcoat']| -as would,|['be', 'occur']| -rather at,['all'] -forever The,['will'] -not sit,['gossiping'] -not sir,['And'] -morning homeward,['bound'] -it dressed,['it'] -slip and,['here'] -rather an,['early'] -is to,|['know', 'occur', 'its', 'be', 'say', 'a', 'the', 'bring', 'remove', 'clear', 'do', 'him', 'reason', 'recompense', 'examine', 'blame', 'see', 'that', 'keep']| -ago having,['served'] -best quality,['Look'] -no use,|['your', 'John', 'denying', 'to']| -the pleasure,['of'] -I jumped,|['in', 'from']| -has she,|['been', 'ever']| -have noticed,['and'] -I usually,['leave'] -been until,['lately'] -been done,|['in', 'to', 'said']| -by no,['means'] -ground One,['was'] -Why dear,['me'] -east said,['my'] -a whistle,['By'] -client He,['looked'] -curtain long,['as'] -life goes,['out'] -shown your,['relish'] -it helps,['us'] -him who,|['Mr', 'taketh', 'is']| -double deduction,['that'] -landau which,['rattled'] -friends and,|['relatives', 'exchanging']| -tail I,['caught'] -small wicker-work,['chairs'] -or from,['his'] -my tradesmen,['the'] -come he,['walked'] -highway robber,['There'] -cap is,['really'] -the servant,['and'] -However I,|['shall', 'threw', 'was', 'must']| -I could,|['easily', 'not', 'desire', 'catch', 'see', 'fathom', 'tell', 'distinguish', 'look', 'think', 'only', 'plainly', 'produce', 'but', 'suffer', 'manage', 'get', 'earn', 'every', 'be', 'possibly', 'beat', 'never', 'gather', 'do', 'however', 'make', 'feel', 'hardly', 'run', 'lay', 'of', 'even', 'at', 'ask', 'to', 'ha', 'learn']| -came he,['made'] -richness which,['would'] -wouldn't throw,['up'] -many which,['present'] -been difficult,['but'] -than coffee,['colour'] -returned Holmes,|['going', 'that']| -suspicion Another,['Lucy'] -pulled on,['those'] -is enough,|['to', 'She']| -angry glance,['at'] -does that,['bell'] -he plunged,|['forward', 'at']| -into Winchester,['this'] -done him,['As'] -allusion to,|['a', 'claim-jumping which']| -fields filled,['for'] -coldly in,['a'] -piece of,|['white', 'discoloured', 'paper', 'chaff', 'evidence', 'jewellery', 'gold', 'the']| -however allowed,['me'] -twisted himself,['round'] -possess all,['knowledge'] -saw a,|['large', 'tall', 'little', 'sudden', 'thin', 'more', 'gigantic', 'shadow']| -by Sherlock,['Holmes'] -of thick,['pink-tinted'] -matches and,|['the', 'muttering']| -a place,|['without', 'whence', 'and']| -going through,|['the', 'all']| -her I,|['could', 'cannot', 'am']| -The Duke,['his'] -paint in,['the'] -light for,['I'] -very fashionable,['epistle'] -behind into,['the'] -to gather,['about'] -just treat,['myself'] -financier I,['was'] -hideous outcry,['behind'] -warned against,['you'] -saw I,['was'] -find some,|['fault', 'possible']| -went her,['way'] -goose upon,['the'] -arrived in,['a'] -A and,|['then', 'B']| -forts upon,['Portsdown'] -some details,['as'] -me over,|['in', 'my', 'his']| -be fortunate,['enough'] -gained publicity,['through'] -most directly,['by'] -warning sent,['to'] -slight indication,['of'] -jerkily but,['as'] -occupation and,['he'] -until some,['time'] -affection he,['might'] -down will,['excuse'] -when summoned,['He'] -when suddenly,['there'] -until it,|['became', 'becomes', 'is']| -also No,['one'] -one direction,['and'] -have spun,['the'] -share of,['that'] -vex us,['with'] -den my,['life'] -my neighbours,|['but', 'These']| -is spattered,['with'] -as Mrs,['Rucastle'] -and urgent,['one'] -first sight,|['appear', 'seems']| -result for,['C'] -a succession,['of'] -gates which,['closed'] -Could your,['patients'] -the year,|['1858', '1878', '1869', '83', 'said', 'after']| -an amiable,['and'] -a moment's,|['notice', 'delay']| -of expectancy,['there'] -let them,['go'] -you alternately,['give'] -fascination of,['his'] -cleared along,['those'] -threat and,['its'] -atone for,['it'] -put forward,['with'] -clay pipe,|['thrusting', 'which', 'with', 'I']| -a wedding-morning,['but'] -To-morrow I,['shall'] -ordinary clothes,['on'] -disposition of,|['her', 'the']| -steps did,['you'] -these he,|['rummaged', 'took', 'constructed']| -street There,['is'] -spoke and,|['took', 'we', 'it', 'tumbled']| -words Get,['out'] -degraded what,['should'] -swiftly from,['the'] -heart had,['turned'] -Miss Alice's,['friend'] -little girl,['whose'] -surely he,['restored'] -thing come,['from?'] -the distant,['parsonage'] -a pt,['de'] -4. the,['red-headed'] -wall Making,['our'] -it once,|['became', 'more']| -the suggestiveness,['of'] -there lies,|['the', 'your']| -tall stout,['official'] -When in,['addition'] -her throat,['and'] -When it,['was'] -breaking up,['of'] -of passion,['and'] -in here,['he'] -secreting Why,['should'] -again however,['so'] -is alone,['than'] -arguments metallic,['or'] -thinness I,['do'] -Oh I,['know'] -particularly malignant,['boot-slitting'] -together The,['ideal'] -a brickish,['red'] -shall stand,['behind'] -repeated blows,['of'] -coming forward,['who'] -chain and,|['a', 'yet', 'grey', 'the']| -data yet,['It'] -trap drove,['on'] -pavement opposite,['there'] -girl's dress,['and'] -submit to,['me'] -the goodwill,['and'] -to cover,['my'] -crumpled morning,['papers'] -activity however,['which'] -a best,['man'] -desk and,['unlocking'] -as great,['a'] -comes if,['I'] -realistic effect,['remarked'] -the hearty,['noiseless'] -comes in,['person'] -his fate,|['that', 'But', 'as', 'while']| -Simon who,['has'] -do which,|['will', 'I']| -Lord that,['I'] -traces in,|['a', 'the']| -strange since,['we'] -better at,['last'] -looking as,['merry'] -looking at,|['her', 'himself', 'it', 'the', 'me']| -day did,['he'] -for which,|['he', 'this', 'I', 'it']| -worlds But,['there'] -of air,['A'] -five inches,['and'] -push the,['blow'] -as some,['city'] -dashed her,['to'] -|then," said|,['the'] -without opening,['his'] -thousand pounds,['Great'] -it give,['a'] -upon Neville,['St'] -pen by,['man'] -the funniest,['stories'] -treat of,['crime'] -about young,["McCarthy's"] -sharp frost,['had'] -be he,['could'] -|has, however|,['retained'] -with yellow,['pasty'] -right away,|['with', 'to', 'said', 'then', 'round']| -successes is,['true'] -purveyor to,['the'] -and stalked,['out'] -lad slipped,['on'] -drifted us,['away'] -sometimes losing,['sometimes'] -has happened,|['since', 'to', 'he']| -hardly reached,['the'] -Ferguson is,['my'] -With this,['intention'] -so familiar,['to'] -worked up,['to'] -fulfil the,['ultimate'] -sweet of,['you'] -and C' that,['is'] -she fattened,['fowls'] -L'homme c'est,["rien l'oeuvre"] -Hunter screamed,['and'] -that your,|['assistant', 'refusal', 'circulation', 'hat', 'experience', 'breakfast', 'son', 'circle', 'little', 'pains', 'interests', 'good']| -goose we,['retained'] -considerations in,['the'] -back It,|['was', 'took']| -strong smell,['of'] -is don't,['believe'] -while Wooden-leg,['had'] -to-day would,['it'] -box there,['although'] -furtive and,['sly-looking'] -their owner,['dear'] -as my,|['business', 'finger', 'feet', 'sister', 'friend', 'security.', 'daughter', 'companion', 'fears']| -a loathsome,['serpent'] -house last,['night'] -have chosen,['to'] -Frisco Not,['a'] -revolved slowly,['upon'] -least running,['a'] -beech the,['largest'] -it comes,|['from', 'down']| -business has,|['not', 'had']| -official inquiry,['came'] -improbabilities the,['whole'] -suit them,|['better', 'when']| -determined is,['whether'] -was alone,['once'] -no beryls,['in'] -happy couple,['And'] -paper could,['not'] -travelled and,['being'] -special province,|['yet,"']| -|however, just|,['as'] -A clump,['of'] -grass beside,['the'] -light holding,['the'] -threw open,|['the', 'a']| -nature he,['answered'] -heels of,['another'] -repeat to-day,['that'] -open that,|['I', 'door']| -IV. THE,['BOSCOMBE'] -shabbily dressed,['men'] -could so,['readily'] -opium den,|['in', 'and', 'what', 'when']| -looking earnestly,['up'] -someone had,|['passed', 'brought']| -the window,|['A', 'to', 'The', 'At', 'and', 'we', 'is', 'so', 'he', 'not', 'there', 'when', 'open', 'reopening', 'rose', 'These', 'or', 'hoping', 'of', 'cut', 'could', 'at', 'which', 'rapidly', 'hand', 'sprang', 'ascended', 'someone', 'nor']| -drawn at,['a'] -convinced himself,['that'] -your rubber,['after'] -a shorter,['walk'] -Jones of,['Scotland'] -half their,['salary'] -carefully dried,['and'] -good drive,|['in', 'you']| -fire however,['with'] -be compelled,['to'] -lenses would,['not'] -as pestered,['as'] -even greater,['perils'] -smoke curled,['through'] -The gentleman,['however'] -Holmes That,['is'] -road two,['stories'] -have royal,['blood'] -an office,['in'] -at everything,['with'] -he hugged,['his'] -cause him,['to'] -that away,['down'] -hundred before,['her'] -you bet,['then'] -downstairs on,['which'] -for dead,|['Oh', 'and']| -He laughed,|['I', 'until', 'very']| -a bad,['fellow'] -and shaken,['than'] -among the,|['most', 'crowd', 'reeds', 'moss', 'attics', 'others', 'dregs', 'ruffians', 'trees', 'richest', 'crash', 'heads', 'officials', 'bushes', 'rose-bushes', 'killed', 'Apaches', 'number', 'neighbours']| -the wandering,['gipsies'] -send me,['on'] -looks as,['if'] -found little,['enough'] -now here,['is'] -true to,|['him', 'Hosmer', 'me']| -looks at,['me'] -this prisoner,['is'] -these details,['but'] -are briefly,['these'] -is if,['you'] -have so,|['homely', 'far']| -Peterson that,['he'] -is in,|['a', 'need', 'my', 'contemplation', 'many', 'New', 'serious', 'command', 'Fresno', 'perfectly', 'terrible', 'itself', 'the', 'your', 'no', 'their']| -by Apache,['Indians'] -shadow pass,|['over', 'backward']| -Watson founded,['upon'] -is it,|['quite', 'you', 'then?', 'must', 'possible', 'It', 'uncle?', 'eleven."', 'then', 'is', 'I', 'then a', 'Ah', 'Becher\'s."', 'Public', 'not', 'on', 'shall']| -secreted his,['stethoscope'] -completely He,['has'] -this part,['of'] -foresight now,['than'] -and jolted,['terribly'] -sure about,['this'] -of more,['interest'] -wife Toller,['for'] -my slippers,['before'] -energy in,['action'] -slipped out,|['put', 'of']| -my adventures,|['started', 'Mr']| -pale sad-faced,['refined-looking'] -complete without,['some'] -flashed upon,['the'] -facts slowly,['evolve'] -but Spaulding,['would'] -a decided,['draught'] -lived at,['Horsham'] -from coming,['up'] -I picked,['myself'] -on hand,|['there', 'just', 'and']| -his reverie,['is'] -adventure said,['he'] -astonishment when,['I'] -walk that,['we'] -the bottom,|['There', 'of', 'I', 'my']| -and prolonged,['scene'] -household some,['half-dozen'] -might solder,['the'] -probably result,['in'] -of note-paper,['It'] -Wednesday It,['is'] -fate as,['Openshaw'] -people are,['improved'] -passed since,['then'] -shouted first,['to'] -coat He,['was'] -so vague,|['and', 'that']| -answer will,['prejudice'] -my walking-clothes,['as'] -cunning grinning,['face'] -middle-aged that,['his'] -run to,|['too', 'considerably']| -fallen but,['the'] -slight forward,['stoop'] -was dead the,['bonniest'] -story linked,['on'] -to London,|['by', 'it', 'then', 'and']| -whole success,['of'] -a cascade,['of'] -perceive upon,['the'] -something which,|['I', 'drove', 'brought']| -manner to,['something'] -being Saturday,['rather'] -Holmes from,|['within', 'the']| -of St,|['Monica', 'Augustine', "George's"]| -of Scotland,['Yard'] -clothes off,['and'] -is fairly,['clear'] -a really,['hard'] -Do you,|['note', 'mean', 'not', 'understand', 'think', 'feel', 'tell', 'see?']| -what passed,|['between', 'in']| -he pray,['go'] -have bordered,['on'] -you tales,['of'] -partner in,['the'] -instituted that,['was'] -then quick,['steps'] -a delight,['at'] -already since,['I'] -palm of,|['my', 'his', 'the', 'your']| -sure excuse,['me'] -would disqualify,['them'] -to goodness,['the'] -went then,['and'] -the murdering,['and'] -veiled who,['had'] -these newcomers,['our'] -business met,['with'] -candidate as,['he'] -The lining,['had'] -outstanding bones,['Yet'] -a glimpse,['of'] -pounds could,['do'] -New Zealand,['stock'] -lady There,|['are', 'it']| -instructions to,['apply'] -rushing to,|['my', 'the']| -my cry,['he'] -construction of,['the'] -and drawing ,["tut!'"] -an absolutely,|['innocent', 'quiet', 'desperate']| -cord The,['door'] -bruise the,['sympathetic'] -me the,|['advertisement', 'address', 'whole', 'advertised', 'books', 'honour', 'impression', 'clues', 'results', 'flowers', 'one', 'story', 'reason']| -passed down,|['a', 'the']| -is probably,['familiar'] -for she,|['would', 'had', 'slowly', 'has']| -up so,|['that', 'early', 'much', 'nicely']| -the Roylotts,['of'] -coming here,['said'] -increased by,['the'] -always about,['three'] -official agent,['I'] -understand afterwards,['if'] -word all,['over'] -bridegroom for,['some'] -the fanciful,['resemblance'] -A You,['have'] -motive was,['there'] -which aroused,['your'] -men one,['of'] -other said,['I'] -inviolate The,['photograph'] -companion quietly,['am'] -withdraw quietly,['with'] -door window,['and'] -with despair,['in'] -manner that,|['it', 'he']| -hadn't pulled,['up'] -safe I,['went'] -the mystery,|['I', 'is', 'and', 'may', 'clears', 'were']| -now Miss,['Stoner'] -family your,['own'] -steps within,['the'] -piping not,['a'] -as little,|['regard', 'of']| -Sir I,|['can', 'cannot']| -vice in,['him'] -small lake,['formed'] -easy soothing,['tones'] -pounds I,|['was', 'grew']| -You won't,['shake'] -upon young,['McCarthy'] -door Then,|['there', 'she']| -good purpose,['can'] -cloudless At,['nine'] -hard to,|['think', 'say', 'tackle', 'resist']| -in company,['with'] -second morning,['after'] -as trifles,['Let'] -opening for,|['the', 'you']| -pounds a,|['week', 'week.', 'year which', 'year and', 'dazed', 'month', 'year.', 'year', 'quarter']| -bow to,['the'] -focus of,['crime'] -Holmes answering,['the'] -Under-Secretary for,['the'] -assurance while,['Holmes'] -dress which,|['we', 'I']| -of poor,['Mary'] -matter Depend,['upon'] -to unseat,['my'] -arms round,|['her', 'him']| -cold brilliant,['many-pointed'] -that threaten,['you'] -several singular,['points'] -details have,['drawn'] -the confidence,['which'] -be laughed,['at'] -creature against,['whom'] -any violence,|['and', 'upon']| -in different,|['directions', 'parts']| -fresh rashers,['and'] -vitriol-throwing a,['suicide'] -Sutherland while,['the'] -submit it,['to'] -ever I,|['thought', 'confess', 'had']| -went off,['to'] -The inspector,|['and', 'sat']| -any others,['that'] -say Doctor,['there'] -and land,['on'] -rose to,|['go', 'be', 'leave', 'put', 'greet']| -time later,['I'] -promising him,['that'] -some parts,['melon'] -I once,['saw'] -his strong-box,['and'] -theory so,['do'] -being volumes,['of'] -scattered houses,['and'] -tear about,['the'] -a quartering,['of'] -me laughing,['just'] -he gives,['no'] -other than well,['perhaps'] -the oldest,['Saxon'] -too well,['to'] -out-house but,['no'] -the cellar something,['which'] -Miss Flora,['Millar'] -singular sight,['which'] -any misfortune,['should'] -shoots and,['the'] -away from,|['each', 'the', 'home', 'himself', 'you', 'here', 'death', 'her', 'this', 'me']| -whence it,|['had', 'will']| -am prepared,['to'] -forger He's,['a'] -father's young,['wife'] -itself implies,['as'] -to fill,|['a', 'the']| -site of,['the'] -the lustrous,['black'] -the case,|['of', 'and', 'in', 'for', 'cannot', 'he', 'to', 'as', 'looks', 'depends', 'All', 'before', 'clearly', 'made', 'from', 'has', 'complete', 'must', 'it', 'with', 'was', 'into', 'let', 'backward', 'but', 'What', 'although', 'is']| -so dreadful,['to'] -bent his,|['head', 'strength']| -Patience Moran,['who'] -grew higher,['and'] -this piece,['of'] -though the,|['matter', 'boots', 'weight', 'sensation', 'future', 'smell', 'floor']| -purely animal,['lust'] -what moment,['the'] -his note-book,['and'] -manner am,['sure'] -need cause,['you'] -a house,|['in', 'whitewashed']| -The landlady,['informed'] -our return,['to'] -blood enough,['to'] -that Henry,['Baker'] -was bright,['his'] -Holmes severely,['You'] -coincident with,['the'] -colour a,['coat'] -success There,['was'] -trivial in,['themselves'] -crystallised charcoal,['Who'] -Holmes glanced,['sharply'] -cannot do,['that'] -after he,['had'] -the bowls,['of'] -own As,['he'] -receipt upon,['a'] -unseat my,['reason'] -The woman,['was'] -of glasses,['on'] -standing smiling,['on'] -devilish trade-mark,['upon'] -facts might,['be'] -friend insisted,['upon'] -partner with,['his'] -wish it,['thank'] -cadaverous face,['of'] -his son,|['Mr', 'and', 'for', 'was', 'had', 'to', 'only', 'so', 'but']| -colour I,|['found', 'can', 'saw']| -replace it,['it'] -lay another,['dull'] -are interesting,['ourselves'] -ignorant of,['his'] -high words,['and'] -to starting,['for'] -is ever,|['a', 'ready', 'so']| -was twenty,['before'] -this problem,['said'] -and being,|['satisfied', 'fortunate']| -been remarked,['upon'] -be relevant,['or'] -word became,['what'] -secret marriage,['legal'] -the forecastle,['of'] -locked so,['Pray'] -explained the,|['matter', 'presence', 'American']| -grabs at,['her'] -cleanly smell,['of'] -wedding after,['all'] -of Clark,["Russell's"] -explore the,['parts'] -because such,['surprise'] -of Lady,['St'] -my little,|['difficulties', 'problems', 'den', 'Mary']| -you Jones,|['it', 'have']| -all round,|['with', 'and', 'the', 'are']| -half-crowns by,['the'] -German music,|['on', 'and']| -fresh heart,['at'] -mask from,['his'] -newly opened,['envelope'] -apartment does,['that'] -the colonies,|['so', 'in']| -My wants,['were'] -Stark and,['a'] -he ever,|['spoken', 'showed']| -put yourself,['out'] -with Boscombe,['Valley'] -to indicate,['some'] -say and,['for'] -which fringed,['the'] -pitiable state,['of'] -the wrong,|['scent', 'side', 'if', 'which', 'by']| -apparent surprise,['at'] -A short,['railway'] -most absolute,['fools'] -ghastly face,['and'] -injunction as,['to'] -as every,['fresh'] -remarked with,['some'] -and free,['unfettered'] -keen eye,['upon'] -a guilty,['one'] -uncle to,['witness'] -youth though,['comely'] -I happened,['to'] -steps which,|['lead', 'he', 'led', 'terminated', 'I']| -to employ,['have'] -latter days,['of'] -and ascertaining,['what'] -high tide,['with'] -not had,|['my', 'very']| -swamp adder,['cried'] -whence she,['had'] -to fail,['in'] -pavement dear,['doctor'] -in making,|['up', 'a']| -promptly closing,['the'] -and dates,['as'] -run away,['and'] -to-night there,['a'] -calling with,['a'] -profession is,['its'] -Alice Even,['when'] -me At,|['two', 'present']| -nothing by,['them'] -brown volume,['from'] -and Florida,['Its'] -indeed Let,['me'] -fireplace after,['the'] -pretty little,|['problem', 'country-town']| -nearly five,['now'] -sister is,['dead'] -why it,['should'] -overpowering terror,['I'] -disappearing bridegroom,['of'] -finished his,['speech'] -be gained,['out'] -mental results,['Grit'] -nothing about,['it'] -why in,['hopes'] -I took,|['the', 'a', 'up', 'two', 'advantage', 'my', 'in', 'to', 'next', 'out']| -even of,|['understanding', 'instruction', 'the']| -But this,|['time', 'one']| -swash of,['the'] -there!" said,['he'] -my patron,['had'] -carriage go,['up'] -of addressing,['Miss'] -any point,['which'] -He turned,['and'] -the other,|['of', 'while', 'side', 'day', 'answered', 'block', 'was', 'rogue', 'woman', 'clerks', 'a', 'at', 'is', 'I', 'hand', 'may', 'one', 'papers', 'ones', 'little', 'clothes', 'garments', 'led', 'Anyhow', 'You', 'characteristics', 'and', 'things', 'end', 'way', 'from', 'unusually', 'shot', 'that', 'thirty-six', 'pausing', 'as', 'In', 'had', 'noting', 'so', 'with']| -his time,|['he', 'of', 'in']| -placed a,['pillow'] -effusive It,['seldom'] -driving back,['to'] -His cry,['brought'] -clock makes,['it'] -even on,|['a', 'such']| -snuff Pray,['continue'] -him throw,['his'] -real real,['opinion'] -country is,|['England', 'more']| -expected that,['there'] -for you Jem's,['bird'] -of arrest,['in'] -than an,|['obvious', 'accessory', 'hour']| -foreseen conclusions,['most'] -ancient and,['cobwebby'] -repeated visits,['Was'] -chamois leather,['bag'] -unfortunate that,['you'] -the gentle,['breathing'] -villa which,['stood'] -his trap,['in'] -for here,['unless'] -at mankind,['through'] -accident I,['cannot'] -gibe and,['a'] -sign a,['paper'] -early 60's,['at'] -him to,|['be', 'hospital', 'put', 'step', 'do', 'fail', 'say', 'receive', 'come', 'throw', 'prevent', 'drop', 'see', 'his', 'gaol', 'take', 'a', 'forgo', 'the', 'pay', 'my', 'remember', 'go']| -that Colonel,['Openshaw'] -this wound,['of'] -the fancies,['of'] -sister was,|['troubled', 'quite']| -Turner cried,['the'] -garments He,['would'] -three hundred,['pounds'] -great city,|['gently', 'Sherlock']| -creature He,['is'] -once was,['the'] -first groaned,['our'] -butted until,['he'] -floor Then,['it'] -the household,['who'] -man And,['yet'] -Your Majesty,|['had', 'as', 'has', 'will']| -much ado,['to'] -small expense,['over'] -I come,|['A', 'back?']| -American Encyclopaedia,['which'] -passed at,|['once', 'Lord']| -still as,['ever'] -suspicion But,['then'] -Coroner: I,|['am', 'understand']| -her using,['it'] -data I,['cannot'] -carpet in,['the'] -I rose,|['and', 'from']| -padlocked at,['one'] -of remaining,['where'] -with them,|['They', 'Of', 'It', 'and', 'Having', 'sometimes', 'he', 'so']| -my impatience,['beg'] -sequel was,['rather'] -no prosecution,['Off'] -I only,|['caught', 'keep', 'wished', 'quote', 'trust', 'wish', 'wonder', 'doubt ', 'hope']| -into talk,['about'] -distinct proof,['of'] -benefactor to,['him'] -waiting Then,['I'] -myself to ,['He'] -40 pounds,['There'] -Grosvenor Mansions,['written'] -in anger,['that'] -playing this,['prank if'] -newspaper selections,['is'] -box stood,['open'] -Hatherley in,['intense'] -about fowls,['than'] -look it,|['over', 'up']| -years My,['doctor'] -his bag,['as'] -many? I,["don't"] -I observe,|['You', 'that', 'the']| -are over,['for'] -in just,['now'] -senseless on,['the'] -have led,|['retired', 'a']| -well that,|['he', 'I', 'we', 'it', 'the']| -Anderson" of,['the'] -does the,|['idiot', 'thing', 'smiling']| -there imbedded,['in'] -must pay,['It'] -its methods,['that'] -his heavy,|['hunting', 'breathing', 'weapon']| -he slipped,['the'] -sister's death,['should'] -His slow,['limping'] -have let,['the'] -Watson that,|['you', 'weakness', 'if', 'though', 'we', 'I', 'it']| -was last,['Friday'] -shot him,['then'] -the servants,|['and', 'My', 'escapade', 'There', 'even']| -their license,['that'] -upon seeing,['me'] -would see,|['to', 'no', 'it', 'that']| -chase observed,['Mr'] -so small,['that'] -no importance,|['At', 'but']| -Adler photograph,['but'] -tiger cub,['and'] -Becher a,['German'] -the thing,|['always', 'which', 'very', 'clear', 'come', 'up', 'seems', 'obtruded']| -been chewing,['tobacco'] -an intellectual,['problem'] -facts looking,['at'] -Simon Holmes,['leaned'] -narrow wing,['runs'] -very interesting,|['statement', 'study', 'You', 'And']| -gaiters over,['elastic-sided'] -windows reaching,['down'] -it Public,['disgrace'] -this extraordinary,|['league', 'narrative', 'mystery', 'performance', 'story']| -now out,['of'] -Depend upon,['it'] -do from,['fifteen'] -whipcord in,['his'] -legal sense,['at'] -hence it,['is'] -in Auckland,['It'] -profound as,['regards'] -risk to,['your'] -tapping of,['Sherlock'] -had when,['the'] -wife laid,['her'] -fourth was,['shuttered'] -Letters memoranda,['receipts'] -and there,|['was', 'is', 'he', 'are', 'were', 'it', 'they', 'can', 'a', 'sitting', 'through', 'has', 'your', 'would', 'seemed', 'reared', "isn't", 'never', 'imbedded', 'having', 'I', 'we', 'may']| -experience of,|['camp', 'such', 'my', 'Miss']| -boxed the,['compass'] -record before,['but'] -to affect,|['the', 'your']| -tell Mrs,['Rucastle'] -sudden pluck,['at'] -reasons to,|['believe', 'know']| -which they,|['have', 'had']| -two To-day,['is'] -round to,|['me', 'my', 'the', 'him', 'us', 'his', 'you']| -to embellish,|['so', 'you']| -There can,['be'] -fully dressed,|['You', 'by']| -glass sherry,['8d.'] -not mind,['you'] -my Frank's,['name'] -as their,|['letter', 'master']| -relics of,['my'] -anything about,['it'] -for repairs,['at'] -unsystematic sensational,['literature'] -and straight,['into'] -greatest interest,['to'] -heavier in-breath,['of'] -dress the,['letter'] -planted halfway,['down'] -honeymoon would,['be'] -window cut,['at'] -little pallet,['bed'] -Architecture and,['Attica'] -Watson with,['a'] -and general,['look'] -are trivial,['I'] -continually from,|['the', 'a', 'one']| -before Did,['you'] -Holmes name,|['of', 'is']| -back so,['that'] -web they,['may'] -explain afterwards,['I'] -I after,['going'] -building which,['proved'] -one for,|['your', 'Christmas', 'you', 'us', 'two']| -a Roylott,['of'] -the sign,|['when', 'to']| -caltrops in,['chief'] -and laughing,['in'] -face extending,['down'] -see out,['of'] -episode was,['a'] -lay between,['that'] -breastpin of,['course'] -Windibank sprang,['out'] -not fresh,['and'] -He's quicker,['at'] -Horner some,['little'] -solved was,['the'] -battered hat,['and'] -wish to,|['make', 'the', 'lose', 'lay', 'be', 'do', 'see', 'spare', 'speak', 'hear', 'have', 'know', 'follow', 'determine', 'commit', 'go', 'look']| -crumpled envelope,['and'] -slide across,['the'] -as science,['lost'] -need for,|['father', 'repairs']| -representative both,['with'] -so terrible,['is'] -stranger with,['deference'] -Holmes bending,['forward'] -small street,['in'] -cultured face,['high-nosed'] -Wilson off,['you'] -rough surface,['Then'] -and talked,|['to', 'with']| -sooner out,['of'] -of cheating,['at'] -vehicle save,['a'] -he! You,['are'] -the metal,['pipes'] -unknown man,['a'] -hundred pounds.,['it'] -strong and,['stiff'] -this tangled,['clue'] -Dundee and,['the'] -stepfather who,['is'] -Hum Arms,['Azure'] -answered smiling,['and'] -hand over,|['his', 'part']| -where no,['one'] -returned upon,['the'] -and gentle,['as'] -profession but,['is'] -not strike,['you'] -ask Mrs,|['Hudson', 'Oakshott']| -her to,|['show', 'seek', 'this', 'one', 'make', 'be', 'take', 'say', 'change', 'marry', 'his', 'sign']| -this as,|['a', 'likely']| -the colour,|['of', 'began', 'I']| -relate and,['can'] -folly of,['a'] -cared no,['longer'] -air I,['see'] -are widespread,['rumours'] -before us,|['The', 'he', 'There', 'I', 'everything']| -air A,['maid'] -denial that,['the'] -was dark,|['again', 'in']| -the belief,['that'] -no surprise,['I'] -or six,['weeks'] -the personal,['column'] -father She,['was'] -its details,|['and', 'that']| -where as,['I'] -The little,['which'] -give way,['and'] -low spirits,['again'] -had stooped,['and'] -bell-pull there,['You'] -a fortnight's,['grace'] -best by,['returning'] -Black Swan,|['Hotel', 'is']| -stay in,|['London', 'the']| -to interest,|['myself', 'yourself']| -yourself picked,['out'] -fifty guineas,|['apiece', 'for', 'and']| -which ran,['through'] -my medical,['instincts'] -have doubtless,['heard'] -middle of,|['the', 'a']| -attack murderous,['indeed'] -from eavesdroppers?,['the'] -his neighbour,['At'] -times up,['and'] -were three,['doors'] -foul play,['in'] -given prominence,['not'] -highroad which,['curves'] -is satisfied,['why'] -Doctor perhaps,['you'] -down can,['you'] -are joking,['What'] -relaxed his,['rigid'] -us man,['married'] -own deathbeds,['when'] -an angle,['of'] -windfall or,['of'] -a pretty,|['little', 'expensive', 'business', 'good']| -was mine,['all'] -pool which,['lay'] -had gone,|['We', 'up', 'to', 'out', 'Holmes', 'through', 'You', 'twelve', 'off', 'away']| -blue cloak,['which'] -what happened,|['when', 'to']| -my groom,['is'] -years proof,['against'] -Now we,|['must', 'can', 'shall']| -was following,|['him', 'my']| -were exposed,['in'] -to laugh,['at'] -clock ticking,['loudly'] -seemed the,['darker'] -records Among,['my'] -linen of,['the'] -was during,['the'] -The money,['which'] -signs that,|['in', 'I']| -McCarthy had,['one'] -envelope had,['to'] -no capital,['by'] -vote to,['are'] -to sob,|['heavily', 'in']| -of many,|['feet', 'tons']| -it bore,|['you', 'unmistakable']| -north side,['of'] -appearance of,|['some', 'decrepitude', 'Peterson']| -on hearing,['the'] -may interest,['you'] -town finally,['returning'] -a year which,['is'] -tinted glasses,|['against', 'slight', 'masked']| -lie at,['the'] -had wives,['living'] -exhibited no,['traces'] -faded brown,['overcoat'] -laughing-stock of,['Scotland'] -ruin that,['save'] -astonishment upon,['her'] -you give,|['your', 'me', 'Lucy']| -particularly." I,['suggest'] -in sight,['at'] -suppliers Now,['look'] -live to,['the'] -there save,['the'] -rather that,['I'] -hole through,['which'] -you round,['to'] -white to,|['his', 'the']| -faith of,['our'] -am left,['to'] -tales of,|["cobbler's", 'what']| -appeared to,|['be', 'come', 'me', 'read', 'have', 'you']| -shall speedily,['supply'] -person looked,['sadly'] -this way,|['DEAR', 'you', 'James', 'down', 'You', 'if', 'I', 'we', 'he']| -contain the,['vital'] -gather to,['be'] -succeeded in,['braving'] -figure in,['the'] -a tinker's,['Well'] -this was,|['I', 'where', 'a', 'the']| -pronounce him,['to'] -all now?",['I'] -And why,['could'] -He appeared,['to'] -hand you,['will'] -poison fangs,['had'] -admirable opportunity,['I'] -door tightly,['behind'] -went to,|['my', 'the', 'visit', 'search', 'came', 'her', 'see', 'bed']| -easier for,['the'] -crudest of,['writers'] -gas laid,['on'] -a prosecution,['must'] -letter which,['I'] -was visible,['to'] -very well,|['You', 'that', 'to', 'said', 'justified', 'indeed', 'have', 'but', 'At', 'see', 'both', 'Kill', 'then', 'Then', 'able']| -wincing though,['he'] -found save,['a'] -so extremely,['difficult'] -bringing home,['the'] -do view,['of'] -consideration Miss,['Hunter'] -close to,|['that', 'mine', 'where', 'the']| -don't wish,['to'] -her hands,|['upon', 'groping', 'wrung', 'with', 'She', 'in']| -son knew,['the'] -locked as,['well'] -quiet said,['Holmes'] -enable her,['to'] -had 1000,['pounds'] -not always,['so'] -Among these,['he'] -talked together,['in'] -not pleasant,['to'] -of ours,['it'] -hospital a,['brave'] -receiver who,['had'] -intimate of,['a'] -light He,['would'] -their journey,['and'] -you foresee,['shook'] -the languid,['lounging'] -some dark-coloured,['stuff'] -is wrong,|['we', 'with']| -and anger,['all'] -must feel,['to'] -advance upon,['his'] -business matters,['to'] -nor business,['nor'] -Street that,|['night', 'he']| -without success,|['do', 'There', 'At', 'No']| -out all,['these'] -scuffle without,['taking'] -disreputable clothes,|['walked', 'off']| -swept from,['her'] -I mentioned,|['to', 'it']| -for if,|['Dr', 'you']| -speckled band,|['I', 'whispered']| -own good,|['fortune', 'sense']| -sinister door,['and'] -uncontrollable in,['his'] -overdid it,['I'] -for it,|['or', 'by', 'the', 'cost', 'Holmes', 'and', 'made', 'was', 'but', 'last', 'But', 'seemed', 'told', 'I', 'is', 'would', 'in', 'he', 'that', 'will', 'Both']| -monograph upon,['the'] -returning from,|['a', 'Fareham', 'some']| -further steps,['may'] -at seeing,['me'] -am Just,['hold'] -minutes later,|['we', 'I']| -baby her,['wee'] -saved him,['in'] -a parapet,['into'] -upon him,|['and', 'He', 'as', 'eight-and-forty', 'On', 'This', 'What']| -instant his,['strange'] -by daubing,['them'] -lips heaven's,['sake'] -go and,|['inquire', 'from', 'was', 'make']| -photograph is,|['in', 'now']| -returned evidently,['in'] -about one,['of'] -church There,['was'] -must speak,['to'] -guilty why,['did'] -so Nothing,['to'] -can. this,['time'] -fold upon,['fold'] -brazier of,['burning'] -reason As,['he'] -never dared,['to'] -a commission,['as'] -any feature,['of'] -honour but,['that'] -leave no,['survivor'] -occasional little,['springs'] -was ejected,['by'] -serious extent,['My'] -about here,['speaks'] -I managed,['to'] -tell some,['strange'] -two minor,['points'] -many scattered,['papers'] -violin and,['let'] -Lane But,['what'] -is time,['that'] -his uneasiness,['about'] -restore lost,['property'] -hardened nerves,['a'] -terrible injury,['It'] -important business,['It'] -either me,['or'] -Fordham shows,['you.'] -murmured Holmes,|['settling', 'Your', 'without', 'Surely']| -moral retrogression,|['which', 'Holmes']| -whether I,|['should', 'shall', 'were', 'had']| -house Four,['or'] -such much,['so'] -permission I,['will'] -skin the,['colour'] -is mistaken,['in'] -private purse,['said'] -be removed,['Saturday'] -papers until,['at'] -jot down,['the'] -risen from,['his'] -danger also,['for'] -evening after,['the'] -whether a,['fad'] -soon pushed,['her'] -reaction against,['the'] -to forget,['for'] -language to,['his'] -|really, when|,['I'] -waited behind,['a'] -would like,|['advice', 'to', 'my', 'you']| -Within are,['the'] -yet even,['here'] -forward seized,['the'] -jaw resting,['upon'] -light the,['fire'] -innocent knows?,['Perhaps'] -it the,|['most', 'leather', 'other', 'plainer', 'result', 'folk', 'debt', 'long']| -amid all,['the'] -glanced in,['his'] -Then at,['the'] -our little,|['plans', 'problem', 'deductions', 'friend', 'place', 'house', 'whim']| -mysterious end,|['becomes,']| -at Coburg,['Square'] -limbs showed,['that'] -be a,|['pity', 'man', 'satisfaction', 'bachelor.', 'little', 'burden', 'sealed', 'strange', 'marriage', 'colonel', 'doubt', 'slave', 'powerful', 'search', 'bachelor', 'purveyor', 'policeman', 'most', 'communication', 'small', 'hideous', 'sharp-eyed', 'monomaniac', 'morose', 'particularly', 'subject', 'call', 'scandal', 'quartering', 'lover', 'husband', 'thoroughly', 'private', 'simple', 'noise', 'strong', 'mere', 'very', 'nice', 'danger', 'young', 'silent', 'happy']| -stones A,['few'] -am delighted,['to'] -bed the,['tassel'] -it made,['me'] -solve is,|['the', 'how']| -gullet and,['down'] -an affair,|['when', 'which']| -be I,|['was', 'could', 'thought', 'would']| -two plain,['questions'] -could only,|['have', 'say', 'catch', 'be', 'bring']| -and pale-looking,['have'] -the bargain,['you'] -The streets,['will'] -are cold,['beef'] -|Stoper. really,|,['it'] -club and,['there'] -adder cried,['Holmes'] -over here,|['a', 'over', 'is', 'again']| -Wallenstein and,['for'] -pale face,|['and', 'may', 'disfigured']| -insight that,['I'] -chair is,['it'] -front or,['behind'] -my tea,['when'] -in Andover,['in'] -gleam of,|['the', 'a']| -absolute secrecy,|['for', 'is']| -you managed,|['that', 'it']| -its very,['highest'] -front of,|['the', 'Briony', 'it', 'a', 'his', 'him', 'me', "Peterson's", 'us']| -with you.,['I'] -punishment THE,['ADVENTURE'] -were you,['doing'] -are rolled,['in'] -chair in,|['considerable', 'his']| -did rather,['for'] -leaving me,|['Now', 'palpitating']| -took him,['from'] -a subdued,['brightness'] -own strength,['was'] -strengthen his,['conviction'] -have three,|['days', 'maid-servants']| -rely on,|['you', 'me']| -son's statement,['to'] -in debt,['to'] -seemed likely,['enough'] -frock-coat a,['picture'] -a protestation,['of'] -no want,['of'] -took his,|['leave', 'children']| -traced home,['to'] -course saw,['that'] -by Flora,['Millar'] -with your,|["Majesty's", 'filthy', 'short', 'medical', 'permission', 'silly', 'statement', 'narrative', 'assistance', 'deductions', 'company', 'haste']| -more question,['How'] -sure of,|['it', 'the', 'you']| -round a,['small'] -of Colonel,|["Warburton's", 'Lysander', 'Spence']| -the charming,['climate'] -highly said,['Holmes'] -French It,['is'] -sent my,['heart'] -voice and,|['a', 'I', 'saw']| -a gulp,['and'] -stop when,['you'] -meadows there!",['said'] -mine yet,['how'] -ever very,['thin'] -anger however,['caused'] -knife could,['be'] -glow of,['the'] -better man,['than'] -attempting to,['put'] -room began,['to'] -train at,['half-past'] -the five,|['dried', 'miles']| -facts You,['will'] -|he sir,|,['that'] -might appear,['to'] -hydraulic stamping,['machine'] -quote Thoreau's,['example'] -wind is,['easterly'] -not unravel,['left'] -loudly somewhere,['in'] -William Morris,|['He', 'or']| -which at,|['the', 'first']| -deduce something,['from'] -bags Great,['Scott'] -Circumstantial evidence,['is'] -contrary for,['a'] -this information,['said'] -three bills,['upon'] -to suit,|['theories', 'facts']| -postmark preposterous,['practical'] -temper approaching,['to'] -the shutters,|['for', "It's", 'falling', 'of', 'moved', 'up.']| -membra of,['my'] -and position,['We'] -being criminal,['We'] -placing upon,['record'] -events of,['the'] -announcement and,['the'] -plumped down,['into'] -to think,|['over', 'of', 'neither', 'I', 'evil', 'Watson', 'with', 'that', 'at', 'it', 'It']| -and congratulated,['me'] -crocuses promise,['well'] -her alone,['in'] -her along,['the'] -these nocturnal,['whistles'] -spoken to,|['us', 'you', 'Lord', 'anyone', 'me']| -than Sherlock,['Holmes'] -business premises,['that'] -gaol now,['and'] -convince the,['police'] -carre you,['might'] -hand were,['behind'] -mere commonplaces,['of'] -at its,['very'] -think all,['that'] -stuffed with,['pennies'] -coffee colour,['with'] -child which,['weighed'] -remainder of,|['your', 'the']| -you?" Her,['bed'] -I examined,|['every', 'the', 'as']| -lies at,['the'] -Twice since,['I'] -the green-room,['for'] -as mustard,['Toller'] -belt of,|['sodden', 'suburban']| -arrest did,['not'] -gloves were,['greyish'] -in year,['out'] -senders to,['travel'] -glancing back,['like'] -course one,["can't"] -which shone,['out'] -seldom was,['but'] -door and,|['into', 'so', 'knocked', 'as', 'the', 'bowed', 'lock', 'glanced', 'looked', 'a', 'turned', 'dragged', 'which', 'ushered', 'pulled', 'forming', 'walked', 'hurried', 'slipped', 'wondering', 'straight', 'gave']| -spongy surface,['where'] -take us,['at'] -nice little,|['brougham', 'crib']| -as averse,['to'] -nor tail,['of'] -Therein lies,['my'] -cashier I,['ordered'] -constraint law,['cannot'] -prompt My,['whole'] -London for,['the'] -astrakhan were,['slashed'] -cold sneer,['upon'] -brilliant beam,['of'] -bitterly regretted,['the'] -of characters,['Pray'] -Lothman von,['Saxe-Meningen'] -returned feeling,['very'] -delicacy in,['his'] -never show,['my'] -over part,['of'] -delirious Coroner,['What'] -of forgiveness,['Chance'] -my note,|['he', 'the', 'paid']| -your most,['interesting'] -paradoxical it,['is'] -scored over,['you'] -hotel Then,['I'] -geese off,['you'] -square of,|['cardboard', 'Wilton']| -most happy,['to'] -blood I,['was'] -misfortune might,['never'] -knew that,|['my', 'you', 'his', 'the', 'I', 'she', 'this', 'he', 'some', 'it', 'we', 'none', 'Arthur', 'so']| -I spoke,|['to', 'and', 'am']| -and coffee,['in'] -his appearance,|['but', 'But']| -lane a,['very'] -She sits,['in'] -her within,['their'] -scattered about,['in'] -rather sternly,['He'] -fault if,['we'] -our quest,['and'] -now about,['to'] -last It,['is'] -fault in,['them'] -could tell,|['you', 'me', 'some']| -Mary that,['I'] -instituted a,['goose'] -days on,|['end', 'the']| -lane I,['saw'] -that put,['us'] -hardest for,['me'] -and surprise,['Do'] -rushed down,|['the', 'just']| -inarticulate cry,['call'] -were typewritten,['he'] -to back,|['my', 'it']| -he winced,['from'] -person it,['saw'] -have drawn,|['a', 'my', 'the', 'him']| -it By,['the'] -person in,|['uniform', 'question']| -mean to,|['wear', 'have']| -both with,['the'] -Supposing that,['this'] -began walking,['into'] -good cause,['the'] -brows and,['an'] -worst of,|['it', 'all']| -knees as,|['though', 'he']| -do that,['I'] -Paddington as,['to'] -though my,['wife'] -Alicia Whittington,['The'] -my skill,['I'] -he Ah,['yes'] -jet ornaments,['Her'] -advertised description,['of'] -gone down,['in'] -have equalled,['It'] -than I,|['should', 'expected', 'am', 'was', 'could', 'had', 'to', 'who', 'can', 'cared', 'have']| -he answered,|['lighting', 'ringing', 'with', 'You', 'It', 'yawning', 'laughing', 'I', 'what', 'Oh', 'smiling', 'turning']| -herald of,['her'] -Were it,['not'] -face Her,['lips'] -in gushes,['and'] -this stone,|['yes,']| -train together,['bound'] -quite exceptional,['woman'] -trade in,['wax'] -way led,['me'] -some time,|['You', 'done', 'to', 'This', 'in', 'ago', 'later', 'chatting', 'and', 'that', 'before']| -better Capital,['capital!'] -in society,['does.'] -than a,|['strong', 'bean', 'precious', 'meditative']| -course I'd,['have'] -so impossible,['however'] -paced up,['and'] -of copper,['beeches'] -America to,['hear'] -suite but,['it'] -ground that,['I'] -to muster,['all'] -speech Was,['dressed'] -your wishes,['I'] -had gently,['closed'] -are perfectly,|['fresh', 'correct']| -table behind,['which'] -it shall,|['glance', 'never', 'just', 'be']| -she glanced,['at'] -other motive,['she'] -indeed. And,['what'] -throat sat,['at'] -thoughtless of,['me'] -inquiry for,['though'] -the probability the,['strong'] -escape We,['are'] -interest he,['remarked'] -most searching,['gaze'] -fire am,['glad'] -fire at,['every'] -confirmed by,['his'] -steps because,['I'] -she listened,['heavens!"'] -papers that,['he'] -too deep,|['It', 'for']| -mind rather,['than'] -stormy so,['that'] -ten I,['shall'] -do so.,['thought'] -possible but,['I'] -which let,['in'] -an empty,|['berth', 'room']| -a windfall,['or'] -my conjecture,|['into', 'became']| -gloom behind,['her'] -Breckinridge the,['salesman'] -and showed,|['that', 'us']| -offices of,['the'] -on and,['a'] -four letters,|['from', 'which']| -pocket There,['are'] -have treated,['you'] -pawnbroker's business,|['at', 'is']| -the birds a,['fine'] -well furnished,['with'] -poor Frank,|['here', 'if']| -the rattle,['of'] -no knowledge,['as'] -cunning as,['his'] -attracted admirers,['who'] -father thought,['it'] -the loving,['couple'] -be bought,|['under', 'will']| -answered by,['a'] -the cover,|['of', 'was']| -on any,|['criminal', 'pretext']| -seen very,['little'] -last saturated,['with'] -a left-handed,|['gentleman', 'man']| -spirits and,['feeling'] -the south,['then'] -foil Our,['reserve'] -lure which,['must'] -he say,['when'] -he saw,|['clearly', 'you', 'his', 'me', 'in']| -he sat,|['with', 'in', 'down', 'now', 'as', 'when', 'staring', 'frequently']| -province has,['been'] -his homely,['ways'] -husband coming,['forward'] -platitudes of,['the'] -leave your,|['case', 'bag', 'house']| -favour from,['the'] -more obvious,|['as', 'do']| -I gather,['to'] -the red,|['jutting', 'glow']| -minutes The,['dear'] -his pew,['on'] -wall with,['such'] -Bohemia when,['we'] -always far,['more'] -come Hence,['those'] -called Mr,['Hosmer'] -say Peterson,['just'] -My dear,['wife'] -advertisement column,['with'] -protruding beneath,['and'] -box which,|['you', 'lay']| -single lady,['can'] -get these,['disreputable'] -legs in,['front'] -seeing perhaps,['the'] -thoughts rather,['than'] -the human,['heart'] -is coming,|['here', 'to']| -of sin,['than'] -such men,['When'] -neighbours but,['I'] -away in,|['different', 'a', 'the']| -soon had,['a'] -guilt more,['heinous'] -remark fell,['unheeded'] -if the,|['pair', 'lady', 'King', 'inside', 'facts', 'clothes', 'door', 'missing']| -at ten,|['and', "o'clock", 'well.']| -of six,['shillings'] -due to,|['no', 'me']| -dust of,['the'] -chair sat,['Dr'] -in that,|['armchair', 'part', 'press', 'business', 'way', 'den', 'there', 'chair', 'likely']| -of sir,["There's"] -was no,|['sooner', 'doubt', 'other', 'harm', 'use', 'need', 'one', 'more', 'rain', 'sign', 'shaking', 'rest', 'great', 'wonder', "maker's", 'place', 'slit', 'good', 'answering', 'uncommon', 'truth', 'idle', 'jest', 'furniture']| -smack Three,['gone'] -caught him,|['where?"', 'and']| -arrangements which,['they'] -and tied,['so'] -prefer to,|['communicate', 'have', 'make']| -lot of,['every'] -reasoned myself,['out'] -great unobservant,['public'] -his dislike,['of'] -you never ,['said'] -but whose,['biographies'] -|no, it|,['is'] -order and,['we'] -address where,['you'] -get round,['the'] -the tools,['with'] -armchair he,['looked'] -have me,|['in', 'leave', 'arrested']| -have my,|['bracelets', 'hand', 'dooties', 'wound', 'share', 'revolver']| -not very,|['communicative', 'vulnerable', 'far', 'encouraging', 'much', 'scrupulous', 'good', 'practical', 'gracious', 'exacting', 'long']| -over visitor,['collapsed'] -Ryder of,['this'] -is how,|['did', 'to', 'he']| -cathedral and,['we'] -mine apply,['for'] -was deep,['in'] -standing by,['the'] -way down,|['Swandam', 'the', 'but']| -about looking,['for'] -think while,['he'] -resolution perhaps,['for'] -you don't,|['know', 'think']| -the snuff,['then'] -easy demeanour,['with'] -suddenly rolled,['them'] -lady's purse,['and'] -have aspired,['to'] -off he,|['stopped', 'went']| -children and,['I'] -grey house,['on'] -Perhaps the,['villain'] -week's accumulation,['of'] -read suspicion,['there'] -a point,|['in', 'Of']| -his quarrel,['with'] -Therefore he,['used'] -town This,['fellow'] -sister's and,|['hurried', 'the']| -is complete,['said'] -nature On,['the'] -grey walls,['The'] -future for,['that'] -A fierce,['quarrel'] -action and,['reaction'] -tap at,['the'] -could reach,|['A', 'The']| -wire This,['is'] -startled as,['I'] -such nonsense.,|['should', 'was']| -elderly woman,['stood'] -is swift,['in'] -the act,|['of', 'and']| -the east,['of'] -letters when,['she'] -cried the,|['King', 'hotel', 'inspector', 'prisoner', 'little', 'banker']| -upon Who,['would'] -branches there,['jutted'] -the easy,|['courtesy', 'way', 'air', 'and', 'soothing']| -let myself,['go'] -the ease,['with'] -his tattered,['coat'] -electric-blue dress,['will'] -claim full,['justice'] -Indian animals,['which'] -|your loving, MARY.|,['could'] -he sitting,['down'] -accept a,['situation'] -my due,['This'] -well thought,['of'] -with her,|['It', 'then?"', 'superb', 'husband', 'glove', 'fair', 'but', 'figure', 'eyes', 'finger', 'fate', 'hands', 'left', 'along', 'maid', 'confidential', 'initials', 'wooden-legged', 'papers', "father's", 'So', 'beautiful']| -junior and,['that'] -for whoso,['snatches'] -think very,['meanly'] -still stood,['upon'] -thought was,['in'] -the feeling,['that'] -there or,['amusing'] -was down,['again'] -hobbies said,['he'] -crimes are,['apt'] -thinker and,['logician'] -was speedily,['drawn'] -understood one,['link'] -that evening,|['to', 'and']| -be aware,['that'] -mine not,['that'] -breathing slowly,['and'] -this would,['be'] -months There,['is'] -A lady,['dressed'] -description but,['the'] -the monotony,['of'] -dark-lantern with,['the'] -Your niece,|['knew', 'when']| -also not,['unnatural'] -question that,['it'] -whole affair,['must'] -the notices,['which'] -house where,['he'] -dense a,['swarm'] -you drove,['home'] -possession a,['horrible'] -family resided,['Some'] -name will,['cause'] -before father,['came'] -to-morrow and,['with'] -bars that,['secured'] -anyone offer,['so'] -having gone,['to'] -turned at,['a'] -very violent,['temper'] -thoroughly into,['the'] -write Oh,['it'] -into such,['a'] -and less,|['complete', 'innocent']| -weary Mrs,['Rucastle'] -the advertisement how,['long'] -lifted the,['unopened'] -to master,['the'] -definite and,['put'] -such success,['that'] -little bend,['of'] -would apply.,['so'] -banks of,['the'] -Doran at,['Lancaster'] -the royal,|['houses', 'brougham']| -meets me,['at'] -it How,|['do', 'he']| -complete said,['Holmes'] -my ghastly,['face'] -without anything,['being'] -what do,|['you', 'the']| -would put,|['it', 'the']| -the avenue,|['It', 'gate']| -old hands,['But'] -from eye,['to'] -Rucastles go,['out'] -must be,|['dull', 'recovered', 'bought', 'on', 'at', 'where', 'in', 'prompt', 'some', 'silent', 'to', 'confessed', 'used', 'the', 'got', 'those', 'done', 'more', 'cunning', 'made', 'weary', 'alive', 'no', 'brought', 'so', 'a', 'somewhere', 'someone', 'probed', 'avoided', 'consulted', 'quick', 'when', 'back', 'circumspect']| -frequently in,['its'] -Lysander Stark,|['engraved', 'had', 'sprang', 'and', 'stopped', 'rushing', 'The']| -latter is,['always'] -orange barrow,['I'] -heart is,['lightened'] -preserving a,['secret.'] -and rushing,['to'] -west wing,['of'] -year which is,['less'] -the purest,['accident'] -and carrying,|['a', 'it', 'out']| -off under,['the'] -time Secretary,['for'] -hurled it,|['upon', 'out']| -my commission,['and'] -were unacquainted,['with'] -be sharp,['enough'] -bad weather,['There'] -all went,['as'] -pain There,['is'] -afraid said,['I'] -way he,['managed'] -technical character,['an'] -present than,['is'] -white with,|['chagrin', 'a']| -uttered the,['words'] -Holmes more,['depressed'] -league On,['the'] -boat was,['seen'] -very little,|['to', 'of', 'difficulty', 'exercise']| -the chamber,|['which', 'in', 'was', 'door']| -passenger who,['got'] -had remained,|['when', 'with', 'I', 'indoors']| -amid his,|['improvisations', 'newspapers']| -missing said,['he'] -than have,['left'] -me How,['could'] -showed that,|['he', 'the', 'this', 'one', 'they', 'it']| -dissolute and,['wasteful'] -is straight,['enough'] -not do,|['well', 'it']| -this young,|['person', 'man', 'lady']| -brain-attic stocked,['with'] -hung about,['the'] -glancing about,|['him', 'in']| -She writhed,['as'] -pips on,['McCauley'] -his before-breakfast,['pipe'] -by hearing,['the'] -vanished amid,['the'] -or destroy,['his'] -our good,['host'] -a glass,['of'] -last extremity,['to'] -are your,['lodgings'] -up man,['or'] -I actually,['saw'] -at Munich,['the'] -Baker who,|['had', 'was']| -gross takings,['amount'] -6:30 this,['evening'] -his question,['was'] -rough scenes,['and'] -for the,|['observer excellent', 'trained', 'reigning', 'Eg.', 'purpose', 'present', 'new', 'coming', 'part', 'evening', 'lady', 'key', 'Continent', 'Temple', 'business', 'sake', 'day', 'address', 'propagation', 'world', 'sooner', 'observation', 'quick', 'bigger', 'goodwill', 'time', 'Friday', 'interim', 'assured', 'facts', 'help', 'court', 'weekly', 'older', 'barmaid', 'chase', 'cloak', 'son', 'pool', 'way', 'past', 'thought', 'grace', 'instant', 'lonely', 'terrorising', 'manager', 'rest', 'best', 'City', 'tide', 'presence', 'Lascar', 'sinister', 'obvious', 'police-court', 'geese?', 'market', 'market.', 'love', 'acquirement', 'wedding', 'ventilator', 'night', 'moment', 'convincing', 'fee', 'last', 'crisp', 'first', 'moon', 'ugly', 'country', 'soft', 'remainder', 'weather', 'colonies', 'future', 'fall', 'door', 'only', 'cabs', 'next', 'servants', 'police', 'woman', 'lad', 'stones', 'three!', 'wrong', 'table', 'days', 'rearing', 'loss', 'most', 'poor', 'dog']| -ever spoken,['of'] -lust of,['the'] -her into,|['an', 'the']| -England suggests,['the'] -state all,['the'] -rent in,['his'] -He tried,['more'] -little scores,['of'] -which serves,['me'] -dank grasp,['he'] -very meanly,['of'] -to mark,['the'] -The Rucastles,['will'] -belief that,|['anyone', 'she', 'from']| -we reached,|['the', 'it']| -observer but,['the'] -is usually,|['kept', 'in']| -military neatness,['which'] -point We,['have'] -remark that,|['the', 'she']| -metallic clang,|['which', 'heard']| -trimmed at,['the'] -own private,['purse'] -thickly wooded,['round'] -Friday Mr,['Holmes'] -Maggie? I,['cried'] -stump among,['the'] -claim took,['to'] -severely You,['have'] -entered it,['never'] -plans so,['completely'] -see You,|['must', 'are']| -position must,['have'] -did though,['they'] -safety I,['thought'] -work? to,['copy'] -was John,['Openshaw'] -drunk and,|['yet', 'when']| -were sticking,['out'] -criminals of,['London'] -after what,['I'] -shutters moved,['the'] -bloodstains upon,['the'] -eligible Apply,['in'] -cloak smokes,['Indian'] -hydrochloric acid,['told'] -take an,|['immediate', 'interest']| -being conveyed,['into'] -no disease,['for'] -communicate Should,['it'] -man sprang,['from'] -church is,['open'] -man too,['in'] -swing for,['it'] -ventilator also,['with'] -down on,['the'] -all practical,['jokes'] -to England,|['just', 'without', 'a', 'my', 'followed']| -his eager,['face'] -deep-lined craggy,['features'] -lay as,['white'] -won't do,['I'] -lay at,|['the', 'present']| -striking and,['bizarre'] -Oh what,['shall'] -her he,|['gave', 'was']| -the wealth,['for'] -couch and,|['I', 'patted']| -nothing could,['be'] -lay on,['my'] -reason Then,['suddenly'] -been he,|['remarked', 'who']| -remained there,['turning'] -Millar in,['the'] -was once,['confined'] -old Persian,['saying'] -sort which,['made'] -golden eyeglasses,['Lord'] -conjecture became,['a'] -one yellow,['light'] -more cheerful,['nine'] -I but,|['the', 'if', 'then']| -have followed,|['but', 'recent']| -I buy,|["D'you", 'the']| -night however,|['was', 'nothing']| -exactness and,['astuteness'] -trying hard,['as'] -You took,['me'] -Anyhow he,['never'] -eyes On,['the'] -Does that,['suggest'] -napoleons from,['the'] -they would,|['pay', 'make', 'inform', 'have', 'be', 'be.']| -cigarette tobacco,['Having'] -clumps of,['faded'] -made in,|['Bohemia', 'not']| -lay That,['second'] -relevant or,['not'] -made it,|['a', 'possible', 'impossible', 'clear']| -good-natured man,['Is'] -work so,["it's"] -someone to,['talk'] -me mad,|['and', 'to', 'said']| -am Alexander,['Holder'] -nature alternately,['asserted'] -of sacrificing,['it'] -cab together,['and'] -fine shops,['and'] -there In,['fact'] -what society,['you'] -must compliment,['you'] -pain my,['grip'] -looks newer,['than'] -age with,['a'] -sings Has,['only'] -something else,|['which', 'to']| -shoulders gave,['the'] -splash of,|['acid', 'the']| -ran through,['the'] -I promised,|['her', 'to']| -act How,['came'] -horse's feet,['why'] -already feel,['it'] -one side,|['and', 'Now', 'of', 'It', 'showed']| -was It,['was'] -busy at,['the'] -come out,|['of', 'I', 'alone']| -lonely for,['within'] -believed it?,['He'] -in white,['letters'] -small slip,['of'] -wrapped which,['was'] -pushed to,|['the', 'its']| -from without,['seemed'] -off having,['obeyed'] -way we,['should'] -cut near,['the'] -her waylaid,['and'] -lime-cream are,['all'] -cap at,['either'] -placed at,['our'] -all theories,['to'] -your hand,['Have'] -Holmes knows,['I'] -one no,['one'] -safe from,|['him', 'eavesdroppers?', 'my']| -name who,['appeared'] -Lady St,['Simon'] -been suspended,['in'] -away without,|['observing', 'having']| -door without,['any'] -lamps had,['been'] -his trick,['of'] -some belated,['party'] -lady was,['very'] -to want,['into'] -savage creature,['or'] -Mr William,['Morris'] -back Don't,['wait'] -I promise.,['and'] -not long,|['remain', 'before', 'after']| -person said,['Holmes'] -apartment The,['pipe'] -have seen,|['That', 'of', 'anything', 'how', 'those', 'young', 'his', 'the', 'too', 'inside', 'enough', 'an', 'now']| -old mansion,['Moran?"'] -doubt depicted,['to'] -shelf one,['of'] -a lucky,['chance'] -happened between,['you'] -coronet? gas,['was'] -looked in,|['the', 'some', 'as', 'upon']| -cried Hatherley,['in'] -franchise to,['them'] -mere whim,['at'] -dropped into,['a'] -sombre yet,['rich'] -has no,['property'] -know faddy but,['kind-hearted'] -ways He,['was'] -to help,|['me', 'the', 'him', 'us']| -he waved,['me'] -warning was,['no'] -looked it,['all'] -bade me,['good-day'] -more respectable,['figure'] -hundred other,['ways'] -incriminate him,['There'] -during those,|['months', 'dreadful']| -Star Savannah,['Georgia'] -opened and,|['a', 'led', 'we', 'made']| -I invited,['them'] -volume of,['it'] -this chamber,['That'] -disentangled the,['most'] -evening than,['in'] -a communication,['between'] -his wedding,|['yes', 'The']| -Park in,['company'] -will fit,['that'] -arrived at,['the'] -the employ,['of'] -asserted itself,['and'] -flush stole,['over'] -can witness,['it'] -view for,['otherwise'] -he wished,['to'] -largest tree,['in'] -until at,['last'] -her And,['now'] -met this,['Lascar'] -man's own,['account'] -her overpowering,['excitement'] -be having,['a'] -his lateness,['caused'] -walked over,|['the', 'to']| -fund left,['by'] -twisted cylinders,['and'] -yesterday evening,|['said', 'he']| -sure whether,['he'] -down with,|['cigars', 'no', 'some', 'an', 'a', 'his', 'the']| -the farther,|['side', 'end']| -talked with,['a'] -own fault,['if'] -lost your,['fiver'] -such intrusions,['into'] -we would,['give'] -indicated that,['need'] -I read,|['that', 'now?"', 'peeping', 'nothing', 'for', 'suspicion']| -effect that,|['a', 'he']| -once confined,['in'] -least there,['was'] -very word,['said'] -Turner of,['the'] -saved England,['from'] -him silent,['motionless'] -and painful,['episodes'] -is different,['my'] -better fit,['if'] -And his,['asking'] -and chins,['pointing'] -all tracks,['for'] -chronicle one,['or'] -to-day that,|['I', 'it']| -about fifty,['tall'] -maid Alice,['as'] -it until,['the'] -opponent at,['the'] -burned paper,['while'] -she read,['the'] -was someone,['who'] -It gave,|['even', 'the']| -figures and,['a'] -so before,['now'] -was black,|['with', 'and']| -and exchanging,['visits'] -or some,['other'] -observed a,['carriage'] -seems upon,['terms'] -suspicious remark,['the'] -premises were,['ready'] -good hundred,['miles'] -utter stillness,['the'] -last survivor,['of'] -shows my,['dear'] -straight chin,['suggestive'] -be tied,['is'] -which enabled,['him'] -the older,['man'] -to-morrow No,['doubt'] -suddenly losing,['her'] -When an,['actor'] -clear from,['what'] -head In,['the'] -to Paris,['to-morrow'] -of France,['It'] -observed I,['found'] -head If,['you'] -whispered in,['my'] -burst into,|['a', 'convulsive']| -writes upon,['Bohemian'] -Oct 4th,['rooms'] -correct than,['the'] -to honour,['my'] -stole over,['Miss'] -very shape,['in'] -still with,|['you', 'a']| -wished you,['good-night'] -questions which,|['have', 'you']| -keen a,['sympathy'] -details warn,['you'] -prevent him,['from'] -none as,['I'] -earth would,['ever'] -explain it,['in'] -I'll have,|['a', 'the']| -object was,['in'] -thought why,['should'] -He walked,|['swiftly', 'up']| -teach you,['not'] -card was,['brought'] -no connection,['with'] -friends no;,['I'] -zest to,['our'] -his fall,['the'] -sort From,['India!'] -pulling up,['her'] -pool I,['heard'] -rather shamefaced,['laugh'] -have almost,|['gone', 'every']| -its crop,|['He', 'had', 'But']| -and five,['dried'] -forward for,['him'] -stand this,['strain'] -and quick-tempered,['very'] -apply the,['interest'] -her word,|['is', 'I']| -limited one,['But'] -but partially,['cleared'] -right said,|['the', 'Jones', 'Holmes', 'he']| -terrible misfortune,['might'] -case I,|['found', 'remarked', 'think', 'shall', 'am', 'can', 'presume', 'should']| -ever drove,['faster'] -not hear,|['of', 'it', 'a', 'from']| -all then,['the'] -my average,['takings but'] -sound which,|['sent', 'it']| -pierced for,['earrings'] -friends not,['even'] -all they,['had'] -the eye,|['Holmes', 'Then']| -replaced it,['glanced'] -cast-off shoes,['With'] -any change,['in'] -ring may,['turn'] -rapidity with,['which'] -assured He,['was'] -ejaculation had,['been'] -|alive yes,|,['mother'] -comic a,['large'] -returned with,['the'] -we to,|['find', 'do']| -professional work,['and'] -his which,['you'] -do really it,["won't"] -Reading to,['the'] -retained these,['things'] -fellow was,['returning'] -arrived almost,['as'] -certainly needs,['a'] -and well-nurtured,['man'] -a heaving,['chest'] -went there,['at'] -door a,['woman'] -remedied and,['he'] -are Holmes,['the'] -it certainly,['it'] -shoulder Oh,["I'm"] -block of,|['the', 'a']| -doubt already,['formed'] -card upon,['the'] -the disturbance,['has'] -the dressing-room,['of'] -|home discovery,|,['and'] -egg and,|['poultry', 'with']| -imagine how,|['you', 'maddening', 'hard', 'comical']| -coldness for,['I'] -to hurry,['quickly'] -stain or,['even'] -easy for,['me'] -bird to,['be'] -suspicion became,['a'] -the thirty-nine,['with'] -the dignity,['of'] -three standing,['in'] -rooms with,['Holmes'] -life appeared,['to'] -travelling in,['the'] -the guardsmen,['took'] -Uffa and,['finally'] -louder a,['hoarse'] -soft tread,['pass'] -yours had,['to'] -your sleep,['considered'] -Nova Scotia,['and'] -beside myself,['with'] -Come this,['way'] -natural reserve,['lost'] -of Bohemia,|['was', 'you', 'rushed', 'when', 'and', 'in', 'the']| -did not,|['tell', 'know', 'gain', 'seem', 'come', 'wish', 'apparently', 'mind', 'take', 'go', 'wonder', 'want', 'disturb', 'dispose', 'like', 'see', 'advertise', 'care', 'tend', 'hear', 'give', 'scorn', 'notice', 'appear', 'overhear', 'she', 'say', 'himself', 'breathe', 'wake', 'call', 'think']| -o'clock It,['is'] -down to,|['the', 'observe', 'tell', 'a', 'Fordham', 'Horsham', 'catch', 'arduous', 'Doctors', 'Scotland', 'breakfast', 'Streatham', 'your', 'Hampshire', 'one']| -Their papers,['they'] -case let,['us'] -or bending,['it'] -money to,|['build', 'make']| -eat for,['I'] -living but,['horribly'] -towards Hatherley,['Farm'] -long did,['she'] -investigation You,['have'] -have met,['on'] -full purport,['of'] -supplementing before,['anyone'] -Whitney's bill,['led'] -locket and,|['showed', 'handed']| -slip of,|['paper', 'flesh-coloured']| -highroad and,['just'] -probability is that,['the'] -night Watson?",['he'] -take 2,['pounds'] -Kate I,['had'] -right John,['we'] -your only,|['hope', 'chance']| -of buffalo,['and'] -there were,|['so', 'not', 'two', 'one', 'quarrels', 'marks', 'no', 'signs', 'several', 'only', 'fewer', 'any']| -furiously I,['have'] -not succeed,['in'] -only where,['we'] -fresh and,|['glossy', 'trim', 'beautiful']| -every portion,['of'] -a scheming,['man'] -reliance upon,['your'] -this chain,['we'] -not detracted,['in'] -this chair,|['and', 'by']| -of unofficial,['adviser'] -orders to,['the'] -7s 6d.,['so.'] -particular colour,['I'] -take I,['asked'] -abandoned as,['hopeless'] -a big,['cat'] -means have,['no'] -little door,['and'] -pool and,['that'] -he hurled,['the'] -cab he,['pulled'] -her sitting-room,['which'] -woman had,|['plush', 'stood', 'run', 'strayed']| -is at,|['once', 'the', 'least', 'her']| -door A,|['gentleman', 'mad']| -is as,|['it', 'cunning', 'brave', 'much', 'plain', 'puzzled', 'you', 'black', 'good', 'I', 'he']| -with John,['Cobb'] -dress indoors,['in'] -is an,|['ordinary', 'old', 'instance', 'accountant', 'exceedingly', 'unfortunate', 'absolutely', 'excellent', 'advertisement', 'Englishman', 'only', 'open', 'American', 'impersonal', 'inn', 'important', 'impertinent']| -|which, sir|,['in'] -in hopes,|['that', 'it']| -ever circumstantial,['evidence'] -panel was,['pushed'] -particularly were,['abhorrent'] -take a,|['seat', 'considerable', 'train', 'medical', 'glance', 'lenient', 'look']| -equally hot,['upon'] -grace and,['kindliness'] -bed about,['two'] -an accomplice,['They'] -Hafiz as,['in'] -my fears,|['are', 'My']| -doors were,['locked'] -furniture in,['the'] -amuse myself,['by'] -most exalted,['names'] -crushed under,['a'] -his recovered,['gems'] -lived in,['Brixton'] -very highest,['at'] -formerly been,['in'] -three of,|['us', 'the', 'which']| -more They,['drove'] -or political,['influence'] -been revealed,['to'] -|half-wages, in|,['fact'] -not having,['the'] -lamps were,['just'] -not move,['her'] -arms but,['he'] -there be,['in'] -something better,['before'] -curiosity were,['such'] -to spring,['into'] -fail however,['to'] -little Hosmer,['Angel'] -hands spoke,['of'] -have referred,|['the', 'to']| -sun shining,['into'] -a clergyman,['all'] -got better,['at'] -idler who,['has'] -it weeks,['passed'] -We have,|['had', 'in', 'known', 'still', 'come', 'not', 'already', 'a', 'touched', 'boxed', 'been', 'done', 'certainly']| -Altogether look,['as'] -plush at,['the'] -It hadn't,['pulled'] -wander freely,['over'] -and up,['and'] -them up,|['onto', 'and']| -eye was,|['that', 'a', 'bright']| -felt when,['just'] -allied It,['was'] -nothing happened,['to'] -typewriter has,['really'] -our stars,['that'] -day lately,['It'] -side until,['it'] -no possible,|['getting', 'case', 'bearing', 'reason']| -immense a,['social'] -my secretary,['and'] -fresh fact,['seemed'] -grip loosened,['and'] -warmth that,['is '] -regain it,['with'] -upon all,|['his', 'that']| -paint laying,['my'] -rooms to-morrow,['morning'] -extended to,['him'] -fortnight's grace,['from'] -king really!,['I'] -was but,|['one', 'he', 'an', 'a', 'momentary', 'two', 'thirty']| -will enter,['Dr'] -and struggled,['and'] -were scattered,['Colonel'] -than does,['the'] -remarkable that,['no'] -fastening upon,['my'] -crisp smoothness,['of'] -off therefore,['to'] -then my,['thrill'] -Holmes cut,['the'] -the purpose,['of'] -only at,['the'] -He tossed,['a'] -with dismantled,['shelves'] -Charles McCarthy,['who'] -Windibank it,['was'] -charcoal Who,['would'] -breath to,['keep'] -surprise me,['ever'] -well And,|['then', 'the']| -darting like,['lightning'] -he turned,|['hungrily', 'his', 'down', 'the', 'to']| -staining the,['fishes'] -but calling,['for'] -obstacle in,['the'] -chance came,['I'] -all but,['after'] -killing cockroaches,['with'] -spared him,['though'] -find he,['said'] -barred up,['by'] -Thrust away,['behind'] -by means,|['which', 'of']| -sleeves without,['a'] -me satisfaction,['She'] -disappoint I,['am'] -gentleman anything,['which'] -two which,['I'] -the compass,['among'] -bowed her,['into'] -that observed,['Holmes'] -there can,['be'] -drawers stood,['in'] -Holmes lady,['coloured'] -hellish cruelty,['the'] -comply with,['the'] -window endeavoured,['in'] -Whitney D.D.,['Principal'] -rough uncouth,['man'] -change in,|['her', 'my', 'the']| -forbidden door,['was'] -clearly the,['cause'] -head It,['came'] -inexorable evil,['which'] -be designed,['for'] -better that,['I'] -smiling perhaps,['you'] -matters they,['were'] -dustcoat and,['leather-leggings'] -better than,|['laugh', 'any', 'to', 'myself']| -Openshaw from,['America'] -only once,['of'] -Kramm I,['shall'] -of cards,['in'] -Hardy who,['used'] -learned by,['an'] -can stand,['this'] -and threw,|['open', 'himself', 'it', 'my']| -Look out,['for'] -for breach,['of'] -dress can,['easily'] -must insist,|['You', 'that']| -dropping of,['a'] -man dark,['aquiline'] -kitchen door,|['and', 'I', 'a', 'As']| -and three,['and'] -nothing stranger,['than'] -removed to,['a'] -sight appear,['enough!"'] -broke from,['the'] -understand and,['of'] -century however,['four'] -and kept,['on'] -three when,['we'] -are Mrs,['Oakshott'] -a hobby,['of'] -never was,['a'] -dismissed and,['following'] -quarter-past nine,['when'] -hold him,['back'] -finally dispel,['any'] -that will,['simplify'] -and tried,['to'] -more daring,|['than', 'criminals']| -to match,['these'] -once You,['must'] -shapeless blurs,['through'] -He sprang,|['from', 'round']| -already arranged,['what'] -of eighteen,['and'] -jagged stone,['was'] -jokes and,['that'] -he constructed,['a'] -may turn,['out'] -gained my,['first'] -explain to,['you'] -wrote her,['some'] -repartee which,['improved'] -cobwebby bottles,['Having'] -love I,['could'] -air did,['you'] -and tore,|['the', 'him']| -comes to,['me'] -said the,|['police', 'stranger', 'folk', 'words', 'old', 'young', 'lady', 'inspector', 'salesman', 'woman', 'driver', 'colonel', 'station-master', 'banker']| -way DEAR,['MR'] -shake my,['very'] -street Now,['I'] -saw the,|['beautiful', 'City', 'latter', 'fury', 'ventilator', 'cadaverous', 'lean', 'name', 'man', 'coronet', 'door']| -both the,['McCarthys'] -how in,['the'] -infinitely stranger,['than'] -excitedly and,['waving'] -dirty face,['Knowing'] -will is,['very'] -how is,['she'] -summarily with,['the'] -Holmes again,['and'] -had been,|['abandoned', 'out', 'lying', 'heard', 'no', 'some', 'lit', 'of', 'warned', 'told', 'given', 'lounging', 'alive', 'called', 'talking', 'beaten', 'away', 'on', 'shattered', 'found', 'left', 'taken', 'in', 'cut', 'drawn', 'wound', 'eight', 'always', 'destroyed', 'sent', 'woven', 'the', 'upon', 'expecting', 'plucked', 'deluded', 'made', 'to', 'observed', 'sucked', 'detailing', 'whirling', 'laid', 'galvanised', 'written', 'chewing', 'placed', 'famous', 'suspended', 'forced', 'delayed', 'driven', 'said', 'concerned', 'arrested', 'upset', 'sitting', 'perpetrated', 'fixed', 'leaning', 'fastened', 'suddenly', 'erected', 'broken', 'hacked', 'intrusted', 'my', 'there', 'much', 'conveyed', 'prepared', 'offered', 'paid', 'attacked', 'a', 'quite', 'ploughed', 'cleaned', 'everywhere', 'presented', 'torn', 'and', 'twisted', 'disturbed', 'hurt', 'cleared', 'overseen', 'silent', 'watching', 'buried', 'measured']| -rate In,['the'] -other engagement,['at'] -in serious,['trouble'] -nor necktie,['that'] -there on,['foot'] -could send,['her'] -curled up,['in'] -organisation flourished,['in'] -Holmes request,['showed'] -At the,|['church', 'same', 'time', 'farther', 'foot', 'moment', 'second']| -trouble responded,['Holmes'] -capital sentence,['As'] -out about,|['them', 'that']| -business glad,['to'] -used for,['political'] -Fire Thick,['clouds'] -taken with,['the'] -preceded by,['a'] -last there is,['a'] -now taken,['up'] -the poetic,['and'] -a cause,['of'] -least Is,['it'] -come newcomers,['were'] -results The,|['matter', 'story']| -advice I,|['staggered', 'thought', 'was']| -was very,|['peculiar', 'willing', 'new', 'superior', 'annoyed', 'good', 'independent', 'decidedly', 'nice', 'anxious', 'kind', 'sweet', 'weak', 'much', 'sick', 'pleased', 'angry', 'quiet', 'drunk']| -the leather,|['is', 'bag']| -produced There,['were'] -Holmes called,['about'] -marked the,|['spot', 'site']| -question whether,|['Mr', 'I', 'justice']| -the chain,['of'] -both thought,['the'] -my roof,['and'] -Hum Posted,['to-day'] -cloudless sky,['and'] -other thing,['you'] -with Mr,|['John', 'Hardy', 'Hosmer', 'Neville']| -here the,['cells'] -which lay,|['at', 'to', 'amid', 'upon', 'uncovered']| -bent upon,['the'] -feet heavy,['with'] -in practice,|['again', 'in']| -importers of,['Fenchurch'] -business a,|['rule', 'dreary']| -He entered,['with'] -present see,['in'] -circumspect for,['we'] -may safely,|['be', 'trust', 'say']| -implored the,['colonel'] -wronged I,['keep'] -gave little,['promise'] -have touched,|['on', 'bottom']| -human being,|['whose', 'that']| -frock-coat and,['a'] -shutters with,['broad'] -upon Bohemian,['paper'] -a sealed,['book'] -the problem,|['It', 'connected']| -bed I,['began'] -nervous clasping,['and'] -doubt roasting,['at'] -do And,['into'] -do anything,|['on', 'like', 'that', 'with']| -long cigar-shaped,['roll'] -whiskers and,['a'] -150 yards,['however'] -swept away,['by'] -myself go,['and'] -having abstracted,['it'] -first stage,['of'] -cheating at,['cards'] -perform and,['that'] -the 22nd,['inst.'] -patient he,['whispered'] -knew what,|['Monday', 'the']| -his improvisations,['and'] -which can,|['hardly', 'only']| -seen Mr,['Neville'] -Snapping away,['with'] -room above,['the'] -stare at,|['the', 'me']| -me how?",['am'] -that came,['a'] -eerie in,['this'] -evening came,['I'] -behind thought,['that'] -He rummaged,|['in', 'amid']| -itself is,['so'] -Marbank of,['Fenchurch'] -his possession,['very'] -all Drink,['this'] -huge ledger,['upon'] -find myself,['I'] -such commands,['as'] -Turner has,['brought'] -accompany my,['friend'] -From India!,['said'] -leaves shining,['like'] -little nervous,['disturbance'] -was opened,['and'] -neighbouring English,['families'] -Holmes Your,|['Majesty', 'case', 'narrative']| -Well that,['is'] -so truly,['formidable'] -square gaping,['hole'] -you ran,['up'] -worth an,|['effort', "hour's"]| -Apache Indians,['and'] -Lestrade's opinion,['and'] -sat together,|['at', 'in']| -states after,['the'] -away likely,['not'] -why then,['how'] -admiration of,['her'] -into words,['to'] -has evidently,['no'] -She stood,|['with', 'smiling']| -paper Now,['then'] -found within,['and'] -growing out,['of'] -audible a very,['gentle'] -is past,['ten'] -blend with,['the'] -the swimmer,['who'] -of intuition,['until'] -came Same,['old'] -sky and,|['a', 'the']| -inspector realise,['that'] -more one,['goes'] -done wisely,['said'] -glitter His,['face'] -was alive,|['and', 'It']| -than was,['visible'] -as flattered,['as'] -actually lying,['upon'] -pavement had,['been'] -liking to,['break'] -me It,|['was', 'seemed']| -his hand,|['while', 'was', 'over', 'and', 'pulled', 'Majesty', 'turned', 'as', 'so.', 'screaming', 'Holmes', 'for', 'So', 'a', 'he', 'It', 'you', 'With', 'upon', 'thrust', 'though', 'but', 'He', 'when', 'Miss']| -Lodge waiting,['for'] -you inquired,['your'] -his pea-jacket,['and'] -and prosperity,['to'] -listen the,['first'] -have grasped,['one'] -his cast-off,['shoes'] -gravely you,['know'] -his tenant,['but'] -feasible we,['will'] -used a,['holder'] -knowledge that,['the'] -situation and,|['his', 'see']| -Turner Above,['the'] -without heart,['or'] -Alice Rucastle,['if'] -do and,|['I', 'Frank']| -away had,['hardly'] -club in,['the'] -hesitation Your,['life'] -real bright,['blazing'] -remarkable save,|['that', 'the']| -could perform,['one'] -away has,['come'] -imagine Several,['times'] -several of,['my'] -dressed when,['last'] -surely very,['clear'] -feet both,['upon'] -Leave Paddington,['by'] -Merryweather perched,['himself'] -some small,|['unpleasantness', 'expense', 'points', 'jollification', 'job', 'business']| -violence upon,|['any', 'her']| -some half-dozen,['at'] -already deeply,['interested'] -the worse,['for'] -whole story,['and'] -September and,['the'] -Hosmer Mr Angel was,['a'] -to attempt,['to'] -had he,|['been', 'to', 'known', 'stood']| -changed my,|['clothes', 'dress']| -could trust,['her'] -to finally,['dispel'] -room you and,['your'] -a manufactory,['of'] -and went,|['her', 'into', 'out', 'up']| -the breakfast-table,|['and', 'There', 'so']| -again in,|['a', 'the']| -mud-bank what,['they'] -complete You,['had'] -particulars of,['my'] -a letter,|['The', 'from', 'unobserved', 'on']| -Doctor and,|['give', 'acknowledge']| -patient!" said,['she'] -thumb The,['smarting'] -its den,['and'] -clue as,['to'] -Simon shrugged,['his'] -mere sight,['of'] -really are,['very'] -|asked smoke,"|,['he'] -admiring the,['rapid'] -coachman had,['come'] -It lay,['between'] -country as,['were'] -foolish thing,['After'] -days when,['I'] -vessels which,['lay'] -that be,|['unless', 'the']| -last Monday,['the'] -then He,['conceives'] -for yourselves,['that'] -an undue,['impression'] -you 120,['pounds'] -and she,|['to', 'picked', 'is', 'saw', 'distinctly', 'was', 'fell', 'stabbed', 'shot', 'could', 'had', 'endeavoured']| -the mornings,['Besides'] -that by,|['Monday', 'the', 'means', 'considering']| -naturally not,['Did'] -pillows from,['his'] -frankly It,['is'] -strength with,['a'] -B cleared,['or'] -than is,|['usually', 'usual', 'necessary']| -Recently he,['has'] -be definite,['in'] -enough Mr,['Holmes'] -than in,|['the', 'a', 'this', 'following']| -it appears,|['been', 'from', 'is', 'to']| -food and,['I'] -than if,|['he', 'it']| -of days,['to'] -Counties Bank,['There'] -in vile,['weather'] -paused and,['refreshed'] -hidden wickedness,['which'] -address your,['letters'] -your haste,['Pray'] -the rolling,['hills'] -I pray,['that'] -you be,|['able', 'ready', 'alive', 'fortunate']| -same week,['Ah'] -the marks,['of'] -entered into,['possession'] -you by,['beating'] -hoax or,['fraud'] -walked down,|['to', 'the']| -interested on,['glancing'] -always awkward,['doing'] -she did,['not'] -and round,|['and', 'the']| -and metal,['for'] -sky flecked,['with'] -woman much,['younger'] -whistle and,['metallic'] -addressing Miss,['Mary'] -remarked L'homme,["c'est"] -quiet word,['with'] -in New,|['Jersey', 'Zealand']| -withdraw when,['Holmes'] -complete silence,['before'] -his big,['armchair'] -stained with,|['violet', 'fresh']| -justice for,['my'] -our rooms,['once'] -too! I,['cried'] -so harshly,['is'] -beautifully The,['photograph'] -parties thank,['you'] -my circle,['and'] -the feathers,['legs'] -interests which,['rise'] -loud hubbub,['which'] -Her features,['and'] -look at,|['the', 'it', 'a', 'and', 'that', 'this', 'him', 'everything', 'these', 'them']| -look as,|['I', 'though']| -the Assizes,|['am', 'so', 'I', 'on', 'Horner']| -together that,['I'] -Good-bye I,['shall'] -stood glancing,['from'] -light-house was,['very'] -ever having,['touched'] -asked him,|['if', 'who', 'to']| -sort from,['whom'] -struck me,|['as', 'at', 'that']| -boy what,['do'] -it needs,['a'] -were slashed,['across'] -THE TWISTED,['LIP'] -gems the,['deed'] -about eleven,['Give'] -sir Your,['right'] -his emotion,['Then'] -the crash,['of'] -freak when,['he'] -Of these,|['he', 'one', 'bedrooms', 'the']| -exceptional woman,['will'] -its own,|['Indeed', 'grounds', 'reward', 'sake', 'fields']| -they come,|['again of', 'from', 'will']| -carrying with,['him'] -sobered Toller,['to'] -Hers had,['been'] -catlike whine,['which'] -machine if,['I'] -is dead,|['cried', 'do."', 'then']| -In front,['of'] -three separate,['tracks'] -Atlantic a,['shattered'] -quickly round,['he'] -now?" I,['asked'] -they worth?,['I'] -half-mad with,['grief'] -discovered by,['any'] -bills upon,['the'] -assault and,['illegal'] -entry 22nd.,['Twenty-four'] -bedroom whence,['he'] -at our,|['Continental', 'windows', 'disposal', 'very', 'door', 'bell', 'best']| -house which,|['could', 'is', 'struck']| -cried And,['my'] -his stride,['His'] -not possibly,|['have', 'whistle', 'be']| -Waterloo Station,['and'] -is nearly,['five'] -sprang into,['view'] -boots and,['retained'] -fear a,['sinister'] -grinned at,['the'] -india-rubber bands,['which'] -young McCarthy's,|['innocence', 'feet', 'narrative']| -my friend's,|['amazing', 'arm', 'incisive', 'subtle', 'face', 'noble', 'singular', 'prediction']| -pointing in,['an'] -my attainments,['I'] -was keenly,['on'] -Jackson's army,['and'] -you father,['was'] -small trade,['in'] -him dropped,['his'] -the Waterloo,['Bridge'] -light red,['or'] -done well,['indeed'] -Is it,|['not', 'possible']| -gave a,|['cry', 'bob', 'violent', 'rather', 'gulp', 'last', 'little']| -open You,['are'] -intense excitement,['There'] -way Our,['friend'] -noticed his,['appearance'] -will guide,['you'] -yellow gloves,['patent-leather'] -however a,['dear'] -the jaw,['it'] -after you,['to'] -and figures,['have'] -best possible,|['St.', 'solution']| -went mother,['and'] -so common,['is'] -experience which,|['is', 'looked']| -was quickly,['between'] -you. signed,['the'] -knew one,['or'] -last been,['seen'] -to lecture,['me'] -Certainly Mr,['Holmes'] -mirror in,['my'] -red heelless,['Turkish'] -real opinion,['what'] -delay but,['the'] -conceal what,['you'] -his safe,['upon'] -returned The,['landlady'] -The 4,['pounds'] -visitors client,['then'] -taken to,|['quench', 'his', 'the', 'an']| -enough now,['Miss'] -you name,['answered'] -well-dressed man,['about'] -patent-leather shoes,['and'] -his wardrobe,['And'] -museum visitor,['staggered'] -The G,['with'] -know so,|['much', 'we']| -into any,|['mischief', 'little']| -those whom,['he'] -trivial to,|['another', 'relate']| -like it,['said'] -Then they,['will'] -I you,|['Holmes', 'said', 'will', 'may', 'have', 'seem']| -Lord Eustace,['and'] -baffled all,['those'] -small outhouse,['which'] -address that,|['was', 'it']| -got back,|['to', 'I']| -hardly flashed,['through'] -rooms without,['the'] -Theological College,['of'] -rising have,['solved'] -garden at,['the'] -sleeve were,['observed'] -swiftly across,['the'] -the Temple,|['It', 'and', 'to']| -common enough,['lash'] -surroundings I,['had'] -and every,|['precaution', 'afternoon']| -had hydraulic,['engineers'] -Whom have,['I'] -dark dress,['I'] -Countess deposed,['to'] -the routine,['of'] -anything better,|['than', 'Capital']| -Turner should,['still'] -the sooner,['they'] -Road to,['a'] -measured for,['it'] -saw scrawled,['in'] -station with,['them'] -crop handy,['and'] -been lit,['but'] -still the,['nature'] -which line,['the'] -he What,['have'] -a youth,|['either', 'whom']| -since I,|['saw', 'rose', 'was', 'have']| -fortune have,['retained'] -been no,|['doubt', 'result', 'crime', 'common']| -keep her,['jewel'] -I say,|['Doctor', 'that', 'of', 'now', 'Watson', 'my', 'Peterson', 'is', 'it', 'east']| -Whoa there,['whoa'] -only to,|['safeguard', 'put', 'be']| -streets in,['search'] -was hanging,|['him', 'by']| -that but,['the'] -not find,|['the', 'he', 'me']| -clothes who,['soon'] -door of,|['Briony', 'the', 'a', 'our', 'his', 'which', 'my']| -the laughing-stock,['of'] -out who,['have'] -and leather-leggings,['which'] -hour's purchase,['for'] -only Crown,['Prince'] -We compress,['the'] -frogged jacket,['I'] -closing the,['door'] -about him,|['When', 'from', 'like', 'anxiously', 'was', 'with', 'so']| -where is,|['he', 'it']| -where it,|['is', 'went', 'would', 'came']| -punctures which,['would'] -for better,['men'] -quietly dressed,['in'] -quick analysis,['of'] -dipped her,['pen'] -course he,|['is', 'must', 'denied']| -reported to,['have'] -then? said,['he'] -about his,|['deserts', 'father', 'quarrel', 'sitting-room', 'club']| -and received,['in'] -strange features,['which'] -glanced with,['some'] -inclined for,['any'] -evident confusion,['which'] -fellow should,['think'] -hot metal,['remained'] -first been,['overjoyed'] -which boomed,['out'] -Cusack maid,['to'] -indulge in,['ferocious'] -to half,['the'] -driving it,['through'] -heartily you,['dragged'] -sank and,['died'] -I glance,['over'] -so important,|['to', 'as']| -has blasted,['my'] -great personal,['beauty'] -of employing,['or'] -that more,['from'] -at exactly,['4:35'] -I bought,|['a', 'this']| -and Lady,|['Clara', 'Alicia']| -she died,|['of', 'from']| -nervous system,['is'] -least clue,['as'] -4000 pounds,['a'] -erected a,['hydraulic'] -Now look,['at'] -blow does,['not'] -single advertisement,['Every'] -Now of,['course'] -Now on,['the'] -disgrace I,|['might', 'must']| -barber They,['all'] -place one's,['self'] -ruin was,['eventually'] -who Mr,['Duncan'] -lives That,['is'] -angry for,['this'] -Barque Lone,['Star'] -limits of,['his'] -A double,['carriage-sweep'] -window we,|['could', 'passed']| -passion was,|['becoming', 'turned']| -inquire more,['deeply'] -floor He,['threw'] -at twenty,['past'] -distaff side,['Ha'] -and deserted,['streets'] -within and,|['still', 'at']| -which set,['an'] -crowded so,['I'] -a device,['for'] -observed Holmes,|['as', 'And', 'shading']| -it disappeared,|['before', 'into']| -have five,['hundred'] -she picked,['nervously'] -transparent a,['device'] -appearance We,['shall'] -and stagnant,['square'] -you that,|['I', 'he', 'there', 'it', 'your', 'God', 'my', 'the', 'just', 'they', 'in', 'we', 'besides']| -fashion at,['our'] -well how,['to'] -of Baxter's,['words'] -boots which,|['she', 'her']| -number merely,['strange'] -lie in,['the'] -neat and,['plain'] -were left,['in'] -epicurean little,['cold'] -hour last,['night'] -lines while,['his'] -I suppose,|['that', 'than', 'I', 'you', 'there', 'is']| -to mother,|['and', 'Mr', 'a']| -will enable,['her'] -a twist,['by'] -of an,|['importance', 'amiable', 'evening', 'Australian', 'ashen', 'English', 'individual', 'unfortunate', 'opium', 'emigrant', 'analytical', 'hour', 'aristocratic', 'old', 'exceeding', 'affair', 'instep', 'iron']| -whim at,['first'] -tackle facts,['Holmes'] -it there,|['is', 'was', 'Mr']| -the milk,|['which', 'to']| -was sufficient,['to'] -night? said,['I'] -had deserved,['your'] -Yet we,['have'] -man ordered,['one'] -HUNTER: Miss Stoper,['has'] -fled at,['the'] -directly by,['questioning'] -pointed over,['the'] -ascertaining whether,['the'] -him is,|['still', 'well']| -an enemy,['enemy?"'] -so foolishly,['rejected'] -propriety obey,['You'] -somewhat to,['embellish'] -Brixton Road 249,['read'] -even now,['when'] -examined as,['you'] -gold with,|['a', 'three']| -him if,['he'] -son Mr,['James'] -him in,|['the', 'marm', 'amazement', 'deep', 'last', 'my', 'prison', 'Regent', 'his', 'Swandam', 'turn', 'safety', 'some', 'astonishment', 'California', 'cold']| -marriage was,['arranged'] -my clothes,|['I', 'pulled', 'and', 'It']| -my father's,['last'] -off you,|['go', 'but']| -ushering in,['a'] -throwing his,|['cigarette', 'fat']| -acted in,['my'] -was young,|['I', 'and', 'he', 'some', 'not']| -speckled band!,['There'] -such deadly,['paleness'] -heart With,['the'] -show them,['that'] -founded upon,|['the', 'all', 'my']| -upon small,['points'] -will be,|['of', 'next', 'good', 'visible', 'taken', 'shown', 'early', 'more', 'some', 'the', 'entirely', 'dry', 'crowded', 'presented', 'away', 'back', 'done', 'here', 'silent', 'silent!', 'sorry', 'fruitless', 'altogether', 'gone']| -King without,['delay'] -convulsive sobbing,['with'] -out our,['plans'] -brought me,|['a', 'My']| -very quick,['in'] -she repeated,['standing'] -while theirs,['is'] -Better make,['it'] -grown up,['and'] -The august,['person'] -surveyed this,['curt'] -determination Their,['papers'] -mystery which,['he'] -expenses I,['may'] -of Balmoral,|['and', 'has', 'Lord']| -said cordially,['was'] -box out,['upon'] -triumph and,['bent'] -not accept,['a'] -for an,|['instant', 'immense', 'all-night', 'acute']| -sure forgive,['anything'] -that especially,['as'] -the edges,|['of', 'and']| -the stone,|['pavement', 'floor', 'which', 'could', 'the', 'came', 'Thank', 'and', 'into', 'at', 'in', 'down', 'pass']| -shoulder he's,['all'] -passed away,|['like', 'without', 'from']| -for at,|['the', 'least']| -Lyon Place,['Camberwell'] -lay her,['hands'] -night A,['vague'] -drove on,['and'] -the Sholtos,['have'] -spectacles and,['the'] -reclaim it,['It'] -solution I,['trust'] -had spread,['an'] -have established,['a'] -solved what Neville,['St'] -Clay said,['Holmes'] -bless you,|['cried', 'more', 'You']| -and effective,['see'] -who made,['his'] -my eye,|['over', 'caught']| -the box-room,['cupboard.'] -respect with,['that'] -But I'm,['always'] -remarkably handsome,['man'] -Avenue St,["John's"] -horse with,['his'] -away a,['couple'] -erect with,['his'] -then glancing,['at'] -before very,|['long', 'many']| -extended over,['the'] -would but,['tell'] -a clue,|['The', 'There', 'have', 'in']| -course would,['be'] -does Your,['own'] -Spaulding he,['came'] -revolver but,['Holmes'] -the steps,|['which', 'but', 'She', 'of', 'worn', 'by']| -good deal,|['of', 'in', 'upon', 'discoloured', 'to', 'However']| -doing with,['that'] -you were,|['likely', 'engaged', 'good', 'within', 'when', 'surprised', 'as', 'all', 'interested white', 'not', 'unconscious', 'on', 'seated', 'asked', 'at', 'planning']| -keep your,|['confession', 'eyes']| -rifle This,['terrible'] -was shuttered,['up'] -a family,|['misfortune', 'to', 'blot']| -deed This,['stone'] -discourage me,['Mr'] -who followed,['my'] -prejudice your,['case'] -shrieked out,['in'] -furniture above,['the'] -hours we,['must'] -tropics A,['series'] -Air and,['scenery'] -was wondering,['what'] -Simon second,['son'] -could fly,['out'] -this K,['K'] -the wiser,['Had'] -this I,|['am', 'have', 'drove', 'dashed', 'took', 'think', 'suppose', 'was']| -thought the,|['best', 'reaction']| -whether Mr,['Lestrade'] -feeling something,['was'] -his lodger,['and'] -remaining point,['was'] -possible for,|['me', 'us']| -your client,['may'] -foot in,['the'] -her packet,['and'] -his handkerchief,['over'] -Bradshaw It,['is'] -was buttoned,|['only', 'up', 'right']| -Nothing but,['energy'] -asked keenly,['interested'] -floor At,['the'] -matter that,['you'] -so fine.,['He'] -been intensified,['by'] -do nothing,|['whatever', 'more', 'better', 'and', 'until', 'for', 'of', 'with']| -mat to,['knock'] -acquitted at,['the'] -quiet for,['fear'] -may however,['have'] -outside in,['the'] -anyone when,['she'] -told and,['at'] -press This,['press'] -and having,|['thumped', 'closed', 'lit', 'quite', 'turned', 'also', 'dispatched', 'met']| -key was,|['used', 'not']| -why? during,['the'] -how subtle,['are'] -asked me,|['rather', 'what', 'at', 'whether']| -London What,|['do', 'could']| -crisis was,['a'] -very cocksure,['manner'] -fear Mr,['Holmes'] -of lichen,['upon'] -about having,['letters'] -nest empty,['when'] -minutes. It,['was'] -too late!,['I'] -disguise But,['then'] -the agricultural,['having'] -that time,|['the', 'I', 'seem', 'she', 'is', 'and']| -chance said,['she'] -arrive at,|['my', 'through']| -expired I,['knelt'] -and cheery,['sitting-room'] -the size,['of'] -mood "you have,['erred'] -whole examination,['served'] -The Cooee!,['was'] -mind tended,['no'] -engineer and,['I'] -told their,['own'] -the interest,|['to', 'interest', 'which', 'of']| -until with,['another'] -her You,['will'] -these the,['latter'] -more singular,['features'] -events I,['am'] -would depend,['very'] -entirely free,['of'] -by bedtime,['I'] -noticed during,['the'] -own guardianship,['but'] -exposed in,['a'] -stone-work had,['been'] -She responded,['beautifully'] -humiliation is,['the'] -banker then,['roused'] -writers could,['invent'] -minutes really!",['he'] -became a,|['specialist', 'piteous', 'yellow', 'planter', 'certainty', 'reporter', 'rich', 'member', 'little']| -nature such,['as'] -largest private,['banking'] -a contrast,['to'] -little which,|['you', 'I']| -no. This,['is'] -radius of,['ten'] -did she,|['vanish', 'do', 'speak']| -lost Might,['I'] -good-fortune met,['in'] -thumb-nails or,['the'] -ten miles,|['of', 'or', 'from', 'I']| -elbowed away,['by'] -him that,|['afternoon', 'night', 'he', 'I', 'a', 'his', 'it', 'this', 'man', 'my', 'we', 'there', 'all', 'evening']| -us Beyond,['lay'] -young he,|['told', 'became']| -life itself,['which'] -all have,['been'] -him than,|['on', 'I']| -not averse,['to'] -pretty good,['plan'] -used shook,['his'] -I regretted,['the'] -each in,['its'] -a less,['cheerful'] -the Darlington,['substitution'] -return once,['more'] -sudden light,['spring'] -faults too,['said'] -labour and,['an'] -also may,['not'] -heard some,|['vague', 'slight']| -cause And,['now'] -best resource,['was'] -lock but,['without'] -the merest,|['moonshine', 'chance', 'fabrication']| -from her,|['drive', 'carriage', 'in', 'that', 'imprudence', 'hand', 'You', 'maid', 'and', 'chair', 'face', 'before']| -been delayed,['at'] -business sir,['said'] -printed upon,|['a', 'the']| -approached the,|['door', 'house']| -as unlike,['those'] -it came,|['from', 'here', 'from perhaps']| -presently said,['Jones'] -visits with,['our'] -hound and,['then'] -bureau When,['I'] -are shivering,['is'] -my thoughts,|['rather', 'turning']| -|diamond, sir|,['A'] -Lestrade he,['remarked'] -something Where,['are'] -maiden he,['observed'] -a brave,|['fellow', 'soldier']| -husband's hand,|['of', 'madam']| -stepped into,['the'] -nearer forty,['than'] -the examination,['of'] -we still,['have'] -the negro,['voters'] -ready to-morrow?,['I'] -am I,['charged'] -little singular,['that'] -disadvantages to,['my'] -Lestrade Good-afternoon,['Lestrade'] -wooden boards,['while'] -the deceased,|['was', 'had', 'wife']| -metal floor,['There'] -and servant-maids joined,['in'] -estimate would,['put'] -Or should,['you'] -action that,['I'] -journey and,|['of', 'a', 'their']| -very happy,['to'] -Watson when,['I'] -his masterly,['grasp'] -wife find,['something'] -my rooms,|['smelling', 'the']| -formed some,|['conclusion', 'opinion']| -Boots had,|['worn', 'faced', 'then']| -coronet with,['every'] -recognised shape a,['sprig'] -who wore,['those'] -lighten though,['I'] -saved the,['bridegroom'] -treasure was,['safe'] -only hope,|['of', 'that']| -amusement but,['the'] -introspect Come,['along'] -medical profession,['could'] -Scotland Yard,|['Let', 'and', 'With', 'right,"', 'Jack-in-office', 'at', 'a', 'is', 'looks', 'were']| -easy air,['of'] -know and,['my'] -a lover,|['he', 'it', 'or', 'extinguishes']| -service a,['few'] -talk for,['a'] -too timid,['in'] -stopped. must,['speak'] -take wiser,['heads'] -to civil,['practice'] -and chronic,['disease'] -I tied,['one'] -appeared at,['the'] -examined the,|['writing', 'seat', 'machine']| -interposed your,['statement'] -the affairs,['of'] -Assizes I,|['will', 'have']| -strongly built,['sallow'] -of Heaven!,['she'] -keep people,['out'] -knew so,['well'] -Toller knows,['more'] -to Holmes,|['to', 'room', 'she', 'I']| -proving what,['I'] -you think,|['Watson', 'they', 'that', 'of', 'me', 'it', 'necessary', 'would', 'Miss', 'You']| -The grey,['pavement'] -remarked It,['had'] -see solved,['I'] -Hayling aged,['twenty-six'] -coil at,['the'] -stepped briskly,['into'] -Even though,['he'] -room one,['of'] -away then,['said'] -scales of,['a'] -my new,['acquaintance'] -himself red-headed,['and'] -his end,['and'] -had trained,['it'] -his custom,|['when', 'to']| -the horrible,['life'] -these people,['had'] -arms to,['cover'] -glisten with,['moisture'] -running down,['hope'] -were open,['They'] -last human,['being'] -his finger,|['and', 'was', 'upon', 'in', 'to']| -went in,['the'] -small side,['door'] -pockets to,['make'] -either signature,['or'] -the disappearance,|['of', 'am']| -27 1890,['Just'] -loop of,|['the', 'whipcord']| -ground shimmering,['brightly'] -her sins,['are'] -her ungenerously,['and'] -find them,|['the', 'It', 'might', 'and']| -Saturday night,['for'] -am exceptionally,['strong'] -only two,|['years', 'which', 'a']| -only man,|['who', 'alive']| -hands must,['be'] -slowly across,['the'] -Irish-setter liver,['clay'] -ring-finger which,['had'] -of England,['in'] -he looking,['at'] -deduction that,['you'] -bonnet is,['fitted'] -fault at,['all'] -injured it,['was'] -whole day,['said'] -reason but,['Hosmer'] -every link,|['rings', 'in']| -active enemies,['I'] -I used,['to'] -problems and,['since'] -wing is,['now'] -centre door,['was'] -His defence,['was'] -the effects,['There'] -metal pipes,['The'] -Hill I,['was'] -touch the,|['interest', 'scoundrel', 'bell']| -evening guessed,['as'] -instantly although,['they'] -protested his,['innocence'] -mere curiosity,['though'] -Mr Lestrade,|['You', 'would', 'of']| -in church,|['sir,']| -Norton as,['our'] -all palpitating,['with'] -day for,|['months', 'the']| -speaks of,|['Irene', 'his']| -is wide,['but'] -Who were,['these'] -confessed however,['that'] -decidedly carried,['away'] -usual writing,['and'] -again this,['afternoon'] -direction The,['road'] -your deed,['at'] -rooms although,['I'] -part that,['he'] -must try,|['the', 'other']| -call him,|['father', 'a', 'mine']| -wooden chairs,['and'] -his power,|['I', 'was']| -made friends,['in'] -Fire The,['word'] -her biography,['sandwiched'] -decide I,['need'] -room again,['and'] -harsh voice,['and'] -quite unforeseen,['occurred'] -and simple,|['life', 'so']| -thought He,|['is', 'waved']| -fascinating and,['so'] -the murdered,['man'] -his enormous,|['fortune', 'limbs']| -same lines,['at'] -been too,['busy'] -reach With,['this'] -himself at,['his'] -west remarked,['the'] -himself as,|['it', 'he']| -the murderer,|['thief', 'must', 'a']| -station and,|['asked', 'there']| -mere oversight,['so'] -general public,|['and', 'were']| -delighted that,['you'] -a murder,['then'] -are too,|['late', 'timid']| -in return,|['for', 'the', 'you']| -our lady,['of'] -sent John,['the'] -this case,|['Watson', 'I', 'however', 'is', 'from', 'until', 'there', 'of', 'also']| -the questions,['which'] -sure by,['buying'] -of rooms,['which'] -stepped himself,['into'] -The lady,|['I', 'had']| -matter struck,['me'] -donna Imperial,['Opera'] -forget how,['many'] -systematic its,['methods'] -I take,|['it', 'a']| -edge of,|['the', 'one', 'his']| -same next,['week'] -they go,['they'] -Because he,['limped he'] -inspector if,['you'] -thinking over,['her'] -wax vestas,['Some'] -and scraped,['but'] -And pray,['what'] -some irresistible,['force'] -over the,|['cleverness', 'extraordinary', 'door-mat', 'matter', 'case', 'somewhat', 'course', 'broad', 'ground', 'place', 'leaves', 'Horsham', 'sheet', 'great', 'edge', 'lamp', 'river', 'forehead', 'dates', 'borders', 'meadows', 'fields', 'middle', 'landscape', 'contents', 'six', 'entries', 'earth one', 'outside', 'eye', 'depression', 'countryside', 'threshold']| -of paper,|['before', 'which', 'from', 'in', 'Now', 'and']| -inspector it,['is'] -shows quite,['remarkable'] -|church sir,|,['but'] -the humbler,['are'] -pass him,['without'] -Artillery My,['sister'] -two-storied slate-roofed,['with'] -quick and,['resolute'] -Even a,["wife's"] -farther for,['they'] -Across his,['lap'] -wrong before,['I'] -police report,['where'] -and inexplicable,['chain'] -me who,['knew'] -sleeves Her,['gloves'] -the sudden,|['gloom', 'breaking', 'glare']| -the fact,['that'] -think how,['caressing'] -concealed a,['piece'] -morning eleven,["o'clock"] -window he,|['must', 'could', 'declared']| -ruin all,['now?"'] -Come on,['my'] -gain very,['much'] -Church of,['St'] -the face,|['he', 'of', 'with', 'A', 'and']| -of leaving,|['said', 'the']| -1883 a letter,['with'] -visit and,['will'] -playing for,['thousands'] -hardly take,['any'] -instance I,['am'] -and contemptuous,['while'] -which curves,['past'] -question said,|['he', 'Holmes']| -dense tobacco,['haze'] -the strange,|['coincidences', 'train', 'adjective', 'pets', 'story', 'antics', 'arrangements', 'and', 'rumours', 'disappearance', 'gentleman', 'hair']| -verbatim account,['of'] -will happen,['when'] -fantastic business,['of'] -nothing further,['of'] -be interesting,['It'] -his crackling,['fire'] -suspicions when,['you'] -verify them,['once'] -play heavily,['at'] -broad wheal,['from'] -eager eyes,['and'] -She left,|['this', 'her']| -and trimly,['clad'] -I presume,|['sir.', 'said', 'that', 'no', 'when', 'contains', 'took']| -conclusion that,|['he', 'the']| -two steps,['forward'] -latch and,['made'] -light twinkling,['in'] -him But,['after'] -for life,['Besides'] -I sent,|['John', 'it', 'James', 'him', 'the']| -What are,['you'] -narrative but,['on'] -reaching down,['to'] -remarkably animated,['There'] -maiden herself,['was'] -prompted you,['to'] -the cracks,['between'] -and secretly,['work'] -Ballarat with,['a'] -pound heavier,['said'] -blood running,['freely'] -hour he,['came'] -whole property,['But'] -the breath,['of'] -myself whether,['I'] -tweed trousers,['with'] -I call,|['them', 'him', 'to-morrow', 'it', 'you']| -alleys in,['London'] -blinds you,['as'] -accomplished so,['delicately'] -stairs which,['led'] -forehead you,['can'] -flock. very,['well'] -remark about,['his'] -Britain is,['passing'] -he hurried,['from'] -a peculiar,|['mixture', 'yellow', 'shade']| -away as,['each'] -a slut,['from'] -generally of,['a'] -away at,['the'] -they thought,['of'] -young Mr,['McCarthy'] -without my,['Boswell'] -docks breathing,['in'] -eye Then,['something'] -try the,['simplest'] -fourth left,['answered'] -longer oscillates,['and'] -to considerably,['over'] -a week,|['for', 'far', 'was', 'and', 'without', 'when', 'she', 'but', 'he', 'in', 'ago']| -or his,|['monogram', 'mistress', 'hat', 'brow']| -inside throws,['any'] -go into,|['harness', 'the', 'court', 'your']| -during the,|['long', 'interview', 'reconstruction', 'afternoon', 'proceedings', 'day', 'last', 'years', 'night', 'seven', 'days', 'honeymoon', 'morning', 'night.', 'month']| -be traced,['and'] -the attic,|['in', 'which', 'save']| -to himself,|['and', 'as', 'than', 'once', 'like']| -meet Miss,['Hatty'] -the gun,['as'] -your memory,['as'] -retrogression which,['when'] -messenger reached,['you'] -last squire,['dragged'] -limb is,['often'] -back alive,['Hatherley'] -campaigner and,['if'] -slammed overhead,['and'] -which suits,['you'] -me rude,['if'] -write exactly,['alike'] -remarks very,|['much', 'carefully']| -that Turner,['himself'] -and ventilators,['which'] -past and,['came'] -Farm-house to,['the'] -girl how,['we'] -movement rather,['suddenly'] -footfall of,['the'] -Foreign Affairs,['They'] -ran in,['this'] -Nature rather,['than'] -save that,|['the', 'he', 'it']| -ran if,['I'] -story were,['absolutely'] -register and,['diary'] -value. Heaven,['forgive'] -of whistles,['at'] -view but,['without'] -strange tangle,['indeed'] -we seemed,['to'] -my lady's,['room you'] -simply want,['your'] -Peterson do,['brought'] -drawing-room that,['night'] -She knows,['that'] -am bound,['to'] -society papers,['of'] -if you,|['are', 'do', 'reach', 'care', 'wish', 'will', 'cared', 'budge', 'say', 'consult', 'shift', 'consider', 'have', 'please', 'had', 'saw', 'convince', 'wish ', 'were', 'would', 'want', 'feel', 'prefer', 'could', 'ever']| -be entangled,['in'] -he stammered,|['am', 'heart']| -nerves failed,['me'] -pretty villain,['in'] -kind Where,['does'] -example We,['are'] -more highly,['said'] -neutral to,['get'] -there She,['told'] -strode out,['of'] -programme which,['is'] -most vital,['use'] -morning was,['breaking'] -Francis H,['Moulton'] -or behind,['It'] -Jones He's,['quicker'] -not Was,['there'] -jewel robbery,['at'] -know whether,|['he', 'the']| -Beeches by,['seven'] -the nail,['and'] -blind fool,['I'] -wedding she,['in'] -asked her,['to'] -by during,['which'] -ADVENTURE OF,['THE'] -a ventilator,|['into', 'before', 'what']| -own inner,['consciousness'] -left everything,['in'] -so had,['my'] -may read,['it'] -clearer both,['to'] -her had,['hurried'] -aroused your,|['suspicions', 'curiosity']| -spare time,['even'] -diamond-shaped head,['and'] -family of,|['Holland', 'the', 'Lord', 'Colonel']| -could come,|['to-night', 'with']| -doctors in,['Frisco'] -and who,|['they', 'have', 'was', 'had', 'may']| -chances are,['that'] -before marriage,['also but'] -two barred-tailed,['ones'] -it away,|['at', 'with']| -evening It,['is'] -and why,|['should', 'does', 'I']| -Sir George's,['house'] -height figure,['and'] -nipper I,['tell'] -to wish,['you'] -hacked or,['torn'] -mystery were,|['it', 'as']| -her fortune,['if'] -reached you,['then'] -our research,['must'] -laid her,|['little', 'needle-work']| -the sort.,['let'] -be of,|['no', 'the', 'some', 'use', 'any', 'a', 'assistance', 'little', 'value', 'an', 'more']| -native butler,['to'] -horror there,['was'] -choked her,['words'] -were gone,['the'] -might roughly,['judge'] -in height,|['with', 'strongly', 'figure']| -talking all,['the'] -call a,|['cab', 'really']| -struggling to,['break'] -leaves the,['bank'] -advance it,['without'] -it best,['that'] -for breakfast,['THE'] -contained a,['verbatim'] -nothing had,['transpired'] -grasp and,['turned'] -puffed neck,['of'] -Mrs Etherege,['whose'] -morning to,['find'] -urged young,['Openshaw'] -unimpeachable We,['have'] -Of all,['these'] -him Well,["here's"] -Goodge Street,['a'] -the half-clad,['stable-boy'] -glared down,['at'] -it up,|['to', 'in', 'You', 'Pondicherry', 'and', 'with', 'have', 'then']| -quite solid,['all'] -up now though,['indeed'] -clear him,['Miss'] -and finding,['that'] -once see,['that'] -hands Let,['us'] -been compelled,['to'] -them two,|['and', 'days']| -yourself seriously,['was'] -strongest points,['in'] -one was,|['stirring', 'coming']| -the crop,['of'] -himself for,|['her', 'he', 'over']| -frightened and,['ran'] -in love,['with'] -cab drove,['up'] -devoured it,['voraciously'] -Windibank came,|['he', 'back']| -the fresh,['information'] -Prague for,['the'] -possessed of,['unusual'] -Easier the,['other'] -me warmly,['on'] -on when,['you'] -John Robinson,['he'] -such surprise,['or'] -troubling you,['I'] -pompous and,['slow'] -U.S.A. That,['is'] -and Counties,['Bank'] -vessel which,|['brought', 'touched']| -you did,|['very', 'not', 'also']| -been sitting,['in'] -this new,|['case', 'quest', 'investigation']| -Marseilles there,['is'] -he to,|['prevent', 'single', 'whom']| -This observation,['of'] -singular experience,['of'] -a devil,['incarnate'] -great claret,['importers'] -not explain,|['them', 'the']| -and failed,['Majesty'] -bracelets on,['him'] -feel a,['new'] -and moustached evidently,['the'] -its writhing,['fingers'] -fear not,['what'] -an alternation,['between'] -|contains 2,000|,['napoleons'] -a turn,['like'] -impression of,|['barbaric', 'his', 'a', 'age']| -wall Here,['it'] -fits of,['passion'] -akin to,|['love', 'bad', 'fear']| -End called,["Westaway's"] -hundreds of,|['times', 'Henry']| -landlord and,['prosperity'] -a rabbit,['into'] -his tongue,['over'] -been had,['I'] -keen and,['eager'] -easily give,['you'] -ruin of,|['a', 'us']| -turned and,|['then', 'ran ran', 'clattered']| -Moran?" said,['he'] -which Miss,|['Stoner', 'Hunter']| -sort of,|['fantastic', 'society', 'drunken', 'light', 'Eastern', 'traditions', 'beige']| -about jumping,['a'] -blind That,['was'] -will get,['her'] -On examining,['it'] -finish you'll,['find'] -co-operation shall,['be'] -sort or,['a'] -hurried across,['the'] -agitated He,['waved'] -you nor,['your'] -should quietly,['and'] -very small,|['ones', 'place within']| -let loose,['at'] -cord which,|['was', 'held']| -already said,|['I', 'very']| -photography and,['his'] -is quite,|['a', 'peculiar', 'separate', 'too', 'incapable', 'distinctive', 'clear', 'certain', 'settled', 'correct', 'essential absolute', 'out', 'cleared', 'above', 'impossible', 'essential', 'disproportionately']| -knowing what,|['to', 'was']| -my analysis,|['grinned', 'of']| -occurred which,|['has', 'I']| -such attractions,['and'] -it and,|['examined', 'the', 'I', 'then', 'together', 'he', 'stepped', 'a', 'that', 'was', 'there', 'Watson', 'attacked', 'to', 'turned', 'Letters', 'they', 'addressed', 'also', 'prying', 'take', 'yet', 'in', 'were', 'finally', 'it', 'pulled', 'their', 'came', 'my', 'threw', 'we']| -bland insinuating,['manner'] -the task,['of'] -observe She,['had'] -there burst,['forth'] -my experience,|['have', 'which', 'and', 'that']| -That is,|['just', 'very', 'his', 'back', 'as', 'for', 'important', 'interesting', 'the', 'The', 'easily', 'clear', 'quite', 'why', 'all', 'what', 'obvious', 'Mrs', 'how']| -the jewel-case,|['of', 'raised']| -his false,['teeth'] -mention of,['pips'] -senses might,['have'] -evil which,['no'] -frequently brought,['him'] -different parts,['of'] -such remarkable,['results'] -father's last,['message'] -were behind,['me'] -a gravel-drive,['and'] -dragged the,['basin'] -McCarthy pass,['he'] -wrists She,['stood'] -your goose,['club'] -price for,['the'] -promised Mr,['Rucastle'] -all your,['experience'] -funny that,['I'] -open window,|['are', 'I', 'endeavoured']| -passing said,['Mister'] -the greeting,['appeared'] -frequently together,['McCarthy'] -of solitude,['in'] -sovereign on,['with'] -pipe which,['was'] -so enwrapped,['in'] -upon six,["o'clock"] -moved the,['lamp'] -neighbourhood of,['his'] -stepfather and,['I'] -The blow,|['was', 'has']| -when fagged,['by'] -against that,['laugh'] -not too,|['much', 'delicate', 'late']| -art than,['for'] -you lose,['your'] -asked felt,['angry'] -detail from,['your'] -occasionally very,['convincing'] -fortune in,['the'] -is Dr,|["Roylott's", 'Becher']| -command our,['love'] -fortune if,['she'] -next moment,['I'] -brazen it,['out'] -in discovering,['Mr'] -Street it,|['was', 'had']| -slight said,['Lord'] -the sweat,['was'] -upon anyone,['Here'] -if both,['girls'] -seven sheets,['of'] -innocent one,['There'] -and lay,|['back', 'down', 'half-fainting', 'listless', 'awake']| -the heart,['of'] -foul plot,['had'] -contact with,|['all', 'burning']| -often take,['advantage'] -or you,|['lose', 'are']| -I quite,['committed'] -gas-lit streets,['until'] -no forgetfulness,['turn'] -as fresh,['and'] -must stay,['or'] -are only,|['just', 'two']| -made at,|['the', 'once']| -but like,['all'] -all day,|['and', 'for', 'very']| -levers drowned,['my'] -made as,['you'] -violence a,['small'] -made an,|['admirable', 'appointment', 'unpleasant']| -his attempts,['to'] -waddling about,['round'] -of assisting,['man'] -groping for,['help'] -see it,|['I', 'is', 'snatched', 'he', 'for', 'was', 'through', 'Watson', 'He']| -talk all,['that'] -see is,|['so', 'in']| -long purses,['and'] -Now keep,['your'] -in etc.,['etc'] -that besides,['Mr'] -see if,['the'] -these wings,['the'] -orphan and,['a'] -way of,|['managing', 'the', 'anything', 'proof', 'his', 'danger', 'talking']| -proofs before,['I'] -see in,['the'] -Bradstreet Certainly,['Mr'] -the butler,['and'] -and questioning,['an'] -driving-rod had,['shrunk'] -India I,['felt'] -been beaten,|['in', 'four']| -I rang,['the'] -house continued,['Holmes'] -gaping fireplace,['after'] -get on,|['to', 'very']| -in uncontrollable,['agitation'] -nothing remained,['of'] -chaffed by,['all'] -double-bedded room,['had'] -him just,['as'] -acid told,['me'] -men and,|['things', 'though', 'made', 'once']| -|basket-chair then,|,['madam'] -to whiten,['even'] -king King,['of'] -been looking,|['a', 'through']| -something from,['that'] -hand he,|['had', 'has', 'whispered']| -perplexity son,['had'] -was such,|['a', 'an']| -draw him,|['and', 'by', 'back']| -out your,['coronet'] -midway between,['our'] -in action,['that'] -Street 3rd,['floor'] -gone. cannot,['say'] -When you,|['raise', 'drove', 'go']| -He told,['me'] -slop-shop and,['a'] -note before,['leaving'] -her arms,|['about', 'round']| -wreath and,['veil'] -sweet promise,['of'] -the common,|['crowd', 'lot', 'often']| -uncertain as,['to'] -year I,['heard'] -sure is,['the'] -Colonel Let,['me'] -little trouble,['was'] -likely story,['As'] -assistance in,['the'] -on its,['way'] -secrets of,['making'] -soul remained,['in'] -McCarthy's innocence,['was'] -was apparently,['the'] -pay? 4,['pounds'] -hand Holmes,|['sat', 'unlocked']| -grating wheels,['against'] -temporary convenience,['until'] -Bakers and,['some'] -bade us,['both'] -of justice,|['As', 'is']| -my weary,['eyes'] -be following,['a'] -already spoken,['to'] -signal which,['was'] -words I,|['rushed', 'regretted']| -said my,|['assistant', 'wife', 'uncle', 'companion', 'friend', 'say', 'patient', 'employer']| -The men,['had'] -words A,['few'] -cried Certainly,['if'] -March 10,['1883'] -evidently all,['deserted'] -back it,['up'] -Stars and,['Stripes'] -still dangerously,['slippery'] -in so,|['high', 'unprecedented', 'frightful']| -you Good-day,['to'] -handkerchief very,['tightly'] -chin upon,['his'] -very coarse,['one'] -eye took,['in'] -and humdrum,['routine'] -something in,|['his', 'foolscap', 'the', 'it', 'her', 'what']| -direction and,|['the', 'wondering']| -on those,['of'] -into character,['now'] -insist that,['even'] -park stretched,['up'] -Freebody who,['is'] -about once,['a'] -associate him,['with'] -he felt,|['any', 'that']| -question occurred,['in'] -married too,['and'] -If they,|['fire', 'had']| -a friendly,|['footing', 'supper']| -placed my,['revolver'] -had lost,['a'] -the windows,|['of', 'so', 'This', 'are', 'were', 'Suddenly', 'with', 'I', 'on', 'to', 'and', 'they']| -found a,['gentleman'] -or anything,|['but', 'of']| -handkerchief wrapped,['which'] -H Division,['on'] -character an,['armchair'] -heavy brown,['volume'] -kind enough,['to'] -fresh life,['and'] -bird's leg,['have'] -cheery sitting-room,['behind'] -answered You,['see'] -with its,|['writhing', 'conventionalities', 'inward', 'back', 'keen']| -slipper Smack,['smack'] -why they,['should'] -said there,|['were', 'was']| -foppishness with,['high'] -beckoned to,['me'] -Shortly after,|['my', 'our']| -and Hampshire,['in'] -existence If,['we'] -of awaiting,['him'] -thin with,['a'] -pocket he,['started'] -existence In,['a'] -expectancies for,['the'] -mad elements blown,['in'] -her back I,['will'] -been able,['to'] -you there,|['not', 'at']| -last eight,['years'] -however they,|['separated', 'have']| -whom he,|['has', 'had', 'now', 'might', 'loved', 'lays']| -SHERLOCK HOLMES: Lord,['Backwater'] -been heard,|['upon', 'of', 'either']| -vile stupefying,['fumes'] -fine to,['me'] -heavy iron,['gates'] -|stone yes,|,['I'] -trace But,['how'] -Frank had,['been'] -class of,['society'] -month You,['shall'] -always managed,['to'] -with it.,['went'] -few years,|['older', 'and', 'ago']| -cluster of,['roofs'] -error Upon,['the'] -good about,['it'] -day It,['was'] -the Isle,['of'] -89 not,['long'] -laughed heartily,|['for', 'No', 'you']| -Lodge Adler,['is'] -Society who,['held'] -little inconvenience,['which'] -jewel-case at,['one'] -when starting,['upon'] -treated her,['ungenerously'] -floor while,['the'] -very red,['hair'] -had called,['upon'] -excitement who,['insists'] -identity as,['much'] -training The,['rapidity'] -alone at,['his'] -and feeling,['that'] -disreputable hard-felt,['hat'] -to none save,['only'] -were They,['spoke'] -done at,['once'] -bore you,|['with', 'to']| -remarked so,|['on', 'I']| -unlike his,['usual'] -striking in,['her'] -turned upon,|['my', 'the']| -and find,['him'] -your coat,['and'] -all thought,['of'] -kindled at,['the'] -to breakfast,|['with', 'in']| -The night,['however'] -yet this,['John'] -|night yes,|,['easily'] -ago during,['a'] -perfectly fresh,|['will', 'There']| -creditable to,['his'] -not over-pleasant,['I'] -shining hat,['neat'] -her words,['I'] -considerable sum,|['for', 'of']| -sill and,['framework'] -thing as,|['that', 'a']| -creaking of,['an'] -Do come,['I'] -clothes might,['betray'] -twist steel,['pokers'] -us Within,['there'] -me long,['to'] -Do I,['make'] -voice their,['conversation'] -circle is,['drawn'] -carpets and,['no'] -stranger from,['his'] -them Then,['there'] -fitted neither,['to'] -A search,['was'] -coolness I,['fancy'] -one other,['thing'] -would enable,['us'] -lost all,['enterprise'] -helper in,['many'] -them They,['were'] -steps to,['the'] -every event,['of'] -in their,|['mouths', 'position', 'investigations', 'order', 'expedition', 'place', 'power']| -and desperate,['man'] -her freedom,['CAN'] -papers you,['have'] -us thrust,['this'] -little glimpse,['of'] -Adler spinster,['to'] -blue and,['would'] -hour Colonel,['Lysander'] -his gigantic,['client'] -when we,|['left', 'found', 'had', 'went', 'heard', 'at', 'were', 'turned', 'reached']| -me explain,['I'] -broad balustraded,['bridge'] -he stumbled,['slowly'] -the appointment,['with'] -Court to,['my'] -interrupt you,['at'] -treated said,['Holmes'] -interest yourself,['in'] -very good,|['about', 'of', 'in', 'result', 'thing']| -joy our,['client'] -the premises,|['you', 'but', 'in']| -been laid,['out'] -so pleased,['at'] -to save,['young'] -conveyed from,['the'] -problem will,['be'] -throwing the,['noose'] -seamed it,['across'] -Doran on,['the'] -aunt at,['Harrow'] -ingenious mind,['by'] -ceiling the,['blue'] -stared into,['the'] -to ask,|['you', 'if', 'about', 'for', 'Mrs', 'my', 'me', 'myself']| -rather over,['the'] -words were,|['needed', 'hardly']| -to her,|['own', 'than', 'photograph', 'that', "mother's", 'seems', 'beckoning', 'from', 'and', 'the', 'whispered', 'assistance', 'room', 'chamber', 'you', 'again', 'of', 'maid', 'St.', 'confidential', 'but', 'in', 'also', 'uncle', 'last', 'as', 'lover', 'story', 'stepmother', 'husband', 'little']| -marry him,['for'] -Stoner and,|['I', 'with']| -after Every,['morning'] -murderous than,['his'] -the funny,['stories'] -great elemental,['forces'] -the district,['for'] -driven from,['his'] -you told,['me'] -was scattered,['about'] -hardly tell,['a'] -Born in,|['New', '1846.']| -me good-day,['complimented'] -cat in,['it'] -curt announcement,|['and', 'that']| -as father,['could'] -would have,|['placed', 'had', 'made', 'the', 'a', 'been', 'given', 'her', 'noted', 'your', 'thrown', 'failed', 'spoken', 'arrived', 'done', 'endured', 'followed', 'joined', 'believed', 'ever', 'told']| -heavy yellow,['wreaths'] -smiling face,['and'] -crystals I,['suppose'] -he seemed,|['to', 'a']| -is abnormally,['cruel'] -time as,|['the', 'possible']| -official had,['come'] -board with,['JABEZ'] -look cold,['Mr'] -Nonconformist clergyman,['His'] -in which,|['I', 'we', 'Mr', 'you', 'the', 'direction', 'all', 'it', 'any', 'she', 'as', 'also', 'my', 'Miss', 'her', 'he']| -be correct,['was'] -busy to,['think'] -satisfied with,['such'] -up her,|['mind', 'veil', 'hands']| -very scrupulous,['in'] -naturally of,['a'] -To me,|['who', 'with', 'at', 'it']| -habits a,['good'] -talk We,['are'] -station-master had,['not'] -is Miss,['Stoner'] -send their,['singular'] -chair had,['been'] -propose to,|['do', 'Miss']| -still wanted,['ten'] -Boone and,['his'] -now It,['seems'] -obey You,['see'] -very life,['may'] -from insufficient,['data'] -thoughtful look,['feeling'] -silent once,['more'] -the continued,['resistance'] -now In,['two'] -habits I,['must'] -and my,|['wife', 'poor', 'hearing', 'son', 'girl', 'father', 'room', 'suspicions', 'life', 'bedroom', 'coat-sleeve', 'legs', 'ulster', 'page', 'unhappy', 'mind', 'own']| -and close,['by'] -given against,['the'] -less foresight,['now'] -failed me,['suddenly'] -designed for,['so'] -help I,['should'] -yet her,['hair'] -which several,['German'] -kind good-natured,['man'] -grey lichen-blotched,['stone'] -some company,['dropping'] -lounging about,['his'] -indicated the,['nature'] -where?" shouted,['Mr'] -give us,|['your', 'the', 'a']| -are infinitely,['the'] -long day,['is'] -drew out,['a'] -Rucastle told,['me'] -scene in,['the'] -this Pray,['let'] -any hesitation,['Your'] -stretch a,['point'] -Middlesex passing,['over'] -running feet,['and'] -it'll be,['too'] -innocence in,['the'] -the garden,|['I', 'with', 'There', 'looked', 'below', 'Perhaps', 'in', 'to', 'behind', 'without']| -scrupulous in,['the'] -and got,['my'] -announcement that,['the'] -That second,['window'] -understand By,['the'] -therefore and,['came'] -the message,['threw'] -the lodge,|['to', 'I']| -photograph know,['where'] -could afford,['to'] -He conceives,['an'] -would emerge,['in'] -could produce,['your'] -a night,|['when', 'for', 'journey']| -of proof,['with'] -at death's,['door'] -being satisfied,|['with', 'are']| -together and,|['his', 'chuckled', 'I', 'away', 'in', 'devote']| -topped a,['low'] -a size,['larger'] -and venomous,['beast'] -sent James,['off'] -between two,|['rooms', 'very', 'of', 'neat', 'rounds', 'planks']| -trite one,['You'] -trap out,['He'] -DISSOLVED ,[''] -out until,['it'] -in anything,['but'] -direct his,['attention'] -trivial end,['may'] -and ordered,['two'] -everyone had,['given'] -At such,['times'] -be immensely,['obliged'] -An Eley's,['No'] -soul. He,['looked'] -son so,['I'] -heaven's name,['what'] -horse on,['into'] -frock-coat shining,['hat'] -using my,['room'] -of Hatherley,['was'] -should need,['it'] -And you,|['have', 'know']| -Yard and,['upon'] -our search,['laughed.'] -beeches As,['it'] -and dashing,|['never', 'up']| -nothing fit,['to'] -law would,['give'] -He burst,['into'] -darkness he,['missed'] -somehow I,['can'] -it cost,['them'] -rushed into,['the'] -concerned with,|['politics', 'an']| -the water-jug,['moistened'] -very simple,|['problem', 'test']| -I wonder,|['who', 'at', 'that', 'I']| -possible solution in,['fact'] -scandal said,['the'] -arms my,['uncle'] -shock though,['what'] -father fatally,['injured'] -he Was,['the'] -track Very,['long'] -much against,['the'] -there seemed,['to'] -to crack,['Master'] -assuredly gone,['down'] -Winchester at,|['midday', '11:30']| -commissionaire rushed,['into'] -of crumpled,['morning'] -local blacksmith,['over'] -but here's,['a'] -rapid deductions,['as'] -more he,['was'] -commence with,['the'] -sat a,|['small', 'tall']| -the real,|['vivid', 'name', 'person']| -had completed,['their'] -and loop,['of'] -her temper,['was'] -Star VI.,['THE'] -my time,|['and', 'is', 'to', 'in']| -sailing vessel,['which'] -machinery which,['had'] -moistened his,['sponge'] -all such,['narratives'] -to disregard,['what'] -common thing,['for'] -hint to,['you'] -out alone,['friend'] -see for,|['yourself', 'yourselves']| -doing business,['with'] -Baxter's words,['and'] -knee I,['took'] -Mrs St,|['Clair', "Clair's"]| -lectures into,['a'] -vivid flame-coloured,['tint'] -not hysterical,['nor'] -the keeping,['of'] -yet abstracted,['fashion'] -heard either,['of'] -life do,['not'] -marry anyone,['else'] -heirs were,['of'] -you know faddy,['but'] -Mall St,["James's"] -man clean-shaven,['with'] -find anything,['which'] -go but,['Holmes'] -that with,|['your', 'her']| -day by,['smearing'] -woman's instincts,['are'] -Majesty will,['of'] -overcoat You,['have'] -concentrated upon,['the'] -is strange,['and'] -pride It,['becomes'] -questions to,['which'] -in custody,['and'] -circumstances which,['I'] -friend's amazing,['powers'] -be so,|['ridiculously', 'bound', 'or', 'I', 'with', 'warm', 'for', 'Let', 'secluded', 'severely', 'in', 'good']| -confirm or,['destroy'] -kings of,['Bohemia'] -pen in,['his'] -careful for,['we'] -does fate,['play'] -the end,|['of', 'had', 'wall']| -fitted for,['the'] -blotted none,['would'] -be accused,['in'] -evil days,['He'] -her child,['which'] -cruelty to,['his'] -the Union,|['I', 'Jack']| -writing well.,['It'] -plaster Then,['with'] -almost to,|['the', 'blows']| -clutched it,['up'] -With his,['collar'] -remarked His,['conduct'] -of 250,['pounds'] -my hand so you,['will'] -face peeled,['off'] -alter the,['matter'] -but with,|['a', 'the', 'my', 'so']| -the town,|['glass', 'He', 'what']| -band The,['speckled'] -forth in,|['a', 'the']| -and followed,['him'] -later this,['same'] -the Beryl,['Coronet?'] -whole country,['as'] -me won't,['you'] -hand at,|['anything', 'the']| -open it,|['he', 'The']| -at cards,|['said', 'and']| -reached Baker,['Street'] -Why bless,['my'] -over-tender of,['heart'] -lay there,['doubtless'] -husband until,['I'] -should marry,|['another', 'before']| -either It's,['hard'] -the Civil,['War'] -Alice had,['rights'] -John Swain,|['of', 'cleared']| -On entering,['his'] -bushy whiskers,|['sunk', 'My']| -which lie,|['behind', 'at']| -royal brougham,['rolled'] -connected with,|['the', 'his']| -pocket and,|['looked', 'I', 'flattened', 'drawing', 'threw', 'made']| -our persuasions,['and'] -was scraping,['at'] -fastened one,['of'] -Hosmer was,['very'] -successfully for,['the'] -answer to,|['an', 'everything', 'our']| -have the,|['photograph', 'honour', 'great', 'vacancy', 'pleasure', 'goodness', 'use', 'opportunity', 'keeping', 'date', 'effect', 'others', 'trap', 'key', 'same', 'feathers', 'pick', 'other', 'advantage', 'kindness', 'details']| -the people,['who'] -once not,['only'] -did bang,['out'] -ever lived,['sister'] -overwhelmed by,['the'] -was exchanged,['for'] -two lower,['buttons'] -the strangest,['and'] -gives a,['meaning'] -fancy Have,['you'] -their conversation,|['coming', 'I']| -breathing and,['by'] -German accent,|['I', 'You']| -legs crop,['and'] -twinkling in,['front'] -cured of,['a'] -the miserable,['weather'] -this poor,|['Horner', 'girl', 'creature']| -the stables,['and'] -gives I,['sent'] -same. if,['it'] -wander about,['the'] -temptation pray,['not'] -two above,['my'] -mind and,|['above', 'then', 'put', 'prevent', 'fairly', 'fearless']| -three minutes,['or'] -a hat,|['of', 'three']| -purse said,['I'] -matter Mr,['Holmes'] -attention own,['little'] -money in,|['this', 'Australia', 'a', 'some']| -and thieves,['I'] -bonnet with,['a'] -details which,|['to', 'were', 'I', 'seem']| -provide this,['table'] -money is,['in'] -of revenge,['or'] -the wharves,['Between'] -open in,['this'] -reed-girt sheet,['of'] -few seconds,|['sufficed', 'of']| -chin waiting,['outside'] -have learned,|['that', 'something']| -making the,["doctor's"] -own special,['subject'] -it when,|['fagged', 'examining', 'you']| -anyone had,['we'] -owe you,['an'] -little item,['in'] -earnestly It,['is'] -fastened upon,['the'] -we presume,['indicated'] -not gain,['very'] -centre on,['which'] -from some,|['private', 'foolish', 'small', 'sudden', 'strong']| -wear it,['on'] -woman for,['she'] -nights on,['end'] -our debts,['if'] -drawn a,['net'] -The question,|['for', 'now']| -present save,['the'] -man so,|['McCarthy', 'I']| -her story,['have'] -at and,['I'] -as warm,['maybe'] -we at,['last'] -at any,|['rate', 'moment', 'rate.', 'risks', 'time']| -it Have,['your'] -his curious,['conduct'] -classes of,['the'] -Hugh Boone,|['his', 'and', 'had', 'have']| -retired Saxe-Coburg,['Square'] -nostrils seemed,['to'] -half-pennies 421 pennies,['and'] -spare figure,['pass'] -note written,['in'] -memoranda receipts,['and'] -lightning across,['the'] -strange hair,['to'] -|ceiling think,|,['Watson'] -Far away,['we'] -the work?,|['purely', 'to']| -grew broader,['and'] -alarm she,['replaced'] -the motive,|['was', 'In']| -Stark stopped,['at'] -fate of,['the'] -press as,['I'] -though they,['hardly'] -darkness Evidently,['there'] -I clapped,['a'] -of replied,['Lestrade'] -anger week,['he'] -methods by,['which'] -what may,|['You', 'be']| -has ever,['been'] -I panted,['dear'] -are four,['letters'] -towards me,|['God', 'again']| -so. We,['shall'] -particularly unpleasant,['thing'] -the neat,['little'] -your warmest,['thanks'] -sofa is,['very'] -huge famished,['brute'] -be difficult,['to'] -that For,['Mrs'] -little plainly,['furnished'] -absolute pallor,['of'] -it should,|['be', 'not', 'like']| -beyond it,['however'] -people don't,['know'] -impossible said,|['I', 'Miss']| -our fare,['and'] -your order,['you'] -sofa in,['a'] -he glared,|['at', 'down']| -doing anything,['so'] -sealed it,['and'] -for purely,['nominal'] -our horse's,['feet'] -over by,['my'] -public possessions,['of'] -clue it,['did'] -clue in,|['them', 'the']| -CORONET said,['I'] -brims curled,['at'] -belonging to,|['the', 'my']| -all make,['nothing'] -my remark,['is'] -such singular,['features'] -sleep breathing,['slowly'] -persons one,['of'] -unexpected turn,['of'] -bowed shoulders,|['gave', 'bent']| -interests were,['the'] -upon fact,['on'] -asked sir.',["governess?'"] -my Bradshaw,['It'] -sat down,|['beside', 'It', 'at', 'to', 'for']| -patent facts,['which'] -a soft,|['cloth', 'tread']| -the management,['of'] -lane came,['a'] -jacket is,['spattered'] -room here,['It'] -Court looked,['like'] -son he,['had'] -onto his,['arms'] -obstacle to,['our'] -is unimpeachable,['We'] -salary may,['recompense'] -furnished little,['chamber'] -and puffed,['neck'] -retained some,['degree'] -the forts,['upon'] -to Brixton,['Road'] -uniform rushing,['towards'] -stairs together,['We'] -but all,['stained'] -road stood,['our'] -performance was,['gone'] -and arrange,['the'] -groom is,['the'] -serious point,['in'] -Holmes staring,['down'] -shall certainly,|['do', 'come', 'be']| -your business,|['been', 'sir']| -to east,['The'] -repelled by,['the'] -Well a,['cheetah'] -dressed it,['and'] -inspector certainly,['needs'] -she waited,['upon'] -rattled and,['from'] -of cigarettes,['here'] -Gravesend postmark,['and'] -he sees,['no'] -but by,['bedtime'] -examination are,['engaged'] -be invited,['and'] -red circles,['of'] -of something,|['happening', 'akin', 'of']| -matter One,|['is', 'mistake']| -Well I,|['never', 'think', 'have', 'guess']| -more so,|['than', 'My', 'by', 'that', 'as']| -obvious I,['was'] -ordered me,['to'] -solemnly he,['was'] -so suspicious,['and'] -hands He,|['appeared', 'took', 'knew']| -is founded,['upon'] -having acted,['so'] -intruding I,['fear'] -hours passed,['slowly'] -I gave,|['to', 'him', 'a', 'the', 'it']| -broad bars,['of'] -none could,['see'] -pounds down,['in'] -gravity was,['engaging'] -my death,['would'] -house resounded,['with'] -is one,|['of', 'remarkable', 'thing', 'which', 'point', 'who', 'other']| -all carefully,['dried'] -label with,['the'] -unpack the,['money'] -then turned,['upon'] -rose at,['once'] -how worn,['wrinkled'] -are coming,['along'] -to strike,|['his', 'him', 'deeper', 'and']| -prolonged scene,['that'] -gold chasing,['is'] -any pleasure,['He'] -morning drive,['dress.'] -on without,['his'] -all its,|['advantages', 'disadvantages', 'bearings']| -anxious ears,['have'] -scattered knots,['of'] -There would,['be'] -again where,['I'] -few hurried,['words'] -wrinkled velvet,['collar'] -marks him,['as'] -pale-looking have,['been'] -first volley,['Three'] -the strict,|['principles', 'rules']| -grin Well,['I'] -cardboard hammered,['on'] -a supply,['of'] -distinctly saw,['his'] -knowledge was,['not'] -very unexpected,['turn'] -with impunity,|['or', 'Give']| -weedy grass,['and'] -hand so you will,['throw'] -his murderer,|['So', 'do']| -deep toe,['and'] -the proceedings,|['from', 'fainted']| -of thirty,|['Has', 'but']| -in connection,['with'] -had fixed,['it'] -its value?,['he'] -the dressing-table,|['Ryder', 'Holmes']| -Monday the,['3rd'] -not present,['a'] -is frequently,['in'] -A thick,['fog'] -of cold,['woodcock'] -quite mad,['if'] -landlady The,['crudest'] -yet twenty,['years'] -knitted and,['his'] -a struggle,|['so', 'between', 'and']| -man sent,['for'] -still there,['ready'] -rather for,['the'] -may You,['understand'] -mendicants and,['so'] -a cup,['of'] -my pistol,['to'] -it back,['to'] -obliged to,|['lie', 'work', 'you']| -still share,['my'] -them they,|['seemed', 'are', 'thought']| -which makes,|['one', 'me', 'the']| -of Threadneedle,['Street'] -crack Master,['Holmes'] -for openness,['but'] -laying them,['out'] -there cried,['the'] -attendant had,['hurried'] -thought had,['hardly'] -rumours of,['foul'] -wore tinted,['glasses'] -he wrote,|['S', 'the', 'hurriedly']| -At two,["o'clock"] -servants a man,['and'] -very independent,|['about', 'in']| -your absence,['to'] -so well,|['that', 'There', 'how']| -my employer,|['who', 'had', 'laughing']| -true character,['of'] -Wilson Have,['you'] -But will,['he'] -might avert,['it'] -am staying,|['with', 'there']| -to raise,|['the', 'his', 'our', 'a']| -floor About,['sunset'] -dressing-gown a,['pipe-rack'] -man Surely,['your'] -he and,|['he', 'rising', 'his', 'the', 'laughed', 'vanished', 'then', 'turned']| -hair on,['his'] -safely trust,['him'] -seeing an,['official-looking'] -man He,['had'] -undoubtedly some,['friend'] -wife is,|['a', 'very', 'fond']| -and discoloured,['that'] -wife it,['was'] -as any,|['man', 'young']| -are usually,|['the', 'people']| -charm of,['variety'] -of good-fortune,['did'] -lady gave,['a'] -had fallen,|['his', 'over', 'As', 'in', 'since', 'to']| -did as,|['he', 'I']| -on seven,['and'] -showing that,['it'] -positive one,['too'] -may assume,['as'] -extra tumbler,['upon'] -suspicion that,['the'] -catastrophe Then,['he'] -cost them,['two'] -so terrified,['that'] -like an,|['accurate', 'electric', 'immense']| -my leaving,['it'] -spine and,['I'] -knowing it,['too'] -tell heavily,['against'] -office There,['was'] -cheerful nine,["o'clock"] -fit of,|['laughter', 'anger']| -maid at,['Holmes'] -so closely,|['allied', 'you']| -eyes now,['I'] -case every,['businesslike'] -turn things,['are'] -instant My,['name'] -and cheerless,['with'] -and sister,|['but', 'of']| -witness my,['will'] -seems indeed,['to'] -wood but,['the'] -La Scala,['hum'] -cover was,['a'] -1890 Holmes,['and'] -appointment he,['never'] -their beds,|['I', 'It']| -rather ruefully,['It'] -McCarthy If,['that'] -From the,|['lower', 'time']| -I made,|['the', 'my', 'inquiries', 'a', 'for', 'up', 'him']| -occasionally hung,['about'] -even though,['I'] -value you,['know'] -masonry Hum,['said'] -long sinewy,['neck'] -his brains,['to'] -patch near,['the'] -door we,['have'] -committed myself,['I'] -and little,['low'] -people had,['strange'] -experience has,['been'] -which encompass,['me'] -builder must,['be'] -threshold again' here,['in'] -will Holmes,['suddenly'] -golden tunnels,['of'] -as long,['as'] -company once,['more'] -the twelve-mile,['drive'] -room He,['drank'] -he shrieked,|['and', 'Think', "you're", 'you']| -I spared,['him'] -letters in,['in'] -dreadful time,['is'] -in unravelling,['the'] -you pick,['him'] -letters if,['I'] -mask to,['showing'] -up indeed!,['Then'] -stretched himself,['out'] -sofa This,['way'] -theories Good-day,['Mr'] -quietly as,['possible'] -an analytical,['reasoner'] -a year.,['may'] -high gaiters,['with'] -figure He,['was'] -be more,|['disturbing', 'successful', 'exciting', 'than', 'valuable', 'natural']| -like you,['to'] -ready Come,['at'] -brought round,|['both', 'a']| -driving at,["Let's"] -office?" the,['worst'] -were a,|['gang', 'partie', 'slut', 'couple', 'philanthropist']| -dirty while,['the'] -anxiety all,['swept'] -keep out,['the'] -|well,' said|,['he'] -Heavy bands,['of'] -yelled Hullo,['Colonel'] -borne the,['repute'] -the evident,['confusion'] -They did,['not'] -matter There,['is'] -only when,['you'] -a receipt,['upon'] -we listened,['in'] -opinion upon,['the'] -obliging youth,['asked'] -chimneys however,['gave'] -myself absolved,['from'] -more value,['than'] -deeply attracted,['by'] -pale as,['death'] -you There's,['two'] -And many,['men'] -a hook,['just'] -equal light,['and'] -any of,|['the', 'their', 'its', 'Sherlock', 'these', 'them']| -the United,['States'] -fourth a,['field'] -energetic agent,['in'] -more facts,['are'] -much easier,['A'] -burgled during,['the'] -should succeed,['me'] -known as,|['a', 'the']| -called and,['gave'] -so! You,['have'] -sofa to,['get'] -person wrote,['her'] -large bath-sponge,['he!'] -and complimentary,['of'] -Sholto murder,['and'] -girl Turner,['had'] -don't know,|['so!', 'that', 'did', 'his', 'what', 'quite', 'why', 'him', 'you']| -sinned I,['have'] -stock with,['the'] -breakfast I,['must'] -compose yourself,['sir'] -would wish,['to'] -grounds A,['stable-boy'] -return you,['must'] -slapped it,['down'] -with flushed,['cheeks'] -writing is,['undoubtedly'] -laughing It,['was'] -Majesty say,['so'] -breakfast a,['bite'] -Mr Charles,['McCarthy'] -much the,|['worse', 'same']| -his object,['in'] -eastward in,['a'] -of it,|['said', 'none."', 'One', 'that', 'In', 'as', 'How', 'in', 'weeks', 'I', 'all', 'with', 'Mr', 'and', 'farthest', 'would', 'You', 'A', 'sticking', 'Yet', 'how', 'at', 'Might', 'into', 'But', 'then', 'Get', 'we', 'had', 'recalled', 'He', 'within', 'However', 'went', 'do', 'Then', 'And', 'His', 'which']| -pipe for,['me'] -and brushed,['past'] -conclusions from,['the'] -held 1000 pounds,['apiece'] -limp but,['in'] -aquiline features,['So'] -him an,|['arm', 'advance']| -him am,['in'] -the summer,|['sun', 'of']| -will draw,['your'] -under our,['roof'] -examined it,|['closely', 'intently', 'One', 'It']| -protruded with,['eager'] -him as,|['the', 'on', 'a', 'he', 'either', 'I', 'to']| -this grey,['house'] -how very,['useful'] -mousseline de,['soie'] -typewritten letter,['is'] -a bride's,['wreath'] -him at,|['every', 'the', 'Boscombe', 'once']| -terrible trap,['for'] -thumb had,['been'] -certainly answered,['Mr'] -into my,|['rooms', 'chair', 'head', 'walking-clothes', 'inheritance', 'hand', 'room', 'confidence', 'memory', 'ear', 'weary', 'mouth', 'hands', 'mind']| -to weaken,['the'] -in doubt,['or'] -emerald snake,['ring'] -Mrs. Turner,['has'] -never spoke,['of'] -strikes even,['deeper'] -also the,['allusions'] -sunk in,|['a', 'the']| -anxiety as,['to'] -with hardly,['a'] -recalled in,['an'] -in danger,['it'] -detailing this,['singular'] -asked Arthur,['my'] -danger do,['you'] -low whistle,|['such', 'which']| -leaving America,['Men'] -results that,['I'] -sir march,['upstairs'] -marm Bring,['him'] -our luncheon,['You'] -make up,['for'] -escape was,['recalled'] -stake to-night,['than'] -Lord Southerton's,['preserves'] -step-daughter but,['was'] -gentleman's clothes,['much'] -me professionally,['I'] -use was,['my'] -asked Briony,['Lodge'] -you'd give,['me'] -the sundial,|['I', 'as']| -general air,['of'] -easy in,['my'] -interested white with,['a'] -four large,['staples'] -suffer from,['her'] -fogs of,['Baker'] -the Horsham,|['lawyer.', 'property']| -Wellington Street,['wheeled'] -little boy,['home'] -such tricks,['with'] -kettle The,['instant'] -recovered her,['consciousness'] -is out,['of'] -unhappy father,['but'] -is our,|['French', 'signal', 'task']| -fair dowry,['Not'] -have called,|['to', 'me']| -upon so,['much'] -friend I,|['to', 'ordered']| -and ushered,['in'] -had not,|['spoken', 'yet', 'been', 'a', 'face', 'seen', 'got', 'gone', 'already', 'come', 'an', 'he', 'retired', 'recognised', 'forgotten', 'Was', 'finished', 'done']| -villain it,['was'] -whistle I,['am'] -George and,['cut'] -not look,['then?"'] -happens he,['spoke'] -doctor's voice,['and'] -midnight but,['there'] -red jutting,['pinnacles'] -entirely erroneous,['conclusion'] -of fine,['shops'] -you Pray,|['tell', 'continue']| -innocent think,['that'] -has prompted,['you'] -surprise and,|['delight', 'perhaps']| -eighteen and,['Turner'] -My gross,['takings'] -snow-clad lawn,['stretched'] -man it's,['a'] -cosy room,['rather'] -drawer which,['they'] -vanish away,['and'] -married woman,['grabs'] -how could,|['you', 'any']| -whishing sound,['that'] -cringe and,['crawl'] -the Regency,['Nothing'] -confessed that,['they'] -tension in,['which'] -feared as,['much'] -face towards,['us'] -reply when,|['we', 'the']| -is why,|['I', 'they']| -he's all,['right'] -husband's appearance,['at'] -as Reading,['but'] -a corner,|['a', 'house', 'and', 'holding']| -be many,['who'] -hours or,['so'] -work upon,|['your', 'him', 'it']| -not notice,['the'] -hours of,|['the', 'burrowing']| -me was,|['more', 'a', 'dated', 'of']| -Simon marriage,|['and', 'case']| -morning emerge,['as'] -black cloud,['which'] -comes under,['the'] -glance that,|['he', 'she', 'the']| -the pale,['of'] -has most,['kindly'] -than mine,['He'] -our boys,['were'] -mean It,['could'] -they can,|['hardly', 'at']| -just my,['point'] -feet six,['inches'] -Majesty there,['is'] -for another,['Let'] -feet out,['towards'] -marked face,['and'] -a weaver,['by'] -at you,['You'] -local branches,['in'] -and note-books,['bearing'] -best for,['me'] -depicted to,['him'] -the house?,['no.'] -face half,['round'] -bean in,['size'] -agony column,|['of', 'The']| -recovering lost,['lead'] -hair to,|['me', 'the']| -your billet.,['the'] -and dottles,['left'] -Tragedy Near,['Waterloo'] -clock on,['the'] -the house.,['you'] -records unique,['violin-player'] -but momentary,['With'] -both put,['our'] -also thoroughly,['examined'] -upon Lord,['St'] -ones empty,['and'] -famished brute,['its'] -ones and,['I'] -once or,['twice'] -he lived,|['at', 'and', 'Why']| -point your,['heart'] -array of,['bottles'] -practice at,['all'] -wet feet,['out'] -answered Oh,['yes'] -which proved,['upon'] -by some,|['30', 'ex-Confederate', 'irresistible', 'robberies', 'sound']| -They will,|['be', 'see']| -make them,['less'] -small eyes,['and'] -deposes that,['she'] -once of,['a'] -husband by,['the'] -as suddenly,|['as', 'and']| -surprise that,['I'] -strolled round,['to'] -solve the,['mystery'] -think 1000,['pounds'] -hear from,['her'] -lounging upon,['the'] -the houses,|['Finally', 'here', 'believe']| -from your,|['lips', 'watch-chain', 'memory', 'life', 'sleep', 'appearance', 'laughter', 'gesture']| -which weighed,['upon'] -as follows,|['THE', 'I']| -after No,['reference'] -needed There,['was'] -met there,['a'] -green shoots,['and'] -not Arthur,['who'] -healthy mind,['rather'] -door just,['after'] -this manner,['for'] -humours her,['fancies'] -of court,['So'] -He chuckled,['to'] -relief course,['we'] -began and,['then'] -question and,['when'] -large flat,['box'] -and pin-point,['pupils'] -each new,['discovery'] -hysterical outbursts,['which'] -her broad,['good-humoured'] -apply Mr,['Wilson'] -them present,['such'] -unconscious I,['cannot'] -yet nine,['The'] -Horsham property,['he'] -he ordered,|['and', 'me']| -and unlocking,['it'] -post But,['that'] -could think,['of'] -revolver said,['I'] -sake what,['was'] -visits at,['this'] -this seems,['to'] -little cold,|['for', 'supper']| -this cellar,['at'] -hair quite,['short'] -this no,['word'] -to show,|['where', 'me', 'that', 'us', 'him', 'very']| -justice is,['ever'] -us said,['Holmes'] -You remember,|['in', 'that']| -my resolution,['about'] -her bouquet,['as'] -match-box that,['she'] -I cried,|['out', 'that!', 'said', 'What', 'you', 'to', 'I', 'pull', 'this', 'but', 'on', 'half-mad', 'with', 'Who']| -quick or,["it'll"] -none other,|['than', 'than well']| -results it,['would'] -a shattered,|['skull', 'stern-post']| -going well,['when'] -silk a,['pair'] -empty all,['right'] -Carlo my,['mastiff'] -mask is,['indeed'] -to Gravesend,['and'] -ever A,['month'] -first notice,['which'] -varieties of,['pipe'] -Several times,['during'] -back yard,|['and', 'There']| -outlined against,['the'] -great care,['for'] -had so,|['many', 'much', 'foolishly']| -only come,['up'] -Doran whose,['graceful'] -only keep,['one'] -hailed a,['four-wheeler'] -manor-house is,['as'] -which stands,|['upon', 'near']| -past Reading,['Then'] -had begun,['to'] -ever a,['flaw'] -A lover,['evidently'] -at five,|['every', 'as']| -Heaven! she,['whispered'] -before during,['and'] -other at,['the'] -little thing,['but'] -other as,|['possible', 'brother', 'fresh']| -occasional bright,['blur'] -day father,['struck'] -handsome man,['dark'] -Charing Cross,|['for', 'But']| -please He,['led'] -egg after,['it'] -how narrow,['had'] -of children's,['bricks'] -pleasure to,|['me', 'look']| -say yourself,['that'] -neighbouring landowner,['who'] -brightly between,['puckered'] -always founded,['on'] -once were,['he'] -father Yet,['I'] -beggar in,['the'] -Catherine Cusack,|['maid', 'who']| -so unprecedented,['a'] -Mr Jones,|['of', 'it']| -the wonderful,['chains'] -the murky,['river'] -rack Watson,['I'] -the states,['of'] -interesting You,['can'] -be kicked,['from'] -the bird,|['which', 'I', 'we', 'all', 'rushed']| -quarrelling he,['was'] -gale there,['burst'] -with two,|['men', 'small', 'windows']| -houses until,['at'] -staircases and,['little'] -villain was,['softened'] -allowance that,['he'] -meetings and,['an'] -cried said,['he'] -Road at,['the'] -commissions to,['perform'] -rift which,['I'] -grip he,['snarled'] -may In,['this'] -which come,|['to', 'upon']| -fire looks,['very'] -from here,|['to', 'before']| -Not at,['all'] -wants I,['daresay'] -live at,|['home', 'Horsham', 'no']| -mark I,['simply'] -easily acquired,['was'] -the forbidden,['door'] -cheeks was,['drawn'] -Having laid,['out'] -three English,['counties'] -we call,|['it', 'in']| -presented such,['difficulties'] -Let us,|['glance', 'now', 'follow', 'thrust']| -aperture His,['costume'] -120 pounds,['a'] -trap-door at,['the'] -own memory,['Robert'] -dear friend,['whom'] -collection of,['old'] -Wight will,['you'] -clinched fists,['at'] -He hardly,['spoke'] -observation and,|['for', 'inference']| -the observation,|['and', 'of']| -Spaulding did,['what'] -together with,|['many', 'a']| -recall the,|['case', 'snake']| -arm in,['mine'] -suffered a,['long'] -|alone sir,|,['but'] -married her,|['brought,']| -trousers his,['white'] -definite conception,|['of', 'as']| -Your narrative,['promises'] -choosing his,['words'] -heartily ashamed,['of'] -never sold,['upon'] -senseless for,['a'] -be brought,|['to', 'into']| -reading me,['the'] -steps below,['and'] -unless we,|['are', 'can']| -the pea-jacket,['I'] -was cracked,['exceedingly'] -a weary,|['day', 'man']| -parietal bone,['and'] -its back,['turned'] -basket-chair This,['is'] -here He,|['put', 'stepped']| -me wishes,['his'] -agent while,['the'] -height strongly,['built'] -time enough,['said'] -He swung,['himself'] -very wisely,['said'] -possess so,['much'] -any action,['without'] -town what,['the'] -broad good-humoured,['face'] -man They,['are'] -importance Good,['has'] -clearly never,['meant'] -have seen ,['such'] -which transmit,['and'] -the Pink,['un'] -panel with,['a'] -will we,['hope'] -pew There,['was'] -light up,['in'] -carbuncle James,['Ryder'] -If not,|['I', 'why', 'it']| -though both,['the'] -brilliantly scintillating,['blue'] -ask the,['King'] -a populous,['neighbourhood'] -Holmes shook,['his'] -good for,['you'] -understand deposes,['that'] -right foot,['was'] -strength of,|['body', 'a', 'mind']| -Mary and,|['Arthur', 'I']| -more reasonable,['I'] -defect in,['the'] -take them,['at'] -found yourself,['deprived'] -back disappeared,['so'] -conceivable hypothesis,['said'] -wonderful I,['exclaimed'] -Georgia and,['Florida'] -imagine see,['many'] -fattened fowls,['for'] -to witness,['my'] -the exalted,['station'] -smile I,['am'] -constable was,['watching'] -Suddenly my,['eyes'] -idea look,['at'] -five and,|['the', 'thrust']| -good style,['By'] -itself crushed,['under'] -my ears,|['for', 'and', 'Suddenly', 'As']| -disturbed and,['excited'] -a detective,|['in', 'and']| -St Simon,|['marriage', 'and', 'I', 'second', 'who', 'has', 'the', 'It', 'announced', 'said', 'young', 'to', 'Holmes', 'was', 'is', 'tapping', 'bitterly', 'came', 'of', 'but', 'alone', 'in', 'very']| -importance Yours,['faithfully'] -imbecility he,['cried'] -Lee a,['gentleman'] -should have,|['thought', 'suspected', 'looked', 'acted', 'the', 'been', 'aroused', 'asked', 'heard', 'spared', 'spoken', 'gone', '50,000', 'its', 'him', 'no']| -the Lone,['Star'] -My companion,|['sat', 'noiselessly']| -doing what,|['he', 'you']| -upon There's,['plenty'] -himself in,|['a', 'an', 'the', 'practice', 'this']| -so old,['and'] -curious to,['learn'] -save with,['a'] -as intuitions,['and'] -the chairs,['into'] -slipped behind,['the'] -business behind,['him'] -To carry,['the'] -friends into,['the'] -|no, he|,['found'] -mistaken to,['resolve'] -hour The,['same'] -so high,['a'] -little cry,['of'] -yet It,|['is', 'was']| -fire was,|['admirably', 'burning', 'a']| -heavy chin,['which'] -kind It,['is'] -written about,['Abbots'] -hardly get,|['there', 'at']| -bringing in,['a'] -been always,['locked'] -father took it,['all'] -was new,['to'] -no one,|['in', 'there', 'near', 'else', 'to', 'can', 'was', 'upon', 'hinders.', 'being', 'could']| -finding that,['he'] -blew its,['brains'] -come from,|['a', 'me', 'the', 'He', 'Pondicherry', 'Paddington', 'Nature', 'my']| -was undated,['and'] -this gang,|['That', 'at']| -with one,['of'] -his upper,['lip'] -Bank of,['France'] -not talk,['about'] -his home,['there'] -relieve his,['pain'] -a task,['What'] -should do,|['business', 'so', 'in', 'and', 'said', 'take', 'is', 'Your']| -his calling,['with'] -He held,|['out', 'in']| -went at,['great'] -black hair,|['a', 'the']| -precious to,['her'] -grew upon,['him'] -|so, it|,['is'] -touch you,['said'] -seated by,['the'] -oscillated backward,['and'] -sake let,['us'] -rumble of,['wheels'] -asking me,['to'] -handsome and,['dashing'] -merely because,['my'] -notes When,['I'] -butler and,['the'] -man a man,['who'] -the angle,['of'] -steps forward,['and'] -can't lie,['in'] -clothes much,['for'] -matter. Coroner:,['Did'] -his princess,['Now'] -frayed top-hat,['and'] -exalted circles,['in'] -to lodge,['in'] -flushed cheeks,['and'] -come only,['three'] -invent We,['would'] -coat's sinking,['He'] -whistle but,['the'] -troubled to,['replace'] -yourself out,['of'] -my wedding,['Mr'] -flung it,['across'] -dead man's,|['watch', 'lap']| -first who,['have'] -missing blackguard!',['I'] -own complete,['happiness'] -One was,|['buttoned', 'an', 'the']| -ash of,['a'] -by exceptional,['strength'] -|verrons," answered|,['Holmes'] -over upon,['its'] -the lock,|['made', 'and', 'said', 'I', 'key', 'opened', 'but']| -time in,|['the', 'silence', 'begging', 'Pentonville', 'staring', 'this']| -time is,|['seared', 'that', 'of']| -time it,['seemed'] -the sky,|['I', 'and']| -dress again,['I'] -man rising,['and'] -we shall,|['soon', 'have', 'be', 'take', 'reach', 'see', 'leave', 'ever', 'not', 'just', 'both', 'order', 'call', 'now', 'walk', 'investigate', 'go', 'find', 'no']| -up should,['wish'] -your geese,|['said', 'he']| -appeared a,['white'] -so it's,['time'] -read peeping,['over'] -good one,['and'] -more chivalrous,['view'] -wind-swept market-place,['said'] -only been,|['here', 'freed', 'in', 'to']| -some lodgings,['he'] -tide might,['afford'] -and across,['the'] -fear and,|['astonishment', 'nervous', 'anger', 'the', 'peeped', 'there']| -now!" she,['cried'] -to quote,["Thoreau's"] -bounds what,['is'] -cunning man,['We'] -of intense,['emotion'] -moment from,['his'] -Stark went,['up'] -pushed forward,['for'] -K K.,|['said', 'and']| -we must,|['be', 'go', 'stretch', 'put', 'choose', 'set', 'try', 'have', 'make', 'leave']| -him motion,['like'] -the diggings,|['I', 'Black']| -already had,['experience'] -McCarthy's narrative,['which'] -stared from,['one'] -something noble,['in'] -examined each,['and'] -slowly jerkily,['but'] -vanished immediately,['but'] -inquest on,['Tuesday'] -conceive the,['things'] -are hungry,['I'] -the single,|['lurid', 'gentleman']| -even persuaded,['him'] -full of,|['forebodings', 'a', 'the', 'books', 'papers']| -six weeks,|['I', 'was']| -pain to,['any'] -bright blazing,['fiery'] -hurts my,['pride'] -coach-house I,['walked'] -I who,|['knew', 'have']| -not feel,['easy'] -seems to,|['me', 'indicate', 'be', 'slip', 'have']| -bigger the,['crime'] -is wanted,['by'] -determine He,['squatted'] -hardly believe,|['that', 'my']| -an ulster,|['who', 'and']| -side gate,['to'] -met as,['I'] -notes he,['said'] -not You,['are'] -You would,|['certainly', 'have']| -quick subtle,['methods'] -he retired,['to'] -our whims,['so'] -man worked,['Having'] -them sir.,['But'] -into their,|['heads', 'hands']| -for weeks,|['on', 'When']| -delighted to,|['hear', 'see']| -test if,['we'] -you or,|['repay', 'to', 'the', 'have']| -fresh from,|['a', 'the']| -started It,['was'] -windows and,['doors'] -cannot risk,['the'] -a provision,['that'] -habits and,|['perhaps', 'exchange']| -for them,|['for', 'would']| -father as,['I'] -the strong,['Indian'] -1878 after,['he'] -his case,|['of', 'has', 'It']| -for they,|['can', 'were', 'had']| -settled upon,['the'] -down holes,['than'] -the father's,|['feet', 'laughter']| -our respect,['She'] -better first,['to'] -Chance has,['put'] -him back,|['into', 'to', "Fritz!'", 'again']| -be liberated,['have'] -sombre errand,['was'] -this Men,['who'] -could invent,|['We', 'nothing']| -which you,|['may', 'have', 'will', 'can', 'made', 'and', 'could', 'are', 'seem', 'found', 'might', 'supplied', 'put', 'would', 'were', 'need', 'used', 'desire', 'think']| -longer without,['some'] -robbery that,['have'] -|so now,|,['in'] -in ignorance,['of'] -key upon,['her'] -discuss my,|['results', 'most']| -the chairman,['of'] -could make,|['such', 'of', 'out', 'your', 'nothing']| -Finns and,['Germans'] -London we,['were'] -cried he,['has'] -From amid,['the'] -defray whatever,['expenses'] -reasoning power,['would'] -the doctor,|["won't", 'kept', 'has', 'affected', 'met', 'was', 'bandaged']| -her fate,['It'] -rat-faced fellow,['standing'] -into town,|['as', 'rather', 'to-day', 'this']| -enterprise and,['originality'] -another room,['when'] -has every,['requirement'] -handle but,['it'] -thousand five,['hundred'] -pass We,['waited'] -caused the,|['arrest', 'original', 'disturbance']| -exalted names,['in'] -of geniality,['which'] -for assistance,['I'] -a British,['peeress.'] -she does,|['not', 'why']| -at Lord,["Backwater's"] -any mischief,['I'] -important I,['can'] -lived and,['take'] -but energy,['can'] -of nitrate,['of'] -gentleman himself,['I'] -cannot guard,['yourself'] -secure tying,['up'] -then made,['my'] -Juryman: Did,['you'] -stage and,['finally'] -enthusiasm Now,['lead'] -voice that,['the'] -red glow,['of'] -nobody can,['find'] -to-night by,['the'] -as Sir,['George'] -hubbub of,['the'] -town But,['I'] -come round,['to'] -way He,['could'] -resided with,['him'] -boiling passion,['How'] -or that,['they'] -hopeless by,['the'] -is just,|['my', 'as', 'before', 'possible', 'a']| -is important,|['at', 'And', 'also']| -prominence not,['so'] -The letter,['which'] -bottle of,['ink'] -so Let,['me'] -|this me,|,['I'] -examination through,['the'] -week between,['cocaine'] -a shriek,['of'] -the society's,['warning'] -See here,['He'] -homely as,['it'] -assistance either,['to'] -point upon,|['which', 'it']| -Horner up,['to'] -have lost,|['four', 'nothing', 'my', 'a']| -impression upon,|['the', 'me']| -only that,|['but', 'this', 'I']| -dead Then,['Lord'] -agricultural having,['a'] -Scotia and,['took'] -happened since,['gives'] -Jewel Robbery,['John'] -up They,['were'] -more implacable,['spirits'] -astir for,['I'] -remark appear,['to'] -spring day,['a'] -instead of,|['theories', 'my', 'being', 'quietly', 'ruby', 'confining']| -His dress,['was'] -seen his,|['son', 'face']| -of battle,['and'] -a bell-pull,|['there', 'I']| -registers and,['files'] -niece and,['the'] -upper ones,['empty'] -verdict of,|['wilful', 'suicide.', 'death']| -last place,['with'] -tremor of,['his'] -not offered,['a'] -suggests the,['idea'] -the fat,['manager'] -had faced,['round'] -fear had,['begun'] -the ash,|['of', 'I']| -tapping his,['fingers'] -be adhesive,['and'] -everything which,['you'] -think he,|['answered', 'is']| -civilisation like,['untamed'] -clever but,['I'] -a complete,['change'] -off paid,['our'] -of poison,['which'] -the flames,|['under', 'but']| -hand Have,['you'] -for people,['in'] -doctor kept,['a'] -I felt,|['quite', 'that', 'a', 'however', 'the', 'easier', 'all', 'when', 'as']| -pretended journeys,['to'] -you need,['tell'] -position He,['never'] -bare throat,['he'] -it's town,['bred'] -story to,|['the', 'which']| -upset by,['the'] -probable And,['now'] -morning it,['is'] -none more,['fantastic'] -regretted having,['ever'] -street The,['driver'] -their mission,['You'] -were town,['bred'] -bright and,['cloudless'] -the extracts,['in'] -you suggest,|['got', 'no']| -black against,['him'] -Cosmopolitan Jewel,['Robbery'] -did wish,['us'] -silent pale-faced,['woman'] -Saturday and,['I'] -yet be,|['ignorant', 'safe']| -stuffs all,['the'] -It took,['all'] -bedroom which,['looked'] -I hurried,['to'] -not over-clean,['black'] -no sign,['of'] -whoever might,['cross'] -to water,['for'] -the card,['upon'] -woman's dress,['She'] -plain as,['a'] -me tapped,['his'] -been locked,['in'] -brought there,['to'] -amusement and,['he'] -the farthest,['east'] -with whiskers,['of'] -marriage between,['us'] -with human,['nature.'] -noblest most,['exalted'] -it even,['to'] -precious so,['if'] -minutes Holmes,['more'] -been his,|['son', 'friend']| -crawl down,['the'] -ceiling of,['this'] -your medical,|['views', 'experience']| -differently this,['terrible'] -decorated toe-cap,['and'] -listened to,|['all', 'for', 'Perhaps', 'in', 'his', 'a', 'my', 'You']| -wayward and,['to'] -the docks,['breathing'] -insinuating whisper,['and'] -that stood,['your'] -is perceive,['also'] -Windibank did,['not'] -a careful,['examination'] -building was,['of'] -a fact,|['gentlemen', 'that']| -second one,['which'] -I can,|['reward', 'wait', 'deduce', 'make', 'go', 'quite', 'only', 'do', 'often', 'never', 'thoroughly', 'at', 'assure', 'you', 'afterwards', 'understand', 'see', 'be', 'get', 'very', 'discuss', 'hardly', 'stand', 'read', 'imagine', 'give', 'find', 'think', 'is,', 'serve', 'to']| -opened into,['this'] -occurred two,['McCarthys'] -royal houses,['of'] -have this,|['put', 'money', 'matter']| -might at,|['first', 'any']| -first consideration,['is'] -one chuckled,['the'] -of throwing,['it'] -of marines,['to'] -certainly presents,['some'] -him This,['may'] -Doran Two,['days'] -June 89 there,['came'] -have four,['million'] -his shiny,|['top-hat', 'seedy']| -claim We,['were'] -safe were,['the'] -form an,['opinion'] -no reason,|['why', 'therefore']| -wife's friends,['no;'] -being lighted,['as'] -taking in,['every'] -civilised land,['here'] -Holmes a grievous,['disappointment'] -Gustave Flaubert,['wrote'] -Morcar's blue,['carbuncle'] -in without,['you'] -a vice,['upon'] -a practical,|['test', 'man']| -much with,["one's"] -him mine,['but'] -against this,['extraordinary'] -bitter sneer,['upon'] -will run,['to'] -open another,['door'] -confused and,['grotesque'] -father did,['not'] -say that,|['it', 'The', 'if', 'once', 'a', 'she', 'I', 'he', 'the', 'all', 'you', 'Perhaps', 'we', 'my', 'away', 'there', 'But']| -title of,['the'] -hands with,|['us', 'a']| -little fancy,['of'] -out came,['my'] -Street at,|['ten', 'no']| -get near,['the'] -a chase,['All'] -clerks are,['sometimes'] -squatted down,['in'] -returning home,['Obviously'] -hum Prima,['donna'] -and lit,|['up', 'the']| -to anything,|['that', 'without']| -Hosmer He,['shall'] -He never,|['spoke', 'did']| -slip away,['There'] -OF THE,|['BLUE', 'SPECKLED', "ENGINEER'S", 'NOBLE', 'BERYL', 'COPPER']| -bullion might,['be'] -said It,['is'] -were about,['to'] -you rifled,['the'] -almost too,['good'] -aside until,['night'] -a trick,['in'] -upon Scotland,['Yard'] -sir It,['is'] -skirt of,['my'] -buzz of,['a'] -not treat,['of'] -England and,|["there's", 'the']| -curving wings,['like'] -train for,['Leatherhead'] -temples with,['passion'] -toy which,['he'] -the chemical,['work'] -however it,['became'] -should not,|['do', 'wish', 'have', 'think', 'rain', 'venture', 'tell', 'stay', 'be', 'dream', 'mine', 'accept', 'ask']| -should now,['come'] -keep on,['piling'] -next Monday,['then'] -passed slowly,['away'] -of you,|['we', 'from', 'to', 'Holmes', 'and', 'Mr', 'might', 'is', 'before', 'speak', 'I', 'any', 'We', 'both', 'if']| -a pink,['flush'] -|end becomes,|,['then'] -she comes,|['she', 'in']| -however in,['the'] -circumstances and,['yet'] -of mastery,['I'] -manner was,|['not', 'brisk']| -was highly,['intellectual'] -angry that,['you'] -light ladder,['against'] -their eccentricity,['Very'] -sometimes And,['what'] -always a,|['policeman', 'joy']| -lived a,['few'] -entered to,|['announce', 'say']| -have scored,['over'] -holder The,['tip'] -and patient,['she'] -flung open,['the'] -some definite,|['result', 'business']| -very nice,['and'] -those words,['they'] -which do,['not'] -how came,['the'] -a gallows,['The'] -muttered some,['words'] -Louisiana the,['Carolinas'] -at bank,['robbery'] -blood-stains upon,['his'] -heel marks,['while'] -Posted to-day,['in'] -a pikestaff,['and'] -limbs were,|['weary', 'dreadfully']| -3rd that,['is'] -relentless persecution,['papers'] -those birds,['that'] -air of,|['a', 'the', 'being', 'dignity', 'mastery', 'geniality']| -is also,|['true', 'quite', 'discreet', 'a', 'my']| -had adopted,['a'] -been that,['Lady'] -his filial,['duty'] -a passing,['light'] -who had,|['been', 'written', 'rushed', 'stepped', 'watched', 'hurried', 'a', 'the', 'known', 'done', 'only', 'charge', 'shown', 'no', 'had', 'risen', 'at', 'crossed', 'fortunately', 'caused', 'already', 'brought', 'stood', 'them', 'any']| -dressing-room door,['I'] -Eyford three,['hours'] -old trunks,['and'] -reaches for,['her'] -strode off,['upon'] -Holmes left,|['me', 'us']| -more hurry,['back'] -think from,['the'] -a trivial,['example'] -confine yourself,['to'] -who has,|['very', 'dropped', 'made', 'done', 'thoroughly', 'been', 'satisfied', 'worn', 'a', 'shown', 'carried', 'had', 'gone', 'evidently']| -How do,|['I', 'you']| -a twig,['You'] -our windows,['while'] -fact seemed,['to'] -the rack,|['Watson', 'the', 'you']| -wig Even,['a'] -claret importers,['of'] -three caltrops,['in'] -the race,['said'] -was succeeded,['by'] -wisely said,|['Holmes', 'my']| -was concluded,['he'] -lane which,|['runs', 'led']| -night Mr,['St'] -away but,['Arthur'] -record that,['severe'] -Hotel at,['Winchester'] -my pride,|['Watson', 'It', 'and', 'so']| -passed to,['raise'] -undated and,['without'] -moment now,['is'] -seconds sufficed,['to'] -Same old,['platform'] -ne ADLER,['a'] -great cases,['are'] -affair which,['at'] -passed his,|['tongue', 'hand', 'pew', 'handkerchief']| -his client,|['gave', 'his', 'paused']| -see an,['advertisement'] -blind He,['was'] -manager said,['the'] -chagrin and,|['surprise', 'discontent']| -very serious,|['one', 'indeed', 'case', 'extent', 'accident']| -the Atlantic,|['a', 'An']| -limbs and,['then'] -the house-maid,['for'] -within ten,['seconds'] -advertisement Mr,['Wilson'] -see at,['a'] -the assured,['and'] -you quite,['invaluable'] -Ross took,['to'] -I finish,["you'll"] -a false,|['position', 'alarm']| -be solved what,['Neville'] -house managed,['to'] -than twenty,['I'] -saw with,['delight'] -the bushes,['as'] -she went,|['on', 'to', 'straight']| -weighing upon,['his'] -had discovered,['him'] -for Alice,|['son,']| -plenty Then,['there'] -Alice as,['I'] -colleague Dr,['Watson'] -too was,|['the', 'never']| -to gain,['the'] -looking defiantly,['at'] -naturally observant,['as'] -her chamber,['for'] -firm but,['we'] -have long,['ceased'] -dashed up,['through'] -powerful magnifying,['lens'] -usually kept,['in'] -struck her,['quick'] -which but,['I'] -go now,['Doctor'] -horrible cry,['to'] -right to,|['make', 'look', 'charge']| -things which,|['are', 'I', 'met']| -to protect,['the'] -good enough,|['to', 'Mr']| -short a,['time'] -worn He,['walked'] -candid Can,['you'] -all proves,['nothing'] -the sake,['of'] -from perhaps from,['the'] -although it,['was'] -He knew,['he'] -perform one,['more'] -face protruded,['with'] -set matters,['right'] -a one,['as'] -father Did,['you'] -putting his,|['fingertips', 'finger', 'lens']| -the island,['of'] -purposes how,['is'] -a short,|['walk', 'time', 'thick', 'greeting']| -hand type,['leaves'] -alone in,|['lodgings', 'London.', 'the']| -meant I,['returned'] -latter was,['your'] -ring it,['is'] -hand So,['tall'] -recoil upon,['the'] -drunken feet,['and'] -The man's,|['business', 'face']| -we stepped,['from'] -probed to,['the'] -through which,|['streamed', 'we', 'he', 'a', 'she']| -watching the,|['habits', 'huge']| -and visit,['us'] -I stop,['the'] -all laid,['before'] -done in,|['an', 'the', 'China']| -fearless in,['carrying'] -both of,['us'] -why could,['he'] -you. He,['rose'] -our disposal,['and'] -won't allow,['it'] -very clearly,|['You', 'perceive', 'and', 'how']| -both or,['none'] -their hearts,['I'] -done it,|['for', 'made', 'said', 'and', 'who?', 'I']| -unhealthy blotches,['I'] -not what,['has'] -which tend,['to'] -a woodcock,['I'] -bizarre But,['here" I'] -he a,|['very', 'man']| -sundial? he,['asked'] -as swift,['as'] -walking in,['this'] -beforehand so,['that'] -his giant,['frame'] -of Uffa,['and'] -secrecy was,['made'] -then settled,['down'] -platform In,['spite'] -estate which,['chanced'] -most certainly,|['do', 'repay']| -the supper,['then'] -this might,['be'] -he I,|['thought', 'forgot', 'have', 'daresay', 'am', 'could', 'will', 'trust', 'shall', 'can', 'think']| -the tree,['as'] -develop his,['pictures'] -mews in,['a'] -twentieth of,['March'] -region within,['fifty'] -the family,|['and', 'ruin', 'estate', 'resided', 'has', 'of']| -my gravity,['With'] -a shelf,['with'] -me this,['morning'] -example and,['slipping'] -From north,['south'] -then had,|['Having', 'gone']| -uncarpeted which,['turned'] -the aperture,|['drew', 'His', 'the']| -cravats about,['our'] -lies my,['mtier'] -January and,['February'] -You shave,['every'] -me seemed,['to'] -adventures of,['the'] -watched the,|['scuffle', 'blue', 'fellow']| -at every,|['turn', 'chink']| -just had,['time'] -asked How,['did'] -blue carbuncle,|['I', 'James', 'which']| -disappointed man,['Dr.'] -return and,['to'] -sideways that,['my'] -fourteenth a,['gentleman'] -the clergyman,|['beamed', 'absolutely', 'were']| -it cruel,['think'] -devil incarnate,['I'] -|me, I|,['know'] -into nose,['and'] -Holmes' fears,['came'] -Bow Street,|['Sherlock', 'cells']| -first Saturday,['night'] -myself regular,['in'] -I ended,['by'] -now wish,['you'] -March 1869,['and'] -early though,['we'] -perspired very,['freely'] -way back,|['to', 'and']| -matter Are,['you'] -of chaff,['which'] -rejected come!',['she'] -many in,|['the', 'London']| -Red-headed Men?,['he'] -Mary was,['the'] -soon have,|['some', 'to', 'the']| -the dress,['is'] -good people,['were'] -rooms we,['drove'] -a pocket,['In'] -struggle between,['them'] -violence no,['footmarks'] -likely not,|['However', 'It']| -having come,['for'] -a kettle,['The'] -prospect that,['the'] -be met,['speciously'] -next I,|['heard', 'went']| -house was,|['just', 'none', 'astir', 'silvered']| -of Stoke,['Moran'] -pacing up,['and'] -the meddler,['friend'] -thumb were,['printed'] -became as,['to'] -at 2,['pounds'] -France the,['suspicion'] -But Cooee,['is'] -to twist,['facts'] -entered her,['mind'] -into Eyford,['Station'] -a two-edged,['thing'] -good turn,['Then'] -or conceit,['said'] -broken so,['a'] -hardly be,|['exaggerated', 'worth', 'in', 'expected', 'open', 'less']| -their habits,['and'] -her knees,['seemed'] -to Reading,['in'] -a cushion,['but'] -never see,|['any', 'them']| -my self-control,['to'] -smiling father,['as'] -go wrong,|['man', 'again', 'he']| -know nothing,|['further', 'about', 'of']| -rule bald,['enough'] -at a,|['quarter', 'better', 'disadvantage', "moment's", 'remarkable', 'shilling', "woman's", 'disguise', 'boarding-school', 'registry', 'glance', 'higher', 'small', 'moment', 'case', 'loss', 'little', 'radius', 'Fashionable', 'right', 'wayside', 'side', "friend's"]| -husband you,['found'] -can see,|['for', 'him', 'a', 'nothing', 'everything', 'deeply', 'now']| -novel about,['some'] -clearing up,|['those', 'of', 'some', 'the']| -man I,|['presume', 'went', 'know', 'met', 'was', 'should']| -someone at,['the'] -a lonely,['and'] -face After,['an'] -every case,['there'] -|14,000 pounds|,['which'] -a quill-pen,['and'] -can set,['it'] -saying I,['only'] -for Then,['when'] -some unforeseen,['catastrophe'] -Adler is,['married'] -and bonnet,['and'] -a single,|['flaming', 'branch', 'lady', 'room', 'fact', 'bone', 'bright', 'half-column', 'sleepy', 'article', 'child?']| -thing is,['the'] -are is,['a'] -enter into,['my'] -out beautifully,['I'] -theirs is,['already'] -thing in,|['the', 'it']| -many have,['aspired'] -make our,['way'] -so frightened!,['I'] -man a,['fee'] -was ready,['in'] -Beeches It,['is'] -hangs over,['the'] -could feel,['its'] -Men? he,['asked'] -at Lestrade,['You'] -a mass,['of'] -creditor asked,['for'] -hotel bill,['which'] -formidable he,['said'] -come up,|['from', 'to']| -a mask,|['is', 'to']| -heard I,['had'] -the service,['and'] -my brother,|['your', 'died']| -sir was,['an'] -to our,|['luncheon', 'hotel', 'visitor', 'advertisement', 'happiness', 'investigation', 'plans', 'hearts', 'little', 'hydraulic']| -powers of,|['observation', 'reasoning']| -showing his,['face'] -it game's,['up'] -cab I,['have'] -drawn catlike,['whine'] -with mud,['in'] -over for,|['a', 'this', 'goodness']| -heard a,|['heavy', 'cry', 'hideous', 'low', 'metallic', 'gentle', 'muttered', 'sound', 'ring', 'soft']| -of yellow,['light'] -reply Swiftly,['and'] -useful to,|['him', 'me']| -you warmly,['rose'] -give my,['fortune'] -there first,['I'] -leave it,|['to', 'more', 'here', 'with', 'a', 'in']| -deep game,['I'] -encourage visitors,['client'] -many noble,['families'] -it becomes,|['positively', 'Still']| -an ending,['while'] -bore unmistakable,['signs'] -tooth-brush are,['I'] -Clair then,['it'] -husband's trouble,['to'] -leave in,['our'] -she shot,|['out', 'a']| -remove the,|['roofs', 'pressing']| -like that.,['did'] -reward I,['fancy'] -deceased had,|['gone', 'been']| -effect of,|['making', 'removing', 'calling', 'the', 'causing']| -midnight of,['the'] -no news,['of'] -and rubbed,['his'] -issues that,['may'] -sample of,|['it', 'the']| -Majesty has,|['indeed', 'something']| -He opened,|['the', 'a', 'his']| -Lane she,['suddenly'] -so expensive,['a'] -the veil,['from'] -from Waterloo,|['is', 'Station']| -the sundial.,['have'] -has sworn,['to'] -lined it,['upon'] -produce her,['letters'] -tidy business,['behind'] -her tresses,['The'] -this trifling,['cause'] -knee Here,['it'] -our intimacy,['there'] -indeed said,['my'] -murder is,['ever'] -pull at,['the'] -side there,['is'] -your Highness,['to'] -saw her,|['in', 'return', 'stealthily']| -interest every,['quarter'] -my armchair,['and'] -fait accompli,['really'] -ignorance of,|['the', 'German']| -in attempting,['to'] -chalk-pit unfenced,['the'] -Smack smack,['smack'] -woman was,|['the', 'standing']| -chamber and,['was'] -old hat "but,['there'] -slippers before,['we'] -days Does,['that'] -the matter,|['will', 'implicates', 'was', 'to', 'He', 'in', 'I', 'becomes', 'all', 'aside', 'is', 'again', 'rest', 'One', 'though', 'should', 'until', 'is,', 'but', 'before', 'Mr', 'out', 'The', 'stands', 'up', 'here', 'Are', 'and', 'name', 'As', 'even', 'replied', 'small', 'It', 'shortly', 'at', 'This', 'struck', 'she', 'think', 'first', 'Lady', 'Lord', 'with', 'now', 'said', 'must', 'drop', 'between', 'And', 'quiet', 'away', 'then', 'fairly']| -name among,['the'] -himself into,['a'] -horrible man,['confessed'] -reasoning by,['which'] -in bewilderment,['at'] -postpone it,['as'] -of wooden,['chairs'] -ran a,|['deadly', 'lane']| -by an,|['American', 'alliance', 'inspection']| -myself Kindly,['tell'] -so now,['if'] -and well,['I'] -the observer excellent,['for'] -agency and,|['have', 'inquire']| -rude meal,['into'] -quietly we,['will'] -you heard,|['anything', 'nothing']| -not mine,['be'] -Merryweather gloomily,['may'] -imprudently wished,['you'] -fear for,['her'] -of public,['opinion'] -Hunter have,['my'] -face so,['grim'] -poor Horner,['in'] -vestige of,['colour'] -is presumably,['heiress'] -John Hare,['alone'] -Fairbank the,['modest'] -hands But,['now'] -a customary,['contraction'] -and met,['there'] -been men,['of'] -have trained,['myself'] -true The,['gentleman'] -yawning Alas,['I'] -forbidding her,['to'] -like fear,['sprang'] -and chimney,['are'] -the solution,['of'] -anyone Here,['we'] -running footfalls,['from'] -well upon,['our'] -colonel fumbled,['about'] -with Horner,['some'] -police have,|['watched', 'caused', 'openly']| -yesterday which,['I'] -near as,['much'] -near at,['hand'] -precious a,['thing'] -any signs,['of'] -body was,['eventually'] -self-restraint and,['firmness'] -to Odessa,['in'] -down talking,['excitedly'] -heard as,['if'] -pips I,['do'] -the lady's,|['purse', 'jewel-case']| -quarters Twelve,['struck'] -perhaps When,['I'] -paper at,['all'] -our children,['from'] -much like,['to'] -paper as,['directed'] -a perfectly,|['overpowering', 'trivial']| -surprise threw,['up'] -face freckled,['like'] -likely On,['the'] -for Leatherhead,['where'] -had hurried,|['up', 'by', 'forward']| -London Road,['A'] -the hardihood,['to'] -dispel any,['doubts'] -moonlight night,['and'] -own brother,["didn't"] -recall when,['I'] -present Doctor as,['no'] -pass I,['say!'] -less you,['must'] -Dundee If,['they'] -say what,|['it', 'turn']| -whistle from,['the'] -go there,['first'] -snuffbox of,['old'] -immensely will,['do'] -only quote,['this'] -named Norton,['she'] -lens that,['the'] -near the,|['window', 'elbow', 'City', 'corner', 'nail', 'Museum we', 'borders', 'margin', 'Rockies', 'kitchen']| -minutes before,|['we', 'I']| -little time,|['for', 'to', 'but', 'ago', 'after']| -beautiful face,['I'] -nocturnal whistles,['and'] -know for,['example'] -his coat-tails,['are'] -going to,|['do', 'a', 'fight', 'take', 'be', 'Stoke', 'Eyford']| -Cobb the,['groom'] -Saturday's Chronicle,['said'] -geese to?,['and'] -shutters of,['your'] -the cake,['I'] -whose disgust,['is'] -pockets cannot,['imagine'] -a trap,|['it', 'at']| -no wonder,['that'] -I can't,|['imagine', 'sleep', 'say', 'get', 'make']| -to draw,|['back', 'out', 'him', 'up']| -got in,['How'] -beasts in,['a'] -remaining where,['I'] -sleep easy,['at'] -Walk past,['me'] -on year,['in'] -way for,|['the', 'a', 'it', 'some']| -on so,['so'] -the air,|['of', 'when', 'Incredible', 'did', 'I', 'in', 'was', 'You', 'like', 'which']| -watch from,['his'] -banker made,['out'] -tools with,['me'] -in another,|['was', 'and', 'of']| -Winchester DEAR,['MISS'] -his old,['books'] -hands on,['the'] -a registry,['office'] -hands of,|['trustees', 'fortune', 'justice', 'our', 'the']| -in little,|['better', 'matters']| -he breathed,['his'] -interesting And,['on'] -the back,|['but', 'It', 'of', 'hung', 'yard', 'door']| -excuse this,['mask'] -got if,['he'] -With a,|['nod', 'rending', "boy's", 'comical', 'stout', 'short', 'few']| -gentlemen of,['all'] -own roof,['than'] -faithfully ,[''] -are nearly,['always'] -which covered,['his'] -they separated,['he'] -than never,['to'] -crackling voice,['see--her'] -man We,['can'] -left the,|['house', 'two', 'breakfast-table', 'country', 'bird', 'room']| -you engaged,['to'] -a gas-jet,['Are'] -scattered papers,['and'] -announced the,['place'] -is sent,['the'] -could trace,['it'] -however the,['bumping'] -Monday Mr,['Neville'] -the difference,['between'] -its centre,['you'] -five I,|['think', 'fancy']| -windows with,['the'] -frock-coat faced,['with'] -the lawyer,|['arrived', 'took']| -and files,['of'] -finds himself,|['master', 'in']| -Australian cry,['and'] -your husband's,|['writing', 'hand']| -it since,['it'] -very possibly,['in'] -and smooth-skinned,['rubbing'] -creeping up,['to'] -been told,|['that', 'more']| -who runs,['it'] -renewed your,['acquaintance'] -|everything least,'|,['said'] -as possible at,['least'] -not aware,['in'] -ordinary one,['of'] -had stood,|['behind', 'sullenly', 'and']| -until this,['morning'] -Meredith if,['you'] -in Victoria,|['In', 'Street']| -part At,['the'] -Inspector Bradstreet,|['would', 'and', 'B', 'of']| -its light,['I'] -done Come,['this'] -us who,['frequent'] -that breakfast-table,['and'] -visitor glanced,['with'] -propagation and,['spread'] -know cut,['off'] -figure swaying,['to'] -she do,|['And', 'on']| -court than,['the'] -it's a,|['question', 'dummy', 'wicked', 'very']| -objections which,['had'] -grounds round,['it'] -how they,|['are', 'could', 'should']| -have missed,|['everything', 'it']| -barmaid wife,['that'] -other way,['perhaps'] -still refused,['to'] -other was,|['a', 'away', 'William', 'his', 'deep', 'so']| -been hacked,['or'] -sister's house,['She'] -You'll do,['Come'] -was too,|['good', 'crowded', 'much', 'shaken', 'far', 'trivial', 'late', 'hardened']| -ejected by,['the'] -in Bohemia,['I'] -effects There,['he'] -positions These,['are'] -obvious facts,|['that', 'which']| -escape every,['night'] -in excellent,['spirits'] -matters that,['there'] -Oakshott and,['lived'] -some mystery,['and'] -was growing,['under'] -work It,['was'] -path but,['found'] -suddenly assumed,['a'] -through and,|['lay', 'was']| -eleven o'clock,|['to', 'she', 'I', 'the']| -his tooth,['or'] -the numbers,|['after', 'of']| -days There,['was'] -it I'll,['swear'] -a human,|['body', 'being']| -force if,['you'] -the high,|['wharves', 'thin']| -without finding,['anything'] -stage ha Living,['in'] -and patted,['him'] -absolute logical,['proof'] -been one,['She'] -hour's would,['be'] -had exceptional,['advantages'] -sinister German,['or'] -press in,['excavating'] -parsonage that,['cry'] -would be,|['a', 'as', 'the', 'millions', 'injustice', 'all', 'difficult', 'safer', 'chaffed', 'here', 'in', 'expected', 'of', 'terribly', 'well', 'best', 'safe', 'true', 'another', 'nothing', 'visible', 'fatal', 'necessary', 'nearer', 'no', 'to', 'good-bye', 'absurd', 'one', 'complete', 'an', 'at', 'invited', 'passed', 'repugnant', 'better', 'rather', 'caused', 'almost', 'impossible', 'unnecessary', 'for', 'kind', 'so']| -notorious in,['the'] -curious conditions,['the'] -behind That,['was'] -way over,['to'] -body? dozen,['yards'] -press it,['It'] -be absolutely,|['impossible', 'clear']| -see. Then,['at'] -linen and,['as'] -entailed upon,['me'] -a deposit,['of'] -be used,['in'] -towards us,|['in', 'doubt']| -Scandinavia Had,['he'] -inferences which,['are'] -so strange,['in'] -and pity,|['to', 'For']| -considering are,['they'] -find there,['Ah'] -mantelpiece He,['received'] -had only,|['just', 'known', 'lain', 'come', 'picked']| -our sombre,['errand'] -Turner who,['made'] -to Problems,['may'] -poison would,['take'] -Yet this,['emaciation'] -my arrival,|['and', 'at']| -do. so,['It'] -and put,|['his', 'forward', 'on', 'the']| -perplexed or,['grieved'] -a bloody,['deed'] -in 1887,['he'] -been tricked,['by'] -to catch,['the'] -gravel from,['a'] -five pillows,['and'] -I conduct,['the'] -us on,|['the', 'our']| -warm-hearted in,['her'] -were seldom,['trivial'] -stand behind,['this'] -can reward,['you'] -us of,|['her', 'a']| -eyes rested,['upon'] -One would,['think'] -been minutely,['examined'] -And into,['her'] -enough what,['was'] -ten seconds,['of'] -low tide,['but'] -draw your,['chair'] -never really,['became'] -And when,['he'] -checkmate them,['still'] -of opinion,['We'] -enclosure is,['perceive'] -Swiftly I,['threw'] -the stricken,['man'] -obligations to,['Turner'] -building of,['the'] -Moran The,|['events', 'money']| -injury as,['recorded'] -only just,|['left', 'for', 'returned', 'had', 'in', 'heard']| -risks I,['was'] -be degenerating,['into'] -secret said,['I'] -metropolis at,['this'] -protection in,['the'] -at either,|['end', 'side']| -whoever addressed,['the'] -you seem,['to'] -neighbourhood shrugged,['his'] -such absolute,['ruin'] -there may,|['be', 'prove']| -Hereford and,['see'] -reasons may,['be'] -division gave,['evidence'] -pips What,['could'] -still talk,['of'] -dream of,|['going', 'doing', 'trying', 'sacrificing']| -theft I,['answered'] -fashion said,['she'] -knew was,['in'] -like said,['she'] -my former,['friend'] -company is,['in'] -fur boa,['round'] -master the,['particulars'] -the company,|['has', 'of', 'once', 'is', 'On']| -fast I,["don't"] -quiet neighbourhood,['it'] -had diabetes,['for'] -the concert,['I'] -also he,['carefully'] -man's hat,['on'] -heard Clotilde,['Lothman'] -more quiet,['said'] -you see?,['He'] -were innocent,['why'] -we all,|['three', 'followed', 'very', 'rushed']| -offensive to,['you?'] -in and,|['as', 'planked', 'have', 'away', 'the', 'Holmes']| -had more,['than'] -height I,['know'] -in any,|['way', 'future', 'case', 'other', 'manner']| -|bowed, feeling|,['as'] -crime You,['allude'] -always so,|['interested', 'easy', 'exceedingly']| -He threw,|['over', 'himself']| -date you,['see'] -which stood,|['within', 'on']| -Mr Cocksure,['said'] -introducing you,['to-night'] -across your,['shoulders'] -my nails,['at'] -foolish enough,['to'] -the readers,['of'] -lost lead,['pencils'] -don't say,['that'] -important And,['what'] -nature while,['I'] -Holmes am,['no'] -Esq To,['be'] -trunk turned,['out'] -guinea if,['you'] -breakfast has,['completed'] -ten times,['over'] -fifty miles,|['an', 'of']| -quite secure,['and'] -overcome my,['pride'] -will await,['him'] -would also,['from'] -Holmes as,|['we', 'he', 'his', 'I', 'the', 'a']| -life may,['depend'] -pass along,['its'] -the valuable,['gem'] -the look,|['rather', 'which', 'of']| -devouring the,['commissionaire'] -biography sandwiched,['in'] -figured but,['rather'] -What an,['exposure'] -we waited,|['for', 'in']| -not said,|['the', 'he']| -a fess,['sable'] -the wearer,['perspired'] -was shaking,['his'] -closed and,|['his', 'fastened', 'across']| -Lestrade called,['for'] -your wife's,|['affection', 'friends']| -of mysteries,['and'] -former ways,['or'] -hurry on,['sometimes'] -Eyford to-night,['I'] -of gold,['with'] -so pitiful,['a'] -outweigh the,['love'] -love with,['her'] -forward stoop,['and'] -I extend,['to'] -beads sewn,['upon'] -the ebbing,['tide'] -you pain,['and'] -howling outside,['and'] -think was,['not'] -seen a,|['paper', 'better', 'lady']| -leave until,['I'] -once furnish,['information'] -go I,|['must', 'should']| -devoted some,|['little', 'attention']| -which throws,['up'] -pause during,['which'] -and took,|['the', 'a', 'his', 'out', 'us', 'professional', 'me', 'down']| -doctors examined,['her'] -be stained,['with'] -reached Leatherhead,['at'] -round and,|['discovered', 'I', 'the', 'round', 'up', 'examined', 'motion', 'wave', 'then']| -suffering from,['some'] -same crowded,['thoroughfare'] -some shopping,['proceeded'] -seen I,|['have', 'had']| -be innocent,|['will,']| -points Holmes,['desired'] -part as,['this'] -young women,['that'] -chairs into,['a'] -once that,|['the', 'there']| -was convinced,['from'] -a poison,['would'] -certainly that,['is'] -still It,['was'] -some slight,|['indication', 'difficulty']| -with anger,['and'] -deal summarily,['with'] -glided away,['to'] -brightest rift,['which'] -leaped back,['You'] -been presented,['to'] -shade This,['man'] -turn that,['up'] -solution during,['the'] -of writers,['could'] -of other,|['similar', 'mortals', 'matters']| -a bonny,['thing'] -not observe,['The'] -the season,|['He', 'of']| -womanhood had,['I'] -are improved,['by'] -the injured,['man'] -from week,['to'] -be discovered,|['or', 'and', 'by']| -like mine,['that'] -deduction When,['I'] -alliance which,['will'] -can discuss,['my'] -times I,['have'] -communication And,['yet'] -some geese,['which'] -out with,['his'] -wife as,|['an', 'it']| -the someone,['could'] -in uttering,['very'] -after my,|['return', 'night', 'marriage', 'arrival']| -thief Did,['I'] -father to,|['know', 'let']| -preceding night,['and'] -said Lord,['St'] -and discontent,['upon'] -clean-shaven young,['fellow'] -after me,['went'] -vacancy in,['the'] -ask about,['father'] -and hereditary,['King'] -of San,['Francisco'] -settling himself,['down'] -play then,['for'] -Dundee it,['was'] -return the,|['papers', 'hospitality']| -a certain,|['ball', 'amount', 'annual', 'horror']| -faced with,['silk'] -in many,|['of', 'ways']| -sent a,['chill'] -nodded his,['head'] -has entered,['it'] -following Holmes,|['in', 'example']| -presume indicated,['the'] -back train,['from'] -eyes once,['more'] -young she,['left'] -You just,['read'] -more interest,['than'] -not waste,['the'] -much individuality,['as'] -more disturbing,['than'] -victim He,['had'] -perfectly obvious,['from'] -initials is,['the'] -papers following,['the'] -these things,|['for', 'in', 'from']| -had of,['course'] -a tinge,['of'] -grip has,['been'] -most stale,['and'] -you screamed,['the'] -work The,['lamp'] -ring I,['asked'] -roared to-day.",['She'] -moves Fresh,['scandals'] -too heavy,['a'] -into. what,['is'] -father followed,['her'] -his lodgings,['at'] -his former,['ways'] -coroner's inquiry,['I'] -morning returning,['by'] -which gives,['the'] -sun and,|['marked', 'a']| -garden behind,['into'] -most excellent,['offers'] -scent and,['then'] -morning sunshine,['In'] -every mark,['of'] -upon five,['pillows'] -soon know,['which'] -was kneeling,['with'] -seemed funny,['that'] -offended By,['the'] -saw that,|['everyone', 'on', 'my', 'the', 'there', 'he', 'she', 'they', 'a']| -sufferer over,['whom'] -a look,|['at', 'of', 'on', 'aroused']| -strike his,['father'] -landlord who,['is'] -room and,|['out', 'I', 'closed', 'gave', 'that', 'bar', 'we', 'at', 'of', 'had', 'if', 'by', 'saw']| -Briony Lodge,|['Serpentine', 'It', 'once', 'or', 'and', 'to', 'waiting', 'As', 'Adler', 'was']| -proved to,['be'] -strike him,|['The', 'that']| -Send him,['to'] -he stuck,['to'] -a loop,['of'] -he even,|['knew', 'thinks', 'broke']| -of grizzled,['brown'] -plays at,['the'] -|out groaned,|,['for'] -the dropping,['of'] -the clothes,|['of', 'in', 'might', 'were']| -imagine there,['gipsies'] -received Be,['in'] -home but,['after'] -convincing you,['that'] -cut off,|['not', 'the', 'and', 'my', 'very', 'but']| -start for,['Winchester'] -blows of,|['some', 'my']| -the labyrinth,['of'] -led to,|['the', 'high', 'Boscombe', 'another']| -hours This,['business'] -along travelled,['by'] -actor I,['had'] -little pride,['and'] -discovering the,['robbery'] -back and,|['chins', 'an', 'aided', 'in', 'leave', 'something', 'saw', 'done']| -other unusually,['large'] -hands and,|['tugged', 'his', 'turned', 'quivering', 'all', 'stared', 'shall', 'looked']| -God my,|['God', 'sins']| -signed with,['her'] -Breckinridge upon,['it'] -jealously however,['and'] -them all,|['into', 'aside']| -the landing,['If'] -alarm If,['you'] -the bullion,['might'] -spend more,['money'] -axiom of,['mine'] -after being,['fully'] -screamed the,['old'] -your successes,['is'] -retiring and,['gentlemanly'] -and pushed,|['me', 'his']| -family circle,|['But', 'He']| -about such,['nonsense.'] -she extended,['to'] -her return,['by'] -client mind,['him'] -as unconcerned,['an'] -swift as,['intuitions'] -whispered the,['director'] -May we,['bring'] -Beeches having,['put'] -round her,|['neck', 'but']| -end he,|['had', 'would']| -some flaw,['Do'] -his profession,|['and', 'It', 'He', 'but']| -Come with,['me'] -great anxiety,['owe'] -photograph prisoner,['turned'] -one shaking,['finger'] -still confused,['and'] -attractions and,['accomplishments?'] -me Many,['people'] -anger and,['the'] -heard the,|['opening', 'sound', 'sharp', 'wheels', 'door', 'scuffle', 'rush', 'hoarse', 'creature', 'facts', 'slam', 'baying']| -Frank said,['that'] -either side,|['of', 'Sometimes', 'were', 'tapped', 'and']| -been referred,['to'] -all fastened,['this'] -details friend,['insisted'] -worked with,['it'] -that is,|['bizarre', 'very', 'strange', 'only', 'on', 'it', 'all', 'Mr', 'clear', 'undoubtedly', 'made', 'a', 'where', 'suggestive', 'the', 'absolutely', 'in', 'also', 'why', 'provided', 'her', 'quite', 'his']| -this singular,['series'] -admirably suited,['for'] -delirium A,['man'] -too shaken,['to'] -laying my,['cap'] -up have,['it'] -have informed,['the'] -his pile,['too'] -expenses King,['took'] -dull pain,['my'] -was missing,|['For', "blackguard!'"]| -that up,['in'] -un protruding,['out'] -glimmered in,['the'] -silent all,['the'] -the wind,|['cabby', 'had', 'cried', 'still', 'is', 'But']| -card but,['I'] -by calling,['him'] -town He,['had'] -metropolis but,['the'] -instantly with,['the'] -my mind,|['with', 'when', 'without', 'was', 'to', 'you', 'that', 'before', 'is', 'tended', 'ever', 'now', 'about', 'as']| -about ten,['minutes'] -heart and,['took'] -so outr,['as'] -are no,|['lengths', 'red-headed', 'hills', 'further', 'beryls']| -firm steps,['descending'] -3rd floor,['That'] -feeling At,['any'] -some warmth,['that'] -small bedroom,['which'] -anxiety in,['my'] -soon see,|['the', 'how']| -some way,|['dependent', 'be', 'and']| -to do,|['I', 'with', 'their', 'the', 'Then', 'of', 'then', 'to-day', 'which', 'so', 'anything', 'was', 'it', 'but', 'and', 'a', 'his', 'view', 'It', 'If', 'what', 'How', 'had', 'yourself', 'now', 'so.', 'is', 'Should', 'just', 'for', 'in']| -managed it,|['asked', 'He']| -yourself aware,['that'] -the franchise,['to'] -the reigning,|['family', 'families']| -my estate,['with'] -he hardly,['knows'] -remarked I,|['think', 'should', 'had']| -soon set,|['matters', 'it']| -peace no,['forgetfulness'] -Garden Market,['One'] -preliminary to,['starting'] -but tell,['me'] -not I,|['should', 'can', 'thought', 'alone', 'answered']| -de Vere,['St'] -figure huddled,['up'] -for west,['remarked'] -acute reasoner,['when'] -Now and,['then'] -in there!,['that?'] -bitter in,['me'] -animal moving,['about'] -And now and,['now'] -coat-sleeve was,['drenched'] -not a,|['soul', 'suspicion', 'pity', 'very', 'common', 'red-head', 'claim', 'bad', 'popular', 'cloud', 'dozen', 'clean', 'bird', 'moment', 'word', 'trace', 'photograph', 'beauty?']| -a scissors-grinder,['with'] -remarked a,['small'] -other consideration,['that'] -guessed Miss,["Hunter's"] -the Serpentine,|["heaven's", 'plays', 'They']| -make my,['own'] -and you,|['will', 'had', 'can', 'have', 'are', 'against', 'may', 'make', 'know', 'in', 'renewed']| -office my,['clerk'] -sympathy and,|['freemasonry', 'indignation']| -Assizes am,['glad'] -failing health,['for'] -League and,['the'] -a rush,|['of', 'a']| -quite close,['to'] -assembled round,['him'] -make me,|['swear', 'his', 'even', 'certain']| -magnificent piece,['of'] -PIPS I,['glance'] -lowest and,['vilest'] -a request,['that'] -relish for,['it'] -he braved,['the'] -garden looked,['in'] -assistants but,['now'] -them could,['be'] -quietly It,['was'] -shattered skull,['I'] -positive crime,['has'] -the speckled,['band'] -meant slang,['is'] -catch the,|['man', 'last', 'most']| -committed and,|['that', 'no']| -from one,|['to', 'whom', 'who']| -I told,|['you', 'her', 'my', 'Arthur', 'it', 'him']| -leaving you,['you'] -Lascar but,['this'] -It ran,|['in', 'if']| -has played,['in'] -a newly,|['opened', 'severed']| -do so?,['I'] -tower of,['the'] -me just,['run'] -of red,|['in', 'silk']| -standing rapt,['in'] -1883 His,['death'] -sight sent,['a'] -experience among,['employers'] -recall any,|['case', 'which']| -only geese,['in'] -keener pleasure,['than'] -and unclasping,['of'] -Coburg Square,|['near', 'is']| -settled he,['will'] -settled down,['once'] -radiance that,['it'] -set on,['going'] -|tell then,|,['do'] -of slums,['to'] -of simple,['cooking'] -he explained,|['his', 'in', 'that']| -treachery never,['for'] -night your,['rooms'] -with brown,['gaiters'] -no jest,|['in', 'Mr.']| -Your windows,['would'] -hurry shouted,['to'] -your strength,['with'] -gloves I,['am'] -I ought,['to'] -giving your,['address'] -photograph was,['of'] -mastery I,['felt'] -the imagination,|['proposition', 'of']| -curiosity and,['sympathy'] -Rucastles will,['be'] -represent at,['least'] -closed again,['behind'] -watched my,['friend'] -acquaintance so,['dearly'] -of endeavouring,['to'] -As evening,['drew'] -seldom came,['out'] -agent to,['be'] -closely from,['every'] -shall leave,|['all', 'it']| -man furtive,['and'] -were tinged,['with'] -and thoughtful,['look'] -through you,|['both', 'had']| -|then once,|,['some'] -the left,|['one', 'arm', 'side', 'of', 'parietal', 'half', 'that', 'but', 'ran']| -room For,['example'] -cure I,['shall'] -Peterson who,['as'] -Lestrade rising,['I'] -or night,['a'] -excited in,['the'] -for there,|['came', 'lies', 'was', 'is', 'are']| -trying said,['he'] -beautiful of,['women'] -remember in,['her'] -the grating,['The'] -it done,['He'] -Wilson you,['would'] -Affairs They,['inherit'] -day before,|['me', 'for', 'all', 'the', 'and', 'still']| -throws any,['light'] -motives and,['actions'] -ungovernable I,['left'] -better do,['as'] -lounged round,['the'] -to safeguard,['myself'] -making up,|['and', 'her']| -while her,['body'] -can give,['them'] -proceed my,['father'] -pit which,['he'] -Wilson Never,['was'] -up there,|['must', 'I', 'and', 'But']| -of doing,|['it', 'so']| -this Mrs,['Oakshott'] -of money,|['He', 'I', 'through', 'When']| -that could,|['have', 'answer']| -say no,['more'] -us have,|['ordered', 'a', 'it', 'everything']| -vague impression,['that'] -no inquiries,['on'] -closely I,['answered'] -patience there,['came'] -fashion over,['her'] -as being,|['the', 'terribly', 'a']| -house he,['beat'] -father It,['was'] -with naked,['feet'] -garden to,['the'] -no limit,['on'] -to-night we,['need'] -strangers having,['been'] -he roused,['himself'] -her jewel,['was'] -the thick,['blue'] -as though,|['the', 'his', 'to', 'it', 'asking', 'a', 'there', 'some']| -widow of,['Major-General'] -whose pleasant,['lot'] -derbies beg,['that'] -escape and,['you'] -good too good,['That'] -room without,['another'] -and filled,['with'] -finger was,['from'] -twisted lip,|['which', 'Well', 'and']| -is passing,['into'] -Pancras Hotel,['Hosmer'] -maid to,['the'] -terminated at,['another'] -thirty-seven years,['of'] -only as,['a'] -London street,['Looking'] -were planning,['for'] -headache when,['your'] -Lord Mr,['Wilson'] -suddenly remarked,['that'] -waylaid There,['has'] -weak health,['it'] -ago John,['Horner'] -been so,|['carried', 'plentiful', 'persistently', 'unfortunately', 'kind', 'I']| -as tenacious,['as'] -It might,|['be', 'or']| -whose husband,['you'] -my accompanying,['them'] -There must,|['have', 'be']| -impulse and,['I'] -lucky appearance,['saved'] -address May,['I'] -be well,|['that', 'Of']| -keenly interested,['as'] -have reasons,['to'] -I shall,|['drop', 'be', 'drive', 'want', 'call', 'keep', 'stand', 'expect', 'write', 'just', 'get', 'take', 'either', 'approach', 'use', 'reconsider', 'only', 'work', 'live', 'jot', 'not', 'certainly', 'set', 'seek', 'commence', 'have', 'go', 'fear', 'determine', 'continue', 'come', 'soon', 'order', 'never', 'return', 'look', 'walk', 'start', 'communicate', 'speedily', 'then', 'probably', 'now', 'meet']| -quietly off,['in'] -had earned,['it'] -the body,|['Under', 'had', 'But', 'was', 'be', 'of', 'would']| -me twopence,['a'] -country and,|['finally', 'eventually']| -possessed in,['so'] -admiration It,['is'] -of hearts,['do'] -little sharp,['The'] -can you,|['have', 'tell', 'gather', 'let', 'not']| -innocent You,['know'] -without revealing,['what'] -easily think,['that'] -day--it was,['in'] -that yet,['So'] -my work,|['at', 'as', 'during', 'evening']| -my word,|['Watson', 'that', 'it', 'for']| -consciousness anything,['so'] -were weary,['and'] -I with,['Mr'] -streaked with,['damp'] -There only,['remains'] -his visitor,|['with', 'be']| -at no,|['very', 'distance']| -narrow for,['anyone'] -someone and,['the'] -however as,['I'] -van That,['is'] -made Twice,['burglars'] -habit of,|['winding', 'standing', 'advancing', 'seeing']| -to Fairbank,['the'] -called upon,|['my', 'Scotland', 'to']| -God he,['cried'] -face set,['hard'] -on behind,['my'] -our visitors,['had'] -alone and,['so'] -fat goose,['which'] -I unlocked,['my'] -her abrupt,['method'] -somewhat vacuous,['face'] -incidents should,['be'] -head like,['a'] -was sober,['he'] -It proved,['to'] -look aroused,['my'] -a pea-jacket,['and'] -question provoked,['a'] -points upon,['which'] -himself round,['upon'] -asked are,['to'] -your secret,|['whether', 'lies']| -imply His,['eyes'] -meet him,|['at', 'here']| -meet his,['death'] -prove that,['it'] -court-yard from,['which'] -grounds very,['nicely'] -now think,['that'] -glossy you.,['I'] -several German,['books'] -laying down,|['the', 'his']| -he then,['and'] -departure to,['the'] -tied to,['the'] -threw himself,['down'] -mind dwell,['upon'] -Man or,['at'] -just walk,['in'] -from India,['I'] -the gloom,|['one', 'I', 'throwing', 'to', 'behind', 'you', 'and']| -happened in,['my'] -carriage-sweep with,['a'] -done nothing,['actionable'] -whose character,['has'] -go He,['never'] -varied cases,['however'] -nothing at,['all'] -building two,['days'] -though asking,['a'] -thirty pounds,['shall'] -DEAR MISS,['HUNTER: Miss'] -only all,['the'] -full facts,['have'] -against his,['emotion'] -a life-preserver,['from'] -colourless in,['mind'] -night a,['telegram'] -suggest that,['we'] -father whence,['it'] -and buried,['in'] -horses and,['received'] -had hoped,['suggested'] -top of,|['the', 'his', 'such', 'it', 'a']| -friend by,['sitting'] -girl is,['of'] -he And,|['now', 'pray']| -well-remembered door,['which'] -fire for,['a'] -Holland though,['the'] -night I,|['had', 'dressed', 'came', 'met']| -conscience THE,['ADVENTURE'] -better. She,['kept'] -the company's,['office'] -up entirely,['to'] -be called,['monotonous'] -dizziness and,['sickness'] -girl in,['every'] -the reckless,['air'] -adventures cases,['have'] -Yes 17,['King'] -fluttered off,['among'] -Then after,['we'] -light For,['a'] -only picked,['it'] -a passion,|['also', 'such']| -best of,|['my', 'his', 'training']| -this you,|['made', 'must']| -have traced,['her'] -own method,['and'] -his expedition,['had'] -not offended,['By'] -request for,['he'] -matter than,['anyone'] -train this,['morning'] -confectioner's man,['with'] -your dressing-room,|['opened', 'Petrified']| -A nice,['little'] -be caused,|['if', 'by']| -rather disconnected,['I'] -vital essence,['of'] -be precise,['as'] -other in,|['the', 'one']| -sad tragedy,['which'] -evening But,['now'] -animal lust,['for'] -a stout,['bearing'] -contrast between,['the'] -turn Then,['again'] -he stood,|['before', 'at', 'beside', 'there', 'hid']| -other is,|['to', 'a', 'there']| -for Mr,|['Henry', 'Breckinridge', 'and']| -every cause,['to'] -larger at,['present'] -the fuss,['that'] -the blundering,['of'] -bad taste,['Heavy'] -of large,['sums'] -Holmes gravely,|['would', 'I']| -your shutters,['Stoner'] -bowed and,|['turning', 'left']| -choose our,['positions'] -distinct than,['his'] -ink She,['had'] -last as,['he'] -danger How,['do'] -forgetfulness turn,['where'] -have lady,['could'] -It's about,['Isa'] -yet." you,['have'] -and forbidding,|['her', 'in']| -detour into,['the'] -our doubts,|['he', 'will']| -marrying within,['the'] -second double,['line'] -much said,['he'] -French gold,|['whispered', 'We']| -about four,["o'clock"] -camp and,['wandered'] -man when,['you'] -Retired from,['operatic'] -pipes I forget,['how'] -was hot,['upon'] -was how,['a'] -ransacked her,['house'] -Mr McCarthy,|['was', 'pass', 'and', 'the', 'came']| -so. Head,['attendant'] -When a,|['woman', 'doctor']| -Adler All,['emotions'] -and turning,|['away', 'the', 'to']| -severed human,['thumb'] -cried Mr,['Holder'] -from endeavouring,['to'] -one reaches,['for'] -tresses The,['man'] -live in,['Winchester'] -the dense,['darkness'] -When I,|['hear', 'had', 'cried', 'saw', 'rose', 'have', 'see', 'pay', 'came', 'passed', 'was', 'remembered']| -a fee,['which'] -glided from,['the'] -bureau made,['sure'] -no luck,['with'] -that Holmes,|['changed', 'was']| -and unprofitable,['yet'] -tricks with,['poor'] -man being,['somewhat'] -first called,['your'] -are attained,['have'] -House At,['dusk'] -other topic,['until'] -in Swandam,['Lane'] -therefore though,['her'] -this woman,|['had', 'She']| -limped he was,['lame'] -morning Peterson,['who'] -not sent,['it'] -walk with,['me'] -and must,['have'] -these cases but,['hullo'] -proved upon,['my'] -exciting For,['you'] -terrible occupant,['Having'] -conventionalities and,['foreseen'] -he Only,['two'] -Coburg branch,['of'] -woman's face,['Her'] -luxuries my,['two'] -who should,['be'] -made neither,['sound'] -of yourself,|['in', 'I']| -finding this,|['gentleman', 'lady']| -we both,|['burst', 'bent', 'rushed']| -this machine,['at'] -when some,['great'] -presume when,['I'] -fairly clear,|['The', 'and']| -be probed,['to'] -|SHERLOCK HOLMES, You|,['really'] -and metallic,['sound'] -poetry Then,['I'] -of innocence,['on'] -on I,['suppose.'] -and thrust,['them'] -by post,['But'] -this door,|['shut', 'his']| -hand Colonel,['Stark'] -WITH THE,['TWISTED'] -answered ringing,['the'] -Well there,['is'] -was Coroner:,['How'] -in gold,['and'] -brute broke,['loose'] -instinct is,['at'] -disappointment patient!",['said'] -the policeman,['or'] -is true,|['that', 'And', 'and', 'some']| -in waiting,['that'] -would guess,['Every'] -tragedy Shall,['be'] -on a,|['couch', 'very', 'man', 'point', 'gallows', 'visit', 'cold', 'strange', 'three-legged', 'large', 'matter', 'wager', 'Bible', 'logical', 'late', 'professional', 'friendly', 'bonnet', 'level', 'piece']| -my being,['conveyed'] -quite settles,['the'] -ago when,['he'] -are cigars,['in'] -terror I,['left'] -and returns,['at'] -so trifling,['a'] -before strange!",['muttered'] -you reach,|['it', 'your']| -metal remained,['to'] -with reference,['to'] -an excellent,|['education', 'argument', 'character', 'explanation']| -last having,['apparently'] -thickening into,['a'] -sounded ominous,['What'] -blur of,['a'] -upper part,['of'] -claspings and,['unclaspings'] -has deprived,['me'] -vacancy did,['not'] -throwing himself,['down'] -knee of,['the'] -will set,['off'] -training his,['wife you'] -ways but,['the'] -mine but,['really'] -us until,['the'] -to mania,['has'] -the fierce,|['energy', 'weather']| -without unnecessary,['delay'] -used If,['it'] -mine where,['she'] -Ha there,['has'] -little creature,['He'] -when set,['forth'] -dock for,['a'] -wish Perhaps,['it'] -about in,|['every', 'the', 'here!']| -worst We,['were'] -mind reading,['me'] -circles of,['light'] -a catastrophe,['Then'] -the Thames,['The'] -deduction But,['indeed'] -rat He,['mumbled'] -me health,['I'] -conceit said,['he'] -is Sherlock,['Holmes'] -brings our,['vegetables'] -about it,|['said', 'that', 'Pray', 'Finally', 'and', 'He', 'to', 'Or', 'presently', 'shall', 'for', 'in', 'as', 'he', 'It']| -Holmes gently,['You'] -exceedingly definite,['and'] -Oxfordshire and,['within'] -serious serious?",['considerable'] -look upon,|['it', 'these', 'this', 'her']| -my head,|['was', 'I', 'Many', 'which', 'she', 'and', 'by', 'There']| -see sir,["them's"] -salesman in,['Covent'] -Windibank Voil,['tout'] -Holmes nodding,['approvingly'] -continued to,['be'] -our client,|['is', 'flushing', 'rising', 'came', 'had', 'has', 'clutched', 'A']| -|then, do|,['you'] -its being,['seen'] -in amazement,['photograph!"'] -whispered did,['you'] -peeping over,['his'] -ill-kempt and,['side-whiskered'] -gently remove,['the'] -running at,['the'] -I traced,['her'] -throwing open,|['the', 'another']| -finger into,['the'] -heavy footfall,['in'] -paid by,['me'] -backed a,['bill'] -most painful,['matter'] -more exciting,['For'] -a whole,['animal'] -impression as,['to'] -word he,|['grasped', 'was']| -had cost,['our'] -sudden and,['so'] -highly respectable,['self'] -see anyone,|['else', 'of']| -to the whole,['situation'] -Pondicherry in,|['a', 'January']| -hour's good,['drive'] -rich pocket,['and'] -to forgo,['his'] -common is,['it'] -he rising,|['from', 'and']| -he looked,|['her', 'very', 'at']| -called next,['day'] -what you,|['wanted', 'have', 'earn', 'would', 'see', 'are', 'can', 'advise', 'say', 'advance', 'had', 'tell', 'were']| -the fee,['was'] -saved an,['innocent'] -grateful words,['to'] -out her,|['resolutions', 'hand']| -problem And,['first'] -the spot,|['upon', 'where']| -the Brixton,['Road'] -thoroughfare in,['which'] -an angry,['glance'] -clear am,['to'] -them occasionally,['Mr'] -the bequest,['of'] -the idea,|['however', 'The', 'of', 'that']| -beneath them,['with'] -Majesty's plan,['is'] -place And,|['then', 'where']| -I believe,|['that', 'said', 'He', 'By', 'been', 'in', 'I']| -sold my,['character'] -is Kate,['Whitney'] -pool can,['only'] -safely in,['bed'] -herself loomed,['behind'] -had worn,['all'] -My hand-mirror,['had'] -confess I,['still'] -else while,['he'] -I braved,['him'] -how about,|['Mr', 'the']| -Stoner heard,['a'] -commencement of,['the'] -happened Do,['you'] -then ask,['Mrs'] -always Kindly,['turn'] -our friend,|['says', 'the']| -us a,|['visit', 'very', 'chance']| -worth your,['while'] -slums to,['Covent'] -elbow where,['you'] -was running,|['a', 'hard']| -interesting statement,|['was', 'we']| -attention has,['now'] -long been,|['an', 'notorious']| -his seat,['and'] -lad of,['eighteen'] -beneath These,['we'] -won't insult,['your'] -weapon I,|['marked', 'had']| -would disgust,['you'] -brightly is,['your'] -even two,['might'] -much company,['he'] -be before,['me'] -She impressed,['me'] -one link,['in'] -we should,|['marry', 'do', 'go', 'reserve', 'find', 'need', 'quietly', 'earn', 'have', 'be', 'both']| -your lot,['with'] -My friend,|['tore', 'rose']| -Severn found,['ourselves'] -windows loomed,['like'] -his red,['cravat'] -noticed my,['questioning'] -absolutely all,['that'] -Odessa in,['the'] -together but,['that'] -jury There,['must'] -animal by,['the'] -upon myself,['in'] -and fantastic,['but'] -sodden with,['dew'] -would unfailingly,['come'] -Horner had,|['disappeared', 'been']| -to 27,['pounds'] -land which,['represent'] -270 half-pennies,['It'] -doorway and,['his'] -get rid,['of'] -and these,['lie'] -a gush,['of'] -Holmes springing,['to'] -imprisonment and,['afterwards'] -the gem,['was'] -introspective and,['I'] -a grey,|['cloak', 'garment', 'carpet', 'suit']| -pipe with,['the'] -can I,['do'] -not pronounce,['him'] -pistol in,['my'] -that weakness,['in'] -met in,|['Fresno', '84']| -watching me,|['narrowly', 'together', 'eagerly']| -outr as,['a'] -her fianc and,['no'] -met it,['If'] -bridge with,['the'] -must choose,['our'] -Doctor Stay,['where'] -may as,['well'] -afterwards from,['your'] -only say,|['that', 'madam']| -envelope wish,['you'] -our humble,['lodging-house'] -lady we,['have'] -tread was,['marked'] -will again,['I'] -useful they,['would'] -sound one,['of'] -all father's,['friends'] -woman with,['a'] -doings of,|['his', 'Hugh']| -villains who,['seemed'] -snake instantly,['occurred'] -appeared and,['all'] -or plate,['morning'] -sufficient to,|['absorb', 'put', 'explain', 'mark']| -paper upon,['which'] -received in,['exchange'] -is obvious,|['And', 'that', 'As']| -yards of,|['it?', 'your']| -the fit,['was'] -cat and,['yet'] -clouds However,['innocent'] -is half,['a'] -fortnight of,['the'] -neutral do,['nothing'] -goose club,|['by', 'yes,']| -desperate villain,['a'] -gesture that,['Miss'] -visitors if,['he'] -yards or,|['so.', 'more']| -in wines,['They'] -being identified,['as'] -most genial,['fashion'] -started If,['you'] -Having no,['mother'] -our companion,['in'] -glimpse of,|['her', 'rushing', 'it', 'bodies', 'by', 'the', 'hope']| -In two,['hours'] -the building,|['the', 'and', 'two']| -are likely,['to'] -hears that,|['I', 'one']| -dying allusion,['to'] -gesticulating but,['with'] -Marbank the,['great'] -statement we,['went'] -for summer,['than'] -minutes was,|['rejoiced', 'nearly', 'difficult', 'inside']| -face inside,['the'] -future only,['could'] -over elastic-sided,['boots'] -The Church,['of'] -lay a,['whip'] -points about,|['young', 'which', 'this', 'the']| -Stripes case,['has'] -not interfere,|['come', 'very']| -have put,['on'] -tallish man,['walking'] -was that,|['advertisement', 'the', 'he', 'although', 'frightened', 'I', 'say', 'of', 'she']| -ourselves as,['we'] -days Quick,['quick'] -shown Why,['dash'] -ourselves at,['the'] -him anxiously,['in'] -was furnished,['with'] -Attica and,['hoped'] -as perplexed,['or'] -memory with,['a'] -house-maid for,['the'] -84 in,["McQuire's"] -we broke,['the'] -it happens,|['I', 'he']| -protect the,|['lady', 'stranger']| -Perhaps because,['he'] -nothing with,['him'] -cab with,['my'] -to summarise,['I'] -consult you,|['upon', 'in', 'as']| -having been,|['returned', 'seen', 'there', 'given', 'tricked', 'lifted', 'worn']| -think that,|['I', 'that', 'it', 'what', 'this', 'was', 'the', 'he', 'we', 'there', 'those', 'money', 'Neville', "I'll", 'so', 'with', 'you', 'your', 'his', 'they', 'likely', 'if', 'she', 'perhaps', 'any']| -goodness she,['did'] -station inn,['and'] -a face,|['that', 'which']| -outdoor work,['he'] -was obvious,|['to', 'I', 'that', 'from', 'at']| -orange pips,|['which', 'in', 'is']| -crime records,['unique'] -in error,|['Upon', 'by']| -Square I,['hope'] -his glass,['in'] -effect remarked,['Holmes'] -were dreadfully,['convulsed'] -come what,['may'] -within fifty,['miles'] -coat such,['as'] -hands was,['a'] -as might,['very'] -well he,['was'] -do business,['with'] -of books,|['mostly', 'of']| -my treasure,['was'] -furnished as,['a'] -address which,|['she', 'can']| -tin were,['discovered'] -a medical,|['degree', 'man']| -goose sir,['he'] -the sitting-room,|['pacing', 'window', 'There', 'to', 'at', 'Now', 'A']| -quarrels with,['whoever'] -learning and,['letters'] -point Of,['course'] -light among,['the'] -conclusions as,['to'] -other clothes,|['were', 'would']| -jewels every,['facet'] -money matters.,['have'] -acres of,|['ground', 'bramble-covered']| -He mumbled,|['a', 'several']| -for conversation,|['ceremony,']| -A name,['derived'] -unrepaired breaches,['gaped'] -indeed been,|['of', 'torn']| -thirty at,['the'] -generation I,['had'] -zigzag of,['slums'] -were beaten,['by'] -room while,|['I', 'you']| -lawyer. did,['as'] -conclusion which,['shows'] -happens I,['was'] -taking an,['obvious'] -tinker's Well,['when'] -schoolmaster She,['is'] -he opened,|['for', 'and']| -product and,['that'] -stand it,|['any', 'is']| -so self-evident,['a'] -because in,['other'] -Majesty had,['not'] -on The,['ceiling'] -though he,|['poured', 'bit', 'knew', 'little']| -my spirits,['and'] -because it,|['serves', 'is']| -provoked a,|['quick', 'burst']| -room save,['for'] -almost invariably,['a'] -be indeed,['happy'] -shattered in,['the'] -THE ENGINEER'S,['THUMB'] -set him,['free'] -shall learn,['nothing'] -am living,['with'] -anxious I,['slipped'] -written that,['It'] -all try,['to'] -estate where,['strangers'] -down Mr,['Rucastle'] -favourably impressed,['by'] -are sometimes,['curious'] -photograph a,['cabinet'] -wrinkles were,['gone'] -words If,['I'] -arrows has,['now'] -to bear" he,['gave'] -Her lips,['too'] -an iron,['bed'] -twelve but,['none'] -amount that,['I'] -words It,['is'] -succeeded have,['a'] -secrecy for,['two'] -one near,['my'] -sure Mr,['Holmes'] -table with,['his'] -mud in,|['no', 'that']| -the gang,|['I', 'of']| -trap for,['her'] -can imagine,|['how', 'from', 'saw']| -search of,|['a', 'are', 'the']| -my art,['it'] -smoke curling,['up'] -my arm,['and'] -the spotted,['handkerchiefs'] -his eagerness,['and'] -two voices,['one'] -Here it,['is'] -frequently seen,|['the', 'at']| -Here is,|['the', 'where', 'something', 'a']| -suddenly that,['it'] -investigate the,['cause'] -found his,['father'] -Hitherto his,['orgies'] -puffing still,['gesticulating'] -her ring,['may'] -presents any,['features'] -without reading,['it'] -the barque,['Lone'] -to reward,|['you', 'my']| -standing on,['it'] -frightened her,['I'] -from extreme,['languor'] -delicate point,['and'] -found Sherlock,['Holmes'] -filled out,['his'] -another had,['sat'] -a sleepless,['night'] -three consultations,['and'] -father's death,|['and', 'I']| -course for,['the'] -in absolute,['darkness'] -landlady's Holmes,['was'] -Sometimes Holmes,['would'] -farm-steadings peeped,['out'] -tweed-suited and,['respectable'] -was sitting,['with'] -his address,['that'] -amiable person,['said'] -a lad,|['said', 'of', 'and']| -that tree,['during'] -Public disgrace,['I'] -was myself,|['regular', 'The']| -over-precipitance may,['ruin'] -a band a,['speckled'] -money just,['while'] -had still,['much'] -The events,['in'] -magician said,['she'] -was advised,['by'] -ago however,['a'] -has formed,['the'] -to-night I've,['had'] -He relapsed,['into'] -was 'and what,['has'] -not entirely,|['devoid', 'lost']| -cry she,['sprang'] -Eyford Station.,['we'] -our threats,['This'] -far slighter,['evidence'] -nature wild,['and'] -America You,['were'] -lucrative means,['of'] -Mary my,['experience'] -few minutes,|['in', 'until', 'he', 'with', 'of', 'silence', 'I', 'during', 'after', 'to', 'while', 'later', 'said', 'dressed']| -avoid the,['police'] -should she,|['hand', 'come']| -show you,|['how', 'what', 'the']| -past his,['huge'] -blazing red,['head'] -a swarm,['of'] -letters and,['is'] -inquirer flitted,['away'] -The others,['are'] -game-keeper lost,['sight'] -drawing your,['inferences'] -started to,|['England', 'town', 'go']| -grasped that,['which'] -his waistcoat,['a'] -we rattled,['along'] -pretty girl,['and'] -to tell,|['I', 'him', 'you', "didn't", 'me', 'a', 'what', 'my', 'heavily', 'the', 'your', 'his', 'her', 'Black', 'us']| -was and,['I'] -a month,|['then', 'Yet', 'or', 'in']| -past him,['into'] -Westaway was,['the'] -public attention,['has'] -facts came,['out'] -cooking and,['keeps'] -ejaculated after,['I'] -hysterical nor,['given'] -and vilest,['alleys'] -wee hand,['seemed'] -opening a,|['third', 'drawer']| -was an,|['accomplice', 'enthusiastic', 'old', 'Indian', 'exceedingly', 'excuse', "hour's", 'end', 'excellent', 'ideal', 'exhilarating']| -good in,|['that', 'making']| -him Hatherley,['Farm'] -broad gleaming,['Severn'] -was at,|['work', 'Baker', 'least', 'home', 'college', 'its', 'the', 'my', 'one', 'which', 'stake', 'once', "death's"]| -matter must,['be'] -manifold wickedness,['of'] -was as,|['right', 'cruel', 'much', 'the', 'plainly', 'we', 'I', 'bright', 'well', 'passionate', 'amiable']| -ST SIMON.,['is'] -which would,|['in', 'disqualify', 'disgust', 'lead', 'finally', 'give', 'follow', 'show', 'induce', 'bring', 'buy', 'enable', 'convulse', 'suit', 'I', 'cover']| -They inherit,['Plantagenet'] -mark but,['only'] -against him,|['Had', 'One', 'at', 'He', 'was', 'will', 'and', 'I']| -cleared or,['left'] -I left,|['the', 'at', 'him', 'this']| -husband Her,['young'] -know which,|['to', 'it']| -although he,|['wore', 'has']| -envelope and,|['examining', 'saw', 'turning', 'then']| -have no,|['data', 'doubt', 'compunction', 'chance', 'notion', 'idea', 'time', 'further', 'news', 'connection', 'one', 'wish', 'possible', 'parents', 'business', 'want']| -narrative which,|['promises', 'struck', 'has']| -however at,['the'] -sure was,['one'] -come He,['looked'] -will explain,|['to', 'the']| -however am,['a'] -shall keep,|['on', 'the']| -side were,['as'] -IS ,[''] -can guard,['against'] -some fresh,['clue'] -owner dear,['fellow'] -mortals When,['I'] -the study,|['of', 'which']| -he broke,['into'] -deserts it,['was'] -His brows,['were'] -than forty-five,['From'] -violin-land where,['all'] -look three,['times'] -If Horner,['were'] -counties in,['our'] -are daring,['men'] -me quite,['a'] -glint of,['a'] -man and,|['hurried', 'endeavoured', 'as', 'that', 'a', 'it', 'became', 'touched', 'myself', 'the', 'who', 'his', 'he']| -and tobacco,['Those'] -nights I,['have'] -how will,['you'] -am Very,['much'] -to span,['it'] -Bristol (with,['considerable'] -true story,['gentlemen'] -you disliked,['the'] -might give,|['provided', 'you', 'the']| -that explains,['what'] -week From,['the'] -each to,['receive'] -get a,|['cab', 'fairer', 'smear', 'few']| -of wonderfully,['sharp'] -said Holmes,|['It', 'man', 'This', 'I."', 'dryly', 'shutting', 'Hum', 'with', 'staring', 'coldly', 'have', 'relapsing', 'that', 'Your', 'sinking', 'when', 'the', 'I', 'standing', 'buttoning', 'severely', 'blandly', 'indeed!', 'taking', 'throwing', 'laughing', 'your', 'And', 'no', 'rising', 'As', 'He', 'quietly', 'stepping', 'suavely', 'unlocking', 'it', 'Have', 'sixty;', 'yes!', 'demurely', 'gently', 'answering', 'gravely', 'am', 'as', 'after', 'They', 'Pray', 'folding', 'laying', 'flicking', 'You', 'God!', 'nodding', 'thoughtfully', 'because', 'salesman', 'carelessly', 'sweetly', 'cheerily', 'sternly', 'reaching', 'Was', 'are', 'lady', 'has', 'and', 'springing', 'you', 'smiling', 'Yes', 'rubbing', 'is', 'to', 'here', 'this', 'looking']| -brain must,['have'] -of refinement,['and'] -the coroner's,|['jury', 'inquiry']| -far from,|['Carlsbad', 'Ross', 'the', 'at', 'a', 'being']| -the lovely,['Surrey'] -be brave,['for'] -expressly for,['you.'] -instincts are,['I'] -will fall,['into'] -gentleman staying,['with'] -hurried me,['into'] -and poultry,['supplier.'] -South Eventually,['in'] -curiosity I,['have'] -companies and,['went'] -an investment,['and'] -can to,|['make', 'serve']| -Doran the,|['only', 'fascinating', 'Duchess']| -matter until,|['he', 'some']| -client Lucy,['Parr'] -get them,['from'] -then a fire,['a'] -black clay,['pipe'] -memoir of,['him'] -explanation He,['hardly'] -insist You,['must'] -pursued the,['thief'] -estate of,['Birchmoor'] -adviser and,|['helper', 'as']| -felt more,['heartily'] -lens he,['tested'] -I then,|['glanced', 'took', 'hurried', 'looked', 'inquired']| -|resist angry,|,['Robert'] -his senses,['might'] -little matter,|['over', 'for', 'of']| -were any,['traces'] -readily see,['a'] -the commissionaire,|['is', 'rushed', 'had']| -already woven,['The'] -out it,['would'] -stands for,|['Gesellschaft', 'Papier.']| -pounds 10s,['Every'] -not pierce,['so'] -not go,|['to', 'for', 'there', 'wrong', 'very', 'asleep']| -out in,|['vile', 'front', 'the', 'such', 'a', 'our']| -village and,|['the', 'even']| -it recalled,['in'] -The self-reproach,['and'] -were and,['from'] -you cared,['to'] -out if,['it'] -oppressed with,['a'] -St Monica,|['in', 'John', 'said']| -lad should,['step'] -into possession,['of'] -of note-taking,['and'] -you live,['sir?'] -my soul,['here'] -This child's,['disposition'] -As well,['as'] -Three thousand,['will'] -prolong a,['narrative'] -with news,['as'] -Having found,['the'] -pack away,['I'] -essential facts,['from'] -small place within,['ten'] -not discourage,['me'] -outer side,['of'] -holder of,['them'] -read to,['you'] -to distinguish,['the'] -little difficulty,['in'] -mess but,['as'] -person should,['produce'] -I distinctly,['saw'] -last century,['however'] -character? perhaps,['it'] -nature He,['was'] -of trees,|['in', 'with']| -some claim,['upon'] -same good,['friend'] -ridiculously simple,['that'] -grey pavement,['had'] -day have,['made'] -started me,|['laughing', 'off']| -than you,|['have', 'think', 'imagine']| -new conditions,['obtained'] -perch and,['carrying'] -type leaves,['a'] -circle He,['is'] -make nothing,|['of', 'at']| -cannot say,|['that', 'what']| -rolled down,|['the', 'between', 'in']| -throat while,['he'] -facts from,['the'] -tricky thing,['answered'] -flagged At,['last'] -stupid but,['I'] -right ourselves,['What'] -shining into,['the'] -the repute,['of'] -country which,['makes'] -side lanterns,["You'll"] -Threadneedle Street,|['upon', 'name']| -V THE,['FIVE'] -your work,|['for', 'knowing']| -never felt,['more'] -me ever,['heard'] -he foresaw,|['some', 'happened']| -attracted my,['attention'] -know no,|['active', 'one']| -this den,['low'] -necessary in,['order'] -have acted,|['before', 'otherwise', 'all']| -well-known firm,['of'] -much you?,['That'] -typewriting It,['brings'] -heard anything,|['since', 'of']| -out two,|['deaths', 'golden']| -being fairly,['well-to-do'] -so strong,['that'] -crown a,['packet'] -road a,|['cold-blooded', 'chill']| -is It,['is'] -beige but,['it'] -stair I,|['met', 'think']| -softened by,['the'] -I am,|['baffled', 'not', 'lost', 'the', 'but', 'sure', 'likely', 'your', 'inclined', 'all', 'sorry', 'Very', 'able', 'forced', 'so', 'a', 'myself', 'going', 'Just', 'amply', 'much', 'staying', 'afraid', 'delighted', 'to', 'boasting', 'convinced', 'very', 'still', 'arrested', 'acting', 'faced', 'tempted', 'But', 'in', 'an', 'Mr', 'illegally', 'glad', 'unable', 'at', 'somewhat', 'When', 'right', 'commuting', 'saving', 'living', 'safe', 'now', 'no', 'for', 'descending', 'ready', 'surprised', 'one', 'Alexander', 'prepared', 'giving', 'exceptionally', 'left', 'ever', 'saved', 'bound']| -the eaves,['That'] -etc Ha,['That'] -your nerves,|['no,']| -a double-edged,['weapon'] -of petulance,['about'] -someone in,['the'] -estate and,|['that', 'of', 'would']| -road A,['double'] -hardened into,['a'] -weeks When,['I'] -crusted mud,['from'] -Street to,|['Baker', 'say']| -opened the,|['door', 'Gladstone', 'goose', 'case', 'bureau', 'window', 'yellow']| -presume no,['means'] -the wine-cellar,['seem'] -mouth Therefore,['he'] -never know,|['where', 'when']| -yet was,['upon'] -hat Also,['by'] -mother It,['would'] -interest of,|['which', 'his']| -Adler as,['I'] -but absolute,['secrecy'] -another public,['exposure'] -may find,|['neither', 'it', 'that']| -us hurry,['to'] -too terribly,['frightened'] -standing back,['a'] -no human,['eye'] -The roadway,['was'] -brassy Albert,['chain'] -me than,|['to', 'the']| -expected lounging,['about'] -test Here,['is'] -small place a,['very'] -It it's not,['actionable'] -are fourteen,['other'] -thought little,|['more', 'enough', 'of']| -however so,['I'] -far too,['generous'] -little knew,|['what', 'for']| -stout gentleman,['half'] -listened It,['swelled'] -sweet little,['problem'] -brandy and,|['smoked', 'your', 'water']| -me that,|['you', 'on', 'he', 'our', 'if', 'a', 'the', 'whatever', 'something', 'there', 'it', 'I', 'her', 'all', 'my', 'feeling']| -come my,['way'] -or convinced,['himself'] -stoop and,['a'] -cocksure manner,['as'] -moustached evidently the,['man'] -battered felt,['is'] -My mind,['was'] -Still of,['course'] -The cabman,['said'] -little Mr,['Holder'] -Stoner was,|['now', 'obviously']| -or at,|['least', 'the']| -find Sherlock,['Holmes'] -than your,['left'] -deepest thought,|['Suddenly', 'Our']| -this rambling,['and'] -lives quietly,['sings'] -this happened,['within'] -The central,['portion'] -finding them,['they'] -interest you,|['Lestrade', 'said', 'think']| -friend blowing,['blue'] -leave as,['he'] -small wooden,|['shelf', 'thicket']| -a last,|['long', 'hurried']| -Bradstreet had,['spread'] -delicately and,['successfully'] -to recognise,|['him', 'the']| -were back,['in'] -than you.,['it'] -stronger reasons,['for'] -lashed furiously,['with'] -shutting his,['eyes'] -hubbub which,['broke'] -element of,['danger'] -a hand,|['in', 'appeared', 'on']| -maids why,['should'] -who pursued,['me'] -Beyond the,|['obvious', 'mention']| -pince-nez at,['either'] -a rather,|['painful', 'shamefaced', 'peculiar']| -little accustomed,['to'] -That will,|['be', 'just']| -companion Then,['he'] -her of,['the'] -conclusions he,['said'] -of fantastic,['talk'] -brother died,['five'] -be derived,['It'] -serious difference,['It'] -her on,['my'] -me even,['less'] -poor creature,['must'] -saw us,['our'] -in thought,|['with', 'while']| -imagine but,['he'] -men who,|['were', 'struck', 'are', 'would']| -resemblance to,|['the', 'a']| -was leaning,['against'] -feeling which,['was'] -is and,['you'] -by the,|['study', 'official', 'last', 'sound', 'wrist', 'two', 'scissors-grinder', 'window', '5:15', 'King', 'enthusiasm', 'thousands', 'Underground', 'collar', 'colour', 'machine', 'way', "gentleman's", 'loudly', 'old', 'incident', '11:15', 'spreading', 'lake', 'butt-end', 'sunlight', 'maid', 'pool', 'fall', 'evening', 'farm', 'estate', 'nature', 'surgeon', 'time', 'contemplation', 'aid', 'early', 'ceaseless', 'light', 'brazier', 'fire', 'cabman', 'rattle', 'heavy', '5:14', 'merest', 'passers-by', 'police', 'tide', 'question', 'coppers', 'most', 'scissors', 'approach', 'idea', 'swinging', 'jewel', 'measured', 'untimely', 'side', 'first', 'villagers', 'smell', 'twelve', 'fact', 'foot-path', 'morning', 'poor', 'use', 'table', 'side-lights', 'generations', 'whishing', 'hands', 'highroad', "woman's", 'thousand', 'strange', 'butler', 'traffic', 'honour', 'back', 'shoulder', 'story', 'garden', 'kitchen', 'change', 'deep', 'egotism', 'manner', 'page', 'day', 'fresh', 'glimmer']| -you We,|['have', 'are']| -He calls,['attention'] -Ross and,|['I', 'he']| -half-past six,['when'] -do it,|['myself', 'I', 'You', 'in', 'of', 'when', 'again', 'Now', 'We', 'he']| -in Frisco,['Not'] -would ensue,['if'] -can make,|['out', 'neither']| -delicacy A,['shadow'] -what a,|['woman', 'fool', 'blind']| -and drawing,['out'] -was Was,['it'] -Kate Give,['me'] -flirting with,['a'] -do in,|['our', 'the', 'these']| -By its,['light'] -|this, of|,['course'] -your promise,['after'] -alone would,['imply'] -fancies in,['every'] -I just,|['ordered', 'on', 'as', "didn't", 'made']| -squire dragged,['out'] -not bear,|['to', 'the']| -pack of,['cards'] -what I,|['ended', 'give', 'have', 'am', 'asked', 'wished', 'earn', 'gained', 'gather', 'was', 'liked', 'owe', 'should', 'had', 'say', 'came', 'want', 'felt', 'could', 'feel', 'can', 'may', 'did', 'know']| -to establish,['himself'] -his cigarette,|['paper', 'into']| -her hand,|['upon', 'which', 'Colonel', 'at', 'to', 'over']| -chimney is,['wide'] -these papers,|['to', 'and']| -aroused my,['curiosity'] -were scrawled,['upon'] -of white,|['cardboard', 'satin', 'stone']| -Roylott's chamber,|['so.', 'was']| -case upon,['record'] -driving from,['the'] -came away,['in'] -art and,['the'] -fierce old,['bird'] -had locked,['am'] -colour of,|['his', 'putty', 'your']| -large scale,['and'] -moon had,['sunk'] -opinion remarked,['the'] -of mice,['little'] -belonged to,|['the', 'a']| -like one,|['who', 'of']| -few hours,|['have', 'three', 'to', 'He']| -he refers,['to'] -horse?" interjected,['Holmes'] -ended with,['the'] -provided always,['that'] -sharply to,['the'] -little that,|['I', 'he']| -live sir?,['said'] -appearance But,['really'] -breathlessly They,['will'] -out death,['would'] -pink flush,['upon'] -my magnifying,['lens'] -are destroyed.,['said'] -write in,['the'] -little town,['finally'] -more depressed,['and'] -in unfeigned,['admiration'] -forward wrung,['my'] -actually within,['the'] -duty asked,['Holmes'] -these sots,['as'] -has two,['children'] -intelligent face,['sloping'] -showing traces,['The'] -the danger,|['would', 'is', 'Still']| -was stated,['that'] -American Then,['who'] -whom we,|['now', 'are', 'have']| -deed had,['been'] -quest might,['be'] -smiled the,['busybody'] -back towards,['it.'] -am somewhat,|['of', 'headstrong']| -had hardly,|['said', 'spoken', 'finished', 'flashed', 'shut', 'listened', 'reached']| -paper in,|['his', 'the', 'London', 'a']| -am in,|['hopes', 'the', 'this', 'town', 'your']| -quiet on,['the'] -servant will,['call'] -to hear,|['your', 'you', 'it', 'the', 'a', 'there']| -in black,|['frock-coat', 'and']| -cried half-mad,['with'] -card which,['was'] -have sinned,['I'] -the unfortunate,|['young', 'bridegroom']| -makes it,['a'] -both said,['never'] -word with,|['us', 'Moran', 'you']| -reception by,['your'] -your patience,['there'] -is Armitage Percy,['Armitage the'] -trouble was,['caused'] -course stay,['in'] -which consisted,['of'] -|madam,' said|,['I'] -opposite there,['stood'] -carry the,|['art', 'case']| -placed in,|['our', 'so', 'coming']| -English counties,['in'] -be there,|['And', 'in', 'was']| -Openshaw to,['caution'] -the knowledge,['of'] -some repairs,['were'] -believe He,['rummaged'] -the intention,|['of', 'to']| -better able,['to'] -the commencement,|['and', 'of']| -headings under,['this'] -26 plumber,['was'] -building two-storied,['slate-roofed'] -keen-witted ready-handed,['criminal'] -been enough,['to'] -papers must,['be'] -trophy belongs,['is'] -you met,['as'] -Oh how,['simple'] -night said,['Holmes'] -became the,['terror'] -question was,|['hardly', 'already']| -shall start,['at'] -in safety,|['And', 'I', 'and']| -wrist where,['the'] -events may,['be'] -stepdaughter's marriage,['the'] -linen bag,['with'] -know what,|['to', 'has', 'you', 'other', 'became', 'was', 'is', 'women', 'I', "woman's", 'they']| -goes readily,['enough'] -prove it,['returned'] -blood far,['away'] -he entered,|['From', 'looking', 'Your', 'to']| -rings into,['the'] -its French,['offices'] -nose gave,['him'] -years although,['he'] -of course,|['stands', 'stay', 'it', 'saw', 'I', 'for', 'the', 'inferred', 'one', 'he', 'He', 'there', 'instantly', 'a', 'you', 'learned', 'obvious', 'but', 'Well', 'that', 'would', 'we', 'if', 'remains', 'in', "I'd", 'of', 'well', 'borrow', 'yours']| -which charge,['at'] -itself and,|['his', 'tied']| -James Calhoun,['Barque'] -most probable,|['that', 'one']| -incidents which,|['will', 'may']| -have hoped,['to'] -reason to,|['believe', 'the', 'know']| -other dived,['down'] -death should,['prefer'] -There's money,['in'] -as Mr,|['John', 'Hosmer', 'Neville', 'Ferguson']| -offices that,['was'] -Melbourne and,['we'] -all matters,['which'] -my hair,|['would', 'is', 'until', 'in', 'to', 'have']| -trivial and,['hastened'] -Very retiring,['and'] -the poor,|['gentleman', 'girl']| -crossed them,['There'] -to form,|['the', 'an']| -the pool,|['The', 'I', 'He', 'and', 'the', 'for', 'can', 'midway']| -quest is,['practically'] -interesting ourselves,['in'] -is something,|['very', 'interesting', 'in', 'distinctly']| -boots he,['was'] -When these,['hot'] -bird so,['if'] -excitement of,['this'] -no vehicle,['save'] -abominable crime,['The'] -Portsdown Hill,['I'] -they mean,['to'] -you like,['said'] -Hampshire quite,['easy'] -friend's house,['As'] -turn came,['the'] -started early,['and'] -a piece,|['of', 'from']| -nature of,|['the', 'a', 'this']| -Oscillation upon,['the'] -but had,|['finally', 'refused', 'listened', 'become', 'left']| -|known then,|,['you'] -very communicative,['during'] -officers waiting,['at'] -by them,|['sir.', 'once']| -the conduct,['complained'] -draughts with,['me'] -the glamour,['of'] -the flooring,|['was', 'and']| -to approach,['him'] -wore across,['the'] -steel pokers,['into'] -necessary to,['reach'] -occupation but,['was'] -and deduction,['But'] -gone the,['dull'] -to stop,|['it', 'the']| -his mental,['results'] -opened it,['myself'] -young Openshaw's,['steps'] -of creatures,['from'] -it The,|['alarm', 'husband', 'daughter', 'matter', 'very']| -single article,['of'] -she thought,['gone'] -the receiver,['who'] -list of,|['the', 'my']| -says he,|["here's", 'touching']| -one there,['The'] -at 11:30,['will'] -done what,['I'] -have noted,['even'] -been making,|['inquiries', 'a']| -their senses,['To'] -expressive sometimes,['And'] -to vary,['with'] -plot or,['whether'] -lying among,['the'] -excitement There,['is'] -struggling men,['who'] -little eyes,|['now', 'fixed']| -was cleared,['just'] -a Hercules,['His'] -forty-five From,['their'] -already met,['the'] -by either,['shoulder'] -up with,|['the', 'fear', 'a']| -is no,|['doubt', 'reason', 'more', 'use', 'great', 'law', 'possible', 'time', 'sign', 'easy', 'ordinary', 'other', 'wonder', 'human', 'mystery', 'vehicle', 'communication', 'good', 'lane']| -to-night what,['time'] -lamp then,['Mr'] -case against,|['the', 'you']| -collar black,['frock-coat'] -has one,['positive'] -thinking it,['over'] -laugh was,['struck'] -Any injury,['to'] -stiff is,['the'] -You hear,['He'] -All day,|['the', 'a']| -coming save,['the'] -barred tail,|['I', 'right']| -machine had,['come'] -Putting his,['hands'] -millionaire Miss,['Doran'] -Wilson here,['has'] -of dread,['which'] -he started,|['that', 'tapped', 'off']| -a hydraulic,|['engineer', 'stamping', 'press']| -What could,|['it', 'that', 'be', 'he', 'have']| -look her,['up'] -free unfettered,['by'] -papers Inspector,['Bradstreet'] -decision My,['wife'] -west every,['man'] -tissue of,['mysteries'] -my presence,|['here', 'she']| -exact meaning,['I'] -understand became,['entangled'] -when Holmes,|['pulled', 'returned', 'struck', 'rose']| -see such,['a'] -quick little,['questioning'] -My attention,['was'] -the water,|['was', 'The', 'and']| -hour? have,['judged'] -stage lost,['a'] -Nothing definite,['Coroner:'] -soon clear,['up'] -reasoner to,['admit'] -six reached,['Leatherhead'] -the rain,|['had', 'to', 'splashed', 'was']| -tout Miss,['Sutherland'] -in She,['was'] -look Why,['he'] -Describe it,['she'] -are coiners,['on'] -that can,['touch'] -so thoughtful,['a'] -someone passing,['said'] -conjectured to,['be'] -she consults,['her'] -required check,['Holmes'] -anything which,|['you', 'the', 'could', 'threw', 'would']| -is fortunate,['for'] -opinion though,['I'] -practice and,|['made', 'had']| -men before,['you'] -doubt find,['waiting'] -led him,['out'] -from Reading,['to'] -and smoked,|['very', 'a']| -slippers on,['when'] -little low,['doors'] -Holmes refused,['to'] -little area,['of'] -half-past nine,['said'] -much obliged,|['if', 'to']| -down It,['is'] -noble lad,['your'] -the desire,['to'] -than myself,|['your', 'with']| -that And,|['yet', 'now']| -the market,|['and', 'price', 'All']| -me said,|['Holmes', 'he', 'my', 'Lord']| -older man,['might'] -a cripple,|['said', 'in']| -seems a,['very'] -a paper,|['for', 'label', 'explained', 'so']| -the white,|['cheeks', 'wrist', 'cloth', 'creases']| -deaths of,['my'] -Swindon and,['I'] -spotted in,['several'] -him To,['me'] -laid perhaps,['upon'] -The injuries,['were'] -no opposition,['to'] -hills around,['Aldershot'] -It seldom,['was'] -of rage,['and'] -a will,['or'] -pardon As,['to'] -had set,|['himself', 'in', 'the']| -a wild,|['goose', 'clatter', 'free', 'night', 'way']| -at Streatham,['carrying'] -were signs,['that'] -me his,|['representative', 'friend']| -fact on,['you'] -minute for,['the'] -twelve He,['sat'] -Good-afternoon Miss,['Stoner'] -John Horner,|['a', '26']| -fingers and,|['though', 'a']| -was rich,['with'] -her ear,|['From', 'and']| -wandering gipsies,['and'] -the sailing,['vessel'] -our stepfather,['about'] -flat brims,['curled'] -glance as,['to'] -so short,['a'] -You shall,['not'] -much not,['to'] -still said,['he'] -wearing it,['short'] -immediately above,['your'] -poor Mary,['it'] -year Besides,['what'] -myself when,['he'] -me at,|['the', 'a', 'least', 'last', 'my', 'once']| -absent from,['home'] -was eager,['enough'] -that although,['he'] -me as,|['the', 'I', 'a', 'they', 'relics', 'to', 'Mr', 'remarkable', 'being', 'you', 'possible', 'governess']| -she describes,['as'] -remarked What,['do'] -Visited Paramore,['All'] -the drowsiness,['of'] -H for,['J'] -really strikes,['very'] -stone pass,['along'] -instantly opened,['by'] -surprised that,['Lord'] -some sudden,['fright'] -home no,['doubt'] -right Now,['Mr'] -quarter past,['six'] -Holmes shading,['his'] -joke at,['first'] -complete happiness,['and'] -mad Elise!,['he'] -or nine,['years'] -who gave,['me'] -how interested,['I'] -throw a,|['doubt', 'little']| -as yet,['see'] -Holmes it,['is'] -head We,['both'] -Holmes is,|['no', 'it']| -for governesses,['in'] -a fellow-countryman,['Lysander'] -letter K,|['three', 'of']| -heavy one,['He'] -sold upon,['hats'] -between layers,['of'] -letter A,|['and', 'You']| -Holmes in,|['animated', 'the', 'his', 'Baker']| -opposition to,['the'] -for 25,['pounds'] -are all,|['typewritten', 'as', 'very', 'practical', 'seaports', 'to', 'wrong', 'the', 'shall']| -the club,['again.'] -quarter and,['pays'] -It corresponds,['with'] -What is,|['this', 'it']| -four years,['About'] -work evening,['came'] -me am,['all'] -that any,|['beggar', 'unnecessary', 'burglar']| -data he,['cried'] -chatting about,['her'] -again As,['he'] -Good has,['come'] -item Well,['he'] -was used.,['instant'] -country It,['is'] -few words,|['to', 'Valley', 'but', 'he', 'with', 'in']| -west In,['the'] -an observant,['young'] -himself once,['more'] -slipped in,['in'] -shall do,['exactly'] -never been,|['strong', 'prosecuted', 'revealed']| -not rain,['before'] -close. shot,['one'] -continue my,|['work', 'professional', 'investigations']| -will avail,['said'] -October 9,['1890'] -are Mr,['Holmes'] -|day had,"|,['said'] -expect It,['ran'] -Clair went,['into'] -he man,['who'] -fixed on,['my'] -turned not,['a'] -having regard,['to'] -amused father,['is'] -his haste,['and'] -the particulars,|['It', 'of']| -he may,|['have', 'find']| -professionally I,['think'] -her good,['aunt'] -could run,['for'] -at rest,['about'] -is splendid,['pay'] -felt quite,['bashful'] -lady!' you cannot,['think'] -who sat,['by'] -living in,['this'] -unlikely that,|['she', 'he']| -dear little,|['Alice', 'woman', 'thing', 'romper']| -those preposterous,['English'] -found that,|['he', 'I', 'it', 'that', 'the', 'she', 'Horner', 'this', 'Miss']| -or repay,['you'] -back into,|['my', 'the', 'Ross', 'his', 'your', 'its']| -retained Lestrade,['whom'] -poison waxed,['or'] -orphanage in,['Cornwall'] -call Holmes,['attention'] -convoy came,['down'] -conclusions most,['stale'] -held him,['in'] -agent I,['understand'] -lay your,['hands'] -night which,['seemed'] -puzzling just,['as'] -held his,['golden'] -so fascinating,['and'] -returned at,['the'] -moment They,['will'] -a register,['written'] -slammed heavily,['behind'] -you Here's,['half'] -the furnished,['house'] -Saturday would,['suit'] -woman entered,['the'] -was hardly,['out'] -the help,['of'] -secret whether,['you'] -her mysterious,['end'] -not beget,['sympathy'] -my beginning,['without'] -be kind,['enough'] -grew worse,['as'] -Henry Baker,|['was', 'the', 'can', 'had', 'is', 'I', 'said', 'who']| -and confronted,['him'] -they subdued,['the'] -voice in,['my'] -cab outside,['pray'] -political purposes,['principally'] -in Sussex,['near'] -I hardened,['my'] -present moment,['as'] -to credit,['that'] -last when,['nothing'] -was essential,['that'] -appear to,|['have', 'be', 'me']| -nodding approvingly,['I'] -chisel and,['the'] -sealed But,['my'] -exalted station,['of'] -a speedy,['clearing'] -constitution has,['been'] -at Let's,['have'] -formidable array,['of'] -seat said,['Holmes'] -at Ross,|['and', 'who']| -exchange twopence,['a'] -been wired,['for'] -Hence you,['see'] -lady leave,['the'] -shiny hat,['and'] -I the,|['honour', 'gentleman', 'nerve']| -bricks and,['mortar'] -a questioning,|['and', 'glance']| -small bearded,['man'] -heavily behind,['us'] -sat all,['this'] -injured Nothing,['definite'] -but really,|['it', 'as', 'old']| -hours three,['pipes'] -day of,|['his', 'the']| -fire The,|['facts', 'road']| -do the,|['old', 'running', 'public']| -a liar,['as'] -present free-trade,['principle'] -block was,['comparatively'] -lumber-room you,['it'] -Take your,['pistol'] -grandfather was,['a'] -day or,|['two', 'in', 'rather', 'night']| -how caressing,['and'] -loves her,|['husband', 'devotedly']| -him when,|['he', 'we', 'there', 'summoned', 'Holmes', 'I', 'the']| -Come! then?',['I'] -handsome competence,['uncle'] -if he,|['is', 'could', "won't", 'gets', 'had', 'would', 'evolved', 'wants', 'were']| -deal discoloured,['There'] -regained our,['cab'] -stairs however,['she'] -Holmes unlocked,['his'] -laugh Shillings,['have'] -what their,['object'] -very expressive,['sometimes'] -were well,|['within', 'upon']| -gems are,|['still', 'found never']| -she It,['is'] -lash however,['was'] -men if,['we'] -emotion in,['a'] -brougham is,['waiting'] -soft mould,['which'] -very slow,['but'] -men in,|['the', 'England a']| -a movement,['and'] -into her,|['sitting-room', 'hand']| -all right,|['have', 'the', 'said', 'though', 'with', 'is']| -definite business,['It'] -four million,['human'] -same questioning,['and'] -broke out,|['which', 'I', 'between', 'from']| -gin-shop approached,['by'] -rich men,['if'] -goose It,['was'] -is any,|['reason', 'humiliation']| -the barber,['They'] -cool and,['desperate'] -exactly 4:35,['walking'] -unbuttoned in,['the'] -the Grosvenor,['Square'] -wears thick-soled,['shooting-boots'] -back So,['Frank'] -inside the,|['envelope', 'bedroom', 'house', 'club']| -convenience and,['yet'] -see your,|['pal', 'father']| -at arm's,['length'] -note which,['was'] -mould was,['now'] -pains said,['he'] -His manner,['was'] -I struck,['him'] -so like,['her'] -natural manner,['I'] -my hardened,['nerves'] -down their,['horses'] -was settling,['down'] -to absolute,['secrecy'] -nearly ten,["o'clock"] -simple the,['explanation'] -daintiest thing,['under'] -probably drink,['at'] -so gently,['that'] -as we,|['paced', 'stepped', 'could', 'entered', 'walked', 'turned', 'looked', 'emerged', 'were', 'followed', 'sat', 'get', 'might', 'have', 'drove', 'can', 'swung', 'came', 'filed', 'climbed', 'had', 'travelled', 'reached', 'took', 'went', 'go', 'heard', 'may', 'know']| -theories cried,['the'] -word without,['compromising'] -Holmes laughed,['Here'] -issues hang,['from'] -thousand We,['even'] -with and,['I'] -by old-fashioned,['shutters'] -edge A,['girl'] -for colour,['Never'] -the making,['of'] -One singular,['point'] -NORTON ne,['ADLER'] -at zero,['I'] -with any,|['other', 'investigation']| -as when,|['for', 'seen', 'you', 'it']| -all drawn,['and'] -together to,|['Holmes', 'listen']| -every prospect,['that'] -window or,['the'] -shared with,['all'] -sympathy were,['deeply'] -Mr Holder,|['that', 'we', 'and', 'We', 'There', 'I', 'said', 'Oh', 'It']| -flitted away,['into'] -considerably The,['possession'] -Holmes with,|['a', 'his', 'enthusiasm']| -McCarthy came,['running'] -There said,['he'] -His boots,|['too', 'his']| -go on,|['to', 'with', 'year']| -cover my,['face'] -explained his,['process'] -fact connected,['with'] -my power,|['of', 'to', "I'll"]| -daughter She,['is'] -Two years,['ago'] -He will,|['find', 'be']| -having apparently,['given'] -ugliness A,['broad'] -swift in,['making'] -astonished as,['you'] -is precisely,['for'] -third and,['fifth'] -slipped down,|['got', 'and']| -been paid,['for'] -a victim,['had'] -but since,|['your', 'as', 'then']| -He doesn't,['look'] -my position,|['yet', 'I', 'when', 'you']| -invent nothing,['more'] -an evil,|['time', 'dream']| -do is,|['but', 'to', 'fortunate', 'a']| -his tiny,['stock'] -is interesting,['said'] -all sodden,['with'] -twenty paces,['across'] -hellish thing,['what'] -cunning than,['himself'] -few things,['packed'] -quiet streets,['which'] -the driver,|['your', 'is', 'pointing']| -Oh my,['God'] -Now then,|['Found', 'You']| -you an,|['opinion', 'order', 'apology', 'idea']| -Friday Was,['it'] -before myself,|['Kindly', 'Ha']| -you at,|['the', 'Horsham', 'all', 'least']| -you as,|['far', 'a', 'to', 'it', 'shortly', 'my']| -the commonplace,['smiled'] -compensated for,['by'] -from each,['other'] -approached by,|['the', 'a']| -land contained,['that'] -good-night He,['included'] -rather I,['confess'] -the Friday,['Was'] -every form,['of'] -had considerable,['experience'] -J O,['Then'] -had transpired,['as'] -severe were,['the'] -cunning that,['I'] -assured and,['easy'] -lived we,['had'] -completed their,['tunnel'] -little may,['as'] -his first,|['yawn', 'independent']| -a fairer,['view'] -must collapse,['I'] -some opinion,['there'] -large His,['whole'] -the whereabouts,['of'] -gently waving,['his'] -battered billycock,['but'] -the wharf,['and'] -moment of,|['the', 'our']| -clutched at,|['his', 'my']| -was Would,['she'] -other page,['in'] -their land,|['contained', 'before']| -from jealousy,['or'] -and soda,|['in', 'and']| -cleared John,['Swain'] -knows best,['what'] -his hair,|['had', 'all', 'is', 'the', 'like', 'seemed']| -to death,|['in', 'and']| -very cunning,['man'] -informed that,['you'] -It brings,['me'] -me suddenly,['and'] -make yourself,['absolutely'] -window could,|['be', 'see']| -near your,['door'] -he pushed,['and'] -much more,|['favourable', 'respectable', 'important', 'likely', 'feeble']| -needs a,|['wash', 'great']| -be injustice,['to'] -to-morrow? I,['answered'] -lady waiting,['for'] -my wound,|['I', 'dressed']| -having her,['waylaid'] -Street and office?",['the'] -slow process,['of'] -his breath,['Suddenly'] -afterwards at,['the'] -not one,|['word', 'of']| -from off,['the'] -protruding his,['skin'] -word was,['no'] -my voice,['in'] -all will,['not'] -succeed me,['in'] -a red-covered,['volume'] -time when,|['William', 'he', 'I']| -a shade,|['of', 'whiter']| -received. A,['Frenchman'] -merest moonshine,['moonshine'] -He came,['back'] -line the,|['north', 'first']| -then threw,['himself'] -over of,['the'] -further parley,['from'] -deeply and,['covered'] -were unapproachable,['from'] -that my,|['eyes', 'lucky', 'hair', 'assistant', 'pal', 'colleague', 'own', 'girl', 'grandfather', 'mind', 'poor', 'companion', 'secret', 'wife', 'fears', 'sister', 'grip', 'profession', 'thumb', 'first', 'client', 'treasure', 'cousin', "companion's"]| -left both of,['them'] -BOSCOMBE VALLEY,['MYSTERY'] -undoing the,['heavy'] -person has,['a'] -feel easy,['until'] -a page,['from'] -either Mr,['William'] -misfortune this,['would'] -explain them,['is'] -permission we,['shall'] -help gone,['to'] -first person,['it'] -experience to,['tell'] -impunity or,['in'] -Georgia will,['await'] -promised her,['on'] -eye caught,|['the', 'something']| -Streatham together,['and'] -this double,['point'] -thick black,['veil'] -my young,['ladies'] -to-morrow morning,|['no', 'between']| -stream and,['it'] -feeling that,|['I', 'some']| -learn all,['that'] -wretched gipsies,['in'] -round it,|['and', 'but', 'to', 'woods']| -fellow Merryweather,['is'] -disturb it,['have'] -eventually got,['to'] -she could,|['not', 'but', 'see', 'hardly', 'do']| -round in,['the'] -key of,['the'] -writhing fingers,['protruded'] -hideous aspect,['who'] -to sleep,|['and', 'in', 'the']| -white creases,['of'] -evil time,['might'] -left at,['two'] -hurried glance,['around'] -Botany variable,['geology'] -and follow,['up'] -gaol rose,['and'] -followed him,['Some'] -coming back,|['dejected', 'I']| -excited as,['I'] -fly to,['my'] -also a,|['pair', 'greater', 'bird', 'conceivable']| -left an,['impression'] -perhaps he,|['has', 'hardly', 'observed', 'was']| -very old,|['and', 'mansion', 'hands']| -be neutral,['do'] -Ross at,['the'] -asked will,['very'] -problem which,|['by', 'you']| -smoked a,|['cigar', 'pipe']| -well known,['to'] -been drawn,|['so', 'out', 'from', 'to']| -go really,["don't"] -run I,['am'] -brought up,|['and', 'upon', 'a']| -hard deep-lined,['craggy'] -some points,['a'] -brought us,['to'] -from above,|['On', 'Holmes', 'As']| -supply of,|['the', 'creatures']| -smoke which,['streamed'] -our shoulders,['at'] -son You,['give'] -is another,['note'] -was pledged,['to'] -the measured,['tapping'] -paid in,['ready'] -is unthinkable,['on'] -Mother said,['he'] -the eyes,['of'] -silence to,['the'] -stood listening,['And'] -extraordinary Puzzle,['as'] -and Toller,['will'] -this good,['gentleman'] -and focus,['of'] -He lay,['back'] -understand richer,['by'] -colour had,['been'] -engineer is,['Dr'] -largest stalls,['bore'] -little late,['but'] -raised to,['it'] -come now,['out'] -light did,['so'] -Every clue,['seems'] -gras pie,['with'] -may suffer,['unless'] -trusty comrade,['is'] -their heels,['in'] -while waiting,['Then'] -American be,['and'] -Eyford that,['was'] -two places,['in'] -could never,|['guess', 'tell']| -my affairs,['I'] -possibly whistle,['yourself'] -part of,|['his', 'the', 'my', 'Lord']| -being that,['you'] -little dim-lit,['station'] -and radiance,['that'] -two nights,['later'] -several other,['indications'] -Backwater tells,['me'] -he emerged,|['in', 'looking']| -A brown,['chest'] -bridegroom moves,['Fresh'] -coroner and,['the'] -this cross-questioning,['I'] -the colony,['as'] -imprudence to,['leave'] -to-day upon,['some'] -day glisten,['with'] -malignant boot-slitting,['specimen'] -Duchess of,|['Devonshire', 'Balmoral']| -waiting so,['eagerly'] -muttered to,['themselves'] -the handling,['of'] -how all,['this'] -the men's,['heads'] -They each,['led'] -That dreadful,['sentinel'] -would rest,['the'] -diary The,['writing'] -husband out,['from'] -wonderful chains,['of'] -the plugs,['and'] -less distinct,['than'] -These pretended,['journeys'] -the injuries,|['reveal', 'There']| -On account,['of'] -England in,['connection'] -colleague I,['hate'] -thin sighing,['note'] -bag Come,['on'] -shall return,['by'] -fond of,|['sport', 'playing', 'a']| -Draw up,['a'] -had come,|['in', 'to', 'between', 'He', 'upon', 'from', 'back', 'down', 'here', 'he', 'newcomers', 'over']| -a retort,['and'] -ease with,['which'] -Sherlock Holmes.,['McCarthy'] -the acting,['but'] -a dress,['indoors'] -impatiently when,['I'] -the snake,|['is', 'before']| -off however,['am'] -equality as,['they'] -my finger,|['could', 'on']| -weather You,['look'] -|that name,|,['you'] -secret Then,['he'] -tragedy that,['had'] -this affair,['the'] -great public,['scandal'] -quite invisible,['to'] -made the,|['acquaintance', 'inspector', 'sign']| -of Pondicherry,['seven'] -leaving the,['office'] -|time yes,|,['Mr'] -wind up,['by'] -dear madam,['said'] -besides the,['little'] -you satisfied,['it'] -of them,|['and', 'seemed', 'write', 'I', 'had', 'The', 'your', 'present', 'were', 'A', 'who', 'held', 'then,', 'Which', 'was', 'which', 'wear', 'would', 'with', 'however', 'again just', 'so', 'could', 'in', 'has']| -face that,|['a', 'I']| -then shown,['in'] -and figure,['were'] -him loose,['every'] -the status,['of'] -ruined coronet,['was'] -so prompt,['as'] -form Is,['the'] -could meet,['us'] -giving advice,['to'] -was headed,['March'] -window to,['watch'] -disappeared in,['an'] -the massive,['masonry'] -ajar Beside,['this'] -persistence With,['my'] -his frock-coat,['a'] -runs it,['has'] -glowing eyes,['and'] -we conveyed,['her'] -avert scandal,['and'] -just now.,['other'] -fuller's-earth said,['I'] -copper but,['was'] -younger than,|['herself', 'her']| -found the,|['card', 'dead', 'ash', 'brass', 'den', 'latch', 'summer', 'charred', 'young']| -in themselves,['but'] -chair It,['is'] -it? but,['with'] -nothing You,['are'] -my horror,|['and', 'there']| -the toy,['which'] -which make,['me'] -until you,|['explain', 'had', 'have']| -his clay,|['pipe', 'when']| -inward and,['outward'] -soon overtook,['Frank'] -of faded,['laurel-bushes'] -station-master did,['it'] -grey eyes,|['He', "well,'", 'wandered']| -a quick,|['little', 'eye', 'impatient', 'step']| -father who,['was'] -seen or,['heard'] -slight difficulty,['in'] -companion looking,['at'] -help it,['and'] -help is,['enough'] -which bounded,['it'] -vilest antecedents,['but'] -window rapidly,['and'] -precaution has,['to'] -his bright,['little'] -seen of,['the'] -he were,['indeed'] -four or,['five'] -night until,|['it', 'my']| -certainly surprised,['to'] -a gaol-bird,['for'] -my limits,['in'] -he pulled,['a'] -I slink,['away'] -four of,|['their', 'them']| -some surprise,['and'] -girl as,['you'] -peculiarities of,['the'] -cigars in,|['their', 'the']| -halfway down,['the'] -who sleeps,['in'] -beer he,['answered'] -eaves That,['is'] -possible at least,['until'] -|you," said|,['my'] -tugging at,['one'] -less private,['than'] -the doorway,['and'] -of keys,['and'] -some remark,['to'] -enough of,|['you', 'it', 'this']| -wonderful man,['for'] -As she,['swept'] -moment to,|['lose', 'me']| -angry as,['perplexed'] -long grey,|['travelling-cloak', 'dressing-gown']| -Chronicle said,['she'] -this four-year-old,['drama'] -culprit is ,['John'] -in crime,['was'] -ago Then,['he'] -noiselessly as,['she'] -urgent one,['be'] -Holmes how,['curious'] -patches by,['smearing'] -he humours,['her'] -sly so,['I'] -curled upward,['and'] -reached this,['one'] -the margin,['by'] -affairs A,['short'] -free-trade principle,['appears'] -was perfectly,|['simple', 'obvious', 'happy']| -your ears,['I'] -discuss what,['you'] -of losing,['a'] -yourself very,['wet'] -other large,['towns'] -will go,|['to', 'in', 'when']| -ago some,['repairs'] -slight frost,['it'] -hansom driving,['with'] -crushed Holmes,['stuck'] -this corner,['were'] -she meant,['slang'] -black hat,|['his', 'of']| -crowd trust,['that'] -thought I'd,['bring'] -to search,|['for', 'me']| -who employs,['me'] -my goose,['now'] -side-lights of,['a'] -hope and,['some'] -two glasses,['of'] -pity that,['she'] -eye upon,['my'] -my illustrious,['client'] -over and,|['turning', 'read', 'gone', 'to', 'he', 'almost']| -it off,|['therefore', 'banker']| -of temper,['approaching'] -eclipses and,['predominates'] -ago were,['travelling'] -she would,|['not', 'send', 'be', 'am', 'have', 'make', 'recognise', 'fain', 'need']| -cleared yet,['Sherlock'] -earth dear,['fellow'] -a household,|['word', 'What']| -heavily but,['he'] -living They,['appear'] -its hard,['rough'] -sovereigns for,['my'] -mother had,['left'] -proportion do,['not'] -slabs of,|['marble', 'metal']| -allow me,['to'] -every night,|['Mr', 'The', 'for', 'and']| -six or,['eight'] -Was dressed,|['when', 'in']| -hurt she,['asked'] -his Majesty,['to'] -old room,['at'] -I answered,|['I', 'was', 'good-bye,', 'frankly', 'The', 'But', 'glancing', 'laughing', 'but', 'is', 'any', 'sharply', 'that', 'advertisements', 'firmly']| -my money,|['or', 'settled', 'to']| -been two,['murders'] -little stately,['cough "had'] -hansom but,['as'] -six of,['us'] -contains the,['coronet'] -be among,['the'] -evil of,['such'] -the power,['of'] -I did,|['manual', 'not', 'bang', 'it', 'what', 'to', 'saw', 'You', 'break', 'I']| -sitting upon,['five'] -and giving,['advice'] -attention to,|['the', 'it', 'this']| -thrill of,['terror'] -intricate matter,['which'] -his cousin,|['walking', 'however']| -every week,['we'] -Now from,['this'] -being some,['day'] -breathing now,["can't"] -lady has,|['a', 'arrived']| -of four,['fingers'] -of burned,['paper'] -surprised to,|['hear', 'find', 'see']| -of foul,['play'] -mumbled several,['words'] -long ceased,['to'] -Then again,|['I', 'the']| -ran along,['and'] -lady had,|['hurriedly', 'taken', 'been']| -course there,|['was', 'can', 'is']| -quite unusual,['boots'] -|stimulant you,"|,['said'] -Holmes the,|['more', 'sleuth-hound', 'relentless', 'meddler', 'deadliest', 'hydraulic', 'money']| -me Westaway,['was'] -buffalo and,['wallowed'] -sir because,['I'] -call He,['looked'] -her limbs,['were'] -later upon,['the'] -matter here,['I'] -place with,['Colonel'] -and innocent,['one'] -average takings but,['I'] -and hurling,|['them', 'the']| -cloak which,|['was', 'I']| -town to-day,['upon'] -made upon,['it'] -say with,['a'] -coroner have,['been'] -once by,|['paint', 'a', 'the']| -to having,|['been', 'heard', 'rushed']| -glare and,['what'] -the fields,['There'] -served them,['was'] -after all,|['begin', 'if', 'However', 'but', 'But', 'it', 'will', 'proves', 'Yet', 'social,', 'this', 'those', 'the', 'My']| -mingled horror,['and'] -he seated,['himself'] -expression which,['veiled'] -so from,['Eyford'] -of examination,['are'] -conception as,['to'] -letters But,['what'] -burly man,['with'] -round myself,['then'] -passing through,['the'] -smell grew,['stronger'] -but very,|['quietly', 'small']| -swiftly backward,['and'] -few acres,['of'] -of sea-weed,['in'] -morning with,|['her', 'the']| -we walked,['away'] -rubbed it,['twice'] -last week,|['I', 'to']| -the pungent,['cleanly'] -be again,['He'] -garden and,['two'] -exactly fitted,['the'] -looking I,['thought'] -you provided,['only'] -was removed,|['it', 'loudly', 'to']| -back before,|['the', 'evening', 'three', 'he']| -remarking its,['beauty'] -very strongest,|['points', 'motives']| -excellent ears,['If'] -to sitting,['here'] -artificial knee-caps,['and'] -was left,|['me', 'in', 'save']| -past the,|['cheekbones', 'maid', 'servant', 'Goodwins']| -drove fast,['I'] -way home,['she'] -about an,['investment'] -think Miss,|['Holder', 'Hunter']| -not keep,['you'] -you make,|['of', 'him']| -to opium,['The'] -glanced across,['at'] -dear Holmes,|['said', 'has,', 'yes,', 'have']| -wrongfully hanged,['is'] -pitiable as,['possible'] -defects The,['same'] -Lascar manager,['Now'] -the ruddy-faced,['white-aproned'] -facts before,['you'] -but come!,|['time,']| -nodded to,['show'] -then turn,['the'] -to who,|['our', 'this']| -Australians There,['is'] -opening his,['eyes'] -fourteen who,['does'] -coming into,['town'] -over there,['that'] -then up,['at'] -alarm took,['place'] -hat his,['baggy'] -part which,|['he', 'I']| -fix the,['derbies'] -filled for,['the'] -sort And,['now'] -a family?,['answered'] -the mark,|['would', 'I']| -seen someone,['then'] -chestnut It,['has'] -States government,['and'] -another Let,['us'] -son a,['lad'] -it too,['Never'] -it woods,['on'] -out calling,['loudly'] -describe was,['in'] -suddenly another,['sound'] -brought before,['the'] -outside the,|['door', 'conventions', 'house', 'window', 'pale']| -and habit,['his'] -quick intuition,['fastening'] -pay such,['a'] -an examination,['of'] -office-like room,['with'] -so something,['just'] -roofs some,['distance'] -cried well,['And'] -our hands,|['Let', 'what', 'were']| -very best,|['and', 'quality']| -a brooch,['which'] -exceedingly complex,['Consider'] -present prices,['of'] -little out,['of'] -have mentioned,['for'] -a whisky,['and'] -at Miss,['Hunter.'] -saved if,['I'] -gruff monosyllable,['she'] -for is,['the'] -a proposal,['and'] -shiny seedy,['coat'] -life I'll,['tell'] -crab thrown,['out'] -our window,['we'] -Holmes Surely,['this'] -wood As,['I'] -answered It,['is'] -perils than,['did'] -night sir,['but'] -always appears,['to'] -where any,['man'] -in perfectly,['black'] -friend was,['an'] -his kindness,['to'] -us care,['for'] -writ served,['upon'] -so afterwards,['we'] -does. Mary,['and'] -cabs were,['dismissed'] -were just,|['being', 'beginning', 'throwing', 'like', 'two']| -of making,|['me', 'his', 'up', 'friends', 'the']| -Thank you,|['Now', 'And']| -all fear,['of'] -the latch,['and'] -and doors,['the'] -when for,['days'] -Cook of,['the'] -grate there,['was'] -by your,|['uncle', 'theory', 'son']| -side Ha,['Well'] -blonde woman,['stood'] -animated There,['was'] -am illegally,['detained'] -letter The,['photograph'] -|accomplishments? accomplishments,|,['sir'] -sat when,['a'] -suffer unless,['some'] -faster and,['stared'] -in darkness,|['shall', 'Evidently']| -maddening it,['must'] -face which,|['looked', 'she', 'spoke', 'was', 'made']| -were engaged,|['upon', 'I', 'after', 'My', 'to']| -silver poured,['in'] -rest there,['was'] -had put,|['100', 'myself']| -public prints,['nothing'] -awoke you,['from'] -riveted and,['he'] -heavy sleeper,['and'] -hesitated whether,['to'] -who have,|['been', 'referred', 'retained', 'sought', 'ever', 'handled', 'occasionally', 'no']| -tide But,['a'] -begins to,['twist'] -Watson but,['I'] -some 30,['pounds'] -mines so;,['at'] -to some,|['other', 'extent', 'secret', 'sailor', 'band', 'place', 'lodgings']| -day to-morrow,['large'] -bringing the,['tools'] -Temple It,['was'] -then? I,['asked'] -two persons,['one'] -Pope's Court,|['Fleet', 'looked', 'to']| -most suspicious,['remark'] -examination showed,['that'] -heard Ryder,['of'] -rage You,['have'] -a woman's,|['dress', 'wit', 'sleeve', 'quick', 'face']| -it A,['quick'] -They appear,['to'] -have spoken,|['out', 'now', 'who', 'to']| -abuse your,['patience'] -aspect who,['it'] -well and,|['good', 'had', 'the']| -aside altogether,['I'] -and frogged,['jacket'] -unclasping of,['his'] -few inferences,['which'] -scream and,['threw'] -quite like,['that'] -ship must,['have'] -be open,['to'] -all But,|['I', "I'm"]| -little bundle,['of'] -As we,|['approached', 'entered', 'rolled']| -masculine face,['but'] -betray me,['I'] -not imagine,|['but', 'It', 'what', 'a']| -Hullo Here,['is'] -home the,['goose'] -was turned,['from'] -youth whom,['he'] -Jack says,['he'] -freely as,['before'] -there having,['charming'] -them before,['her'] -an investigation,['The'] -been recommended,['to'] -neat little,|['landau', 'Hosmer']| -success No,['sound'] -never came,['back'] -much prefer,|['to', 'having']| -James Windibank,|['said', 'wished', 'running', 'Voil']| -happen while,['to'] -carpet a,['large'] -little incidents,['which'] -said Miss,|['Stoner', 'Hunter']| -report where,['more'] -and indistinguishable,['Just'] -county out,['upon'] -in evening,['dress'] -seriously was,['only'] -daughter Alice,['now'] -Beyond lay,['another'] -build an,['orphanage'] -letter the,['injunction'] -any legal,['crime'] -a whitewashed,['corridor'] -how a,|['great', 'miners']| -they led,['to'] -so delicate,['that'] -before You,['are'] -hanging lip,['and'] -playing with,['a'] -intention of,|['awaiting', 'going', 'visiting', 'wishing', 'remaining']| -imagination proposition,['which'] -dim-lit station,['after'] -then Good-bye,['it'] -obviously it,['could'] -pay for,['their'] -constable entered,['the'] -eyes are,['as'] -how I,|['employed', 'had', 'read', 'came', 'could', 'trust']| -hastened downstairs,['As'] -safe for,['the'] -|midnight writing,"|,['murmured'] -traces which,['had'] -letter on,['the'] -jewel was,['lying'] -turned her,['back I'] -been the,|['victim', 'lodger', 'last', 'herald']| -travel the,|['letter', 'distance']| -full and,['rich'] -curious as,['to'] -word said,['Holmes'] -fumbled about,['looking'] -and greeting,['his'] -position I,['could'] -bedside of,['the'] -My life,['is'] -nothing will,['fly'] -age for,['he'] -may get,['away'] -water outside,['which'] -always glided,['away'] -hover over,['this'] -acquaintance said,['Holmes'] -and loathing,['He'] -position a,['little'] -indicated Here,['you'] -ponderous commonplace,['books'] -my penetrating,['to'] -business of,['the'] -and glancing,|['along', 'his', 'about']| -for strange,['effects'] -it. concluded,['the'] -lips the,['smoke'] -a Bohemian,['nobleman'] -evening at,|['221B', 'the']| -were present,['then'] -said The,['case'] -the hubbub,['of'] -cloud of,['newspapers'] -was known,['to'] -explanation of,['the'] -terrible would,['be'] -and wayside,['hedges'] -a disadvantage,['they'] -self-lighting Your,['task'] -sealed book,['and'] -woman will,['try'] -a seat,|['said', 'will', 'Miss']| -companion imperturbably,['You'] -and writhed,['his'] -fellow very,['kindly'] -garden I,['lent'] -a search,['in'] -water There,['said'] -whistled shrilly a,['signal'] -a slight,|['bow', 'defect', 'motion', 'stagger', 'tremor', 'shrug', 'leakage', 'forward', 'sir']| -honest fellow,['was'] -all mingled,['in'] -hands frantically,['to'] -shelves and,['open'] -matter and,|['I', 'why', 'it']| -been And,['his'] -chair You,['have'] -you assure,['you'] -the stepfather,['Then'] -face but,['he'] -And yet Well,['I'] -answered is,['absolutely'] -is sweetness,['and'] -obese pompous,['and'] -terms with,['this'] -ones both,['before'] -answered it,['We'] -behind it,|['until', 'road', 'as']| -I congratulate,['you'] -strange side-alley,['of'] -have Jones,['with'] -the estates,['extended'] -of peering,['and'] -little attention,['I'] -pleasure in,['our'] -this sinister,|['way', 'quest']| -of advertising,['my'] -wait and,|['brushed', 'breakfast']| -presumably his,['overcoat'] -dropped to,['the'] -it Mr,|['Holmes', 'Windibank', 'Victor', 'Holder']| -talking of,['what'] -bedrooms opened,['Holmes'] -to bluster,['and'] -weather had,['taken'] -have indeed,['been'] -stands near,['the'] -know quite,['what'] -their tunnel,['But'] -turned towards,['it'] -mother take,['the'] -the drug,|['and', 'an', 'beckoning']| -Simon came,['to'] -who brings,['our'] -of doors,['on'] -with dignity,['after'] -their names,['are'] -lay the,|['short', 'magnificent']| -old house,|['I', 'with']| -of two,|['years', 'voices', 'glowing']| -London season,['I'] -eyes on,['him'] -just beginning,['to'] -at the,|['ease', 'bell', 'neck', 'tops', 'end', 'languid', 'Langham', 'back', 'moment', 'altar', 'same', 'signal', 'corner', 'top', 'open', 'rocket', 'door', 'time', 'bell-pull', 'man', 'offices', 'St', 'houses', 'line', 'head', 'front', 'side', 'queer', 'fringe', 'gasfitters', 'right', 'first', 'forefinger', 'neat', 'bottom', 'bedside', 'dnouement', 'office', 'other', 'sight', 'race-meetings', 'least', 'border', 'inquest', 'pretty', 'mines', 'gold-mines', 'instant', 'pool', 'most', 'boundary', 'Assizes', 'table', 'last', 'diggings', 'outside', 'envelope', 'box', 'roots', 'foot', 'bank', 'breakfast-table', 'postmark', 'clock', 'Bar', 'address', 'present', 'window', 'harvest', 'opium', 'unexpected', 'appearance', 'edge', 'band', 'Hotel', 'hotel', 'conclusion', 'hour', 'hands', 'Alpha', 'bare', 'cringing', 'devil', 'geese', 'opening', 'inquiry', 'Crown', 'station', 'highest', 'rope', "coroner's", 'stroke', 'ventilator', 'chamber', 'strange', 'books', 'handle', 'lock', 'further', 'Westbury', 'Allegro', 'wrong', 'idea', 'numbers', 'little', 'lower', 'large', 'house', 'news', 'scene', 'far', 'coronet', 'expense', 'ladies', 'nature', 'message', 'Black', 'Copper', 'look', 'funny', 'start', 'farther', 'sinister', 'skirt', 'thought', 'silence']| -same intention,['A'] -eyes of,['his'] -heard it,|['is', 'and', 'Holmes', 'all']| -visitor man,['who'] -fantastic Of,['all'] -a bob,['of'] -him for,|['he', 'some', 'I', 'his', 'the']| -heard in,['the'] -it well,|['do', 'to']| -continues I,['have'] -inadequate a,['purpose'] -solution in fact,['as'] -back so.,['But'] -suit theories,['instead'] -crime enough,['and'] -she trying,['hard'] -away by,|['another', 'the', 'these', 'Flora']| -evening paper,['in'] -considerable experience,['of'] -doubt to,|['explain', 'make']| -late said,['he'] -whispered I,['thought'] -what day,|['Friday,', 'did']| -news as,['to'] -was favourably,['impressed'] -case however,['they'] -loves and,['I'] -maids But,['if'] -Backwater Lord,['Eustace'] -said raising,['his'] -a crisis,['was'] -a boy,['to'] -make sure,['of'] -having put,['up'] -can afterwards,['question'] -whined the,['little'] -a decrepit,['figure'] -the adventure,['of'] -here and,|['remember', 'may', 'I', 'we', 'there', "I'll", 'a', 'as', 'drove']| -in command,['of'] -that those,['seven'] -is too,|['much', 'tender-hearted', 'deep', 'terribly', 'serious', 'late!', 'late forever', 'heavy']| -and stained,['they'] -society and,|['did', 'so', 'she']| -the soft,['mould'] -weighted by,['the'] -tap in!",['said'] -paces of,['the'] -intuition until,['those'] -for out,['of'] -for our,['funds'] -thought which,['comes'] -great hoax,['or'] -the dead,|['body', "man's", 'of']| -conclusion the,['contrary'] -years will,['not'] -hand thrust,['into'] -the sleeves,['and'] -better put,['my'] -very close,['to'] -symptoms before,['said'] -evidence pointed,['to'] -breakfast in,['the'] -takes very,['little'] -to commence,['the'] -breast like,['one'] -Watson put,['your'] -now said,|['I', 'he']| -band which,['was'] -the tiniest,['iota'] -delirium sometimes,['that'] -grounds and,['are'] -ruefully as,['we'] -of news,|['you', 'has', 'came']| -years back,|['but', 'and']| -her sore,['need'] -ulster After,['all'] -vouching for,['things'] -the tell-tale,['garments'] -not destined,['to'] -done this,['you'] -which to,|['address', 'an', 'choose', 'leave', 'base', 'back']| -absolutely impossible,['It'] -would call,|['He', 'your', 'over']| -only wish,|['I', 'that']| -gets it,['and'] -side of,|['his', 'the', 'it', 'her', 'this', 'us', 'my', 'a', 'Winchester']| -had steadily,['increased'] -madam not,['trouble'] -some terrible,|['mistake', 'trap']| -strange fads,['and'] -Rucastle coming,['out'] -face forward,['and'] -life Besides,['it'] -across Holborn,['down'] -was withdrawn,['as'] -kept a,|['cheetah', 'keen']| -have hopes,|['have', 'come.']| -I hoped,['the'] -night--it was,['on'] -briskly from,['her'] -that time.,['only'] -long remain,['unavenged'] -in sorrow,['and'] -a carriage,|['came', 'said', 'to', 'the']| -rich with,['a'] -door The,['passage'] -single-handed against,['a'] -Miss Mary,|['Sutherland', 'Holder']| -had resolved,['to'] -high central,['portion'] -gave even,['my'] -some building,['going'] -brougham and,['a'] -the harvest,['which'] -use it,|['within', 'soon', 'unless', 'If']| -next room,|['at', 'perhaps', 'had', 'I']| -hot-blooded and,['reckless'] -I pondered,['over'] -came from perhaps,['from'] -stolen? he,['cried'] -visited in,['Northumberland'] -whitewashed corridor,|['with', 'from']| -should recommend,['you'] -is unfortunately,['more'] -made out,|['here', 'the']| -made our,['way'] -far greater,['than'] -carried himself,['in'] -acted before,['this'] -I smoked,['a'] -reduced to,['such'] -prefer it,['Are'] -Moran back,['in'] -was it,|['to', 'then', 'done', 'said', 'is', 'brought', 'sir']| -absolute darkness,|['as', 'outside']| -suit facts,['But'] -two curving,['wings'] -good as,|['yours', 'a', 'your', 'her', 'our', 'to']| -was in,|['the', 'low', 'playing', 'such', 'dreadful', 'France', 'a', 'one', 'front', 'favour', 'Bristol', 'him', 'March', 'vain', 'error', 'January', 'fear', 'June', 'search', 'India', 'her', 'little', 'time', 'Montana', 'me', 'our', 'his', 'bed']| -My whole,['examination'] -I lent,['the'] -hospitality of,['their'] -one particularly,['were'] -persistently floating,['about'] -and shrunk,['against'] -he desires,['to'] -all why,['did'] -prosperity to,['your'] -not shake,['off'] -even so,['self-evident'] -heard from,|['Major', 'his']| -unless I,['am'] -Doctors Commons,['where'] -we heard,|['the', 'a', 'it', 'her']| -hesitated to,['jump'] -why does,['he'] -get quite,['mad'] -took that,['it'] -The boards,['round'] -At first,|['I', 'of', 'it']| -said scribbled,['a'] -the cocked,['pistol'] -firm I,['would'] -sketched out,['what'] -fuller's-earth which,['as'] -clear you,['remember'] -grey and,['her'] -statement very,['clearly'] -latter raise,['up'] -a smear,['of'] -confidence which,['I'] -our friend's,['premises'] -driven over,|['to', 'by']| -so. There,['you'] -private bar,['and'] -had many,['disagreements'] -thrust this,['creature'] -who comes,['under'] -forwarded to,['226'] -him yourselves,['to-night'] -the hat-securer,['They'] -lake formed,['by'] -night Your,['niece'] -pistol shots,['Our'] -splendid pay,['and'] -breaking when,['I'] -strolled out,['in'] -impatient under,['this'] -intervals of,|['note-taking', 'sulking']| -lay heavy,['upon'] -hold to,['have'] -See that,['light'] -keen eyes,['with'] -in clearing,|['up', 'the']| -said but,|['it', 'at']| -long lash,['which'] -cap and,['frogged'] -agonies I,['had'] -unhappy family,['Holmes'] -directors and,['he'] -puffed out,['his'] -own theory,['as'] -of Four,|['and', 'yes.']| -been used,['If'] -the bell-rope,|['in', 'remarked', 'and', 'which']| -this curse,['had'] -those out-and-out,['pirates'] -grew low,['over'] -a cabman,['as'] -that suspicion,['would'] -certainly get,['seven'] -Holmes so.,['Now'] -out at,|['five', 'other', 'the', 'a', 'some', 'me', 'his']| -young She,['is'] -doubt was,|['too', 'responsible']| -stammered heart,['had'] -escape For,['all'] -not of,['a'] -are very,|['often', 'kind', 'commonplace', 'much', 'distinct', 'deep', 'incomplete', 'fine', 'light']| -pro magnifico,['you'] -Windibank that,['in'] -would condescend,['to'] -not on,|['my', 'the']| -a detail,['which'] -remarked they,['have'] -fell Still,['it'] -done you,['full'] -and February,['in'] -a perpetual,|['snarl', 'smell']| -and heartless,['a'] -over-bright pawnbroker,['out'] -with long,|['windows', 'purses']| -business He,['brought'] -will certainly,['get'] -oak shutter,['heavily'] -den what,['happened'] -engineer 16A,['Victoria'] -your daughter,|['who', 'fat']| -him credit,['for'] -announce that,['two'] -Turner On,['the'] -suitor for,['some'] -the richest,|['in', 'man']| -ask it,['of'] -be forgiven,['and'] -about some,['of'] -creature Mr,['Holmes'] -about with,|['her', 'a']| -an end,|['Irene', 'an', 'sir.', 'in', 'of', 'to']| -the true,|['story', 'facts', 'solution', 'character', 'state']| -invaluable as,['a'] -has reaped,['in'] -her that,|['she', 'there', 'he', 'I', 'the']| -the howl,['of'] -occurred Miss,['Stoner'] -the curb,['followed'] -the cure,['I'] -direction of,|['the', 'Reading']| -what am,['I'] -was characteristic,['of'] -nor anything,['else'] -shown signs,['of'] -public who,['could'] -two tresses,['together'] -her than,['what'] -was filled,['A'] -concealed three,['gems'] -thrown into,['the'] -himself has,['been'] -your example,|['is', 'held']| -twopence a,|['glass', 'sheet']| -there adding,['that'] -motives for,['standing'] -of hydrochloric,['acid'] -is dug,['out'] -features Holmes',['quick'] -be colourless,['in'] -acceptance of,['the'] -of hideous,['aspect'] -opposite to,['him'] -mouth and,|['Holmes', 'with']| -But here" I,['picked'] -spoke of,|['the', 'those', 'coming']| -a criminal,['it'] -that question,['in'] -more difficult,|['it', 'For']| -some weapon,['or'] -not forgotten,['the'] -that case,|['I', 'we', 'Miss']| -a brief,['and'] -Beeches five,['miles'] -Now turn,['that'] -had told,|['the', 'me']| -them the,|['photograph', 'twelve-mile']| -going I,['then'] -Holmes interposed,['your'] -it he,|['cried', 'leaned', 'said', 'is', 'laid', 'snarled', 'answered', 'asked', 'gasped', 'kept']| -as that?,['work'] -were received,['by'] -the fashion,['of'] -go back,|['to', 'train']| -and expensive,['habits'] -and consuming,['an'] -absurd contrast,['to'] -Ryder Pray,['take'] -tangled red,['hair'] -little said,['he'] -the ceremony,|['and', 'did']| -fleecy clouds,['in'] -thought gone,['to'] -prick up,['my'] -instant and,|['there', 'I']| -not tell,|['me', 'what', 'you', 'a']| -the marriage,|['but', 'market', 'would', 'is', 'celebrated']| -asked What,['do'] -felt like,['one'] -I fear,|['that', 'a', 'and']| -|is, I|,|['am', 'think']| -how fond,['he'] -confidential maid,['and'] -their purpose,['Well'] -they all,|['Maggie?', 'open', 'fastened']| -showed it,['was'] -be impossible,|['to', 'but']| -my anger,['Mary'] -it drew,['out'] -business at,['Coburg'] -converse is,['equally'] -as resembling,['her'] -our operations,['we'] -good-day complimented,['me'] -our positions,['These'] -business as,['much'] -ears are,['pierced'] -companion that,['was'] -hardly safe,['and'] -his representative,['both'] -chimneys showed,['that'] -Father was,['a'] -and plunging,['in'] -a trite,['one'] -flight but,['since'] -power was,|['in', 'used']| -eyes He,['shot'] -seemed to,|['be', 'vary', 'me', 'know', 'open', 'come', 'think', 'surprise', 'strengthen', 'dilate', 'lead', 'blend', 'have', 'tax', 'her', 'hear', 'give', 'span', 'go', 'us', 'take']| -lost without,['my'] -he exclaimed,['at'] -stop on,['it'] -been turning,['out'] -Square fountain,['he'] -breakfast-table so,['that'] -presently Jump,['up'] -were burned,['by'] -fourteen Patience,['Moran'] -finds his,['first'] -his beggary,['and'] -the trail,['in'] -the train,|['together', 'steamed']| -consequence at,['any'] -exposure He,['had'] -hunting crop,|['from', 'came', 'handy']| -features messenger,['reached'] -centre you,['are'] -(with considerable,['confusion'] -daughter of,|['the', 'a', 'Aloysius']| -that But,|['the', 'come', 'I']| -to bring,|['your', 'the', 'it', 'home', 'him', 'me', 'one']| -his invariable,['success'] -jolted terribly,['I'] -very thoroughly,['It'] -sold you,['the'] -and strong,['woman'] -sacrificed also,['By'] -party would,['return'] -a marriage,|['between', 'with', 'was']| -from operatic,['stage ha'] -But among,['them'] -cry call,['for'] -his nervous,['system'] -glancing over,|['them', 'the', 'my']| -or it,|["won't", 'may', 'would']| -to reason,['from'] -I turned,|['over', 'to', 'the', 'and']| -to wait,|['and', 'you', 'A', 'for', 'I', 'in', 'she', 'until']| -you're looking,['at'] -machinery of,['justice'] -strongly recommend,['you'] -a bonnet,|['on', 'and']| -or if,|['he', 'they']| -close examination,['of'] -been disappointed,['in'] -marriage Was,['Under-Secretary'] -which of,|['course', 'these']| -first green,['shoots'] -he left,|['me', 'a']| -which on,|['a', 'consideration']| -your letters,['then'] -another My,['niece'] -stone and,|['held', 'I']| -the poker,['and'] -Two hours,['passed'] -a newcomer,['must'] -for recovering,['lost'] -Saturday rather,['complicates'] -client his,['friend'] -irresistible force,['from'] -the matter.,['Coroner:'] -north said,['I'] -I undid,['my'] -Pritchard were,['among'] -my poor,|['little', 'father', 'sister', "father's", 'Frank', 'hair']| -rest for,|['me', 'my']| -we keep,['a'] -instant And,['above'] -mountains so,['that'] -me time,['to'] -gospel for,['I'] -leg wears,['thick-soled'] -other about,['Lord'] -colour began,['to'] -the class,['think'] -twilight and,['as'] -bachelor were,['all'] -the man,|['who', 'of', 'and', 'save', 'upon', 'himself', 'to', 'catch', 'that', 'uttered', 'or', 'whom', 'with', 'shocked', 'was', 'sent', 'puffing', 'too', 'were', 'in']| -fortune to,|['any', 'have']| -an extra,|['couple', 'tumbler']| -the mad,['elements blown'] -you all,|['those', 'the', 'a', 'my']| -market-place said,['he'] -was mad insane,['have'] -away these,['bleak'] -loomed behind,['his'] -the following,|['enigmatical', 'paragraph']| -the map,['What'] -evil passion,['was'] -us There,|['are', 'was']| -mostly done,['of'] -the mat,['to'] -chronic disease,['sit'] -clue could,['you'] -who loathed,['every'] -for ourselves,|['it', 'Frank']| -have remained,|['in', 'The', 'forever']| -Holmes Come,['with'] -guidance of,['Mr'] -are right,|['he', 'said', 'Mr']| -tut!" cried,['Sherlock'] -upstairs at,['night'] -he struck,|['at', 'gold']| -flattered herself,['that'] -just made,['up'] -prison shall,['never'] -citizens of,|['the', 'London']| -show us,|['what', 'how']| -costume is,['nothing'] -a couch,['I'] -way see.,['Then'] -their united,['strength'] -was to,|['introduce', 'my', 'be', 'him', 'some', 'settle', 'set']| -the trough,|['of', 'By']| -after him,|['a', 'pulled']| -seen what,|['he', 'was']| -When Horner,['had'] -see to,['anything'] -better It,['is'] -earn a,['little'] -the parts,['which'] -voice "have you,['never'] -practical with,['your'] -the party,|['with', 'would']| -heading upon,['which'] -after his,|['departure', 'interview']| -papers here,['and'] -looked through,['and'] -wife tried,['to'] -week without,['rest'] -and power,['to'] -big ledger,['Now'] -stake and,['that'] -villages where,['a'] -dozen for,['the'] -against the,|['blind', 'curb', 'lights', 'strict', 'poetic', 'glare', 'table', 'son', 'young', 'windows', 'terror', 'flood', 'wind', 'prisoner', 'light', 'wall', 'end', 'door', 'little', 'absolute', 'railings', 'eaves']| -that appointment,['he'] -lurking behind,['the'] -by?" landlord,['of'] -cried several,['voices'] -be unless,['it'] -matter said,['I'] -and smoothing,['it'] -a mere,|['vulgar', 'pittance', 'detail', 'whim', 'oversight']| -not mean,|['bodies', 'that']| -it only,['to'] -house with,|['me', 'corridors', 'three', 'Toller']| -whom of,['all'] -chair said,['Holmes'] -Bristol and,|['had', 'marry', 'his']| -The fire,|['was', 'looks']| -Warsaw I,['made'] -ejaculated so.,['I'] -tell where,['it'] -example held,['out'] -band whispered,['Holmes'] -Holmes tossing,['aside'] -are flying,['westward'] -vessel in,['which'] -is utterly,['crushed'] -treat But,['this'] -interview but,|['he', 'I']| -words when,['young'] -He locked,['the'] -surprise was,['none'] -had crossed,|['the', 'them']| -eleven Give,['her'] -the safe,|["stepfather's", 'the']| -several times,|['up', 'became', 'lately']| -Windibank It,['is'] -it horror-stricken,['not'] -was conspiring,['or'] -Allegro and,['that'] -fattened it,['expressly'] -losing sometimes,['finding'] -am an,|['old', 'orphan']| -am sorry,|['that', 'to']| -passage until,['she'] -means we,['shall'] -Holmes sixty;,['but'] -you founded,['upon'] -did Peterson,['do'] -time rather,['to'] -manner suggested,['that'] -this remarkable,['episode'] -remarks about,['the'] -and colleague,|['Dr', 'I']| -do as,|['much', 'you']| -visiting the,['rabbit'] -was marked,['in'] -wedding missed,['him'] -madam name,['is'] -confidant the,['Lascar'] -feet he,['beat'] -be connected,['with'] -cupboard of,['the'] -seemed strange,['talk'] -indeed now,['cried'] -t woven,['into'] -spinning fine,['theories'] -uncle's perplexity,['son'] -own secreting,['Why'] -thrusting out,['like'] -game-keeper as,['he'] -the folk,|['all', 'were', 'from', 'that']| -afternoon We,['rattled'] -shaken than,['I'] -lawn in,['front'] -morning broke,['bright'] -my curiosity,|['and', 'so', 'was']| -rushing figures,['and'] -had stretched,['out'] -alive or,['dead'] -it more,['But'] -means first,['and'] -not allow,['it'] -uneasiness began,['to'] -extremely dark,['and'] -murderous indeed,['horrify'] -volumes of,['poetry'] -the creaking,['of'] -the meanwhile,['for'] -they talked,['of'] -size of,['a'] -one waiting,['I'] -us She,['had'] -was drawn,|['from', 'quite']| -singular point,['which'] -wrists protruded,['from'] -conscience Your,['niece'] -scar which,|['by', 'had']| -mask continued,['our'] -and paper-mills.,['Ha'] -they listened,['to'] -estate with,['all'] -heavily than,['you.'] -thinker of,['the'] -these points,['for'] -set off,|['in', 'for']| -that About,['this'] -the journey,['but'] -nor garden,['were'] -rose briskly,['from'] -her drive,['at'] -us doubt,['you'] -charge at,['that'] -time done,['manual'] -more vigorously,['than'] -him over,|['utterly', 'the']| -a will-o'-the-wisp,['but'] -King reproachfully,['indeed.'] -is remarkable,['in'] -me neither,|['house', 'favourably']| -my index,|['Doctor', 'in']| -a danseuse,['at'] -hope so,['But'] -Doran Esq.,['of'] -him keep,['the'] -been surprised,['at'] -centre The,['boards'] -well both,['put'] -could account,['for'] -above her,['head'] -bloc in,['a'] -his face,|['And', 'extending', 'and', 'At', 'yet."', 'though', 'while', 'His', 'an', 'with', 'as', 'was', 'in', 'even', 'into', 'onto', 'half', 'which', 'is', 'towards', 'could', 'to', 'are', 'buried', 'I', 'Toller']| -fireplace he,['strode'] -followed shortly,['by'] -natural than,['the'] -shall ever,['know'] -April 27,['1890'] -And off,['he'] -private safe,['and'] -natural that,['the'] -week was,['a'] -means a,['murderous'] -anything on,['the'] -laid the,|['box', 'supper', 'two']| -lead towards,['the'] -anything of,|['the', 'it', 'importance']| -we started,['If'] -more Holmes,['sat'] -your bag,['I'] -receive much,['company'] -salesman just,['now'] -a snow-clad,['lawn'] -floor of,|['his', 'the', 'a']| -dependent upon,['an'] -always was,['by'] -we talked,['it'] -the individual,['must'] -work but,['an'] -man black-haired,['and'] -picked up,|['the', 'his', 'in']| -papers It,['may'] -mile from,['the'] -stupefying fumes,['of'] -him hat,['has'] -proof which,['was'] -work? purely,['nominal.'] -that unless,['they'] -landlord of,['the'] -which shriek,['at'] -fair cousins,['from'] -suspicion as,['to'] -frantic plucking,['at'] -intellectual problem,['And'] -throat as,['far'] -it This,['is'] -could suffer,['I'] -your newspaper,['selections'] -lived rent,['free'] -own process,['We'] -cab my,|['brougham', 'mission']| -remember Monday,['was'] -Holmes were,|['several', 'beaten']| -Mark that,['point'] -|road continue,"|,['said'] -gentleman was,['not'] -to assist,['at'] -end was,['a'] -If my,['hair'] -ones the,['one'] -looking Then,['suddenly'] -line which,['I'] -excellent spirits,['swinging'] -passion Mother,['was'] -I'm in,['such'] -little landau,|['the', 'which']| -Fresno Street,|['which', 'a']| -him had,|['hoped', 'nothing']| -mind him,['I'] -level what,['I'] -Munich the,['year'] -sharp nose,['station-master'] -roared shaking,['him'] -she must,|['have', 'fall', 'feel']| -of action,|['Miss', 'I', 'We', 'Yet']| -secret that,|['the', 'was']| -or to,|['be', 'my', 'disown', 'lie']| -evening I,|['was', 'would', 'found']| -emerge in,['a'] -business over,['this'] -confederate that,['the'] -bloodless cheeks,['better!"'] -once spotted,['my'] -only posted,['to-day'] -kept in,['a'] -form the,['amalgam'] -with dates,['and'] -lad your,['son'] -and he,|['sent', 'shook', 'says', 'had', 'wanted', 'closed', 'is', 'himself', 'will', 'would', 'left', 'called', 'used', 'wore', 'seemed', 'enjoyed', 'rose', 'misses', 'did', 'has', 'was', 'glared', 'lay', 'protested', 'stuffs', 'sat', 'poor', 'at', 'looks', 'carried', 'gave', 'took', 'saw', 'slipped', 'showed', 'even', 'dropped', 'hugged', 'bent', 'thrilling', 'shows', 'stuck']| -he appeared,|['to', 'surprised']| -hours every,['day'] -case until,['we'] -appearance which,['she'] -another point,['In'] -assured that,|['she', 'we']| -they have,|['been', 'the', 'established', 'And', 'covered', 'lived', 'decoyed', 'to', 'shown']| -invaluable I,['shall'] -narrated by,['this'] -turned from,|['one', 'the']| -singular exception,['however'] -me swiftly,['into'] -need of,|['air', 'it']| -leave to,|['encamp', 'Mary', 'go', 'come']| -stricken look,['as'] -leaves a,['similar'] -this strain,['no'] -the typewriter,['and'] -their beauty,['I'] -and blowing,['rushed'] -and wait,['a'] -party of,['revellers'] -does not,|['carry', 'love', 'commonly', 'say', 'seem', 'go', 'beget']| -the goodness,|['to', 'also']| -to eight,["o'clock"] -is pleasant,['to'] -the landlord,|['who', 'explaining']| -little light,['through'] -heavy a,['task'] -so kindly,|['put', 'take']| -heavy like,['those'] -buttons Suddenly,['with'] -spread an,['ordnance'] -the brightest,['rift'] -conjectured but,['the'] -two fills,['of'] -before as,['being'] -true as,|['gospel', 'man']| -a groom,['out'] -dangling his,['glasses'] -me had,|['gone', 'carried']| -and bitter,['in'] -are You'll,['know'] -holding three,['gems'] -in planning,['the'] -a card,|['but', 'too', 'was']| -breaches gaped,['in'] -now all,|['about', 'that']| -that graver,['issues'] -own high-power,['lenses'] -the roots,|['of', 'heavens!"']| -to clear,|['up', 'the', 'this']| -and became,['a'] -lay uncovered,['as'] -very earnestly,['at'] -ashamed of,|['myself', 'you', 'yourself', 'their', 'it']| -slipped off,['my'] -these shutters,['if'] -myself walked,['down'] -in How,['could'] -head was,['close'] -me it,|['sounds', 'has', 'seems']| -Spaulding seemed,['to'] -wall were,['none'] -in Mr,|['Holmes', 'Sherlock', "Rucastle's"]| -that this,|['gentleman', 'smooth-faced', 'typewritten', 'Mr', 'unhappy', 'McCarthy', 'grey', 'curse', 'is', 'register', 'creature', 'man', 'small', 'trophy', 'other', 'unfortunate', 'fellow', 'was', 'deposit', 'order', 'will', 'good', 'matter', 'should', 'might']| -marked German,['accent'] -him said,['I'] -me if,|['I', 'you']| -me in,|['my', 'front', 'She', 'What', 'completely', 'what', 'yours', 'any', 'such', 'the', 'his', 'fact', 'looking', 'several', 'are', 'case', 'private']| -taste I,['remarked'] -at Winchester,|['Let', 'at']| -carrying out,|['our', 'her']| -rat could,['hardly'] -clang of,['the'] -took all,|['my', 'his']| -story makes,['me'] -precious case,|['into', 'lying']| -your way,|['merely', 'back']| -easily get,['her'] -exceeding thinness,['I'] -exacting after,['all'] -grounds at,['all'] -would swim,['and'] -investigated the,['case'] -warehouse of,['the'] -swayed his,['body'] -Lascar who,['runs'] -the fanlight,['Just'] -in Chesterfield,['where'] -somewhere near,['that'] -few whispered,['words'] -interruption had,['sat'] -they found,|['the', 'in', 'you']| -week for,['purely'] -decoyed my,['wife'] -instrument thing,['like'] -had none,['more'] -have never,|['set', 'had', 'before', 'seen', 'been', 'denied', 'met']| -who took,|['sides', 'them']| -any definite,['conception'] -lovely woman,|['with', 'It']| -small boy,['brought'] -the elder,['using'] -private that,['the'] -is three,|['years', 'now']| -then he,|['choked', 'always', 'left', 'has', 'must', "couldn't", 'said', 'went']| -the outline,['of'] -their nature,['he'] -trousers what,['did'] -conduct and,['it'] -smoke-rings as,['they'] -a mirror,['in'] -all would,['be'] -deep waters,['said'] -private than,['I'] -choked and,|['laughed', 'we']| -side Passing,['down'] -gazed at,|['my', 'it', 'him']| -of instruction,['seated'] -you won't,|['speak', 'tell', 'forgive', 'cut']| -noticed that,['before'] -My overstrung,['nerves'] -ran forward,|['something', 'threw']| -said our,|['strange', 'new', 'engineer', 'client']| -the select,|['the', 'prices']| -room she,|['attempted', 'impressed']| -slipped an,['emerald'] -had read,['in'] -a luxurious,['club'] -finding from,['the'] -greatest importance,['in'] -case clearly,['and'] -ones all,['pointed'] -God keep,['you'] -and staring,['about'] -attic in,['one'] -hands upon,['it'] -Now let,|['me', 'us']| -one He,|['had', 'was']| -Place upon,['the'] -But between,['ourselves'] -lip which,['had'] -tragic some,['comic'] -me together,['with'] -the peculiar,|['construction', 'nature', 'dying', 'introspective']| -vile alley,['lurking'] -released me,['I'] -twinkled and,|['he', 'there']| -injuring another,['had'] -park wall,['Making'] -other ways,['he'] -eyes had,['regained'] -preserve impressions,['I'] -remained of,['the'] -resistance of,['the'] -my library-chair,['You'] -drive past,['his'] -The bride,|['gave', 'who']| -fortunately entered,['the'] -that started,['me'] -any future,['proceedings'] -returned in,['a'] -inside but,['sometimes'] -he roared,['to-day."'] -the victim,|['might', 'of', 'He']| -way you,|['a', 'see']| -Horner the,['plumber'] -bored you,['So'] -himself out,|['upon', 'and']| -remove crusted,['mud'] -and impressive,['figure'] -his grief,['had'] -in mind,['as'] -one's other,['occupations.'] -no red-headed,['clients'] -Arthur with,['the'] -the question,|['is', 'The', 'Frankly', 'provoked', 'said']| -life yet,['and and well'] -resolution about,['going'] -|me surely,|,['it'] -closed their,['League'] -when in,|['judicial', 'high']| -seen except,['my'] -no inconvenience,['As'] -could at,['once'] -when it,|['came', 'would', 'was', 'fell']| -inquiries as,['to'] -late have,['you'] -mystery said,['he'] -the reaction,['against'] -of material,['assistance'] -son told,['him'] -Wilson laughed,['heavily'] -really hard,["day's"] -elapsed I,['think'] -anxious look,['upon'] -an air,|['of', 'as']| -closing his,|['eyes', 'bedroom']| -sit there,['that'] -the offices,|['of', 'round']| -chin who,['was'] -me lay,['upon'] -this register,['and'] -a matter,['of'] -and secured,['at'] -of age,|['clean-shaven', 'is', 'which', 'for']| -a soul.,['He'] -|yes, you|,['can'] -said too,['much'] -shadow upon,['the'] -a system,['of'] -King and,['myself'] -where was,['the'] -wedding had,['taken'] -ay even,['execution'] -photograph indeed,['is'] -no objection,['to'] -is both,['or'] -now was,['who'] -diabetes for,['years'] -looked there,['was'] -hope I,['shall'] -broadened as,['a'] -at once.,['should'] -in agricultural,['prices'] -pen to,['describe'] -If she,|['does', 'were', 'had', 'can']| -Did you,|['tell', 'see', 'remark', 'ever', 'fasten']| -also when,['you'] -course! Very,['right'] -ourselves save,['for'] -considered that,['it'] -the vacuous,['face'] -we saw,|['a', 'Dr', 'to']| -we sat,|['over', 'on', 'together', 'waiting', 'after']| -in safety.,['He'] -he almost,['instantly'] -to America,|['when', 'with', 'You']| -also let,['us'] -inquire whether,['the'] -inextricable mysteries,['So'] -slow He,['wore'] -iron bars,['which'] -bent back,['and'] -view But,['if'] -the Stars,['and'] -gentle as,['a'] -the inside,|['of', 'pocket', 'but', 'are', 'throws']| -threw over,['a'] -the expression,['of'] -course He,['was'] -to anyone,|['else', 'who', 'had', 'when']| -when nothing,['else'] -saying so,|['somewhat', 'something', 'just']| -for observation,['not'] -men at,['the'] -condescend to,|['state', 'accept']| -and sobbed,|['like', 'upon']| -mad said,['he'] -open skylight,['is'] -or sleeping,['off'] -pool The,['head'] -persuade you,['to'] -and Pritchard,['were'] -windows before,['I'] -some thousands,['of'] -wasn't from,['the'] -his clenched,['hands'] -fitted to,['perfection'] -but also,|['because', 'all']| -an obvious,|['precaution.', 'fact']| -table He,['was'] -really could,['not'] -my lip,['in'] -which controlled,['it'] -of Crane,['Water'] -Holmes Where,['are'] -savagely at,['each'] -metal told,['me'] -the City,|["It's", 'first', 'to', 'and', 'branch', 'the', 'Just', 'Hitherto', 'did', 'He', 'under', 'All', 'She', 'of']| -friend possessed,['in'] -in with,|['his', 'exceptional', 'our']| -London hotels,['did'] -Flora would,['hurt'] -just sit,['down'] -veins Have,['the'] -minutes. you,['may'] -your coming,['you'] -problem said,|['he', 'our']| -up I,|['saw', 'wish', 'feel', 'read', 'answered', 'have', 'had', 'lowered', 'would', 'blew']| -committed said,['Holmes'] -rest here,['on'] -just six,['years'] -be obstinate,['salesman'] -square which,['we'] -of traditions,['She'] -all trooped,['away'] -sight it,['is'] -curse had,['passed'] -were they,['doing'] -gone up,['to'] -the curses,['of'] -hours? I,['asked'] -up a,|['great', 'piece', 'scent', 'station', 'little', 'small', 'long', 'card', 'square', 'pen', 'glowing']| -an excuse,['to'] -compliment you,['I'] -soft flesh-coloured,['velvet'] -talking to,['Lord'] -explained has,['got'] -crop He,['held'] -A lean,['ferret-like'] -left only,['the'] -hour you,['have'] -sat opposite,['to'] -government and,['of'] -are impressed,['by'] -hardly spoken,['before'] -sad-faced man,['with'] -re-marriage She,['had'] -into Ross,['Holmes'] -have destroyed,['it'] -red ink,|['upon', 'Well']| -merest chance,['his'] -while all,['the'] -sound as,|['if', 'of']| -the county,|['of', 'coroner', 'but', 'police', 'out']| -my saying,['so'] -of Brixton,['Road'] -illegal constraint,['law'] -were waiting,|['I', 'in', 'for']| -laughing just,['now'] -arm There,['are'] -the marked,['man'] -landlord explaining,['that'] -treatises on,['science'] -hoped with,['diligence'] -papers and,|['others', 'note-books', 'let', 'arrange']| -and chuckled,['my'] -it into,|['my', 'court', 'their', 'a', 'the', 'words']| -up at,|['the', 'my', 'him', 'that', 'Miss']| -up as,|['little', 'I', 'though']| -pawnbroker is,['safely'] -him It,|['is', 'was']| -astuteness represented,['as'] -sparkled upon,['his'] -him shouted,['another'] -my face,|['and', 'as', 'with', 'before', 'the', 'inside', 'opened', 'away']| -it widened,['the'] -son my,['stepfather'] -past All,['was'] -a cigar,|['and', 'which', 'after']| -and averted,['eyes'] -you it,|['has', 'just', 'here']| -colour From,['all'] -you is,|['really', 'it', 'Holmes', 'a']| -his explanation,['of'] -has saved,['England'] -from having,['to'] -son Arthur,['He'] -rate it,['was'] -he's breathing,['now'] -gun which,['was'] -different my,['stepfather'] -was bent,['downward'] -one bird,['I'] -asylum and,['that'] -She had,|['small', 'written', 'hardly', 'the', 'married', 'a', 'gone', 'engaged']| -frame of,['mind'] -him you.,['And'] -already dusk,['and'] -the professional,['and'] -our home,['product'] -Westaway's and,['there'] -I fancy,|['Watson', 'that', 'nearing', 'of', 'is', 'heavens!"', 'we', 'Have', 'Read']| -She has,|['the', 'heard', 'her']| -tale He,['had'] -marriage would,|['mean', 'be']| -to rest,['for'] -he reached,|['her', 'the', 'my']| -a P,['and'] -devised seven,['separate'] -when pursued,['by'] -penny bottle,['of'] -breath Suddenly,['a'] -bright blur,['of'] -outside went,['alone'] -that woman,['was'] -article of,['a'] -Street would,['have'] -Holmes man,['entered'] -reasoned it,['out'] -what other,|['people', 'is']| -lose an,['instant'] -letters were,['to'] -expedition and,['why'] -incredulity upon,['my'] -Give me,['your'] -afterwards if,['I'] -And perhaps,['after'] -the joint,['upon'] -a funny,['one'] -permission Miss,['Stoner'] -then grass,['was'] -afford some,['fresh'] -allowance for,['this'] -afterwards it,['was'] -subsided into,['a'] -and side-whiskered,['with'] -another that,['even'] -were thirty-six,['ships'] -more words,|['Get', 'were']| -very right,["I'm"] -and Who,['did'] -goes into,['it'] -In spite,['of'] -discovered the,['stump'] -tallow walks upstairs,['at'] -silently into,['the'] -learn of,['the'] -actress myself,['Male'] -Miss Stoper.,|['really,']| -in finding,['what'] -impressed by,|['the', 'their']| -arm To,['the'] -house whitewashed,['but'] -returns must,['guard'] -rest you,['will'] -case behind,['which'] -laughing as,['he'] -9th inst.,['Mr'] -be dressed,['in'] -there arrived,['a'] -can readily,['understand'] -nearly four,["o'clock"] -true solution,['of'] -drooping and,['his'] -form looming,['up'] -waiting-maid has,['only'] -incident however,['was'] -hand It,['gave'] -raised my,['voice'] -the 3rd,['My'] -flooring and,['walls'] -few patients,['from'] -may stand,['for'] -self-control to,['prevent'] -begin said,['he'] -and disappeared,['in'] -Holmes leaned,|['his', 'back']| -are residing,['alone'] -mind breaking,['the'] -that someone,['had'] -whether my,['own'] -braved him,['to'] -means. was,['very'] -it has,|['twice', 'not', 'nothing', 'been', 'sworn', 'already', 'awakened', 'proved', 'lost', 'got', 'occurred']| -glad to,|['hear', 'have', 'see', 'know']| -top-hat upon,['the'] -saw Whitney,['pale'] -stranger Well,['then'] -floor There,['are'] -and determined,['to'] -wishes to,['hurry'] -escort her,['to'] -busy day,|['before', 'to-morrow']| -was nodding,['myself'] -would fifty,['guineas'] -pea-jacket I,['have'] -so lonely,['and'] -trouser As,['you'] -devil he,['shouted'] -left it,|['upon', 'and', 'there']| -to absorb,['all'] -every fresh,|['part', 'fact']| -Ross in,['Herefordshire'] -rack you,['heard'] -bend of,['the'] -a penny,['bottle'] -This American,['had'] -the address,|['where', 'that', 'Yes', 'which', 'can', 'of']| -home before,['six'] -but as,|['a', 'I', 'Spaulding', 'there', 'long', 'by', 'an', 'Holmes', 'none']| -but at,|['that', 'either', 'least']| -deductive methods,['of'] -but an,|['hour', "hour's", 'oak', 'ivory']| -staring at,['it'] -arms Of,['her'] -the farm-steadings,['peeped'] -entered he,['made'] -keenest pleasure,['is'] -it was,|['written', 'presumably', 'difficult', 'surrounded', 'indeed', 'less', 'clear', 'the', 'remarkably', 'a', 'of', 'found', 'possible', 'that', 'evident', 'but', 'withdrawn', 'perfectly', 'obvious', 'essential', 'there', 'Leadenhall', 'impossible', 'as', 'equally', 'easy', 'not', 'no', 'followed', 'at', 'also', 'gone', 'gone.', 'removed', 'while', 'stated', 'more', 'your', 'I', 'fear', 'he', 'only', 'quite', 'late', 'reported', 'She', 'to', 'Wednesday', 'considerably', 'cracked', 'dead the', 'concerned', 'before', 'his', 'my', 'what', 'merely', 'daylight', 'an', 'full', 'when', 'clearly', 'for', 'all', 'some', 'done', 'still', 'concluded', 'who', 'on', 'used.', 'during', 'crushed', 'most', 'careful', 'undoubtedly', 'hard', 'in', 'dreadful', 'too', 'missing', 'twisted', 'thoughtless', 'so', 'time', 'It', 'invariably', "woman's", 'you', 'just']| -a mile,|['and', 'from']| -of broken,['English'] -her presence,['could'] -Serpentine Avenue,|['St', 'It', 'door']| -wall and,|['the', 'fastened']| -security is,|['unimpeachable', 'good.']| -smooth-skinned rubbing,['his'] -that another,['as'] -your army,['revolver'] -the hoarse,['roar'] -helpless in,['the'] -He cut,['a'] -drive but,['the'] -groom ill-kempt,['and'] -up your,|['coffee', 'mind', 'strength']| -illegally detained,['crime'] -Mr Windibank,|['came', 'draws', 'did', 'your', 'asking', 'that', 'Holmes', 'turning', 'It', 'visitor']| -stopped all,['the'] -that compared,['with'] -the cheekbones,['a'] -moment the,['police'] -present such,['singular'] -silent then,['if'] -mister said,['he'] -same thickness,['But'] -geniality which,['he'] -friend lashed,['so'] -Post to,['say'] -it hard,|['to', 'enough']| -perhaps after,['all'] -for leaving,|['them', 'America']| -better grown,['goose'] -reason is,['very'] -getting leave,['to'] -the keys,['and'] -subject which,['comes'] -past Man,['or'] -those papers,['and'] -forbidding in,['his'] -know also,['that'] -remarkable man,['is'] -can never,|['bring', 'show']| -ground but,['even'] -it Any,['injury'] -breakfast one,['morning'] -hearty meal,['When'] -possible St.,['Simon'] -League was,['founded'] -it And,|['about', 'let', 'now']| -the Metropolitan,['Station'] -two windows,['in'] -we need,|['certainly', 'Waterloo']| -in shade,['instead'] -dark business,['which'] -Ross Holmes,['still'] -help said,['my'] -matter for,['I'] -as absorbed,['as'] -valise rattling,['away'] -carpet-bag politicians,['who'] -that Frank,['was'] -carried his,['victim'] -laid on,['in'] -and one,|['which', 'for', 'yellow', 'and', 'small', 'of', 'in']| -of baryta,|['no,']| -laid of,['human'] -just this,['day'] -is opposite,['and'] -featureless and,['commonplace'] -compliance assure,['you'] -secretive and,['they'] -had recovered,['something'] -the Grice,['Patersons'] -little friend,['will'] -Farrington Street,['are'] -tearing sound,['one'] -weeks with,['this'] -McCarthy junior,['and'] -carried him,['living'] -there might,['be'] -actually been,['arrested'] -field of,|['my', 'battle']| -to station,['yourself'] -Mr Rucastle,|['seemed', 'at', 'to', 'met', 'told', 'walking', 'suddenly', 'took', 'showing', 'coming', 'came', 'both', 'who', 'let', 'then']| -splashing against,['the'] -last banker's,['dressing-room'] -rather returns,['from'] -man Mr,|['Wilson', 'Merryweather', 'Holmes']| -expedition Might,['I'] -late are,['you'] -call eight,['in'] -she was,|['a', 'Would', 'not', 'wearing', 'there', 'afraid', 'just', 'sure', 'walking', 'escorted', 'always', 'indeed', 'unconscious', 'in', 'pretty', 'sick', 'ejected', 'formerly', 'afterwards', 'seen', 'out', 'evidently', 'the', 'on', 'gone', 'passionately', 'so', 'that']| -room during,['the'] -it sounds,|['quite', 'funny']| -the double,['row'] -be seen,|['except', 'by', 'upon', 'there', 'in', 'I']| -paid at,['once.'] -even had,['Miss'] -faster but,['the'] -wife to,['say'] -That carries,['us'] -it drives,['me'] -bulge on,['the'] -hurrying up,['the'] -debt is,['not'] -the simplest,['means'] -bodes evil,['for'] -London 'Lone,['Star'] -her father's,|['house', 'young']| -doing such,['business'] -Dock and,['found'] -rapidly out,['of'] -deception could,['not'] -Indeed I,['have'] -coat as,['we'] -young person,|['wrote', 'should']| -who appeared,['to'] -met me,|['and', 'here']| -your mind,|['dwell', 'said', 'at', 'is']| -to acquire,['so'] -offers in,['this'] -me pass,['I'] -comes Sit,['down'] -France he,['was'] -answered But,|['if', 'it']| -me an,['introduction'] -he established,['a'] -slightly decorated,['toe-cap'] -some brandy,['into'] -many pistol,['shots'] -name instituted,['a'] -small opening,['between'] -visitor half,['rose'] -are always,['so'] -be striking,['and'] -less likely,['On'] -delight at,['the'] -grievous disappointment,['I'] -pursue this,['unhappy'] -boy dressed,['only'] -and next,['moment'] -burned yellow,['with'] -make notes,['upon'] -some lunch,['on'] -this address,['before'] -was silvered,['over'] -us standing,['at'] -It's a,|['bonny', 'cold']| -that Then,['after'] -beg that,['you'] -away all,|['day', 'the']| -probably aware,['that'] -charge him,['with'] -found to,|['my', 'her']| -Millar the,['lady'] -quarter or,['120'] -footman The,['bride'] -enough We,['have'] -been considered,['artistic'] -study which,['have'] -quarter of,|['a', 'an']| -meal When,['it'] -him by,|['the', 'a']| -now a,['word'] -some advice,['I'] -will simplify,['matters'] -to believe,|['that', 'in', 'however']| -novel The,['puny'] -have you,|['any', 'solved', 'not', 'done', 'I', 'succeeded', 'never', 'to', 'ever', 'told', 'put', 'or']| -final quarrel,['I'] -he found,|['that', 'it', 'us']| -fonder of,['him'] -our visit,['Holmes'] -now I,|['only', 'asked', 'know', 'will', 'think', 'am', 'beg', 'shall', 'fear', 'answered', 'must', 'have']| -blue dressing-gown,['and'] -twice what,['I'] -well-known Surrey,['family'] -this hat,|['but', 'picked']| -this has,['broken'] -befall it,['Any'] -the pips,|['on', 'to', 'upon']| -couple but,['fortunately'] -me dreadful,['letters'] -rooms which,|['we', 'I']| -Jeremiah Hayling,['aged'] -family blot,['to'] -turn upon,['its'] -admirably done,['The'] -early Doctor,['said'] -to squander,['money'] -quick insight,['into'] -times how,['many'] -error which,['it'] -before us no,['suggestive'] -I knelt,['beside'] -roused himself,['from'] -a fit,['of'] -infinite languor,['in'] -was playing,['but'] -drawn up,['to'] -word about,|['this', 'them']| -the opposing,['windows'] -warmly All,['has'] -all other,['loves'] -ring His,['signet-ring'] -then What,['do'] -answered but,|['now', 'you', 'the']| -my gems,['and'] -dislike of,['the'] -The roughs,['had'] -at college,['for'] -but characteristic,['defects'] -wavering down,['upon'] -hanged is,['the'] -was hard,['to'] -eyes with,|['tinted', 'the']| -grief and,|['despair', 'rage']| -a spark,['where'] -he cut,['himself'] -this dead,['man'] -inquest and,['which'] -room humming,['a'] -ungrateful if,['I'] -at 11:15.,['shall'] -this dear,['little'] -fowls than,['I'] -something Find,['what'] -to the,|['chamber', 'light', 'length', 'other', 'road', 'door', 'floor', "gentleman's", 'cabman', 'cab', 'Church', 'altar', 'Temple', 'end', 'hour', 'eyes', 'letter', 'ground', 'injured', 'corner', 'thing', 'King', 'celebrated', 'photograph', 'best', 'literature', 'Lord', 'providing', 'steps', 'office', 'window', "B's", 'middle', 'roots', 'landlord', 'advertisement how', 'conclusion', "pawnbroker's", 'Strand', 'back', 'north', 'music', 'level', 'visit', 'highest', 'police-station', 'three', 'most', 'imagination', 'ceiling', 'police', 'ball', 'house', 'gentleman', 'church', 'doors', 'letters', 'young', 'weird', 'identity', 'whip', 'firm', 'description', 'man', 'old', 'Boscombe', 'lodge', 'next', 'little', 'left', 'discrepancy', 'Hereford', 'usual', 'coroner', 'prison', 'station', 'hotel', 'deep', 'fact', 'estate', 'idea', 'deductions', 'contrary', 'court-yard', 'farther', 'highroad', 'definite', 'personality', 'Hall', 'Assizes', 'bush', 'diggings', 'head', 'west', 'lad', 'defending', 'fire', 'commencement', 'negroes', 'attic', 'room', 'table', 'box', 'person', 'sound', 'marked', 'perpetrators', 'condition', 'sideboard', 'vessels', 'Albert', 'drug', 'east', 'words', 'company', 'fringe', 'effect', "company's", 'first', 'villains', 'crime', 'doings', 'City', 'colour', "horse's", 'address', 'sombre', 'metropolis', 'right', 'force', 'grating', 'Bow', 'water-jug', 'face', 'pillow', 'proper', 'stage', 'Lascar', 'singular', 'adventure', "bird's", 'individuality', 'dressing-room', 'Countess', 'arrest', 'crop', 'advertising', 'gallows', 'excellent', 'bitter', 'south', 'Alpha', 'page', 'salesman', 'white', 'Brixton', 'bad', "dealer's", 'death', 'sitting-room', 'new', 'marriage', 'match', 'lips', 'rooms', 'main', 'second', "housekeeper's", 'bed', 'ventilator', 'rope or', 'terrified', 'care', 'bell-rope', 'suspicion', 'victim', 'proof', 'complete', 'place', 'official', 'strange', 'point', 'matter', 'winds', 'sill', 'nature', 'wooden', 'spot', 'general', 'very', 'list', 'furnished', 'passage', 'whereabouts', 'verge', 'quick', 'affairs', 'disappearance', 'case', 'note', 'bottom', 'dignity', 'extreme', 'centre', 'senior', 'side', 'bottom.', 'greatest', 'southern', 'kitchen', 'stables', 'awful', 'mat', 'bureau', 'hall', 'many', 'task', 'agency', 'expense', 'rolling', 'Copper', 'Southampton', 'central', 'drawer', 'Rucastles', 'round', 'mastiff.', 'tendencies']| -The rest,['is'] -my coat-sleeve,['was'] -of violence,|['no', 'and', 'upon']| -my ring,['and'] -stuck his,['feet'] -dishonoured age,['One'] -be far,['off'] -and defeated,['in'] -inquiry It,['is'] -are reasons,['why'] -we separated,['them'] -the son's,|['though', 'ear', 'statement']| -Jack with,['the'] -Tell us,|['the', 'what']| -address he,['asked'] -you departed,['I'] -|well, sir|,['And'] -pa perhaps,['to'] -all my,|['attention', 'self-control', 'adventures', 'data', 'ears', 'time']| -a fait,['accompli'] -risen I,['really'] -should remarks,['were'] -still looking,['keenly'] -sure said,['she'] -roughly what,['I'] -and together,['they'] -mouth to,['reply'] -glad if,|['you', 'he']| -for her,|['jewel-box', 'money', 'at', 'it', 'disappearance', 'pleading', 'It', 'until']| -Stark laid,['down'] -Angel save,['that'] -Coventry which,['he'] -accounts I,['have'] -earn 700,['pounds'] -minutes are,['over'] -inspector of,['constabulary'] -time with,['your'] -Holmes leaning,['back'] -spoken before,|['I', 'there']| -seized with,|['a', 'compunction']| -child could,['open'] -did it,|['very', 'I', 'And', 'Mr', 'break', 'right', 'it']| -very weak,['but'] -|notice. no,|,['we'] -accounts a,['very'] -close in,['swiftly'] -evidently an,['important'] -wooden-legged lover,['which'] -business passed,['up'] -His features,['were'] -not carry,['it'] -a high,|['treble', 'central', 'ringing']| -On returning,['he'] -the nation,['He'] -place of,|['business', 'the', 'shelter', 'silver']| -contrary said,|['Holmes', 'I']| -hat but,['as'] -followed by,|['a', 'the']| -at breakfast,|['one', 'when']| -placed before,['us no'] -coiners on,['a'] -him mad,['to'] -very humble,['apology'] -generous with,['you'] -black shadow,['wavering'] -will or,['that'] -ex-Confederate soldiers,['in'] -until the,|['comical', 'good', 'answers', 'howl', 'January', 'last', 'whole', 'gems']| -indulged in,['when'] -is whether,['we'] -will of,|['course', 'the']| -|ball well,|,['he'] -Mexico After,['that'] -a copy,['of'] -had received,['no'] -been hung,['up'] -last item,['Well'] -than one,['of'] -swimmer who,['leaves'] -eyebrows combined,['to'] -locked upon,['the'] -any moment,|['be', 'I']| -finger were,['stained'] -one else,|['does', 'had', 'I']| -morning will,['do'] -exceptionally so,['During'] -of John,['Openshaw'] -made quite,['a'] -singular and,['whimsical'] -country there,['was'] -belongs to,['the'] -solution as,['ever'] -doubt caught,['the'] -afternoon She,['dropped'] -can't command,['our'] -was daylight,['I'] -process of,|['deduction', 'official', 'exclusion']| -the Capital,['and'] -nearly fallen,['but'] -country If,['he'] -chair seems,['to'] -fixed for,['the'] -mask which,['he'] -between you,|['and', 'must']| -and kind,['to'] -pay-day so,['it'] -far off,['the'] -him Peterson,['had'] -that and,|['her', 'I']| -a night's,['work'] -a salary,['of'] -were much,['interested'] -scribble on,['a'] -to other,|['methods', 'ones']| -This year,['our'] -the night?,['said'] -thought he,|['might', 'was']| -found him,|['in', 'standing', 'talking', 'when']| -A married,['woman'] -removed Saturday,['would'] -before her,|['flight', 'father', 'she']| -and finally,|['of', 'announced', 'with', 'that', 'became', 'the', 'covered', 'where', 'at']| -collar lay,['upon'] -I already,|['feel', 'regretted']| -umbrella which,['he'] -dismay on,['discovering'] -Watson he,|['added', 'said', 'explained', 'remarked', 'yelled']| -might either,['openly'] -nothing Why,['should'] -else He,['is'] -a public,|['slight', 'one', 'though']| -tobacco Having,['found'] -performance could,['possibly'] -young face,['as'] -twist by,['the'] -brown fur,['completed'] -was ajar,['Beside'] -have been,|['getting', 'burned', 'caused', 'less', 'made', 'watching', 'too', 'better', 'slept', 'trained', 'done', 'telling', 'very', 'fortunate', 'at', 'good', 'more', 'this', 'employed', 'working', 'so', 'looking', 'able', 'inflicted', 'by', 'hanged', 'wrongfully', 'of', 'struck', 'his', 'under', 'had', 'meant', 'but', 'and', 'beaten', 'generally', 'reabsorbed', 'several', 'men', 'sporadic', 'cause', 'hurrying', 'worth', 'weighing', 'surprised', 'the', 'either', 'a', 'taken', 'written', 'as', 'twenty-seven', 'entirely', 'some', 'he', 'unfortunate', 'two', 'making', 'deceived', 'cruelly', 'undoubtedly', 'obliged', 'waiting', 'remarked', 'submitted', 'It', 'senseless', 'recommended', 'nearer', 'an', 'turning', 'already', 'reading', 'borne', 'concerned', 'cut', 'on', 'dragging', 'identified', 'shamefully', 'difficult', 'enough', 'informed', 'with', 'she', 'far', 'caught', 'trying', 'out', 'well', 'one', 'And', 'trivial', 'novel', 'married', 'uncomfortable', 'fastened', 'locked', 'brought']| -Afghan campaign,['throbbed'] -hat has,['not'] -all jostling,['each'] -have why,['then'] -some heavy,['and'] -a slipper,['Smack'] -disproportionately large,['His'] -ball What,['does'] -he tested,['the'] -his stethoscope,['I'] -visitor staggered,['to'] -has referred,['the'] -hurried up,|['the', 'with']| -hat had,['been'] -sit gossiping,['here'] -bricks without,['clay'] -been measured,['for'] -drive out,['in'] -four and,['a'] -street May,['we'] -bled considerably,['it'] -Simon of,['course'] -then still,['puffing'] -tell anyone,['of'] -even smoked,['there'] -Elias Whitney,['D.D.'] -height slim,['with'] -known to,|['be', 'have', 'the', 'us', 'you']| -off with,['a'] -a prank upon,['me'] -for fifty,['minutes'] -Fresh scandals,['have'] -utmost certainty,['that'] -Bank the,['Vegetarian'] -brought Miss,['Hunter'] -geese in,['the'] -only wished,['to'] -madam but,['the'] -frightened All,['will'] -roads And,['yet'] -could save,['himself'] -started tapped,['me'] -already offered,['a'] -money certainly.",|['you,']| -the merit,['that'] -a disguise the,['whiskers'] -my second,['wedding'] -husband as,['far'] -folk who,|['were', 'know']| -with corridors,['passages'] -it Get,['out'] -husband at,['the'] -like those,|['of', 'out-and-out']| -times except,['when'] -thickness But,['then'] -France were,['rather'] -negro voters,['and'] -same the,['week'] -left him,|['I', 'has', 'with', 'then', 'and']| -unobservant public,['who'] -finer shades,['of'] -drug an,['object'] -left his,|['enormous', 'house']| -breathing of,|['my', 'our']| -Mrs Henry,['Baker'] -china and,['metal'] -rabbits when,['the'] -about George,['Meredith'] -which king,['King'] -|eyes well,'|,['said'] -ready He,['moved'] -soon make,|['him', 'it']| -pictures libraries,['or'] -assistant promptly,['closing'] -was stamped,['with'] -that I'll,['take'] -of pure,['fear'] -have looked,['upon'] -fewer openings,['for'] -small jet,['of'] -cellar said,['she'] -terribly frightened,['Send'] -scattered Colonel,['Stark'] -expression of,|['extreme', 'the']| -stands at,['present'] -and moving,['my'] -what shall,['I'] -about Lord,['St'] -Holmes stepped,['briskly'] -smelling of,['iodoform'] -the pawnbroker's,['and'] -charity descends,['into'] -daughter was,['of'] -my marriage,['that'] -about In,['spite'] -Australia of,['the'] -trampled down,['and'] -armchair which,['I'] -|it then,|,['is'] -broad shoulders,['Then'] -companion's mind,['was'] -upon what,['became'] -very superior,['being'] -heads down,['in'] -the round,['jovial'] -Come at,['once'] -feeling of,|['dread', 'security', 'impending', 'repulsion', 'uneasiness', 'their', 'duty a']| -change came,['over'] -secret the more,['so'] -begging as,['an'] -and things,|['so', 'and']| -700 pounds,['a'] -and fainted,['when'] -was their,['denial'] -deal box,['which'] -mood and,['habit'] -threatening her,['but'] -girl's short,['sight'] -and God,['help'] -come to-night,|['reasoned', 'Some', 'by']| -others I,['have'] -drowsiness of,['the'] -yelled with,['the'] -Turner You,['have'] -impossible whatever,['remains'] -then? white,['one'] -Eglow Eglonitz here,['we'] -swiftly into,['a'] -our correspondence,['with'] -possible combination,['of'] -name I,|['went', "don't"]| -deep sleep,['breathing'] -building and,['my'] -as resolute,['as'] -beneath it,['that'] -observe Watson,['that'] -the planking,['and'] -glad for,['the'] -made over,['them'] -of tin,['were'] -felt helpless,['I'] -died without,['having'] -it down,|['with', 'upon', 'into', 'so']| -last time,|['You', 'that']| -little crib,['all'] -marriage has,['been'] -ringing the,['bell'] -traces were,['lost'] -am commuting,['a'] -inquiries said,['Holmes'] -pointed it,['out'] -love of,|['all', 'solitude', 'his', 'Heaven!', 'a']| -years to,['come'] -my old,|['pals', 'quarters', 'ally']| -pointed in,['the'] -yet always,['founded'] -wheels of,|['the', 'his', 'her']| -and shall,|['probably', 'do']| -few pence,['every'] -gentle soothing,['sound'] -throat and,|['a', 'sent']| -We must,|['be', 'come', 'have']| -us Just,['as'] -as you,|['departed', 'might', 'may', 'are', 'keep', 'say', 'know', 'advise', 'will', 'can', 'could', 'said', 'like', 'suggest', 'And', 'see', 'remember', 'wore']| -was one,|['of', 'singular', 'bird', 'about', 'which', 'wing']| -something of,|['him', 'Saxe-Coburg', 'the', 'his', 'refinement', 'a', 'where', 'interest']| -pa So,['then'] -can't get,['the'] -lives I,['could'] -wrong he,['is'] -something on,['very'] -whole with,['no'] -Herefordshire The,['largest'] -letter came,['back'] -expensive a,['hat'] -favourably nor,['the'] -Within was,['a'] -us no suggestive,['detail'] -remarked endeavouring,['to'] -hat then,['and'] -and endeavoured,['after'] -think I'll,['see'] -and removed,['the'] -daring criminals,|['of', 'in']| -in deep,|['conversation', 'thought']| -natural habit,['and'] -has gas,['laid'] -brothers at,['Trincomalee'] -a somewhat,['rare'] -of iron,['the'] -when seen,['quarrelling'] -be ready,['to-morrow?'] -|ceremony, which|,['was'] -carriage to-night,['laughed'] -bell communicate,['with'] -just like,['the'] -my pal,|['is', 'what']| -was more,|['likely', 'afraid', 'than', 'a']| -contrary your,['statement'] -a fish-monger,['and'] -envelope On,['the'] -of infinite,['languor'] -after breakfast,|['on', 'and']| -respects been,['not'] -wrong man,['sat'] -in from,['time'] -alarm Slipping,['through'] -some new,['problem'] -in Kensington,['I'] -a scream,|['and', 'fell', 'of']| -been whirling,['through'] -very precise,['fashion'] -All emotions,['and'] -fancy nearing,['the'] -mean of,['course'] -slippers Across,['his'] -there that,|['I', 'is', 'would']| -are the,|['more', "e's", 'main', 'crucial', 'merest', "father's", 'very', 'principal', 'first', "devil's", 'geese?', 'country', 'links', 'true', 'rose-bushes', 'jewels', 'gems', 'duplicates']| -allowed some,['few'] -went by,['during'] -I instantly,|['reconsidered', 'lit']| -every confidence,['and'] -directed Do,['you'] -typewritten Look,['at'] -not bitten,['off'] -up onto,['the'] -tossed it,['It'] -papers which,|['Holmes', 'had', 'has', 'Openshaw']| -bring Mrs,['Oakshott'] -the enthusiasm,|['which', 'of']| -he really,['knew'] -not bite,['the'] -by paying,['over'] -and slipped,|['behind', 'through']| -leaned his,['chin'] -merely taking,['your'] -instincts rose,['up'] -|once, some|,['years'] -even your,['skill'] -manufactory of,['artificial'] -introduce you,|['to', 'he']| -lantern As,['I'] -adventure of,['the'] -the dealer's,['Jem.'] -appear against,['him'] -Trafalgar Square,['fountain'] -then after,['a'] -|difficult you,|,['indeed'] -case he,|['remarked', 'asked']| -size but,['of'] -dash of,['brandy'] -a gun,['under'] -The Cedars,|['is', 'and']| -foresee one,['of'] -terribly injured,['I'] -Toller had,['drunk'] -had opened,['his'] -comparing notes,['afterwards'] -must stretch,['a'] -disposal and,|['you', 'I']| -the condition,['of'] -the lantern,['and'] -a remark,['upon'] -by presuming,['that'] -size larger,['than'] -foul-mouthed when,['he'] -deceived your,['sister'] -stout florid-faced,['elderly'] -theory all,['along'] -doctor won't,['allow'] -detected and,['defeated'] -about to,|['be', 'withdraw', 'happen', 'issue', 'enter', 'summarise', 'renew', 'say']| -hung and,['a'] -wore in,['deference'] -it your,|['client ', 'custom']| -until lately,['lonelier'] -till called,['for'] -Avenue It,['was'] -scratch and,['tell'] -off the,|['beaten', 'streets', 'vague', 'effects', "man's", 'least', 'walls', 'same']| -Mother was,['all'] -and maybe,['you'] -purity and,['radiance'] -on either,['side'] -he leaned,['back'] -on looking,['over'] -exceedingly grave,['against'] -essential said,['he'] -outside came,['the'] -after five,["o'clock"] -passed some,['time'] -this allusion,['to'] -rest I,['could'] -cigars which,['it'] -I'll answer,['her'] -any workmen,['at'] -he To,['determine'] -telling my,['story'] -afterwards under,['Hood'] -be not,['very'] -much time,['It'] -which widened,['gradually'] -front and,['a'] -great convenience,['and'] -fashion which,['was'] -sent over,['to'] -life which,['I'] -police to,['supply'] -think I,|['ever', 'had', 'shall', 'have', 'could']| -a secret,|['marriage', 'said']| -a column,['of'] -any positive,['crime'] -of security,['unless'] -present and,|['the', 'I']| -now thirty-seven,['years'] -however an,['aunt'] -this trip,['Watson'] -out like,|['the', 'whipcord', 'a', 'gravel']| -her nose,['I'] -what did,|['you', 'your']| -not speak,|['about', 'of']| -a captured,['ship'] -or landlady,['The'] -dreadful record,['of'] -sons my uncle,['Elias'] -wheeled sharply,['to'] -definite Coroner:,['What'] -system of,|['docketing', 'work', 'imprisonment']| -know Even,['after'] -American gentleman,['had'] -sensations he,['had'] -where more,['stress'] -not deduce,['something'] -travellers I,['had'] -mud from,['it'] -any time,['day'] -say She,['is'] -bone so,['the'] -note-books bearing,['upon'] -done Why,['bless'] -muttering under,['his'] -deceased was,['then'] -a drunkard's,['blow'] -old doctor,['the'] -amply repaid,['by'] -like any,['other'] -light-coloured gaiters,['He'] -inspection of,|['his', 'the']| -claim or,['to'] -were discovered,['stored'] -shocked by,['the'] -roof Ah,['yes'] -much that,['many'] -as were,['brought'] -of extreme,['chagrin'] -of articles,['upon'] -of its,|['own', 'occupant', 'outrages', 'youth', 'force']| -hands is,['possible'] -family? answered,['that'] -these results,['you'] -may recompense,['you'] -now bright,['now'] -am ready,|['to', 'enough']| -It's Watson,['said'] -done that,|['we', 'the']| -side we,['could'] -advancing money.,['firm'] -unravelling the,['matter'] -knee-caps and,['no'] -world did,['you'] -brow set,['his'] -and hung,['like'] -separated them,['and'] -peering eyes,['very'] -writhed and,['screamed'] -Hosmer Angel,|['did', 'flush', 'suppose,"', 'sir.', 'could', 'Did', 'was', 'came', 'vanish', 'held', 'About', 'at', 'the', 'Windibank', 'and', 'must']| -unapproachable from,['that'] -of it?,['but'] -first duty,['was'] -I seen,['such'] -I seem,['to'] -should I,|['attempt', 'put', 'go', 'slink', 'ever']| -wondering what,|['I', 'strange', 'secret']| -hundred a,['year'] -ready we,['shall'] -use you,['could'] -was something,|['in', 'depressing', 'noble', 'of', 'terrible', 'else', 'unnatural', 'about']| -broken until,['we'] -cried our,['client'] -Street It,['is'] -and Peterson,['the'] -cry raised,['the'] -cried out,['that'] -might and,['I'] -could that,|['mean', 'something']| -highly intellectual,['is'] -as copying,['out'] -my association,['with'] -|then, of|,['course'] -was national,['property'] -successful I,['know'] -and outside,['the'] -from He,['ran'] -Street In,['a'] -without affectation,['that'] -The commissionaire,['plumped'] -affections from,['turning'] -one answering,['the'] -clapped his,['hands'] -use an,['arc-and-compass'] -successful you,['may'] -scoundrel was,['he'] -When about,['a'] -again wasted,['time'] -the date,|['is', 'of']| -a weariness,['and'] -which both,['hinted'] -rushed across,|['and', 'the']| -your habits,['looking'] -that from,['jealousy'] -the bell,|['and', 'Holmes', 'I', 'have', 'Who', 'Doctor', 'Watson']| -just after,|['we', 'breakfast']| -was there,|['in', 'to', 'at', 'been', 'I', 'she', 'another', 'as', 'and']| -howl of,['the'] -better to,|['learn', 'have', 'take']| -had twice,['read'] -one day,|['in', 'and', 'father']| -very seasonable,['in'] -blow from,['a'] -coming at,['midnight'] -engaged to,|['the', 'her', 'each']| -child whose,['grief'] -Pray continue,['your'] -facts have,['never'] -improbable must,['be'] -man uttered,['and'] -concentrate yourself,['upon'] -a journey,['to'] -high collar,['black'] -shag tobacco,['and'] -read now?",['He'] -in looking,['into'] -considerable difference,['to'] -before It,['could'] -He and,|['a', 'the']| -photograph!" King,['stared'] -more down,['the'] -down over,['his'] -resource was,['flight'] -husband she,['does'] -the handkerchief,['and'] -I drew,['the'] -business but,|["it's", 'he', 'it']| -8s. breakfast,['2s'] -been better,|['It', 'for']| -they closed,['their'] -We would,['not'] -a cabinet,['was."'] -pointed to,|['a', 'an', 'his', 'one', 'something']| -she spoke,|['and', 'a']| -bed again,['however'] -month then,['did'] -sheer lassitude,['from'] -generally in,['good'] -other goose,['upon'] -inside a,['hansom'] -shot back,['a'] -paper while,['the'] -streets It,['drove'] -flapped off,['through'] -that within,|['an', 'a']| -which appeared,|['before', 'to', 'not']| -of writing,|['lately', 'another']| -name style,['and'] -poor father,['met'] -man for,['starting'] -has already,|['heard', 'a', 'run', 'been']| -looks exceedingly,['grave'] -pulled me,|['abruptly', 'swiftly']| -good authority,['for'] -rest about,['that'] -the incoherent,['ramblings'] -to Doctors,['Commons'] -saw an,['ill-dressed'] -criminals He,['has'] -large bureau,['and'] -situated at,['the'] -Moran on,['the'] -in need,['of'] -old bird,['of'] -am Mr,|['Holmes', 'Neville']| -straight to,|['one', 'you', 'her']| -here's another,['vacancy'] -would accept,['in'] -quite hold,['myself'] -prisoner God,['help'] -seven-mile drive,['before'] -letters come,['so'] -sickness nor,['business'] -said Mr,|['Wilson', 'Duncan', 'Jabez', 'Merryweather', 'Holmes', 'Holder', 'Rucastle']| -tore the,|['mask', 'lid']| -matters. assured,['him'] -many of,|['my', 'them']| -as sure,['a'] -curtain near,['your'] -wonderfully You,['have'] -coroner asked,['me'] -own purposes,['and'] -as safe,['as'] -me ready,['when'] -Square so,['thither'] -cellar with,['a'] -|boy, Arthur|,['went'] -very sweet,|['of', 'little', 'temper']| -Pray tell,['me'] -noble woman,['I'] -exercise though,['very'] -Pool Holmes,['was'] -does he,|['pursue', 'He', 'not']| -discoloured and,['soaked'] -he passed,|['over', 'away', 'his']| -ask my,['hand'] -surprise must,['really'] -became clear,['to'] -if that,['were'] -his track,|['for', 'You']| -the conviction,['that'] -eccentric anatomy,['unsystematic'] -point from,['which'] -pillows and,['consuming'] -people there,['This'] -could dimly,['catch'] -not surprised,['to'] -path as,['nothing'] -my charge,['I'] -seldom trivial,['and'] -young gentleman,['whose'] -when William,['Crowder'] -I failed,['to'] -hour and,|['do', 'I', 'a']| -so elaborate,['a'] -a sidelong,['glance'] -announced her,['positive'] -our best,['in'] -lust for,|['the', 'gold']| -promise then?,['said'] -that instead,['of'] -Rucastle's throat,['while'] -there many?,['I'] -clue which,['will'] -observe said,['Holmes'] -family to,['you'] -has taken,|['to', 'the']| -open a,|['few', 'ventilator', 'door']| -lodge-keeper brought,['it'] -at anything,['I'] -house thus,['apparelled'] -pocket He,['waved'] -what is,|['wanted', 'it', 'to', 'really', 'that', 'this', 'wrong', 'a', 'your', 'involved', 'the']| -room was,|['plainly', 'as', 'full', 'empty', 'not']| -well-cut pearl-grey,['trousers'] -what it,|['could', 'was?', 'was', 'is', 'would', 'meant', 'all']| -receive the,|['orange', 'force']| -features If,['you'] -what in,['the'] -charge I,['strolled'] -no easy,['matter'] -open I,|['wonder', 'thrust']| -received us,['in'] -the hook,['and'] -no occupation,['but'] -on these,['things'] -to issue,['from'] -and fro,|['in', 'like', 'droning']| -she I,['started'] -pillow heavens!",['cried'] -those seven,['weeks'] -pounds? I,['cannot!'] -put me,|['off', 'upon']| -swiftly so,['that'] -legs stretched,['out'] -two officers,['waiting'] -represent the,['family'] -impossible to,|['effect', 'exclude', 'replace']| -very paper,['in'] -she a,|['young', 'little']| -then afterwards,['they'] -so delighted,['that'] -the creditor,['asked'] -voice changing,['her'] -He gathered,['up'] -governesses in,|['the', 'England']| -become known,['that'] -became what,['you'] -broke bright,['and'] -digs for,['another'] -and therefore,['we'] -haste and,['the'] -a man's,|['handwriting', 'energy']| -position We,['had'] -strike and,['was'] -the brougham,['Sherlock'] -two letters,['which'] -bill His,['letters'] -the Trepoff,['murder'] -of rushing,['figures'] -information which,|['may', 'we']| -level to,['your'] -now made,['up'] -shortly by,['the'] -used by,['the'] -smoked very,['heavily'] -decidedly nautical,['appearance'] -awful consequences,['to'] -trifles height,['I'] -of 1000,['pounds'] -the surgeon's,['deposition'] -Arthur a,['man'] -nine years,['in'] -soul This,['fellow'] -explaining Omne,['ignotum'] -Hunter if,['your'] -and names,['have'] -the average,['story-teller'] -and foolish,['and'] -his cup,['I'] -yesterday said,['Holmes'] -Watson who,['is'] -wait in,|['the', 'this', 'an']| -discretion I,['have'] -I marked,['the'] -his way,|['along', 'to', 'When', 'homeward', 'much', 'past']| -old rickety,['door'] -face and,|['hurled', 'disreputable', 'became', 'his', 'a', 'she', 'observing', 'peering', 'to', 'filling', 'rushing', 'trim', 'glided', 'manner', 'alert', 'shaking']| -home product,['One'] -Holmes relapsing,['into'] -at two,['By'] -feeling very,['much'] -have little,['doubt'] -be somewhere,['near'] -stands upon,['the'] -The sun,['was'] -who waited,['in'] -family estate,['and'] -grown men,['This'] -rushing forward,['with'] -was Then,['when'] -had borrowed,['my'] -was passing,|['In', 'the']| -away we,|['dashed', 'could', 'went', 'drove']| -talking with,['his'] -strong motive,['for'] -pt de,['foie'] -rather imprudently,['wished'] -observe any,['change'] -air Incredible,['imbecility'] -than herself,['Father'] -not fear,['said'] -brown hands,['that'] -doubt suggested,['to'] -a rough,|['one', 'uncouth']| -an insinuating,['whisper'] -took an,['orange'] -words They,['are'] -FIVE ORANGE,['PIPS'] -Hatherley and,['I'] -a noiseless,['lock'] -great distance,['from'] -press I,['knew'] -give 30,['pounds'] -well paid,['by'] -|Roylott, you|,['have'] -by experience,['that'] -servant little,['too'] -nine and,['ten'] -really profited,['by'] -or none,['said'] -vanish before,['the'] -his thumb,|['in', 'over']| -innocence It,['is'] -plausible further,['points'] -she held,|['above', 'a']| -the week,|['after', 'From', 'I']| -looked out,|['into', 'upon', 'of', 'How']| -smasher and,['forger'] -smoke still,['curled'] -always loved,['each'] -shall order,|['you', 'breakfast']| -coat while,['the'] -client has,['rather'] -else can,['be'] -bit of,|['metal', 'simple', 'news']| -this age,['I'] -narrow passage,|['and', 'between']| -hiss as,['I'] -client had,['sprung'] -Mademoiselle's address,['he'] -to spend,['more'] -kindly on,['the'] -was acquitted,['at'] -and submitted,['to'] -talk this,['matter'] -This ring ,['He'] -do Then,['I'] -stepping over,['and'] -of incredulity,|['I', 'upon']| -of Greenwich,['Two'] -gold corners,['with'] -or mountains,['so'] -cases should,['be'] -having served,['my'] -tried more,['than'] -every feature,['We'] -stranger than,|['anything', 'the']| -very suggestive in,['fact'] -head gravely,|['It', 'you']| -and struggling,['men'] -getting on,['so'] -a pause,|['before', 'during']| -have tattooed,['immediately'] -do what,|['he', 'I', 'they']| -over twenty,['years'] -cheerless with,['two'] -there peeped,['a'] -cannot understand,|['said', 'them']| -and had,|['stopped', 'only', 'borne', 'almost', 'been', 'a', 'paid', 'this', 'finally', 'held', 'always', 'gone', 'come', 'just', 'seen', 'no']| -heavily against,['our'] -stern-post of,['a'] -detective Mr,['Holmes'] -|sir, but|,|['very', 'the']| -much younger,['than'] -Ku Klux,['Klan'] -not possible,['that'] -intrusion of,['other'] -ships of,['fair'] -held most,['dear'] -keeps very,['high'] -narrative When,['he'] -Surrey and,['ending'] -twinkle in,['his'] -importance If,['not'] -been novel,['and'] -felt easier,['in'] -explanation why,['he'] -a fellow,['for'] -dates and,['names'] -good to,|['lose', 'be']| -leather-leggings which,['he'] -some commission,['and'] -a sedentary,['life'] -been sucked,['away'] -star with,['a'] -forgery to,['put'] -felt however,['that'] -joy I,['have'] -secretary and,['manager'] -which granting,['the'] -Clair of,['Lee'] -This dress,['does'] -attempts have,['been'] -that Horner,['had'] -know I,|['soon', 'have', 'am', 'ought', 'was']| -reserve lost,['in'] -vacancies than,['there'] -all all,|['Roylott,']| -THE ADVENTURE,['OF'] -loungers in,['the'] -however see,['that'] -will the,['Duke'] -and Mr,|['Duncan', 'Hosmer']| -and trim,|['side-whiskers', 'as']| -art however,['to'] -us down,['a'] -occurred When,['I'] -shall communicate,['with'] -second son,['of'] -Clearly such,['a'] -the propagation,['and'] -aperture drew,['itself'] -all seaports,['That'] -with gentlemen,['who'] -your visitor,['wear'] -well-dressed young,['men'] -to teach,['you'] -resembling her,['in'] -light spring,['up'] -by practice,['and'] -attention since,['although'] -me unpapered,['and'] -Inn near,['the'] -a violent,|['start', 'quarrel']| -you such,['a'] -ship the,['gloom'] -right It,['was'] -play disappeared,['into'] -a cheetah,|['and', 'is', 'too']| -wild way,['of'] -places in,['England?'] -scraped round,['the'] -of appeal,['yet'] -inimitably Then,['he'] -striking his,['stick'] -would agree,['with'] -little shed,['in'] -Holmes laying,|['down', 'his']| -King stared,['at'] -so. Your,['husband'] -|place really,|,['I'] -sallow complexion,['black'] -up stairs,['got'] -slab turning,['away'] -having obeyed,['to'] -house The,['instant'] -was evidently,|['an', 'a']| -the negroes,['and'] -very eyes,['to'] -an introduction,['to'] -clay when,['he'] -quite modern,['said'] -said he,|['my', 'Read', 'Yes', 'You', 'by', 'a', 'Was', 'laughing', 'I', 'And', 'showing', 'as', 'is', 'the', 'his', 'Have', 'was', 'and', 'but', 'It', 'to', 'May', 'man', 'with', 'gripping', 'What', 'that', 'presently', 'laying', 'chuckling', 'over', 'He', 'pulling', 'of', 'putting', 'this', 'Just', 'rising', 'By', 'geese!"', 'small', 'But', 'in', 'When', 'sir!', 'soothingly', 'smiling', 'Ah', 'family', 'pray', 'To', 'heavily', 'sir,', 'scratching', 'it', 'come', 'accident,', 'Pray', 'at', 'coming', 'carelessly', 'throwing', 'Mr', 'actually', 'you', 'That', 'sitting', 'allow', 'see', 'raising', 'are', 'glancing', 'Only', "I've", 'answering', 'turning', 'looking', "where's"]| -frosted glass,['and'] -earshot The,['Cooee!'] -is capable,['of'] -hereditary in,['the'] -sheets of,['foolscap'] -requirement I,['cannot'] -ice crystals,['I'] -fee was,['at'] -property to,['any'] -he devoured,['it'] -go over,|['the', 'them']| -barred was,['folded'] -less complete,['as'] -|province yet,"|,['said'] -emerged into,|['Farrington', 'the']| -|stout-built, very|,['quick'] -secrecy which,|['we', 'I']| -here upon,['a'] -police but,|['it', 'between', 'when']| -for instance,['by'] -hand He,['chucked'] -game-keeper in,['the'] -Miss Hunter,|['I', 'if', 'has', 'for', 'Do', 'not', 'had', 'that', 'the', 'screamed', 'have', 'miss.', 'down']| -had shrunk,['so'] -a loafer,['to'] -the exquisite,['mouth'] -drenched his,['tobacco'] -I descended,['my'] -right across,|['the', 'it']| -engaged upon,['our'] -that which,|['you', 'is', 'was', 'he', 'she', 'another', 'has', 'it', 'led']| -to get,|['near', 'away', 'this', 'corroboration', 'hold', 'rid', 'into', 'to', 'the', 'a', 'some', 'over', 'what', 'clear']| -address 31,['Lyon'] -and encyclopaedias,['is'] -neither to,['my'] -Mr James,|['Windibank', 'McCarthy']| -the herald,['of'] -facts June,['3rd'] -lay down,|['upon', 'once']| -of did,['not'] -disputatious rather,['than'] -some robberies,['which'] -snow in,['front'] -fall of,['the'] -her under,['any'] -altered for,["God's"] -and taller,['by'] -failed ever,['to'] -be better,|['able', 'in', 'to']| -unnecessary Three,['thousand'] -confide it,|['to', 'even']| -index Doctor,['murmured'] -and peeped,['round'] -can lay,|['her', 'his']| -side cylinders,['An'] -him curious,['to'] -thrusting this,['rude'] -watch if,['it'] -George Burnwell,|['was', 'should', 'has', 'and', 'tried', 'I', 'is']| -Mary has,['deserted'] -very affectionate,['father'] -commission through,['my'] -his cold,['precise'] -working through,['generations'] -about your,['connection'] -us our,['journey'] -then seeing,['that'] -more adapted,['for'] -us out,['was'] -Your salary,['with'] -rich style,['in'] -as became,['his'] -person I,['hardly'] -Anybody bringing ,['will'] -box-room cupboard.,['often'] -cannot waste,['time'] -of hundred,|['a', 'would']| -no good,|['there', 'for', 'purpose', 'in']| -time while,|['the', 'I']| -fast as,['the'] -the estate,|['and', 'where']| -fourth smartest,['man'] -now than,['formerly'] -undo the,['hasp'] -driver your,['reasons'] -advantage It,['would'] -eye as,['we'] -what might,['grow'] -I advertised,['and'] -now that,|['he', 'the', 'I', 'it', 'this']| -expected On,['the'] -traced his,['way'] -she hurried,['across'] -Alice now,['in'] -head Many,['men'] -later the,['voice'] -was foolish,['enough'] -adhesive and,['there'] -I'm not,['rich'] -it emerged,['into'] -garden without,['seeing'] -except my,['own'] -deficiencies If,['Horner'] -I observed,|['will', 'that', 'to']| -very exacting,['after'] -may then,['walk'] -very straight,['to'] -not However,['that'] -been but,['partially'] -more to,|['be', 'my', 'London']| -thank our,['stars'] -wall at,['the'] -to grown,['men'] -as requested,['then?"'] -union he,['was'] -are probably,['aware'] -climbing down,['holes'] -work at,|['Briony', '2']| -Why I,['have'] -work as,|['usual', 'that']| -home for,|['three', 'two']| -his unhappy,['father'] -a danger,['if'] -the event,['of'] -one One,['was'] -time over,['this'] -something terrible,['and'] -his absence,|['every', 'I']| -That's right,['Sit'] -Kate Whitney,['How'] -correspondent could,['be'] -Mary Jane,['she'] -may call,|['it', 'a']| -the duplicate,['bill'] -myself And,['now and'] -threats This,['morning'] -wager Well,['Watson'] -year We,['waited'] -fortnight went,['by'] -congratulated me,['warmly'] -Reading in,['less'] -God! It's,['Watson'] -Clair Those,['are'] -and hurried,|['into', 'me', 'down', 'away', 'from', 'past']| -go about,['the'] -does her,|['stepfather', 'clever']| -chase after,['you'] -electric blue,['and'] -word I,|['have', 'turned', 'would']| -has sister,['is'] -previous night,|['Watson?"', 'I', 'Were']| -Baker said,['Holmes'] -walk in,|['but', 'the']| -sticking out,['of'] -Egria It,['is'] -out but,|['gave', 'he', 'the', 'swayed']| -One sorrow,['comes'] -the fragment,['of'] -furnished room,['with'] -first floor,['At'] -Museum we are,['to'] -the four-wheeler,['drove'] -home she,['seemed'] -land may,['suffer'] -so long,|['a', 'as', 'had']| -difference to,['me'] -|moment," said|,['Holmes'] -dryly circumstances,['are'] -emerge as,['a'] -having someone,['with'] -heavy mortgage,['The'] -expedition of,['to-day'] -become of,|['the', 'Mr', 'him']| -and life,['into'] -figure made,['even'] -|go certainly,|,['if'] -man since,['the'] -a lady,|['so', 'and', 'clad', 'who', 'leave', 'with', 'There', 'might']| -bill of,['some'] -many ways,['unique'] -then returned,|['from', 'with', 'feeling']| -this stile,['and'] -looks upon,|['all', 'as']| -onto the,|['rack', 'table', 'floor', 'stable', 'roof']| -his grip,['upon'] -in entering,['the'] -along its,['gullet'] -me must,['stop'] -will succeed,['in'] -and occupied,['his'] -say east,['said'] -some informality,['about'] -bright his,['step'] -running through,['the'] -our most,['lucrative'] -unlocked my,['bureau'] -another investigation,['in'] -fatigued with,['your'] -past was,['not'] -of humour,['never'] -you renewed,['your'] -events leading,['from'] -now from,['the'] -very excitable,['impulsive'] -been plucked,['back'] -were red,['his'] -City He,['is'] -the deed,|['followed', 'What', 'had']| -one beneath,['My'] -over trust,['that'] -could gather,['together'] -to all,['they'] -handwriting was,['so'] -sitting in,['the'] -more ambitious,['took'] -turned quickly,['to'] -probable one,['But'] -candle Then,['he'] -glanced through,['is'] -myself and,|['to', 'took']| -Simon I,|['will', 'think', 'have']| -of anger,|['from', 'however']| -night so,['we'] -her quick,|['feminine', 'firm']| -dragging the,['Serpentine'] -attempt might,['be'] -lately lonelier,['than'] -and housekeeper,['yet'] -my suspicions,['depend'] -same to,['you'] -information that,['of'] -shouted through,['it'] -their master,['can'] -rushed out,|['into', 'calling', 'and']| -at great,['risk'] -great heavy,['chin'] -now so,['I'] -here comfortably,['and'] -here she,['comes'] -cleverness of,['women'] -that that,|['made', 'would', 'side', 'bit', 'is', 'also']| -well with,|['what', 'him']| -double the,['sum'] -be gone,|['before', 'must', 'by']| -a quarter,|['to', 'past', 'yet', 'of', 'or']| -some blood-stains,['upon'] -is blue,['in'] -utterly spoiled,['and'] -go said,['she'] -long nervous,['hands'] -door locked,|['you', 'upon']| -of matches,|['on', 'laid', 'and']| -was early,['in'] -persuasions and,['our'] -He spoke,|['calmly', 'in']| -own story,['He'] -wall Finally,['he'] -double stream,['upon'] -be wanting,['in'] -attention wander,['so'] -gave my,['friend'] -twinkled dimly,['here'] -of was,|['that', 'most']| -each case,['not'] -furnished house,['at'] -enemy I,['am'] -our resources,|['and', 'Kindly']| -He made,['a'] -collapsed although,['there'] -walked quietly,['off'] -Briefly Watson,['I'] -for doing,['anything'] -complexion black,['hair'] -have time,['to'] -and glimmer,['of'] -bizarre a,['thing'] -be conjectured,['but'] -life as,['truly'] -to-night I,|['asked', 'hope']| -traces The,['double'] -destiny of,['a'] -every man's,['body'] -earnest and,['made'] -details but,['I'] -slam of,['the'] -long to,|['tell', 'describe']| -of driving,['it'] -commonplace for,['working'] -after the,|['alarm', 'fashion', 'concert', 'first', 'time', 'return', 'new', 'coming', 'Civil', 'last', 'bridal', 'ceremony', 'Franco-Prussian', 'other', 'child']| -a hurried,|['scrawl', 'glimpse']| -a conceivable,['hypothesis'] -me If,|['you', 'she', 'I']| -Contralto hum La,['Scala'] -the Park,|['and', 'so.', 'I']| -joy to,['meet'] -were sent,['to'] -suspicions depend,['so'] -basket-chair I,['will'] -approaching marriage,['with'] -commonplace Absolutely,['no'] -face there,['was'] -bearing upon,|['my', 'the']| -brown dust,['of'] -I simply,|['wish', 'want']| -property of,['his'] -was curled,['upon'] -court For,["Christ's"] -Of my,['mother'] -is violent,['we'] -my memory,|['In', 'and', 'I', 'The']| -income he,['asked'] -ingenious said,['I'] -and fifth,['Now'] -red-headed client,['carried'] -shows you.,['signed'] -retired to,|['his', 'rest', 'her', 'my']| -observe this,['woman'] -I considerably,['astonished'] -the clutches,['of'] -the sweet,['promise'] -and fifty,['guineas'] -photograph for,['present'] -and those,['preposterous'] -antagonist so,['you'] -red face,['and'] -observe You,['did'] -probable in,['your'] -a broad,|['balustraded', 'one', 'intelligent', 'and']| -tallow-stains from,['a'] -quick face,['freckled'] -ornaments Her,['dress'] -31 Lyon,['Place'] -indirect or,['political'] -Holmes when,|['our', 'she', 'he', 'we', 'I']| -swung his,['glasses'] -nature and,|['that', 'the']| -turn my,|['attention', 'hand', 'conjecture', 'face']| -committed there,['heavens'] -the rent,['in'] -hands he,['had'] -matter before,|['him', 'and']| -right cuff,['so'] -our journey,['would'] -removed it,['was'] -he make,|['no', 'his']| -hour the,['miserable'] -schemer falls,['into'] -your conclusions,['from'] -my natural,|['enemies', 'prey']| -off that,['is'] -are really,|['puzzling', 'mere']| -county of,['Kent'] -window of,|['which', 'the']| -for anything,|['had', 'better']| -write to,['Mr'] -imbedded in,['soft'] -she mean,['by'] -tobacco ashes,['enables'] -in cold,['blood'] -for a,|['small', 'few', 'good', 'higher', 'number', 'wedding-morning', 'left-handed', 'little', 'week', 'morning', 'friend', 'holiday', 'dirty', 'sharp', 'hat-securer', 'bloody', 'Scotch', 'crime', 'Christmas', 'long', 'square', 'bell-pull', "night's", 'year', 'moment', 'bed', 'glass', 'minute', 'situation', 'young', 'walk']| -back without,['wincing'] -the essential,['facts'] -genii of,['the'] -myself to,|['see', 'do', 'your', 'blame']| -suggestive in fact,['we'] -had never,|['heard', 'set', 'so', 'seen', 'met']| -some weeks,|['It', 'before', 'back']| -who certainly,['deserved'] -for I,|['had', 'have', 'will', 'began', 'am', 'thought', 'was', 'feared', 'walked', 'think', 'do', 'should', 'know', 'did', 'knew', 'observe', 'cannot', 'understood', 'very', 'wish', 'saw', 'would']| -for J,['O'] -Encyclopaedia Britannica.,['Vincent'] -practically finished,['I'] -for C,['Well'] -records have,['erred'] -And your,['address'] -or who,['would'] -come between,['us'] -weapon like,['a'] -matter He,['was'] -everything was,|['as', 'deadly', 'turning']| -is half-past,['ten'] -we wedged,['in'] -select the,['select'] -looking for,|['a', 'matches']| -in Covent,['Garden'] -one unpleasant,['thing'] -he could,|['not', 'object', 'towards', 'better', 'to', 'tell', 'help', 'meet', 'go', 'grasp', 'reach', 'save', 'hardly', 'so', 'possibly', 'see', 'strike', 'use']| -Holmes impatient,['under'] -the mail-boat,|['which', 'will']| -sake tell,['me'] -sofa and,|['tried', 'armchairs', 'having']| -earth do,['you'] -an early,['appointment'] -smiling on,['the'] -above Holmes,['remarked'] -roof over,['our'] -Two thousand,['five'] -But it,|['was', 'is']| -Violence does,['in'] -corroborate your,['view'] -my purple,['plush'] -Eventually in,['the'] -will always,['secure'] -has grizzled,['hair'] -have nothing,|['to', 'but']| -impulsive girl,['as'] -mystery may,['be'] -all which,['we'] -the world.,['shall'] -of recent,['occurrences'] -curious thing,['remarked'] -sense will,['suggest'] -some fault,['in'] -successors Did,['you'] -coronet and,|['of', 'his']| -plied my,['trade'] -the basket-chair,|['I', 'This']| -action Yet,['we'] -clanging few,['moments'] -pressure of,['public'] -bottles Having,['laid'] -Lord Backwater's,['place'] -freemasonry among,['horsey'] -meditation until,['we'] -saw then,['the'] -fierce weather,['through'] -thing After,['all'] -man he,['said'] -not part,['of'] -that clerks,['are'] -green of,['the'] -my doing,|['all', 'so.']| -is correct,|['in', 'and', 'very', 'as', 'can']| -acetones as,['we'] -what she,|['might', 'said', 'meant']| -stood gazing,['at'] -villa laid,['out'] -your father's,['place'] -mature for,['marriage'] -My clothes,['were'] -is right,|['Oh', 'James']| -thin however,['when'] -But in,|['avoiding', 'any']| -a sneer,|['They', 'I']| -winking at,['me'] -how dangerous,['it'] -could it,|['be', 'indicate']| -Hereford Arms,['where'] -foresight said,['he'] -of temperate,['habits'] -refrain from,['all'] -be rather,|['a', 'more']| -music and,['drawing '] -sight at,['the'] -be unknown,['to'] -and peering,|['eyes', 'through', 'at']| -sight as,['that'] -shawl round,['me'] -is dazed,['with'] -murmured when,['he'] -remember your,['promise'] -left behind,|['though', 'and']| -Holmes pulled,|['me', 'down']| -employer had,['an'] -and rocked,['himself'] -tell what,|['indirect', 'it', 'I']| -were thick,['with'] -your household,['and'] -the statement,['which'] -wire I,['put'] -the jeweller's,['art'] -shut himself,['up'] -known for,|['many', 'some']| -scattered drops,['were'] -last few,|['days', 'nights', 'years']| -him raise,['his'] -long may,['I'] -Moulton The,['lady'] -Hopkins of,['Lebanon'] -colour Never,['trust'] -a joke,['at'] -stronger if,['I'] -typewritten he,['always'] -the honour,|['to', 'and', 'of']| -me What,['was'] -exactly my,['own'] -long straight,['chin'] -imagine from,['what'] -energy The,['whole'] -been arranged,['it'] -drank a,['great'] -quick-witted youth,['though'] -night Were,['it'] -awake thinking,['over'] -is waiting,|['that', 'now']| -position very,['clear'] -was away,|['was', 'and', 'from']| -stock mixed,['with'] -Majesty and,['I'] -should desire,['to'] -impossible however,['that'] -at home,|['was', 'I', 'and', 'am', 'in', 'Tell', 'We', 'Miss']| -scoundrel it,['is'] -Mrs Toller,|['who', 'in', 'knows', 'serenely']| -made you,|['promise', 'said']| -eyes were,|['as', 'weak', 'protruding', 'fixed', 'flushed', 'just']| -be associated,|['in', 'with']| -salary beforehand,['so'] -had grown,['up'] -to condescend,['to'] -also of,['the'] -instantly strike,['him'] -his exercise,['though'] -bleeding so,['I'] -ever know,['of'] -know Watson,['said'] -account in,['any'] -visible That,['bears'] -sent up,['a'] -the surgeon,['at'] -it come,['out'] -is singularly,['lucid'] -man sat,|['huddled', 'for']| -things so,['that'] -was lit,|['in', 'and']| -tongue I,['did'] -so carried,['away'] -talk Mr,['Holmes'] -man could,|['invent', 'not', 'afford', 'be']| -client is,|['to', 'a', 'He']| -French a,['little'] -doubt but,|['it', 'I']| -will become,['you'] -so large,['a'] -stooping over,['a'] -too busy,['to'] -logical synthesis,['which'] -wore rather,['baggy'] -would ever,['take'] -Lodge or,['turn'] -shadow wavering,['down'] -side the,['contrary'] -last McCarthy,['left'] -fierce and,['quick-tempered'] -peculiar about,['that'] -in mine,['and'] -under it!",['cried'] -untimely death,['of'] -will take,|['some', 'the', 'it', 'you', 'wiser']| -to cease,['and'] -scenery perfect,['Leave'] -were simply,['dirty'] -three away,['from'] -Yours faithfully,|['ST', '', 'JEPHRO']| -handle and,['entered'] -decoyed him,['down'] -Coroner What,['was'] -dead man,['McCarthy'] -rather a,|['trite', 'waste']| -Holmes by,['either'] -master can,['imagine'] -son but,['I'] -over them,|['they', 'I', 'It']| -Holder It,['was'] -balanced mind,['He'] -quarrel I,['should'] -Insensibly one,['begins'] -servants even,['of'] -rushed past,['him'] -laughing in,['a'] -was afraid,|['that', 'of']| -had much,['ado'] -yourself too,['closely'] -the opening,|['part', 'clad', 'her']| -hands out,['into'] -coming of,|['its', 'the']| -point From,['amid'] -singular case,|['said', 'of']| -determine its,['exact'] -pass over,['his'] -laughing it,['is'] -reasons for,|['satisfaction', 'their']| -lens not,['only'] -and knew,['all'] -and set,['the'] -as gospel,['for'] -midnight I,['suppose'] -long It,['cost'] -copy out,['the'] -from among,|['the', 'his']| -north and,|['west', 'Hampshire']| -daytime Then,['creeping'] -and see,|['him', 'what']| -lining of,['this'] -his leave,|['as', 'Outside', 'to']| -typewritten I,['remarked'] -finally at,['the'] -a wish,['Perhaps'] -beneath were,['the'] -proceedings from,['my'] -its object,['might'] -than to,|['any', 'us', 'his', 'get', 'be']| -him As,['to'] -and sallow-skinned,['with'] -intelligence by,['telling'] -this article,['took'] -him At,['first'] -twice at,['such'] -twice as,['in'] -for what,|['right', 'she', 'you', 'purpose']| -slipped his,['key'] -coming downstairs,['on'] -You seem,|['most', 'to']| -pink is,['quite'] -me deeply,['nothing'] -by will,['but'] -miniature and,['the'] -his allowance,['that'] -chin was,['cocked'] -groom Shortly,['after'] -there living,['the'] -or shirt,['He'] -Then Lord,['St'] -Major Freebody,['who'] -So much,|['for', 'is']| -the definite,['conception'] -unnatural about,['the'] -eyes open,|['I', 'in']| -looking upon,['any'] -but is,|['not', 'covered', 'barred', 'also']| -doctors quarter,['Wimpole'] -will first,['make'] -but it,|['is', 'was', 'hurts', 'could', 'may', 'has', 'had', 'bore', 'never']| -might play,['a'] -McCarthy threatened,['I'] -who appears,['to'] -he shows,['quite'] -but if,|['you', 'it', 'he']| -street the,['poor'] -going out,|['We', 'now']| -glancing out,['of'] -but in,|['other', 'any', 'a']| -his words,|['it', 'she', 'with', 'out', 'alone', 'to']| -wrapped in,['the'] -turning the,['key'] -time for,|['observation', 'me', 'despair', 'he', 'breakfast', 'your', 'the']| -the note,|['itself', 'is', 'written', 'it', 'into']| -sharp clang,['of'] -a list,['of'] -struck by,['the'] -Hullo Colonel,['Let'] -with many,['minor'] -may say,|['before', 'to', 'on', 'that']| -air but,['he'] -milk which,|['stood', 'we']| -black shadows,['there'] -of foppishness,['with'] -scandal thought,['people'] -Three of,['our'] -A horrible,['doubt'] -the fascinating,['daughter'] -you mean,|['that', 'I', 'took', 'answer', 'the', 'you']| -and dragged,['with'] -could beat,['the'] -could bear,['If'] -struggle How,['cruelly'] -out before,['the'] -lens Now,['we'] -really two,['days'] -Just hold,['out'] -presented as,['great'] -disease for,['his'] -a packet,['It'] -gone more,['than'] -vengeance upon,['me'] -admit that,['the'] -Yet I,|['have', 'would', 'could']| -more striking,['in'] -the road,|['two', 'and', 'a', 'to', 'stood', 'was', 'He', 'A', 'there', 'continue,"']| -heard uncle's,['remarks'] -like untamed,['beasts'] -old homesteads,['always'] -dead in,['the'] -tangled clue,['Then'] -the fourteenth,['a'] -brighter thing,['than'] -and probably,['never'] -a realistic,['effect'] -would need,['to'] -under my,|['ulster', 'own', 'disguise', 'breath', 'roof']| -marks are,|['none', 'perfectly']| -yourself together,['and'] -The driver,['looked'] -a dying,|['reference', 'man', 'and']| -employment wait,['in'] -was my,|["sister's", 'due', "Frank's", 'true', 'intention', 'hair', 'first', 'coil']| -watched us,['with'] -prompt over,['this'] -country folk,['and'] -honour my,|['head', 'gems']| -THE BOSCOMBE,['VALLEY'] -Hunter the,['ladder'] -honour me,['with'] -water The,|['night', 'bedroom']| -so severely,['tried'] -things and,|['came', 'followed', 'made']| -had best,['inspect'] -much deeper,['than'] -put there,['a'] -why?" think,['that'] -his broad,['shoulders'] -you. We,['have'] -less and,['less'] -time she,|['ran', 'has']| -gloom and,|['in', 'then']| -myself not,['to'] -business and,['to'] -means you,['used'] -a cold-blooded,['scoundrel'] -where to,|['find', 'look', 'get']| -endeavoured after,['the'] -best man,['The'] -to pack,['away'] -his tie,['under'] -Eton and,['Oxford'] -ruddy-faced white-aproned,['landlord'] -might lead,['to'] -been confined,['to'] -a twinkle,['in'] -the texture,['of'] -and sticks,['Holmes'] -station Have,['you'] -puzzled now,['that'] -advertisements but,['without'] -day play,['a'] -call them,['and'] -I will,|['tell', 'make', 'be', 'rejoin', 'still', 'follow', 'succeed', 'show', 'explain', 'go', 'keep', 'confine', 'just', 'leave', 'sit', 'take', 'read', 'call', 'feel', 'now', 'put', 'if', 'not', 'Holmes', 'pay', 'accept']| -sake remarked,['Sherlock'] -that every,|['one', 'vestige']| -man fierce,['and'] -attention while,['Holmes'] -manageress had,['sat'] -little shining,['slits'] -Arthur blinds,['you'] -long fight,['between'] -even his,['own'] -it twinkled,['like'] -success do,['you'] -together For,['the'] -among us,['Who'] -market for,['the'] -is light,['red'] -assistant and,|['he', 'found']| -roof than,['in'] -very unlikely,['perhaps'] -walking into,|['Hyde', 'the']| -dramatic manner,['that'] -the brazier,['I'] -very items,['which'] -minutes he,['said'] -and whether,['he'] -in explaining,['Omne'] -dressed she,['was'] -just balancing,['whether'] -My heart,|['turned', 'is']| -gone he,['realised'] -force and,|['the', 'which']| -silence appears,['to'] -their accounts,['are'] -sitting-room behind,['me'] -spies in,['an'] -just give,['me'] -absolute fools,['in'] -the gems,|['but', 'are', 'Mr', 'and', 'would', 'the']| -about McCarthy,['old'] -are part,['of'] -you real,['bad'] -flesh-coloured plaster,['Then'] -sticking up,['a'] -less bold,['or'] -wing I,['answered'] -mahogany There,['were'] -affaire de,['coeur'] -be realised,['for'] -of tattoo,['marks'] -Wilson! said,['Vincent'] -searching his,['pockets'] -two-and-twenty at,['the'] -this brute,['to'] -the signal,|['to', 'I']| -away after,['theories'] -Bohemian habits,['so'] -stood glaring,['with'] -shoulders was,['lined'] -wanted he,['must'] -hours walked,['down'] -assure us,['that'] -smile in,['Holmes'] -after nine,['now'] -line and,['then'] -the place,|["clean that's", 'where', 'A', 'I', 'might', 'of', 'in', 'That', 'was']| -sharp sound,['of'] -silence Holmes,['face'] -Stoner nor,['myself'] -I'd bring,['him'] -clearly with,['the'] -one man,['knew'] -Though clear,['of'] -common experience,['among'] -surrounded myself,['with'] -that His,['eyes'] -borne into,['Briony'] -managed to,|['find', 'get', 'pick']| -look sleepily,['from'] -to go,|['into', 'but', 'to', 'home', 'He', 'anywhere', 'I', 'over', 'about', 'back', 'down', 'out', 'upon', 'and', 'in', 'right', 'through', 'for', 'weak', 'round', 'upstairs', 'away.']| -The Boscombe,['Pool'] -to Horsham,['after'] -lash But,['I'] -stone pavement,['Then'] -to fulfil,['the'] -revealing what,['they'] -to send,|['them', 'father', 'a', 'me']| -seat of,|['the', 'it']| -were too,|['Now', 'excited']| -crime Every,['good'] -dressed hurriedly,['for'] -hanging lamp,['then'] -colony as,['the'] -of London,|['There', 'should', "'Lone", 'Bridge', 'could', 'What', 'to']| -of your,|['left', 'reasoning', 'order', 'habits', 'health', 'successes', 'own', 'goose', 'jacket', 'friend', 'stepfather', 'window', 'valuable', 'profession', 'existence', 'newspaper', "wife's", 'bed', 'troubles', 'statements', 'young', 'hair']| -a tortured,['child'] -round by,['the'] -has attracted,['admirers'] -drawn my,|['circle', 'attention']| -He stretched,['out'] -Square the,['scene'] -aisle like,['any'] -Angel could,['not'] -deadly still,['A'] -comfort too,['soon'] -escorted me,['here'] -the guilt,['of'] -dressing-room now,['a'] -I very,|['clearly', 'much']| -too serious,['for'] -the younger,['brother'] -to submit,['the'] -am giving,['you'] -implicates the,['great'] -festivities is,['an'] -the flap,|['he', 'has']| -gipsies who,['are'] -one But,|['you', 'among', 'in']| -was quiet,['when'] -he carried,['a'] -chair took,['out'] -hundred miles,['off'] -and imposing,['with'] -years ago to,['be'] -pays it,['over'] -whose step,['I'] -no feeling,['of'] -guide you,['in'] -view talking,['all'] -details and,['so'] -drawn into,['two'] -the garments,['thrust'] -ten o'clock,|['but', 'before', 'at']| -yet he,|['sat', 'would']| -for its,|['numerous', 'centre', 'own']| -left Turning,['round'] -rule is,['the'] -rule in,['the'] -to cut,|['both', 'your']| -am loved,['by'] -am likely,['to'] -France Hosmer,['Angel'] -her education,['has'] -whose graceful,['figure'] -My guide,['stopped'] -talked it,['over'] -thrust them,['into'] -fear she,['should'] -eye for,['colour'] -must at,['once'] -dozen intimate,['friends'] -them sometimes,['for'] -anything since,['then'] -|you, Miss|,['Turner'] -Miss Adler,['to'] -shall meet,['you'] -doing so.,['looked'] -you without,['a'] -to gain.,['He'] -where they,|['had', 'are']| -scrawled upon,['one'] -for doubt,['whether'] -its keen,['white'] -mystery I,|['remarked', 'found', 'cried']| -his father,|['She', 'dead', 'and', 'having', 'I', 'had', 'Still', 'at', 'who', 'did', 'on', 'should', 'was']| -Fordham the,['Horsham'] -sir whether,['in'] -Openshaw shall,['not'] -matter are,['you'] -right wrist,['could'] -responded his,['Lordship'] -Mr Aloysius,['Doran'] -break their,['hearts'] -it Watson,['he'] -of attention,['own'] -touched him,['upon'] -corner which,|['I', 'corresponds']| -evidently in,['excellent'] -is your,|['commonplace', "father's", "husband's", 'hat', 'only', 'own']| -heavily He,['was'] -spoiled and,['so'] -drunk himself,['into'] -the disappearing,['bridegroom'] -best plans,['of'] -tall and,['strong'] -Jem. dealer's?',['of'] -claws of,['a'] -evening though,['how'] -brought back,|['his', 'in']| -Merryweather striking,['his'] -down sometimes,['losing'] -no parents,['or'] -left to,|['right', 'a']| -interested as,['I'] -summer of,['89'] -reasoner And,['in'] -in typewriting,['his'] -& Matheson,['the'] -you possibly,['find'] -make their,|['attempt', 'position']| -lead It,['is'] -must remain,['firm'] -warmly rose,['in'] -shining like,['burnished'] -Bill said,['he'] -make no,|['attempt', 'allowance', 'apology', 'change']| -identified as,|['Mr', 'her']| -Where were,['we'] -an advocate,['here'] -here speaks,['of'] -tearing it,['to'] -Nothing was,['left'] -long for,['news'] -out-and-out pirates,['who'] -my share,['of'] -League offices,['that'] -before I,|['was', 'knew', 'hardly', 'leave', 'returned', 'finish', 'never', 'came', 'decide', 'speak', 'went', 'saw', 'go', 'ever', 'get', 'quite']| -buried in,|['thought', 'his', 'the', "Rucastle's"]| -as inscrutable,['as'] -say my,['natural'] -struggle and,|['was', 'finally']| -time If,['you'] -remorseless clanking,['of'] -coarse one,['and'] -of marriage,['It'] -coronet but,['I'] -Street by,['the'] -fail to,|['see', 'follow']| -time Is,['that'] -final step,['I'] -time It,['is'] -age and,['position'] -opposite and,['drove'] -the stage,['and'] -say me,['a'] -ruin me,['how?"'] -thin white,['hands "I'] -events and,['you'] -park-keeper They,['have'] -before a,|['low', 'man']| -James Oh,['if'] -his extraordinary,['powers'] -some coldness,['for'] -Bristol for,['it'] -face drooping,['lids'] -cake I,['am'] -impressions my,['boy'] -you closely,['I'] -crime may,['be'] -hours before,['and'] -before there,['rushed'] -a frowning,['brow'] -broken the,|['window', 'elastic']| -master you,['know'] -dog It's,['not'] -the south-west,['I'] -I'll state,['the'] -a builder,['must'] -performer but,['a'] -she as,['my'] -landowner's dwelling,['On'] -Cosmopolitan I,['remarked'] -eyes caught,['the'] -rope There,['are'] -be long,['before'] -address Yes,['17'] -to live,|['happily', 'at', 'with', 'in']| -operatic stage ha,['Living'] -stepfather Mr,|['Windibank', 'James']| -doctor's room,['but'] -fleshless man,['Even'] -dashed some,['brandy'] -to reply,['when'] -and stared,|['from', 'in', 'into', 'down']| -me say,['to'] -sir.' governess?',["sir.'"] -beside the,|['fire', 'pool', 'dead', 'bed', 'little', 'door', 'mantelpiece', 'light', 'question']| -what its,['object'] -he brought,['her'] -parlance means,['taking'] -woman afterwards,['That'] -welcome for,['my'] -to state,['your'] -loss for,['there'] -to guide,|['myself', 'us']| -tut!' he,['cried'] -We know,['something'] -sake have,['mercy'] -sensible girl,['Miss'] -eight feet,['round'] -the habit,['of'] -occur There,['is'] -felt all,['the'] -To take,['the'] -or sound,['a'] -within hail.,['down'] -little after,|['eight', 'half-past']| -and authoritative,['tap'] -I wish,|['she', 'you', 'to', 'I']| -too with,['the'] -gaunt woman,['entered'] -Grand Duke,['of'] -swaying to,['and'] -but after,|['thinking', 'that', 'being', 'the', 'we']| -no friends,|['of', 'at']| -her photograph,|['it', 'brought']| -woman make,['her'] -traffic of,['the'] -note was,['undated'] -paragraph amplifying,['this'] -so frightful,['a'] -spoken out,['if'] -this precaution,['against'] -income which,['at'] -was careful,['to'] -analytical skill,['and'] -this object,['then'] -whether they,['seem'] -centre one,['to'] -passage but,['otherwise'] -not appear,|['against', 'to']| -husband is,['alive'] -something happening,['on'] -geese at,['7s'] -cool blood,['I'] -was surrounded,['by'] -poor hair,['to-night'] -their conduct,['But'] -me what,|['had', 'it', 'was', 'he', 'I', 'an']| -and deportment,['of'] -Cassel-Felstein and,['hereditary'] -He saw,['her'] -The stage,['lost'] -He sat,['at'] -affairs said,['I'] -long residence,['in'] -most useful,['material'] -of either,['Mr'] -a member,|['of', 'sir,']| -so late,['she'] -However innocent,['he'] -consult said,['Holmes'] -an all-night,['sitting'] -head with,['a'] -is childish,['She'] -Running up,['I'] -Boone have,['sworn'] -He pushed,['past'] -failing had,['ceased'] -during and,['after'] -address before,['nine'] -his wheel,['two'] -deep black,['shade'] -the woods,|['picking', 'to', 'which', 'grew', 'all']| -acting in,['her'] -guineas apiece,["There's"] -strike Then,['he'] -to Sir,["George's"] -there A,|['conversation', 'moment']| -balancing the,['matter'] -whistles and,['what'] -in weak,['health'] -would hurt,['a'] -their order,['of'] -their master's,['affairs'] -thrown out,['on'] -were marks,['of'] -a quite,|['epicurean', 'exceptional']| -Holmes still,['carrying'] -only be,|['away', 'approached', 'conjectured', 'a', 'determined']| -only by,|['the', 'trying', 'his', 'paying']| -in his,|['singular', 'hand', 'armchair', 'power', 'inquiry', 'masterly', 'chair', 'head', 'ways', 'hair', 'consequential', 'profession', 'pocket', 'house', 'lodgings', 'favour', 'face', 'hands', 'pockets', 'innocence', 'interest', 'remark', 'evidence', 'manners', 'concluding', 'flight', 'long', 'mouth', 'weary', 'conjecture', 'bearing', 'way', 'privacy', 'trembling', 'room', 'coat', 'work', 'haste', 'eagerness', 'tattered', 'bed', 'possession', 'rooms', 'excitement', 'professional', 'anger', 'dressing-gown', 'affairs', 'agitation', 'Baker', 'quietly', 'big', 'direction', 'grey', 'right', 'eye', 'triumph', 'conclusions', 'eyes', 'shirt', 'nature', 'bare', 'searching', 'dog-cart', 'bluff']| -silhouette against,['the'] -They got,['4700'] -little livid,['spots'] -an opium,|['den', 'pipe']| -the wood?,['the'] -|contents come,|,['it'] -the hinges,['but'] -may imagine,|['what', 'Mr']| -you solved,['it'] -hand upon,|['this', 'him', 'the', 'my']| -a map,['of'] -out showed,['me'] -Burnwell and,['your'] -unfailingly come,['upon'] -strange story,['which'] -door as,|['we', 'was']| -persuade me,['to'] -justice to,['my'] -moment I,|['confess', 'have', 'fell']| -downstairs That,['is'] -a square,|['pierced', 'gaping', 'of', 'black']| -coffee had,['I'] -rushed upstairs,|['instantly', 'explained']| -his Major,['Freebody'] -the conditions,['if'] -here Mr,['Isa'] -serve you,|['best', 'could', 'He']| -and fallen,['in'] -invisible to,['me'] -begging in,['the'] -L S,['carved'] -trust you.,['He'] -hardly from,['the'] -go where,['I'] -table stood,['a'] -entered looking,['pale'] -sudden blow,['does'] -sorrow comes,['close'] -peering through,['the'] -This terrible,['secret'] -So far,['I'] -hat pulled,['down'] -bridal party,['alleging'] -my chair,|['It', 'and', 'a']| -said Inspector,['Bradstreet'] -quite settled,['said'] -is unknown,['I'] -best use,['of'] -detained crime,['but'] -clergyman who,['seemed'] -about seven,['years'] -discovering Mr,['Hosmer'] -commit you,['to'] -Jove he,['continued'] -do unless,['it'] -heelless Turkish,['slippers'] -just heard,['the'] -brilliant reasoning,|['power', 'every']| -in I,|['saw', 'was']| -asked Monday,['I'] -all bless,['you'] -is fitted,['neither'] -coat to,['his'] -crouched Holmes,['shot'] -lived generally,['in'] -profession He,['has'] -be nearer,|['forty', 'the']| -would occur,['to'] -go asleep,['your'] -not believe,|['me', 'it']| -provincial town,['His'] -made two,['blunders'] -proprietor they,['made'] -shaken to,['go'] -dear Mr,['Sherlock'] -here who,['may'] -police and,|['everyone', 'he', 'which', 'very', 'put']| -pressed right,['through'] -hinges I,['stared'] -to sit,|['down', 'here', 'and']| -stone down,['its'] -a hotel,['bill'] -is far,|['better', 'from']| -by heard,['that'] -point remarked,['Holmes'] -as far,|['as', 'from']| -have advanced,['large'] -trifles Let,['us'] -remained your,['niece'] -hands when,['will'] -manner He,['is'] -an ivory,['miniature'] -my future,['for'] -you forfeit,['your'] -devoted both,['to'] -deserted me,['you?"'] -might seem,['trivial'] -springing to,['his'] -importance but,|['you', 'I', 'more']| -poison doctors,['examined'] -the gentleman,|['thanking', 'at', 'of', 'with', 'in', 'himself']| -this with,['me'] -action Miss,['Irene'] -his wife you,['said'] -general appearance,['gave'] -will just,|['show', 'put']| -vault have,['but'] -said you,['have'] -pay our,['debts'] -or 1870,['he'] -cross-questioning I,['had'] -crime fully,['share'] -themselves but,['which'] -Gate where,['breakfast'] -limp and,['helpless'] -police authorities,['that'] -for hope,['as'] -friend or,['his'] -recollect in,['connection'] -spoke to,|['Major', 'her']| -Tottering and,['shaking'] -companion's knees,['For'] -|nerves no,|,['not'] -everybody who,['is'] -strange affair,['Presently'] -new premises,['were'] -an understanding,['between'] -and ten,|['last', 'I']| -a gold-mine,['Naturally'] -inner apartment,['Grimesby'] -note he,['asked'] -gloom you,['know'] -and wriggled,['in'] -extraordinary performance,['could'] -Hatty Doran,|['the', 'San']| -The total,['income'] -she can,|['lay', 'come', 'get']| -leads on,['to'] -a bank,['director'] -a band,|['of', 'and']| -family We,['live'] -like birds,['to'] -any man,|['who', 'that', 'succeeded']| -Doran in,['conjunction'] -a morose,['and'] -labour that,['he'] -dignity The,['lady'] -foot had,['been'] -distinction is,['clear'] -nothing The,['richer'] -dark will,['soon'] -peculiar action,['in'] -85 that,['my'] -to Hampshire,['quite'] -in good,|['style', 'spirits']| -observed By-the-way,['since'] -in yours,|['also', 'course!']| -with our,|['neighbours', 'whims']| -He drank,|['a', 'more']| -could catch,['glimpses'] -do without,['her'] -the steel,['poker'] -had almost,|['come', 'overcome']| -preserve it,['The'] -the buckles,['It'] -his ear,['while'] -light into,['this'] -her manner,['had'] -three o'clock,|['I', 'precisely', 'for']| -earning my,['fifty-guinea'] -shut the,|['business', 'door']| -that threshold,["again' here"] -hands into,|['his', 'the']| -and hope,['I'] -I want,|['to', 'you', 'the', 'said']| -immediately implicated,['in'] -a teetotaler,['there'] -one night,|['yes,', 'Oh', 'just']| -obvious at,['a'] -brick Irish-setter,['liver'] -came from,|['Dundee', 'there', 'the', 'Mr', 'California', 'somewhere', 'within']| -similar circumstances,['Again'] -obvious as,|['a', 'it']| -open market,['Tell'] -land money,['houses'] -empire said,['I'] -brother and,['sister'] -headstrong by,['nature'] -send you,['a'] -doubt of,['it'] -window hand,|['in', 'out']| -nine in,['the'] -be obeyed,['His'] -woven The,['first'] -been conveyed,['from'] -tried said,['he'] -The crudest,['of'] -dreadfully convulsed,['At'] -person to,|['resolve', 'the']| -his master,['had'] -solve so,['simple'] -Court Fleet,['Street'] -and any,|['letters', 'others']| -calmly I,['would'] -sticks gathering,['up'] -fainted when,|['it', 'she']| -monomaniac With,['a'] -this points,['The'] -association with,['Holmes'] -I inquired,['of'] -strolled up,['and'] -opened a,|['barred', 'locket', 'pocket-book']| -And on,['the'] -made myself,['clear'] -Well we,|['shall', 'talked']| -answer because,['I'] -that light,['among'] -sheets for,['I'] -rooms smelling,['of'] -Who would,|['think', 'associate', 'have']| -apiece an,['excessive'] -or have,['you'] -generations and,['leading'] -other Anyhow,['he'] -young not,['more'] -can have,|['some', 'the', 'no']| -top-hat to,['show'] -wore at,['the'] -to every,['man'] -|right," said|,['Holmes'] -gathered that,['they'] -was less,|['likely', 'inclined']| -theories instead,['of'] -words which,['were'] -|certainly, certainly|,['answered'] -had your,|['chance', 'address', 'revenge']| -fugitives disappeared,['and'] -party with,['the'] -minutes beginning,['in'] -mine are,['and'] -I His,|['form', 'hand']| -Cross and,['we'] -solitude in,['England'] -thousand things,['come'] -the mouth,|['of', 'and']| -clear For,['example'] -all quarters,|['received', 'received.']| -fairly long,['list'] -discloses a,['large'] -warmed my,['hands'] -E with,['a'] -he laying,['down'] -little game,['like'] -fight against,['a'] -surprise Astonishment,['at'] -have talked,['so'] -Covent Garden.,['was'] -sir in,['the'] -had time,['to'] -for Christmas,['and'] -their profession,['This'] -anywhere He,['would'] -us Who,['do'] -to it that,['it'] -doctor this,['is'] -belief unique,['portly'] -the orange,['pips'] -which surrounds,['me'] -on science,['the'] -passing his,['hand'] -side aisle,['like'] -he doing,['there'] -Valley estate,['was'] -Mr Wilson's,['assistant'] -directions and,['I'] -her sweetheart,|['and', 'of']| -kitchen window,['Holmes'] -We feed,['him'] -may meet,['any'] -gentleman whose,|['name', 'eccentric']| -such elaborate,['preparations'] -however and,|['quite', 'among', 'my', 'I', 'they', 'if', 'pressed', 'has', 'preserved']| -gasogene in,['the'] -no clue,['in'] -a monotonous,['occupation'] -biographies I,['was'] -humour never,['so'] -am right,['But'] -observing the,|['hand', 'dint']| -chair suggested,['that'] -beginning to,|['get', 'look', 'be']| -inquired your,['way'] -saying There,['is'] -not intruding,['I'] -steps worn,['hollow'] -fly Mr,['Holmes'] -don't mind,['breaking'] -shall probably,|['return', 'wish']| -his skin,['the'] -Found at,['the'] -recesses of,['his'] -your chance,['did'] -darkness God!",['I'] -your argument,['said'] -ring said,['Holmes'] -dressed with,['a'] -|Whose, then|,['I'] -sure I,['beg'] -his bird,['Then'] -the former,['she'] -bedroom flung,['open'] -concealment about,['a'] -communication with,['the'] -sure why?",['she'] -shelter and,['let'] -four hours,['a'] -court of,|['appeal', 'law']| -to love,|['for', 'him', 'I']| -also I,['could'] -they may,|['do', 'take', 'be', 'meet']| -sure a,|['precursor', 'moment']| -lately No,['one'] -I swear,['it'] -in April,['in'] -an exact,['knowledge'] -an opinion,|['upon', 'from', 'you.', 'I', 'remarked', 'as']| -the methods,|['of', 'I']| -be weary,['for'] -Street As,['I'] -professional acquaintance,['and'] -my excuses,['escaped'] -than she,['had'] -later a,['clanging'] -any burglar,['could'] -America with,|['their', 'him']| -name said,|['he', 'Holmes']| -seize the,['coat'] -business with,|['the', 'an']| -The puny,['plot'] -circumstances the,['young'] -Italian or,['French'] -later I,|['backed', 'heard', 'happened']| -dog as,['large'] -acquired was,['too'] -Her light,['grey'] -already heard,['from'] -you choose,['to'] -small unpleasantness,['Do'] -not make,['clear'] -been woven,['round'] -take him,['into'] -papers for,['a'] -silence before,['during'] -this lady's,['house'] -to-night or,['whether'] -guineas for,['a'] -wrapped cravats,['about'] -take his,['exercise'] -paper but,['his'] -anywhere near,['There'] -knew all,['about'] -my lips,|['at', 'would']| -in thinking,['that'] -This he,|['unpacked', 'opened']| -walk took,['us'] -We can't,['command'] -either you,['or'] -God! What,['a'] -When?" to,['whom'] -rising from,|['the', 'his']| -an Englishman,['and'] -always answered,['me'] -Openshaw but,['my'] -in intense,['excitement'] -did tell,['me'] -down suddenly,['upon'] -quite essential,['said'] -public manner,['you'] -ran to,['her'] -morning or,|['what', 'the', 'I']| -all paragraphs,['concerning'] -the shutter,|['open', 'half']| -the expense,['of'] -broke the,|['sad', 'seal']| -lately and,['that'] -his watch all,['were'] -and plain,['but'] -is simplicity,['itself'] -morning of,|['the', 'last', 'my']| -imploring me,['to'] -map What,['do'] -cockroaches with,['a'] -year said,['Holmes'] -and common,['transition'] -broad-brimmed hat,|['in', 'which']| -with occasional,['little'] -him wash,['his'] -dreaming He,['was'] -Stoper was,['not'] -wonderfully silent,['house'] -minutes dressed,['as'] -and did,|['my', 'not']| -crime but,['a'] -brute its,['black'] -Eyford for,['its'] -hardly shut,['the'] -Miss Sutherland's,['face'] -and often,['twice'] -affair now,['where'] -cannot confide,['it'] -premises and,['felt'] -man Your,['wife'] -Halifax in,['Nova'] -Christ's sake,["don't"] -mother's maiden,['sister'] -but more,['valuable'] -is well,|['To-morrow', 'thought', 'with', 'The', 'And']| -interest said,['Holmes'] -a caraffe,['was'] -know father,["didn't"] -a red,|['head', 'face']| -think me,|['mad', 'rude']| -observe Mr,['Holmes'] -the clues,['which'] -they hardly,['found'] -the simpler,['for'] -country my,['dear'] -Majesty would,['condescend'] -parents Don't,['you'] -your statement,|['very', 'is', 'could']| -Wednesday What,["d'you"] -going mad,['Sometimes'] -heard something,['Mr'] -see continued,['Holmes'] -whatever her,['sins'] -planks Is,['he'] -be thrown,['at'] -who assaulted,['me'] -beautiful creature,['against'] -McCarthys quarrelling,['near'] -knew at,|['once', 'what']| -done their,['work'] -friend Dr,['Watson'] -services and,['it'] -half feet,['of'] -a sad,['anxious'] -old ally,['the'] -he limped he,['was'] -an agent,|['without', 'it']| -McCarthy must,['be'] -possibility of,|['his', 'something']| -indeed happy,['Mr.'] -is more,|['likely', 'adapted', 'than', 'deserted', 'interesting']| -path it,['would'] -of fowls,['and'] -this Captain,['Calhoun'] -private park,['of'] -if this,|['is', 'were']| -bank can,['thank'] -time after,['listening'] -was quite,|['too', 'right', 'invisible', 'against', 'master', 'impossible', 'alone', 'as', 'certain', 'secure', 'a', 'beyond', 'weary']| -is there,|['that', 'cried']| -refused to,|['marry', 'deal', 'associate', 'examine', 'credit', 'raise']| -of rending,['cloth'] -foolishly rejected,["come!'"] -came again,['on'] -matters of,['importance'] -means an,['affaire'] -preparing for,['an'] -is almost,|['time', 'invariably']| -boots his,|['lameness', 'socks']| -Jezail bullet,['which'] -the afternoon,|['he', 'We', 'and', 'So', 'I', 'who']| -recompense you,['for'] -has some,['deadly'] -stream which,['runs'] -old clock,['ticking'] -crisp rattle,['of'] -go very,['far'] -light of,|['a', 'the', 'her']| -should stand,['in'] -here's your,['good'] -word. good.',['He'] -feigned indignation,['at'] -colonel needed,['to'] -then mister,['said'] -to sell,|['it', 'his']| -and Watson,['here'] -vague and,['my'] -person on,|['which', 'Monday']| -prisoner as,['the'] -so pale,['but'] -while it,['is'] -while in,['the'] -fairer view,['of'] -person or,|['persons', 'in']| -a drab,['waistcoat'] -injured I,['dropped'] -complaint can,['set'] -Arthur went,['to'] -Armitage of,['Crane'] -loud and,['authoritative'] -suffer I,['struck'] -an armchair,|['threw', 'You', 'he', 'beside']| -it after,['all'] -which sank,['into'] -had rushed,|['up', 'forward']| -the dregs,['of'] -else for,['me'] -dropped it,['from'] -done In,['a'] -no tie,['between'] -me think,['that'] -Nothing to,['complain'] -money When,|['he', 'she']| -than yours,['or'] -no sense,['of'] -the more,|['bizarre', 'daring', 'obvious', 'difficult', 'one', 'strange', 'implacable', 'patent', 'readily', 'worthy', 'ready', 'interesting', 'striking', 'chivalrous']| -an advance,|['from', 'upon']| -more heartily,['ashamed'] -were made,['of'] -brilliant which,['sparkled'] -return The,['second'] -inspector sat,['down'] -the dimly,['lit'] -lost nothing,['by'] -dealer's Jem.,["dealer's?'"] -windows were,|['thick', 'blocked', 'broken']| -you back,['all'] -more feat,['I'] -heated metal,['Someone'] -smiled but,|['there', 'sat']| -is good.,['I'] -skin I,['do'] -police As,['to'] -me very,['well'] -away or,['perhaps'] -myself Male,['costume'] -doubt at,['all'] -fellow Striding,['through'] -clapped the,['hat'] -doubt as,|['to', 'you']| -desk can,['I'] -enough!" said,['Mr'] -public It,['was'] -symptoms Ha,['did'] -Holborn Holmes,['pushed'] -chill to,['my'] -restless frightened,['eyes'] -huge man,['had'] -took in,|['my', 'order']| -angle in,['the'] -been either,['mad'] -to utter,['the'] -his wrists,['You'] -My morning's,['work'] -lock yourselves,['in'] -and delight,['everything'] -as everyone,['else'] -thin line,['of'] -each mumbling,['out'] -yet Suddenly,['however'] -it might,|['be', 'have', 'never', 'veil']| -which will,|['always', 'take', 'no', 'guide', 'happen', 'interest', 'enable', 'probably']| -S carved,['upon'] -took it,|['up', 'away']| -work the,['longer'] -its gullet,['and'] -Holmes Flora,['was'] -the tall,['man'] -come uppermost,['He'] -story gentlemen,['of'] -most maddening,['doubts'] -single bright,['light'] -the holder,['of'] -lays his,['fangs'] -fills of,['shag'] -for one,|['of', 'rather', 'night']| -Clay His,['grandfather'] -it quite,['too'] -laid before,['you'] -enigmatical notices,['Hudson'] -not risk,['the'] -|to? Eyford,|,['in'] -considerable dowry,['fair'] -were evidently,['all'] -be repugnant,['to'] -young wife,['Rucastle'] -patient as,['I'] -observer contain,['the'] -the past,['All'] -or cry,['and'] -man During,['that'] -his cursed,['stock'] -conduct would,['bring'] -or later,|['It', 'she']| -lapse of,['two'] -sought a,['solution'] -him villain!",['said'] -ear and,|['vouching', 'then']| -not invent,['a'] -act and,['no'] -Echo and,['any'] -criminals were,['not'] -knowledge as,['to'] -We lunch,['at'] -splendour was,['in'] -his gaze,['directed'] -inquiries are,['being'] -met with,|['such', 'her']| -June 3rd,['that'] -vegetables round,['His'] -saw me,|['first', 'without']| -saw my,['sister'] -the row,['broke'] -Bohemia and,|['how', 'of']| -meal by,['taking'] -any beggar,['in'] -cheeks were,['red'] -anything James,['and'] -The first,|['consideration', 'had']| -had given,|['him', 'his', 'me', 'the', "It's"]| -just for,['the'] -curiosity until,['with'] -circles in,['which'] -from Marseilles,['there'] -wrong which,['I'] -armchair beside,['the'] -enjoy it,['in'] -thus MR.,['HOLMES: I'] -should dwell,['You'] -the charge,|['of', 'against']| -have one,|['or', 'waiting', 'to', 'it', 'belonging']| -bustling in,['dangling'] -tones of,['the'] -own There,['is'] -door forget,['that'] -debts if,['we'] -back her,['head'] -wedding ceremony,['the'] -worn all,['the'] -his wit,['for'] -anything I,['got'] -caused by,|['someone', 'some', 'one', 'her', 'a', "Arthur's"]| -indistinguishable Just,['beyond'] -spectators well,['dressed'] -result of,|['a', 'driving', 'causing']| -has brought,|['in', 'me']| -professional skill,['and'] -why you,|['did', 'should']| -a king,['really!'] -father asked,['Holmes'] -stone was,['lying'] -mystery through,['which'] -exclusion at,['the'] -trees as,['the'] -You heard,['him'] -whoever it,['was'] -simplicity itself,['said'] -lady Frank,['here'] -the peaceful,['beauty'] -of cubic,['capacity'] -and suited,['me'] -the nursery,|['and', 'days']| -to regain,['it'] -however by,['my'] -answered sharply,['I'] -way be,['found'] -laying his,['hand'] -even he,['to'] -entered so,['that'] -over our,|['heads', 'stepfather']| -It's the,['big'] -thinks my,['little'] -thrilling with,['horror'] -is his,|['main', 'very', 'said', 'hat', 'name']| -pulled out,['a'] -passed after,['the'] -man Boone,['had'] -months older,['than'] -heard what,|['he', 'passed']| -by cocking,['a'] -Such was,['the'] -merely a,|['couple', 'case']| -street but,['the'] -a kind,['of'] -came up,|['and', 'from', 'by']| -money. firm,['does'] -the wagon-driver,['who'] -thrust forward,['and'] -Secretary for,['Foreign'] -his fingertips,|['together', 'still']| -been intrusted,['to'] -All well,['you!"'] -houses each,['in'] -pencil upon,['the'] -was dressing,['in'] -P of,['course'] -their pick,['for'] -|short, that|,['she'] -sit on,['the'] -a drawn,['face'] -This we,['have'] -was feeling,['which'] -whatever might,['befall'] -walk down,['to'] -naturally did,['not'] -stone floor,|['no', 'of']| -grief came,['to'] -window hoping,['that'] -stair The,['latter'] -very probable,['now!"'] -means and,['above'] -other times,['except'] -very soon,|['I', 'be']| -gentleman I,['describe'] -dinner I,['told'] -ransacked them,['before'] -there This,|['man', 'barricaded']| -Road 249 read,['Holmes'] -about however,['with'] -Holmes raved,['in'] -some day,|['citizens', 'play']| -managed several,['delicate'] -long questioning,['gaze'] -lower down,['was'] -Gravesend by,['a'] -mind would,['go'] -of confining,['yourself'] -dining-room rushed,['upstairs'] -this sort,|['of', 'which', 'sir']| -his triumph,['and'] -madly insanely,['in'] -Peterson had,['rushed'] -paper The,['question'] -on seeing,['the'] -in Europe,|['Holmes', 'I']| -bed dies,['Does'] -in southern,['China'] -the outstretched,['palm'] -Oh come,['you'] -hole and,|['was', 'I', 'coming']| -worms I,['never'] -the unopened,['newspaper'] -affairs in,['this'] -gain them,['know'] -I rapidly,['threw'] -told it,['to'] -ever recovered,['his'] -spite of,|['the', 'its', 'my']| -his heels,|['and', 'with', 'came']| -Hall this,['afternoon'] -essence of,['the'] -came and,['they'] -your reason,['breaks'] -duties then,['I'] -life Her,['violet'] -figure like,['a'] -away the,|['tangled', 'dangers']| -ruined gambler,['an'] -gaze She,['said'] -some more,|['tangible', 'convenient']| -down I,|['followed', 'clambered']| -problem When,['you'] -Holmes throwing,['his'] -those quarters,['Twelve'] -strange to,['him'] -pasty face,['drooping'] -And there,['is'] -the moonlight,|['and', 'Sir']| -crime while,['I'] -t stands,['for'] -have concealed,['the'] -hands seem,['to'] -down a,|['heavy', 'narrow', 'flight', 'dark', 'passage', 'winding', 'life-preserver']| -the darkness,|['In', 'this', 'God!"', 'glanced', 'of', 'be']| -cell The,['sleeper'] -Saviour's near,["King's"] -seats to,['return'] -not sure,|['when', 'that', 'which', 'whether']| -this the,['victim'] -how can,['that'] -extraordinary one,['and'] -street If,['you'] -glance from,['his'] -turned on,['his'] -he grasped,['my'] -head by,['putting'] -the amount,|['that', 'but']| -pistol and,['we'] -box of,|['bricks', 'matches']| -in America,|['Some', 'they']| -they came,|['to', 'out', 'like']| -takes snuff,['that'] -Holmes after,['a'] -Clair with,['the'] -the Serpentine-mews,['to'] -an alliance,['which'] -would stay,['with'] -hear the,|['rumble', 'gentle', 'fuss', 'deep', 'rights']| -good amiable,['disposition'] -days with,['news'] -my kingdom,['to'] -sister must,['have'] -account also,['for'] -them like,['he'] -is however,['one'] -did and,['when'] -heavy weapon,['I'] -very clear,|['upon', 'to', 'that', 'you']| -thoughts before,['he'] -matters which,['are'] -all take,['care'] -and above,|['the', 'all']| -alarm and,|['Horner', 'had']| -your interests,['were'] -When the,['inspector'] -know my,|['dear', 'method', 'methods']| -so warm,['over'] -sleeping off,['the'] -goading him,['on'] -happened within,['a'] -told him,|['There', 'of', 'that']| -out that,|['it', 'he', 'business']| -cigar-holder could,['see'] -|Clay, the|,['murderer'] -know me,|['too', 'then']| -best detective,['that'] -be raising,['money'] -life abroad,['and'] -of trying,['said'] -the corners,['of'] -not be,|['more', 'bought', 'able', 'up', 'aware', 'allowed', 'kept', 'such', 'natural', 'happy', 'delirium', 'difficult', 'shown', 'frightened', 'found', 'called', 'so', 'again', 'wanting', 'far', 'traced', 'very', 'surprised', 'offensive', 'long']| -done no,['harm'] -Elise! he,['shouted'] -came staggering,['out'] -adopted a,['system'] -us hear,|['a', 'it']| -finally covered,['it'] -knew for,['what'] -out no,|['longer', 'more']| -thought people,['would'] -Wednesday last there,['is'] -smile and,['general'] -swung through,['the'] -dark course,['you'] -made of,|['solid', 'this', 'frosted']| -his white,['tie'] -interfere with,['your'] -important also,['or'] -four I,|['had', 'have']| -insinuating manner,['and'] -follow it,|['out', 'from']| -cocking a,['rifle'] -your coffee,['I'] -not trouble,['about'] -paying little,['heed'] -woman He,['does'] -conduct had,|['long', 'drawn']| -police-court business,['over'] -follow in,['the'] -he restored,['to'] -why are,['you'] -Gone too,['was'] -mine He,['said'] -furniture that,['he'] -last successful,['and'] -Had he,|['appeared', 'observed', 'lost']| -the morning,|['I', 'She', 'when', 'It', 'Our', 'as', 'paper', 'so', 'he', 'of', 'at', 'broke', 'upon', 'and', 'returning', 'heard', 'had', 'train', 'light', 'until', 'waiting', 'papers', 'then', 'or', 'there', 'before', 'dipping', 'You', 'He', 'eleven']| -typewritist presses,['against'] -that a,|['man', 'gipsy', 'single', 'woman', 'young', 'typewriter', 'question', 'small', 'certain', 'huge', 'rat', 'clever', 'great', 'conclusive', 'prosecution', 'word', 'ladder']| -brown board,['with'] -o'clock the,|['light', 'next']| -insolence to,['confound'] -shilling of,['mine'] -one week,['and'] -large sums,|['upon', 'of']| -five dried,|['pips', 'orange']| -of dates,['A'] -held it,|['out', 'against']| -gem was,['lost'] -languid dreamy,['eyes'] -acting for,['the'] -that I,|['had', 'could', 'would', 'was', 'am', 'bore', 'might', 'have', 'prepare', 'never', 'remarked', 'did', 'make', 'thought', 'got', 'miss', 'may', 'heard', 'cannot', 'can', 'should', 'shall', 'do', 'felt', 'found', 'will', 'must', 'know', 'see', 'at', 'and', 'held', 'spoke', 'sent', 'saw', 'knew', 'woke', 'tell', 'wish', 'mentioned', 'instantly', 'asked', 'failed', 'smiled', 'left', 'uttered', 'jumped', 'extend', 'feared', 'need', 'hear', 'recognise', 'still', 'get', 'became', 'understood', 'lock']| -held in,['his'] -terrible and,['deadly'] -over-clean black,['frock-coat'] -his bedroom,|['and', 'door']| -that A,['and'] -that C,['was'] -suggestive You,['will'] -you didn't,['let'] -has its,['French'] -written my,['note'] -ourselves very,['seriously'] -that nothing,['should'] -bandage I,['feel'] -the fattest.,['says'] -outrages were,|['usually', 'traced']| -conceives an,['idea'] -THE SPECKLED,['BAND'] -and came,|['home', 'down', 'right', 'in', 'into', 'within', 'up', 'from', 'to']| -leather cap,['which'] -half-frightened half-hopeful,['eyes'] -turned once,['more'] -Perhaps we,['had'] -visitor with,['the'] -time before,['I'] -caught in,|['his', 'the']| -down as,['an'] -down at,|['the', 'her', 'him', 'his', 'me', 'my']| -Indeed apart,['from'] -and school,['companion'] -investigation It,['may'] -caught it,['and'] -positive intention,['of'] -soul seemed,['to'] -quarrel which,['would'] -eight or,['nine'] -Stoner of,['the'] -station of,['his'] -keen as,|['the', 'mustard']| -clasped behind,['him'] -Roylott drive,['past'] -companion rose,['to'] -were chosen,['doubtless'] -fatal to,['our'] -to add,['the'] -pockets for,['the'] -consisted of,['a'] -the magistrates,['at'] -Rucastle suddenly,['remarked'] -of bramble-covered,['land'] -bosom is,['one'] -shoulders Well,['perhaps'] -exchange willingly,['the'] -the hedge,['close'] -took up,|['the', 'a']| -past six,['when'] -same Monday,['very'] -imprisoned in,['this'] -delayed at,['a'] -my wit's,['end'] -mind Monday,['Mr'] -tearing a,['piece'] -society of,|['the', 'what']| -to Turner's,['daughter'] -work it,['out'] -clanging sound,['as'] -exceedingly unfortunate,['that'] -right had,['he'] -a dummy,|['said', 'and']| -work is,['slight'] -agency for,|['recovering', 'governesses']| -our roof,['suppressing'] -importance that,['it'] -his destiny,['Be'] -papers What,['sundial?'] -Freemasonry won't,['insult'] -bird all,['the'] -cried Miss,['Hunter'] -so thin,|['however', 'a']| -occupant The,['house'] -extraordinary powers,|['of', 'His']| -been watching,|['the', 'me']| -must look,|['at', 'after']| -give them,|['two', 'are', 'some']| -he unlocked,['Within'] -door flew,['open'] -have figured,['but'] -most pleasant,['fashion'] -been twisted,['in'] -grind me,['to'] -there Oh,['do'] -his knee,|['I', 'Here', 'Lord']| -woman oh what,['a'] -the wooden,|['case', 'floor', 'chair', 'walls']| -front door,|['we', 'This', 'cried']| -the chimney,['Sherlock'] -action for,|['breach', 'assault']| -1887 he,['married'] -deadly What,['could'] -many years,|['he', 'has']| -see Well,['then'] -formidable letters,['which'] -tint so,['that'] -had drifted,|['us', 'into']| -pestering me,['any'] -bark from,['a'] -landau the,['coachman'] -of then,['is'] -a particular,['shade'] -to no,['disease'] -prison to,['see'] -Leadenhall Street,|['did', 'Post', 'Anybody', 'which']| -think we,['had'] -tack Here,['it'] -by train,['this'] -common subject,['for'] -beside it,['As'] -very nicely,|['Doctor', 'upon', 'and', 'In', 'Then']| -man The,['bride'] -or do,['I'] -instantly and,['act'] -over-pleasant I,['was'] -Incredible imbecility,['he'] -waiting now,['in'] -by courtesy,['but'] -would hardly,['be'] -very stout,['florid-faced'] -likely to,|['be', 'call', 'occur', 'use', 'see', 'want', 'weigh', 'find']| -later she,['must'] -life is,|['spent', 'infinitely', 'despaired', 'a', 'worth.']| -more inexorable,['face'] -an equal,['light'] -not are,['sure'] -life in,|['him', 'Afghanistan', 'America']| -formed by,|['the', 'some']| -window about,['two'] -shoes or,['slippers'] -of whipcord,|['do', 'were']| -But after,['all'] -Mr St,|["Clair's", 'Clair']| -him are,['looking'] -corner a,|['scissors-grinder', 'narrow']| -Simon bitterly,|['yes,']| -anger by,['calling'] -of grey,['lichen-blotched'] -ha What,['have'] -colonel ushered,['me'] -real vivid,['flame-coloured'] -through under,['exactly'] -must fly,['to'] -Fareham in,['the'] -lucky chance,|['has', 'I']| -and louder,|['and', 'a']| -do to,|['prevent', 'make', 'distinguish']| -arrived on,['March'] -intently I,['had'] -the scene,|['of', 'he', 'it', 'when']| -small round,['hanging'] -|me, dad|,['said'] -stricken man,['To'] -a wife's,['eyes'] -disappeared before,['you'] -now married,['her'] -the twelve,["o'clock"] -completely overtopped,['every'] -the scent,['of'] -manner and,|['a', 'speech']| -bath-sponge he!,['You'] -it One,|['other', 'of']| -opinion you.,['I'] -but nothing,|['remained', 'was']| -man McCarthy,|['He', 'I']| -camp had,['been'] -not recognised,['me'] -too hardened,['for'] -possible supposition,['think'] -my friends,|['into', 'but']| -fact we,['may'] -think You,['remember'] -them again just,['sending'] -also He,['is'] -to Hereford,['and'] -slow limping,['step'] -precious public,['possessions'] -too have,['baffled'] -Sophy Anderson",['of'] -no common,['one'] -three and,['still'] -lovely country,['my'] -advertise visitor,['gave'] -disposition is,['abnormally'] -dirty and,['wrinkled'] -in size,['but'] -He's a,|['young', 'remarkable']| -right James,['never'] -little short,['of'] -narrowly escaped,['a'] -the field,|['of', 'down']| -wrists You,['may'] -a four-wheeler,|['which', 'and']| -wife can,['understand'] -up some,['small'] -Andover in,['77'] -St George's,|['was', 'Hanover']| -suicide of,['it'] -of frosted,['glass'] -locked with,['a'] -drive and,['lay'] -are nearing,['the'] -to part,['with'] -than when,|['I', 'the']| -now continue,['my'] -the Edgeware,['Road'] -Holmes As,['to'] -Lestrade would,['have'] -casket in,['which'] -suspicious looks,['at'] -and solemnly,['he'] -demand during,['the'] -a tap,['at'] -her own,|['house', 'guardianship', 'family', 'circle', 'age', 'death', 'way', 'little', 'by']| -James Ryder,|['upper-attendant', 'so.']| -distracting factor,['which'] -the misfortune,['to'] -brown A,['touch'] -seeing him,|['also', 'The', 'nearly']| -Museum itself,['during'] -block And,['now'] -eye to,['chin'] -glasses of,['beer'] -goes out,|['at', 'little']| -mother she,['had'] -his affairs,['so'] -the tracks,['saw'] -There's plenty,['of'] -and cushions,['from'] -money and,|['that', 'never', 'he', 'had']| -rooms Catherine,['Cusack'] -I pay,['good'] -just seven,['when'] -traces of,|['doubt', 'the', 'violence', 'blood', 'Mr']| -day we,['were'] -causing injuries,['which'] -Frank standing,['and'] -sister dressed,['she'] -a breath,['and'] -to apologise,['to'] -under this,|['great', 'rambling', 'one']| -my laughter,['I'] -two golden,['tunnels'] -seemed surprised,['I'] -I stared,['at'] -open but,['without'] -copper beeches,|['immediately', 'As']| -this kind,['Where'] -be no,|['question', 'doubt', 'more', 'obstacle', 'chance', 'possible', 'prosecution']| -blundering of,['a'] -been ascertained,['who'] -done so,|['But', 'I', 'before']| -was gentle,["He'd"] -already managed,['several'] -and open,|['drawers', 'the']| -absolutely determined,['that'] -a way,|['as', 'that']| -essential absolute secrecy,['you'] -my sister's,|['house', 'and', 'voice', 'door', 'side', 'death']| -The machine,['goes'] -They used,['to'] -wouldn't have,|['any', 'that']| -But to,['my'] -gave such,['a'] -at St,|["James's", "Saviour's", "George's"]| -I give,['you'] -asks says,['he'] -middle window,['we'] -spring into,['a'] -say now,|['as', 'Holmes']| -but referred,['it'] -quivered with,['emotion'] -their windows,['as'] -than 150,['yards'] -or turn,['my'] -run out,['to'] -commissionaire had,['gone'] -and here,['are'] -had walked,|['several', 'both']| -pursued by,['so'] -direct line,['to'] -so persistently,['floating'] -founded rather,['upon'] -draw would,['give'] -the windowsill,['and'] -a hound,['and'] -as on,['a'] -even execution,['rather'] -be there.,['not'] -been cleared,|['so', 'yet']| -shoulder It,['was'] -to stare,['at'] -as of,|['old', 'the', 'burned', 'a']| -heels in,['one'] -drab waistcoat,['with'] -more nearly,['correct'] -it Becher's.",|['me,"']| -astonishment a,|['very', 'quite']| -fell unheeded,['upon'] -other end,|['of', 'which', 'I']| -scruples as,['to'] -first thing,['that'] -the newcomer,['Out'] -only in,|['the', 'monosyllables', 'his']| -I started,|['off', 'from', 'when', 'to']| -utter the,['name'] -advance with,['whatever'] -My God,|['my', 'What', 'what']| -him Miss,['Turner'] -know said,['he'] -have dated,['from'] -dingy two-storied,['brick'] -southern suburb,['but'] -some sound,['in'] -longer time,['they'] -act shall,['I'] -same care,['to'] -but indeed,['I'] -other purposes,['how'] -and patting,['her'] -the men,['of'] -not within,['a'] -bright red,['hair'] -side door,|['which', 'led', 'God!"']| -end He,['has'] -companion and,['the'] -beef and,['a'] -Jones in,['his'] -that? said,['he'] -parish clock,['which'] -Jones it,|['is', 'will']| -open They,['each'] -of tales,['was'] -barrel of,['a'] -high treble,['key'] -a quarter-past,|['nine', 'seven']| -honour and,|['discretion', 'attempted']| -the untimely,['death'] -violent quarrel,['She'] -but was,|['elbowed', 'interested', 'a', 'as', 'succeeded', 'still']| -we get,|['farther', 'round', 'to']| -about her,|['approaching', 'when', 'like']| -painful event,['which'] -problem and,|['I', 'its']| -mad I,['found'] -be quick,['for'] -facts that,['he'] -secured the,['shutters'] -the Franco-Prussian,['War'] -us do,['so'] -prediction was,['fulfilled'] -question sir,['whether'] -Morning Post,|['and', 'to']| -place and,|['I', 'pluck', 'many', 'that']| -but before,|['he', 'I']| -really knew,['her'] -Openshaw were,['never'] -larger ones,['upon'] -abroad Besides,['it'] -own death,['I'] -library where,['he'] -lodge-keeper He,['was'] -the station,|['with', 'The', 'Have', 'but', 'lady', 'inn', 'and']| -tapped me,['on'] -the best,|['resource', 'plans', 'of', 'policy', 'laid', 'have', 'detective', 'use', 'Take', 'was', 'possible']| -sunset however,['their'] -wrinkled bent,['with'] -she am,['Mr'] -screams he,['rushed'] -that the,|['world', 'title', 'very', 'passage', 'clergyman', 'King', 'strangest', 'facts', 'trustees', 'League', 'vacancy', 'whole', 'name', 'lust', 'play', "enemy's", 'light', 'night', 'only', 'matter', 'maiden', 'machine', 'little', 'fourteen', 'two', 'one', 'description', 'change', 'case', 'circumstances', 'cry', 'coroner', 'reason', 'posterior', 'murdered', 'someone', 'soles', 'person', 'end', 'son', 'jury', 'same', 'danger', 'inspector', 'letters', 'deaths', 'small', 'reasoner', 'probability the', 'writer', 'vessel', 'sudden', 'deceased', 'ship', 'barque', 'practice', 'office', 'bleeding', 'stains', 'presence', 'ebbing', 'weighted', 'police', 'impression', 'boy', 'details', 'clothes', 'hat', 'initials', 'wearer', 'gas', 'individual', 'bureau', 'bird', 'gang', 'doctor', 'door', 'flooring', 'mystery', 'crocuses', 'cheetah', 'bed', 'rope', 'events', 'pledge', 'lamp', 'story', 'black', 'pain', 'blood', 'colonel', 'horse', 'silent', 'full', 'status', 'Duke', 'Californian', 'marriage', 'party', 'wedding', 'honeymoon', 'excitement', 'Serpentine', 'things', 'contents', 'folly', 'lady', 'mere', 'money', 'strain', 'law', 'guilt', 'truth', 'coronet', 'latter', 'pavement', 'keenest', 'affair', 'increased', 'lowest', 'scream', 'chance', 'evening', 'room', 'converse']| -ago and,|['as', 'has', 'it', 'met', 'left', 'from']| -silently he,['made'] -your father,|['Did', 'make', 'had', 'It', 'fatally', 'asked', 'if', 'whence']| -Neville wrote,['those'] -The most,|['lay', 'serious']| -excellent I,|['am', 'think']| -but recover,['the'] -no coins,['were'] -Watson asked,['Sherlock'] -hands the,|['first', 'value']| -A gentleman,['entered'] -and shoves,['Hullo!'] -writhing limbs,['and'] -beaten track,["isn't"] -just run,['over'] -drawer open,['There'] -no notion,['as'] -than did,['the'] -had heard,|['He', 'that', 'what', 'I', 'in', 'Ryder', 'it.', 'must', 'of']| -example how,['did'] -them however,['in'] -a plainly,['furnished'] -catch him,['and'] -shaken but,['not'] -thick red,['finger'] -might for,['all'] -wind cried,['and'] -drawn out,|['I', 'by']| -but Sherlock,['Holmes'] -This gentleman,['Mr'] -police know,['what'] -distance followed,['shortly'] -eye over,['it'] -same As,['to'] -the moist,['earth'] -very pressing,|['which', 'need']| -received by,['himself'] -me by,|['the', 'my', 'Sherlock', 'one']| -a check,['to'] -there he,|['sat', 'would', 'was']| -furniture of,['my'] -she and,|['we', 'that', "I'd"]| -it presently,['Jump'] -conversation is,['most'] -end when,['he'] -is will,['suffer'] -continue with,['my'] -longer desired,['his'] -woodcock a,['pheasant'] -hansom Watson,['and'] -one fact,['which'] -any rate.,['She'] -a gong,['upon'] -two McCarthys,|['were', 'quarrelling']| -we were,|['engaged', 'a', 'to', 'past', 'little', 'groping', 'well', 'forced', 'flying', 'shown', 'compelled', 'each', 'in', 'back', 'sharing', 'only', 'occasionally', 'fortunate', 'going', 'out', 'left', 'but', 'and', 'all', 'so', 'taking']| -with crates,['and'] -we settle,['this'] -wooden case,['behind'] -distance from,|['Paddington', 'the']| -dressed in,|['a', 'black', 'etc.']| -face though,["he's"] -through Wigmore,['Street'] -copy of,['the'] -attention very,['particularly'] -Peterson run,['down'] -and so,|['may', 'necessitate', 'made', 'through', 'after', 'at', 'they', 'you', 'uncertain', 'by', 'of', 'had', 'startling', 'systematic', 'too', 'he', 'on', 'dramatic', 'we', 'terrible', 'round', 'thoughtful', 'ill-natured']| -weighed down,['with'] -fallen since,['the'] -one Mr,['Hatherley'] -dates A,['ventilator'] -methods of,|['my', 'reasoning']| -was delirious,['Coroner'] -clothes on,['without'] -stories that,['I'] -clothes of,['Mr'] -so do,['I'] -Waterloo Bridge.,['Here'] -tobacco and,|['as', 'a']| -the agony,['column'] -six cases,['which'] -at bottom,['a'] -gentleman?" she,['asked'] -ways of,|['our', 'thieves']| -repeated There,['was'] -beyond measure,['Have'] -been abandoned,['as'] -interview with,|['him', 'you']| -but still,|['I', 'remained']| -weak and,['ill'] -can our,['actions'] -ways or,['might'] -them held,['the'] -with extraordinary,['luck'] -against whom,['I'] -with emotion,['Oh'] -occupation My,['dear'] -hearts and,['I'] -days are,['past'] -gravely would,['have'] -from Grosvenor,['Mansions'] -devil ejaculation,['had'] -Camberwell poisoning,['case'] -us? could,['hardly'] -when Whitney,['was'] -shoulder and,|['looking', 'pointed']| -have stopped,['all'] -sharp pull,['at'] -at Stoke,['Moran'] -money mining.,['He'] -gum the,['letter'] -fact he,|['answered', 'took']| -else She,['could'] -boa round,['her'] -and habits,['I'] -I examining,['the'] -head nor,['tail'] -gasped means,['that'] -window had,['gently'] -hearty noiseless,['fashion'] -an enclosure,['here'] -not Did,['you'] -to Dr,|['Roylott', "Roylott's"]| -the Albert,['Dock'] -trust him,|['for', 'in']| -tiny pilot,['boat'] -over however,['he'] -my pursuers,['But'] -on the,|['twentieth', 'inside', 'right', 'day', 'table', 'one', 'other', 'simple', 'scene', 'pavement', 'whole', 'League', 'important', 'ground-floor', 'way', 'programme', "man's", 'strange', 'contrary', 'premises', 'Testament', 'sly', 'very', 'left', 'side', 'morning', 'next', 'typewriter', 'corner', 'grass', 'top', 'ground', 'ashes', 'sofa', 'road', 'arm', 'strength', 'hook', 'sundial', 'sundial.', 'direct', 'outskirts', 'wrong', 'couch', 'shoulder', 'angle', 'papers', 'stall', 'verge', 'mantelpiece', 'left-hand', 'western', 'lawn', 'upper', 'dark', 'wooden', 'bed', 'wood-work', '9th', 'distaff', 'previous', 'Pacific', 'subject', 'landing', 'heaped-up', 'turf', 'dressing-table', 'sum', 'trail', 'white', 'trivial', 'far', 'most', 'fourth', 'third', 'lookout', 'door-step', 'kitchen']| -tiny stock,['of'] -Lane he,['ever'] -property But,['there'] -he heavily,['timbered'] -it right.,['took'] -is fastened?,|['sure,']| -chair once,['more'] -provided for,['and'] -is occasionally,|['good', 'very']| -asked with,|['a', 'his', 'interest']| -time Watson,['I'] -parents or,['relations'] -their sailing-ship,['reaches'] -the devil's,['pet'] -but think,['with'] -perch behind,['her'] -your niece,|['Mary', 'and']| -the rest,|['there', 'he', 'I', 'it', 'is', 'when']| -married without,['anyone'] -hand was,|['still', 'found', 'a']| -a folded,['paper'] -uncourteous to,['his'] -finer field,['for'] -be blockaded,['the'] -colonel's plate,['It'] -speak to,|['me', 'the', 'her', 'you', 'me?', 'this']| -widower and,|['never', 'have', 'that']| -command of,['one'] -applying if,['your'] -purple dressing-gown,['a'] -learn Miss,['Alice'] -mumbling responses,['which'] -has loosed,['the'] -affair compose,['yourself'] -as regards,['the'] -undoubtedly in,['an'] -Cusack who,['told'] -lady even,['though'] -was meant,['to'] -end which,['was'] -from west,['to'] -that showed,['that'] -Ballarat Gang,['day'] -they cared,['no'] -pencil and,['that'] -villain would,['see'] -must get,|['home', 'rid', 'these']| -I paced,['up'] -fatally injured,['Nothing'] -Holmes your,['stepfather'] -than Italian,['or'] -delicacy that,['I'] -her wee,['hand'] -perfectly familiar,['to'] -across and,|['threw', 'down', 'the']| -very good-night,['He'] -money which,|['my', 'I', 'would']| -only applicant,['I'] -nocturnal expedition,['and'] -he first,['did'] -exaggerated in,['its'] -|sir," said|,['Baker'] -was standing,|['between', 'in', 'open', 'beside', 'rapt']| -kept upon,['the'] -would the,['wretched'] -years have,['passed'] -returned home,['in'] -obliged if,['you'] -in fact,|['is', 'he', 'it']| -I attempt,['to'] -|lines what,|,['then'] -raising his,['golden'] -|opium you,|,['Mrs'] -Albert chain,['and'] -angry at,['having'] -am saved,|['I', 'reaction']| -make anything,['of'] -too were,['bloodless'] -murdered man,|['is', 'had', 'was']| -Holmes sinking,['back'] -steamer they,['would'] -very shamefully,['treated'] -a child,|['could', 'in', 'whose', 'who', 'by']| -her also,|['She', 'in']| -trail in,['this'] -brown overcoat,['with'] -our cab,['and'] -a chill,|['to', 'wind']| -glanced at,|['the', 'her', 'my', 'it', 'him', 'me', 'Mrs']| -Colonel Spence,|['Munro', 'Munro.']| -twice in,['a'] -window-sill of,['the'] -prey Briefly,['Watson'] -lawyer named,['Norton'] -at No,['4.'] -memory of,['the'] -escaped came,['on'] -she know,['where'] -only three,['minutes'] -little house,['it'] -to recompense,['you'] -frantically to,['her'] -to commit,['you'] -Paris to-morrow,['only'] -the trampled,['grass'] -your confession,|['at', 'and']| -as to,|['my', 'money', 'learn', 'this', 'join', 'what', 'his', 'bandy', 'the', 'your', 'those', 'their', 'deceive', 'how', 'where', 'details', 'be', 'make', 'taking', 'come', 'remove', 'holding', 'who', 'wake', 'interest', 'whether', 'go', 'recompense', 'sitting', 'cut', 'put']| -gentleman Lord,['St'] -a nipper,['I'] -possibly leave,['until'] -been subjected,['to'] -similar whistle,['from'] -assured him,['that'] -to claim-jumping which,['in'] -eclipsed it,['and'] -Peterson said,['he'] -find words,['to'] -repeated upon,['it'] -downstairs when,['the'] -depends And,['now'] -appeared when,['the'] -pale with,['something'] -pens and,['blotting-paper'] -dusk and,['the'] -would associate,['crime'] -Ha did,['I'] -tax upon,['his'] -to Lee,|['It', 'a']| -wife do,['when'] -annoyance but,['no'] -road topped,['a'] -the level,['of'] -father is,['very'] -absolutely essential,['to'] -emotions and,['that'] -of exercising,['enormous'] -to rain,['with'] -associate himself,['with'] -father if,['I'] -Lestrade You,|['know', 'hear', 'will']| -word client,['of'] -conducting the,['case'] -fourteen other,['characteristics'] -rope was,['there'] -6d. cocktail,['1s.'] -for marriage,['Was'] -was under,['the'] -don't it's a,['fine'] -sir See,['what'] -was certain,['that'] -crimes which,|['I', 'are']| -interest The,['only'] -found you,['lying'] -as many,['minutes'] -some account,['of'] -huge crest,['and'] -can infer,['from'] -investments with,['which'] -the lad,|['says', 'but', 'who', 'slipped', 'could']| -smile as,['he'] -crime to,['crime'] -not familiar,['with'] -o'clock he,['bade'] -seconds of,|['her', 'being']| -keenly down,['at'] -our dear,['Arthur'] -stuck to,['her'] -my assistant,|['and', 'was', 'hardly', 'But']| -clergyman But,['you'] -thought that,|['I', 'as', 'she', 'he', 'it', 'Flora', 'perhaps', 'if']| -pounds in,|['gold', 'case']| -clambered out,['upon'] -couples again,['Doctor'] -whispered Have,['you'] -manner you,["won't"] -his gloves,['I'] -reference to,|['a', 'the', 'my']| -his person,|['or', 'but']| -him entered,['my'] -mile and,['two'] -snuff then,['and'] -I opened,|['my', 'the']| -Captain James,['Calhoun'] -have gone,|['so', 'for', 'on', 'out', 'to']| -sort have,['already'] -however which,|['I', 'will', 'appeared']| -snake in,['India'] -said taking,['a'] -the hidden,['wickedness'] -snake is,['writhing'] -He drew,|['out', 'a', 'up']| -take your,['advice'] -was He,['answered'] -last night,|['He', 'Police-Constable', 'I', 'as', 'though', 'however', 'until', 'that', 'you', 'in', 'Your']| -fell in,|['the', 'a']| -the temptation,['of'] -Sutherland's face,['and'] -gossips away,['from'] -just returned,['upon'] -to act,['for'] -can enjoy,['it'] -into your,|['snug', 'chair', 'pocket', 'room', 'hands', 'family', 'dressing-room']| -how have,['you'] -No he,['had'] -cause to,|['fear', 'be', 'effect']| -and framework,['of'] -staggered and,|['had', 'nearly']| -admire the,['scenery'] -of steps,|['upon', 'leading', 'below', 'within']| -villagers almost,['as'] -peculiar introspective,['fashion'] -fresh young,['face'] -creature takes,['his'] -to let,|['you', 'Mr', 'me', 'us', 'him']| -artistic certain,['selection'] -the Encyclopaedia,|['Britannica', 'Britannica.', 'down', 'must']| -its bearings,['deduce'] -gasped at,['all'] -window open,['he'] -could have,|['equalled', 'been', 'got', 'happened', 'occurred', 'seen', 'acted', 'drawn', 'effected', 'their', 'done']| -to right,['and'] -pleased at,['my'] -one corner,|['a', 'of']| -his gun,['or'] -achieved such,['remarkable'] -had settled,['his'] -other may,['do'] -whisper and,['doubly'] -we meet,['signs'] -employ have,['come'] -overcoat with,['a'] -brawls took,['place'] -us I,|['was', 'am', 'could']| -my two,|['companions', 'visitors']| -advertise what,['clue'] -courage We,['are'] -mouth Holmes,['gazed'] -a client,|['It', 'could']| -the Langham,['under'] -who opened,['the'] -however four,['successive'] -Clair's house,['I'] -relapsed into,['a'] -the nest,['empty'] -added to,['my'] -grating The,['prisoner'] -handed me,['a'] -the claws,['of'] -last and,['I'] -step between,['the'] -been attended,['to'] -passengers than,['usual'] -be lost,|['He', 'in']| -gloom to,['guide'] -droning to,['himself'] -of using,['a'] -affair Of,['course'] -planked down,['four'] -and hurled,['it'] -drinking hard,['and'] -watch all were,['there'] -Clair's assertion,['that'] -His wife,['is'] -him got,['him'] -particulars as,['to'] -father came,|['back', 'to']| -gloves patent-leather,['shoes'] -mixed with,['mine'] -I heard,|['some', 'no', 'the', 'of', 'a', 'from', 'my', 'You', 'her', 'it', 'faintly', 'as', 'that', 'his']| -time His,['appearance'] -girl It,['would'] -animals which,['are'] -ask where,['you'] -cripple showed,['made'] -his age,|['I', 'with']| -me off,|['upon', 'do']| -sorrow and,['not'] -defending counsel,['Old'] -very encouraging,['to'] -that he,|['felt', 'had', 'assumed', 'will', 'has', 'takes', 'is', 'could', 'might', 'seized', 'would', 'saw', 'was', 'hated', 'foresaw', 'quotes', 'wished', 'must', 'held', 'stood', 'uttered', 'knew', 'gave', 'lived', 'should', 'and', 'may', 'walks', 'needed', 'uses', 'thought', 'knows', 'said', 'did', 'came', 'sees', 'even', 'threatened', 'desires', 'humours', 'sat', 'shrieked']| -the fruits,['of'] -overtook the,['little'] -sleep a,['wink'] -past four,['I'] -complete information,['as'] -came round,|['the', 'to']| -work knowing,['it'] -telegram which,['we'] -find It,|['was', 'is']| -than usual,|['remarking', 'Indeed', 'About']| -young ladies,|['wander', 'from', 'half']| -delighted don't,['mind'] -dress was,|['rich', 'brown']| -carry your,['Highness'] -but only,|['on', 'for']| -about the,|['man', 'size', 'signature', 'families', 'country', 'garden', 'colonel', 'room', 'hour', 'foresight', 'bird', 'same', 'matter', 'hotel', 'ways', 'metropolis', 'machine.', 'morning', 'mouth', 'place', 'case', 'coronet', 'thing', 'finer', 'whole', 'creature', 'house']| -London One,['day'] -forgotten the,|['strange', 'warnings']| -on going,['and'] -men had,|['known', 'come']| -index in,['Andover'] -on foot,['for'] -names have,['spent'] -years younger,['than'] -that date.,['will'] -branches out,['of'] -went very,['carefully'] -son's gun,['which'] -him yet,['hope'] -to accompany,['my'] -condemned I,['shall'] -scattered villages,['where'] -stripped body,['had'] -second Holmes,['was'] -ever take,['the'] -head again,['was'] -My practice,|['is', 'had']| -gossip Good-afternoon,['Miss'] -I retired,['to'] -danger so,['kindly'] -right with,|['me', 'him']| -about father,['but'] -over her,|['ear', 'fresh', 'she', 'terrible', 'injured', 'face', 'that', 'It']| -himself shrugged,['his'] -very short,['time'] -yourself close,['to'] -interested in,|['these', 'this', 'his', 'the', 'Mr', 'several']| -now there,|['has', 'is']| -time among,['the'] -for every,|['poor', 'event']| -Having measured,['these'] -said that,|['she', 'it', 'he', 'with', 'I', 'if', 'when', 'Mr', 'you', 'there', 'her', 'though', 'the']| -be sorry,['for'] -feel so,['much'] -hair-ends clean,['cut'] -I agree,['with'] -by none,['of'] -child's amusement,['but'] -two large,['iron'] -difficulties No,['one'] -there sat,['a'] -own door,['flew'] -argue with,['him'] -nice household,|['he', 'for']| -the machine.,|['is', 'had', 'He']| -him made,['use'] -bullet which,['I'] -more affected,['than'] -both but,['indeed'] -premises in,['the'] -eagerness and,['smoothing'] -of dubious,['and'] -two-storied brick,['houses'] -am your,['man'] -A vague,['feeling'] -easy-chair and,|['my', 'sitting']| -me your,|['coat', 'hand', 'address']| -and eight,['months'] -saving considerable,['sums'] -neighbours who,['had'] -Oh don't,['bring'] -every vestige,['of'] -and sweet,['and'] -of geese,|['I', 'but']| -America because,['she'] -brow so,['dark'] -the gossips,['away'] -and oppressively,['respectable'] -into each,['of'] -late to,|['assist', 'alter']| -friend here,|['is', 'I']| -about Abbots,['and'] -starting in,['Middlesex'] -love your,['Majesty'] -weaknesses on,['which'] -your while,['to'] -informed me,['that'] -formed a,['link'] -only change,['colour'] -right-hand side,['and'] -of seeing,|['a', 'you', 'him']| -come!' she,['cried'] -pondered over,['it'] -blue stone,|['rather', 'of']| -years I,['have'] -extremely dirty,['but'] -right Sit,['down'] -|jury verrons,"|,['answered'] -set to,|['work', 'him']| -me down,|['the', 'to']| -and eightpence,['for'] -maxim of,['mine'] -I staggered,['to'] -my door,|['and', 'I']| -inside of,|['your', 'the']| -once in,['the'] -his cynical,['speech'] -felt another,['man'] -wife's neck,['and'] -human eye,['which'] -the important,['position'] -panelled Finally,['he'] -of reference,['beside'] -alive who,['had'] -me!' he,['said'] -of silver,|['upon', 'have']| -heard about,['me'] -signature is,|['typewritten', 'very']| -to glancing,['a'] -in producing,['a'] -readily enough,['but'] -geese he,['shouted'] -How cruelly,['I'] -your attention,|['to', 'very']| -rose and,|['making', 'sat', 'threw', 'looking']| -what's the,['last'] -much so,|['I', 'the', 'It']| -her letters,['for'] -morning but,|['it', 'I']| -signature if,['an'] -can get,|['him', 'a', 'on', 'it', 'nothing', 'away']| -at it,|['earnestly', 'anyhow', 'I', 'over', 'from', 'in', 'horror-stricken', 'and', 'Mr', 'There', 'to', 'Then', 'before', 'or', 'Oh', 'He']| -once taken,['advantage'] -want of,|['a', 'drink']| -this letter,|['and', 'you', 'from']| -least sound,['would'] -twenty before,['her'] -detective and,['for'] -our French,['gold'] -I hardly,|['looked', 'noticed']| -head pushing,['her'] -will I,|['leave', 'am', 'have']| -Even his,['voice'] -The front,['room'] -wrapped a,['shawl'] -let it,['drop'] -tongs and,['lighting'] -therefore we,['cannot'] -firm with,['a'] -respectable figure,['I'] -a temporary,['convenience'] -James and,|['his', 'I']| -little changes,['carried'] -been with,|['you', 'me', 'them']| -usual round,['shape'] -some illness,['through'] -free in,['a'] -Street which,|['is', 'branches']| -new year,['I'] -crop and,['so'] -too trivial,['to'] -three read,|['it', 'this']| -vain Good-bye,['and'] -brings me,['twopence'] -despair in,['his'] -have alluded,['are'] -his high,|['white', 'thin']| -tried and,['failed'] -no peace,['no'] -room he,['flung'] -King Why,['should'] -without being,|['interesting', 'suspected', 'able', 'criminal']| -tunnels of,['yellow'] -of years,|['ago', 'and']| -tied in,['the'] -the draught.,['the'] -that occur,['to'] -brazier I,['felt'] -limits in,['a'] -wasteful disposition,['and'] -been to,|['Eton', 'the', 'command']| -all confirmed,['by'] -been set,['forth'] -is plenty,['of'] -go My,['heart'] -seen by,|['Mr', 'young', 'mortal']| -himself a,['man'] -deceived by,['wigs'] -paper for,['some'] -to assure,['us'] -which turned,['at'] -bad day,['in'] -attacked by,['Apache'] -of repartee,['which'] -duties sir,['I'] -costume was,['a'] -crime It,['is'] -last that,['of'] -my articles,|['When', 'and']| -before we,|['went', 'are', 'regained', 'got', 'get', 'go', 'settle', 'were', 'solve']| -discovered or,['the'] -books Round,['one'] -still smiling,['in'] -good If,['you'] -fair to,['them'] -woman's wit,['He'] -who abandons,['himself'] -be once,['more'] -agitation with,['a'] -that Toller,['had'] -gently closed,['somewhere'] -do very,['nicely'] -he wants,|['is', 'it']| -blood was,|['in', 'pouring']| -reasons I,|['remarked', 'expected']| -England to,['return'] -spots the,['marks'] -any more,|['you', 'with']| -door is,['the'] -door in,['the'] -colour with,['a'] -|market. you,|,['Maggie'] -rising and,|['I', 'pulling', 'putting', 'bowing']| -in while,['his'] -collected on,['the'] -rain splashed,['and'] -her fancies,['in'] -to have,|['that', 'me', 'every', 'a', 'the', 'an', 'Jones', 'done', 'breakfast', 'been', 'avoided', 'led', 'had', 'come', 'be', 'vengeance', 'someone', 'plenty', 'trusted', 'clearer', 'interrupted', 'my', 'his', 'made', 'spoken', 'it', 'taken', 'them', 'one', 'quite', 'acted', 'gone', 'your']| -to disappoint,['I'] -to give,|['him', 'advice', 'you', 'details', 'an', 'some', 'to', 'way', 'us', 'them', '30']| -my house,|['in', 'at', 'and', 'last']| -mostly concerned,['with'] -your statements,['instead'] -goose while,['I'] -one hint,['to'] -the table,|['It', 'are', 'and', 'was', 'Holmes', 'This', 'with', 'in', 'he', 'I', 'Of', 'of', 'Then', 'had', 'stood', 'He', 'waiting', 'must', 'ten', 'a', 'am']| -fear of,|['future', 'someone']| -Gross &,["Hankey's"] -yards across,['is'] -hall beneath,['He'] -saluted him,['One'] -homeward bound,['to'] -have for,|['their', "pity's"]| -and almost,|['to', 'as']| -jovial man,['to'] -this promises,['to'] -us she,|['gave', 'can']| -doctor has,['an'] -not prevent,['our'] -He said,|['a', 'that', 'the']| -he stepped,|['up', 'into']| -matter passed,['however'] -turn round,['and'] -startled look,['came'] -Savannah that,['these'] -a true,['account'] -have more,['than'] -He'd had,['the'] -story has,['I'] -Doran's door,['just'] -your right,['wrist'] -raised her,|['veil', 'dark']| -presents some,['difficulties'] -was awful,['to'] -Now it,['was'] -bachelor and,['are'] -his pledge,['sooner'] -a dreary,['experience'] -becomes even,['more'] -Now if,|['you', 'he']| -me there,['and'] -the smaller,['crimes'] -beyond my,['powers'] -by Colonel,['Openshaw'] -glancing keenly,['at'] -Holmes shutting,['his'] -to say,|['that', 'nothing', 'whether', 'his', 'or', 'sir', 'Mr', 'to', 'I', 'now', 'there', 'She', 'so', 'farther', 'and', 'occasionally']| -drop I,['know'] -drunkard's blow,['does'] -hat "but there,['are'] -resolve all,['our'] -veil all,['discoloured'] -it answered,['to'] -to serve,['you'] -should interfere,['with'] -my only,['companion'] -drop a,['line'] -the Tottenham,['Court'] -been weighing,['upon'] -duty well,['and'] -corridor from,['which'] -wear a,['mask'] -its master,['at'] -client came,['into'] -old English,['capital'] -family She,['is'] -side Some,['of'] -he coming,['back'] -faith in,|['Sherlock', 'Holmes']| -small angle,['in'] -and wave,['him'] -us now,|['explore', 'all', 'see', 'to']| -inquire as,['to'] -was reported,|['to', 'as']| -the beryls,|['in', 'are']| -us nor,['the'] -family has,['been'] -every little,['want'] -she said,|['as', 'for', 'They', 'I', 'Mr', 'and', 'that', 'earnestly']| -excellent company,['for'] -made a,|['small', 'hard', 'sweeping', 'serious', 'very', 'careful', 'little', 'slight', 'good', 'cord', 'deep', 'step', 'disturbance', 'pile', 'bundle', 'mistake']| -bundle in,['the'] -her stepmother,['As'] -and explain,['afterwards'] -been cleaned,['and'] -to ourselves,['save'] -recorded by,['the'] -him of,['the'] -house showing,['that'] -him on,|['to', 'the', 'which']| -long arm,['to'] -stranger and,['a'] -the cause,|['is', 'of']| -him or,['her'] -heading which,['sent'] -daughter Miss,['Alice'] -quarter to,['eight'] -him whether,['he'] -his eye,|['down', 'up', 'was', 'You', 'which']| -could define,['it'] -Your life,['may'] -people out,['who'] -who knew,|['his', 'how']| -headed Singular,['Occurrence'] -hardly served,['to'] -far-gone years,['will'] -cheeks He,['hastened'] -pity to,|['miss', 'his']| -dock But,['look'] -of form,['Is'] -doubt whether,['any'] -bank director,|['and', 'From']| -you may,|['be', 'say', 'entirely', 'see', 'have', 'find', 'recollect', 'think', 'rest', 'expect', 'absolutely', 'both', 'imagine', 'submit', 'get', 'conceal', 'observe', 'carry']| -will rejoin,['you'] -you place,['no'] -snatched it,|['from', 'up']| -had picked,['up'] -of her,|['sex', 'family', 'at', 'jacket', 'muff', 'nose', 'own', 'mother', 'natural', 'carriage', 'knowing', "husband's", 'husband', 'geese', 'sore', 'death', 'using', 'good', 'match', 'resort', 'very', 'skin', 'child']| -If there's,['police-court'] -heard all,['that'] -more compunction,['than'] -discreet and,|['capable', 'to']| -impression behind,['it'] -my mother's,|['re-marriage', 'maiden']| -could you,|['guess', 'tell', 'know', 'possibly', 'have']| -great coil,['at'] -very quiet,|['and', 'one', 'on']| -a gesture,['of'] -box This,['he'] -was well,|['convinced', 'known', 'paid']| -you don't it's,['a'] -of beige,['but'] -shag I,['think'] -corner Then,['he'] -will do,|['it', 'Mr', 'said', 'nothing', 'what', 'so', 'very']| -end Boscombe,['Pool'] -his death,|['from', 'and', 'I', 'Monday."', 'have']| -campaign Godfrey,['Norton'] -obvious upon,['the'] -to holding,['my'] -the scream,['of'] -into harness,['how'] -The only,|['remaining', 'drawback', 'point']| -my skirt,['and'] -wandered continually,['from'] -rather fantastic,['business'] -deep business,['he'] -loose but,['I'] -source that,['you'] -hardly pass,['through'] -radius so,['the'] -German Do,['you'] -this weather,['You'] -But now,|['the', 'thanks']| -back yet,['It'] -cellar I,['do'] -employed an,['agent'] -the machinery,['which'] -head before,['he'] -remained I,['might'] -table This,['is'] -with Eyford,['for'] -plumber's smoke-rocket,['fitted'] -little Kate,['Give'] -of whisky,['and'] -not that,|['he', 'of', 'I', 'strike', 'the']| -homely ways,['and'] -barmaid finding,['from'] -little deposit,['and'] -past ten,['however'] -that man,['would'] -no lengths,['to'] -into Oxford,['Street'] -The trap,['drove'] -the door that,['is'] -also for,|['whoso', 'the', 'Indian']| -screening your,['stepfather'] -mercy The,['commissionaire'] -Miss Hunter?,['he'] -Openshaw seems,['to'] -cloud which,['rests'] -And which,['king'] -were asked,['to'] -Miss Hunter.,|['She', 'friend']| -could show,['how'] -an unmarried,['one'] -of things,['to'] -first chosen,['inspiring'] -simply dirty,['while'] -the panelling,['of'] -pa knowing,['anything'] -It had,|['only', 'escaped', 'been', 'ceased']| -but China,['fish'] -strength in,['the'] -facts connected,['with'] -the two,|['crimes', 'whom', 'guardsmen', 'lower', 'men', 'corner', 'McCarthys', 'mates', 'constables', 'dozen', 'rooms', 'little', 'slabs', 'coming', 'may', 'upper', 'tresses']| -It has,|['become', 'long', 'been']| -A touch,['of'] -no very,|['great', 'good', 'sweet']| -everywhere seen,['everything'] -man arrested,['You'] -the frosty,['air'] -as usual,|['she', 'at', 'but']| -dowry Not,['more'] -round hanging,['gold'] -put colour,['and'] -|groaned, for|,['I'] -out This,['is'] -here's a,|['nice', 'hunting']| -a facility,['of'] -retreat whispered,['Holmes'] -glancing from,['one'] -drew down,['the'] -future date,['but'] -reward offered,['of'] -turning out,['half-crowns'] -few others,['which'] -but then,['one'] -had narrowed,['the'] -and grinning,['at'] -and suddenly,['an'] -laughed again,['until'] -characters Pray,['what'] -but they,|['both', 'all', 'were']| -Street Holmes,|['was', 'shook']| -first heading,['upon'] -as keen,['as'] -how terrible,['would'] -sliding panel,['just'] -stepfather seeing,['that'] -their saddles,['at'] -room rather,['than'] -which comes,|['under', 'to']| -and striking,['face'] -it!" cried,['Hatherley'] -and gave,|['a', 'evidence', 'myself', 'the', 'it', 'me', 'him', 'at']| -a slightly,['decorated'] -during a,['lengthy'] -my feet,|['and', 'would', 'with']| -an admirable,|['queen', 'opportunity']| -And this,|['promises', 'Ha', 'stone']| -again until,['he'] -scale and,['have'] -later than,['this'] -most retiring,['disposition'] -then here,['on'] -Chronicle of,['April'] -concerned remarked,['Holmes'] -wrist He,['is'] -pledge was,['given'] -the wheels,|['of', 'as']| -muzzle buried,['in'] -golden bar,['of'] -this Miss,['Turner'] -Holmes whistled,|['pair,']| -without wincing,['though'] -wilderness of,['bricks'] -better himself,['and'] -circumstances Again,['I'] -the drawing,['of'] -weaken the,['effect'] -done his,['duty'] -a fifty-guinea,['fee'] -pledge of,['secrecy'] -sensitive instrument,['or'] -dress now,['for'] -value can,['only'] -smiling in,['the'] -open when,['I'] -answering smile,['in'] -wear The,['lining'] -woman's appearance,['Describe'] -the situation,|['am', 'how', 'marks', 'and', 'My', 'which']| -feel equal,['to'] -met him that,['is'] -use John,['Clay'] -impression that,|['as', 'I']| -you lay,['yourself'] -remarked before,['which'] -dressing-room opened,['your'] -throw his,['hands'] -former she,['had'] -On following,['him'] -rushed towards,['it'] -words in,['a'] -used always,['to'] -his shoulder,|['I', 'papers', 'The', 'As', "he's"]| -after she,['met'] -them is,['our'] -been It,['had'] -Come Come!,["then?'"] -situation marks,['him'] -is bizarre,['and'] -United States,['government'] -wedding James,['Windibank'] -be putting,['ourselves'] -words it,['was'] -goose as,['a'] -in Afghanistan,['had'] -I had,|['now', 'a', 'better', 'to', 'listened', 'heard', 'followed', 'pictured', 'not', 'betrayed', 'been', 'twice', 'ever', 'quite', 'reasoned', 'written', 'pretty', 'come', 'seen', 'the', 'brought', 'got', 'solved', 'nothing', 'my', 'never', 'already', 'no', 'so', 'narrowed', 'shot', 'earned', 'any', 'gained', 'dropped', 'read', 'begun', 'it', 'influence', 'left', 'hardly', 'an', 'of', 'received', 'first', 'exceptional', 'business', 'finished', 'inflicted', 'just', 'put', 'gone', 'done', 'your', 'yet', 'entered', 'returned', 'cured', 'crossed', 'made', 'stooped', 'placed', 'let', 'arrived', 'remained', 'surrounded', 'something', 'foreseen', 'two', 'formed', 'married', 'given', 'taken', 'raised', 'such', 'said', 'acted', 'cleared', 'more', 'this', 'saved', 'best', 'almost', 'as', 'filled', 'still', 'known ']| -leg and,['it'] -tried the,['various'] -perpetrated in,['the'] -twist is,['all'] -best land,['ever'] -just been,|['wired', 'looking', 'there', 'serving']| -still curled,['upward'] -into money,['But'] -was choked,['with'] -word my,['dear'] -young lady,|['otherwise', 'was', 'has', 'as', 'came', 'and', 'I', 'entered', 'he', 'the', 'who', 'waiting', 'we', 'my']| -discoloured that,['it'] -right though,['I'] -attended to,['in'] -dangerous it,['always'] -ashes as,['of'] -years nor,['my'] -me to-morrow,['about'] -this same,|['Monday', 'performance']| -Julia and,['I'] -remembered us,['and'] -of thieves,['and'] -finally became,['a'] -City under,['my'] -security. took,['the'] -name answered,['our'] -pistol to,|['the', 'his']| -a peasant,['had'] -usual Indeed,['from'] -little problems,|['and', 'help', 'have']| -plainly but,['neatly'] -custody and,['who'] -particulars and,['the'] -at fault,['at'] -was staggered,|['sir', 'and']| -dust upon,['your'] -it Holmes,|['had', 'sprang']| -Suddenly to,['my'] -hair had,|['tramped', 'already']| -K. and,|['then', 'why']| -an enthusiastic,['musician'] -left-handed limps,['with'] -Clay serenely,['He'] -had ended,['with'] -clear enough,|['what', 'certainly']| -our strange,['visitor'] -the bell-pull,|['tore', 'see']| -father's house,['saw'] -year ago,|['Listen', 'were']| -a dash,['of'] -anything quite,['so'] -is ready,['Come'] -safely be,['trusted'] -any investigation,['which'] -|might." only,|,['as'] -The habit,['grew'] -hurried to,|['him', 'his']| -quite exaggerated,['in'] -absorbing put,['on'] -a match-box,['that'] -public exposure,['He'] -a counsellor,['and'] -terrified girl,['how'] -so." comes,['our'] -They had,['driven'] -My evidence,['showed'] -something to,|['my', 'her', 'do']| -of spare,['rooms'] -and manager,['said'] -fright I,['do'] -of what,|['was', 'had', 'society', 'has', 'they', 'we', 'he', 'it']| -three continents,['you'] -drawing-room followed,['by'] -investigation which,|['my', 'lies', 'has', 'did']| -friend says,['that'] -absolutely puzzled,['throughout'] -stained they,['were'] -lower part,['of'] -you advise,|['not', 'both']| -sottish friend,['of'] -and unknown,['man'] -have reconsidered,['your'] -slowly upon,['its'] -close that,['a'] -could better,['himself'] -this Lascar,|['scoundrel', 'said']| -a suspicion,|['But', 'as']| -own stupidity,['in'] -a trace,['remained'] -principal London,['banks'] -about poison,['doctors'] -coupled it,['with'] -no allowance,['I'] -few fleecy,['clouds'] -blow the,['bruise'] -Christmas two,['years'] -she speak,['to'] -least That,['is'] -sandwich and,['a'] -Watson I,|['was', 'think', 'fear', 'am', 'can']| -case from,|['the', 'Baker']| -an ideal,['spring'] -drawing a,['circle'] -Hatherley Farm-house,['to'] -my literary,['shortcomings'] -shelf full,['of'] -him coming,['down'] -went on,|['day', 'You']| -probing the,['furniture'] -registry office,['No'] -sentence but,['the'] -started off,|['once', 'for', 'Mr', 'having', 'upon']| -two years,|['at', 'ago', 'and', 'old', 'has', 'I']| -|then so,|,['it'] -building going,['on'] -himself that,|['he', 'his']| -answering as,['was'] -Holmes Step,['into'] -mixed affair,['Every'] -some clothes,['and'] -characteristic of,|['him', 'the']| -expiring upon,['the'] -loose He,['had'] -front belongs,['to'] -astute a,['villain'] -he May,['I'] -himself than,['to'] -daresay that,['if'] -already referred,['to'] -as recorded,['by'] -strange conditions,['So'] -England from,['a'] -spent in,|['one', 'rough', 'an']| -tell a,|['thing', 'human', 'weaver']| -now has,['two'] -four golden,['sovereigns'] -very practical,['with'] -him that is,['to'] -now had,['it'] -spark which,['marked'] -You saw,['her'] -to-night let,['us'] -You say,|['yourself', 'that', 'so']| -what became,['of'] -still this,['evening'] -few yards,|['off', 'of']| -tell I,['began'] -race said,['I'] -shuffled along,['with'] -pet baits,['In'] -manager Now,['for'] -two planks,['Is'] -to-morrow only,['that'] -bonnet on,['this'] -vegetables to,['the'] -slang is,['very'] -ends on,['a'] -being seen,['by'] -management to,['see'] -face Toller,['still'] -it probably,['by'] -feeling as,['flattered'] -his inquiry,['for'] -outstretched palm,['of'] -still more,|['miserable', 'so']| -Whitney and,['I'] -concluded he,['settled'] -of reaction,['with'] -an expression,['of'] -death The,['next'] -a giant,['dog'] -companion shook,['his'] -you sell,['the'] -are lost,['Nothing'] -a brighter,['thing'] -wanted here,['upon'] -all discoloured,['and'] -shuttered window,['outside'] -as directed,|['and', 'Do']| -about our,['throats'] -& Marbank,|['the', 'of']| -intensity The,['country'] -though of,['course'] -a higher,|['stake', 'court']| -fee without,['any'] -pistol ready,|['in', 'words']| -horrid perch,['and'] -waited long,['for'] -These little,['problems'] -wait A,['little'] -the largest,|['tree', 'stalls']| -occupations. you,['can'] -to He,['took'] -our secret,['very'] -the centre,|['of', 'bushy', 'by', 'one', 'The', 'on']| -daughter told,['us'] -The very,|['noblest', 'first']| -faint as,['the'] -devil together,['If'] -of young,|["McCarthy's", "Openshaw's"]| -and dangerous,['man'] -won't have,['a'] -wait a,['time'] -I The,|['only', 'Rucastles']| -dragged them,['from'] -brushed past,['the'] -back from,|['France', 'a']| -details My,['first'] -is exceedingly,['unfortunate'] -listened in,['silence'] -sad news,['to'] -law but,['we'] -assistance I,|['saw', 'will']| -find the,|['photograph', 'nest', 'advertisement', 'man', 'loving']| -foliage they,['not'] -Was Under-Secretary,['for'] -in bringing,|['me', 'in', 'help']| -brick houses,['looked'] -the son,|['of', 'was', 'laughed', 'stood', 'The', 'and']| -moonlight and,['it'] -of ancient,['and'] -the debt,|['you', 'is']| -finder has,['carried'] -no way,['altered'] -he laid,|['it', 'the']| -That brought,['out'] -able by,['winding'] -so thither,['I'] -winding stair,|['and', 'The']| -purpose Well,['Watson'] -two details,['which'] -As he,|['stepped', 'glanced', 'said', 'reached', 'spoke', 'ran', 'loved']| -Monday and,['only'] -sovereign and,['I'] -waste of,['energy'] -provided I,['must'] -will wait,['outside'] -man left-handed,['limps'] -when Sherlock,['Holmes'] -ceases to,['be'] -keep that,['door'] -fields and,['carrying'] -shall use,['the'] -thin legs,|['towards', 'out']| -of barometric,['pressure'] -reach upon,['the'] -wriggled in,['his'] -mystery in,['the'] -Road whispered,['Holmes'] -back now,['from'] -I asked,|['she', 'man,', 'quest', 'You', 'merely', 'to', 'him', 'smoke,"', 'you', 'when', 'glancing', 'with', 'keenly', 'as', 'formed', 'will', 'there', 'smiling', 'the', 'for', 'He', 'Monday', 'I."', 'are', 'do']| -agent loftily,['He'] -prisoner is,['I'] -the rope or,['so'] -certainly joking,['Holmes'] -soldier Others,['were'] -corner saw,['the'] -mystery is,['solved'] -Hunter has,['to'] -solved in,['the'] -of little,|['black', 'aid']| -in running,['his'] -disturb you,['We'] -alternately give,['him'] -account lose,['another'] -wedding yes,['with'] -being made,['which'] -better repair,['but'] -traced her,|['What', 'I']| -dimly here,['and'] -card too,['with'] -stared at,|['him', 'it']| -cards and,['to'] -ago the,['colonel'] -Red-headed League,|['He', 'I', 'see,']| -identify But,['I'] -proof Was,['the'] -use denying,['anything'] -attention you.,['That'] -cylinders An,['examination'] -small portion,['of'] -All over,['the'] -of heather,['tweed'] -sullenly with,['his'] -A single,['man'] -pray consult,['said'] -heard no,['more'] -in England a,['ruined'] -of business,|['travels', 'and']| -hand though,['so'] -action I,['surprised'] -actually seen,['her'] -times three times,['by'] -altar with,['him'] -step now,['upon'] -know madam,['ladies'] -human plans,['and'] -gossip upon,['the'] -debts at,['the'] -doubt if,['ever'] -rare Therefore,['it'] -bordered our,['field'] -them once,|['spotted', 'more']| -summoned He,['would'] -mother is,['alive'] -interesting It,['would'] -were black,['with'] -eyes closed,['and'] -chance young,['Openshaw'] -doubt it,['is'] -most readily,['imagine'] -fears came,['to'] -answer your,['purpose'] -before As,['he'] -life You,['have'] -stretching along,['the'] -hard day's,['work'] -resolutions On,['the'] -after dinner,['I'] -fears to,['the'] -an electric,['point'] -transformer of,['characters'] -everyone else,['He'] -reasoning I,|['am', 'remarked']| -door out!",['said'] -trees in,['the'] -read upon,['the'] -so how,['terrible'] -faithfully JEPHRO,['RUCASTLE.'] -are typewritten,['I'] -|Holder,' said|,['he'] -put your,|['army', 'lamp', 'foot', 'shoulder']| -has known,['the'] -know him,|['to', 'I', 'from', 'Well', 'yes!']| -rain before,['we'] -typewriting his,['signature'] -decided draught,['will'] -you conceal,['yourselves'] -it Both,['Mr'] -know his,|['address', 'faults']| -soft cloth,['cap'] -No one,|['but', 'knows', 'is', 'could', 'else']| -grass He,['ran'] -gipsies and,|['he', 'the']| -is unwise,['to'] -to encamp,['upon'] -included us,['all'] -yet afraid,['to'] -glowing cinder,['with'] -Get out,|['of', 'no']| -slipping off,['my'] -one so,['I'] -turns his,['brains'] -the drawer,|['At', 'open', 'With', 'and']| -While she,['was'] -his excursion,['He'] -clear We,['shall'] -whole crowd,['of'] -time. only,['four'] -quite drunk,['and'] -wore some,['dark'] -whose eccentric,['conduct'] -traveller in,['wines'] -unfortunate young,['man'] -that sottish,['friend'] -fat man,['cast'] -deep so,['that'] -as obvious,['as'] -and lighting,['with'] -which we,|['had', 'found', 'were', 'all', 'shall', 'are', 'saw', 'have', 'might', 'eventually']| -took five,['and'] -he pretends,['to'] -skylight is,['for'] -most unimpeachable,['Christmas'] -however with,|['the', 'a', 'every']| -next few,['days'] -Bank abutted,['on'] -landau when,['a'] -more strange,['since'] -Now how,['can'] -savage fits,['of'] -As you,|['observe', 'may']| -nearly all,['my'] -wooden leg,|['like', 'I']| -the stains,['which'] -my side,|['and', 'in']| -happy in,['her'] -that remains,['Mr'] -it will,|['be', 'no', 'not', 'take']| -no distance,['from'] -always appeared,['when'] -do It,['must'] -reckless air,['of'] -little close.,['shot'] -strain would,['be'] -been here,|['before', 'a', 'I']| -and its,|['relation', 'fulfilment', 'value', 'solution', 'curious']| -do If,['I'] -acted all,['through'] -means of,|['supporting', 'the', 'introducing', 'laying']| -and waistcoat,['put'] -its hole,['to'] -dressed only,['in'] -bushes as,['hard'] -and and well he,['naturally'] -beast His,['cry'] -termination have,['long'] -all Watson,['asked'] -transmit and,['multiply'] -Klan never,['have'] -whine which,['told'] -the days,|['of', 'when']| -had probably,['transferred'] -to seeing,['you'] -curious coincidence,['of'] -temper Seeing,['that'] -uncle Ned,['in'] -feathers legs,['crop'] -lash hung,['on'] -deep impression,['upon'] -of china,['and'] -was speeding,['eastward'] -11:15. good.,['shall'] -face with,|['a', 'his']| -little French,['a'] -me you,['may'] -go round,['the'] -persuaded myself,['that'] -My first,['glance'] -help too,["It's"] -a guinea,['if'] -lodgings in,|['Baker', 'the', 'London']| -gale from,['without'] -thoroughly understood,['one'] -missed by,['the'] -flattened it,['out'] -him retire,['for'] -the engine,['at'] -family is,['now'] -are more,|['developed', 'vacancies']| -banker with,|['a', 'an']| -covered with,['dates'] -the court-yard,['from'] -lawn stretched,['down'] -dear wife,|['knew', 'died']| -client A,['thousand'] -took from,['his'] -surrounded him,['was'] -Camberwell Angel's,['address'] -moving under,['the'] -not mere,['curiosity'] -prize but,['had'] -immense litter,['of'] -your refusal,['to'] -pushed his,['wet'] -have believed,['it'] -as amiable,['as'] -it His,['wife'] -the foremost,['citizens'] -clearer I,['understand'] -suddenly realising,['the'] -a sister,['of'] -matter after,['all'] -the entire,['front'] -out those,['clues'] -the crowd,|['to', 'and', 'trust']| -been prepared,['It'] -happened then,['to'] -cried shaking,['hands'] -only four,['hours'] -I glancing,|['up', 'over']| -heard Poor,['father'] -monograph on,['the'] -here Tiptoes,['tiptoes'] -hurriedly It,['is'] -mind now,['I'] -to recover,['the'] -frightful a,['form'] -be sacrificed,['also'] -off What,['a'] -in proving,['what'] -a coroner's,['jury'] -confederate A,['lover'] -find waiting,['for'] -had done,|['something', 'it', 'his', 'for', 'their', 'with', 'in', 'to']| -attracted by,|['the', 'my']| -St James's,|['Hall', 'Evening']| -have boxed,['the'] -absolutely concentrated,['upon'] -head As,['we'] -appearance and,|['he', 'conduct']| -towards anyone,['else'] -once became,['known'] -your machine,['if'] -Auckland It,['is'] -cruel think,['that'] -uproar He,['walked'] -weave while,['theirs'] -very angry,|['indeed', 'for']| -the dangers,|['which', 'that']| -stored in,['an'] -several practical,['questions'] -gone out,|['of', 'to']| -I remarked,|['the', 'What', 'endeavouring', 'invisible', 'only', 'of', 'If', 'they', 'if', 'It', 'that', 'so', 'as', 'before', 'His', 'with']| -red-headed idea,['was'] -dissatisfied It,['is'] -my rocket,['into'] -suit you?,['he'] -fruits of,['his'] -both be,['extremely'] -He was,|['I', 'still', 'pacing', 'at', 'a', 'searching', 'himself', 'very', 'doing', 'always', 'in', 'too', 'much', 'not', 'an', 'trying', 'urging', 'wrongfully', 'removed', 'brought', 'as', 'the', 'lounging', 'clearly', 'quietly', 'young', 'off', 'plainly', 'dressed', 'wild', 'such', 'kind']| -outside which,['receive'] -could answer,['I'] -come Now,['you'] -the modest,['residence'] -unnatural as,['the'] -else But,['the'] -thin fleshless,['nose'] -police-station anywhere,['near'] -business Watson,['Would'] -between nine,['and'] -the wood-work,|['with', 'and']| -and vanished,|['amid', 'into', 'as']| -a snake,['instantly'] -the storm,|['grew', 'and']| -measured tapping,['of'] -up which,['might'] -Then glancing,['quickly'] -even according,['to'] -were Sherlock,['Holmes'] -thin breathing,['of'] -main points,['of'] -the rifts,['of'] -seven in,['in'] -such obligations,['to'] -Roylott's the,['second'] -gleaming Severn,['found'] -stately old-fashioned,['manner'] -then the,|['Leadenhall', 'incident', 'doctor', 'wedding', 'first', 'whole', 'impossibility']| -took to,|['their', 'coming', 'drink', 'the', 'his', 'be', 'this']| -one woman,['to'] -the assistant,|['promptly', 'having', 'answered']| -ere I,['was'] -be enough,['to'] -shorter to,['get'] -lured her,['within'] -the stream,['which'] -pound notes,['When'] -moods I,['know'] -up she,['retorted'] -look over,['the'] -to Winchester,['to'] -romper just,['six'] -then Can,['you'] -a bean,['in'] -Her young,['womanhood'] -companion had,['assisted'] -were six,|['of', 'troopers']| -Hankey's in,['Regent'] -were out,['on'] -much depend,['upon'] -|well, he|,['was'] -expense for,['how'] -sort at,|['The', 'present']| -husband already,['in'] -a match,['and'] -now have,['a'] -it impossible,['for'] -been carried,['down'] -at Horsham,|['I', 'and', 'then']| -paper before,['him'] -seat will,['do'] -all Still,['of'] -ado to,['persuade'] -and hoped,['with'] -dressed and,|['ill gentlemen', 'as', 'his', 'then']| -and prefers,['wearing'] -upon her,|['broad', 'which', 'sleeves', 'rights', 'cheeks', 'shoulder', 'about', 'dark', 'eager', 'ever', 'face', 'way', 'mind', 'you', 'tresses']| -inference Therein,['lies'] -down it,['This'] -middle-sized man,['coarsely'] -were straw lemon,['orange'] -seen after,['the'] -of pain,['and'] -heard Ryder's,['cry'] -continued glancing,|['out', 'over']| -event occurred,['which'] -hair I,|['assure', 'laid']| -accused of,|['cheating', 'having']| -down in,|['that', 'his', 'front', 'the', 'this', 'her', 'my', 'a', 'fold']| -as upon,['our'] -the traces,['which'] -want a,|['fire', 'little']| -justified observed,['Holmes'] -a logical,['basis'] -And my,['son'] -hair a,|['little', 'pale']| -station The,['bridge'] -bathroom he,['answered'] -flies but,['not'] -five o'clock,['when'] -wretched boy,['open'] -She was,|['bound', 'there', 'flattered', 'so', 'but', 'about', 'passing', 'accustomed', 'very', 'quiet', 'rather', 'plainly', 'a', 'slighted']| -note as,['the'] -settled said,['he'] -imagine said,['I'] -clapped my,['hand'] -I ordered,|['her', 'him']| -see some,|['loophole', 'weeks']| -be eaten,['without'] -everyone in,['the'] -ink Well,['that'] -on end,|['without', 'he', 'What', 'He', 'when', 'with']| -break it,|['off', 'An', 'Mr']| -found lunch,['upon'] -western border,['of'] -can he,|['answered', 'hope']| -says that,['he'] -reason breaks,['down'] -evil dream,|['dazed,']| -her constraint,['and'] -his whip,['and'] -117 Brixton,|['Road 249', 'Road']| -minute or,['more'] -Mr Windibank that,['is'] -give to,['this'] -thick man,['with'] -Clair by,['name'] -Holmes returned,|['He', 'with', 'from']| -suddenly deranged,|['really,']| -by Miss,|['Mary', 'Stoner', 'Stoper']| -Not more,['than'] -revenge upon,['them'] -girl whose,['evidence'] -life and,|['it', 'habits', 'to', 'that', 'hope', 'flapped']| -indeed who,['could'] -men have,['been'] -Windibank turning,['white'] -considerable crime,['is'] -and to,|['know', 'follow', 'think', 'wait', 'attend', 'get', 'preserve', 'begin', 'grown', 'come', 'have', 'ask', 'carry', 'recognise', 'retire', 'punish', 'make', 'the', 'having', 'sleep', 'let', 'show', 'consult', 'be', 'tell', 'point', 'Lord', 'refrain', 'speak', 'squander', 'add', 'her', 'change']| -splash in,['the'] -handcuffs clattered,['upon'] -beautiful moonlight,['night'] -pipe cigar,['and'] -she peeped,['up'] -bred never,['persuade'] -the moon,|['was', 'had']| -woman has,['been'] -gently that,['it'] -the clanging,['few'] -of honour,|['and', 'He']| -come by,['chance'] -we retained,['until'] -however she,['met'] -a sense,['of'] -been knocked,['up'] -darker against,['the'] -then?" banker,['or'] -front down,['the'] -the movement,['rather'] -These flat,['brims'] -agony with,['a'] -save his,['blazing'] -unkempt staring,['out'] -black linen,['bag'] -well you!",['said'] -slight sir,['a'] -you remarked,['to'] -May 1884 there,['came'] -spell had,['been'] -get at,['one'] -mistake to,['theorize'] -done single-handed,['against'] -Majesty said,['Holmes'] -criminal news,['and'] -society you,['never '] -understand is,['dug'] -understand it,['in'] -glancing a,['little'] -rose in,['his'] -married and,['to'] -to walk,|['up', 'amid']| -observed that,|['his', 'her', 'the', 'he']| -change would,['do'] -a late,|['riser', 'visit', 'administration', 'hour']| -a married,['man'] -perfectly black,['ink'] -one You,['will'] -Holmes The,['goose'] -he returns,['must'] -also quite,['modern'] -tide inward,['and'] -gems but,['no'] -of exclusion,['at'] -of eleven,['a'] -help commenting,['upon'] -reeds round,['the'] -subtle methods,['by'] -written man,['who'] -truth recoil,['upon'] -firm of,|['Greenwich', 'Holder']| -long building,['which'] -forever Where,['are'] -George Meredith,['if'] -threshold at,['night'] -There was,|['not', 'a', 'the', 'never', 'no', 'one', 'nothing', 'something', 'an', 'but', 'only']| -simplifies matters,['The'] -me madam,['would'] -and wrists,['She'] -shiny top-hat,['upon'] -iron piping,['not'] -so charming,['a'] -had struck,['a'] -of oak-leaves,['in'] -so nicely,['with'] -old platform,['Set'] -caused some,['comment'] -Kensington I,['thought'] -country notably,['in'] -peculiar nature,['of'] -telegram would,['bring'] -entire front,['of'] -so that,|['it', 'I', 'we', 'the', 'he', 'in', 'there', 'even', 'by', 'none', 'three', 'her', 'you', 'his', 'they', 'whether']| -4 pounds,['a'] -sharp and,['penetrating'] -22nd just,['five'] -nor my,['gravity'] -left till,['called'] -a camera,['when'] -How could,|['they', 'she', 'you', 'it', 'anyone', 'my']| -property I,['was'] -perhaps upon,['the'] -so than,|['I', 'usual']| -however when,|['I', 'compared']| -papers upon,['the'] -the saucer,['of'] -to deal,|['with', 'summarily']| -your story,['have'] -too Never,['let'] -this beauty,|['would', 'has']| -knelt beside,['him'] -old Putting,['his'] -Merryweather we,|['passed', 'must']| -what Mr,['Lestrade'] -disqualify them,['Getting'] -rush into,['my'] -continue to,['retain'] -game I,['tried'] -entitles a,['member'] -lane and,|['by', 'another']| -will accept,['it'] -only thought,['which'] -am amply,['repaid'] -shock to,['her'] -weather and,|['that', 'the']| -are obviously,['of'] -Holmes It,|['is', 'has', 'seemed']| -married a,|['woman', 'man']| -his coat,|['only', 'pocket', 'His', 'and', 'as']| -never noticed,['that'] -impatience beg,['that'] -man's excited,['face'] -to occupy,['I'] -never be,|['exposed', 'seen', 'really']| -once into,['business'] -approaching to,['mania'] -you thought,|['He', 'he', 'little']| -peace-offering to,['his'] -married I,['have'] -except when,['she'] -remember the,|['order', 'advice', 'old', 'sill']| -worn than,['others'] -poky little,['shabby-genteel'] -either if,['after'] -assistant Mr,['Holmes'] -steps until,['the'] -back again,|['and', 'I', 'indeed,']| -household who,['had'] -lips too,['were'] -man His,|['frank', 'whole']| -tell that,|['they', 'name,']| -replace them,['I'] -I adopted,['her'] -horrible enough,['When'] -a society,['of'] -expecting was,['waiting'] -could learn,['Miss'] -working of,['it'] -would show,|['them', 'me', 'where']| -convulsed At,['first'] -jewel-case of,['the'] -he pulling,['on'] -weeks back,['A'] -other noting,['every'] -still between,['his'] -kindly explain,['how'] -ray of,['light'] -with tinted,['glasses'] -clear account,['of'] -slowly up,|['the', 'and']| -Surely this,['is'] -legal papers,['or'] -mirror Holmes,['went'] -with black,['beads'] -of sulking,['Giving'] -a temptation,['pray'] -almost as,|['soon', 'much', 'serious', 'bright', 'strong']| -be prompt,|['for', 'over']| -until your,['reason'] -carelessly we,['have'] -sideboard and,|['with', 'tearing', 'there']| -coldly I,['am'] -palm a,['brilliantly'] -his strange,['headgear'] -told the,['man'] -so kind,['as'] -fact upon,['fact'] -acquaintance and,|['I', 'that']| -Germans I,['know'] -perhaps write,['a'] -sundial. have,['you'] -the truth,|['It', 'he', 'for', 'was', 'I', 'the', 'that', 'is', 'Now']| -not Mr,['Holmes'] -on no,['account'] -remarked If,['ever'] -allow it,|['to', 'doctor?"']| -exceedingly pale,['and'] -allow is,['not'] -acute that,['I'] -wonder I,["didn't"] -child was,|['in', 'with']| -had died,['away'] -lower windows,['before'] -went back,['to'] -carried this,['letter'] -world has,['seen'] -what harm,['can'] -timid woman,['make'] -land before,['they'] -more very,['weary'] -have already,|['recorded', 'arranged', 'been', 'imperilled', 'gained', 'a', 'I', 'had', 'said', 'made', 'remarked', 'given', 'explained', 'managed', 'learned', 'met', 'arrived', 'offered']| -new wedding-ring,['upon'] -door pushing,['his'] -fowls and,['I'] -fewer passengers,['than'] -shoulder As,['he'] -unpacked with,['the'] -that floor,['there'] -breakfasts at,['home'] -my editor,['wished'] -The light,['flashed'] -thus You,['are'] -work and,|['to', 'this', 'it', 'not']| -two swift,['steps'] -purpose were,['innocent'] -then how,['could'] -carries it,['about'] -lighted as,['we'] -crack a,['crib'] -is someone,['more'] -now where,['is'] -prisoner's face,['me'] -am faced,['by'] -consider another,['point'] -was woman's,['instinct'] -seasonable in,['this'] -knocked It,['was'] -into smoke,['like'] -Stoner laying,['her'] -sort and,|['that', 'I']| -not like,['the'] -it however,|['I', 'at']| -trifle more,['I'] -days He,['had'] -d'you want,['to'] -on into,['a'] -quivering fingers,['I'] -hinting at,['We'] -the impression,|['of', 'generally', 'that']| -black jet,['ornaments'] -disease was,['never'] -to both,['of'] -night must,['have'] -me God,|['he', 'help']| -and typewriting,['which'] -ready words,['were'] -may take,|['it', 'the', 'some']| -to attract,['the'] -baboon had,['forgotten'] -like himself,['with'] -often twice,['He'] -only some,['three'] -she in,|['good', 'the']| -bequeathed to,['Dr'] -examine minutely,['the'] -small streets,['which'] -from beneath,|['them', 'it']| -she is,|['incorrigible', 'a', 'not', 'now', 'old', 'capable', 'wherever']| -he unravelled,['the'] -to how,|['it', 'they']| -Christmas present,['and'] -|believe, Mr|,['Holmes'] -personal column,['of'] -what clue,['could'] -that?' I,['asks'] -very gracious,|['Watson,"', 'either']| -applicant I,['had'] -determined was,['their'] -some attempt,['to'] -I foresee,|['one', 'a']| -man Even,['my'] -hammered on,['to'] -unexpected sight,['of'] -only child,|['and', 'by']| -|then, you|,['know'] -smiling holding,['up'] -the finest,['that'] -pierced so,['that'] -it every,['way'] -He looked,|['from', 'across', 'about', 'at', 'her']| -goose in,['Tottenham'] -tumbler upon,['the'] -a murderous,['attack'] -Between the,['wharf'] -chances being,['in'] -victim might,['either'] -lose If,['we'] -Both could,['be'] -caps is,['quite'] -elastic and,['has'] -about that,|['Mr', 'beggarman', 'And', 'time', 'bed', 'I', 'suite']| -loose and,['fluttered'] -I." will,['excuse'] -had assisted,['the'] -must lock,['yourself'] -own income,['and'] -man might,|['die', 'have']| -empty and,|['a', 'open']| -steps will,['you'] -pushed me,['back'] -my strong,|['box', 'impression']| -devils he,['exclaimed'] -wanted your,['help'] -nominal. do,['you'] -open secret,['that'] -man standing,['in'] -tide but,['is'] -possible precaution,['because'] -so dense,['a'] -St Clair,|['has', 'by', 'is', 'went', 'had', 'walked', 'with', 'Out', 'His', 'and', 'which', 'through', 'was', 'the', 'Those', 'of', 'then', 'I']| -someone more,['cunning'] -me beyond,['measure'] -them so,['that'] -desire about,['Miss'] -me sponged,['the'] -he walks,['with'] -out much,['in'] -ran when,['he'] -large affair,['and'] -eagerly into,['his'] -accepted such,['a'] -red finger,['planted'] -innocence on,['the'] -dressed as,['a'] -Our gas,['was'] -and pulling,['on'] -keenly about,['it'] -is suggestive,['Now'] -another of,['the'] -pictured it,['from'] -nominal services,['All'] -Lodge Serpentine,['Avenue'] -no lane,['so'] -am acting,['in'] -water are,['hungry'] -very abusive,['expressions'] -then of,|['these', 'the']| -were instituted,['that'] -curve with,['his'] -Devonshire fashion,['over'] -hand as,['if'] -Monday he,['made'] -between ourselves,|['Windibank', 'if']| -sell then.",['attempts'] -that Mr,|['Holmes', 'Wilson!', 'McCarthy', 'Turner', 'Holder']| -I still,|['observed', 'shook', 'share']| -post by,['the'] -surprise or,['anger'] -that My,['sister'] -I tried,['to'] -him she,['rushed'] -his weary,['eyes'] -style in,['black'] -quill-pen and,['seven'] -clapped a,['pistol'] -which mother,['carried'] -An elderly,['man'] -Watson said,|['Holmes', 'he']| -His silence,['appears'] -the southern,['suburb'] -new man,['I'] -lover extinguishes,['all'] -to argue,['with'] -centre of,|['a', 'the', 'Baker']| -seek it,['I'] -at concerts,['drives'] -Surrey nodded,['his'] -dying woman,['cannot'] -you Ah,['miss'] -first one,['or'] -will honour,['me'] -the inner,|['flap', 'side', 'apartment']| -inspector remained,['upon'] -distinguish the,|['deeper', 'words', 'two', 'outline']| -back a,|['small', 'panel', 'little']| -go when,['I'] -this small,|['matter', 'chamber']| -was shining,|['with', 'brightly', 'very']| -being rather,['puzzled'] -of forebodings,['the'] -is itself,['crushed'] -enough to,|['chronicle', 'help', 'call', 'shake', 'gain.', 'give', 'know', 'tackle', 'aid', 'explain', 'lose', 'go', 'finally', 'discover', 'bring', 'solve', 'find', 'unseat', 'draw', 'do', 'tell']| -ago Listen,['to'] -before you,|['can', 'went', 'but', 'reached', 'go', 'I', 'as', 'could', 'come']| -darkness be,['frightened'] -prevent some,['subtle'] -unable to,|['find', 'see', 'follow', 'stand']| -Twice burglars,['in'] -town rather,['earlier'] -threatens you,['The'] -back A,['marriage'] -this last,['London'] -And yet,|['there', 'I', 'you', 'it', 'even', 'what', 'this', 'if', 'he', 'she']| -Must I,['call'] -has indeed,|['committed', 'exceeded']| -back I,|['know', 'should', 'told']| -receive letters,['for'] -which your,['family'] -check to,['my'] -step in,|['you', 'the']| -ask? had,['4'] -really have,|['made', 'done']| -their expedition,['which'] -flattered by,['the'] -fanciful resemblance,['to'] -alive Mr,['Holmes'] -his parched,['lips'] -itself from,['among'] -away. it,['would'] -quietly am,['Dr'] -thought Suddenly,['however'] -the heap,['of'] -strange headgear,['began'] -face an,['interesting'] -everyday life,['You'] -advertising agency,['and'] -face as,|['Holmes', 'one', 'though', 'I', 'silent']| -face at,['my'] -out to-night,['there'] -lightened already,['since'] -the head,|['of', 'We']| -companions took,['to'] -and forgotten.,['your'] -applying at,['6:30'] -appeared certainly,['sounds'] -are endeavouring,['to'] -never had,|['any', 'occasion', 'I']| -only companion,['Holmes'] -further inquiries,['I'] -have endured,['imprisonment'] -looked back,|['to', 'It', 'me,']| -no meaning,['to'] -friend had,['on'] -tell his,['story'] -never has,['been'] -ladies who,|['are', 'entered']| -Holmes folding,['up'] -address me,|['as', 'always']| -dreadful earnest,['and'] -bearing and,['deportment'] -been a,|['most', 'little', 'case', 'long', 'very', 'pause', 'cry', 'surgeon', 'pretty', 'prisoner', 'disappointment', 'shock', 'strong', 'struggle', 'course', 'governess', 'better']| -his doings,['of'] -judicial moods,['I'] -least tell,['me'] -ignotum pro,['magnifico'] -credit for,['having'] -year. may,['imagine'] -his duty,['well'] -pauper but,['his'] -suits you,|['he', 'best']| -to-day being,['Saturday'] -shall want,|['your', 'a', 'you']| -contrary you,['are'] -indications which,['might'] -and occasionally,|['indeed', 'even', 'during']| -very severe,['were'] -make him,|['wash', 'cut', 'a', 'just']| -breakfast afterwards,['at'] -over yonder,["There's"] -shave every,['morning'] -been any,['such'] -I hesitated,|['whether', 'to']| -white almost,['womanly'] -the enemy's,['preparations'] -been and,|['probably', 'he']| -experience To,['me'] -which call,['upon'] -on March,['10'] -Spence Munro.,['tut'] -make his,|['money', 'pile', 'task']| -can assure,['you'] -useless expense,['for'] -pure matter,['of'] -understand a,|['gentleman', 'little', 'considerable']| -that advertisement,['Spaulding'] -how on,|['earth ', 'earth']| -|social, then|,['distinctly'] -was charged,['with'] -it have,['you'] -from its,|['side', 'horrid']| -I laughing,['but'] -purely nominal,['services'] -gone twelve,['miles'] -and predominates,['the'] -inn of,['repute'] -train There,['would'] -his taste,['I'] -well said,|['I', 'the', 'Holmes']| -interesting which,['has'] -beggar For,['seven'] -left side,|['until', 'Now']| -put the,|['screen', 'box', 'matter', 'case', 'facts', 'worth', 'investigation']| -you? That,['is'] -hall to,['this'] -hullo here,['is'] -Angel's address,['you'] -servants My,['family'] -blandly but,['I'] -explains what,['the'] -Parr who,['had'] -iron bed,['padlocked'] -of Bakers,['and'] -behind this,|['crate', 'I']| -not merely,|['that', 'because']| -would leave,|['a', 'him']| -leave left,['Lestrade'] -his valet,['learned'] -selection and,['discretion'] -door was,|['shut', 'staggered', 'opened', 'unlocked', 'closed', 'fastened', 'only']| -It walked,['slowly'] -any information,['which'] -reached the,|['same', 'corner', 'station', 'lawn', 'little', 'Copper', 'hall']| -hat you,['are'] -|least," said|,['I'] -Hatherley about,['three'] -at The,|['Hague', 'Cedars']| -purpose us,['have'] -did to,|['that', 'his']| -of women,|['and', 'but']| -marked man,['in'] -for all,|['red-headed', 'that', 'I', 'our']| -who leaves,['the'] -betraying one,['who'] -in deference,['to'] -I knew,|['little', 'where', 'nothing', 'that', 'well', 'the', 'your', 'how', 'one', 'by', 'but', 'be', 'at', 'what', 'been', 'my']| -gentlemen as,['you'] -than sufficient,['punishment'] -is slight,['and'] -and fearless,['in'] -deprived in,['an'] -inform me,|['whether', 'where']| -thing seems,['to'] -father at,|['Bordeaux', 'their']| -could do,|['with', 'which', 'to', 'this', 'without', 'nothing']| -of late,|['And', 'years', 'he', 'have']| -affect your,['life'] -and ladies,|['sitting', 'fancies']| -like to,|['chat', 'do', 'ask', 'see', 'know', 'draw', 'vanish', 'submit']| -day citizens,['of'] -finger to,|['warn', 'his']| -to-night's adventure,['hunting'] -tossed them,|['up', 'all']| -such skill,['that'] -terms of,['perfect'] -clue The,['more'] -concluding remarks,['was'] -so-precious time,['but'] -guess Every,['pocket'] -only wonder,['I'] -course yours,['had'] -myself as,|['pitiable', 'to']| -Morris He,['was'] -Arthur and,['Mary'] -he called,|['next', 'my']| -misfortune should,['occur'] -a dissolute,['and'] -Hatherley hydraulic,['engineer'] -need It,['was'] -it who?,['I'] -to consult,|['you', 'me']| -must draw,['him'] -the surest,['information'] -|name," said|,['he'] -then did,|['he', 'the']| -answered Your,['red-headed'] -hand Beside,['the'] -lonely woman,['had'] -thing said,|['John', 'he']| -|stones disappearance,|,['however'] -she asked,|['is', 'no,', 'facing', 'you']| -him could,['I'] -rapidly in,['the'] -and strolled,['out'] -o'clock At,['that'] -sister described,['and'] -of prey,['of'] -say returned,['Holmes'] -have from,['all'] -off and,|['there', 'then', 'that', 'return']| -Hunter miss.,['Mr'] -pull yourself,['together'] -man furiously,['I'] -pounds at,['once'] -misfortune like,['this'] -steps may,['be'] -very tricky,['thing'] -refuse a,['lady'] -contrary he,['had'] -if we,|['do', 'had', 'drive', 'have', 'were', 'could']| -awful business,['It'] -to open,|['the', 'and', 'that', 'a', 'it']| -burst forth,['the'] -a drive,['then?'] -back like,['those'] -murder then,['it'] -breast buried,['in'] -indignation among,['the'] -to reclaim,['it'] -have seldom,|['heard', 'seen']| -disappeared Mr,['Aloysius'] -quite above,['suspicion'] -our web,['to'] -exacted upon,['a'] -thud of,['a'] -preceding evening,['and'] -incapable of,['employing'] -he rose,|['from', 'to', 'and']| -put in,|['the', 'a', 'our']| -always as,|['good', 'keen']| -whiskers of,['that'] -my waistcoat,['pocket'] -apology he,['said'] -ask if,['we'] -always at,['a'] -|you, Maggie|,['says'] -moment for,|['his', 'the']| -first real,['insight'] -also that,|['they', 'whoever', 'he', 'there']| -your short,['sight'] -it expressly,['for'] -put it,|['to', 'through', 'into', 'on']| -companion's sleeve,['I'] -known knows,['it'] -swore that,|['no', 'the']| -I ate,['is'] -composer of,['no'] -only point,['which'] -now sleeping,|['in', 'and']| -and imminent,['danger'] -great liberties,['Still'] -the copper,['beeches'] -me On,['the'] -undergo the,['wedding'] -your revenge,['upon'] -thought there,|['were', 'might']| -lose your,|['billet.', "wife's"]| -of mendicants,['and'] -there pushed,['her'] -small office-like,['room'] -those clues,['and'] -do all,['our'] -got a,|['knife', 'dog-cart', 'few']| -a personal,['matter'] -now he,['answered'] -after thinking,['it'] -shutters cut,['off'] -Mr Jeremiah,['Hayling'] -remained with,['Horner'] -that purpose,|['30,000']| -several in,['it'] -marks my,['zero-point'] -monograph some,['of'] -clear She,['had'] -we followed,['them'] -of value,|['you', 'said']| -afraid of,|['her', 'no']| -Simon has,|['no', 'been', 'not']| -anger from,['the'] -proprietor in,['that'] -and slipping,['off'] -is conjectured,|['to', 'that']| -Simon had,['by'] -he loves,['her'] -over he,['must'] -observed will,['remember'] -white hands "I,['have'] -were frequently,|['together', 'seen']| -singular account,['of'] -reputation of,['being'] -the letters,|['are', 'in', 'he', 'L']| -jewel-case raised,['the'] -scandal which,['would'] -as by,['Mrs'] -are thirty-nine,['enormous'] -society's warning,['to'] -appearance He,['carried'] -scent so,['that'] -hour we,|['were', 'shall']| -impassable then,['her'] -she got,|['brain-fever', 'better']| -those details,['which'] -his arrest,['did'] -be early,['enough'] -all up,|['for', 'so', 'I']| -last long,['questioning'] -will call,|['upon', 'a', 'at']| -friendly footing,|['was', 'for', 'She']| -me one,['for'] -veiled his,['keen'] -had that,['very'] -perfectly correct,['said'] -Zealand stock,['paying'] -dark shapeless,['blurs'] -given it,['up'] -seated myself,['in'] -to them,|['who', 'and', 'He', 'Then', 'in', 'I', 'that', 'to']| -cannot tell,|['then,', 'where', 'It', 'banker', 'Perhaps']| -twenty I,['can'] -yet you,|['have', 'cannot', 'had']| -Oh he,['will'] -clients the,['same'] -are so,|['very', 'extremely', 'obvious', 'vague', 'closely', 'I']| -answered frankly,['It'] -accept anything,['under'] -yellow with,['the'] -white splash,['of'] -restrain me,['from'] -which Holmes,|['had', 'leaned']| -by wigs,['and'] -clumsy and,['careless'] -kind of,|['you', 'rattled', 'question']| -Mr Ferguson,|['is', 'and']| -you do,|['not', 'it', 'then', 'Mr', 'find', 'shall', 'so']| -him here,|['the', 'he', 'and']| -a crab,['thrown'] -circle and,['I'] -McCarthy became,['his'] -a heavy,|['brown', 'chamois', 'brassy', 'fur', 'footfall', 'blow', 'one', 'mortgage', 'stick']| -I perceived,['that'] -silent motionless,['with'] -lounged down,['the'] -an immense,|['scandal', 'litter', 'ostrich', 'rpertoire']| -enormous beryls,['said'] -All red-headed,['men'] -|Baker sir,|,['that'] -bow-window looking,['down'] -the advantages,['of'] -snow and,|['his', 'ran']| -cigarette and,['throwing'] -to throw,|['and', 'in', 'any', 'up']| -repairs at,['that'] -the frill,['of'] -foolscap paper,['I'] -so dark,['as'] -wash remarked,['Holmes'] -vows of,['fidelity'] -were bloodless,['but'] -London press,['has'] -to while,['away'] -roll from,['his'] -a price,|['upon', 'for']| -town glass,['still'] -exceptional strength,['in'] -never let,['it'] -But my,['memory'] -speak as,['freely'] -boards which,['broadened'] -done something,['clever'] -last however,|['the', 'This']| -stay here,['There'] -her carriage,|['Now', 'was', 'at', 'rattle']| -wife which,['you'] -for Dr,|["Roylott's", 'Grimesby']| -print than,['when'] -Rucastle's have,['done'] -of roughs,|['One', 'who']| -man named,['Oakshott'] -I caught,|['a', 'it']| -to quench,['what'] -keenly on,|['the', 'my']| -room day--it,['was'] -as blind,['as'] -was repelled,['by'] -had some,|['play', 'strong', 'skirmishes', 'very', 'slight', 'claim', 'great', 'secret']| -Holmes surmise,['as'] -is lost,|['shall', 'in']| -old key,['will'] -the fingers,['it'] -well I,|['have', "wasn't", 'know']| -was there.,['far'] -us away,['from'] -accuser have,['almost'] -almost every,['link'] -Most of,['his'] -From my,['position'] -the friends,['to'] -1870 he,['came'] -you can't,['be'] -photography Snapping,['away'] -very kindly,|['escorted', 'given']| -dangerous pet,['The'] -was wearing,['were'] -defence was,['one'] -claws upon,['anyone'] -gentleman and,['ascertaining'] -feared to,|['change', 'find', 'refer']| -nursery days,['later'] -then called,['and'] -important commissions,['to'] -Simon It,['was'] -better men,['before'] -Amid the,['action'] -or saying,['I'] -young man,|['Mr', 'was', 'and', 'had', 'says', 'come', 'pulled', 'took', 'rising', 'would']| -openly confessed,['that'] -are grounds,['round'] -to life,|['itself', 'and']| -I watched,['my'] -memory I,['have'] -race-meetings of,['the'] -considerable part,['in'] -voice whispered,['Walk'] -Gordon Square,|['and', 'so']| -vacancy and,['there'] -still we,['sat'] -and cobwebby,['bottles'] -eagerly for,['you'] -dew and,['my'] -put two,['rooms'] -morning however,['may'] -the assistant's,['fondness'] -Prince then,['I'] -time will,['be'] -in those,['exalted'] -you Watson,|['and', 'that', 'without', 'for', 'said']| -story which,|['we', 'our']| -left from,['his'] -his voice "have,['you'] -does implicate,['Miss'] -opinion is,|['then', 'in']| -interested but,['whose'] -pipe-rack within,['his'] -hair until,['I'] -banking concern,['in'] -then distinctly,['professional'] -small feet,['and'] -then composed,['himself'] -took many,['hours'] -an alias,['flush'] -for winter,['Ah'] -hair as,['yours'] -down its,['throat'] -heart began,['to'] -used It,['seems'] -it myself,|['though', 'with']| -to listen,|['to', 'the']| -the method,['and'] -is wherever,['Sir'] -cheeks of,['the'] -|no, my|,['girl'] -John she,['cried'] -a book,|['It', 'octavo']| -coronet was,|['national', 'a']| -adventures started,['It'] -do pretty,['well'] -he laughing,['The'] -unpleasantness Do,['not'] -heads might,['have'] -the preceding,|['night', 'evening']| -your doors,['at'] -establish his,['innocence'] -a boot,['to'] -slept badly,['on'] -my bunch,['of'] -shoulder papers,['What'] -task of,['placing'] -own fate,['was'] -the Hatherley,|['Farm', 'side']| -trace her,['And'] -a hopeless,['attempt'] -case unfinished,['finished."'] -bush and,['in'] -a bouquet,['of'] -this old,|['battered', 'doctor']| -eight months,['have'] -address may,['address'] -very heavily,|['but', 'upon']| -really managed,['by'] -case complete,['You'] -Holder You,['saw'] -any grievance,['against'] -money He,['took'] -some place,['of'] -Brixton Road,|['egg', 'whispered', 'to', 'where', 'My']| -others talked,['together'] -she disappeared,['into'] -myself your,['mother'] -those faculties,['of'] -Rucastle drew,['down'] -looks this,['thing'] -His expression,['his'] -been worn,['before'] -one too,|['Ah', 'She']| -Ha That,['represents'] -two syllables,['He'] -back good.,['I'] -her wooden-legged,['lover'] -should feel,['so'] -give his,['very'] -factory at,['Coventry'] -give him,|['But', 'credit', 'the', 'a', 'an', 'then']| -fact seven,['weeks'] -kindliness with,['which'] -England just,['before'] -business for,|['he', 'myself', 'me']| -in Horace,['and'] -of waiting,['Frank'] -little disc,['and'] -water-jug moistened,['his'] -in extending,['the'] -He denied,['strenuously'] -them Which,['was'] -shining brightly,|['between', 'is']| -twenty past,['and'] -fitted the,['tracks'] -But since,['we'] -she reached,['home'] -country-town of,['Ross'] -temperate habits,['a'] -with little,['fleecy'] -wife has,|['given', 'been', 'ceased']| -very willing,['to'] -repairs were,['started'] -tied one,['end'] -a fly,|['Such', 'jealousy']| -highroad at,['the'] -Hopkins who,['was'] -wife found,['in'] -nothing so,|['unnatural', 'important']| -placed them,['upon'] -compressed and,['the'] -anyone to,|['pass', 'acquire']| -fool of,['myself'] -above the,|['right', 'age', 'wrist', 'gum', 'door', 'opium', 'ground', 'middle', 'fireplace']| -alive and,|['well', 'then', 'able']| -Lodge once,['more'] -money troubles,['have'] -In an,['instant'] -the blows,['of'] -sorrow this,['woman'] -fain have,['said'] -was bringing,['home'] -see dimly,['what'] -should possess,['all'] -the advertising,['agency'] -day's work,['day'] -may trust,['with'] -the plannings,['the'] -ourselves it,['seemed'] -narrow had,['been'] -where their,['accounts'] -hopes come.,['I'] -Bring me,['the'] -will feel,['sure'] -you hope,['to'] -had any,|['family', 'dislike', 'influence']| -gone We,['could'] -missing For,['the'] -hope to,|['see', 'get', 'arrive', 'goodness', 'find']| -a crust,['of'] -Holmes finger-tips,['upon'] -Horsham and,|['all', 'I']| -any satisfactory,['cause'] -utmost use,['to'] -ourselves in,|['Serpentine', 'the', 'Bow', 'his', 'our', 'front']| -very moment,['for'] -within me,['at'] -followed but,['at'] -shall drop,['you'] -however who,|['when', 'has']| -its fulfilment,['in'] -nearly always,['some'] -to insult,['me'] -boy had,['some'] -save us,['a'] -within my,|['experience', 'own']| -boy has,['asked'] -of life,|['yet', 'and', 'do', 'is']| -come answer,['to'] -chase and,['his'] -that our,|['landlady', 'lady', 'troubles', 'inquiry', 'door', 'little', 'smiles', 'client', 'hands']| -own and,|['that', 'to']| -that out,['replied'] -reconsider my,['resolution'] -been shown,['a'] -became absolutely,['clear'] -brightly and,|['in', 'yet']| -devotedly but,['each'] -but has,['less'] -he bent,['her'] -theory as,['to'] -my description,['of'] -Lodge was,['open'] -other obvious,['facts'] -gush of,['hope'] -yourself have,|['remarked', 'one']| -and whispered,['something'] -who cares,['for'] -ready with,['a'] -the city,|['to', 'ostensibly']| -fools in,['Europe'] -times over,['from'] -to hand,['I'] -stalked out,['of'] -than upon,['the'] -thoroughly good,['girl'] -outbursts which,['come'] -name a,['subject'] -lay amid,['the'] -Endell Street,['and'] -cannot count,['upon'] -passage window,['could'] -would go,|['from', 'for', 'if', 'said', 'I', 'and']| -it time,['to'] -do exactly,['what'] -burned the,['papers'] -to stand,['erect'] -had betrayed,['myself'] -Clair Out,['of'] -a purely,['animal'] -the gas-flare,['but'] -found they,['led'] -you think?,['I'] -you presently,['was'] -of Holmes,|['lately', 'from', 'the']| -anxious to,|['have', 'leave', 'consult']| -two points,|['in', 'One', 'about']| -chambers that,['was'] -venture to,|['say', 'set']| -father's dying,['words'] -the villain,['was'] -had drenched,['his'] -Warburton's madness,['Of'] -who really,|['profited', 'knows']| -me The,|['words', 'goose']| -of mingled,['horror'] -shades of,['analysis'] -some hundreds,['of'] -a drunken-looking,['groom'] -that none,|['could', 'had']| -lantern in,['one'] -bedroom and,|['returned', 'I', 'yet', 'sitting-room']| -vanish from,['your'] -a cosy,['room'] -symptom is,['a'] -lonely and,|['dishonoured', 'eerie']| -other loves,['and'] -Horner a,['plumber'] -assert that,['in'] -speech He,['was'] -shed in,['the'] -four successive,['heirs'] -only the,|['ground', 'day', 'name']| -come upon,|['him', 'himself', 'my', 'a', 'me', 'Who']| -sat now,['as'] -cease and,['to'] -distinctly novel,['about'] -shape hard,['and'] -is scored,['by'] -have kept,['you'] -on day,['after'] -advantage as,['well'] -Miss Helen,['Stoner'] -lighting a,['cigarette'] -brilliant many-pointed,['radiance'] -to too,['great'] -foresaw happened,['you'] -this maid,['Alice'] -Holmes one,['day'] -arduous work,['at'] -of our,|['chase', 'expedition', 'visitor', 'sitting-room', 'boys', 'lives', 'friendship', 'fellow-men', "horse's", 'quest', 'new', 'marriage', 'own', 'time', 'visit', 'intimacy', 'fair', 'engagement', 'depositors', 'most', 'dear', 'cases']| -matters like,['that'] -fear said,['he'] -yet Well I,['wish'] -drooping lids,['and'] -to cheer,['me'] -the machine,|['and', 'had', 'very', 'to']| -looked about,|['him', 'her']| -who soon,['pushed'] -middle height,['slim'] -seven hundred,['in'] -other hand,|['a', 'he', 'if', 'the', 'I']| -minor points,['which'] -message K,['K'] -prosecution must,['be'] -key which,['must'] -darkness outside,['came'] -the cabman,|['to', 'got']| -she cried,|['and', 'else', 'glancing', 'throwing', 'I', 'well', 'shaking', 'he', 'breathlessly', 'in']| -you They,['are'] -your door,|['and', 'whence']| -were twins,['and'] -for fear,['she'] -swear it,|["I'll", 'on']| -suited for,['it'] -window was,|['open', 'a']| -the top,|['of', 'with', 'As']| -but built,['out'] -question he,['spoke'] -no traces,['of'] -in Cornwall,['the'] -he tore,['the'] -shrimp it,['is'] -called monotonous,['said'] -marked in,['places'] -affairs of,['my'] -was asked,['to'] -concerned The,['total'] -I'll checkmate,['them'] -are ready,['we'] -lawn I,|['thought', 'wonder']| -sudden glare,['flashing'] -itself during,['the'] -disgraceful brawls,['took'] -hazarded some,['remark'] -trust sir,['that'] -could use,['her'] -to answer,|['the', 'Coroner:', 'will', 'for']| -disease sit,['down'] -chair very,['close'] -lodger and,['that'] -has gone,['to'] -City and,['Suburban'] -aspired to,['without'] -slight stagger,['and'] -matter drop,['and'] -for Arthur,['blinds'] -rattled through,['an'] -police let,['the'] -is some,|['little', 'building', 'obstacle', 'stiffness']| -vehemence They,['were'] -had thrust,['Neville'] -others have,|['not', 'been']| -rights of,|['it', 'her']| -became audible a,['very'] -gold became,['wealthy'] -top-hat a,['long'] -in Rotterdam,['the'] -of less,['moment'] -the so-precious,['time'] -the lamp,|['away', 'and', 'I', 'but', 'was', 'onto', 'nearly', 'in', 'on', 'the', 'from']| -many are,['there'] -own case,['I'] -behind It,['was'] -with here,['and'] -this Could,['I'] -carried on,|['his', 'with']| -Holmes hunting,['crop'] -the site,['of'] -assuring them,['that'] -bind two,['souls'] -lady of,['to-day'] -instant I,|['saw', 'rushed', 'could', 'threw']| -This press,['as'] -its complete,['loss'] -A door,['which'] -McCarthy what,['did'] -sat after,['breakfast'] -keeper of,['a'] -was obliged,['to'] -back limp,['and'] -a kindly,['eye'] -second bar,['of'] -to obey,['any'] -|here, dad|,['said'] -the wicket,['gate'] -us and,|['we', 'walked', 'sent', 'finally', 'took', 'submit', 'strode', 'two', 'for', 'then', 'I']| -instantly put,['themselves'] -whole case,['is'] -discoloured patches,['by'] -was pierced,['in'] -pay ransacked,['her'] -hat picked,['it'] -beating and,['splashing'] -popular man,['being'] -lady on,['the'] -humble apology,['to'] -you use,['an'] -She raised,['her'] -Sutherland Yes,['I'] -not get,['his'] -very shortly,|['after', 'take']| -were so,|['many', 'secret', 'like']| -have opened,['it'] -upon itself,['and'] -thin form,['curled'] -an envelope,|['and', 'which', 'On']| -the sofa,|['is', 'and', 'said', 'in', 'to', 'placed']| -declared my,['intention'] -more closely,['into'] -described and,['a'] -rest when,['she'] -we drive,['to'] -paid Whitney's,['bill'] -words as,|['will', 'we']| -the meadow,['Lestrade'] -mortal eye,['and'] -amiss if,['your'] -they carried,['me'] -poor fellow,['can'] -on our,|["friend's", 'ulsters', 'sombre', 'way']| -of red-headed,['men'] -sitting round,['that'] -BERYL CORONET,['said'] -was just,|['wondering', 'balancing', 'such', 'a', 'seven']| -paid our,['fare'] -gainer by,['an'] -flap just,['above'] -room could,['not'] -each of,|['us', 'your', 'which']| -from somewhere,['downstairs'] -a gasogene,['in'] -has just,['been'] -it good.,['Come'] -looked very,|['scared', 'hard']| -her several,['times'] -things that,['he'] -the whip,['but'] -check-book Here,['is'] -it Finally,['I'] -the dog,|['at', 'might', 'cried', "It's"]| -all gossip,['upon'] -place a very,['small'] -would lead,['up'] -of obstinacy,['had'] -the clock,|['I', 'on', 'makes']| -Watson have,['no'] -entries against,['him'] -own right,['besides'] -so may,['he'] -no mystery,['my'] -crime said,['Sherlock'] -my week's,['work'] -A frayed,['top-hat'] -doubt propriety,['of'] -smoke She,['left'] -have horrors,['enough'] -excursion He,['held'] -explanation may,['be'] -burning brightly,['and'] -page he,['begged'] -the famous,['coronet'] -lit the,|['lamp', 'light', 'cigar']| -clear to,|['you', 'me', 'them']| -the bill,['of'] -wigs and,['once'] -acted differently,['this'] -you might,|['think', 'see', 'have', 'roughly', 'cause', 'tell']| -curses of,['a'] -find neither,['us'] -I surprised,['you'] -Horner who,|['struggled', 'had']| -following him,|['He', 'they']| -sleeves the,['suggestiveness'] -LEAGUE ,[''] -household word,['all'] -shiny for,['five'] -there's police-court,['business'] -got her,['packet'] -for years,|['and', 'back', 'My', 'been']| -mad to,|['think', 'know']| -so with,['me'] -side On,['my'] -find little,['credit'] -and within,['seven'] -unpleasant couple,['but'] -who struck,['savagely'] -lane where,['he'] -our faces,['and'] -feet down,['I'] -wonderfully sharp,['and'] -upon hats,['If'] -they manage,['to'] -good Berkshire,['beef'] -better before,['very'] -as akin,['to'] -fashion He,['was'] -are close,['there'] -London He,['was'] -give details,['of'] -hands together,|['is', 'in']| -concealed the,['gems'] -biassed If,['you'] -bark of,['the'] -arm of,|['your', 'the']| -wood-work and,['away'] -last Friday,['Mr'] -your rooms,|['were', 'at']| -inquiry on,['hand'] -will rise,['from'] -was shaken,['but'] -perfection and,['I'] -and for,|['its', 'daring', 'you', 'the', 'a', 'many', 'all', 'me', 'six']| -head while,['the'] -tightly behind,['him'] -side-whiskers was,['helping'] -Holmes slowly,['reopened'] -view that,['what'] -the ill-trimmed,['lawn'] -left one,['with'] -the stalls,['wrapped'] -tattooed immediately,['above'] -not restrain,['me'] -in spite,['of'] -event which,['has'] -tells me,['that'] -and give,|['us', 'you']| -and strange,['features'] -the course,['of'] -and protested,['his'] -town chemistry,['eccentric'] -done with,|['it', 'the']| -his money,|['in', 'certainly."', 'mining.']| -dirty scoundrel,['it'] -the exception,['of'] -matter which,|['I', 'has']| -much indebted,['to'] -somewhat of,['a'] -and speech,['of'] -damp and,['bad'] -to atone,['for'] -You need,['not'] -mistake had,|['been', 'occurred']| -am immensely,['indebted'] -comes from,|['London', 'the']| -not however,['go'] -than five,['I'] -to another,|['man', 'that', 'broad']| -passed through,['it'] -blue in,['shade'] -gravely that,['is'] -frequently found,['my'] -I'll serve,['you'] -been inflicted,['by'] -large dark,['eyes'] -this fault,['was'] -but even,['the'] -while Breckinridge,['the'] -up what,['seemed'] -a keen,|['desire', 'eye']| -small landing-places,['for'] -been freed,['during'] -lover evidently,['for'] -father should,['according'] -in playing,['this'] -a perfect,|['day', 'sample']| -is imprisoned,['in'] -reports realism,['pushed'] -|Angel suppose,"|,['said'] -a narrative,['which'] -long run,['I'] -given room,['for'] -you we,['have'] -the copying,['of'] -filed into,['the'] -county police,['know'] -have myself,['some'] -his eyebrows,['We'] -firm does,['so'] -easterly I,['have'] -of pipe,['cigar'] -advantages and,|['her', 'all']| -pulled up,|['before', 'one', 'in']| -force Perhaps,['you'] -apply. so,['many'] -answered in,['a'] -a glowing,['cinder'] -in only,['once'] -pinched and,['fallen'] -of pips,['I'] -was suffering,['from'] -my clerk,['entered'] -deal to,['go'] -way You,|['can', 'are']| -danger when,['he'] -track until,['we'] -Arthur's Sir,['George'] -chanced to,['be'] -featureless crimes,['which'] -neighbourhood McCarthy,['kept'] -We shall,|['now', 'soon', 'just', 'want', 'then']| -hurry asked,['Sherlock'] -Here's half,['a'] -while Holmes,|['who', 'fell', 'had']| -cold which,['makes'] -reach good,['Lestrade'] -youth either,["It's"] -daring I,['am'] -impulse which,['caused'] -my flight,['That'] -any bearing,['upon'] -ran out,['again'] -wheels against,['the'] -little credit,['to'] -too closely,['am'] -corridor which,['ended'] -clue seems,['to'] -total income,['which'] -its side,|['and', 'lanterns']| -the quiet,|['streets', 'thinker']| -very window,['a'] -of putty,['and'] -go home,|['no', 'now', 'with']| -sundials and,['papers'] -are interested,['in'] -gas is,['not'] -business he,['said'] -heart cannot,['admire'] -evenings transform,['myself'] -Mary Holder,['Might'] -two hours,|['we', 'before', 'if']| -my wishes,|['that', 'Twice']| -room She,|['never', 'was']| -the maker,['no'] -his socks,['his'] -nodded and,['shot'] -toy would,['be'] -my dress,|['and', 'again', 'can', 'I']| -died young,['she'] -no uncommon,['thing'] -for particulars,['As'] -real person,['is'] -considering this,['case'] -lifeless as,['some'] -you since,['the'] -within a,|['few', 'dozen', 'very', 'twentieth', 'fortnight', 'minute', 'week']| -sunbeam in,['my'] -my elbow,['It'] -which told,|['us', 'me']| -B's before,['very'] -gave at,['once'] -MYSTERY were,['seated'] -fit the,['lock'] -most entertaining,|['one', 'said']| -taking you,['to-night'] -had stepped,['from'] -and once,|['by', 'he', 'at']| -wake a,['household'] -secret He,['was'] -had refused,['to'] -rolled into,['Eyford'] -another broad,['passage'] -RUCASTLE. is,['the'] -or five,|['minutes', 'miles']| -loudly as,['we'] -she Here,['is'] -Holmes settling,['himself'] -words fell,['quite'] -father could,['have'] -at 7s,['6d.'] -ever was,['seen'] -north south,['east'] -of Frank,['was'] -out replied,['Holmes'] -tell It,['must'] -his huge,|['brown', 'form']| -not rich,['but'] -room which,|['I', 'you', 'are']| -he possess,['so'] -you touch,['that'] -asked admirably.',['say'] -his languid,['dreamy'] -a conclusive,['proof'] -beggar though,['in'] -it He,|['laughed', 'takes', 'opened', 'took', 'was', 'tossed', 'swung', 'wanted']| -beryls are,['all'] -a booted,['man'] -who got,['out'] -now preparing,['for'] -train back,['I'] -night though,['I'] -had finally,|['been', 'abandoned']| -help? it,['was'] -those wretched,['gipsies'] -a nice,|['little', 'household']| -Englishman Early,['that'] -to lock,['yourselves'] -Holmes thin,['eager'] -Holmes this,|['is', 'beauty']| -the trouser,['As'] -bloodless but,['her'] -crinkled with,['anger'] -stared in,['bewilderment'] -reasoner should,['be'] -small wiry,['sunburnt'] -City Hitherto,['his'] -singular points,['about'] -been thrown,['into'] -I lounged,['up'] -hat which,['was'] -was your,|['daughter', 'oil-lamp', 'son']| -In his,|['eyes', 'singular']| -little likely,['to'] -ways unique,['and'] -work said,['the'] -should absolutely,['follow'] -degree of,['self-respect'] -papers about,['a'] -should call,['you'] -the barred,['tail'] -breathed his,['vows'] -his heart,|['With', 'The']| -drove him,|['from', 'The']| -A shadow,['of'] -some days,|['London', 'was', 'said']| -said nothing,|['but', 'of']| -many other,['things'] -a broad-brimmed,['hat'] -speak the,['truth'] -senseless with,['a'] -is round,['in'] -positive virtue,['He'] -from breaking,['out'] -light that,['I'] -windows so,['that'] -door banged,['and'] -stately cough "had,['not'] -as quietly,['as'] -of trustees,['with'] -Rucastle met,['me'] -I perhaps,['I'] -gazing down,['into'] -11:15 do,['you'] -doctor to,['my'] -papers evidently,['newly'] -in Gordon,['Square'] -were fewer,['passengers'] -Stark engraved,['upon'] -was turning,['round'] -silent while,['his'] -Boone the one,['who'] -own heart,['She'] -chagrined He,['drew'] -We called,['at'] -me expound,['"Pray'] -should you,|['come', 'raise', 'rather', 'have']| -by any,|['chemical', 'sort']| -these lie,['undoubtedly'] -carriage to,|['ourselves', 'meet']| -Duncan Ross,|['at', 'and', 'neither', 'was', 'took', 'what']| -think Doctor,['that'] -depend very,['much'] -the terrified,['girl'] -the landau,['with'] -I dressed,|['I', 'and', 'hurriedly']| -out so.,['And'] -twelve and,['of'] -a tapping,['at'] -noiseless lock,['said'] -woman's entreaties,['hardly'] -a comparatively,['small'] -Lee He,['was'] -now faint,['as'] -g a,['P'] -epistle Did,['I'] -him out,|['to', 'from', 'and']| -change colour,["here's"] -far that,['we'] -pause before,['he'] -a thoroughly,['good'] -little worn,['our'] -were visible,['upon'] -you Jem's bird,['we'] -her some,['compromising'] -reading the,|['agony', 'papers']| -assisting man,['hesitated'] -amiable They,['are'] -last There,['are'] -which runs,['down'] -to determine,|['He', 'As']| -resting upon,['his'] -rather peculiar,['tint'] -idea how,['he'] -rose-bushes where,['I'] -ventured to,['give'] -near Harrow,['and'] -a parallel,['instance'] -the buzz,['of'] -his memory,['with'] -Why Watson,['let'] -of calling,['the'] -she met,|['this', 'her', 'Mr']| -staggering out,['at'] -asked Holmes,|['name', 'went', 'is', 'Was', 'tell', 'Bradstreet,', 'yawning', 'with', 'and', 'glancing', 'loud']| -a hesitating,['whispering'] -more deceptive,['than'] -Red-headed Men,["It's"] -enclosure where,['a'] -to something,|['entirely', 'more', 'abnormal']| -and cracked,['in'] -bureau of,['my'] -his key,['into'] -nearer the,['mark'] -prisoner turned,['with'] -purse and,['watch'] -large sum,['due'] -hastening from,['his'] -the Dundas,['separation'] -finished for,['the'] -|name, sir|,['but'] -interest Lestrade,['being'] -though there,|['are', 'had']| -once for,['I'] -beg pardon,|['last', 'As']| -Mrs Farintosh,['whom'] -Hatherley as,['being'] -cushion but,['he'] -there was,|['but', 'the', 'a', 'something', 'nothing', 'to', 'not', 'no', 'his', 'probably', 'my', 'even', 'an', 'behind']| -be exceedingly,['glad'] -fine actor,['even'] -paper scrawled,['over'] -by way,['of'] -better if,['I'] -Both you,['and'] -written straight,['off'] -better in,['every'] -morning though,['he'] -strange creature,['which'] -Every pocket,['stuffed'] -statements instead,['of'] -go What,['do'] -daughter with,['as'] -half open,['throwing'] -been written,|['straight', 'on']| -gave me,|['a', 'the', 'so', 'that']| -of offended,['dignity'] -but neatly,['dressed'] -the cross-purposes,['the'] -swordsman lawyer,['and'] -least a,|['most', 'presumption', 'strong', 'curious', 'fellow-countryman', 'shade']| -told Arthur,['and'] -reserve of,['bullion'] -promises to,['be'] -with damp,['and'] -after four,['I'] -mad and,['I'] -the press,['set'] -case must,['collapse'] -the empty,['wing'] -all shall,['be'] -curiosity so,['when'] -face will,['tell'] -earnestly at,|['it', 'the']| -wasn't near,['as'] -first I,|['was', 'shall', 'thought']| -from Prague,['for'] -turned back,['to'] -same trivial,['but'] -the acquaintance,['of'] -least I,['did'] -good fortune,['I'] -town suppliers,['Now'] -sob in,['a'] -only son,|['of', 'my', 'Arthur']| -just transferred,['to'] -the hole,['and'] -information said,['he'] -in hope,['and'] -waiting outside,|['in', 'said']| -War It,['is'] -across a,['broad'] -shake hands,['before'] -give your,|['reasons', 'casting']| -absence having,['caused'] -bell have,['seen'] -and sharp,['instrument'] -some remembrance,['said'] -roads seem,['to'] -right as,['possible'] -briskly into,['the'] -were sufficient,['to'] -seen how,['could'] -Rucastle let,['me'] -of excellent,['material'] -have explained,['the'] -entered Your,['morning'] -in part,['my'] -dried itself,['The'] -of jewellery,['which'] -As far,['as'] -and half,|['two', 'a']| -then look,|['back', 'thoroughly']| -want and,['forestalling'] -yourself formed,['some'] -from I,['am'] -children He,['had'] -break the,['monotony'] -it so,|['said', 'so.']| -the bathroom,['he'] -thanks to,['this'] -on piling,['fact'] -lunch started,['for'] -man Though,['clear'] -from a,|['journey', 'slim', 'lady', 'boot-lace', 'woman.', 'blunt', 'sudden', 'basin', 'book', 'weary', 'second-floor', 'solution', 'tree', 'close', 'gas-jet', 'rifled', 'salesman', 'relative', 'clump', 'kettle', 'night', 'caraffe', 'man', 'pit.', 'captured', 'fish-monger', 'noble', 'line', 'Republican', 'great']| -would carry,|['my', 'me']| -which broke,['out'] -clad in,|['some', 'a']| -must always,['be'] -case not,['only'] -wonderful sympathy,['and'] -the spring,|['Two', 'and']| -and leave,['it'] -seemed almost,['too'] -your permission,|['I', 'Miss', 'we', 'Mr']| -large face,['seared'] -band of,|['ribbed', 'people', 'gipsies']| -by nature,['and'] -fangs upon,['For'] -send father,['tickets'] -good news,|['for', 'bad?"']| -two whom,['I'] -made some,['small'] -You really,['are'] -Windibank visitor,['had'] -was preoccupied,['with'] -screaming out,['that'] -unnatural if,['you'] -been favoured,['with'] -were quite,['as'] -should apply,['for'] -remain dear,['Mr'] -is mostly,['done'] -what does,|['she', 'her', 'the']| -lodgings at,|['Baker', 'ten']| -beckoning me,['to'] -fingertips together,['as'] -should keep,['his'] -wardrobe And,['pray'] -neither house,['nor'] -conveyed the,['traffic'] -by buying,['a'] -Pa thought,['I'] -stable-boy waiting,['at'] -other before,['I'] -say madam,['that'] -came a,|['neat', 'step', 'night', 'ring', 'sudden', 'long']| -indignation at,['it'] -am boasting,['when'] -date but,['none'] -uncle's remarks,['about'] -injuring her,['We'] -plain one,['One'] -be able,|['to', 'in']| -me Count,['shrugged'] -hour instead,['of'] -lantern and,|['then', 'gazed', 'a', 'left']| -has arrived,['in'] -came I,|['felt', 'may']| -hansoms were,['standing'] -prisoner lay,['with'] -pile while,['poor'] -sort in,['public'] -at which,|['the', 'my', 'I']| -By a,['curious'] -Rucastle and,['much'] -the background,['which'] -wife's eyes,['could'] -is dry,['at'] -some grounds,['for'] -which entitles,['a'] -house for,|['I', 'five']| -my rubber,|['It', 'think']| -it all,|['You', 'make', 'over', 'from', 'to', 'He', 'right', 'and', 'Watson', 'laid', 'plain?', 'day', 'up', 'that', 'if', 'trampled', 'Mr', 'just', 'means']| -a brilliant,|['beam', 'talker']| -for though,['it'] -twitter I,['say'] -den of,['which'] -matter up,|['said', 'I', 'though', 'so', 'With']| -be bound,['tightly'] -However when,['our'] -right leg,['wears'] -could bring,['him'] -journey would,['be'] -excluded the,['impossible'] -neighbours and,['then'] -pity's sake,['tell'] -formalities have,['hurried'] -clouds drifting,['across'] -himself what,['on'] -matter rest,['upon'] -unusual in,['a'] -his native,['butler'] -derives this,['from'] -pure fear,['and'] -Now when,|['you', 'young']| -a view,['of'] -four-wheeler drove,['up'] -moment a,['cheetah'] -work There,['is'] -often be,['lost'] -shall jot,['down'] -meet you.,['is'] -little deductions,['have'] -fastened like,['that'] -her by,|['such', 'the']| -Morcar upon,['the'] -man from,['which'] -steep flight,['of'] -soon flagged,['At'] -room seems,['a'] -by whom,['he'] -by Holmes,['and'] -of tobacco,['ashes'] -reigning family,['of'] -is already,['woven'] -friend's subtle,['powers'] -my friend,|['and', 'had', 'Mr', 'Dr', 'remarked', 'with', 'possessed', 'in', 'here', 'by', 'Sherlock', 'the', 'rose', 'down', 'But', 'lashed', 'fewer', 'blowing', 'whether']| -absolute imbecile,|['in', 'as']| -fallen at,['the'] -midnight and,['his'] -other with,|['their', 'stout']| -houses had,['been'] -I love,['and'] -a stricken,['look'] -covered it,['over'] -of Cooee,|['which', 'was']| -night. we,['could'] -the Museum we,['are'] -no memoir,['of'] -into red,['heelless'] -progress do,['so'] -suddenly threw,['aside'] -society does.,['Mary'] -purest accident,['I'] -7 Pope's,['Court'] -enough She,['rose'] -some conclusion,['Do'] -so; but,['the'] -though in,['order'] -stooped and,['was'] -forces which,['shriek'] -master's affairs,['Now'] -barred-tailed ones,['and'] -since There,['was'] -bell Watson,['and'] -his notice that,['of'] -because he,['was'] -however we,['drove'] -way is,['rather'] -disagreements about,['me'] -in horror,['I'] -unravelled the,['problems'] -way in,|['which', 'my', 'view', 'uttering', 'the', 'everything', 'order', 'was']| -him sitting,['there'] -yourself and,['then'] -was often,['weeks'] -way if,['you'] -my limbs,['as'] -and soaked,['in'] -not cold,['which'] -to receive,|['letters', 'the', 'a']| -third demand,['during'] -plain answer,['madam'] -sums upon,['the'] -more valuable,|['than', 'still']| -beneath My,['guide'] -beside that,['lamp'] -get in,['with'] -get it,['if'] -not breathe,['freely'] -a star,|['or', 'with']| -morning It,['was'] -Street and,|['then', 'it', 'had', 'so']| -own before,['marriage'] -man night it,['was'] -and alert,['manner'] -advice Light,['a'] -understand am,['to'] -come either,['from'] -further particulars,['and'] -I bent,['over'] -a cord,['is'] -certainly not,|['within', 'very']| -noble correspondent,['could'] -waiting Frank,['had'] -of doubt,['which'] -this then,['It'] -which by,|['the', 'its']| -asked glancing,['at'] -how many,|['are', 'were', 'But']| -to speak,|['of', 'with', 'to', 'calmly', 'the', 'loudly']| -whom had,['remarkably'] -allows you,['to'] -separate tracks,['of'] -the prison,|['to', "I'll"]| -happy to,|['look', 'give', 'devote', 'accommodate', 'advance', 'do', 'make']| -would never,|['leave', 'permit', 'guess']| -homely a,['thing'] -Rucastle seemed,['to'] -wholesome the,['garden'] -your coronet,['broke'] -of parents,['by'] -punishment of,['some'] -half up,['as'] -are certainly,['joking'] -the same,|['time', 'intention', 'instant', 'next', 'the', 'crowded', 'direction', 'trivial', 'age', 'way', 'feet', 'meshes', 'thing', 'sort', 'effects', 'source', 'with', 'innocent', 'evening', 'by', 'weight', 'whined', 'to', 'as', 'care', 'corridor', 'result', 'trouble', 'relative', 'state', 'questioning', 'good', 'week', 'class', 'secrecy', 'lines', 'brilliant', 'As', 'world-wide', 'position', 'peculiar', 'thickness']| -Rucastle that,['she'] -are but,['preventing'] -tested the,['hinges'] -his assurance,['while'] -Why Because,['he'] -agent without,['putting'] -bell-pull tore,['back'] -both ways,|['There', 'but']| -birds that,['went'] -crowded even,['on'] -pocket you,['can'] -third drawer,['It'] -certainly deserved,['little'] -was tilted,['in'] -frock-coat was,['buttoned'] -it hurts,['my'] -do do,['take'] -little birds,['and'] -crime has,['been'] -of analysis,['and'] -ulsters and,['wrapped'] -flattening it,['out'] -woman. There,['is'] -pay short,['visits'] -the cells,['he'] -shelf with,['my'] -fifteen years,['younger'] -painful matter,['to'] -paper and,|['prefers', 'the', 'glancing', 'having', 'returning', 'I']| -incident made,['as'] -and your,|['father', 'secret', 'geese', 'confederate', 'bandage', 'relations', 'inferences', 'niece', 'son']| -glands when,['he'] -date. will,['observe'] -obstinacy had,['my'] -fellow standing,['in'] -My family,['itself'] -in my,|['mind', 'cases', 'own', 'index', 'pay', 'ear', 'life', 'being', 'company', 'occupation', 'judgment', 'dealings', 'pocket', 'veins', 'hands', "friend's", 'arms', 'flight', 'old', 'room', 'uncle', "uncle's", 'case', 'professional', 'chair', 'youth', 'power', 'strong', 'shop', 'museum', "lady's", 'waistcoat', 'habits', "stepfather's", 'hand', 'library-chair', 'little', 'ears', 'family', 'wife', 'heart', 'office', 'private', 'service', 'business', 'house sweet', 'anger', 'house', 'last', 'handkerchief', 'direction', 'head', 'joy']| -He dashed,['her'] -in me,|['seemed', 'to', 'at']| -ruffian who,['pursued'] -bar your,['shutters'] -custom always,['to'] -Swain cleared,['Visited'] -prompt as,['this'] -Hudson to,['examine'] -her jacket,['I'] -impressive figure,['His'] -I deduced,['a'] -knew little,['of'] -chasing is,['incalculable'] -naturally secretive,['and'] -what we,|['are', 'wanted', 'call', 'should']| -hair was,['shot'] -draw out,['of'] -League to,['a'] -with lime-cream,['These'] -me for,|['I', 'taking', 'fifty', 'six', 'at', 'not', 'help', '25', 'his', 'we', 'a', 'that', 'it']| -was handy,['and'] -friend fewer,['openings'] -wife allows,['you'] -was wont,['to'] -The largest,['landed'] -the exposure,['he'] -many more,['have'] -in The,['Times'] -test was,['just'] -ones Too,['narrow'] -that upon,['the'] -warn you,['that'] -though his,['question'] -first make,['a'] -more deserted,['there'] -pale but,['I'] -the key,|['when', 'in', 'of', 'gently', 'was', 'upon']| -a tone,['as'] -journey I,|['have', 'understand', 'endeavoured']| -half-drew it,['out'] -worn this,['article'] -about a,|["woman's", 'hundred', 'hydraulic', 'year']| -falling in,['with'] -our own,|['age', 'little', 'process', 'fault']| -some coming,['back'] -and commonplace,['a'] -move me,['from'] -mother Mrs,['Stoner'] -has twice,['been'] -likely do,['not'] -to disturb,|['the', 'you', 'it']| -I need,|['not', 'to']| -thought best,['with'] -logic rather,['than'] -securing the,['situation'] -not doing,['what'] -my office,['at'] -sat puffing,['at'] -same sort,['since'] -on some,|['commission', 'definite', 'clothes', 'errand']| -with moisture,['as'] -was Sir,['George'] -can't imagine,|['how', 'I']| -of The,['Times'] -most serious,['point'] -ticking loudly,['somewhere'] -signs of,|['his', 'him', 'a', 'violence', 'having', 'intense', 'any', 'grief']| -scandal it,['was'] -least the,['initials'] -gone off,['with'] -scandal in,['the'] -editor wished,['to'] -identity of,['the'] -time This,['business'] -do was,['clearly'] -rope and,['land'] -which her,|['master', 'sister']| -own establishment,['were'] -dress will,['become'] -my professional,|['work', 'round', 'qualifications']| -Holmes Esq,['To'] -frock-coat Our,['party'] -dark to,|['me', 'see']| -best was,['naturally'] -There's no,['vice'] -a name,['which'] -Arthur He,['has'] -his children,['over'] -simple so,['that'] -bank she,['hurried'] -slice of,['beef'] -waiter opening,['the'] -rearranging his,['facts'] -you ought,['to'] -frightened said,['my'] -The walls,['were'] -beaten by,['a'] -on earth,|['does', 'are', 'do', 'can', 'has']| -small unburned,['margins'] -fled together,['Mary?'] -all either,['in'] -commonplace books,['in'] -be your,['husband'] -particularly so,['I'] -plain so.",['windows'] -altar I,['lounged'] -and abode,['of'] -would really,['have'] -Doran's house,['that'] -you had,|['been', 'a', 'your', 'done', 'returned', 'cut', 'the', 'heard', 'better', 'an', 'as', 'already', 'told', 'seen']| -question you,['as'] -so round,['by'] -forgot that,|['But', 'I']| -edges and,['thin'] -the girl's,|['stepfather', 'short', 'affections', 'dress']| -and tumbled,['onto'] -before been,['anything'] -set hard,['and'] -Could I,['not'] -bowls of,['the'] -sum for,|['doing', 'people', 'them']| -plainly see,['the'] -sums of,['money'] -and narrowly,['escaped'] -fire Mr,['Baker'] -first He,['gathered'] -back through,['the'] -half-column of,['print'] -It grew,|['worse', 'broader']| -say another,['word'] -fellow-countryman Lysander,['Stark'] -and silently,['he'] -it uncle?,['I'] -interfere solemn,['Mr'] -last post,['said'] -examining minutely,['the'] -young John,['Clay'] -shut up,['the'] -a sweetheart,['I'] -between Lord,['Robert'] -black business,['passed'] -unimportant matters,['that'] -beggar but,['his'] -therefore that,|['my', 'if', 'for']| -we don't,['keep'] -huddled up,['in'] -mean you,['have'] -effort straightened,['it'] -upon each,['other'] -above all,|['why', 'take', 'to', 'do', 'what']| -dressed I,['glanced'] -evidently taken,['a'] -blockaded the,['house'] -Holmes would,['hurry'] -river and,['dashing'] -shall determine,['by'] -floor where,['I'] -the proofs,['which'] -conversation I,['have'] -am sure,|['why?"', 'you', 'excuse', 'that', 'was', 'forgive', 'make', 'Mr', 'wish', 'left', 'said', 'your', 'if']| -bear upon,['a'] -Seeing that,['his'] -and waving,['his'] -had actually,['seen'] -two murders,['a'] -silent! are,['mad'] -fabrication for,['it'] -Holmes When?",['to'] -sent him,['a'] -flight and,['must'] -"'The Copper,['Beeches'] -long then,['flicked'] -will probably,|['be', 'result']| -long they,['seemed'] -pockets and,['an'] -trivial example,['of'] -in Rucastle's,['throat'] -here however,['said'] -streets he,['shuffled'] -sat with,|['his', 'straining', 'her']| -fidgeted with,['her'] -goose at,['one'] -called at,['the'] -know more,['about'] -there before,|['us', 'midnight', 'the']| -become you,['You'] -often weeks,['on'] -resounded with,['the'] -after half-past,['six'] -so remarkable,|['in', 'that']| -bent over,|['the', 'her', 'me']| -would take,|['his', 'the', 'my', 'effect', 'me']| -If he,|['braved', 'is']| -months on,['end'] -from our,['window'] -Yet the,['matter'] -table he,|['retired', 'shook', 'drew']| -lot this,['morning'] -entered I,['at'] -anything under,['the'] -was locked,['as'] -a maid,['who'] -instantly as,['he'] -the local,|['Herefordshire', 'blacksmith']| -no law,['I'] -photograph but,|['when', 'an']| -give a,|['sharp', 'plain', 'little']| -sudden gloom,['and'] -by muttering,['that'] -son's ear,['Now'] -seen little,['of'] -afterwards to,['the'] -interesting character dummy,['bell-ropes'] -weight and,['perfectly'] -entered a,|['sallow', 'well-lit']| -pencils and,['giving'] -than just,['give'] -Windibank gave,['a'] -escaped destruction,['Beyond'] -small black,['figure'] -break in,['upon'] -excellent offers,['in'] -bridegroom Had,['she'] -object of,|['his', 'interest', 'this', 'these', 'mingled', 'seeing']| -didn't let,['me'] -aside and,['lay'] -Horsham He,['had'] -other I,|['think', 'could', 'rushed', 'followed']| -yard though,['I'] -theorize before,['one'] -an inflamed,['face'] -dragged out,['his'] -so nice,['a'] -threaten you,['Holmes'] -suite of,|['spare', 'rooms']| -Wilson's assistant,['counts'] -recent papers,['in'] -eventually recovered,['It'] -room when,|['with', 'I']| -beneath the,['hanging'] -other a,|['plain', 'man']| -us to,|['Saxe-Coburg', 'go', 'know', 'a', 'live', 'see', 'buy', 'Fairbank', 'leave', 'exert', 'be']| -pence were,['duly'] -sentimental considerations,['in'] -Frankly now,['she'] -idea however,['there'] -his attitude,['and'] -minutes afterwards,['the'] -only to-day,['that'] -hansom cab,['drove'] -engineer ruefully,['as'] -hand is,|['quite', 'from']| -nothing remarkable,|['save', 'about']| -hand it,['over'] -in Holmes,|['judgment', 'thin']| -for search,['of'] -pushed him,['down'] -hand in,|['rubbing', 'hand', 'marriage', 'a']| -light one,['hand'] -The chimney,['is'] -hand if,['you'] -of fluffy,['pink'] -the keenest,|['interest', 'pleasure']| -One evening,['after'] -saw how,['many'] -that murmured,['Holmes'] -so bulky,['but'] -the plain-clothes,['man'] -a side,['door'] -the approach,['of'] -follow them,['when'] -my pocket,|['and', 'Petrarch']| -most profound,['gravity'] -bell-pull She,['was'] -Upper Swandam,['Lane'] -dressing-table Ryder,['instantly'] -detail of,['the'] -cigars and,['indicated'] -they seemed,|['to', 'those']| -you It,['is'] -squander money,['on'] -about 11:15.,['good.'] -start vanishing,['of'] -Thoreau's example,['I'] -laid for,['five'] -you If,['you'] -late but,['I'] -country in Bohemia,['not'] -Munro. tut,['tut'] -beard of,['grizzled'] -it farthest,['from'] -bitter end,['Faces'] -nothing for,|['granted', 'myself']| -a previous,|['conviction', 'husband the']| -the lapse,['of'] -naturally my,['intention'] -He wore,['rather'] -been deceived,|['by', 'your']| -shutters up.,['looked'] -this sudden,['commission'] -Your morning,['letters'] -King hoarsely,['All'] -the squat,['diamond-shaped'] -his fingers,|['and', 'I', 'upon']| -very mercifully,['and'] -upon fold,['over'] -was pouring,|['down', 'from']| -perhaps you,|['would', 'will']| -woods to,['the'] -afterwards question,['you'] -look dissatisfied,['I'] -common Logic,['is'] -arms of,|['his', 'Mr']| -effort to,|['escape', 'preserve']| -of Wilton,['carpet'] -of anything,['of'] -stall which,['we'] -to implore,['you'] -founded on,['a'] -you the,|['chisel', 'chance', 'facts', 'geese', 'true', 'steps', 'circumstances']| -face is,|['the', 'one', 'as']| -face it,['is'] -thing for,|['him', 'me', 'us']| -then slept,['on'] -learned to,['play'] -face in,|['his', 'my']| -his stick,|['two', 'upon', 'to']| -to pa,|['next', 'perhaps']| -he Read,['it'] -engraved upon,['it'] -wearing a,['mask'] -a deadly,['dizziness'] -inside are,['proof'] -fallen over,['one'] -greatest concentration,['of'] -the weary,['heavy-lidded'] -You knew,['that'] -journeys to,['France'] -in McQuire's,['camp'] -obvious The,['pressure'] -Stark rushing,['forward'] -Holborn down,['Endell'] -sat waiting,['silently'] -photograph dear!,['That'] -while away,['these'] -had framed,['himself'] -know this,['dead'] -In these,['cases'] -elements blown in,['upon'] -is admirably,['suited'] -hansom on,['a'] -after following,['Holmes'] -attentions and,['the'] -window ascended,['to'] -drove through,|['two', 'the']| -Well when,['once'] -very morning,['of'] -Watson He,['has'] -Have the,['goodness'] -smell Dr,["Roylott's"] -with deference,['Still'] -was passionately,['devoted'] -what seemed,['to'] -laugh They,['might'] -of observation,|['in', 'and']| -Streatham carrying,['the'] -table are,['three'] -sound of,|['horses', 'voices', 'rending', 'movement', 'several', 'running', 'footsteps', 'steps']| -a cellar,['with'] -five every,['day'] -this question,['depended'] -his wife.,['There'] -6d. so.,['There'] -will sit,['on'] -could hear,['the'] -live very,['quietly'] -skill that,['nobody'] -this battered,['hat'] -me Watson,['but'] -up forever,['These'] -young lady's your,["wife's"] -then one,['day'] -been dragging,['the'] -drooping eyebrows,['combined'] -intended to,['go'] -a happy,|['and', 'couple', 'thought']| -frock-coat white,['waistcoat'] -nobleman I,['understand'] -for Hatherley,['Farm'] -it home,['In'] -rather smaller,['than'] -utmost coolness,['I'] -it laid,['out'] -a noble,|['man', 'client', 'woman']| -beautiful a,['wonderful'] -how we,|['progress', 'broke', 'conveyed', 'can']| -abruptly into,['the'] -stairs so.,['Your'] -bought this,['estate'] -that morning,|['Then', 'a', 'yes']| -Square Let,['us'] -it entailed,['upon'] -She pulled,['a'] -no it,['is'] -brightest little,['blue'] -a plot,['or'] -beautiful I,['cried'] -complimented me,['upon'] -causes clbres,['and'] -stepfather's business,['papers'] -last month,['by'] -typewriting which,['seemed'] -impressed me,|['in', 'My', 'with', 'neither']| -game-keeper adds,['that'] -indication of,['the'] -Norton bachelor,['It'] -is provided,['for'] -peeress. else?",['asked'] -The sight,['of'] -also with,|['Mr', 'the']| -chairman of,|['directors', 'the']| -give provided,['always'] -my astonishment,|['a', 'when']| -Apply in,['person'] -scandal would,|['be', 'ensue']| -lock I,|['rushed', 'implored']| -dreadful letters,['when'] -in Fresno,['Street'] -him There,|['is', 'were', 'was']| -house tallow,['stain'] -own arrangements,['are'] -himself upon,|['a', 'his']| -which these,['three'] -of repute,['in'] -it From,['what'] -myself in,|['his', 'my', 'a', 'the', 'Baker']| -never forget,['Oh'] -I Mr,["Wilson's"] -really out,['of'] -now Holmes,['looked'] -in low,['spirits'] -Westbury House,['festivities'] -and wandered,['through'] -your own,|['ink', 'point', 'method', 'bird', 'eyes', 'impression', 'theory', 'good']| -trust Mr,['Holder'] -hearts I,['never'] -who asked,['him'] -lowered my,['handkerchief'] -when no,['constable'] -mine be,['If'] -myself is,['not'] -sound said,['he'] -of attempted,['suicide'] -control of,['my'] -He slapped,['it'] -exposed himself,['to'] -case with,['great'] -disguised himself,['covered'] -Eight shillings,['for'] -coppers which,['I'] -once F.H.M.,['Now'] -instant he,['stood'] -strongest terms,['Evidence'] -offer seemed,['almost'] -have that,|['photograph', 'for', 'one']| -happy and,|['prosperous', 'that']| -few country,['carts'] -has escaped,['destruction'] -a bite,['I'] -experience and,|['of', 'as']| -same result,['The'] -I called,|['at', 'upon', 'a', 'in', 'last']| -fall foul,['of'] -and ceiling,['were'] -your reasons,|['I', 'may']| -are said,|['Holmes', 'he']| -again not,['go'] -Westphail who,['lives'] -certain selection,['and'] -be told,['from'] -want this,['sum?'] -St Saviour's,['near'] -without seeing,['anything'] -could write,['in'] -you until,['your'] -and very,|['little', 'severe', 'energetic']| -inquiring at,['Paddington'] -threw aside,['her'] -have suddenly,['assumed'] -might cause,['him'] -instincts I,['rang'] -McCauley Paramore,['and'] -attain than,['to'] -occurred he,['tried'] -lies upon,['the'] -filling my,['pockets'] -entirely our,['own'] -very commonplace,['Absolutely'] -Principal of,['the'] -perfect was,['the'] -set forth,|['en', 'in']| -collapsed into,['a'] -he bit,['his'] -Men who,['had'] -us how,['we'] -Pool was,['someone'] -pitch darkness such,['an'] -Wood took,['a'] -hot fits,['were'] -end Then,['she'] -For two,['streets'] -responded beautifully,['The'] -weapon The,['injuries'] -papers without,['a'] -behind that,['tree'] -been under,['such'] -at all,|['Hold', 'The', 'This', 'Still', 'I', 'town', 'bless', 'save', 'Drink', 'however,', 'either', 'said', 'then', 'injured', 'If', 'being', 'of', 'A', 'that']| -a squalid,['beggar'] -the chase,|['would', 'and', 'after']| -the outsides,['of'] -father give,['a'] -temper was,['just'] -cause her,['to'] -glancing up,|['at', 'should']| -rushed at,|['the', 'our']| -the individuality,['of'] -the rabbit,['warren'] -three fields,['round'] -Save perhaps,['that'] -me we,['are'] -railings which,['bordered'] -fifth Now,['when'] -were posted,['to-day'] -a lunatic,['that'] -administration The,['Duke'] -a nucleus,['and'] -men Rather,['than'] -desirous of,['getting'] -in four,['days'] -were glad,['or'] -since your,['shaving'] -they like,|['to', 'but']| -strong piece,['of'] -ill-dressed vagabond,['in'] -been struck,['from'] -a sharp-eyed,['coroner'] -would he,|['do', 'tell']| -your pistol,|['ready', 'and']| -he been,['with'] -the bridal,['party'] -nothing save,|['that', 'the']| -free I,['slipped'] -of objections,['which'] -odd boots,['half-buttoned'] -Doctor but,['none'] -conduct was,['certainly'] -pigments and,['wig'] -the neck,|['with', 'and']| -third I,['have'] -the first,|['volume', 'Saturday', 'hansom', 'that', 'heading', 'walk', 'and', 'third', 'but', 'example', 'volley', 'place', 'men', 'time', 'stage', 'floor', 'glance', 'who', 'train', 'is', 'of', 'person', 'Pray', 'notice', 'signs', 'pew', 'two', 'to', 'wife']| -his stall,['was'] -plain but,['his'] -down Swandam,['Lane'] -not stay,['here'] -boy home,['a'] -with grizzled,['hair'] -names are,['where'] -lie behind,['it'] -Victoria That,['is'] -quick march,['passed'] -The Times,|['every', 'and']| -you away,['to'] -which felt,['about'] -|all social,|,['then'] -of Dr,['Grimesby'] -lady the,['money'] -was astir,['for'] -glances Beyond,['the'] -their cargo,['By'] -country We,['know'] -had this,|['final', 'unfortunate', 'morning']| -But how,|['on', 'about', 'to']| -about Isa,['He'] -gently You,['had'] -laughed heavily,['Well'] -shown him,['that'] -way into,|['such', 'a', 'the']| -fleecy white,['clouds'] -thousands of,|['other', 'Bakers']| -in light,['from'] -It seems,|['that', 'from', 'absurdly', 'to', 'rather']| -his sallow,['cheeks'] -five ft,['seven'] -roasting at,['this'] -inclined to,['think'] -personality of,['the'] -think perhaps,['it'] -him By,['it'] -colour and,['life'] -room I,|['found', 'was', 'trust', 'slipped', 'remember']| -our direction,['It'] -wear when,['I'] -weapon the,['murderer'] -old clergyman,['But'] -calmly You,['work'] -only possible,['object'] -lake Mr,['McCarthy'] -salesman nothing,['of'] -deference to,['his'] -of pre-existing,['cases'] -something lay,['upon'] -it What,|['did', 'was']| -Street Anybody,['bringing '] -house saw,['her'] -Pray wait,['until'] -get him,['to'] -room a,|['lumber-room', 'grave', 'new', 'very']| -always is,['to'] -had provided,['I'] -you shall,|['not', 'know', 'have']| -get his,['words'] -naturally. By,['the'] -would understand,['afterwards'] -the maids,|['But', 'why']| -her bed,['It'] -inches in,['height'] -shoes and,|['light-coloured', 'a']| -you I'd,['rather'] -brows knitted,['and'] -absolutely at,['home'] -rising I,['believe'] -impossible for,['me'] -Etherege whose,['husband'] -give these,['vagabonds'] -Swan is,['an'] -painful tale,['This'] -several quiet,['little'] -unnatural that,['when'] -He raised,['his'] -hair it,['is'] -saw Frank,|['here', 'standing', 'out']| -all-important it,['was'] -that everyone,|['in', 'finds']| -the coroner,|['and', 'in', 'have', 'was', 'come']| -|what, then|,['did'] -myself then,['he'] -the coronet,|['at', 'in', 'and', 'see.', 'We', 'was', 'His', 'to', 'had', 'cried', 'their', 'is', 'again']| -lawyer arrived,['I'] -again with,['the'] -gone for,|['no', 'the']| -wealthy men,['and'] -all-night chemical,['researches'] -father struck,['a'] -Berkshire beef,['would'] -often compensated,['for'] -British peeress.,['else?"'] -the sufferer,['It'] -to greet,['her'] -may judge,['Lord'] -with horror,|['I', 'and', 'ran']| -place There,['could'] -agricultural prices,['not'] -garden in,['front'] -kind old,['clergyman'] -then Put,['the'] -The ceremony,['as'] -sir! Oh,['Heaven'] -of imprisonment,|['and', 'sir."']| -again so,|['soon', 'gently']| -met a,['cart'] -frightened Send,['him'] -delicate cases,['of'] -France again,['in'] -lips parted,['a'] -patience. NEVILLE. Written,['in'] -so easy,|['when', 'have']| -passing into,['the'] -no rain,['as'] -told that,['if'] -England the,['Roylotts'] -whose round,['impressions'] -my having,['to'] -river to,['the'] -Holmes Do,['you'] -in engaging,['a'] -wits end,['what'] -|no, there's|,['life'] -some allusion,['to'] -care and,['gave'] -snow of,['the'] -whether he,|['was', 'could', 'is', 'had', 'derives']| -tread of,['drunken'] -lane yesterday,['evening'] -in everything,|["least,'"]| -the instant,|['when', 'from', 'that']| -strange rumours,['which'] -bushes there,['darted'] -down again,|['to', 'in']| -to Mrs,['St'] -Bloomsbury at,['the'] -been fed,['for'] -commissionaire plumped,['down'] -gaze directed,['upward'] -and records,['of'] -nose It,['is'] -bachelor he,['was'] -a blow,['must'] -snakish temper,['so'] -congenial hunt,['waited'] -successful conclusion,['the'] -round table,|['and', 'in']| -bread and,['thrusting'] -seriously menaced,['It'] -always fallen,['at'] -he did,|['it', 'not', 'his', 'rather', 'the', 'he']| -manager came,['in'] -so uncertain,['as'] -small corridor,['which'] -the less,|['you', 'mysterious']| -we eventually,['received'] -important all,['the'] -a foot,['or'] -so close,['that'] -asked fished,['about'] -a fool,|['a', 'of']| -Irene Adler,|['All', 'of', 'The', 'to', 'so;', 'I', 'spinster', 'as', 'herself', 'or', 'papers', 'photograph']| -very awkward,['Could'] -from under,|['his', 'my', 'the']| -a bijou,['villa'] -tall dog-cart,['dashed'] -vacancy after,['all'] -he shuffled,['along'] -hair is,|['of', 'light', 'grizzled', 'somewhat']| -Holder &,['Stevenson'] -in Arizona,['and'] -a tack,['Here'] -we may,|['come', 'discriminate', 'take', 'call', 'put', 'chance', 'clear', 'drive', 'never', 'gain', 'start', 'assume', 'let', 'have', 'expect', 'make', 'judge', 'prove', 'safely', 'need']| -Sutherland the,['problem'] -so were,['it'] -wharves which,['line'] -sailing-ship I,['think'] -hair in,|['both', 'London']| -connection you,['observe'] -and returning,['it'] -implicated in,['the'] -vacancy on,['the'] -seem to,|['be', 'have', 'point', 'find', 'me', 'see', 'expect', 'you']| -conventions and,['humdrum'] -And above,['all'] -to-day My,['practice'] -would cease,['to'] -at Eyford,['at'] -is treasure,['trove'] -a card-case,['In'] -waned in,['the'] -face And,['here'] -late administration,['The'] -well-to-do within,['the'] -is inviolate,['The'] -their steaming,['horses'] -answer the,['advertisement'] -up upon,['the'] -Bohemia the,['singular'] -her elbow,['with'] -no later,['than'] -already given,['you'] -nicely Doctor,['he'] -of fact,['seven'] -least until,['after'] -done manual,['labour'] -common-looking person,['I'] -moment be,['seized'] -Holmes sweetly,['It'] -cloth seen,['by'] -first inclined,['to'] -outr results,['it'] -presented by,|['Miss', 'his']| -witness of,['some'] -followed a,['pathway'] -it going,['and'] -gloom I,['saw'] -Holder I,['shall'] -she travelled,['Twice'] -patients spare,['you'] -and whimsical,['problem'] -five days,['ago'] -ready money,['and'] -sliding shutter,['and'] -desk took,['out'] -expense which,['you'] -there There,['were'] -be passed,|['to', 'at']| -new patient,['he'] -minister in,['far-gone'] -a hereditary,['matter'] -perfectly overpowering,['impulse'] -initials of,|['K', 'an']| -still remained,['it'] -keeps the,['place'] -life I,['bought'] -anything against,['him'] -returning to,|['the', 'his', 'my']| -he braced,['himself'] -terribly I,['tried'] -else he,['would'] -You allude,['to'] -vanished into,['the'] -London. is,['quite'] -turning away,|['without', 'with', 'from']| -public the,['great'] -I got,|['fairly', 'to', 'among', 'the', 'a', 'back', 'into', 'our', 'his']| -little management,['to'] -be saved,['if'] -that bureau,['When'] -was Leadenhall,['Street'] -at them,|['and', 'occasionally']| -his lids,|['now', 'drooping']| -the platform,|['his', 'In', 'save']| -letters of,['his'] -and revealed,['the'] -light It's,['a'] -watch-chain in,['memory'] -enough and,|['vulgar', 'sinister', 'horrible']| -friends was,['a'] -stories of,['which'] -again save,['the'] -small g,['a'] -plot of,['the'] -subtle and,['horrible'] -will try,['What'] -last on,['the'] -doctor does,['go'] -already arrived,|['Ha', 'by']| -1890 Just,['two'] -opinion as,['to'] -small t,|['woven', 'stands']| -stairs was,['indeed'] -indeed cried,['Holmes'] -sprang forward,['and'] -passers-by blew,['out'] -Jones with,|['us', 'a']| -|ring was,|,['indeed'] -a twentieth,['part'] -action to,['the'] -necktie that,['something'] -out as,['if'] -did that,['help'] -daring than,['any'] -see had,|['grown', 'his']| -sardonic eye,['as'] -help laughing,['at'] -put to,|['the', 'at']| -everything Mr,['Holmes'] -He shot,['a'] -dummy said,['he'] -foretold and,['the'] -got into,|['my', 'a', 'the']| -by Monday,['we'] -you whether,['you'] -have it,|['you', 'straight', 'here', 'from', 'for', 'so', 'then', 'he', 'all']| -pulp I,['threw'] -the anxiety,|['in', 'all']| -so quietly,['was'] -you wished,['to'] -park of,['the'] -these isolated,['facts'] -lips compressed,['and'] -have spoiled,['him'] -he rummaged,['and'] -unthinkable on,['Monday'] -to leave,|['the', 'me', 'Some', 'it', 'I', 'so', 'him']| -with crying,['As'] -mark of,|['nitrate', 'being']| -not actionable,['he'] -some deadly,|['and', 'story']| -gone on,['to'] -is weighed,['down'] -roughs One,['of'] -than Arthur,['a'] -sacrifice my,['poor'] -may do,|['what', 'us']| -let him,['know'] -yes with,['the'] -and gratitude,['which'] -letters from,|['a', 'him']| -goose and,|['the', 'a', 'how']| -you. That,['is'] -walking the,['lady'] -Robbery John,['Horner'] -friend the,|['Lascar', 'contrary', 'financier']| -enormous limbs,['showed'] -or mine,['he'] -high thin,|['breathing', 'fleshless']| -lost a,|['fine', 'little', 'fifty-guinea', 'handsome']| -heavy regular,['footfall'] -old dog,['to'] -Very likely,['I'] -to cry,['Cooee!'] -The thought,['had'] -you feel,['equal'] -have retained,|['Lestrade', 'these']| -fit if,['I'] -clothes It,['was'] -although I,|['continually', 'am']| -hoarsely All,['is'] -brought away,['the'] -figure were,['those'] -morning's work,['has'] -an out-house,['but'] -client gave,['it'] -wife knew,['that'] -diary may,['implicate'] -that surly,['fellow'] -like however,['to'] -white tie,['his'] -were drawn,['into'] -but his,|['eyes', 'constitution', 'face', 'blood', 'life', 'only', 'attention']| -that so,|['pretty', 'powerful', 'astute']| -little villages,['up'] -return to,|['Hatherley', 'London', 'England', 'him', 'the', 'my']| -God What,['an'] -page are,['the'] -we diverted,['her'] -ship The,['others'] -the rights,['of'] -what use,|['the', 'you', 'was']| -Will you,|['be', 'go', 'not']| -clean one,['so'] -harm were,['to'] -twice vigorously,['across'] -you appeared,['upon'] -up We,['found'] -however half,['asleep'] -he smiling,|['The', 'in', 'it']| -was thoughtless,['of'] -was going,|['on', 'off', 'I', 'well']| -Vincent Spaulding,|['and', 'seemed', 'I', 'did', 'stout-built,']| -weight would,['come'] -cut which,['I'] -disc and,['loop'] -very different,|['level', 'person']| -hurry and,['dipped'] -He rushes,['to'] -me which,|['caused', 'make']| -implore me,['to'] -banker's dressing-room,['was'] -ours it,['is'] -uncertain which,['to'] -to be,|['an', 'so', 'interesting', 'a', 'unknown', 'taken', 'married', 'in', 'expostulating', 'busier', 'neutral', 'less', 'gone', 'on', 'done', 'right', 'one', 'able', 'improving', 'any', 'such', 'careful', 'seen', 'It', 'third', 'our', 'the', 'there', 'left', 'conspicuous', 'at', 'true', 'produced', 'sharp', 'having', 'stained', 'gained', 'much', 'something', 'innocent', 'upbraided', 'absolutely', 'hanged', 'led', 'read', 'dust', 'correct', 'some', 'most', 'fond', 'cooped', 'connected', 'walking', 'useful', 'said', 'that', 'found', 'too', 'associated', 'immediately', 'lost', 'solved what', 'embarrassed', 'kicked', 'deduced', 'gathered', 'adhesive', 'rather', 'to', 'obstinate', 'determined', 'made', 'sure', 'no', 'quite', 'bound', 'unwound', 'his', 'light', 'not', 'silent', 'before', 'realised', 'bored', 'with', 'I', 'obeyed', 'lonely', 'laid', 'regretted', 'make', 'your', 'But', 'still', 'almost', 'forwarded', 'discreet', 'described', 'particularly', 'wrenching', 'as', 'away', 'allowed', 'accused', 'derived', 'degenerating', 'of', 'kept', 'only', 'back', 'probable', 'colourless', 'spent', 'relevant', 'impossible', 'looking', 'little', 'inhabited', 'sacrificed']| -we bring,['him'] -Besides remember,['that'] -angry to,['see'] -He rushed,|['fiercely', 'down']| -long drive,['and'] -obedience on,['the'] -minutes after,|['I', 'four']| -King had,['stretched'] -the chief,['feature'] -a young,|['man', 'lady', 'chap', 'gentleman', 'and', 'girl']| -writing and,|['the', 'yet']| -great consequence,['at'] -observe The,['distinction'] -became of,|['him', 'those']| -and yet,|['from', 'every', 'the', 'abstracted', 'I', 'might', 'was', 'his', 'he', 'afraid', 'somehow', 'which', 'be', 'there', 'always', 'you', 'her', 'among', 'a', 'had', 'as', 'Mr']| -December 22nd,['just'] -no superscription,['except'] -now stable,['lane'] -suspicious I,['found'] -clue have,['them'] -cry to,['which'] -wooden chair,|['and', 'against', 'sat']| -yard and,|['looking', 'smoked', 'behind']| -glaring with,['a'] -escaped a,['capital'] -can touch,['the'] -deduce that,|['by', 'this', 'the']| -two small,['wicker-work'] -heavy step,['which'] -dried pips,['What'] -house There,|['was', 'were']| -remain clear,['upon'] -we hired,['a'] -Holder of,['the'] -Simon the,['younger'] -employing his,['extraordinary'] -covered those,['keen'] -without you,|['Watson', 'Now']| -by applying,['at'] -intruder by,['the'] -for everyone,['who'] -appearance gave,['an'] -McCarthy senior,['met'] -pointed out,['the'] -do should,['I'] -get some,['data'] -Pink un,['protruding'] -and following,['the'] -would drop,['in'] -bring the,|['matter', 'business']| -unobserved Probably,['he'] -are Jack,['says'] -hardened for,['any'] -white clouds,['drifting'] -chance Here,['are'] -pretty nearly,['filled'] -key into,['the'] -reason so,['sudden'] -early tide,['this'] -criminal We,['have'] -tried to,|['puzzle', 'interest', 'force', 'look', 'put', 'hold', 'get', 'bluster', 'open']| -appearance but,['his'] -a gambler,['in'] -horse want,['to'] -Assizes Those,['are'] -set it,|['right', 'right.', 'going']| -down his,|['face', 'arms', 'cup']| -he Have,['you'] -stepping in,['at'] -convinced that,|['our', 'the', 'she']| -set in,|['with', 'and']| -go up,|['any', 'walked']| -claim his,['pledge'] -attention at,['the'] -as each,['new'] -mistaken is,['the'] -coronet to,['someone'] -braving it,['with'] -hand madam,['Neville'] -mistaken if,|['this', 'we']| -to run,|['back', 'away', 'short']| -as there,|['were', 'are']| -mistaken in,['thinking'] -His costume,['was'] -shall have,|['a', 'the', 'recourse', 'horrors', 'to', 'this', 'it']| -owner is,['unknown'] -much faith,['in'] -try What,['is'] -marked at,['zero'] -sprang up,|['and', 'in']| -beautiful in,['itself'] -have stolen,['said'] -Road a,['small'] -one more,['feat'] -south east,|['and', 'or']| -should find,|['their', 'a', 'myself', 'yourself']| -being a,|['traveller', 'man', 'little', 'public', 'persevering']| -linen The,['skylight'] -have described,|['You', 'we']| -most mysterious,['business'] -Ha ha,|['my', 'What']| -army and,['afterwards'] -a professional,|['beggar', 'matter', 'commission']| -had something,['else'] -cocktail 1s.,['lunch'] -manner of,|['my', 'so', 'a']| -habit when,['in'] -Christmas goose,['surely'] -memory In,['the'] -missed everything,['of'] -already gained,['publicity'] -financier was,['a'] -end Irene,['Adler'] -arc-and-compass breastpin,['of'] -an expenditure,['as'] -my girl,|['and', 'Both', 'should', 'the']| -it doctor?",['have'] -pitiable pass,['We'] -charged with,|['being', 'making', 'that']| -my colleague,['has'] -shall look,|['forward', 'into']| -got the,|['swag', 'other', 'two']| -it eleven.",['what'] -stagnant square,['which'] -giant frame,['he'] -lady's room you,['and'] -my duty,['by'] -sees no,['objection'] -mantelpiece and,['leaning'] -the elbow,['where'] -the thief,['had'] -and accomplishments?,|['accomplishments,']| -say he,['murmured'] -your thinking,['so'] -placed I,['implored'] -been reduced,['to'] -habits His,['rusty'] -people would,['talk'] -can there,['be'] -should never,['have'] -from there,|['adding', 'must', 'on']| -colonel looking,['down'] -four-year-old drama,['As'] -cruelty's sake,['and'] -engaged a,['sitting-room'] -passing quite,['close'] -now thanks,['to'] -of dun-coloured,['houses'] -whatever expenses,['I'] -time to,|['time', 'see', 'the', 'stop', 'come', 'take', 'think', 'tell', 'close', 'rectify', 'prevent', 'thank', 'have', 'do', 'be', 'break', 'commence', 'put']| -been disturbed,['for'] -be gathered,['from'] -theoretical and,['fantastic'] -too coaxing,['He'] -and tugged,|['until', 'at']| -stepfather was,['in'] -an acquaintance,|['and', 'with']| -rightly you,['on'] -what an,['observant'] -unforeseen and,['extraordinary'] -guttering candle,['in'] -been she,['and'] -your forgiveness,['for'] -Openshaw unbreakable,['tire'] -either end,['to'] -Frisco and,['we'] -for over,['twenty'] -sometimes finding,['the'] -morning when,|['the', 'there']| -this he,['placed'] -a relic,['of'] -With your,['permission'] -am safe,['from'] -fields This,['we'] -other ones,|['both', 'On']| -from nine,['in'] -the branches,['there'] -front right,['up'] -ten years,['to'] -thief without,['ever'] -his worn,['boots'] -you a,|['line', 'very', 'married', 'family?', 'month', 'couple', 'cab', 'cup', 'shake-down.', 'young', 'strong', 'liar', 'question', 'wire', 'quite']| -his work,['and'] -two mates,['are'] -hair have,['been'] -client paused,['and'] -lights of,['the'] -liked and,['do'] -ourselves Windibank,['it'] -results of,|['my', 'your']| -large man,['with'] -until I,|['felt', 'yelled', 'have', 'should', 'got', 'come', 'had', 'was', 'found']| -crawl now,['but'] -who are,|['sound', 'breaking', 'anxious', 'on', 'seeking']| -pa next,['I'] -coppers Only,['one'] -fee which,['would'] -smokes Indian,['cigars'] -is certainly,|['among', 'plausible', 'not']| -she hand,['it'] -not fitted,['for'] -way much,['for'] -you A,['tall'] -shutters Stoner,['did'] -fascinating nor,['artistic'] -plainly furnished,|['as', 'A', 'room', 'little']| -you I,|['answered', 'presume', 'you', 'can', "won't", 'asked', "wouldn't", 'do', 'dine', 'am', 'shall', 'suppose', 'say', 'had', 'rely', 'knew', 'assure']| -them without,|['a', 'revealing']| -night. said,['he'] -no furniture,['save'] -her she,|['will', 'suddenly', 'flattered']| -red-headed copier,['of'] -deepest interest,['is'] -knock you,['up'] -boy's curiosity,['I'] -this public,['manner'] -resolve our,['doubts'] -spinning up,['from'] -jury had,['no'] -you driving,['at'] -Others were,['of'] -then hurried,['forward'] -other of,['us'] -was presumably,['well'] -pointed beard,['of'] -shoulders at,['any'] -way along,['the'] -show me,|['she', 'how', 'that']| -he remarked,|['I', 'Nothing', 'What', 'as', 'looking', 'for', "L'homme", 'that', 'returning', 'holding', 'at', 'would', 'and', 'so', 'after']| -take effect,['would'] -always some,['there'] -encamp upon,['the'] -the bride's,['manner'] -glance of,['the'] -Of course,|['in', 'that', 'I', 'it', 'he', 'there']| -show my,['face'] -rat then,['Holmes'] -Never let,['yourself'] -Between your,['brandy'] -Slipping through,['the'] -him which,['mother'] -be who,['was'] -singular that,|['I', 'this']| -influence probably,['drink'] -hope as,['long'] -of sudden,['wealth'] -cold Mr,['Ryder'] -footpaths were,['black'] -chamber for,['an'] -a grave,['face'] -is due,['at'] -window someone,['had'] -would rush,|['to', 'tumultuously']| -once but,|['the', 'after']| -beautiful countryside,['horrify'] -an agency,['for'] -heart or,['conscience'] -an impression,['behind'] -wit's end,|['where', 'Then', 'as', 'HUNTER."']| -left was,['enough'] -suavely that,['I'] -most successful,['cases'] -implicate Miss,['Flora'] -hereditary matter,['so'] -shorter walk,['brought'] -or otherwise,['in'] -through the,|['street', 'room', 'shouting', 'crowd', 'City', 'house', 'beautiful', 'streets', 'meadows', 'wood', 'papers', 'bars', 'keyhole', 'dim', 'gloom', 'darkness', 'endless', 'rifts', 'front', 'window', 'outskirts', 'rent', 'kitchen', 'doctors', 'scattered', 'dense', 'fall', 'lovely', 'open', 'ventilator', 'hole', 'wicket', 'door', 'snow', 'heavy']| -he turning,['to'] -after much,['chaffering'] -such nice,['work'] -his double,['chin'] -legs upon,['another'] -1858 Contralto hum,['La'] -who were,|['flirting', 'lounging', 'in', 'unacquainted', 'playing', 'opposed']| -out here,['Mrs'] -well Windibank,['sprang'] -and the,|['home-centred', 'fierce', 'paper', 'mind', 'exalted', 'landau', 'lady', 'lamps', 'loungers', 'expression', 'muscles', 'Freemasonry', 'left', 'effect', 'date', 'folk', 'same', 'billet', 'rueful', 'ominous', 'Agra', 'directors', 'dawn', 'bags', 'pistol', 'copying', 'conduct', 'usual', 'boy', 'little', 'vacuous', 'other', 'extraordinary', 'whole', "r's", 'loss', 'curious', 'son', 'police-court', 'coroner', 'incident', 'sofa', 'more', 'moment', 'morning', 'Boscombe', 'inferences', 'smokeless', 'veins', 'private', 'reeds', 'heels', 'corners', 'equinoctial', 'rain', 'wind', 'splash', 'lawyer', 'water', 'chalk-pit', 'papers', 'rest', 'third', 'sailing', 'murdering', 'still', 'sun', 'maid', 'heading', 'extreme', 'two', 'cable', 'murderers', 'rascally', 'clink', 'air', 'Lascar', 'evident', 'bedroom', 'house', 'questions', 'room', 'twisted', 'money', 'windows', 'punishment', 'excellent', 'moral', 'face', 'goose', 'prison', 'bird', 'breath', 'proprietor', 'numbers', 'Pink', 'only', 'inquirer', 'claspings', 'crisp', 'case', 'estates', 'family', 'two-hundred-year-old', 'folks', 'creaking', 'flooring', 'trap', 'blinds', 'stone-work', 'one', 'panelling', 'stump', 'schemer', 'use', 'loop', 'mystery', 'lapse', 'colour', 'skin', 'pay', 'conversation', 'carriage', 'colonel', 'sight', 'sound', 'damp', 'swish', 'shouting', 'ruffian', 'Jezail', 'humbler', 'agony', 'noble', 'matter', 'footman', 'artist', 'exquisite', 'Park', 'words', 'church', 'blundering', 'man', 'snow', 'number', 'price', 'look', 'anxiety', 'thirty-six', 'maids', 'opposing', 'ladies', 'dearest', 'dock', 'child', 'lawn', 'key', 'real', 'prisoner']| -staples It,['is'] -preparations and,['such'] -very ingenious,['said'] -circle This,['is'] -wrote me,['dreadful'] -little fortune,['to'] -evidently no,['sense'] -thrown back,['and'] -it vanishes,['among'] -class think,['that'] -hopes shrugged,['his'] -enemy enemy?",['one'] -Temple to,['see'] -streamed up,['from'] -in Scarlet,|['I', 'to']| -succeeded by,|['a', 'certain']| -weaker than,['himself'] -survivor of,['one'] -many men,['have'] -that coronet?,['gas'] -them out,['together'] -very jealously,['however'] -buy an,['opinion'] -table ten,['minutes'] -ushered me,['in'] -delay had,['reached'] -looming up,['beside'] -up but,['by'] -my intention,|['of', 'that', 'to']| -he Yes,['he'] -cleared up,|['and', 'year', 'to', 'now though']| -still a,['sceptic'] -another such,['opening'] -feet of,|['water', 'me']| -has satisfied,['himself'] -with bloodstains,['He'] -and watch,['if'] -his attention,|['to', 'instantly']| -Swan Hotel,['at'] -still I,|['have', 'had']| -them wear,['over'] -meal into,['his'] -still A,['vague'] -bell-pull see,['it'] -fitted with,['a'] -lamp was,['lit'] -which lined,|['the', 'it']| -walk out,['upon'] -your friend,|['is', 'As', 'and']| -mistaken Boots,['had'] -been lifted,['and'] -thin upon,['the'] -huge pinch,['of'] -came talking,['something'] -his dressing-gown,|['When', 'reading', 'looking']| -years it,['has'] -so sure,['that'] -gazed long,['and'] -billet was,['such'] -were seated,['at'] -want then?,['white'] -her mistress,['allowed'] -had intrusted,['to'] -Holmes so,['now'] -band I,['have'] -may sketch,['out'] -my own,|['manner', 'was', 'person', 'arrangements', 'station', 'little', 'and', 'good', 'stupidity', 'to', 'right', 'attention', 'master', 'head', 'roof', 'fate', 'family', 'affairs', 'police', 'purposes', 'thoughts', 'income', 'There', 'thought', 'province', 'services', 'heart', 'curiosity', 'marriage', 'memory', 'case', 'private', 'bureau.', 'way', 'eyes', 'son', 'special', 'room', 'shadow', 'hair']| -extra couple,['of'] -thoughts are,['not'] -years in,|['England', 'the']| -her last,['night'] -upon Portsdown,['Hill'] -stated in,['his'] -stall was,['shaking'] -not love,|['him', 'your']| -known that,['we'] -The thing,['to'] -the Gladstone,['bag'] -threw it,|['down', 'into', 'across']| -the yard,|['and', 'though']| -the momentary,['gleam'] -he derives,['this'] -man come,['to'] -she half-drew,['it'] -from accidental,['causes.'] -excitement and,['concern'] -you desire,|['to', 'your']| -Holmes desired,['to'] -afraid not,['very'] -of preserving,['a'] -he glanced,['down'] -this also,['he'] -distinctly Australian,['cry'] -dear sir,|['cried', 'Your', 'said']| -panted dear,['young'] -second largest,['private'] -black fluffy,['ashes'] -Street. That,['is'] -age clean-shaven,['and'] -led away,['from'] -are these,['about'] -matter or,['I'] -chinchilla beard,['growing'] -Let's have,['it'] -deeply into,|['the', 'it']| -22nd. Twenty-four,['geese'] -sold the,['lot'] -those unwelcome,['social'] -returned the,|['King', 'strange']| -isn't it,['said'] -he who,|['had', 'wore']| -freedom which,['it'] -For that,['matter'] -dawn be,['breaking'] -when I,|['arrived', 'raise', 'saw', 'found', 'have', 'got', 'started', 'flash', 'had', 'wrote', 'looked', 'came', 'say', 'heard', 'returned', 'knew', 'give', 'see', 'am', 'coupled', 'was', 'glanced', 'spoke', 'consider', 'think', 'actually', 'went', 'gave', 'called', 'received', 'mentioned', 'would']| -my stepfather's,['case'] -she bade,['us'] -Yard were,['not'] -cry and,|['dropped', 'found', 'one', 'was']| -the previous,|['night', 'morning']| -opinion that,['the'] -but I'll,['checkmate'] -constables up,['the'] -first inquiries,['I'] -when a,|['hansom', 'cab', 'man', 'sudden', 'clever', 'door', 'card']| -think were,['the'] -never likely,['to'] -Pray lie,['down'] -season of,['forgiveness'] -the door-mat,['In'] -own hands,['when'] -American had,['started'] -my fingers,['I'] -the corridor-lamp,['I'] -beauty? looked,['through'] -fire I,|['had', 'entered']| -poison which,['could'] -Waterloo we,['were'] -roof was,['partly'] -be done,|['in', 'at', 'to-night', 'cried']| -words with,|['which', 'him', 'care', 'the']| -flaw however,['in'] -eagerly out,['of'] -always given,['me'] -a thumb,['were'] -the meadows,|['and', 'there!"']| -sum which,['I'] -ceiling a,['startled'] -scrawled over,['with'] -all accounts,['a'] -be entirely,|['cleared', 'our']| -most unpleasant,['couple'] -the dock,|['for', 'But']| -fire a,['client'] -in reply,['Swiftly'] -after going,['through'] -claim to,['be'] -sometimes curious,['as'] -An ordinary,['man'] -statement was,['nothing'] -the remainder,['of'] -spirits upon,['their'] -passed you,['without'] -the butt-end,['of'] -spinster to,['Godfrey'] -his account,['cry'] -dregs of,['the'] -in undoing,['the'] -evident to,['me'] -overcoat in,['his'] -conception of,['an'] -answered to,['the'] -again his,['having'] -visitor I,['regret'] -say dear,['said'] -the influence,['of'] -one about,['three'] -his brow,|["It it's", 'so', 'he', 'set', 'was']| -throws up,['mud'] -forty-grain weight,['of'] -time of,|['my', 'his', 'the', 'life', 'her']| -Ferguson and,['I'] -restored to,['their'] -great town,['until'] -lover through,['the'] -of fourteen,|['who', 'Patience']| -sister Miss,['Honoria'] -time or,['stopping'] -I recognise,['the'] -weary day,['heard'] -itself which,['is'] -is not,|['an', 'too', 'exactly', 'a', 'as', 'sure', 'so', 'easily', 'pleasant', 'But', 'part', 'mentioned', 'Hatherley', 'such', 'for', 'always', 'yet', 'on', 'your', 'easy', 'the', 'laid', 'cold', 'even', 'quite', 'necessary', 'only', 'worth', 'and', 'my', 'I', 'to', 'selfishness', 'personally', 'beautiful', 'mad']| -is now,|['desirous', 'as', 'another', 'dead', 'past', 'thirty-seven', 'devouring', 'inhabited', 'through', 'in', 'think']| -side The,['panel'] -whistle in,['the'] -the soles,['are'] -aware more,['than'] -chair by,['the'] -slang of,['the'] -had gained,['the'] -from Mr,|['Henry', 'and']| -flat box,['This'] -sporadic outbreaks,['of'] -had seamed,['it'] -strong that,['the'] -concern Mr.,['Sherlock'] -a tune,['under'] -from the,|['hall', 'nature', 'top', 'part', 'scene', 'room', 'house', 'brougham', 'inside', 'office', 'retired', 'extraordinary', 'rack', 'Bank', 'thin', 'cellar', 'first', 'commonplaces', 'ground "let', 'King', 'reigning', 'box', 'thumb', 'missing', 'window', 'west', 'pool', 'body?', 'edge', 'point', 'newspapers', 'action', 'papers', 'conviction', 'length', 'routine', 'south-west', 'commencement', 'table', 'very', 'North', 'major', 'family', 'fanciful', 'country', 'loaf', 'cupboard', 'Isle', 'ship', 'stevedore', 'old', 'opium', 'distance', 'same', 'sofa', 'wall', 'photograph', 'creditor', 'leather', "lady's", 'jewel-case', 'goose', 'fanlight', 'ruddy-faced', 'salesman', 'stall', 'hotel', 'street', 'outset', 'next', 'lawn', 'village', 'chimneys', 'original', 'middle', 'bed', 'silence', 'dead', 'roots', 'rate', 'time', 'gloss', 'absolute', 'little', 'floor', 'one', 'shelf', 'garden', 'schoolmaster', 'wedding', 'Serpentine', 'direction', 'dangerous', 'glamour', 'road', 'joint', 'charge', 'gentleman', 'fogs', 'station', 'front', 'bottom', 'moment']| -were no,|['signs', 'other', 'marks', 'carpets']| -salesman nodded,['and'] -in reference,['to'] -Far from,['hushing'] -fully share,['your'] -trembling hand,['K'] -dirty thumb,['Ha'] -suppose there,['would'] -the Ballarat,['Gang'] -no help,['to'] -already I,['have'] -so early,['Doctor'] -us placed,['his'] -say the,['Serpentine-mews'] -pool the,['woods'] -miles an,['hour'] -slits amid,['the'] -news to,|['the', 'his']| -the blaze,|['name,"']| -putty and,['he'] -without result,['I'] -there while,['I'] -sixty; but,['his'] -again behind,['me'] -two middle-aged,['gentlemen'] -these deserted,['rooms'] -of heroic,['self-sacrifice'] -very strange,['experience'] -BEECHES the,['man'] -already a,|['dying', 'clue', 'sinister']| -dreadful hard,['before'] -who acts,['as'] -he lays,['his'] -tilted in,['a'] -which interests,['me'] -of promise,['were'] -his feet,|['again', 'up', 'and', 'it', 'thrust', 'he', 'heavy']| -happened to,|['be', 'him', 'disturb', 'live', 'you', 'look']| -could wink!,['He'] -long journey,['I'] -staring with,['frightened'] -curiosity It,['was'] -the German,|['for', 'who']| -standing to,['his'] -wrinkles burned,['yellow'] -his chemical,['studies'] -future career,['of'] -packet It,['is'] -sharp rattling,['of'] -shamefully used,['think'] -much labour,['we'] -raising up,['a'] -the next,|['room', "I've", 'evening', 'Assizes', 'act', 'few', 'day', 'occasion']| -pedestrians It,['was'] -saw Mary,['herself'] -said what,['interest'] -little turns,['also'] -had strayed,['into'] -treasure he,['has'] -Florida for,['the'] -most lovely,|['young', 'country']| -and whistled,['shrilly a'] -to 88,['pounds'] -three pound,['heavier'] -tout without,['even'] -of next,['day'] -is somewhat,['luxuriant'] -dark road,['a'] -the market.,|['you,']| -I remain,['dear'] -about yourself,['your'] -told my,|['pal', 'story', 'maid']| -was seen,|['swinging', 'I', 'walking']| -started when,['I'] -By the,|['way', 'time', 'light']| -I learned,['by'] -lately My,['marriage'] -had repented,['of'] -gables and,['high'] -scoundrel said,['Holmes'] -ladder against,['the'] -might never,|['be', 'have']| -George's was,['much'] -appearance did,['not'] -Holder confess,['that'] -place was,|['still', 'driven']| -that maiden,['he'] -you full,['justice'] -off banker,['recoiled'] -last straggling,['houses'] -it could,|['have', 'not', 'bear']| -matter has,['she'] -said He,['followed'] -left Baker,['Street'] -emotion Then,['he'] -throw in,['this'] -looked sadly,['at'] -In life,['or'] -Testament and,['hence'] -pupils all,['huddled'] -very note,|['He', 'which']| -armchair A,['formidable'] -have remarked,|['how', 'a', 'Mr']| -a half-pay,['major'] -character His,['tangled'] -Millar a,['woman'] -hated to,['be'] -friend As,['to'] -and 270,['half-pennies'] -yet rich,['style'] -remains Mr,['Rucastle'] -farther up,['the'] -the reputation,['of'] -before one,['has'] -advertisement he,|['has', 'the']| -rural place,['The'] -suburb but,['sat'] -welcomed her,['with'] -have gathered,['that'] -way about,['the'] -his nostrils,['were'] -to a,|['patient', 'man', 'more', 'salary', 'conclusion', 'head', 'pitch', 'practical', 'woman', 'firm', 'certain', 'possibility', 'criminal', 'scheming', 'rat', 'consideration', 'marriage', 'quiet', 'light-house', 'black', 'small', 'whitewashed', 'court', 'moral', 'poor', 'pointed', 'salesman', 'band a', 'band', 'fierce', 'very', 'cluster', 'thick', 'wire', 'hook', 'clever', 'soul.', 'stand', 'shapeless', 'huge', 'British', 'late', 'part', 'cell', 'cup', 'lonely', 'hundred', 'charge', 'lady', "man's", 'ring', 'shadow']| -devotedly attached,['to'] -passages narrow,['winding'] -day with,['a'] -simple and,['yet'] -rather baggy,['grey'] -the ponderous,['commonplace'] -journeyed down,['to'] -careful I,|['shall', 'observed']| -the roads,['And'] -his Fowler,['was'] -to I,['found'] -to A,['B'] -own attention,['at'] -repeatedly told,['her'] -of Holland,|['Beyond', 'though']| -to turn,|['my', 'the', 'to none', 'upon', 'it']| -the large,|['dark', 'one']| -duplicates of,['Mr'] -stand for,['a'] -think sound,['at'] -really an,['object'] -strange low,['monotonous'] -hat three,['years'] -China fish,['that'] -command a,['view'] -crates and,['massive'] -to Miss,|['Turner', 'Stoper']| -Holmes reaching,['up'] -slight bow,['sidled'] -really as,['a'] -folded across,['it'] -style By,['degrees'] -standing beside,['the'] -get home,['instantly'] -things had,['been'] -double tide,['inward'] -possibility But,['I'] -personal matter,['with'] -shouted another,['But'] -cannot swear,['that'] -short walk,['took'] -Norton she,['could'] -right is,|['his', 'it']| -struck us,['both'] -wear only,['on'] -whatever remains,['however'] -blandly You,['have'] -times before,['I'] -slowly evolve,['before'] -the Westbury,['House'] -suspended in,['this'] -|mouths see,"|,['remarked'] -we found,|['ourselves', 'lunch', 'this', 'the']| -for want,['of'] -right in,|['the', 'front']| -to bandy,['words'] -words alone,['would'] -Castle business,['A'] -eyes glancing,['back'] -no data,|['yet', 'I']| -a Freemason,['that'] -felt angry,['at'] -walked across,['to'] -I should ,['remarks'] -the coppers,['which'] -too thinks,['my'] -time even,['to'] -glanced back,['and'] -travelled Twice,['she'] -shown himself,['for'] -very heavy,|['and', 'sleeper']| -a patentee,['of'] -stop his,['gossip'] -filled the,['first'] -other traces,['of'] -I ever,|['drove', 'found', 'forget', 'heard', 'chance']| -Inn which,['is'] -Holmes without,|['opening', 'flying']| -matters until,['to-morrow'] -which rise,['up'] -fountain he,['asked'] -breast of,['his'] -rat in,['a'] -and nights,['on'] -Horner is,['innocent'] -doubts he,['spoke'] -stood your,['friend'] -perfect sample,['of'] -plumber in,['the'] -clad as,['became'] -nights later,['I'] -elemental forces,['which'] -have degraded,['what'] -sake and,['whether'] -whom the,|['pledge', 'love']| -of dim,['light'] -can't all,['be'] -and pulled,|['a', 'and', 'at']| -single bone,['so'] -question That's,['right'] -found lying,['on'] -a roar,['of'] -advice of,['my'] -unfortunate enough,['to'] -the intimate,['of'] -several miles,['and'] -head she,['suddenly'] -his ears,|['are', 'or']| -be those,|['that', 'wretched']| -steel She,|['has', 'responded']| -work Then,['I'] -office but,['a'] -details should,['find'] -night Oh,['what'] -see. You,['infer'] -Frank took,['my'] -as Alice,['grew'] -the vital,['essence'] -Holmes salesman,['nodded'] -posted to-day,|['at', 'is']| -C' that is,['sent'] -rather more,|['to', 'than']| -Hampshire in,['the'] -the villains,['who'] -few clumps,['of'] -hair seemed,['to'] -the increased,['salary'] -trouble and,['likely'] -of blue,|['It', 'paper']| -to gaol,['now'] -missing gentleman's,['clothes'] -apartment Grimesby,["Roylott's"] -remarking before,['he'] -Bradstreet B,['division'] -Ross was,|['there', 'He']| -the river,|['by', 'to', 'I', 'and']| -some strange,|['bird', 'and', 'tales', 'creature']| -thousands They,['put'] -not apparently,['see'] -the path,|['and', 'than']| -good result,['I'] -two-hundred-year-old house,['which'] -our fads,['may'] -dated at,['midnight'] -|Dundee,' I|,['answered'] -badge of,['a'] -our Co.,['P'] -itself The,['rest'] -worn boots,['he'] -those great,|['elemental', 'people']| -print but,['I'] -mystery to,['him'] -room leaving,['me'] -sat up,|['upon', 'in', 'with']| -this apparition,|['name,']| -Ezekiah Hopkins,|['of', 'who']| -your valuable,['time'] -THE woman,['I'] -shortly after,|['eight', 'his']| -and pluck,['her'] -selfishness or,['conceit'] -will direct,['his'] -one long,['effort'] -an ejaculation,['or'] -decline of,['his'] -walking alone,['The'] -stepped up,['to'] -happening on,['the'] -|know pray,|,['sit'] -his armchair,|['and', 'amid', 'A']| -19th heavens!,['I'] -rich brown,['fur'] -Bakers in,['this'] -suddenly come,['upon'] -price It,['is'] -always locked,['up'] -addressed the,['envelope'] -Jabez Wilson's,['presence in'] -anything with,['him'] -my headings,['under'] -had formed,['my'] -one but,['Mr'] -may address,['me'] -nutshell If,['you'] -bureau first,['and'] -was endeavouring,['to'] -important you,['understand'] -Turner must,['go'] -are impassable,['then'] -quinsy and,['swollen'] -Pondicherry the,['second'] -Openshaw has,['in'] -down was,['a'] -might have,|['a', 'your', 'remained', 'turned', 'communicated', 'called', 'been', 'leaped', 'the', 'placed', 'suggested', 'shown', 'any', 'seen', 'faced', 'changed', 'fled']| -Each daughter,['can'] -enough shall,['be'] -lonely houses,['each'] -broad-brimmed straw,['hat'] -hand there,['was'] -lead foil,['Our'] -Openshaw had,['some'] -hands hand,['when'] -conjunction with,['the'] -something more,|['cheerful', 'solid']| -his asking,['to'] -hence also,['the'] -some strong,|['motive', 'object', 'agitation', 'reason']| -very incomplete,['we'] -note-taking and,['of'] -things come,['back'] -advice but,['is'] -fainted dead,['away'] -case said,['Holmes'] -companion night--it,['was'] -called your,['attention'] -in Kent,|['We', 'See']| -he recovered,['his'] -cases which,|['occur', 'come', 'are', 'I', 'serves', 'you']| -your custom,['always'] -cover the,|['matter', 'facts']| -made We,['may'] -drew from,['the'] -the front,|['and', 'of', 'door', 'room', 'pew', 'down']| -talker and,['a'] -not quite,|['good', 'my', 'follow', 'so', 'understand', 'to']| -only proficient,['in'] -Here we,|['are', 'may']| -drive gasped,['Hatherley'] -can think,['and'] -carry my,['stone'] -my visitor,['and'] -an impertinent,['fellow'] -certain annual,['sum'] -good That,['is'] -were groping,['and'] -When Lee,['laid'] -pretty expensive,['joke'] -Copper Beeches,|['five', 'near', 'It', 'my', 'Mr', 'by', 'having']| -|papers which,|,['sir'] -climate of,['Florida'] -there rushed,['into'] -But here,|['she', 'are']| -solved for,['here'] -friend smiled,['the'] -standing in,|['a', 'the']| -ever to,['discover'] -evil for,['the'] -moodily at,['one'] -little of,|['Holmes', 'my', 'life', 'his', 'your', 'its', 'what', 'the']| -day Supposing,['that'] -its hinges,['I'] -me! is,['it'] -that may,|['hang', 'be', 'help']| -now And,['if'] -be recovered,['have'] -a pile,|['of', 'while']| -carriage at,['the'] -coffee in,|['the', 'one']| -actions was,['directed'] -even my,['hardened'] -remark the,|['contrary', 'postmarks']| -a slave,['to'] -Holmes loud,['thudding'] -no notice.,|['no,']| -a drunkard,['I'] -glad that,|['you', 'he']| -be approached,['by'] -he known,['the'] -much I,['think'] -grey in,['colour'] -God for,['that'] -to hurt,['a'] -Lodge and,|['a', 'laid']| -a huge,|['pinch', 'vault', 'error', 'ledger', 'man', 'bundle']| -flowing in,['a'] -us We,|['will', 'did', 'stepped']| -whistle such,['as'] -In this,|['case', 'way', 'I']| -running freely,['down'] -shape seeing,['that'] -poorer was,['Frank'] -tongue over,['his'] -arrived that,['was'] -purely nominal.,['do'] -or in,|['two', 'which', 'his', 'death', 'danger ']| -much a,['mystery'] -affairs Now,['we'] -increased salary,['may'] -recent developments,['but'] -presented to,['him'] -pince-nez to,['his'] -greeting appeared,['to'] -all injured,['it'] -uncle Elias,|['and', 'emigrated']| -air is,['also'] -bowed me,['out'] -coat which,['was'] -one twelve,['months'] -Whitney's medical,['adviser'] -communication between,|['them', 'the']| -was done,|['with', 'and']| -these lonely,['houses'] -of April,['27'] -died from,['some'] -of uneasiness,['began'] -have exacted,['from'] -clearly what,['it'] -had beaten,['against'] -parted from,|['me', 'his', 'my']| -in turn,['to'] -My niece,['Mary'] -ring to,['my'] -Angel sir.,['I'] -been placed,|['at', 'in', 'close']| -then beginning,['to'] -|heard however,|,['the'] -the nervous,['tension'] -and more,['so'] -horror ran,['along'] -rifts of,['the'] -bring an,['explanation'] -ally the,['guard'] -completely I,['must'] -to-morrow if,['I'] -guess how,['I'] -a chinchilla,['beard'] -hardly a,|['word', 'coat', 'case']| -so frightened,|['by', 'about']| -bending forward,['and'] -must recall,['the'] -himself cross-legged,['with'] -reaching up,['his'] -his newspapers,['glancing'] -aside for,["you Jem's"] -answered advertisements,['but'] -became restive,['insisted'] -possible explanation,['And'] -Friday man,['Your'] -way as,|['ever', 'to']| -lock this,['door?'] -have driven,['down'] -or devil,['When'] -them The,|['Boscombe', 'centre']| -he departed,['is'] -Bar of,['Gold'] -good of,|['you', 'Lord', 'all']| -father tickets,['when'] -more successful,|['conclusion', 'I', 'He']| -advantages in,['my'] -for Eyford,['three'] -years has,|['done', 'hardly']| -matches on,['his'] -the leaves,|['and', 'of']| -Set the,['pips'] -disposition and,['the'] -certain too,['that'] -a richness,['which'] -matter aside,['until'] -better-lined waistcoat,['But'] -must guard,['himself'] -newcomer Out,['of'] -they can.,['this'] -ramblings of,['these'] -cuts into,['glass'] -stroll to,['find'] -door very,['quietly'] -Clark Russell's,['fine'] -of brown,['worm-eaten'] -rushes to,['some'] -listened spellbound,['to'] -telephone projecting,['from'] -Leatherhead at,['twenty'] -You're mad,['Here'] -the postmark,['preposterous'] -serving his,['time'] -was Miss,["Alice's"] -German people,['and'] -might catch,['some'] -first finds,['himself'] -point which,|['granting', 'struck', 'remains', 'I']| -down taking,['in'] -spoke calmly,['but'] -aware that,|['I', 'you', 'we', "fuller's-earth", 'something']| -new leaf,['and'] -she propose,['to'] -her lips,['parted'] -sudden breaking,['up'] -a wayside,['public-house'] -broken bell,['wire'] -Mr Jabez,|['Wilson', "Wilson's"]| -said Jones,|['in', "He's", 'with']| -just called,['myself'] -descend to,['you'] -walls are,['sound'] -the shop,['window'] -my level,['what'] -hydraulic press,|['This', 'in', 'and']| -tend towards,['the'] -nine when,['I'] -you learn,['from'] -the ladies,['who'] -was performed,['at'] -covered his,['face'] -your patients,['spare'] -her since,['I'] -immense responsibility,['which'] -bandaged me,['and'] -wrong again,['he'] -gets to,['the'] -bands which,['was'] -something abnormal,['though'] -empty berth,['you.'] -compliments of,['the'] -house sweet loving,['beautiful'] -consequential way,['Our'] -depose that,['Mr'] -manners he,['was'] -am When,['I'] -them with,|['a', 'ink', 'the']| -kindly put,|['your', 'two']| -slip your,['revolver'] -both in,['the'] -time That,['left'] -Star of,['Savannah'] -palpitating with,|['horror', 'fear']| -Two attempts,['of'] -bedroom door,['likely'] -if ever,['he'] -blinked up,['at'] -room at,|['all', 'The', 'Baker']| -had pulled,['up'] -danger What,['danger'] -deep conversation,['with'] -unforeseen occurred,['to'] -dress with,['a'] -five years,|['ago', 'and', 'at', 'said']| -and usually,['in'] -darted what,['seemed'] -determined attempts,['at'] -refreshingly unusual,['But'] -been committed,|['As', 'and', 'said']| -off both,['my'] -here" I picked,['up'] -broadest part,['as'] -reward but,['you'] -none." laughed.,['It'] -the preposterous,['hat'] -not there,|['Oh', 'This', 'when']| -little rat-faced,['fellow'] -here again,|['I', 'before']| -help her,['whole'] -little knot,['of'] -which our,|['visitor', 'fads']| -City It's,['not'] -Frank wouldn't,['throw'] -station but,['it'] -same innocent,['category'] -a clean,['one'] -lucid come,['to'] -as was,|['his', 'drawn', 'shown']| -fellow wanted,['to'] -here before,|['they', 'it']| -he parted,['from'] -flap has,['been'] -a bent,['back'] -Two hansoms,['were'] -not waiting,['for'] -reasons why,['the'] -set out,['ready'] -a clear,|['field', 'account']| -dowry fair,['dowry'] -his smokes,['of'] -The facts,['are'] -or twice,['as'] -spoke am,['afraid'] -expected to,|['see', 'meet', 'take', 'make']| -crying As,['she'] -madam I,['do'] -said Baker,['who'] -opium The,['habit'] -every detail,['of'] -this mean,|['I', 'John?']| -disturbed did,['you'] -his back,|['before', 'turned', 'or', 'so']| -it must,|['be', 'have']| -and conduct,['of'] -anxious about,['the'] -Suddenly a,['door'] -least interested,['but'] -my maid,['who'] - DISSOLVED,[''] -a civilised,['land'] -looked her,['over'] -of Savannah,|['that', 'but']| -wrung my,['hand'] -allowed a,['regurgitation'] -to inquire,['more'] -tell her,|['she', 'sweetheart']| -House festivities,['is'] -of Oxfordshire,['and'] -to aid,['us'] -establishment were,['sufficient'] -I lock,['this'] -skill has,['indeed'] -place considerable,['confidence'] -cried pull,['yourself'] -covered all,['tracks'] -running his,['eye'] -were protruding,['his'] -|certainly." you,|,['Miss'] -last the,['little'] -called in,['the'] -staggered back,['white'] -unofficial adviser,['and'] -great delicacy,['and'] -say There,['but'] -trove indeed,['I'] -is so,|['uncourteous', 'long', 'important', 'ill', 'I', 'remarkable', 'keen', 'cunning', 'small', 'dreadful', 'very', 'lonely', 'dreadfully']| -easy-going way,['Holmes'] -Holland Beyond,['these'] -not and,|['am', 'there']| -a plumber,|['in', 'was']| -knees staring,['into'] -and none,['the'] -self-control she,['ran'] -whole face,['sharpened'] -Robert you,['have'] -had escaped,|['my', 'came']| -I screamed,['you'] -For some,['years'] -mouth before,['a'] -two guardsmen,['who'] -lights still,['glimmered'] -and forming,['the'] -about half,|['an', 'a']| -fellow is,|['it', 'madly']| -rattle off,['down'] -a quavering,['voice'] -shelf beside,['you'] -sally out,['into'] -six feet,['six'] -the second,|['Holmes', 'day', 'from', 'floor', 'morning', 'bar', 'half', 'my', 'that', 'one', 'largest', 'waiting-maid', 'glance']| -led into,|['a', 'the', 'an']| -be necessary,['in'] -caved in,['a'] -question Frankly,['now'] -know without,['reading'] -their position,|['and', 'a']| -his reply,['was'] -month Yet,['I'] -learned something,['Where'] -be altogether,['invaluable'] -is then,['that'] -and throwing,|['himself', 'open', 'the']| -umbrella said,['Holmes'] -rounds of,['bread'] -find him?,['at'] -walking-clothes as,['I'] -little theory,['of'] -talk about,|['George', 'that', 'the']| -throughout three,['continents'] -masked the,['face'] -Square that,['only'] -his lameness,['impression'] -grieved But,['here'] -and interest,['which'] -skill in,['unravelling'] -head had,['been'] -by main,['force'] -to doing,['such'] -had foresight,['but'] -a faint,['right'] -sentence As,['it'] -bicycling He,['was'] -east The,['sun'] -fads and,['expected'] -this direction,['during'] -sorry if,['I'] -other respects,|['he', 'you']| -illuminated than,['the'] -you. Pray,['proceed'] -happy at,['home'] -flowers She,['states'] -of quietly,['digesting'] -shown that,|['you', 'there']| -would there,['was'] -these varied,['cases'] -addition has,['been'] -of getting,|['those', 'these']| -the village,|['and', 'all', 'said', 'inn', 'The']| -my relief,['that'] -be his,|['natural', 'one']| -a confidant,['They'] -proofs which,['I'] -any doubt,['as'] -small that,|['a', 'it']| -important said,['he'] -himself indicated that,['of'] -foot over,|['the', 'that']| -kindly escorted,['me'] -sweetheart of,['whom'] -her about,['poison'] -do find,['it'] -clerks about,['having'] -night to,['prevent'] -rumour is,['correct'] -|no, we|,['should'] -twice for,['walks'] -was considerably,['after'] -Cusack and you,['managed'] -six Come,['in'] -of Birchmoor,['it'] -until he,|['was', 'got', 'had', 'does', 'heard', 'came', 'should', 'choked']| -was accustomed,|['to', 'His']| -came straight,['to'] -house I,|['shall', 'hesitated', 'should', 'kept', 'am', 'saw', 'may']| -can very,['well'] -colonel By,['the'] -began as,['a'] -this point,['and'] -other garments,['had'] -fancies of,['a'] -is introspective,['and'] -brought this,['with'] -nature If,['you'] -The envelope,['was'] -am still,|['in', 'a']| -the skylight,['We'] -note paid,["Whitney's"] -remarked our,['prisoner'] -house a,['little'] -the well-known,|['adventuress', 'Surrey', 'firm']| -soon evident,['to'] -shabby-genteel place,['where'] -peculiar dying,['reference'] -caution The,['blow'] -them would,|['cripple', 'pay']| -after Christmas,['with'] -houses believe,['that'] -the carbuncle,['save'] -witness Inspector,['Bradstreet'] -who drove,['him'] -than once,|['a', 'taken', 'before', 'in', 'when', 'to', 'observed', 'I']| -parts of,['the'] -yes I,|['am', 'recall', 'should']| -one rogue,['has'] -latter knocked,['off'] -were alone,['I'] -When he,|['was', 'reached', 'told', 'breathed', 'came']| -rigid stare,['at'] -remarked looking,['up'] -details that,['it'] -of greeting,['with'] -through them,['The'] -to general,['impressions'] -knows nothing,['whatever'] -said Theories,['are'] -wedding-morning but,['what'] -worked Having,['taken'] -in death,['I'] -years 82,['and'] -in sheer,['lassitude'] -present is,['our'] -found this,|['single', 'in']| -touched on,['three'] -present it,['is'] -indiscretion was,['mad insane'] -a note,|['of', 'Doctor', 'before', 'to', 'by', 'And', 'As', 'as', 'for', 'is']| -deserved punishment,['more'] -receiving this,['the'] -left them,['was'] -up every,['meal'] -my method,['It'] -know that,|['you', 'there', 'she', 'I', 'her', 'your', 'it', 'James', 'he', 'Turner', 'my', 'the', 'all', 'Miss', 'clerks', 'everything', 'within', 'She']| -present in,['the'] -say upon,['me'] -cares for,['me'] -less amiable,['They'] -by men,['and'] -sunk forward,['and'] -rights and,['finally'] -he looks,|['a', 'as']| -is probable,|['that', 'And']| -an evening,|['Mr', 'paper']| -aperture the,['darkness'] -great many,['scattered'] -statement could,['not'] -a petty,|['way', 'feeling']| -remarkable one,['and'] -composed of,['all'] -a boiling,['passion'] -without delay,['had'] -she used,['shook'] -The smell,['of'] -gentleman's chambers,['in'] -to stay,|['in', 'said']| -it that,|['started', 'I', 'it', 'there', 'the', 'no', 'he']| -yet every,['link'] -side-lights when,['I'] -knee Five,['little'] -up With,['your'] -our depositors,['One'] -the vile,['stupefying'] -really mere,['commonplaces'] -the stripped,['body'] -it than,['might'] -floor Suddenly,['my'] -accounts are,['in'] -carefully It,['ran'] -followed you,['to'] -stone with,['a'] -Simon sank,['into'] -Australia and,['returned'] -Holmes welcomed,['her'] -might not,|['take', 'bite', 'be', 'fall']| -have got,|['it', 'his', 'if', 'to', 'diamond,', 'them']| -willingly the,['charming'] -give advice,['to'] -father entered,['into'] -little reed-girt,['sheet'] -smoothed one,['out'] -quick step,['forward'] -rambling and,['inconsequential'] -levers and,['the'] -be ignorant,['of'] -Arthur should,['be'] -fortune I,|['thought', 'think']| -its name,['to'] -out He,|['was', 'chuckled']| -weary and,|['stiff', 'haggard', 'pale-looking']| -elapsed since,['then'] -but within,['a'] -thing remarked,['Holmes'] -strong language,['to'] -which veiled,['his'] -Stoper I,['had'] -death and,|['a', 'also', 'narrowly', 'yet', 'I']| -others which,['represent'] -afternoon at,['three'] -waiting said,['I'] -companion Pon,['my'] -morning the,['blow'] -temporary office,['the'] -hands my,['dear'] -chase would,['suddenly'] -grizzled hair,|['and', 'which']| -excuses escaped,['from'] -roughs had,['also'] -retain the,|['records', 'hat']| -Pondicherry seven,['weeks'] -women in,|['the', 'whom']| -it would,|['be', 'spare', 'certainly', 'hardly', 'suit', 'give', 'make', 'have', 'go', 'leave', 'all', 'not', 'take', 'occur', 'swim', 'crawl', 'soon']| -the arrest,['of'] -people were,['absolutely'] -methods that,['there'] -the claspings,['and'] -I ruefully,['pointing'] -minutes He,['curled'] -go away.,['it'] -seat cross-legged,['with'] -ready I,['know'] -hours if,['he'] -I suppose.,|['no,']| -and thirty,['pounds'] -quest of,['She'] -could to,|['cheer', 'relieve']| -too It's,['about'] -weeks later,['upon'] -of tracks,['of'] -this very,|['paper', 'man', 'singular', 'woman']| -expensive joke,['for'] -the offence,['but'] -|then, did|,['Peterson'] -can we,['have'] -was gone,|['you', 'I', 'he', 'through']| -circle of,|['yellow', 'friends']| -velvet collar,['lay'] -His rooms,['were'] -Then perhaps,['I'] -window a,['long'] -had one,|['or', 'son']| -me asked,['Holmes'] -perhaps fluttered,['out'] -shown by,['the'] -There will,|['probably', 'soon']| -so? I,['forbid'] -it better,|['if', 'not']| -tail quivered,['with'] -still But,['we'] -medical degree,['and'] -literature and,['crime'] -you wore,['the'] -should judge,['would'] -window I,|['caught', 'saw']| -and seldom,['came'] -impunity with,['which'] -you work,['it'] -window A,['nice'] -piquant details,['have'] -a jump,['in'] -exceedingly interesting,['case'] -have I,|['the', 'to', 'foresee', 'seen', 'gained', 'worn', 'You']| -fancies must,['be'] -It's worth,['quite'] -and seen,['him'] -dread of,['losing'] -a bill,['for'] -this thought,['in'] -safety. He,['drew'] -is he,|['like', 'it', 'cried', 'now', 'silent', 'I']| -have a,|['most', 'clear', 'cab', 'small', 'job', 'holiday', 'private', 'business', 'look', 'hundred', 'quick', 'family', 'fairly', 'vague', 'caseful', 'better', 'word', 'fuss', 'clue', 'little', 'seven-mile', 'grand', 'very', 'quiet', 'regular', 'series', 'friend', 'line', 'fiver', 'sovereign', 'right', 'housekeeper', 'professional', 'confused', 'whisky', 'large', 'farthing', 'maid']| -something suddenly,['snapped'] -obvious precaution.,['With'] -Willows says,['that'] -noose round,['the'] -some crony,['of'] -his daughter,['had'] -other thirty-six,['into'] -Watson how,['dangerous'] -talk with,['you'] -worn before,['It'] -is older,['than'] -Road A,['few'] -through all,['the'] -his skirts,['The'] -rose hurriedly,['muttered'] -held the,|['little', "horse's"]| -So long,|['then', 'was']| -still balancing,['the'] -overlook If,['not'] -goose to,['me'] -the Openshaw,['unbreakable'] -between this,|['stranger', 'and']| -examine it,['I'] -this bears,['upon'] -asking him,|['whether', 'if']| -Roylott had,['gone'] -Still that,['little'] -A maid,['rushed'] -excellent character,['however'] -We laid,['him'] -|Yard right,"|,['said'] -work day,['which'] -cravat and,['his'] -unconscious man,['out'] -out-of-the-way place,['And'] -lined the,|['floor', 'lake']| -fog said,['Holmes'] -The instant,['that'] -paid for,['and'] -grey with,['restless'] -About this,['girl'] -violent we,['shall'] -very hard,|['man', 'to', 'at']| -our prisoner,['as'] -leakage which,['allowed'] -begun to,|['hope', 'take', 'whiten', 'rise']| -shrieked you're,['looking'] -he rushed,['into'] -had two,|['sons my', 'important', 'police']| -Holmes ran,['her'] -cold and,['forbidding'] -dark figure,['in'] -incognito from,['Prague'] -I strolled,|['round', 'up']| -having upon,['the'] -lid Its,['splendour'] -station in,['the'] -Turning round,['we'] -missing man,|['They', 'I']| -tapped his,['forehead'] -together at,['the'] -pool for,['he'] -together as,['was'] -major of,['marines'] -the landlady's,['Holmes'] -strong part,['in'] -word shall,['I'] -locked it,|['up', 'in', 'again']| -sorry to,|['hear', 'give', 'knock', 'have', 'see']| -drive to,|['Baker', 'Waterloo']| -whose warning,['I'] -locked in,['the'] -miss? he,['asked'] -table had,|['brought', 'not']| -thin hands,['must'] -why?" she,['has'] -the community,['in'] -us in,|['the', 'pitch', 'a', 'our', 'is', 'forming', 'this', 'his']| -It's not,|['a', 'been']| -deaths in,['such'] -guide us,['on'] -us if,['anyone'] -exert ourselves,['to'] -looking very,['earnestly'] -breakfast when,['I'] -a mistake,|['in', 'and']| -spent the,|['last', 'whole', 'time']| -us is,|['Mr', 'one', 'the', 'our', 'more']| -falling back,['into'] -gun under,['his'] -papers on,['the'] -alone rose,['to'] -of man,['could'] -his privacy,['There'] -papers of,|['the', 'yesterday']| -realise as,['we'] -Russian could,['not'] -breath of,['the'] -for talk,['We'] -yours also,['stout'] -papers or,['certificates'] -though what,|['its', 'it']| -actually brushed,['the'] -shall be,|['all', 'delighted', 'happy', 'in', 'at', 'true', 'there', 'with', 'busy', 'forced', 'safe', 'my', 'indeed', 'married', 'able', 'very', 'a', 'most', 'forgiven']| -|name, you|,['see'] -methods What,['can'] -it told,['me'] -answered Holmes,|['thoughtfully', 'calmly']| -examination served,['to'] -smoke like,['so'] -up to,|['the', 'Briony', 'his', 'a', 'town', 'it', 'me', 'make', 'her', 'see', 'my', 'look', 'you']| -me No,|['sir', 'he']| -now Watson,|['we', 'this']| -to illustrate,['Some'] -when the,|['betrothal', 'row', 'King', 'police', 'four-wheeler', 'cabman', 'other', 'maid', 'son', 'cloth', 'lawyer', 'snake', 'fit', 'stripped', 'wife', 'door', 'alarm', 'facts', 'church', 'security', 'Rucastles']| -or amusing,['yourself'] -when someone,['passing'] -by seven,["o'clock"] -rather against,['the'] -has deserted,['me'] -caught you,['have'] -Some of,|['them', 'the']| -Dane who,['acts'] -yet from,['his'] -and bounds,['what'] -old rusty,['key'] -hour to,['glancing'] -to advise,|['you', 'her']| -agitation which,['it'] -ill gentlemen ostlers,['and'] -ill as,['I'] -rummaged in,['his'] -shall commence,['with'] -to pay,|['him', 'short', 'over', 'for']| -we are,|['Egria', 'not', 'in', 'and', 'careful', 'on', 'able', 'Jack', 'Whoa', 'very', 'I', 'said', 'to', 'going', 'interesting', 'paying', 'absolutely', 'wandering', 'never', 'dealing']| -VI. THE,['MAN'] -these rooms,|['without', 'than']| -duties all,['pointed'] -and grey,|['Harris', 'with', 'roofs']| -just ordered,['him'] -to return,|['the', 'and', 'to', 'once']| -sitting-room A,['lady'] -five little,['dried'] -smiles were,['turned'] -his black-letter,['editions'] -looking through,['all'] -caress have,['given'] -her the,|['brute', 'yellow', 'name']| -window undo,['the'] -smiled back,['at'] -clue There,['can'] -view a,['little'] -200 pounds?,['I'] -or what,['I'] -meeting in,['the'] -value? he,['asked'] -they had,|['to', 'completed', 'come', 'feared', 'gone', 'covered', 'found', 'been', 'each', 'locked']| -you want,|['he', 'then?', 'to', 'this']| -black mark,['of'] -door led,['into'] -tattered coat,['He'] -At last,|['when', 'however', 'the']| -waylaid and,['searched'] -about three,|['in', 'miles']| -starting for,['Eyford'] -head cocked,['and'] -and sound,['I'] -train steamed,['off'] -was lame,['his'] -tea when,['he'] -their more,['piquant'] -life we,['shall'] -business Sherlock,['Holmes'] -ourselves if,['it'] -the loaf,['he'] -finest that,['I'] -tide-waiter my,['correspondence'] -What of,['it'] -same instant,|['I', 'Mrs']| -provinces of,['my'] -Waterloo Sir,['I'] -83 that,['I'] -shudder to,['look'] -chance I,['think'] -you her,['photograph'] -after day,|['Mr', 'in']| -suddenly upon,|['us', 'the']| -Drive like,['the'] -ruefully It,['was'] -meantime and,['he'] -and splashing,['against'] -its inception,['and'] -went wrong,['before'] -striving to,['keep'] -Sometimes I,['think'] -little office,|['and', 'as']| -will play,['for'] -quite my,['own'] -original disturbance,['in'] -hour when,|['we', 'a']| -us with,|['a', 'their', 'the', 'half-frightened']| -and quivering,['fingers'] -Holmes rising,['and'] -vault or,['cellar'] -him loitering,['here'] -is solved,['was'] -Hatherley Farm,|['On', 'I', 'and', 'rent', 'upon']| -bed fastened,['like'] -satisfy him,['for'] -his aristocratic,['features'] -bad Your,['Majesty'] -very room,['which'] -rabbi and,['that'] -vault of,['a'] -last year,|['and', 'Old']| -and brought,['us'] -my lucky,['appearance'] -employers in,['this'] -platform Set,['the'] -shows that,['blotting-paper'] -shattered Mr,['McCarthy'] -harm can,['there'] -black morocco,['case'] -pocket have,['at'] -yourself upon,['details'] -else think,['that'] -compromising his,['own'] -you guess,['what'] -man burst,['into'] -whence he,|['emerged', 'could']| -short sight,|['it', 'and', 'he']| -of affairs,|['said', 'without']| -Would she,['not'] -and stretched,['himself'] -very limited,['one'] -this ventilator,|['and', 'at']| -point You,["don't"] -by having,['had'] -his fortune,['and'] -am at,|['a', 'my']| -mornings Besides,['I'] -indeed! You,['seem'] -two important,['commissions'] -living on,['the'] -a fowl,['fancier'] -Folk who,['were'] -danger would,['be'] -are fresh,['from'] -sir And,|['what', 'this']| -quick all-comprehensive,['glances'] -vital importance,['to'] -very fine,['indeed'] -very few,|['words', 'seconds', 'details']| -or sit,['there'] -good sense,|['to', 'will', 'would']| -we drove,|['to', 'through', 'for']| -struck Sir,['George'] -self-evident a,['thing'] -gems in,['it'] -Master Holmes,['indeed'] -very much,|['however', 'with', 'to', 'afraid', 'older', 'against', 'superior', 'for', 'mistaken', 'depend', 'like', 'in', 'you?', 'indebted', 'obliged', 'larger', 'astonished', 'upon', 'fear', 'prefer', 'the', 'deeper', 'easier', 'surprised']| -could I,|['find', 'help']| -him down,|['completely', 'with', 'there', 'into']| -voice of,['Holmes'] -was half-dragged,['up'] -his trousers,|['what', 'and']| -expression upon,['his'] -hurling the,['twisted'] -all details,['remarked'] -across between,['the'] -I met,|['him', 'Mr', 'seemed', 'it', 'her', 'in']| -not mentioned,['and'] -the police!,['I'] -week's work,['It'] -say Mr,['Holmes'] -should earn,['the'] -shriek They,['say'] -much information,['as'] -He could,|['only', 'not']| -interesting study,|['that', 'Mr']| -grip upon,['me'] -regards the,['mud-stains'] -been destroyed,|['On', 'by']| -rooms and,['I'] -the bruise,['the'] -process We,['compress'] -more simple,['Jabez'] -was doing,|['something', 'there', 'in', 'me', 'or']| -raise my,['hand so you'] -bands of,['astrakhan'] -heard her,|['voice', 'key', 'quick']| -the sill,|['gave', 'but', 'when', 'with', 'and']| -time ago,|['and', 'I']| -I hazarded,['some'] -her until,|['after', 'she']| -sudden fright,['I'] -woman wants,['her'] -handkerchiefs which,['so'] -pledge sooner,['or'] -months She,['came'] -father's feet,['as'] -but thirty,|['now', 'at']| -She lives,['quietly'] -tiara I,['think'] -truth the,['reason'] -multiply it,['in'] -rose up,|['against', 'in']| -unlocking and,['throwing'] -twisted in,['the'] -her landau,['when'] -found it,|['hard', 'Its', 'all']| -I don't,|['know', 'think', 'wish', 'wonder']| -me you?",['Her'] -cut himself,['in'] -harm and,['that'] -engaged I,['am'] -latter may,['have'] -door As,['we'] -found in,|['his', 'the', 'its', 'one']| -wild wayward,['and'] -serenely in,['this'] -meditative mood "you,['have'] -circumstances were,['very'] -shepherd's check,['trousers'] -is They,['are'] -in water,['There'] -winds ate,['a'] -I clambered,['out'] -give some,['account'] -bird Jem?,['says'] -the Hereford,['Arms'] -drive away,['the'] -our party,['is'] -hear him,['retire'] -adapted for,['summer'] -and Frank,['was'] -takings I,['hurled'] -prefer having,['a'] -the rashness,['of'] -Stoner observed,['Holmes'] -alleging that,['she'] -simple fare,['that'] -hear his,['step'] -and motion,['to'] -how the,|['best', 'bank', 'slow', 'lady', 'electric-blue', 'skylight']| -face she,['read'] -a dear,|['kind', 'friend', 'little']| -Street into,['Oxford'] -vice upon,['my'] -still time,['to'] -off very,['possibly'] -back my,['opinion'] -the cheetah,['was'] -goes it,['needs'] -Lord of,['mercy'] -Watson particularly.",['I'] -reasoning every,["man's"] -should still,['talk'] -grass with,['writhing'] -power I,['have'] -a dead,['faint'] -not before,|['day', 'the']| -a deal,['table'] -chest and,|['his', 'limbs']| -manual labour,|['that', "It's"]| -machine. had,['better'] -us much,['I'] -put ideas,['in'] -them and,|['you', 'what', 'came', 'acknowledges', 'who', 'so', 'then', 'I', 'the', 'carried']| -gentle sound,['of'] -solemnly and,['hurried'] -The word,['was'] -leave you,|['forfeit', 'for', 'to', 'forever']| -better said,['John'] -morning He,['opened'] -a bright,|['sun', 'morning', 'crisp', 'quick']| -this strange,|['out-of-the-way', 'affair']| -was clamped,['to'] -which characterises,['you'] -his approaching,['marriage'] -hoofs and,['grating'] -in front,|['of', 'right', 'It', 'or', 'Then', 'with', 'three', 'to', 'belongs']| -fare but,['I'] -why he,|['would', 'should']| -florid-faced elderly,['gentleman'] -A little,|['over-precipitance', 'French']| -Holmes especially,['Thursday'] -deepest moment,['Your'] -had at,|['least', 'first']| -window at,['the'] -kicks and,['shoves'] -drive in,['a'] -had as,|['far', 'it', 'much', 'she', 'you']| -in Pentonville,['One'] -your assistant,['is'] -the r.,['There'] -bed He,['was'] -the detective,|['Mr', 'indifferent']| -had an,|['experience', 'only', 'appointment', 'unsolved', 'idea', 'Eastern', 'inquiry', 'interview', 'unreasoning', 'immense', 'admirable']| -unpleasant impression,['upon'] -flaw Do,['you'] -advise me,|['how', 'to']| -have him,|['here', 'loitering']| -stock of,['matches'] -appear enough!",['said'] -he's not,|['such', 'short']| -being found,['which'] -swear to,['it'] -were the,|['tinted', 'following', 'main', 'equinoctial', 'normal', 'only', 'principal', 'finest', 'maids', 'same']| -wagon-driver who,['was'] -since Was,['dressed'] -have hit,|['upon', 'it']| -are displayed,['in'] -usual routine,['of'] -ceiling Round,['his'] -have his,|['cursed', 'machine']| -scared and,['puzzled'] -spark where,['all'] -folded his,['hat'] -given to,|['mine', 'one', 'fainting', 'my']| -night it was,['in'] -of martyrdom,['to'] -for him,|['They', 'when', 'at', 'to', 'in', 'who', 'face', 'I', 'and', 'do']| -low clear,['whistle'] -chambers in,|['the', 'Victoria']| -note He,['slapped'] -up walked,['swiftly'] -About two,['in'] -a situation,|['and', 'which', 'I', 'miss?', 'telegram']| -the meaning,['of'] -mine Tottering,['and'] -earth are,['you'] -which receive,['the'] -him we,|['drove', 'are']| -A blow,['was'] -Stark sprang,['out'] -of friends,['was'] -forgotten his,['filial'] -slave to,['the'] -Your own,|['opinion', 'deathbeds']| -sideboard which,['is'] -dishonoured me,['forever'] -them away,['somewhere'] -side showed,['that'] -will lead,['us'] -swarm of,|['pedestrians', 'humanity']| -danger yet,['Suddenly'] -putting in,['the'] -even contributed,['to'] -third from,['London'] -accumulation of,['dust'] -Miss Hunter's,['intentions'] -of advancing,['money.'] -Would the,['body'] -water from,['a'] -putting it,['on'] -panelling of,['the'] -spring and,|['this', 'we']| -In that,|['way', 'however', 'case']| -so acute,['that'] -our eyes,|['to', 'On']| -who would,|['apply.', 'venture', 'ask']| -see him,|['him."', 'again', 'in', 'to-night', 'now', 'but', 'very', 'I', 'and', 'killing']| -moment as,|['far', 'startled']| -a woman.,['There'] -had placed,['it'] -explaining that,['we'] -had anything,['to'] -day very,['wet'] -own bureau.,['I'] -the lips,['as'] -Consider what,['is'] -a private,|['word', 'matter']| -no chance,|['at', 'of']| -offence but,['referred'] -mark him,['out'] -a pinch,['of'] -peeling off,['the'] -suspicion there,['and'] -laugh at,|['me', 'this']| -pass his,['door'] -We never,['thought'] -I hurled,['it'] -my relations,['were'] -can catch,['the'] -morning there,['he'] -left You,['have'] -darkened His,['brows'] -sell it,['and'] -all perfectly,|['familiar', 'true']| -shall work,['mine'] -deposed to,['having'] -effect is,['much'] -companion's processes,['Such'] -little secret,['of'] -read about,['Lord'] -I offered,['to'] -|witness see,"|,['said'] -she attempted,['to'] -dear me,|['it', 'what']| -for so,['inadequate'] -there ready,['to'] -week ago,['and'] -Roylotts of,['Stoke'] -manner he,|['bowed', 'departed']| -argument with,['gentlemen'] -you trying,['to'] -a pawnbroker's,['business'] -was pushed,['backward'] -leave all,['minor'] -tonnage which,['were'] -increased and,['as'] -were when,['you'] -the meantime,|['Mr', 'and', 'is']| -matters right,['I'] -test a,['little'] -extreme exactness,['and'] -do a,|['little', 'faint']| -fit for,['us'] -a pained,['expression'] -favoured me,['with'] -fit that,['bureau'] -as pitiable,['as'] -come back,|['yet', 'from', 'twitching', 'in', 'to', 'So', 'and']| -correct I,['answered'] -Close at,['his'] -badly wanted,['here'] -hat-securer They,['are'] -threatened by,['a'] -and outward,['while'] -the breakfast-room,['your'] -do I,|['know', 'remarked', 'was', 'had', 'It', 'have', 'may']| -let to,['Mr'] -never weary,['of'] -could find,|['Did', 'them']| -way Folk,['who'] -be probable,['in'] -many But,["I'll"] -The ring,['after'] -Poor father,['has'] -end sir.,['And'] -it then a,['fire'] -she emerged,['from'] -extend to,['the'] -you first,|['how', 'meet', 'that']| -cards in,['my'] -as hopeless,['by'] -Just read,['it'] -was twenty-five,['minutes'] -should reserve,['it'] -shut just,['now'] -guide myself,['by'] -admirably balanced,['mind'] -Since you,['ask'] -resentment for,['I'] -factor in,|['the', 'my']| -in What,['else'] -accountant living,['on'] -between that,|['of', 'and']| -at half-past,|['ten', 'nine']| -had started,|['from', 'to']| -inflicted by,['the'] -wharf and,['the'] -quick in,|['his', 'forming']| -deportment of,['a'] -mingled in,['the'] -in marriage,['His'] -consumed with,['the'] -more crude,['your'] -to develop,['his'] -I'll go,['home'] -afterwards I,|['shall', "hadn't"]| -please. right,['said'] -duties as,['far'] -who can,|['brazen', 'twist', 'do']| -once observed,['to'] -what would,['come'] -and before,|['I', 'he']| -in catching,['a'] -consciousness He,['had'] -reeds Oh,['how'] -to Venner,['&'] -hot upon,|['the', 'such', 'a']| -with it,|['and', 'The', 'see', 'which', 'It', 'Did', 'the', 'I']| -a problem,['which'] -the flood,['of'] -westward at,['fifty'] -the side,|['aisle', 'of', 'cylinders', 'window', 'gate', 'from']| -very station,['at'] -Holmes Hum,['Born'] -ruse enough,['observed'] -dreary experience,['To'] -the floor,|['and', 'Why', 'Suddenly', 'Then', 'of', 'Did', 'instantly', 'consisted', 'where', 'on', 'a', 'A']| -bed The,|['lash', 'discovery', 'idea']| -after father's,['death'] -crucial points,['upon'] -out through,|['the', 'this']| -want he,['asked'] -intellectual answer,['Holmes'] -at Lancaster,['Gate'] -placed upon,|['the', 'record']| -chair showed,['me'] -raise up,|['his', 'hopes']| -inquired as,['to'] -none of,|['the', 'them']| -own son,['do'] -address can,['you'] -and bad,['weather'] -views was,['certainly'] -wish us,['to'] -feet Twice,['he'] -therefore to,|['discover', 'think', 'fulfil', 'call']| -which also,['a'] -wife's death,['was'] -very wet,|['lately', 'it']| -I returned,|['and', 'to', 'home', 'the']| -morning have,['a'] -been shamefully,['used'] -usual About,['two'] -is perhaps,|['better', 'less', 'as', 'the']| -father Of,['my'] -by one,|['wall', 'of', 'the', 'when']| -England followed,['me'] -laughing But,['I'] -informed by,['the'] -Miss Hatty,['Doran'] -more worthy,['of'] -loved But,['the'] -ever so,['close'] -you well,['I'] -At any,['rate'] -to come,|['with', 'from', 'for', 'right', 'to-night', 'again', 'Hence', 'at', 'Watson', 'uppermost', 'to', 'I', 'Now', 'and', 'back', 'out', 'over', 'into']| -been shattered,['by'] -sunburnt man,['clean-shaven'] -fall Yet,['when'] -looking keenly,|['at', 'down']| -sill with,['his'] -which lies,|['before', 'at', 'upon']| -else?" asked,['Holmes'] -the cab,|['he', 'humming', 'and', 'my']| -the scattered,['knots'] -some few,|['minutes', 'pence']| -dust into,['an'] -out was,|['that', 'surprised']| -an Australian,['from'] -prison bath,['and'] -his door,['so'] -father Still,['it'] -persuaded him,['to'] -even fonder,['of'] -again there,['he'] -gilt balls,['and'] -vanished I,['will'] -over their,['heads'] -his overpowering,['terror'] -victim of,['an'] -wrong scent,|['The', 'I']| -what should,['have'] -proud to,['see'] -recognising Lestrade,['of'] -before seeing,['him'] -Wilson I,|['have', 'shall']| -she have,['you'] -short visits,['at'] -hours have,['nothing'] -seven I,['blinked'] -heart You,['may'] -And I,['say'] -several similar,['cases'] -more however,['with'] -That fellow,['will'] -blurs through,['the'] -the pavement,|['at', 'with', 'dear', 'opposite', 'always', 'beside', 'had']| -right glove,['was'] -never permit,['either'] -the sheet,|['he', 'of']| -will perhaps,['be'] -face seared,['with'] -for matches,['and'] -Holmes coldly,['I'] -shake nerves,['of'] -cry he,['dropped'] -Very truly,['yours'] -were always,|['so', 'very']| -heart when,['she'] -at Mrs,['Rucastle'] -second is,|['that', 'to']| -walked up,['to'] -sleeper and,|['it', 'the']| -action in,['typewriting'] -the borders,|['into', 'of']| -enjoyed the,['use'] -a sombre,['yet'] -feel that,|['no', 'time', 'I']| -should gain,['an'] -associated with,|['the', 'my']| -great astonishment,['a'] -lady's expressive,['black'] -People tell,['me'] -not exactly,['my'] -manage it,['better'] -colonel first,['with'] -it indicate,['I'] -can wait,['in'] -Victoria In,['Victoria'] -then If,['she'] -my hat,|['was', 'and', 'on']| -police Whatever,['he'] -|hands Clay,|,['the'] -hotel gave,['his'] -my hands,|['on', 'I', 'before', 'and']| -being bitten,['Violence'] -machine. He,['took'] -window and,|['you', 'shouted', 'she', 'saw', 'it', 'seeing', 'by', 'chimney', 'looked', 'how', 'again']| -belief the,['father'] -eyes Yes,['I'] -yet what,['could'] -seen an,['American'] -photograph brought,['this'] -opportunity of,['looking'] -left thumb,['care'] -isolated facts,['together'] -was sick,['with'] -Hunter. She,['struck'] -never before,['experienced'] -borrowed for,['that'] -with delight,['belonged'] -an abominable,['crime'] -knowledge Palmer,['and'] -be some,|['small', 'great', 'little', '30,000', 'reason', 'weapon', 'crony', 'grounds', 'time', 'strong']| -hid behind,['the'] -brief and,['urgent'] -seen at,['the'] -stocked with,['all'] -simple Jabez,['Wilson'] -coarse brown,['tint'] -inferences said,['Lestrade'] -bow sidled,['down'] -she vanish,['then'] -own keen,['nature'] -H Moulton,['an'] -hung down,|['beside', 'to']| -drove me,|['mad', 'in']| -learn to,['have'] -the identity,['of'] -she flattered,['herself'] -God's sake,|['have', 'what']| -tall was,['he'] -He does,['not'] -murdering and,['driving'] -he achieved,['such'] -She wrote,['me'] -running up,['to'] -my night's,['adventure'] -course a,['trifle'] -influence of,['his'] -by rare,['good-fortune'] -often for,['weeks'] -direction during,['the'] -Holmes Pray,['give'] -Women are,['naturally'] -her body,|['oscillated', 'slightly']| -material assistance,['to'] -events occurred,['which'] -observed Bradstreet,['thoughtfully'] -He brought,['up'] -sure wish,['to'] -the bed,|['the', 'and', 'a', 'The', 'dies', 'beside', 'struck', 'was', 'It', 'in']| -earliest risers,['were'] -late years,['it'] -course I,|['forgot', 'never', 'did', 'saw', 'must', 'was', 'might']| -can deduce,|['nothing', 'his', 'all']| -fierce eddy,['between'] -remarkable point,['however'] -the bet,['is'] -found floating,['near'] -me Still,['that'] -rested upon,|['the', 'a', 'Neville']| -round from,['one'] -shortcomings the,['same'] -newly gained,['property'] -obvious do,['all'] -the water-police,['the'] -short by,['a'] -chimney Sherlock,['Holmes'] -have used,|['it', 'the']| -doing in,|['this', 'the']| -valuable time,['as'] -was right,|['with', 'and']| -his only,|['son', 'child']| -made her,['sell'] -merit All,['the'] -whose knowledge,['was'] -for no,['other'] -shook my,['head'] -been not,['entirely'] -speak On,['the'] -streets which,|['lead', 'widened', 'lie', 'runs']| -languor to,['devouring'] -enthusiastic musician,['being'] -years at,|['the', 'a']| -on promising,['him'] -a Scotch,['bonnet'] -plantation. likely,['And'] -lock yourself,['up'] -suddenly heard,|['an', 'in', 'the']| -two men,|['one', 'were', 'accompanied', 'had']| -merely strange,['but'] -puckered lids,['Then'] -stood beside,['the'] -a curious,|['way', 'thing', 'coincidence', 'chance']| -alive Hatherley,['Farm-house'] -was his,|['custom', 'habit', 'object', 'singular', 'cunning', 'aversion', 'mistress', 'ghost', 'wont']| -fellow answered,['my'] -swiftly eagerly,['with'] -the witness,|['see,"']| -happened I,|['would', 'was']| -him to-day,['Holmes'] -another effort,['he'] -find any,['satisfactory'] -turned down,|['one', 'the']| -louder and,|['the', 'louder']| -in passing,['that'] -shopping proceeded,['to'] -or cellar,['which'] -Ferguson appeared,['to'] -tell our,['story'] -the final,['step'] -of paramount,['importance'] -to eat,['it'] -girl's stepfather,['Mr'] -lemon orange,['brick'] -absence every,['morning'] -and bowing,|['Pray', 'in']| -the sensation,['grew'] -hardly yet,['be'] -was interested,['in'] -quietly was,['that'] -the photograph,|['dear!', 'ruin', 'And', 'a', 'to', 'indeed', 'know', 'at', 'It', 'your', 'prisoner']| -his greatcoat,['As'] -lamp away,['from'] -old park,['wall'] -ultimate destiny,['of'] -not sell,['then."'] -Monday then,['we'] -Your conversation,['is'] -father Joseph,['My'] -duty was,['now'] -thank him,['entered'] -insult me,['I'] -plate It,['was'] -right bell-pull,['She'] -Count Von,['Kramm'] -inferred that,['his'] -through a,|['side', 'zigzag', 'disagreeable']| -idea For,['that'] -laughing I,|['am', 'think']| -them some,['paternal'] -number of,|['people', 'better-dressed', 'hours', 'objections', 'your', 'constables', 'hair-ends', 'our', 'years', 'men']| -by discovering,['a'] -the one,|['side', 'having', 'always', 'which', 'I', 'object', 'next', 'dreadful', 'hand', 'beneath', 'that', 'as', 'and']| -together bound,['from'] -put 100,['pounds'] -to everything,['But'] -down clapped,['my'] -eyes That,['was'] -shouting were,['enough'] -Both Mr,['and'] -may grow,['lighter'] -the reptile's,['neck'] -snake before,['the'] -Oh Mr,['Holmes'] -sign it,['and'] -of food,['and'] -The smarting,['of'] -my violin,|['and', 'for']| -keyhole but,['I'] -village said,['the'] -forty-one years,['of'] -always glad,['of'] -madam that,['I'] -and vouching,['for'] -chamber with,['a'] -|brought, I|,['understand'] -remain in,['the'] -opened at,['the'] -carrying the,['jewel'] -is concerned,|['The', 'are']| -extracts in,['their'] -incredulity I,['have'] -ever consented,['to'] -well up,['in'] -that The,['fund'] -soon found,|['Briony', 'ourselves']| -so quiet,['and'] -direct descent,['and'] -the passers-by,|['This', 'blew']| -again She,['was'] -seeing Mr,['McCarthy'] -Sussex near,['Horsham'] -fleeting glance,['of'] -young and,|['he', 'has', 'timid', 'unknown']| -occupant Having,['once'] -of someone,['or'] -proceed to,|['business', 'set']| -might get,['on'] -wrist have,['been'] -the paper,|['upon', 'do', 'flattened', 'but', 'from', 'and', 'where', 'as', 'The', 'in']| -his reach,|['upon', 'is']| -are can,['be'] -much superior,['to'] -are doing,['what'] -all-important When,['a'] -Alpha at,['12s.'] -tall man,|['left-handed', 'who', 'in']| -descended and,['started'] -jumped from,['at'] -on intimate,['terms'] -ventilators which,['do'] -my brougham,['is'] -had pictured,['it'] -before ever,|['I', 'we']| -some minutes,|['really!"', 'and', 'Holmes']| -marriage case,['I'] -smokeless chimneys,['however'] -useful. so.,['In'] -things about,|['Mr', 'him']| -below and,|['the', 'only']| -looking into,['this'] -who struggled,['frantically'] -back swiftly,['to'] -position of,['unofficial'] -my judgment,['the'] -second that,['in'] -cold dank,|['air', 'grasp']| -Turner lived,['for'] -least you,['shall'] -looking down,|['at', 'the']| -he sent,['up'] -these stains,['upon'] -only on,|['the', 'one']| -American Mr,['Moulton'] -those peculiar,['qualities'] -Moran to-day,['would'] -had upon,['your'] -is common,['Logic'] -leaking cylinder,['He'] -realised how,['crushing'] -though we,|['meet', 'shall', 'have', 'knew']| -|well certainly,|,['certainly'] -depositors One,['of'] -shiver said,['the'] -the countryside,['away'] -light revealed,['it'] -hand-mirror had,['been'] -more for,['Briony'] -of supporting,['himself'] -advertised for,['him'] -may implicate,['some'] -injuries He,['was'] -his interest,['Lestrade'] -they make,['a'] -police as,|['her', 'well']| -remarked Nothing,['could'] -his interview,['with'] -yet how,['about'] -richest in,['England'] -torn from,['a'] -vanishing cloth,['No'] -charcoal beside,['which'] -leads a,['sedentary'] -cases are,['past'] -appears that,|['his', 'some', 'she']| -jump and,["I'll"] -to pieces,['he'] -attic save,['a'] -been doing,['for'] -best have,['a'] -|fellow, that|,['observed'] -god's arrows,['has'] -any connection,['you'] -Grit in,['a'] -sneer to,['the'] -wants her,['own'] -I smiling,['I'] -asked to,|['two.', 'step', 'wear', 'sit']| -exceedingly glad,['to'] -Mr Armitage,['of'] -stated that,['the'] -an occasional,['friend'] -very brave,['and'] -dashed forward,['to'] -way Holmes,['clapped'] -deeply chagrined,['He'] -ask his,['leave'] -the daintiest,['thing'] -Street Two,['hansoms'] -sees whether,['she'] -notice To,['me'] -curled himself,['up'] -your man,['was'] -ago I,|['had', 'remember', 'bought', 'was']| -been talking,['and'] -and darkened,['His'] -clear of,['mind'] -waited there,['in'] -loafer who,['had'] -black frock-coat,|['unbuttoned', 'faced', 'was', 'white', 'shining']| -have their,|['explanations', 'pick']| -to?" to,['the'] -barmaid in,['Bristol'] -reaped in,['a'] -be into,['the'] -good. Your,['windows'] -mortgage The,['last'] -far better,['not'] -who it,|['may', 'seems', 'is', 'was']| -be reached,['from'] -county paper,['which'] -who is,|['so', 'occasionally', 'in', 'an', 'to', 'absolutely', 'utterly', 'the', 'presumably', 'picking', 'he', 'weighed', 'this', 'lost', 'popular', 'dazed', 'not', 'far', 'alone', 'at', 'a', 'her', 'now', 'little', 'very']| -were whispered,['in'] -aspect Here,['is'] -threw all,['fears'] -the gathering,['darkness'] -her house,|['Once', 'is']| -God Helen,['It'] -750 pounds,['Each'] -her We,['are'] -grey garment,['was'] -eyes visitor,['glanced'] -half-buttoned it,['is'] -hair like,['one'] -join him,['when'] -so. how,['far'] -absolute ignorance,['and'] -and indignation,['among'] -words she,['gave'] -some private,['diary'] -afterwards transpired,['the'] -troubled you,['about'] -to lose,|['Watson', 'such', 'your', 'If']| -house Holmes,|['raved', 'drew']| -alive Holmes,['seemed'] -all anxiety,['as'] -balance of,['probability'] -both good-night,['and'] -have here,['four'] -slowly all,['round'] -you thief,['How'] -said you'd,['give'] -collar or,['tie'] -police of,['Savannah'] -listless way,['but'] -the plainer,['it'] -The drawn,['blinds'] -Does it,['not'] -will suggest,['what'] -rather of,['the'] -Majesty If,|['this', 'she']| -it is ,['Miss'] -near Winchester,['DEAR'] -straightened himself,['out'] -policy to,['a'] -upon whom,['you'] -whence I,['have'] -know so!,['You'] -clearly You,['will'] -removed loudly,['protesting'] -some going,['up'] -recalled Holmes,['surmise'] -to unpack,['the'] -the evening,|['guessed', 'than', 'of', 'train', 'before', 'But', 'I', 'papers', 'at', 'light', 'so']| -not many,|['who', 'in']| -laudanum in,['an'] -studied the,['methods'] -pal is,['all'] -eager nature,['while'] -firmness As,['to'] -so when,|['he', 'the', 'I']| -picked a,['red-covered'] -in feature,['She'] -read that,['especially'] -first meet,['Miss'] -some reason,['but'] -police find,['what'] -walk rapidly,['out'] -eyes twinkled,['and'] -her Watson,['when'] -an edge,['to'] -Crowder the,['game-keeper'] -commanding figure,['He'] -not done,|['more', 'so', 'a']| -have laid,|['the', 'for']| -Openshaw For,['the'] -Doctor said,['he'] -really it,['would'] -obliged. dress,['which'] -Hood where,['he'] -Mr Merryweather,|['who', 'gloomily', 'the', 'but', 'we', 'stopped', 'striking', 'perched', 'is', 'as']| -them were,|['of', 'treatises']| -The King,['may'] -my saviour,['and'] -Bring him,['into'] -other they,['were'] -wickedness of,['the'] -Ryder upper-attendant,['at'] -use your,|['applying', 'skill']| -moved eye,['caught'] -for from,|['the', 'that']| -most fortunate,['in'] -children This,["child's"] -then yes.,['It'] -more solid,['have'] -gigantic one,['and'] -than laugh,['at'] -this dim,['light'] -chap for,['He'] -you earn,['into'] -and devote,['an'] -But what,|['could', 'is', 'was', 'in']| -my miserable,|['secret', 'story']| -Holmes Yes,['there'] -at 100,['pounds'] -her when,['the'] -than 1000,['pounds'] -over from,['my'] -room looks,['newer'] -it with,|['his', 'impunity', 'you.', 'the', 'my', 'you', 'all']| -hereditary King,['of'] -died away,['into'] -slink away,['without'] -in what,|['way', 'the']| -outline of,['an'] -They are,|['important', 'all', 'never', 'the', 'coiners', 'not', 'a']| -herd of,['buffalo'] -once made,['up'] -inspiring pity,['by'] -dull persistence,['With'] -and ill,['as'] -unfortunate man,['arrested'] -spoke her,['joy'] -letter is,['from'] -the midst,['of'] -sister died,['and'] -the Arabian,['Nights'] -this crime,['fully'] -can this,['be?'] -are bound,['to'] -a telegram,|['It', 'from', 'upon', 'would']| -his family.,['I'] -The boy,['had'] -is about,|['the', 'half']| -certainty We,['have'] -the trees,|['and', 'That', 'as', 'was', 'we']| -suddenly the,['whole'] -massive head,['and'] -Yard Jack-in-office,['chuckled'] -other name,['In'] -entered who,['could'] -and prosperous,['man'] -white goose,['slung'] -as having,['cleared'] -travelled in,['my'] -Florida Its,['power'] -him seems,['to'] -hours and,['he'] -to suggest,['a'] -was useless,['however'] -different level,['to'] -the British,['barque'] -that secured,['the'] -others were,|['there', 'you']| -concentration of,['attention'] -that building,['near'] -business up,['and'] -police! I,['cried'] -He thought,['no'] -grasped my,['arm'] -matters little,['to'] -which sprang,['from'] -placed close,['to'] -girl of,['fourteen'] -to slip,['through'] -served my,['time'] -Hatherley? said,['he'] -whatever There,['will'] -|sister moment,"|,['said'] -subject You,['look'] -me returned,['the'] -face buried,['in'] -walked slowly,|['up', 'glancing', 'round', 'all', 'across']| -with brownish,['speckles'] -a dirty,|['and', 'thumb', 'scoundrel', 'face']| -and originality,['As'] -remain single,['long'] -|club yes,|,['I'] -bride's wreath,['and'] -fiercely forward,['and'] -street in,['a'] -you draw,['so'] -invaluable to,['me'] -upon his,|['chest', 'right', 'knee', 'features', 'forehead', 'face', 'knees', 'wrists', 'finger', 'breast', 'pale', 'ears', 'waterproof', 'plate', 'sallow', 'two', 'mind', 'strong-set', 'head', 'person', 'way', 'hands', 'track', 'thoughts', 'aristocratic', 'legs', 'allowance', 'expedition', 'congenial']| -wrote my,['articles'] -you got,|['the', 'in']| -relief that,['instead'] -surgeon's deposition,['it'] -most precious,['public'] -move and,['there'] -mean bodies,|['bodies,']| -to business,|['Watson', 'then']| -exquisite mouth,['Holmes'] -you Mr,|['Sherlock', 'Merryweather', 'Holmes']| -smooth-faced pawnbroker's,['assistant'] -tint of,['chestnut'] -be presented,|['by', 'which']| -pair might,['take'] -infinitely the,['most'] -helped him,['Everybody'] -less inclined,['for'] -your energetic,['nature'] -|Spaulding stout-built,|,['very'] -The ceiling,|['of', 'was']| -handkerchief out,['of'] -someone could,['not'] -have given,|['it', 'you', 'to', 'me', 'her', 'orders', 'prominence', 'room']| -would send,|['it', 'him', 'you']| -seedy and,['disreputable'] -it before,|['he', 'now', 'said']| -rushed upon,['him'] -lately I,|['can', 'think']| -raise our,['minds'] -up this,['clue'] -eyes round,|['the', 'and']| -back closed,['the'] -management of,['the'] -to post,|['a', 'me']| -know Mr,['Jones'] -Well here's,['your'] -left-handed gentleman,['with'] -as noiselessly,['as'] -or appearance,['did'] -severely tried,['said'] -herself the,['very'] -this metal,['floor'] -and carbolised,['bandages'] -amusing yourself,['in'] -most suggestive,['said'] -it were,|['in', 'that', 'merely', 'by', 'new', 'putty', 'made', 'on', 'not', 'right', 'guilty', 'the']| -those which,|['come', 'have']| -far I,|['had', 'was']| -little danger,['so'] -office the,['other'] -an impersonal,['thing a'] -glancing quickly,['round'] -round for,['it'] -his machine,['overhauled'] -before our,|['client', 'united']| -and clearing,['up'] -my assistance,['in'] -the heads,['of'] -questionable memory,['had'] -you combine,['the'] -discontent upon,['his'] -then During,['that'] -worker There's,['no'] -vain for,['she'] -pretty business,['for'] -caused me,|['to', 'no']| -police they,['listened'] -Its outrages,['were'] -is back,['through'] -go right,['on'] -determined by,['the'] -search in,['the'] -Opening it,['hurriedly'] -follow It,['is'] -pattered down,['upon'] -matter And,['there'] -shoulder to,['it'] -with deep,['attention'] -already answered,['said'] -under exactly,['similar'] -degenerating into,['an'] -THE RED-HEADED,['LEAGUE'] -act for,['you'] -a monomaniac,['With'] -the tragedy,|['that', 'now']| -places The,['marks'] -She struck,['a'] -Turner thereby,['hangs'] -recognise him,['His'] -the forehead,['and'] -made even,['gaunter'] -when last,|['seen', 'night']| -feasible explanation,['You'] -standing at,['the'] -contortions on,['earth'] -then took,|['my', 'a']| -own marriage,['during'] -and joined,['us'] -our smiles,['were'] -weighed upon,['her'] -man Besides,['remember'] -rose now,['and'] -the organisation,|['of', 'flourished']| -was William,|['Morris', 'Crowder']| -take nothing,['for'] -two assistants,['but'] -possible Turner,['was'] -so uncourteous,['to'] -to Charing,['Cross'] -where Boots,['had'] -hour on,['end'] -with the,|['dark', 'small', 'chest', 'photograph', 'intention', 'two', 'air', 'same', 'blood', 'King', 'larger', 'smaller', 'smooth', 'money', 'pain', 'conditions', 'gesture', 'immense', 'hurrying', 'lantern', 'utmost', 'result', 'easy', 'greatest', 'thick', 'male', 'Study', 'conviction', 'pungent', 'official', 'sad', 'carriage', 'interest', 'lodge-keeper', 'injuries', 'right', 'gold', 'loss', 'text', 'number', 'servants', 'tradespeople', 'door', 'initials', 'last', 'warnings', 'disappearance', 'City', 'letters', 'brown', 'murky', 'most', 'exception', 'other', 'Gravesend', 'date', 'light', 'news', 'half-clad', 'reckless', 'ice', 'twisted', 'decline', 'offence', 'bad', 'matter', 'collar', 'gas-flare', 'stone', 'barred', 'well-known', 'control', 'one', 'sun', 'blue', 'wood-work', 'outside', 'keenest', 'landlord', 'cocked', 'shutter', 'long', 'certainty', 'weary', 'name', 'lamp', 'force', 'feeling', 'deepest', 'rest', 'company', 'bridegroom', 'police', 'steady', 'help', 'Stars', 'clanging', 'precious', 'key', 'three', 'coronet', 'accepted', 'prize', 'tongs', 'man', 'brisk', 'dog-cart', 'anxiety', 'saddest', 'desire', 'shuttered', 'face', 'savage']| -boots too,['might'] -have deduced,['a'] -is unlikely,['that'] -a wedding-dress,['of'] -the weekly,['county'] -to knock,|['you', 'the']| -and excited,['as'] -investigation in,['which'] -and favour,['me'] -habit his,['attitude'] -Irene or,['Madame'] -air as,['possible'] -silent as,['Mrs'] -advance from,['a'] -and dishonoured,['age'] -pretty and,['from'] -This assistant,['of'] -some friend,['of'] -fastened this,['morning'] -paces off,['What'] -deductions have,['suddenly'] -quarrel broke,['out'] -annoyance If,['the'] -The words,['fell'] -side is,['less'] -case before,|['we', 'our']| -and astonishment,|['upon', 'that']| -side in,['silence'] -Her husband,['lies'] -loving beautiful,['a'] -any little,|['problem', 'expenses', 'commands', 'inconvenience']| -chair up,|['to', 'and']| -promise of,|['secrecy', 'the']| -office of,['the'] -drawing-room and,['who'] -or it'll,['be'] -in considerable,['excitement'] -bring it,|['home', 'into']| -especially as,|['rather', 'the', 'I']| -to earn,['a'] -infer that,['she'] -they remembered,['us'] -office or,['at'] -mates are,['as'] -was worth,['an'] -strike deeper,['still'] -ever said,['he'] -brother didn't,['mind'] -was difficult,['to'] -and when,|['the', 'I', 'your', 'a', 'my']| -public and,|['as', 'to']| -clear whistle,|['I', 'but']| -the secrets,['of'] -without seemed,['to'] -a goose,|['while', 'all', 'in', 'and', 'on', 'club', 'at']| -heavy breathing,['and'] -had acted,['differently'] -a pit.,['said'] -was on,|['the', 'Wednesday', 'a', 'board', 'him', 'duty']| -was of,|['use', 'Irene', 'course', 'such', 'me', 'a', 'an', 'the', 'considerably', 'grey', 'excellent']| -satisfied himself,['that'] -unless they,['make'] -after that,|['for', 'we', 'father']| -same meshes,['which'] -she ran,|['away', 'forward', 'free']| -drove home,|['to', 'after']| -was far,|['from', 'greater']| -in some,|['respects', 'way', 'fantastic', 'parts', 'strange', 'dark-coloured', 'sort', 'points', 'such', 'surprise', 'perplexity', 'illness']| -left her,|['room', 'alone']| -laughter made,['me'] -a pity,|['to', 'that', 'because', 'especially', 'you']| -Isle of,['Wight'] -son's guilt,['can'] -impertinent fellow,['upon'] -His lip,['had'] -a firm,['in'] -however go,['to'] -innocent category,['You'] -master at,['the'] -keep up,|['your', 'my']| -a fire,['in'] -bed a,|['plain', 'small']| -cleared in,['the'] -your left,|['shoe', 'You', 'glove']| -Was he,['in'] -head on,['one'] -he That,['circle'] -King of,|['Bohemia', 'Scandinavia', 'Proosia']| -the security,|['is', 'of', 'sufficient?']| -head of,|['hair', 'his', 'the', 'a']| -transpired as,['to'] -before she,['shot'] -at high,['tide'] -letter But,['as'] -You were,['chosen'] -truth It,['was'] -half and,['half'] -to escape,['from'] -causing some,['little'] -replied Lestrade,['with'] -Holmes requests,['for'] -sign that,|['they', 'he']| -that frightened,['her'] -and probing,['the'] -little too,|['theoretical', 'much', 'coaxing']| -a secret.,|['bowed,']| -Adler The,['name'] -his wrinkles,['were'] -flatter himself,['that'] -in not,['arresting'] -allowed me,['a'] -need tell,['me'] -page sleep,['out'] -some harm,['unless'] -his nose,|['It', 'looking']| -lanes It,['was'] -of bricks,|['and', 'Now']| -corners of,['his'] -some wear,['only'] -jewels which,['you'] -letters which,|['should', 'purport', 'were']| -British jury,|['verrons,"']| -country carts,['were'] -his facts,['looking'] -but between,['ourselves'] -will state,['your'] -Maudsley who,['went'] -backward slammed,['the'] -of theories,['to'] -probably wish,['to'] -ideas in,['his'] -out some,['water'] -both an,['orphan'] -the thousands,['of'] -me through,|['Baker', 'the']| -light shone,|['out', 'upon']| -what way,|['I', 'asked']| -frost to,['preserve'] -remarked as,|['we', 'he']| -your fortunes,['You'] -what was,|['in', 'going', 'about', 'it', 'his', 'she', 'a', 'the', 'this', 'behind']| -him Altogether,['look'] -he my,|['eyes', 'real', 'wife']| -He stepped,|['over', 'swiftly']| -I eliminated,['everything'] -the rueful,['face'] -John Openshaw,|['but', 'He', 'seems', 'and', 'were']| -broad passage,['and'] -were all,|['three', 'engaged', 'confirmed', 'paid', 'the', 'at', 'sodden', 'in', 'hastening', 'matters', 'horrible', 'assembled']| -of Devonshire,['fashion'] -so sudden,['and'] -slowly through,['this'] -an ashen,|['white', 'face']| -village all,['efforts'] -indoors all,['day'] -January of,['85'] -abound in,['the'] -infer from,['this'] -though rather,['elementary'] -scraping at,['this'] -finding anything,['which'] -sound Could,['you'] -came with,['an'] -an inspection,['of'] -law to,['clear'] -do just,['whatever'] -night before,|['waiting', 'Did', 'and']| -German-speaking country in,['Bohemia'] -face clouded,['over'] -believe I,['have'] -of print,|['but', 'than']| -good. Come,['this'] -wake you,['This'] -curtain in,['the'] -a German-speaking,['country in'] -goodness also,['when'] -myself through,['and'] -Southampton highroad,['which'] -|four-and-twenty matter,|,['from'] -was all,|['done', 'in', 'that', 'I', 'for', 'perfectly', 'crinkled', 'on']| -that night,|['and', 'A', 'after', 'with', 'As']| -passed round,['the'] -farther back,['on'] -frighten Kate poor,['little'] -wait I,['passed'] -ring from,['his'] -to bad,['taste'] -our fellow-men,['had'] -London East,['London'] -matches laid,['out'] -their own,|['story', 'secreting', 'devilish']| -hair Hers,['had'] -dealings with,['Sherlock'] -stabbed with,['her'] -portion of,|['the', 'it']| -poor rabbits,['when'] -his keys,|['in', 'which']| -white teeth,['still'] -blackest treachery,['to'] -upon you,|['to-night', 'in', 'and', 'not']| -wink! He,['leaned'] -dinner Seldom,['goes'] -well Of,['course'] -might expect,['It'] -among his,|['old', 'hair']| -these Some,['five'] -break away,['from'] -and done,['it'] -depends upon,['our'] -rooms as,['bachelors'] -science the,['others'] -rooms at,|['my', 'once', 'Baker']| -however This,['note'] -whole it,['was'] -considerable confusion,['I'] -spoke in,['a'] -90 I,['am'] -believe my,['ears'] -deny his,['signature'] -Four or,['five'] -as nothing,['else'] -poor father's,['death'] -position when,|['however', 'I']| -duke and,['he'] -a pistol,|['shot', 'to']| -through this,|['ventilator', 'some', 'snow', 'door', 'matter']| -filial duty,['as'] -does a,['bit'] -suit who,['seemed'] -than possible,['it'] -enough before,['the'] -shillings for,['a'] -believe me,|['You', 'the']| -wished Miss,['Sutherland'] -with immense,['capacity'] -two. a,["pawnbroker's"] -Even my,['dread'] -finger-tips upon,['the'] -burrowing The,['only'] -all-comprehensive glances,['must'] -me again,['with'] -bird which,|['he', 'I']| -a game-keeper,['in'] -household for,['a'] -hardly noticed,['his'] -sum of,|['money not', 'money']| -sleep that,['night'] -upon another,['I'] -conversation with,|['a', 'two', 'his', 'her']| -at her,|['baby', 'with', 'face', 'you', 'and', 'neck', "wit's", 'elbow', 'It']| -making away,['with'] -brushed for,['weeks'] -with dew,['and'] -they seem,['to'] -complete change,['in'] -remain unavenged,['Why'] -many days,['are'] -man signed,['the'] -which even,['in'] -until those,['who'] -heard He,['appeared'] -really did,['it'] -hair and,|['outstanding', 'there', 'an', 'eyes', 'whiskers']| -This way,['please'] -hypothesis that,['it'] -kind said,['he'] -the vacancy,|['was', 'after']| -in between,['that'] -stool there,['sat'] -Captain Calhoun,['leader'] -cold night,|['and', 'said', 'the']| -This was,['clearly'] -walk to,['the'] -grew richer,['I'] -to cause,['her'] -had his,['ordinary'] -house again,|['and', 'Perhaps']| -proves to,['be'] -to imitate,['my'] -his serving-man,['in'] -those keen,['eyes'] -and strode,['off'] -me eagerly,['out'] -the start,['which'] -pink chiffon,['at'] -find parallel,['cases'] -always draw,['him'] -the stars,['were'] -bred snapped,['the'] -England a,|['morose', 'tomboy']| -ventilator what,['harm'] -struggled and,['out'] -doubt came,['into'] -fellow said,|['a', 'Sherlock', 'that']| -went straight,['to'] -if a,|['gentleman', 'real', 'mass', 'little', 'man']| -or on,['some'] -pips upon,['the'] -rooms were,|['brilliantly', 'carefully', 'unapproachable']| -him was,|['not', 'the', 'a', 'so', 'foolish']| -or of,['a'] -worse for,|['wear', 'the']| -as ever,|['deeply', 'came', 'very', 'I', 'think', 'and', 'said']| -bank to,['refund'] -My father,|['was', 'had']| -engaged My,|['stepfather', 'companion']| -still call,['her'] -then?" knees,['of'] -corner dashed,['forward'] -if I,|['do', 'am', 'waited', 'wanted', 'go', 'were', 'call', 'leave', 'went', 'could', 'remember', 'had', 'say', 'knew', 'should', 'have', 'might', 'did', 'told', 'felt', 'passed']| -and sparkles,['Of'] -be looked,['upon'] -but found,['it'] -little handkerchief,['out'] -and multiply,['it'] -as highly,['suspicious'] -real occupation,['My'] -possible however,['that'] -had under,['our'] -Majesty's business,['to'] -scenery It,['was'] -before the,|['fire', 'door', 'magistrates', 'coroner', 'blow', 'night', 'morning', 'roof', 'disappearance', 'ceremony', 'wedding', 'altar']| -gems would,['not'] -story As,['if'] -miners parlance,['means'] -be proud,['to'] -a scent,|['as', 'and', 'so']| -Half a,['guinea'] -take no,|['notice', 'notice.']| -is all,|['right', 'perfectly', 'that', 'over', 'which', 'we', 'But', 'the', 'safe', 'and', 'dark', 'quite']| -had stronger,['reasons'] -and benevolent,['curiosity'] -in five,['minutes'] -life have,['I'] -a scene,['in'] -mischief I,['should'] -I served,['them'] -a half,|['pounds', 'feet']| -fanlight Just,['as'] -her in,|['his', 'conversation', 'the', 'tears', 'height']| -Dundas separation,['case'] -By-the-way since,['you'] -a basket-chair,|['then,']| -thin very,['wrinkled'] -bit Doctor,['Stay'] -take some,|['hours', 'little']| -hurry to,['him'] -is where,|['the', 'we']| -be when,['I'] -her it,['is'] -my wife,|['has', 'and', 'looking', 'died', 'laid', 'pulling', 'like', 'as', 'was', 'would', 'found', 'out', 'short,', 'is', 'might']| -of uproar,['He'] -But our,|['trap', 'doubts']| -wrong side,['the'] -arrived by,['a'] -am so,|['candid', 'glad', 'frightened', 'sure', 'delighted', 'frightened!']| -swift steps,['to'] -do on,['re-entering'] -how simple,|['it', 'the']| -buy their,['land'] -us also,['He'] -do of,['a'] -your window,['undo'] -seeing anything,['more'] -Road Half,['a'] -last two,['syllables'] -be which,['seemed'] -go Holmes,['a'] -more with,|['your', 'a']| -is mature,['for'] -began it,['all'] -she meets,['me'] -cleaned and,['scraped'] -co-operation I,['came'] -gloom throwing,['out'] -ring in,['the'] -above them?,['the'] -however seeing,['perhaps'] -turned white,['to'] -the smokeless,['chimneys'] -same as,|['the', 'you', 'his']| -wait outside,['I'] -which did,['not'] -within Then,['he'] -her surprised,['me'] -swept silently,['into'] -rushed off,['among'] -chosen to,['insult'] -darkness of,['the'] -Underground and,['hurried'] -you your,['check-book'] -compromised yourself,['seriously'] -a furniture,['warehouse'] -Then as,['to'] -no rest,['for'] -come of,['this'] -over whom,['he'] -right forefinger,|['and', 'Her']| -come on,['this'] -this whistle,['and'] -Mr Victor,['Hatherley'] -rich tint,['so'] -gipsies do,['cannot'] -way to,|['the', 'Mr', 'clearing', 'meet', 'their', 'take', 'Kilburn', 'Leatherhead', 'force', 'make']| -her right,|['glove', 'hand', 'It']| -a gash,['seemed'] -|cried have,|,['however'] -large ones,['On'] -the Manor,['House'] -step which,|['had', 'leads']| -was kind,|['enough', 'of', 'to']| -India! said,['he'] -fixed one,['side'] -burglars in,['my'] -James McCarthy,|['going', 'the', 'said']| -see James,['Oh'] -anxiety lest,['I'] -said gravely,['that'] -well when,['McCarthy'] -a sceptic,['he'] -descending piston,['and'] -be really,['out'] -in-breath of,['the'] -to-morrow It,['is'] -his dreams,['and'] -their dark,['leaves'] -|you, Mrs|,['St'] -moss and,['this'] -fill the,['socket'] -immediately me!',['he'] -on your,|['hat', 'way']| -girl's affections,['from'] -revealed to,['the'] -long as,|['I', 'she', 'you', 'every', 'possible', 'he']| -Holmes walked,|['slowly', 'over']| -rich landowner's,['dwelling'] -limping step,['and'] -be looking,['in'] -then we,['have'] -fall into,['the'] -wound up,['two'] -homeward down,['Tottenham'] -The devil,['knows'] -yours Now,['then'] -papers I,|['shall', 'observed']| -cabs go,['slowly'] -This is,|['my', 'what', 'wanting', 'the', 'not', 'a', 'no', 'very', 'only', 'where', 'more', 'indeed', 'all']| -cigar I,['have'] -organisation of,['the'] -joy at,['the'] -occupation my,['night'] -plush that,['I'] -is Miss,['Flora'] -fingers upon,['the'] -very soul,|['of', 'seemed', 'Besides']| -however improbable,['must'] -elaborate preparations,['and'] -should like,|['to', 'just', 'an', 'however', 'a', 'all']| -bulky but,['if'] -slighted like,['and'] -Hanover Square,|['that', 'was']| -files of,['the'] -recognised me,['but'] -protestation of,['innocence'] -handling just,['now.'] -pile too,['and'] -hours I,['plied'] -brandy into,['the'] -Holmes succinct,['description'] -errand However,['I'] -loved his,['cousin'] -now pinched,['and'] -annoyance upon,['her'] -on it,|['that', 'which', 'said', 'He']| -lawn of,['weedy'] -me is,|['nothing', 'excellent', 'a']| -wisdom late,['than'] -1884 there came,['to'] -surprised her,['in'] -me out!,['then'] -day he,['had'] -unusual strength,['of'] -on in,['his'] -clever gang,['was'] -a net,['round'] -a new,|['leaf', 'patient', 'man', 'wedding-ring']| -the lower,|['part', 'vault', 'windows', 'one']| -last after,['passing'] -the unexpected,['sight'] -known each,['other'] -reason alone,['can'] -conditions the,['light'] -the effect,|['which', 'was', 'of', 'that']| -But dear,['me'] -gloomily may,['place'] -a curve,['with'] -to deny,['his'] -hands up,|['into', 'and']| -at heart,['cannot'] -health I,['shall'] -to talk,|['it', 'to']| -|no," cried|,['Holmes'] -be little,|['doubt', 'relation']| -investigation into,['their'] -unconcerned an,['air'] -him face,['downward'] -disguise In,['ten'] -up around,['the'] -my late,['acquaintance'] -passed across,['Holborn'] -precaution against,['the'] -perceived that,['there'] -that made,['me'] -forefinger upon,['the'] -him upon,['the'] -pilot boat,['Sherlock'] -ordered a,['carriage'] -twice been,|['burgled', 'deceived']| -and instantly,['as'] -upward to,['the'] -Reading There,['is'] -Miss Doran,|['whose', 'on']| -men smoking,['and'] -cabinet was.",|['good-night,']| -without observing,|['the', 'him']| -devil When,['these'] -he quotes,['Balzac'] -a purpose,['The'] -page indicated,['Here'] -quietly shot,['back'] -cloth cap,|['is', 'which']| -how?" the,['dress'] -muscles are,['more'] -Office to,['be'] -without clay,['And'] -gently smiling,['face'] -half risen,['I'] -a cage,['As'] -eye of,['a'] -he walked,|['slowly', 'over', 'towards', 'His']| -he settled,['our'] -built firmly,['into'] -eye on,['the'] -reputation such,['as'] -after passing,['through'] -Holmes alone,['however'] -the sympathy,['of'] -Your skill,['has'] -be an,|['active', 'immense', 'attempt', 'end', 'interesting', 'advantage', 'absolutely', 'imprudence']| -one being,['present'] -morning papers,|['evidently', 'but', 'all']| -|accomplishments, sir|,['may'] -she finished,['speaking'] -traditions She,['is'] -be as,|['averse', 'well', 'good', 'narratives', 'pressing', 'warm', 'obvious', 'I']| -lying open,['upon'] -windows almost,['to'] -be at,|['Briony', 'Baker', 'St', 'his', 'bottom', 'the', 'our']| -innocence was,['late'] -five minutes.,['you'] -knew nothing,|['and', 'will', 'of']| -be found,|['she', 'save', 'either', 'in', 'think', 'which', 'out', 'nor']| -his golden,|['pince-nez', 'eyeglasses']| -from Ballarat,|['with', 'to']| -and nervous,['shock'] -Serpentine heaven's,['name'] -Arthur's face,['she'] -has certainly,['the'] -pained expression,['upon'] -fastened by,['a'] -done from,['your'] -tail of,['the'] -were not,|['many', 'fit', 'unlike', 'seeing', 'to', 'I', 'very', 'for', 'destined', 'yourself', 'yet']| -usual at,['ten'] -completely You,['see'] -shall endeavour,['to'] -faculties and,['extraordinary'] -cellar something which,['took'] -distinct odour,['of'] -pew Some,['of'] -think over,['my'] -man's story,['were'] -lonelier than,['ever'] -called to,['you'] -him Perhaps,['it'] -removing any,['traces'] -thing what,['absolutely'] -calls attention,['and'] -friendly supper,['think'] -bridge no,['doubt'] -entreated him,['to'] -you cannot,|['take', 'guard', 'imagine', 'as']| -got down,['from'] -sleepy bewilderment,['Then'] -that occurred,['it'] -black felt,['hat'] -solution Mr,['Rucastle'] -ungrateful for,['what'] -its black,['muzzle'] -pathway through,['the'] -The window,['was'] -smarting of,['it'] -the deductions,['and'] -who takes,['very'] -there again,['I'] -help remarking,['its'] -was firm,['I'] -the events,|['of', 'occurred']| -the short,|['grass', 'stock']| -low as,['you'] -neck he,['drew'] -I assure,['you'] -His frank,['acceptance'] -introduction of,['his'] -he finished,['however'] -easily got,['help."'] -are they,|['worth?', 'appears', 'Who', 'all', 'are', 'cannot', 'will']| -them to,|['come', 'mother', 'Mr', 'you', 'meet', 'say']| -ill-natured a,['little'] -dull wrack,['was'] -way When,['he'] -dreadful snap,['Easier'] -measures on,['my'] -The writing,['is'] -police formalities,['have'] -To the,['best'] -will keep,|['the', 'your']| -if these,['people'] -were wasted,['said'] -together is,['simplicity'] -room perhaps,['from'] -dressed by,['the'] -figure and,|['striking', 'the']| -been exceptionally,['so'] -would ask,['for'] -together in,|['ignorance', 'a', 'the']| -education I,['travelled'] -a flush,['upon'] -lurched and,['jolted'] -mind He,['was'] -in 1846.,["He's"] -words out,['but'] -couple of,|['hundred', 'wooden', 'days', 'hours', 'dozen', 'years', 'brace']| -be you,|['And', 'are']| -lady I,|['fancy', 'think', 'asked', 'was']| -satisfaction than,['his'] -dark silhouette,['against'] -Holmes indeed,['said'] -us as,|['if', 'much', 'belonging']| -us at,['once'] -shade instead,['of'] -upstairs explained,['the'] -There is,|['a', 'only', 'that', 'water', 'the', "Mortimer's", 'no', 'half', 'of', 'one', 'danger', 'as', 'however', 'nothing', 'not', 'so', 'something']| -that All,['we'] -It was,|['not', 'a', 'twenty-five', 'all', 'the', 'already', 'dated', 'instantly', 'one', 'difficult', 'to', 'quite', 'worth', 'from', 'Coroner:', 'something', 'sheer', 'with', 'damp', 'mere', 'an', 'clear', 'only', 'headed', 'nearly', 'Neville', 'no', 'soon', 'pierced', 'found', 'so', 'indeed', 'obvious', 'as', 'awful', 'I', 'easy', 'of', 'my', 'more', 'empty']| -was joking,['sole'] -hat upon,['his'] -o'clock Lestrade,['called'] -my taste,['than'] -that little,['may'] -arrested at,['once'] -are And,['underneath'] -our signal,['said'] -say I,['have'] -arrested as,['his'] -were upon,['my'] -scrawl telling,['her'] -voice I,['sprang'] -We even,['traced'] -room with,|['a', 'the']| -still was,['it'] -find it,|['pointing', 'here', 'very', 'hard', 'difficult', 'as', 'shorter', 'upon', 'so', 'laid', 'rather']| -the coffee,['had'] -seventy odd,['cases'] -door lest,['the'] -seldom heard,['him'] -Breckinridge by,['him'] -way across,['the'] -she found,|['herself', 'matters']| -your chair,|['up', 'said']| -there heavens,['I'] -bachelors in,['Baker'] -had finished,|['for', 'Between']| -it worked,['This'] -own thought,['is'] -arm and,|['on', 'hurried']| -heaped-up edges,['of'] -sudden turn,['to'] -few moments,|['later', 'afterwards']| -his congenial,['hunt'] -astonishment the,['lad'] -night as,['I'] -difficult to,|['name', 'identify', 'realise', 'suggest', 'get', 'find', 'refuse', 'post']| -chairs and,['a'] -no foresight,['and'] -her but,|['she', 'I', 'some', 'what', 'at', 'learned', 'we', 'when']| -appearance you,['see'] -myself mumbling,['responses'] -about going,['out'] -ever listened,|['to', 'Let', 'It']| -I've had,|['one', 'enough']| -twenty-six a,['hydraulic'] -grew more,['ambitious'] -a bee,['in'] -wandered through,|['the', 'woods']| -seen That,['is'] -to blame,|['I', 'People']| -a bed,|['fastened', 'and']| -Roylott has,['gone'] -hanging jowl,['black'] -just to,|['remember', 'tell', 'teach']| -role I,['have'] -evening was,['obvious'] -the dining-room,|['rushed', 'and']| -felt as,['if'] -be forwarded,['to'] -this dark,|['place', 'business']| -conveyed somewhere,['I'] -crime with,['these'] -the metropolis,|['but', 'and', 'at']| -It will,['end'] -what these,['perils'] -disagreeable persistence,['of'] -a worthy,['fellow'] -the plaster,['was'] -big white,['one'] -possible and,|['out', 'hence']| -and quite,['time'] -Holmes We,['were'] -not fit,|['for', 'the']| -brought him,|['to', 'the']| -a crate,['with'] -thoroughly rely,['Local'] -police are,|['hurrying', 'to']| -been meant,['for'] -such humiliation,['is'] -drew a,['sovereign'] -I regret,['that'] -has assuredly,['gone'] -housekeeper's room,['looks'] -slashed across,['the'] -your very,|['interesting', 'life']| -left shoe,['just'] -what then,|['I', 'must']| -the pew,|['There', 'handed', 'Some']| -been entirely,['free'] -its ragged,['edge'] -position yet,['my'] -which ended,['in'] -I volunteered,['to'] -margin by,['a'] -what they,|['were', 'like', 'had', 'stole', 'are', 'said', 'can.', 'would']| -affair of,['the'] -that all,|['is', 'was', 'theories', 'the', 'I', 'one', 'this']| -My suspicions,['were'] -so at,['last'] -assistant of,['yours'] -How dare,['you'] -The story,['has'] -conclusion of,['an'] -are and,|['what', 'they', 'he']| -shapeless pulp,['I'] -a test-tube,['at'] -the twisted,|['lip', 'poker']| -but what,|['was', 'has', 'he', 'have']| -|goose sir,"|,['said'] -walking very,['stealthily'] -flap he,['wrote'] -he enjoyed,['the'] -plot had,['been'] -a wink,['at'] -set himself,['to'] -now Had,['I'] -grew very,['thick'] -other papers,['were'] -McCarthy's and,['I'] -Roylott then,['abandoned'] -Holmes only,['one'] -little supper,['and'] -passion He,['locked'] -the outskirts,['of'] -never would,['look'] -this truth,['that'] -doubt strike,['you'] -She could,|['trust', 'not']| -fine. He,['took'] -lip so,['that'] -Jem; there,['were'] -and wished,['to'] -rushed back,|['to', 'closed']| -assumed The,['stage'] -head thrust,['forward'] -how he,|['was', 'came', 'met', 'winced', 'found', 'managed', 'did']| -hall so,['that'] -could he,|['not', 'have']| -Baker Street,|['buried', 'As', 'but', 'and', 'that', 'at', 'Two', 'it', 'life', 'half', 'would', 'said', 'Sherlock', 'I', 'we', 'once', 'Nothing', 'It', 'rooms', 'Holmes', 'by', 'A', 'Mrs']| -which remains,|['You', 'to']| -a night-bird,['and'] -am naturally,['observant'] -since you,|['are', 'draw', 'had', 'have', 'refuse']| -blame I,['can'] -soon learn,['all'] -addressed it,['to'] -keys and,|['could', 'tried']| -could ha,['got'] -as valuable,['as'] -easily imagine,['Mr'] -the bars,['of'] -very freely,['and'] -he hated,['to'] -grass which,['bounded'] -geese I,['see'] -vital use,['to'] -own eyes,|['That', 'and', 'with']| -that what,|['he', 'this', 'the', 'you']| -the bare,['slabs'] -forward examining,['minutely'] -interesting Indeed,['I'] -It came,|['by', 'right']| -the bark,|['of', 'from']| -straw hat,['with'] -my calling,['so'] -be married,|['I', 'with', 'in', 'and', 'right']| -see from,|['Horsham', 'the']| -like so,['many'] -could go,|['no', 'where', 'horse?"', 'gone']| -solicitor and,['was'] -despair It,['was'] -was hauling,['after'] -Lloyd's registers,['and'] -harness how,['do'] -supper had,['been'] -trust with,|['a', 'you']| -note the,|['peculiar', 'lodge-keeper']| -tongue in,['a'] -the rooms,['which'] -life you,["don't"] -heavens I,['cried'] -won't mind,['my'] -to thank,|['him', 'you']| -law But,['in'] -only problem,['we'] -was time,['to'] -pitiful a,['sum'] -exclamation from,['my'] -personate someone,['and'] -|have 50,000|,['pounds'] -teeth were,['exposed'] -one easy-chair,['and'] -Our own,['door'] -easy matter,|['after', 'to']| -deeper but,['I'] -Holder that,|['I', 'you']| -little distance,['down'] -man upon,['whom'] -invited them,['to'] -board of,['a'] -indeed important,['said'] -a pleasant,['cultured'] -day His,['chin'] -furniture was,['scattered'] -are young,["McCarthy's"] -shown us,['into'] -and acknowledges,['me'] -I smiled,['and'] -paused at,['the'] -qualifications I,['understand'] -yet opened,['his'] -Coroner: What,|['did', 'do']| -over rearranging,['his'] -cuts Obviously,['they'] -more afraid,['of'] -gaze and,['then'] -contrary my,['dear'] -sobbing with,['his'] -140 different,['varieties'] -fear that,|['I', 'can', 'you', 'Neville', 'they', 'it']| -square pierced,['bit'] -door It,['was'] -blot to,['my'] -and Miss,['Hatty'] -be loose,['but'] -hot-headed and,['devotedly'] -quite hollow,['he'] -in cool,['blood'] -imprudence in,['allowing'] -Waterloo Bridge,|['heard', 'Road']| -the winding,['track'] -spend the,['night'] -the trained,['reasoner'] -would find,['that'] -angry indeed,['and'] -parapet into,['a'] -competence uncle,['Elias'] -from Carlsbad,['Remarkable'] -plumber was,|['accused', 'brought']| -geese but,['before'] -at It,['must'] -eyes the,['settee'] -the church,|['There', 'door', 'first', 'and', 'is', 'She', 'I', 'but']| -little records,['of'] -have received,['a'] -lies your,['only'] -wear over,['their'] -Franco-Prussian War,['It'] -so Your,['Majesty'] -black beads,['sewn'] -me Ryder,['that'] -weight upon,['it'] -|matter is,|,['I'] -can brazen,['it'] -late Mr.,['Holmes'] -a verbatim,['account'] -roadway was,['blocked'] -seems exceedingly,['complex'] -take advantage,['of'] -danger which,['threatens'] -good-fortune did,['you'] -Surrey lanes,['It'] -if anyone,|['were', 'could']| -Norton came,['running'] -ear is,['a'] -and draughts,['with'] -Arnsworth Castle,['business'] -wooden walls,['though'] -his plate,['I'] -bedroom again,['where'] -with all,|['the', 'this', 'that', 'its', 'who', 'my', 'his']| -far as,|['I', 'you', 'Aldersgate', 'it', 'the', 'we', 'he', 'my', 'to', 'Reading']| -Did your,['father'] -done cried,['I'] -the worth,['of'] -would all,['have'] -red-headed men,|['who', 'so']| -spot at,['which'] -laughed. It,['is'] -window is,|['upon', 'a', 'the']| -I describe,['who'] -ceremony did,['you'] -forgiven and,['forgotten.'] -had it,|['not', 'from', 'must']| -time there,['are'] -to interfere,['solemn'] -indeed he,|['With', 'has']| -and several,|['well-dressed', 'scattered', 'robberies']| -stood with,|['her', 'his']| -drive at,['seven'] -find him,['in'] -lamp I,['saw'] -and examined,|['it', 'with', 'each', 'the']| -cover of,['the'] -too late,|['to', 'said', 'Mr.', 'and']| -had fainted,|['at', 'on']| -bureau. I,['hope'] -slope thickening,['into'] -marshy ground,['as'] -was after,['five'] -doctor affected,['There'] -crime is,|['in', 'the']| -a moment,|['later', 'when', 'he', 'to', 'They', 'that', 'from']| -face A,['twitch'] -crime it,['is'] -dangerous man,|['to', 'I']| -found as,|['I', 'so', 'had']| -mind me,['in'] -sticks Holmes,['dashed'] -ship last,['night'] -mind my,['saying'] -often connected,['not'] -truth" he sank,['his'] -story we,['were'] -affair Presently,['she'] -to suppose,['that'] -he sir!,['Oh'] -trifling cause,['You'] -the grey,|['cloth', 'walls', 'gables']| -will prejudice,['your'] -were true,['the'] -yourself in,|['every', 'the', 'your', 'a', 'any', 'doubt']| -course but,['very'] -narrative of,['the'] -him On,['the'] -gigantic ball,['and'] -smiling you,['would'] -ever forget,['that'] -forward threw,['her'] -a distracting,['factor'] -house they,['have'] -little pale,['lately'] -visitor answered,['glancing'] -left arm,|['and', 'of']| -disappointment I,['have'] -the Morning,['Post'] -they were,|['compelled', 'at', 'They', 'burrowing', 'sent', 'typewritten', 'really', 'frequently', 'going', 'peculiar', 'all', 'always', 'posted', 'too', 'the', 'of', 'bolted', 'made', 'very', 'hardly', 'such', 'identical']| -Your right,['hand'] -lady clad,['in'] -him What,|['did', 'will']| -of Ross,['A'] -than anything,['which'] -breakfast with,|['him', 'the']| -moment in,['front'] -sitting-room which,['was'] -more cunning,['than'] -treble K,['which'] -invariable success,['that'] -serpent is,['a'] -has hardly,['served'] -by Arthur's,['closing'] -whose biographies,['I'] -souls which,['are'] -will bring,['up'] -has thoroughly,['understood'] -|Bradstreet, sir|,|['Bradstreet,']| -are hurrying,['up'] -of God,['goes'] -me He,|['was', 'looked', 'opened', 'burst']| -conviction with,['them'] -been cause,['and'] -an advertisement,|['he', 'in', 'from', 'which']| -rather sad,['that'] -instant the,|['lady', 'smile']| -a friend,|['he', 'of', 'I', 'and', 'with', 'once']| -having quite,['made'] -struck cold,['to'] -let in,['light'] -McCarthy expected,['to'] -credit in,['the'] -|Alice son,|,['you'] -sir cried,['the'] -rather elementary,['but'] -when they,|['closed', 'were', 'talked', 'came', 'come', 'found', 'could']| -sharpened away,['into'] -DEAR MR,['SHERLOCK'] -Why dash,['it'] -the unpleasant,['night'] -standing question,['she'] -and effect,|['which', 'It']| -died within,['ten'] -We will,|['be', 'talk']| -carried away,|['likely', 'and']| -Sutherland and,['to'] -She would,|['rush', 'like', 'often']| -secure his,['absence'] -of one,|['of', 'who']| -save my,['partner'] -I coupled,['it'] -his quick,['all-comprehensive'] -generally successful,['you'] -interesting said,['Holmes'] -larger and,['older'] -on fire,|['her', 'asked', 'to']| -we emptied,['four'] -over my,|['plan', 'notes', 'violin', 'shoulder', 'Bradshaw']| -free That,['is'] -to arrive,['at'] -was intellectual,['answer'] -let your,['mind'] -conducted us,['down'] -holiday from,['my'] -feet why,['are'] -habit grew,['upon'] -an explanation,['was'] -then It,|['is', 'would']| -Is he,['not'] -cases Whom,['have'] -glances must,['not'] -all ready,|['for', 'in']| -fears are,['so'] -a character?,['perhaps'] -The alarm,|['of', 'however']| -them It,|['was', 'is']| -Alpha yes;,['I'] -private clothes,['who'] -his cane,['at'] -bending it,['with'] -already begun,['to'] -the horse's,['head'] -value said,['he'] -detail I,['have'] -continents you,['are'] -result that,['you'] -drops were,['visible'] -to avoid,|['scandal', 'the']| -yet borne,['a'] -hand for,['his'] -ever ready,['with'] -people saw,['him'] -knees For,["God's"] -key in,['the'] -flicking the,['horse'] -late hour,['last'] -swag I,['put'] -reached my,["sister's"] -every reason,['to'] -an appointment,|['with', 'of', 'at']| -flowers It,['was'] -smack smack,['Three'] -in drawing,['your'] -hands groping,['for'] -with propriety,['obey'] -out from,|['his', 'beneath', 'among', 'amid', 'the', 'a', 'under']| -new and,['effective'] -remembered that,|['you', 'Toller']| -strangers could,['hardly'] -three sides,['and'] -frightened about,['him'] -independent about,['money'] -Assizes on,['the'] -must confess,['that'] -friend whose,['warning'] -Some letters,['get'] -perhaps the,|['house', 'best', 'look']| -charm to,['an'] -centuries ago,['It'] -feel sure,|['of', 'is']| -arrested and,|['a', 'taken']| -on pretence,['of'] -trimly clad,['with'] -for goodness,['sake'] -upon Christmas,['morning'] -chemical work,['which'] -to Eyford,|['to-night', 'and']| -disgraceful one,['When'] -very decidedly,['carried'] -shall only,['be'] -his refusal,['to'] -I go,|['armed', 'wrong', 'certainly,', 'up']| -gave myself,['up'] -chosen doubtless,['as'] -more but,['calling'] -pinnacles which,['marked'] -the hurrying,['swarm'] -fail in,['the'] -quite good,['enough'] -other led,['us'] -enlarged at,['the'] -gloom one,['could'] -our geese,|['Whose,']| -Holder and,['I'] -always felt,['that'] -learned that,|['he', 'she', 'his']| -late Ezekiah,['Hopkins'] -just above,|['the', 'where']| -earth has,['that'] -lean ferret-like,['man'] -this clue,['while'] -looks a,['little'] -by someone,['who'] -her resolutions,['On'] -death from,|['McCarthy', 'accidental']| -the lamps,['were'] -sleepy people,['up'] -a foreigner,['and'] -few square,['miles'] -light from,|['its', 'my', 'above']| -Sit down,|['in', 'and']| -myself into,['a'] -great hand-made,['London'] -at such,|['a', 'an']| -into court,|['at', 'For']| -side A,|['blow', 'large']| -a bland,['insinuating'] -part my,['own'] -with broad,['iron'] -door no,['one'] -past V,['THE'] -might settle,['his'] -bed was,|['a', 'clamped']| -Stoper will,['do'] -observer excellent for,['drawing'] -was anxious,['to'] -stay at,['home'] -send him,|['away', 'home']| -walking amid,['even'] -a shilling,['of'] -Mr Hosmer,['Angel'] -matter between,['this'] -it thank,['your'] -Besides what,['use'] -course it,|['was', 'is']| -true that,|['I', 'you', 'For', 'the']| -Victor Hatherley,['hydraulic'] -remarkable results,['The'] -course in,|['your', 'America']| -nor your,['son'] -the handcuffs,['clattered'] -passed her,['hand'] -be cleared,|['up', 'along']| -and leading,['to'] -observed taking,['up'] -Stay where,['you'] -ship And,['now'] -had cured,['of'] -favour of,|['a', 'such', 'it', 'the']| -accompanied her,['back'] -stride His,['boots'] -bare feet,['opened'] -words Valley,['is'] -loans where,['the'] -me along,['here'] -apology for,['my'] -down there,|['I', 'The', 'and']| -with an,|['inflamed', 'appearance', 'old', 'oath', 'inspector', 'ounce', 'alias', 'opal', 'excellent', 'ashen']| -really became,['bad'] -have everything,['in'] -taken up,|['by', 'my']| -1869 and,['beneath'] -heard it.,['I'] -before evening,|['have', 'was']| -Whatever he,['wanted'] -now you,|['see', 'must']| -with at,['least'] -unlocked the,['door'] -Cooee! before,|['he', 'seeing']| -with as,['little'] -events Mr,['Windibank'] -of where,['we'] -on Monday,|['at', 'last', 'and', 'he', 'morning.']| -Arms where,['a'] -brave for,['if'] -hand screaming,['out'] -were unconscious,['must'] -of commerce,['flowing'] -this most,['pitiable'] -was I,|['take', 'to', 'found', 'then', 'did', 'gave', 'determined', 'I']| -manage to,['secure'] -clever man,['turns'] -a Bible,['Oh'] -too excited,['in'] -can come,['to'] -defiantly at,['Lestrade'] -you've lost,['your'] -losing a,['client'] -was a,|['loud', 'mews', 'lawyer', 'delicate', 'remarkably', 'lovely', 'quarter', 'group', 'smart', 'false', 'red-headed', 'double', 'good', 'solicitor', 'manufactory', 'prank upon', 'pretty', 'lad', 'poky', 'formidable', 'quarter-past', 'long', 'royal', 'small', 'curious', 'lure', 'sign', 'teetotaler', 'tap', 'plumber', 'very', 'sturdy', 'considerable', 'man', 'wild', 'prisoner', 'confession', 'usual', 'common', 'widespread', 'narrow', 'third', 'certainty', 'strange', 'devil', 'young', 'close', 'dweller', 'patentee', 'singular', 'youngster', 'mass', 'paper', 'movement', 'broad', 'ring', 'middle-sized', 'pale', 'schoolmaster', 'rush', 'fine', 'wooden', 'heavy', 'little', 'large', 'bitter', 'member', 'nipper', 'cold', 'late', 'peculiar', 'perfect', 'homely', 'cheetah', 'dummy', 'gentleman', 'deposit', 'comparatively', 'chestnut', 'rich', 'quiet', 'wonderfully', 'labyrinth', 'slight', 'cool', 'great', 'few', 'paragraph', 'king', "moment's", 'dear', 'parallel', 'light', 'previous', 'bright', 'name', 'national', 'distinct', 'good-sized', 'plainly', 'magnificent', 'cracked', 'happy', 'struggle', 'hundred', 'disgraceful', 'brief', 'widower', 'nonentity', 'week', 'beautiful', 'giant', 'skylight', 'chance']| -everything with,['reference'] -laughter I,['put'] -front It,['was'] -me rather,['roughly'] -several points,['on'] -our police,['reports'] -whitewashed but,['all'] -quietly now!",['cried'] -and finely,['adjusted'] -encouraging to,['his'] -with dull,['persistence'] -still hot,['all'] -seen in,|['black', 'my', 'the']| -been trained,['as'] -|dream dazed,|,['I'] -asleep said,['he'] -token before,['them'] -Road we,['crossed'] -clang which,['might'] -very pleased,['but'] -room on,['pretence'] -of newspapers,['until'] -the veins,['stood'] -don't back,['into'] -appointment at,['Halifax'] -yourself struck,['by'] -vulnerable from,['above'] -anxiety owe,['you'] -next day,|['to', 'I', 'had,"', 'we']| -selfish and,['heartless'] -furniture save,['a'] -been in,|['part', 'China', 'failing', 'Australia', 'his', 'the', 'some', 'my']| -have solved,['it'] -cousin Arthur,['is'] -bank directors,['with'] -its silence,['broken'] -money Mr,['Holmes'] -leading to,['the'] -Christmas My,['pence'] -any light,['upon'] -swimming for,['the'] -chance did,['that'] -home after,['the'] -these German,['people'] -the contemplation,['of'] -and high,['roof-tree'] -device for,['obtaining'] -nervously at,['the'] -one you,['observe'] -jerked his,|['thumb', 'hands']| -nicely upon,['an'] -keeping of,['us'] -quite willing,['to'] -completely Until,['after'] -revealed the,['same'] -enough if,['the'] -rather earlier,['than'] -this Vincent,['Spaulding'] -round this,['man'] -a mining,['camp'] -joking Holmes,['in'] -than himself,|['for', 'upon', 'seems']| -it won't,|['be', 'do really', 'said', 'do']| -much responded,['his'] -found again,['then'] -full justice,|['in', 'for']| -another said,['he'] -whimsical little,['incidents'] -and absolutely,['uncontrollable'] -Union I,['think'] -had pressed,['right'] -rope or so,['we'] -but whether,['north'] -referred the,['case'] -He wanted,['her'] -important position,['which'] -conduct complained,['of'] -Leadenhall Street and ,['office?"'] -not your,["husband's"] -men accompanied,['her'] -anyone is,['to'] -head from,['left'] -however said,['Bradstreet'] -my claim,['took'] -explain your,['process'] -considerable household,['some'] -him Mademoiselle's,['address'] -Holmes staggered,['back'] -will at,['the'] -facts which,|['may', 'have', 'are']| -has not,|['sent', 'heard', 'done', 'been', 'a', 'had', 'troubled', 'entirely', 'already', 'detracted']| -exactly similar,['circumstances'] -has now,|['fallen', 'definitely', 'been']| -the foot-path,['over'] -great goodness,['to'] -right have,['the'] -of strong,['character'] -Coroner: Did,['your'] -full face,['of'] -returned some,['years'] -taking up,['a'] -his head,|['sunk', 'thrust', 'with', 'indeed?', 'on', 'than', 'terribly', 'and', 'smashed', 'It', 'cocked', 'The', 'like', 'As', 'from', 'I', 'to', 'solemnly', 'against', 'the', 'before', 'again', 'gravely']| -happen if,['I'] -our horse,['and'] -not our,['geese'] -the working,['of'] -many objections,['to'] -but make,['such'] -same feet,['He'] -were taking,['coffee'] -John? he,['stammered'] -her muff,['and'] -looked at,|['it', 'the', 'his', 'me']| -past her,['but'] -person Yet,['the'] -answer Holmes,|['clapped', 'pushed']| -looked as,['if'] -letter had,['also'] -Miss Stoper,|['She', 'was', 'will', 'I']| -track for,['years'] -narratives beginnings,['without'] -pain We,['were'] -books and,['alternating'] -particular I,['invited'] -Holmes who,['loathed'] -could possibly,|['need', 'have', 'be']| -house you'll,['find'] -bee in,['my'] -morning before,['and'] -The streaming,['umbrella'] -way homeward,['down'] -their children,['This'] -Philadelphia which,['would'] -policeman who,['may'] -ordinary merit,['All'] -moonshine is,['a'] -a presumption,['that'] -margins which,['lay'] -me wish,['to'] -either worthless,['or'] -strange!" muttered,['Holmes'] -two twinkled,['dimly'] -lay silent,['but'] -brougham Sherlock,['Holmes'] -been seen,|['upon', 'There']| -comfortable-looking building,['two-storied'] -gang was,['at'] -grip of,['some'] -to satisfy,|['him', 'my']| -use her,['money'] -think the,['deepest'] -out every,['quarter'] -a silent,['pale-faced'] -law I,['fear'] -his ordinary,['clothes'] -the duties,['of'] -laughing Besides,['we'] -whatever bears,['upon'] -has died,['within'] -to weigh,['very'] -matters We,['descended'] -and indicated,['a'] -night with,['a'] -market and,['I'] -sea-weed in,['a'] -for having,|['too', 'read', 'cleared', 'acted']| -fire Oscillation,['upon'] -duties of,['the'] -hope a,['wild'] -was impossible,['for'] -giving you,['a'] -was instantly,|['opened', 'arrested']| -that blotting-paper,['has'] -wood? the,['same.'] -we resided,['with'] -place is,|['quite', 'in']| -English families,['and'] -|loving, MARY. could|,['she'] -terror her,['hands'] -rather cumbrous,['The'] -ought to,|['be', 'lay', 'know', 'ask', 'have']| -case Miss,['Stoper'] -place in,|['connection', 'my']| -been swept,['away'] -from between,['his'] -my legs,['upon'] -the insolence,['to'] -dog lash,['hung'] -niece Mary,|['has', 'They']| -best attention,['slow'] -and burly,['man'] -a mystery,|['I', 'said', 'to', 'were']| -any case,|['within', 'we', 'it']| -field Besides,['we'] -wear any,['dress'] -by smearing,|['my', 'them']| -all their,['habits'] -the lane,|['came', 'and', 'where', 'I', 'yesterday']| -my cashier,['I'] -and glanced,|['my', 'through', 'across', 'at', 'over']| -full-sailed merchant-man,['behind'] -depot That,['carries'] -by studying,['their'] -and act,['shall'] -other answered,|['He', 'with']| -this Cooee!,['then'] -injuries There,['is'] -subject We,['guard'] -few paces,['of'] -arms akimbo,['what'] -journey to,['a'] -thought no,['more'] -showing me,|['the', 'a']| -ears for,['the'] -recent occurrences,['perhaps'] -new raised,['from'] -tradesmen's entrance,['On'] -flecked with,['little'] -showing my,['impatience'] -very peculiar,|['in', 'words', 'about']| -wrong and,['that'] -carriage came,|['round', 'to']| -all hastening,['in'] -to disown,['it'] -woman whose,|['name', 'anxious']| -|angry, Robert|,['said'] -remain firm,['upon'] -he He,|['was', 'slipped']| -assistant counts,['for'] -returned towards,['Hatherley'] -the house,|['shortly', 'of', 'a', 'about', 'Four', 'this', 'more', 'I', 'for', 'into', 'What', 'she', 'any', 'again', 'and', 'with', 'Holmes', 'was', 'It', 'As', 'showing', 'he', 'She', "you'll", 'The', 'after', 'before', 'thus', "won't", 'to', 'Arthur', 'where', 'they', 'across', 'continued', 'however', 'but', 'which', 'There', 'even', 'We']| -should your,['son'] -lead pencils,['and'] -her initials,['is'] -it hadn't,['been'] -asked had,['I'] -singular series,['of'] -figure His,['slow'] -copying of,['the'] -manner which,['is'] -was beautifully,['defined'] -anteroom and,['are'] -Then you,['think'] -that bit,['of'] -the latter,|['it', 'raise', 'as', 'days', 'knocked', 'may', 'how', 'was']| -small saucer,['of'] -bear" he gave,['a'] -remembrance said,['he'] -Holmes but,|['when', 'you', 'I']| -joint upon,['the'] -dissatisfied with,['the'] -beer should,['be'] -patting her,['forearm'] -an address,['May'] -in London quite,['so'] -this thing,|['up', 'has']| -the sight,|['of', 'sent', 'Mr']| -entirely upon,['small'] -authorities The,['case'] -served by,['affecting'] -be shown,|['into', 'that']| -ceremony the,['other'] -for things,['of'] -whether you,|['be', 'had', 'were', 'have']| -happiness a,['terrible'] -much is,['fairly'] -suddenly sprang,|['out', 'up']| -give Lucy,['the'] -been married,['about'] -you alone,['rose'] -dropped some,['part'] -From what,['you'] -folk that,['we'] -much if,['he'] -am one,['of'] -fellow a,['Lascar'] -much in,|['error', 'a', 'the', 'society']| -surrounds me,['At'] -sole my,['dear'] -lamp nearly,['fell'] -before but,['a'] -preposterous position,['in'] -to preserve,|['a', 'it', 'my', 'this', 'impressions']| -and stormy,['so'] -fellow I,|['know', 'would', 'congratulate']| -relatives I,['can'] -fate But,['what'] -politics were,['marked'] -single man,['could'] -once upon,['my'] -mad if,|['I', 'it']| -save you,['This'] -club again.,['a'] -sill when,['his'] -questioning glance,|['from', 'at']| -been suddenly,['dashed'] -taken out,['of'] -standing open,['He'] -says she,|['said', "we've"]| -country looking,['for'] -What danger,['do'] -Elias emigrated,['to'] -most select,['London'] -who as,['you'] -a date,|['you', 'during']| -Bradshaw said,['he'] -crowded thoroughfare,['in'] -haze but,['nothing'] -valid I,['have'] -and written,['a'] -small job,|['in', 'and']| -convinced from,|['his', 'what', 'your']| -speak calmly,['I'] -front to,['two'] -splashed and,['pattered'] -has only,['been'] -China I,['have'] -cruel merely,['for'] -So Now,['he'] -must come,|['round', 'out', 'back']| -laughter whenever,['he'] -start and,|['looked', 'dropped', 'stared']| -transferred the,['photograph'] -staring about,['him'] -it saw,['In'] -of sensationalism,|['which', 'for']| -all trampled,['down'] -landlady informed,['me'] -intrigue That,['however'] -you going,['to'] -servant would,['stay'] -he shook,|['his', 'out', 'himself']| -from which,|['he', 'we', 'all', 'I', 'these', 'the', 'it']| -be indicated,['by'] -such difficulties,['Sherlock'] -side window,['of'] -standing fully,['dressed'] -caught a,|['glimpse', 'hurried']| -incarnate I,['tell'] -and walk,['rapidly'] -strong balance,['of'] -rattling away,['to'] -fresh information,['which'] -a locket,['and'] -making friends,['and'] -shall both,['come'] -hand out,['the'] -use to,|['me', 'anyone']| -|morning, at|,['a'] -preoccupied with,['business'] -must fall,['a'] -stood out,|['like', 'at']| -tucked his,['newly'] -stood our,['horse'] -strongly marked,|['German', 'face']| -I." is,['half-past'] -Gang day,['a'] -soon be,|['able', 'a', 'solved']| -elastic-sided boot,['in'] -lay half-fainting,['upon'] -turned with,['the'] -of unusual,['strength'] -read this,['epistle'] -not yourself,|['think', 'look', 'at']| -open and,|['an', 'we', 'a', 'empty', 'she', 'Peterson', 'that', 'the']| -know Juryman:,['Did'] -here always,['Kindly'] -scene when,['I'] -felony would,['slam'] -been fixed,['for'] -your confederate,['Cusack and'] -and ambition,['the'] -facet may,['stand'] -select London,['hotels'] -no attempt,['to'] -leave Outside,['the'] -orange hair,['a'] -I wanted,|['so', 'your']| -bell-ropes and,['ventilators'] -Whittington The,['whole'] -Holmes that,|['I', 'this', 'you', 'when', 'a', 'we', 'is', 'she', 'to']| -head the,['night'] -buttoned right,['up'] -her sleeves,['which'] -central block,['of'] -the outside,|['well-groomed', 'air', 'of']| -extending the,['franchise'] -parallel instance,['in'] -be visible,|['to', 'from']| -fury with,['which'] -his friend,|['or', 'the', 'I', 'Sir', 'He']| -this country,['that'] -Where does,['the'] -story with,['a'] -this smooth-faced,["pawnbroker's"] -this day,|['eight', 'I']| -Why shouldn't,['we'] -out which,['was'] -wishes Twice,['my'] -note leaning,['back'] -softly in,['the'] -shot one,['of'] -temptation of,['sudden'] -dignity of,['his'] -which may,|['have', 'arise', 'be', 'help', 'assist', 'go']| -search Ordering,['my'] -people up,['out'] -shillings made,['all'] -languor in,['his'] -us everything,['that'] -paper flattened,['out'] -crate and,['do'] -the official,|['police', 'force', 'detective']| -We guard,['our'] -upon to,['fathom'] -needed If,['I'] -be light,['and'] -home all,['safe'] -three bedrooms,['opened'] -raised the,|['alarm', 'sleepers']| -truly formidable,['as'] -been expecting,['was'] -occupy I,['have'] -mind was,|['so', 'far', 'now', 'soon']| -It laid,['an'] -passage opened,['a'] -is good too,['good'] -on outside,['and'] -bed all,['palpitating'] -man bent,['on'] -and forger,["He's"] -o'clock train,['so'] -85 my,['suspicion'] -bad effect,['upon'] -But why?,['during'] -business matters.,['assured'] -my trifling,['experiences'] -and sleeve,['were'] -memory and,['my'] -in favour,['of'] -too limp,['to'] -lighting with,['it'] -woman could,['be'] -status of,['my'] -to ascertain,['amount'] -of lead,['foil'] -funniest stories,['that'] -a voice,['which'] -Mr Hatherley's,['thumb'] -every nerve,['in'] -sweet and,['wholesome'] -so out,['of'] -may never,['be'] -enough certainly,['But'] -does so,|['here', 'when']| -my errand,['However'] -half round,['to'] -encyclopaedias is,['a'] -cushioned seat,['Both'] -thin volume,['and'] -very words,['which'] -your aunt's,['at'] -man solemnly,['Your'] -boisterous fashion,['and'] -helped in,['the'] -know where,|['it', 'to', 'the', 'he', 'her', 'they']| -peculiar boots,['his'] -the dangerous,['company'] -secure it,['The'] -man's handwriting,['Unless'] -green-scummed pool,['which'] -had met,|['me', 'with', 'a']| -each tugged,['at'] -surprised me,|['surely,']| -street am,['ashamed'] -calling for,['my'] -have occasionally,['hung'] -dad. good-night.',['I'] -very letters,['But'] -It cost,['me'] -rain was,['beating'] -ill-usage at,['the'] -beryls in,|['the', 'it']| -must use,['the'] -and capable,['of'] -fianc and no,['doubt'] -bringing help,['to'] -interest cannot,['now'] -his daily,['seat'] -lady as,|['this', 'we']| -If ever,['circumstantial'] -pulled a,|['gold', 'dirty', 'little']| -claim an,['income'] -practice is,|['never', 'easier']| -along the,|['line', 'track', 'corridor', 'passage', "tradesmen's", 'entire']| -lock made,['our'] -Mr Duncan,['Ross'] -and began,['to'] -first was,['from'] -Horsham clay,['and'] -well be,['cleared'] -of body,['and'] -the last,|['post', 'three', 'two', 'extremity', 'court', 'generation', 'item', 'train', 'human', 'man', 'straggling', 'six', 'few', 'witness', 'entry', 'eight', 'month', 'survivor', 'century', 'echoes', 'train.', 'time', 'week']| -survivor from,['a'] -rigid attitude,['but'] -Bohemian nobleman,['I'] -funny I,['am'] -the elastic,|['was', 'and']| -the edge,|['there', 'In', 'A', 'of', 'came']| -person is,['imprisoned'] -laughing The,['matter'] -very stupid,['but'] -put out,['his'] -secure your,['co-operation'] -who taketh,['the'] -the pretty,['little'] -at low,['tide'] -could offer,['an'] -pressing in,['one'] -in May,['1884 there'] -pal again,['presently'] -cellar which,['was'] -at stake,['and'] -clouds in,['the'] -allude to,['my'] -customer of,['his'] -learned from,['her'] -water-police the,['body'] -Had she,['seen'] -can that,['be'] -sat silent,|['for', 'while']| -lost an,['acute'] -must set,['ourselves'] -read De,["Quincey's"] -fact which,['you'] -pitch dark,['inside'] -Someone in,['the'] -Temple and,['she'] -my town,['suppliers'] -nervous shock,['though'] -departed is,['very'] -unmistakable signs,['of'] -her wit's,['end'] -an imprudence,['to'] -better take,['a'] -imagine a,|['more', 'man']| -I came,|['right', 'again', 'to', 'into', 'down', 'straight', 'in', 'for', 'upon', 'home', 'upstairs']| -got before,['I'] -hotels There,['are'] -very man,|['McCarthy', 'whom']| -sound became,['audible a'] -unacquainted with,['his'] -projecting bones,['It'] -yesterday occurred,['on'] -eyes heavy,['like'] -task to,['find'] -as hard,['as'] -judged it,['best'] -befallen you,['name'] -my bed,|['He', 'wrapped', 'about', 'trembling']| -terrible pain,['and'] -seated in,['my'] -this emaciation,['seemed'] -some words,['of'] -what else,['I'] -much Do,['you'] -think necessary,['I'] -the thud,['of'] -So Frank,['took'] -emptied four,['of'] -in Serpentine,['Avenue'] -metal in,['the'] -are still,['sounding'] -with cigars,['in'] -stirred by,['the'] -coloured deeply,['and'] -unlocked Within,['was'] -offer so,['pitiful'] -is thought,['that'] -a confectioner's,['man'] -pomposity of,['manner'] -was little,|['short', 'difficulty']| -your narrative,|['I', 'St.', 'years']| -asking to,['be'] -very significant,['allusion'] -preserved her,['secret'] -glasses slight,['infirmity'] -and resolute,['she'] -and cast,['his'] -usual but,['I'] -whiskers sunk,['that'] -their employ,['James'] -building far,['I'] -cellar on,['some'] -their father,['My'] -account nine,['and'] -I walked,|['round', 'behind', 'across', 'to']| -cellar of,['the'] -were flirting,['with'] -breakfast on,['either'] -Crown Inn,|['which', 'They']| -characterises you,['You'] -and acknowledge,['that'] -his verbs,['It'] -take Kindly,['sign'] -yards however,['when'] -the fireplace,|['cross-indexing', 'he', 'I']| -them when,|['up', 'starting', 'the', 'I']| -investigation am,['delighted'] -only remained,['your'] -week we,['were'] -ready in,|['a', 'case', 'waiting']| -night Police-Constable,['Cook'] -and well-cut,['pearl-grey'] -admirers who,['have'] -long was,['he'] -we wish,|['your', 'you']| -felt that,|['an', 'I', 'the', 'he', 'it', 'there', 'you']| -have told,|['me', 'him', 'you', 'my']| -hoped to,['find'] -was increased,['by'] -cruelly I,['have'] -me clutching,['at'] -bounded it,['on'] -octavo size,['no'] -will now,['wish'] -asked there,['are'] -will not,|['sell', 'look', 'be', 'lose', 'touch', 'believe', 'take', 'sleep', 'go', 'fit', 'appear', 'suffer', 'tell', 'say', 'prevent', 'let', 'stand', 'have']| -o'clock tomorrow,['evening'] -of Major-General,['Stoner'] -a photograph,|['and', 'which', 'but']| -being able,['to'] -wagons on,['the'] -was given,|['us', 'and', 'It']| -matter probed,['to'] -a light-house,['was'] -late in,['the'] -my preference,['for'] -match-seller but,['really'] -It seemed,|['altogether', 'funny', 'strange', 'to', 'likely']| -the conclusion,|['that', 'of', 'and']| -ulster who,['had'] -thumb upon,['a'] -|family this,|,['of'] -a sitting-room,['and'] -many as,['you'] -satisfaction This,['is'] -the dark,|['incidents', 'do', 'am', 'course', 'hollow', 'road', 'to', 'will']| -an ill-service,['to'] -And the,|['man', 'pay?', 'flap', 'Rucastles']| -by these,['charming'] -steadily increased,['and'] -handing it,['back'] -shuddered to,['think'] -is Where,['are'] -her chair,['with'] -indeed well,['known'] -appears to,|['me', 'have', 'be', 'tell']| -to confess,|['I', 'that']| -jollification and,['was'] -he couldn't,['slip'] -the intrusion,['of'] -in wait,['for'] -East London,['What'] -like just,['to'] -the coat,['then'] -the beaten,['track'] -side right,['side'] -the Lascar,|['stoutly', 'manager', 'but', 'was', 'entreated', 'at']| -a hoarse,['yell'] -at typewriting,['It'] -here to,|['the', 'avoid', 'Charing', 'ask']| -had borne,['the'] -butler to,['death'] -have to,|['let', 'play', 'be', 'deal', 'answer', 'go', 'communicate', 'tell', 'come']| -sister but,['of'] -utterly crushed,['Holmes'] -back turned,|['not', 'towards']| -her father,|['followed', 'became', 'brought', 'married', 'thought']| -were interested white,['with'] -one positive,['virtue'] -determine As,['to'] -they believe,['me'] -Arthur who,|['had', 'took']| -heard nothing,|['yourself', 'of']| -child in,['the'] -he poor,['fellow'] -away somewhere,['where'] -|deranged really,|,['when'] -wife and,|['I', 'in', 'even', 'of', 'the']| -tie my,['handkerchief'] -took Hosmer Mr,['Angel was'] -asked You,['see'] -without rest,['turning'] -so. I,|['ought', 'congratulate']| -truth At,['the'] -very neat,['and'] -were good,['enough'] -is herself,['the'] -foolscap and,['I'] -seat Miss,['Hunter'] -beat The,['inspector'] -pulled at,|['the', 'our']| -possible solution,|['I', 'Mr']| -man Irene,['Adler'] -nature. He,['stepped'] -looked upon,|['as', 'it', 'her']| -my fortune,['to'] -which such,['a'] -with poor,|['helpless', 'ignorant']| -risen out,['of'] -cause You,['say'] -been brought,['there'] -told you,|['that', 'she', 'was', 'you', 'yesterday', 'about', 'the', 'all']| -tweed with,['a'] -upon it,|['It', 'French', 'there', 'said', 'further', 'and', 'as', 'We', 'Why', 'five', 'not', 'Have', 'are', 'Close', 'the', 'all', 'but']| -that here,['was'] -accurate description,['of'] -laid him,['upon'] -she distinctly,['saw'] -light upon,|['them', 'what', 'the']| -down and,|['let', 'flattening', 'his', 'do', 'talked', 'indistinguishable', 'began']| -door Recently,['he'] -receded And,['what'] -a chink,['between'] -into its,|['hole', 'crop', 'place', 'den']| -John the,['coachman'] -been known,['as'] -of Tottenham,['Court'] -so precious,['a'] -broken and,['blocked'] -little doubt,|['caught', 'that']| -at through,['this'] -a joy,['to'] -wound by,['a'] -been silent,['all'] -note DEAREST,['UNCLE: I'] -a job,['to'] -us spouting,['fire'] -coroner in,['his'] -pains Nothing,['of'] -black muzzle,|['and', 'buried']| -a real,['effect'] -We used,['always'] -was certainly,|['surprised', 'the', 'not']| -he still,|['held', 'refused']| -not my,['custom'] -fool I,['have'] -cab and,|['the', 'I', 'drove', 'seen', 'in', 'drive', 'go']| -You may,|['say', 'know', 'then', 'not', 'remember', 'rely', 'walk', 'safely', 'advise', 'set', 'go']| -runs down,|['by', 'the', 'into']| -end with,['knitted'] -remarked if,['it'] -not me,['I'] -cripple said,['I'] -alternation between,['savage'] -I glanced,|['down', 'at', 'in', 'back']| -people you,['know faddy'] -fool a,['builder'] -den until,['at'] -one out,['doubled'] -of moisture,|['on', 'upon']| -H B,['were'] -mustard Toller,['lets'] -any very,['pressing'] -ink and,['with'] -soles are,['deeply'] -yet my,['nerves'] -fellow says,['about'] -funny too,['for'] -precious coronet,['in'] -hand-made London,['we'] -your pains,['were'] -unpleasant thing,|['for', 'about']| -them who,|['were', 'it']| -follow the,['quick'] -is serious,|['serious?"', 'news']| -told inimitably,['Then'] -you beat,['the'] -his snuffbox,['of'] -this snow,['That'] -pipes The,['most'] -what on,['earth'] -Old Turner,['lived'] -His broad,['black'] -man catch,['him'] -what of,|['Irene', 'the']| -act of,['throwing'] -a local,['brewer'] -else how,['could'] -door yet,['there'] -many-pointed radiance,['Ryder'] -feel dissatisfied,['It'] -mind that,|['her', 'All', 'the']| -yours course!,['Very'] -cause you,|['They', 'no']| -deduce it,|['How', 'As']| -commence at,['100'] -providing of,['easy'] -few lights,['still'] -suddenly cut,['short'] -HOLMES: Lord Backwater,['tells'] -research must,['commence'] -mind than,['she'] -uneasiness about,['his'] -And where,['was'] -all those,|['who', 'birds', 'great', 'years', 'lords']| -will kindly,['explain'] -gain. He,['bowed'] -his general,['appearance'] -mystery and,|['to', 'the']| -warmly You,['will'] -so completely,|['overtopped', 'You']| -Eastern training,['The'] -been borne,['away'] -him twice,['for'] -chalk-pits which,['abound'] -be summoned,['Holmes'] -the ledger,['turned'] -ground On,['the'] -have eclipsed,['it'] -nothing which,|['presents', 'aroused', 'you']| -had engaged,['a'] -most instructive,['appeared'] -instant all,['the'] -I followed,|['you', 'Holmes', 'after', 'them']| -his Baker,['Street'] -veil entered,['the'] -its size,['and'] -red-head to,['be'] -their attempt,['to-night'] -grounds of,['my'] -not tend,['towards'] -and veil,['all'] -studying their,['children'] -lash which,['we'] -little nut,['for'] -bill led,['him'] -strayed into,['The'] -heartily with,['a'] -B were,['scrawled'] -have sworn,['it'] -the records,['Among'] -possible detail,['from'] -or you'll,['be'] -woman in,['a'] -hats If,['this'] -exactly what,|['it', 'you']| -expected obedience,['on'] -had had,|['so', 'ill-usage', 'an']| -pawnbroker out,['of'] -smooth patch,['near'] -surface Then,['it'] -extinguishes all,['other'] -warmly on,['my'] -the conventions,['and'] -monotony of,['the'] -that was,|['how', 'given', 'even', 'not', 'a', 'unfortunate', 'important', 'the', 'for', 'all', 'enough', 'black', 'surely', 'my', 'why']| -said during,['our'] -two rounds,['of'] -family have,['some'] -asked when,|['they', 'I']| -Nothing had,['been'] -not broken,['until'] -that way,|['I', 'has', 'and', 'when']| -to separate,['us'] -Fenchurch Street,|['you.', 'to']| -close there,['now'] -to place,["one's"] -lunch awaited,['us'] -doubt descend,['to'] -reconsidered your,['decision'] -has I,['believe'] -so but,|['I', 'he']| -now upon,['the'] -would soon,['rouse'] -medical instincts,|['I', 'rose']| -on Saturday,['the'] -values most,['It'] -that noble,['lad'] -the sum,|['which', 'I', 'and']| -the sad,|['tragedy', 'news']| -bijou villa,['with'] -happened sir,['said'] -creases of,['his'] -I learn,['the'] -now see,|['the', 'how']| -villain!" said,['he'] -Atkinson brothers,['at'] -the makings,['of'] -rat What,['could'] -instant that,|['we', 'I', 'she']| -hope back,['to'] -has a,|['soul', 'vacancy', 'brother', 'husband', 'passion', 'better-lined', 'gentleman', 'prior', "woman's", 'sweetheart']| -but just,|['as', 'to', 'left']| -problem presented,['by'] -you gather,|['from', 'yourself']| -machine and,|['I', 'to', 'took']| -bridegroom and,['Lady'] -dark punctures,['which'] -noble benefactor,['Are'] -your hair,|['is', 'quite', 'it', 'I', 'Hers']| -wedding At,['eleven'] -understand by,['that'] -and there's,['always'] -could solve,['anything'] -distance down,['Threadneedle'] -get no,['farther'] -hard man,|['would', 'she']| -the relentless,['keen-witted'] -should reach,['the'] -yawn and,['glances'] -which my,|['friend', 'special', 'mother', 'sister', 'son', 'employer']| -liver clay,['but'] -five as,['usual'] -implicit reliance,['upon'] -claim. She,['was'] -gentleman had,['left'] -be surprised,['if'] -quietly genial,['fashion'] -restive insisted,['upon'] -however there,|['were', 'was']| -children are,['the'] -nicely In,['that'] -very honest,['fellow'] -head than,['to'] -having recovered,['her'] -rusty black,['frock-coat'] -long low,['room'] -her as,|['she', 'he', 'true']| -youngster of,['twelve'] -wound upon,['my'] -her at,|['the', 'home', 'a', 'such', 'that']| -law Think,['of'] -security sufficient?,|['understand,']| -shuttered up,['They'] -head that,['was'] -her for,|['she', 'it']| -now!" cried,['the'] -had formerly,['been'] -bearing The,['streaming'] -Jem? says,['she'] -Star had,['arrived'] -you and,|['I', 'at', 'so', 'your', 'before', 'the', 'would', 'me', 'one', 'give', 'asking', 'in', 'to', 'that', 'how', 'afterwards', 'it']| -thought Our,['client'] -tint and,['the'] -morning then,|['to', 'I']| -face downward,['in'] -floor consisted,['of'] -you any,|['on', 'information', 'pleasure', 'doubt']| -colonel When,['Lee'] -reason therefore,['to'] -show very,['clearly'] -find what,['they'] -the longer,['time'] -rooms once,['more'] -night Dr,['Roylott'] -official force,['if'] -Did I,|['not', 'buy']| -appears is,['so'] -well have,['been'] -weeks passed,|['away', 'and']| -|surely, it|,['was'] -bequest of,['the'] -description I,['eliminated'] -said no,['more'] -ring at,['the'] -the month,['You'] -would rise,['to'] -striking when,['set'] -to sound,['him'] -preserve this,['coronet'] -furnishes a,['step'] -fellow with,['outstretched'] -not even,|['his', 'attached', 'the']| -him In,['the'] -Yes he,['continued'] -in public,['It'] -California and,['had'] -streets will,['be'] -den and,|['I', 'who', 'to', 'we']| -suggestive than,['it'] -taken place,|['and', 'in']| -of to-day,|['had', 'By']| -hers possibly her,['fianc and'] -every afternoon,['I'] -upon the,|['scent', 'table', 'stairs', 'ground', 'deep-sea', 'other', 'couch', 'injured', 'steps', 'palm', 'paper', 'desk', 'stair', 'fund', 'letter', 'amount', 'door', 'subject', 'mantelpiece', 'pavement', 'faded', 'flags', 'floor', 'top', 'stone', 'edge', 'barrel', 'chairman', 'platitudes', 'details', 'business', 'method', 'finger', 'case', 'shelf', 'sideboard', 'young', "man's", 'grass', 'right-hand', 'morning', 'cushioned', 'platform', 'sofa', 'left', 'grey', 'matter', 'path', 'farther', 'trampled', 'observation', 'inner', 'lid', 'envelope', 'inside', 'night', 'roads', 'sundial', 'red', 'arms', 'results', 'linoleum', 'newcomer', 'moonless', 'current', 'back', 'windowsill', 'wooden', 'sill', 'second', 'left-hand', 'window', 'premises', 'mud-bank', 'rug', 'fly-leaf', 'corner', 'previous', 'right', 'seat', 'lining', 'face', 'bridge', 'little', 'felt', "bird's", 'centre', 'charge', '22nd', 'day', 'dressing-table', 'slab', 'shoulder', 'few', 'lawn', 'white', 'pillow', 'bed', 'iron', 'violent', 'first', 'side-table', 'position', 'outer', 'arm', 'very', 'security', 'fire', 'point', 'heels', 'hall', 'scene', 'logic', 'crime', 'preceding', 'books?', 'page', 'road', 'drawing-room']| -shutter half,['open'] -|bitterly yes,|,['I'] -both Toller,['and'] -bonnet and,|['hurried', 'went']| -Ned in,['Auckland'] -epistle I,['remarked'] -a precursor,['of'] -Hunter. friend,['of'] -by cocaine,['and'] -For the,|['rest', 'love']| -Lane much,['so'] -twenty years,|['and', 'old', 'proof']| -household Mr,['Holmes'] -sitting still,['It'] -a shadow,|['pass', 'and']| -hand turned,['on'] -the tangled,['red'] -in before,['he'] -description tallied,['in'] -note And,['here'] -different It,['must'] -merely in,['order'] -has nothing,['to'] -and they,|['like', 'are', 'have', 'must', 'suggested', 'subdued']| -would pay,|['such', 'ten']| -my coil,['of'] -questioning gaze,['and'] -island of,['Uffa'] -and then,|['he', 'to', 'diving', 'after', 'down', 'off', 'conducted', 'without', 'with', 'afterwards', 'leaving', 'as', 'made', 'wandered', 'turned', 'My', 'Put', 'quick', 'suddenly', 'look', 'vanished', 'blotted', 'retire', 'settled', 'rubbed', 'only', 'at', 'withdraw', 'ran', 'all', 'if', 'pressing', 'I', 'pushing', 'for', 'the', 'Frank', 'began', 'returned', 'Good-bye', 'closing', 'had', 'composed', 'glancing', 'Mr', 'turn', 'up', 'a']| -expressive black,['eyes'] -love matter,['but'] -to-morrow As,['to'] -adventure Upper,['Swandam'] -I threw,|['up', 'off', 'open', 'all', 'myself']| -you in,|['ten', 'your', 'which', 'a', 'five', 'the', 'that', 'an', 'reference', 'yours', 'forming', 'money']| -neighbours These,['good'] -the features,['If'] -glared at,['the'] -two slabs,['of'] -right Oh,['I'] -becomes the,['badge'] -things from,['another'] -minutes silence,['Why'] -please and,|['solemnly', 'we']| -itself a,['monotonous'] -drug-created dreams,['and'] -visitor's knee,['Five'] -fault but,['on'] -moist was,['the'] -police-station is,['better'] -presently You,['have'] -I for,['the'] -wall The,['inspector'] -night-dress In,['her'] -you if,|['you', 'I']| -others but,['he'] -so just,['a'] -answered only,['in'] -The point,|['about', 'is']| -you pray,['consult'] -remember that,|['she', 'I', 'it', 'not', 'our', 'the']| -the loungers,|['and', 'in']| -many minor,['ones'] -salary do,['you'] -me are,|['I', 'you']| -doing or,['saying'] -since breakfast,['a'] -sheets in,['a'] -stepfather it,['happens'] -the initials,|['of', 'H', 'are']| -much stronger,['if'] -no water-mark,['Hum'] -presented which,['may'] -little good,|['with', 'Berkshire']| -come you,["can't"] -of disgraceful,['brawls'] -Hudson has,|['been', 'had']| -not answer,['forever'] -the drink,['the'] -Lestrade being,['rather'] -up mud,['in'] -seen walking,|['into', 'with']| -on an,['evening'] -save young,['McCarthy'] -recognise even,['the'] -massive boxes,['are'] -you again,|['this', 'wasted']| -and Armour,['and'] -on as,['unconcerned'] -us And,['now'] -time chatting,['about'] -Hatherley out,['and'] -little trying,['to'] -had already,|['noticed', 'been', 'begun', 'made', 'spoken']| -the means,|['you', 'of']| -raise a,['scandal'] -were opposed,['to'] -greater than,['I'] -and afterwards,|['under', 'returned', 'I', 'from']| -much about,['it'] -seeing that,|['there', 'I', 'he']| -a sheet,|['of', 'and']| -a sheep,['in'] -lamp beating,['upon'] -Court Road,|['and', 'In', 'The', 'at']| -The sewing-machine,['of'] -times during,['our'] -a winding,['stair'] -lower buttons,['out'] -corresponds with,['the'] -sheet he,['pointed'] -face At,['his'] -too transparent,['and'] -the visit,['to'] -of complaint,|['against', 'can']| -better Boone,['as'] -fringe of,|['her', 'little', 'grass', 'the']| -seems that,|['there', 'it', 'a']| -known something,['of'] -them But,['which'] -look out,['of'] -home-centred interests,['which'] -they say,['then'] -bloody deed,['This'] -Street Nothing,['had'] -I woke,['one'] -breadth seemed,['to'] -better for,['both'] -abjure his,['former'] -windows I,['take'] -thrust his,['long'] -relatives And,['now'] -inspector all,['on'] -approach this,['case'] -Prima donna,['Imperial'] -without his,['collar'] -with someone,['at'] -managed that,|['he', 'your']| -which lured,['her'] -nor artistic,['certain'] -A Frenchman,['or'] -power am,['sure'] -for walks,['but'] -peculiar yellow,['band'] -feature THE,['ADVENTURE'] -or certificates,['I'] -on to?",['to'] -Saturday the,['manager'] -envelope upon,['the'] -bed this,['morning'] -him also,['to'] -then withdraw,['quietly'] -fireplace I,['only'] -hands She,['passed'] -Hardy the,['foreman'] -which bind,['two'] -for blackmailing,['or'] -crime was,|['a', 'very']| -I endeavoured,['to'] -he refused,['to'] -ran he,['jerked'] -trap his,['arms'] -to thoroughly,['understand'] -distance But,['this'] -mystery clears,['gradually'] -city in,['a'] -hardly out,['of'] -and finger,['were'] -placed himself,['in'] -wedding-dress of,['watered'] -meantime is,['to'] -life-preserver from,['the'] -to happen,['while'] -me have,|['the', 'whatever', 'a', '200', 'it']| -price of,['the'] -rushed fiercely,['forward'] -to introspect,['Come'] -leave so,['precious'] -return for,['my'] -wrung together,['For'] -be careful,['for'] -of colour,|['they', 'had', 'into', 'upon']| -abandoned Holmes,['in'] -hear a,|['true', 'low', 'sound']| -shut and,['locked'] -loving couple,['at'] -immense faculties,['and'] -the sideboard,|['and', 'which', 'Holmes', 'sandwiched']| -still meeting,['in'] -we've set,['yours'] -Draw your,['chair'] -What have,|['we', 'I']| -were over,['however'] -and inference,['Therein'] -discoloured blue-tinted,['paper'] -box now,['and'] -this typewritten,['letter'] -his business,|['Sherlock', 'address', 'met', 'affairs']| -feet I,['was'] -a seven-mile,['drive'] -willing to,|['come', 'have', 'fill', 'undergo', 'give']| -may advise,['me'] -place implicit,['reliance'] -he misses,['me'] -returning it,['to'] -headed March,['1869'] -her ever,['since'] -envelope was,['a'] -he missed,['his'] -in rough,['scenes'] -seen At,['one'] -thinking so,['I'] -of considerably,['more'] -considered artistic,['I'] -looked hard,['at'] -a woman oh,['what'] -deeply stirred,['by'] -head smashed,['the'] -fellow who,['asked'] -was used,|['for', 'by', 'to']| -the disposition,['of'] -the bedside,['of'] -upon record,|['where', 'before', 'even', 'that']| -If on,['the'] -pouring down,['my'] -and stiff,|['is', 'for']| -me look,['up'] -was surprised,['to'] -banker impatiently,['when'] -because she,['had'] -of strangers,['having'] -zero I,['remember'] -law should,['have'] -trouble upon,['you'] -running hard,['with'] -of delirium,['sometimes'] -Turner's daughter,['who'] -twins and,|['we', 'you']| -his bare,|['throat', 'ankles', 'feet']| -of looking,|['personally', 'outside']| -ask advice,['I'] -are never,|['beaten', 'sold', 'likely']| -several places,|['A', 'although']| -of considerable,|['self-restraint', 'interest', 'value']| -client clutched,['it'] -China When,['in'] -premises you,["don't"] -and no,|['one', 'doubt', 'precautions', 'harm', 'signs', 'confession']| -end as,['to'] -services All,['red-headed'] -he returned,|['to', 'me', 'evidently']| -small ones,['Too'] -Baker I,['believe'] -blue-tinted paper,['he'] -dark eyes,|['which', 'and']| -need it,['I'] -most intimate,['personal'] -any region,['within'] -wives living,['They'] -strikes it,['the'] -assisting in,['the'] -however their,['efforts'] -call you,|['and', 'a']| -party is,|['complete', 'still']| -Boone as,['I'] -she swept,['silently'] -last but,['I'] -men This,['American'] -buildings Of,['these'] -ears If,['you'] -yes! In,['a'] -Moran dear,['Holmes'] -this terrible,['misfortune'] -arrested it,['seemed'] -little place,|['near', 'is']| -down so,['there'] -again fear,['not'] -a standing,['question'] -garden There,|['was', 'is']| -to are,['all'] -their reach,['good'] -complicates matters,['I'] -bedroom wall,['has'] -go upon,["There's"] -opened your,['bureau'] -find another,['such'] -asked sundial,['in'] -earth To,['me'] -night in,|['your', 'sorrow', 'my']| -it happened,['sir'] -us dear,['madam'] -are wandering,['rather'] -been deluded,['when'] -room will,['excuse'] -heavy roads,|['before', 'it']| -they brought,['you'] -Robert St,['Simon'] -said and,|['I', 'she', 'perhaps']| -my linen,['and'] -of Openshaw,|['from', 'and']| -up louder,['and'] -the body?,['dozen'] -jumped in,['before'] -the inquest,|['on', 'and', 'In', 'The']| -noiseless fashion,['which'] -our advertisement,['you'] -two forefingers,['between'] -purple plush,|['that', 'at']| -friend tore,['it'] -do Come,['Come!'] -I What,['could'] -me or,['anyone'] -There are,|['fourteen', 'several', 'one', 'a', 'windows', 'small', 'rumours', 'no', 'not', 'thirty-nine', 'grounds', 'only']| -explanation save,['that'] -the vault,['have'] -Majesty must,['pay'] -for gold,['kindled'] -branch of,|['the', 'one']| -lies the,['problem'] -horsey-looking man,['with'] -twitch brought,['away'] -low monotonous,['voice'] -me on,|['the', 'a', 'whom', 'Christmas', 'every']| -felt is,['my'] -voice see--her,["ladyship's"] -evening have,['had'] -is certain,|['therefore', 'Neither']| -formidable an,['antagonist'] -should retain,['her'] -the converse,['is'] -formidable as,['when'] -return I,['heard'] -Beryl Coronet?,['of'] -its wants,['I'] -Well then,|['here', 'said']| -from looking,['upon'] -perceive that,|['all', 'in']| -1000 pounds,|['for', 'is', 'a', 'My', 'apiece']| -not sleep,|['easy', 'that']| -satisfying its,['wants'] -not far,['from'] -suggest a,['better'] -enough the,['inspector'] -minor ones,['all'] -from every,['point'] -The richer,['pa'] -darkness shall,['I'] -for pity's,['sake'] -so in,|['order', 'ten', 'this']| -outbreak is,['a'] -room It,['was'] -and America,['to'] -ugly wound,['upon'] -so if,|['I', 'you']| -presumably well,['to'] -day however,['as'] -ear again,['so'] -book upon,['his'] -his identity,['as'] -so it,|['would', 'matters', 'was']| -muff and,['began'] -going right,['on'] -of bodies,['lying'] -packed and,['my'] -been ploughed,['into'] -been buried,['in'] -As regards,['your'] -centre by,['the'] -fists and,|['sticks', 'his']| -Holmes there,['were'] -name which,|['I', 'is']| -family misfortune,['like'] -land here,['and'] -the spoils,['of'] -given It,['is'] -sponge and,['then'] -know why,|['not', 'you', 'it']| -hat drawn,['over'] -in Tottenham,['Court'] -my niece,['but'] -pleasure than,['in'] -stories Chubb,['lock'] -pencil over,['here'] -jaw it,['is'] -how comical,['he'] -at Baker,['Street'] -your decision,['My'] -so secret,['Then'] -ago in,['a'] -room however,['that'] -|you yes,|,['sir'] -up from,|['the', 'below', 'him', 'behind']| -upon For,['goodness'] -pulling at,['the'] -the Leadenhall,['Street'] -only one,|['male', 'point', 'which', 'who', 'wing', 'you', 'matter', 'possible', 'thing', 'in', 'feasible']| -wouldn't miss,['your'] -wound of,['mine'] -must begin,['said'] -alone when,['she'] -been overseen,['by'] -man then,['ask'] -So it,['is'] -going on,|['outside', 'the', 'there', 'a', 'behind']| -Street upon,['the'] -Eg. Let,['us'] -again before,['evening'] -glancing down,['to'] -Watson Draw,['up'] -silence Why,|['should', 'does']| -Encyclopaedia down,['to'] -since then,|['to', 'During', 'he', 'and']| -soaked in,['water'] -magistrates at,['Ross'] -at recovering,['them'] -pre-existing cases,['which'] -very great,|['error', 'distance', 'astonishment']| -brave and,['sensible'] -usually preceded,['by'] -suffered if,['he'] -also but I,['managed'] -I dashed,['some'] -egotism which,['I'] -anyone else,|['She', 'But', 'to', 'in', 'while', 'sir,']| -Rucastle if,['I'] -tallied in,['every'] -The Copper,['Beeches'] -McCarthy's feet,['Twice'] -fellow can,['be'] -for news,['of'] -into this,|['dark', 'case', 'suite']| -no sooner,['out'] -more in,|['my', 'these']| -burned by,['your'] -room Miss,['Stoner'] -trout in,['the'] -still bleeding,['so'] -laughing at,['the'] -secret sorrow,['this'] -directors with,['the'] -crisis is,['over'] -beings all,['jostling'] -turn we,['never'] -songs and,['shouts'] -natural prey,['Briefly'] -can establish,['his'] -in Scotland,['one'] -can ask,['the'] -entirely a,['question'] -I He,|['opened', 'had']| -speckles which,['seemed'] -zero-point I,['fancy'] -nodded again,['not'] -stepfather I,['call'] -a much,['more'] -the dim,|['veil', 'light']| -no trace,['of'] -the farm,['or'] -a claim.,['She'] -raised from,['a'] -have overtaken,['me!'] -the accepted,['explanation'] -by questioning,['you'] -profited by,['the'] -me into,['a'] -by paint,['I'] -of investigation,['which'] -a peace-offering,['to'] -I satisfy,['myself'] -a lurid,['spark'] -leaning back,|['with', 'in']| -bag in,|['which', 'his']| -labyrinth of,|['gas-lit', 'small', 'an']| -peculiar in,['his'] -its effect,['is'] -look into,|['just', 'it', 'any', 'the']| -circle to,['begin'] -in avoiding,['the'] -where her,['husband'] -well justified,['observed'] -not confide,['it'] -cigar-shaped roll,['from'] -bill open,['I'] -Holmes demurely,['you'] -fish-monger and,['a'] -in truth,['recoil'] -carefully and,['asked'] -is headed,['Singular'] -which conveyed,['the'] -brown chest,['of'] -of learning,['and'] -be said,|['or', 'Holmes']| -observed Mr,['Merryweather'] -these parts.,['me!'] -his point,['of'] -mother when,['she'] -four times three,['times'] -the tail,|['of', 'quivered']| -were waddling,['about'] -to Covent,['Garden'] -it shorter,['to'] -is open,['gentleman'] -hardly finished,['when'] -Lestrade was,['staying'] -with these,|['details', 'dear']| -initials are,['so'] -occurred on,['the'] -many tons,['upon'] -caught his,['eye'] -only what,['had'] -has troubled,['you'] -you returned,['on'] -thief!' I,['roared'] -when drawn,['back'] -energy can,['save'] -encompass me,['am'] -their conundrums,['friend'] -through generations,['and'] -lime-cream These,['are'] -blanche tell,['you'] -situation am,['following'] -and springing,['down'] -alone than,['from'] -unknown I,['beg'] -value even,['more'] -starting upon,['their'] -my attentions,['to'] -his search,['he'] -now devouring,['the'] -put less,['weight'] -used in,['producing'] -three pipes,['four'] -safely say,['returned'] -used it,['before'] -for air,['they'] -sun were,['sufficient'] -Simon announced,['our'] -as an,|['actress', 'ornament', 'Indian', 'old', 'amateur', 'intellectual']| -to Baker,['Street'] -Obviously they,['have'] -strong reason,|['for', 'behind']| -sensation grew,['less'] -she ever,['gone'] -for about,['ten'] -passage through,['the'] -Company Now,['if'] -good.' He,['suddenly'] -returns at,['seven'] -advice which,['I'] -know Peterson,['the'] -escorted home,['in'] -guardianship but,['she'] -and glossy,|['you.', 'when']| -hold in,['my'] -said Jabez,['Wilson'] -son struck,['Sir'] -now my,['friend'] -them apart.,|['then,']| -it arrived,['that'] -find their,['way'] -the glare,|['and', 'of']| -and examining,['with'] -curiosity was,['almost'] -injections and,['all'] -and placed,['his'] -speeding eastward,['in'] -in absurd,['contrast'] -her husband,|['she', 'by', 'was', 'out', 'looking', 'at', 'Here', 'not', 'and', "yes,'"]| -far in,['satisfying'] -not only,|['a', 'what', 'hear', 'are', 'the', 'all', 'proficient', 'my', 'to', 'of']| -McCarthy left,['his'] -drunkard I,['ran'] -redder than,['mine'] -it had,|['ever', 'left', 'been', 'ended', 'come', 'indeed', 'dropped', 'not', 'I', 'died', 'gone', 'ceased']| -in are,['now'] -allowed to,|['remain', 'each', 'pay', 'go']| -fantastic than,['this'] -conviction for,['robbery'] -1100 pounds,['is'] -only deduce,['that'] -flying away,['after'] -woman cannot,['think'] -the world,|['has', 'It', 'IV.', 'that', 'to', 'for', 'did', 'I', 'Now', 'will']| -muster all,['our'] -book octavo,['size'] -along wonderfully,['You'] -a suggestive,['one'] -For half,['an'] -the impossible,['whatever'] -congratulate you,|['once', 'assure', 'warmly', 'again']| -get more,['worn'] -Burnwell should,['gain'] -outskirts of,|['the', 'Lee']| -deep mystery,['through'] -colonel was,['a'] -he frequently,['indulged'] -some wine,['and'] -story of,['the'] -up that,|['I', 'settles']| -quite follow,|['me', 'he', 'you']| -tons upon,['this'] -years the,['organisation'] -walking up,['and'] -reward you,|['This', 'for']| -again your,['father'] -from America,|['As', 'with', 'because']| -no; the,['real'] -examination traces,['of'] -yourself as,['to'] -had known,|['each', 'dad', 'him']| -yourself at,['fault'] -son of,|['the', 'Mr']| -day you,['understand'] -up on,['the'] -light shot,['out'] -your house,|['Good-night', 'in', 'last']| -up of,|['the', 'Irene', 'this']| -is wanting,['in'] -to admire,['the'] -serious for,|['dawdling', 'any']| -to puzzle,['it'] -off Mr,['Holmes'] -true And,['yet Well'] -for five,|['inches', 'I', 'minutes.', 'minutes', 'years']| -things in,['a'] -are well,['up'] -off colour,['I'] -suit me,|['very', 'Westaway']| -road to,['the'] -things it,['was'] -clearer proofs,['before'] -his top-hat,['to'] -shipwreck if,['I'] -the muscles,['are'] -instantly expired,['I'] -free-handed gentleman,['said'] -interim had,['had'] -inception and,['so'] -on sometimes,['stop'] -young lady's,|['stepfather', 'mind', 'expressive']| -my patient,|['but', 'Then', 'am']| -nothing said,['I'] -only lain,['there'] -middle one,['the'] -lane so,['vile'] -deep upon,['the'] -left in,|['possession', 'my', 'darkness']| -see who,|['will', 'agrees']| -an uncertain,['foot'] -over Then,['I'] -pretty well,['with'] -in convincing,['you'] -church I,['glanced'] -Turner was,['apparently'] -the years,|['82', 'that', 'of']| -a moustache,['and'] -see nothing,|['Presently', 'which', 'said', 'in']| -Commons where,['I'] -dead then,['died'] -could hardly,|['have', 'imagine', 'wander', 'pass', 'get', 'believe', 'resist', 'tell']| -morose and,|['disappointed', 'silent']| -key when,['someone'] -was breaking,|['through', 'when']| -simple-minded Nonconformist,['clergyman'] -before day,['I'] -carelessly If,['you'] -engaged in,|['clearing', 'my']| -Neville St,|['Clair', "Clair's"]| -moment there,['was'] -the love,|['of', 'and']| -face the,|['weight', 'matter', 'banker']| -knitted brows,['and'] -the commonplaces,['of'] -den when,['I'] -sins have,['overtaken'] -is used,['between'] -who first,|['finds', 'called']| -all He,['would'] -his bosom,['is'] -clink of,|['horses', 'our']| -we could,|['and', 'fly', 'see', 'find', 'bring', 'command', 'hear', 'easily', 'define']| -get into,|['the', 'any']| -commuting a,['felony'] -and son,['He'] -talked to,['her'] -settle with,['Mr'] -health for,['some'] -chair now,['with'] -pleasant cultured,['face'] -coming in,|['only', 'gushes', 'I']| -presence I,['am'] -A marriage,['has'] -was silent,|['and', 'once']| -considerable interest,|['in', 'he']| -us but,['she'] -Wilson that,['I'] -retorted upon,['me'] -difference It,['was'] -ventilator which,['vanished'] -every businesslike,['precaution'] -right there,|['before', 'and']| -approaching wedding,['At'] -his arm,|['To', 'There']| -the settee,['said'] -started for,['the'] -daylight for,['he'] -families Now,['for'] -true and,|['that', 'we']| -for self-restraint,['Disregarding'] -the inferences,['said'] -a sensitive,['instrument'] -beaten four,['times three'] -hauling after,['him'] -affair Every,['clue'] -sister Julia,['and'] -lounging in,['his'] -a smarter,['assistant'] -returned to,|['civil', 'the', 'France', 'his', 'Baker', 'life', 'England']| -did his,['but'] -to replace,|['it', 'them', 'his']| -God!" he,['cried'] -a week's,['accumulation'] -an affaire,['de'] -left of,|['me', 'the']| -yourself sir,|['took', 'said']| -town His,['extreme'] -her assistance,['The'] -merely shared,['with'] -miserable weather,['and'] -am baffled,['until'] -suggest anything,['greater'] -a shabby,['fare'] -now returned,['to'] -Thick clouds,['of'] -its snakish,['temper'] -break out,['hear'] -is absurd,['to'] -and may,|['read', 'be']| -very seedy,['and'] -only found,['in'] -|no, not|,['now'] -as pressing,['in'] -I repeat,['to-day'] -Well every,['moment'] -asked smiling,['the'] -a brilliantly,['scintillating'] -should perch,['behind'] -year 1878,['after'] -national possession,['a'] -and What,['will'] -But he,|['could', 'is', 'has']| -credit at,['the'] -were right,['out'] -out when,|['it', 'he']| -has seen,|['but', 'very', 'too']| -to claim,|['or', 'me']| -And about,['his'] -evidence as,|['follows', 'to']| -your fuller's-earth,['said'] -country under,['a'] -country of,['those'] -Would you,|['mind', 'give']| -security of,['their'] -speak loudly,['I'] -pity because,['in'] -so dear,['to'] -risk the,|['loss', 'presence']| -be best,|['for', 'to']| -brute to,['trace'] -and refreshed,['his'] -Holmes smiling,|['And', 'perhaps', 'you']| -quite separate,['and'] -my dealings,['with'] -a stain,['Private'] -his flight,['and'] -only Carlo,['my'] -lawn neither,['Miss'] -belongs is,['his'] -I on,['you'] -|this perhaps,|,['the'] -There you,|['must', 'are']| -Sutherland professional,['case'] -marriage and,['its'] -understand but,['that'] -thrown at,['him'] -All the,|['afternoon', 'way']| -has frightened,['you'] -employing or,['even'] -comfortable double-bedded,['room'] -some misgivings,['of'] -imminent danger,['How'] -bob of,['greeting'] -evident that,|['he', 'with']| -not over-tender,['of'] -Reading but,|['could', 'there']| -behind which,|['sat', 'I']| -the nearest,|['chair', 'to']| -Knowing that,['my'] -to remain,|['neutral', 'single']| -sink He,['has'] -those years,['of'] -weird business,['of'] -gaunter and,['taller'] -him into,|['the', 'my', 'custody', 'your']| -place within ten,['miles'] -income she,['would'] -Count shrugged,['his'] -atmosphere Three,['gilt'] -say best,['possible'] -dozen times,['from'] -Don't wait,['up'] -had emerged,|['from', 'in']| -face attracted,['much'] -prove their,['authenticity'] -poor folk,['who'] -with everything,['which'] -drew it,['from'] -nautical appearance,['and'] -or dreaming,['He'] -came down,|['just', 'into', 'on', 'from', 'will', 'the', 'shut', 'to', 'Mr']| -drew in,['the'] -Albert Dock,['and'] -yawn That,['is'] -the utmost,|['use', 'coolness', 'certainty']| -blunders in,['as'] -uncommon thing,['for'] -greatest attention,['you.'] -peculiar construction,['of'] -broad iron,['bars'] -rather than,|['of', 'the', 'have', 'in', 'from', 'a', 'my', 'upon']| -be most,|['important', 'happy']| -a tide-waiter,['my'] -in miners,['parlance'] -plunging in,['his'] -Jones clutched,['at'] -debt to,['my'] -solid grounds,['for'] -shone on,['the'] -difference between,['the'] -a prisoner,|['he', 'among']| -his whole,|['Bohemian', 'appearance', 'debts', 'life']| -ever showed,['any'] -then but,['I'] -prying its,['bill'] -wish anything,['better'] -the facts,|['are', 'June', 'I', 'You', 'connected', 'which', 'of', 'might', 'upon', 'should', 'slowly', 'came', 'Since', 'but', 'before', 'as']| -city Sherlock,['Holmes'] -o'clock precisely,['I'] -a row,|['broke', 'your', 'three']| -and parted,['lips'] -in following,|['out', 'Holmes']| -clerks I,['started'] -were hardly,|['from', 'out']| -copying out,['the'] -a force,['which'] -made your,|['position', 'statement']| -rich is,['said'] -typewriting did,['at'] -disappeared so,['suddenly'] -may go,|['to', 'on']| -our toast,['and'] -himself not,['only'] -me St.,['Simon'] -dying reference,['to'] -my most,|['successful', 'intimate']| -was amused,|['by', 'father']| -too late forever,['too'] -waters said,['he'] -cashier in,['an'] -half pounds,['since'] -Heh? said,['I'] -about outdoor,['work'] -hide anything,['James'] -tell me,|['that', 'in', 'what', 'the', 'if', 'where', 'before', 'Still', 'as', 'whether', 'to', 'then', 'of', 'a']| -said very,['old'] -knee Lord,['Robert'] -music while,['his'] -You said,|['that', 'it', 'ten']| -which the,|['King', 'mind', 'unfortunate', 'case', 'body', 'reason', 'man', 'cripple', 'three', 'chamber', 'doctor', 'light', 'moon']| -musician being,['himself'] -been at,|['some', 'the', 'work']| -under a,|['bonnet', 'lamp-post', 'heavy', 'flag']| -been as,|['blind', 'good']| -have suspected,['a'] -of deduction,|['When', 'and']| -situation My,['groom'] -dull neutral-tinted,['London'] -and make,|['yourself', 'his', 'a', 'my']| -worth. warning,['was'] -glancing at,|['a', 'the', 'them']| -man puffing,['and'] -been an,|['axiom', 'enclosure', 'evil', 'interesting', 'understanding']| -were two,|['of', 'barred-tailed']| -robber There,['were'] -days of,|['September', 'free', 'our', 'my', 'the']| -wrote and,['said'] -squeezed out,['the'] -laid me,['on'] -married this,['beauty'] -wanted by,['this'] -Wooden-leg had,['waited'] -usually the,['more'] -may drive,['back'] -beard grizzled,['hair'] -arranged then,['for'] -situation how,['could'] -away and,|['having', 'told', 'he', 'then', 'I', 'explain', 'never']| -worth while,['to'] -really impossible,['for'] -the deaths,['of'] -generations who,['had'] -should much,['prefer'] -extremely improbable,['that'] -your good,|['health', 'sense', 'man']| -now the,|['police', 'spell']| -notice the,['carriage'] -was unconscious,['and'] -and unkempt,['staring'] -inquired of,['him'] -were abhorrent,['to'] -last generation,['I'] -an engine,['could'] -the Inner,['Temple'] -that photograph,['for'] -until she,|['disappeared', 'got']| -engine at,['work'] -ominous words,['with'] -it from,|['Sherlock', 'the', 'her', 'every', 'eye', 'his', 'its']| -papers If,['this'] -road in,['which'] -arresting Boone,['instantly'] -dash it,['all!'] -position forever,['The'] -garments had,['not'] -who wishes,['to'] -as bright,['as'] -to my,|['conduct', "friend's", 'surprise', 'face', 'view', 'memory', 'work', 'taste', 'house', 'client', 'medical', 'brother', 'story', 'heart', 'bell', 'wife', 'friend', 'astonishment', 'children', 'real', 'horror', 'confidant', 'relief', 'notes', 'attempt', 'years', "sister's", 'ear', 'thumb', 'lips', 'interest', 'own', 'companions', 'kicks', 'feet', 'very', 'poor', 'partner', 'illustrious', 'household', 'room', 'bedroom', 'rooms', 'highly', 'bed', 'dear', 'young', 'tradesmen', 'lodgings', 'eyes']| -doubt that,|['he', 'you', 'we', 'the', 'she', 'it', 'this', 'I', 'in', 'as', 'is']| -who wished,['to'] -strong of,['limb'] -to me,|['to', 'Count', 'returned', 'and', 'I', 'that', 'in', 'instead', 'than', 'for', 'the', 'There', 'from', 'said', 'on', 'But', 'having', 'will', 'at', 'but', 'are', 'he', 'as', 'then."', 'must', 'The', 'No', 'Oakshott,', 'Ryder', 'Mr', 'Not', 'On', 'She', 'tapped', 'man', 'by', 'it', 'Far', 'his', 'perhaps', 'In', 'You', 'Your', 'was', 'destitute', 'Many', 'look', 'is', 'tell', 'we', 'looking', 'a', 'If', 'which']| -brandy So,['Now'] -are But,['that'] -curious conduct,['and'] -is aware,['that'] -road is,['an'] -carry me,['to'] -quite persuaded,['myself'] -I deserve,['to'] -Park I,['slipped'] -but horribly,['mangled'] -lose another,['instant'] -cloak went,['down'] -the position,['in'] -Becher is,['an'] -small winding,['gravel-drive'] -under his,|['cloak', 'ear', 'arm', 'breath']| -was Wednesday,['It'] -story about,|['the', 'how']| -my mastiff,['I'] -with frightened,['eyes'] -the director,['We'] -diverted her,['luggage'] -was much,|['more', 'excited', 'addicted']| -I my,['time'] -mine said,['he'] -learn wisdom,['late'] -late before,['Sherlock'] -caused him,['to'] -me Air,['and'] -feminine eye,['was'] -to-night and,['start'] -hanged on,['far'] -machine which,['has'] -little Too,['little'] -remembered Sherlock,['Holmes'] -had first,['chosen'] -remain neutral,['to'] -Toller hurrying,['behind'] -Daily Telegraph,['it'] -observation in,['following'] -the Irene,['Adler'] -own family,|['circle', 'fill', 'your']| -is despaired,['of'] -An inspection,['of'] -manner So,['perfect'] -practice if,['a'] -suspected There,['I'] -spouting fire,['at'] -feet round,['the'] -poor gentleman,['much'] -and wondered,['what'] -sound produced,['by'] -his step,|['brisk', 'now']| -ending while,['others'] -there isn't,['a'] -imagination of,['the'] -at Pondicherry,['in'] -of marrying,|['within', 'his']| -contrition which,['are'] -usual signal,['between'] -name of,|['the', 'good-fortune', 'this', 'his', 'Openshaw', 'Breckinridge', 'Colonel', 'my']| -A prodigiously,['stout'] -used the,['machine'] -singular document,['Philosophy'] -Tollers opened,['into'] -in the,|['case', 'corner', 'passage', 'year', 'photograph', 'morning', 'use', 'chair', 'character', 'neighbourhood', 'least', 'matter', 'Temple', 'house', 'windows', 'Edgeware', 'wind', 'secure', 'park', 'tray', 'hope', 'other', 'street', 'principal', 'dark', 'palm', 'Arnsworth', 'future', 'fire', 'autumn', 'next', 'front', 'name', 'hands', 'advertisement', 'whole', 'office', 'League.', 'mornings', 'building', 'course', 'stalls', 'most', 'music', 'second', 'cab', 'afternoon', 'sudden', 'cold', 'direction', 'centre', 'custody', 'early', 'week', 'cellar something', 'papers', 'police', 'minute', 'Tottenham', 'meantime', 'evening', 'daylight', 'simple', 'two', 'City', 'recesses', 'chemical', 'tail', 'door', 'same', 'colonies', 'employ', 'wood', 'investigation', 'inquest', 'minds', 'clouds', 'yard', 'young', 'sky', 'old', 'town', 'Bermuda', 'district', 'grip', 'acting', 'colony', 'market', 'power', 'lower', 'island', 'latter', 'heart', 'storm', 'chimney', 'glare', 'Tankerville', 'States', 'grate', 'attic', 'outstretched', 'garden', 'twilight', 'very', 'grasp', 'air', 'meanwhile', 'study', 'lumber-room', 'sailing-ship', 'Southern', 'South', 'water', 'long', 'hollow', 'port', 'ship', 'best', 'Atlantic', 'trough', 'farthest', 'poison', 'first', 'bowls', 'midst', 'incoherent', 'Capital', 'wall', 'prime', 'sense', 'others', 'pockets', 'room', 'act', 'opium', 'opening', 'bedroom', 'dining-room', 'horse', 'presence', 'disappearance', 'upper', 'county', 'force', 'metropolis', 'green-room', 'business', 'evenings', 'streets', 'country', 'solution', 'gaslight', 'shape', 'brim', 'peculiar', 'world', 'background', 'strongest', 'Globe', 'banks', 'bright', 'Museum', 'big', 'ledger', 'hearty', 'gas-light', 'sitting-room', 'means', 'dock', 'middle', 'window', 'hour', 'fact', 'north', 'west', 'days', 'event', 'men', 'tropics', 'police-court', 'central', 'dead', 'plantation.', 'lock', 'plantation', 'silence', 'aperture', 'way', 'heavens', 'deepest', 'gathering', 'bed', 'daytime', 'one', 'village', 'distant', 'habit', 'newspapers', 'summer', 'consulting-room', 'nature', 'bosom', 'grounds', 'shadow', 'house.', 'house?', 'manner', 'working', 'moonlight', 'train', 'engineer', 'parish', 'press', 'chase', 'personal', 'marriage', 'Morning', 'belief', 'strange', 'public', 'pew', 'carriage', 'church', 'milk', 'box', 'wrong', 'company', "bride's", 'duplicate', 'wintry', 'easy', 'land', 'bureau', 'handling', 'drawing-room', 'coffee', 'world.', 'inspector', 'stable', 'gloom', 'fingers', 'light', 'hall', 'struggle', 'snow', 'lane', 'family', 'West', 'history', 'cupboard', 'High', 'conjecture', 'nursery', 'tiniest', 'Southampton', 'road', 'darkness', 'peaceful', 'drawer', 'household', 'cellar', 'great']| -man married,['a'] -visitor which,['compelled'] -satisfaction She,['is'] -Street Mrs,['Rucastle'] -pushed and,['pulled'] -it It's,['the'] -much imagination,['and'] -of such,|['weight', 'a', 'delicacy', 'nonsense.', 'much', 'purity', 'men']| -patted him,['kindly'] -says four,["o'clock"] -patted his,['hand'] -all of,|['them', 'what']| -wadding and,['carbolised'] -mark would,['not'] -all on,|['their', 'fire']| -two souls,['which'] -here Mrs,['St'] -During two,['years'] -your experience,|['you', 'has']| -instantly reconsidered,['my'] -man has,|['written', 'lost']| -I employed,['my'] -The crate,['upon'] -They say,['that'] -motionless with,['the'] -minds of,['the'] -tore back,['a'] -initials H,|['B.', 'B']| -glad of,|['a', 'all']| -three or,['four'] -You give,['me'] -man had,|['given', 'an', 'framed', 'waited']| -glad or,['sorry'] -them seemed,['to'] -remember nothing,['until'] -your sister's,['and'] -plan of,|['campaign', 'the']| -cut a,|['much', 'slice']| -skirt and,['a'] -blue It,['was'] -the e's,['slurred'] -carriage It,['was'] -freely and,['could'] -no footmarks,['no'] -flame-coloured tint,['When'] -clerk entered,['to'] -|sufficient? understand,|,['Mr'] -he knows,|['to', 'nothing']| -may he,['Here'] -rise from,['crime'] -managed by,['Miss'] -place at,['once'] -great error,['has'] -out close,['the'] -for their,|['maintenance', 'escape', 'purpose', 'eccentricity', 'conduct']| -his mind,|['and', 'was', 'Monday', 'would']| -it means,['have'] -no carpets,['and'] -puzzled throughout,['three'] -door one,|['half-raised', 'hint']| -But we,|['have', 'shall']| -on this,|['planet', 'page', 'morning', 'earth']| -of Great,['Britain'] -upon some,|['other', 'most']| -enthusiasm of,['a'] -visitors vanished,['away'] -the moral,['retrogression'] -by leaps,['and'] -cent Two,['thousand'] -be delighted,["don't"] -little printed,['slip'] -the person,|['whom', 'or', 'in']| -obvious to,|['me', 'Mr', 'you']| -lost four,['pound'] -burning charcoal,['beside'] -hopes have,['hopes'] -in green,['unhealthy'] -our being,['able'] -be She,|['could', 'is']| -play in,['the'] -and paying,['little'] -angle at,['the'] -morning after,['Christmas'] -or feigned,['indignation'] -was introduced,|['to', 'by']| -Four and,['the'] -town bred,|['snapped', 'never']| -trouble of,['wooing'] -shall soon,|['have', 'be', 'set', 'drive', 'clear', 'know', 'learn', 'see']| -have excellent,['ears'] -de foie,['gras'] -her position,['must'] -and assistance,['of'] -considerable value,['which'] -before many,['days'] -else Jabez,['Wilson'] -time we,|['had', 'did']| -milk to,['quote'] -house We,['laid'] -her natural,['reserve'] -beard growing,['out'] -the truth" he,['sank'] -entertaining said,['he'] -chief over,['a'] -a snigger,['Well'] -cane and,['this'] -seven and,['a'] -carried down,['by'] -speedily supply,['St.'] -companion did,['you'] -burning oil,['and'] -was addressing,['Wilhelm'] -me I,|['have', 'hardened', 'often', 'observed', 'perceive', 'can', 'think', 'remarked', 'thought', 'shall', 'find', 'would', 'begged', 'gave', 'heard', 'threw', 'cannot', 'was', 'glanced', 'could', 'did', 'cried', 'will', 'knew', 'confess', 'read']| -is middle-aged,|['has', 'that']| -give He,['asked'] -cloth as,['Jones'] -struggle so,['as'] -he yelled,['You'] -the lean,['figure'] -done very,|['well', 'nicely']| -me a,|['sovereign', 'living', 'letter', 'prompt', 'policeman', 'pencil', 'note', 'number', 'series', 'yellow-backed', 'slit', 'little']| -Lestrade as,|['we', 'to']| -dreamy eyes,['were'] -& Stevenson,['of'] -Lestrade at,['his'] -Underground as,['far'] -I sat,|['down', 'up', 'beside', 'with', 'opposite', 'in']| -before it,|['arrived', 'is']| -I saw,|['his', 'you', 'the', 'him', 'how', 'that', 'William', 'no', 'Whitney', 'a', 'it', 'my', 'nothing', 'then', 'Frank', 'Mary', 'Arthur', 'with', 'where', 'what']| -know much,['of'] -Occurrence at,['a'] -Mortimer's the,['tobacconist'] -miles Amid,['the'] -it road,['in'] -consulted said,['he'] -bird I,|['had', 'did', 'ate', 'imagine']| -already learned,['all'] -be away,|['a', 'all', 'for']| -march passed,['across'] -Alexander Holder,['of'] -side and,|['the', 'gazed', 'looked', 'left', 'yet', 'rushing', 'on']| -billet. the,['work?'] -his bill,['at'] -answered the,['assistant'] -down Endell,['Street'] -old campaigner,['and'] -If I,|['remember', 'can', 'lay', 'cannot', 'claim', 'could']| -band with,['brownish'] -I whispered,|['what', 'did']| -altar rails,['I'] -heavens!" she,['cried'] -I won't,|['have', 'claim']| -Covent Garden,|['I', 'Market']| -much as,|['father', 'to', 'taken', 'you', 'I', 'we', 'their', 'pa', 'smiled', 'your']| -Holmes pointing,['at'] -liberties Still,['of'] -name but,['as'] -heard my,|['father', 'story']| -finished I,['shall'] -your advice,|['Light', 'in', 'have', 'upon']| -little sideways,['that'] -cannot accomplish,['There'] -woman stood,|['upon', 'in']| -asked do,['you'] -she pressing,['my'] -to lengthen,['out'] -singular features,|['as', 'than']| -fallen upon,['evil'] -nothing Presently,['he'] -Majesty Then,['there'] -was averse,['to'] -is made,|['over', 'a', 'up']| -fault was,['soon'] -all Yet,['it'] -once he,|['made', 'ran']| -assist you,['in'] -knew been,['spent'] -rose lazily,['from'] -that therefore,|['the', 'I']| -my page,['sleep'] -then I,|['was', 'found', 'asked', 'think', 'have', 'got', 'hazarded', 'promised', 'will', 'heard', 'shall', 'must', 'thought', 'presume']| -turned as,['pale'] -past me,|['and', 'without']| -hand I,|['rushed', 'very', 'would', 'am', 'do']| -hand K,['K'] -ordered her,['to'] -invited and,['that'] -an opal,['tiara'] -dark do,['not'] -quite a,|['pretty', 'number', 'size', 'little', 'three', 'recognised', 'common-looking', 'jump', 'pleasure', 'suite']| -and eyes,['which'] -houses and,|['the', 'you']| -one who,|['may', 'is', 'finds', 'was', 'cares', 'lives', 'has', 'had', 'should', 'certainly']| -hand a,|['man', 'sheet']| -was formed,['by'] -sell his,['pictures'] -then a,['scream'] -balustraded bridge,['with'] -home instantly,['and'] -importance to,|['look', 'keep', 'the']| -head Clearly,['such'] -sir that,['you'] -summarise I,['had'] -hope be,['incapable'] -Park so.,['Then'] -apiece That,['brought'] -supper drove,['to'] -wife's and,['ladies'] -tongue Reading,['I'] -His orders,['were'] -south then,['and'] -having also,['come'] -London could,['earn'] -only for,['you'] -be paid,['at'] -Remarkable as,['being'] -thrust the,['stone'] -such delicacy,['that'] -door whence,['he'] -essential to,['me'] -off not,['bitten'] -the history,['of'] -air in,['the'] -had touched,['his'] -dropped her,|['thick', 'bouquet']| -miles but,['I'] -bisulphate of,['baryta'] -the villagers,['almost'] -cannot think,|['you', 'how']| -what purpose,|['that', 'us']| -|us then,"|,['said'] -bottom There,['is'] -invariably a,['clue'] -lying fainting,['in'] -are Egria,['It'] -Was there,['a'] -down senseless,['on'] -hour before,['us'] -delay God!",['I'] -soon the,['intimate'] -but I,|['have', 'jumped', 'know', 'see', 'was', 'could', 'can', "didn't", 'cannot', 'must', 'am', 'call', 'shall', 'should', 'spared', 'had', "can't", 'knew', 'His', "don't", 'told', 'observe', 'sleep', 'fancy', 'do', 'think', 'hesitated', 'felt', 'much', 'meant', 'thought', 'beg', 'fear', 'did', 'found', 'soon', 'remembered']| -glance no;,['the'] -learn it,['at'] -small morocco,['casket'] -I'll take,|['it', 'you']| -just being,['lighted'] -Calhoun Barque,['Lone'] -last court,['of'] -different varieties,['of'] -landlord beer,['should'] -back his,['son'] -but a,|['good', 'couple', 'composer', 'lurid', 'welcome', 'very', 'sudden', 'promise', 'fresh', 'step']| -the knee,['of'] -dear kind,['old'] -general look,['of'] -perplexity my,['theory'] -the writing,|['and', 'pooh!', 'else']| -the dnouement,['of'] -own hair,['I'] -wanted for,['ourselves'] -purely nominal?,['you'] -her left,|['a', 'hand']| -the prisoner's,['face'] -steps on,['the'] -widespread comfortable-looking,['building'] -footing was,['amused'] -earn twice,['what'] -steps of,['your'] -in surprise,['must'] -the typewritist,['presses'] -the kind,|['say', 'My', 'I', 'It']| -as remarkable,|['as', 'I']| -a more,|['successful', 'damning', 'mysterious', 'inexorable', 'than', 'dreadful']| -before six,['reached'] -even tell,['that'] -none had,['fallen'] -gentleman entered,['with'] -my son,|['and', 'in', 'himself', 'You']| -in German,['and'] -you Miss,|['Hunter.', 'Hunter']| -violence and,|['the', 'there']| -necessity for,['my'] -o'clock at,['night'] -the vanishing,['cloth'] -the noose,['round'] -these I,|['may', 'journeyed']| -skull I,['hurried'] -had each,['tugged'] -see which,|['They', 'gets']| -newly studied,['near'] -taking out,|['his', 'the']| -to retire,['upon'] -certainly speak,['to'] -strong proof,['of'] -heavy and,|['blunt', 'sharp']| -soldiers in,['the'] -the flock.,['very'] -bleeding came,['from'] -about two,["o'clock"] -CAN be,['the'] -so systematic,['its'] -of fire,|['You', 'it', 'and', 'was', 'I']| -folk all,['trooped'] -sure make,['notes'] -hurry what,['else'] -of Covent,['Garden.'] -went first,['to'] -health landlord,['and'] -it for,|['yourself', 'him', 'some', 'everyone', 'to-morrow', 'anything', 'example', 'worlds', 'all', 'the', 'a', 'there']| -was borne,['into'] -it out,|['chuckled', 'When', 'upon', 'but', 'beautifully', 'The', 'on', 'no', 'when', 'and', 'of', 'to', 'again', 'for']| -up and,|['down', 'started', 'then', 'so', 'have', 'pushed', 'perhaps', 'I', 'remanded', 'had', 'also', 'gazed', 'his', 'lit', 'glanced', 'even', 'darting', 'rushed', 'hand', 'examined', 'opened', 'found']| -see this,|['little', 'other']| -voice downstairs,['but'] -is for,|['the', 'me']| -there where,['is'] -Reading Then,['he'] -others are,['Finns'] -rattled along,['with'] -figure had,|['emerged', 'enough']| -you The,|['second', 'machine']| -a pathway,['through'] -strange experience,|['and', 'to']| -darkness such an,['absolute'] -driven to,['the'] -shrunk against,['the'] -In ten,['days'] -stairs and,|['in', 'he']| -address had,['been'] -press an,['exceedingly'] -furnish information,['In'] -we solve,['the'] -had filled,|['out', 'the']| -who else,['could'] -of safety,['passed'] -Holmes rose,['to'] -him somewhat,['the'] -sell the,|['business', 'geese']| -the deadly,['urgency'] -friend is,['a'] -presume sir.,['He'] -and too,['little'] -chewing tobacco,['And'] -a disgraceful,['one'] -thing answered,['Holmes'] -friend in,['one'] -confining yourself,['to'] -rattled back,['on'] -the richer,['man'] -great intensity,['The'] -note by,['the'] -two companions,['Ferguson'] -she paused,['at'] -was screening,['him'] -got tallow-stains,['from'] -a purveyor,['to'] -tell you,|['that', 'however', 'how', 'tales', 'I', 'so', 'first', 'the', 'Watson', 'So', 'all', 'everything', 'it', 'As', 'then']| -little den,['until'] -referred it,['to'] -spoke I,['shall'] -She came,|['to', 'with']| -carefully examined,|['the', 'and']| -written above,['them?'] -and just,|['as', 'a']| -was sheer,['frenzy'] -was dressed,['in'] -was superscribed,['to'] -spoke a,|['few', 'light', 'word']| -A quick,['blush'] -client your,['Majesty'] -one wall,['of'] -my father,|['I', 'and', 'was', 'expiring', 'when', 'Yet', 'Joseph', 'to', 'entered', 'took', 'came', 'give', 'went', 'young', 'Of']| -greatcoat As,['he'] -Amateur Mendicant,['Society'] -then your,['secret'] -of sombre,['and'] -troubles and,['was'] -fluffy brown,['dust'] -an inspector,|['and', 'all']| -figure I,["don't"] -hear He,['gives'] -and right,['up'] -our inquiry,['may'] -coachman with,['his'] -safe stepfather's,['business'] -across his,['case'] -from home,|['and', 'with', 'for', 'at', 'to', 'In', 'before']| -of greater,['or'] -sorry that,|['I', 'Miss']| -overseen by,['your'] -ill-service to,['me'] -triangular piece,['of'] -greeting he,['seated'] -a clever,|['forgery', 'man', 'and', 'gang']| -the border,['of'] -ten and,['every'] -this final,['quarrel'] -it matters,['little'] -the payment,['which'] -note itself,['What'] -fellow some,['thirty'] -remarked Sherlock,['Holmes'] -came within,['my'] -got to,|['that', 'the', 'my']| -So then,['I'] -perhaps and,['yet'] -fiction with,['its'] -resolute of,['men'] -you Thank,['you'] -yours Mr,['Windibank'] -descent and,['Tudor'] -Gate which,['has'] -unprofitable yet,['I'] -Holmes twisted,['himself'] -good. shall,['come'] -banker rising,['Sir'] -while to,|['put', 'me', 'call', 'wait']| -which threw,['any'] -jury too,['much'] -a pure,['matter'] -his tool,['and'] -pressed together,['his'] -in conjunction,['with'] -less mysterious,['it'] -believe said,|['she', 'he']| -safes had,['been'] -prevent me,['from'] -you when,|['I', 'they']| -a caseful,['of'] -early in,|['April', 'the']| -was attired,['in'] -his mistress,|['If', 'believing']| -you've got,['mixed'] -in March,['1883 a'] -fancy Watson,['And'] -drenched with,['blood'] -Nothing of,['the'] -day that,['I'] -myself though,['at'] -should certainly,['speak'] -all clear,['he'] -fluffy ashes,['as'] -afternoon who,['came'] -lost in,|['her', 'thought', 'deep']| -indeed and,['I'] -may submit,['to'] -have saved,['an'] -Watson we,|['shall', 'are']| -this Lost,['on'] -ascertaining that,['his'] -cloth No,['sir'] -flash out,['at'] -before that,['I'] -again' here in,['an'] -indeed our,|['visitor', 'friend']| -hand but,['he'] -approvingly I,['have'] -all our,|['doubts', 'correspondence', 'cases', 'resources', 'wants', 'persuasions']| -our engineer,['ruefully'] -been cruelly,['used'] -and fancies,['are'] -possibly in,['some'] -murders a,['vitriol-throwing'] -but preventing,['her'] -my children,['are'] -some data,['which'] -father dead,['in'] -the broad,|['white', 'gleaming', 'bars']| -utterly and,['has'] -I cannot!,['I'] -a nervous,|['hesitating', 'clasping', 'woman']| -gigantic client,['your'] -plumber had,['been'] -woman came,['talking'] -preposterous hat,['and'] -not spoken,['before'] -a gruff,['monosyllable'] -double carriage-sweep,['with'] -lady she,['seems'] -you yesterday,['and'] -very carelessly,['scraped'] -so sorely,['and'] -and only,|['just', 'posted', 'one']| -room There,['was'] -take place,|['at', 'and', 'between']| -in England?,['have'] -seated at,|['breakfast', 'the']| -once put,['the'] -largest landed,['proprietor'] -known dad,['in'] -pocket was,['John'] -reached from,['the'] -regular in,['my'] -The house,['was'] -traced and,['dropped'] -Imagine then,['my'] -client puffed,['out'] -some two-and-twenty,['at'] -Road and,['he'] -knew her,['for'] -Kindly tell,['us'] -serious as,['its'] -them Getting,['a'] -on Tuesday,['he'] -the palm,|['of', 'a']| -huge form,['looming'] -Klux Klan,|['never', 'A']| -Just ring,['the'] -no keener,['pleasure'] -wild talk,['of'] -ruffians who,['surrounded'] -me like,['that'] -know things,['Perhaps'] -unlocked and,['revolved'] -window reopening,['by'] -Then my,['friend'] -gain the,['reputation'] -Mrs Oakshott,|['117', 'to-night', 'here', 'for', 'of']| -when you,|['call', 'found', 'address', 'see', 'have', 'said', 'returned', 'came', 'consider', 'sit', 'hear', 'are', 'were', 'got', 'find', 'saw', 'admitted', 'had', 'appeared']| -weariness and,['lethargy'] -imagine Mr,['Holmes'] -to-night reasoned,['it'] -were only,['two'] -pleasure He,['put'] -Heaven forgive,['me'] -found she,['was'] -watch to,['prove'] -discovered its,['true'] -place whence,['it'] -dimly what,['you'] -learn from,['him'] -in town,['But'] -stare and,['a'] -heavy stick,['in'] -77 and,['there'] -Street A,['thick'] -noticed the,['peculiarities'] -That trick,['of'] -river by,['the'] -several companies,['and'] -understand that,|['this', 'I', 'there', 'as', 'the', 'it', 'all', 'he', 'living', 'you']| -water-mark Hum,['Posted'] -dummy and,['that'] -morning light,['revealed'] -friend down,['to'] -his ring-finger,['which'] -lawn had,['never'] -The photograph,|['becomes', 'is', 'was']| -on every,|['subject', 'sufferer']| -It could,|['not', 'only']| -each and,['all'] -sprung out,['and'] -hail. down,['they'] -were in,|['front', 'the', 'need', 'some', 'grief', 'Bloomsbury', 'danger', 'vain', 'absurd']| -to judge,['you'] -a Sunday-school,['treat'] -glimpses of,['him'] -were it,|['is', 'not']| -you gain,['them'] -this mystery,['of'] -Yard looks,['upon'] -wedding saw,['it'] -was typewritten,['and'] -eagerness her,['body'] -bite the,['occupant'] -her knowing,['my'] -single sleepy,['porter'] -distant parsonage,['that'] -off as,['hard'] -dead faint,['among'] -of hellish,['cruelty'] -is every,['prospect'] -corresponded clearly,['with'] -heart have,['said'] -alias flush,['sprang'] -strong impression,['that'] -windowsill and,['several'] -side well,['furnished'] -nor would,['the'] -up Watson,['said'] -Too narrow,['for'] -case has,|['in', 'been']| -loading their,['cargo'] -becomes a,|['double-edged', 'personal']| -dirt that,['the'] -the seat,|['of', 'and']| -why not,['said'] -me Was,['it'] -a doddering,['loose-lipped'] -last six,['cases'] -perpetual snarl,['A'] -man succeeded,['in'] -morning in,|['the', 'company', 'our']| -laughing You,['really'] -year Old,['as'] -stone the,|['Countess', 'stone']| -your oil-lamp,['which'] -room where,['she'] -other My,['own'] -every respect,|['with', 'shall']| -instructive appeared,['to'] -feature about,['the'] -valuable as,['a'] -nothing from,['me'] -every evening,|['cannot,']| -to associate,['himself'] -hands now so,['far'] -would kindly,['attend'] -a working,['hypothesis'] -so vile,['that'] -course you,|['are', 'can']| -other side,|['A', 'upon', 'On', 'of', 'Some', 'Without', 'The', 'That']| -feel to,['you'] -in unimportant,['matters'] -event of,|['our', 'that']| -to me seemed,['to'] -wrote the,|['note', 'address']| -ever deeply,['attracted'] -had forgotten,['the'] -|noted, in|,['passing'] -indeed which,['he'] -the art,['however'] -being somewhat,['cold'] -upon at,['the'] -gasfitters ball,|['she', 'you']| -he anoints,['with'] -upon as,|['akin', 'so']| -upon an,|['income', 'incident', 'entirely']| -drop and,['say'] -superscription except,['Leadenhall'] -fantastic but,|['he', 'generally']| -the arm,|["we'll", 'of']| -tunnel But,['it'] -girl should,['be'] -for Foreign,['Affairs'] -any young,['man'] -come will,['be'] -a double-bedded,['one'] -heart I,['cried'] -his brilliant,['reasoning'] -cried in,['English'] -home now,['for'] -right I,['have'] -left half,['of'] -dismantled shelves,['and'] -driver pointing,['to'] -little woman,['to-night'] -paper I,['started'] -near that,['line'] -is indeed,|['a', 'the', 'important']| -shining very,['brightly'] -time but,|['the', 'had', 'come!']| -club debts,['In'] -employ who,['comes'] -and swinging,|['it', 'in']| -his fangs,['upon'] -room had,|['already', 'been', 'lit']| -affected than,['I'] -|again indeed,|,['I'] -the faded,['and'] -Holmes yawning,['yes;'] -the boundary,['between'] -disregarded them,['and'] -folded paper,['from'] -a length,['by'] -have felt,|['helpless', 'like', 'another', 'the']| -never set,['eyes'] -that would,['not'] -the entrance,['On'] -to strengthen,|['our', 'his']| -are men,['so'] -do well,['to'] -grew up,['for'] -path Violence,['of'] -no hesitation,['in'] -the collar,|['The', 'turned']| -station However,['I'] -were flushed,['with'] -the bird's,|['left', 'leg']| -subject naturally,['not'] -The body,['exhibited'] -interest and,['even'] -view at,['the'] -a bulge,['on'] -chain we,['have'] -hair cut,['off'] -child They,['were'] -husband the chances,['being'] -getting those,['letters'] -sir Mr.,['Fowler'] -snatches a,['delusion'] -hit it,['Oh'] -see the,|['other', 'easy', 'red', 'traces', 'direction', 'point', 'deadly', 'gentleman', 'letter', 'solution', 'machine.', 'smile', 'famous', 'windows', 'end']| -authoritative tap,['in!"'] -I roared,['shaking'] -his gently,['smiling'] -small pawnbroker's,['business'] -wife Remember,['the'] -this investigation,|['am', 'We']| -ever seen,|['in', 'him', 'Mr', 'so', 'that', 'such', 'At']| -very scared,['and'] -that very,|['moment', 'day']| -jacket was,['black'] -clients or,['I'] -his usual,['writing'] -there seems,['to'] -got it,|['he', 'now', 'in']| -life has,['been'] -endeavour to,['clear'] -iron safe,|['were', 'the', 'which']| -side upon,['the'] -abnormally cruel,['merely'] -as Lord,['St'] -easy courtesy,['for'] -poison or,['sleeping'] -as the,|['Count', 'most', 'wheels', 'front', 'handcuffs', 'commonplace', 'church', 'son', 'Ballarat', 'old', 'strange', 'weeks', 'country', 'jury', 'one', 'wind', 'burning', 'tide', 'inspector', 'blue', 'clock', 'fancies', 'bell-rope', 'lamp', 'horse', 'carriage', 'train', 'dropping', 'secret', 'child']| -suddenly shrieked,['out'] -Simon alone,['and'] -she endeavoured,['to'] -without either,|['signature', 'his']| -foreign tongue,['in'] -come over,|['here', 'him']| -considerably after,['midnight'] -ink pens,['and'] -draught. the,['contrary'] -flight Holmes,['rushed'] -things packed,['and'] -I determined,|['to', 'therefore']| -her clever,['stepfather'] -a bedroom,|['and', 'through']| -doors the,|['thresholds', 'night']| -burgled They,['did'] -Men at,['his'] -yet somehow,['I'] -All these,['I'] -blacksmith over,['a'] -river I,['understand'] -the ruin,['of'] -Kindly turn,['round'] -the derbies,['beg'] -cannot make,['our'] -German or,['the'] -wonderful manager,['and'] -paper from,|['him', 'the', 'his']| -beautiful hair,['cut'] -in China,|['and', 'I']| -be almost,|['inexplicable', 'as']| -Holmes struck,['the'] -be put,['to'] -new client,['He'] -he asked,|['with', 'Briony', 'How', 'does', 'a', 'fished', 'sundial', 'for', 'in', 'at', 'tapping', "admirably.'", 'felt', 'What', 'save', 'which', "sir.'", 'I']| -eager and,['beautiful'] -is evidently,['trying'] -resources Kindly,['hand'] -was killed,['eight'] -drawing-room sofa,['and'] -inches and,['the'] -arrived upon,|['Christmas', 'the']| -date of,|['the', 'his', 'that']| -unfortunately I,['had'] -do when,['she'] -months Of,['these'] -that. did,['as'] -some errand,['and'] -be unwound,['the'] -household and,['the'] -commands my,['wife'] -his jaw,['resting'] -tension and,['my'] -been working,['upon'] -quietly and,['secretly'] -little opening,['for'] -Ordering my,['cab'] -may confess,['at'] -face all,['drawn'] -debts of,['honour'] -gentleman Mr,|['Wilson', 'Holmes']| -refund but,['beyond'] -its vehemence,['They'] -etc. etc,['Ha'] -4d wrote,['my'] -sir He,['was'] -beneath his,['head'] -long pipe,['and'] -whether anything,['had'] -had found,|['ourselves', 'his', 'within']| -perplexity from,['it'] -by winding,['up'] -instantly arrested,['and'] -to study,['his'] -had reached,|['Baker', 'the']| -vacancies. what,['are'] -suspecting him,['when'] -will carry,['conviction'] -was forced,['to'] -alike Some,['letters'] -advice will,['be'] -vain to,['argue'] -rapt in,['the'] -himself from,['his'] -and still,|['we', 'more']| -the answers,['to'] -was admiring,['your'] -daughter as,['long'] -distinctly professional,['from'] -to vex,['us'] -truly as,['if'] -of dismay,['on'] -yourself think,['that'] -then off,['to'] -send a,['note'] -his speed,['down'] -her head,|['and', 'So', 'pushing']| -regurgitation of,['water'] -does something,['very'] -train leave,['your'] -him killing,['cockroaches'] -missing gems,['Even'] -usually leave,['to'] -of constables,|['with', 'up']| -future annoyance,['If'] -ancestral house,['at'] -make the,|['thing', 'case', 'matter', 'best', 'easy']| -fifteen to,['twenty'] -braced himself,['to'] -killed eight,['years'] -passed and,|['nothing', 'so']| -lost He,['rushes'] -with a,|['gibe', 'keen', 'kindly', 'black', 'small', 'richness', 'brooch', 'thick', 'deep', 'matter', 'gesture', 'yawn', 'garden', 'face', 'cap', 'nurse-girl', 'cry', 'sardonic', 'questioning', 'very', 'quick', 'heavy', 'wrinkled', 'smile', 'camera', 'huge', 'head', 'quill-pen', 'little', 'tack', 'sense', 'hand', 'pale', 'stare', 'great', 'plunge', 'weak', 'promise', 'feather', 'bland', 'slight', 'ghastly', 'moustache', 'cold', 'request', 'gun', "woman's", 'steely', 'purely', 'rake', 'hard-headed', 'game', 'pained', 'grey', 'shade', 'long', 'foreign', 'start', 'revolver', 'newly', 'heart', 'shattered', 'strong', 'subdued', 'flush', 'pipe', 'bent', 'reply', 'limp', 'country', 'touch', 'dirty', 'line', 'coloured', 'grin', 'red', 'hurried', 'good', "week's", 'whistle', 'coat', 'sigh', 'sharp', 'sidelong', 'drawn', 'barred', 'provision', 'hunting-crop', 'thousand', 'sudden', 'bright', 'high', 'low', 'dangerous', 'supply', 'soft', 'twig', 'last', 'lantern', 'lamp', 'round', 'despairing', 'chinchilla', 'force', 'cloud', 'quill', 'pleasant', 'twinkle', 'group', 'clergyman', 'kind', 'frowning', 'man', 'massive', 'heaving', 'passion', 'scream', 'sneer', 'snow-clad', 'greater', 'sweet', 'wooden', 'cup', 'weariness', 'pair', 'slipper', 'wave', 'turn', 'certain', 'sour', 'most', 'horrible']| -turned out,|['splendidly', 'the']| -askance at,['him'] -sideboard sandwiched,['it'] -hollow he,['remarked'] -His appearance,['you'] -holding it,['out'] -the tickets,['had'] -beat his,|['native', 'head']| -three pipe,['problem'] -with I,['fear'] -his death ,['He'] -room have,['really'] -crime that,['you'] -farther from,['danger'] -sleep the,['centre'] -afternoon and,|['walked', 'shall', 'should']| -this obliging,['youth'] -City of,['London'] -I prepare,['for'] -alive had,['expected'] -this stranger,['and'] -and shouting,['were'] -record even,['if'] -the objections,['are'] -lichen-blotched stone,['with'] -have judged,['it'] -is recovered,['the'] -man either,['to'] -set but,['there'] -very absorbing,['put'] -it drop,['until'] -an apology,|['for', 'he']| -madness Of,['these'] -and submit,['it'] -months I,['find'] -answered with,|['his', 'the', 'a']| -never able,['to'] -are one,|['who', 'or']| -are suggestive,['You'] -was some,['strange'] -them your,|['father', 'lad']| -may remain,['in'] -We rattled,['through'] -Lee said,['my'] -every point,['of'] -agitated over,['this'] -passed between,['my'] -all knowledge,['which'] -the nature,['of'] -very positive,['one'] -Rucastle expressed,['a'] -strongest motives,['for'] -chink and,['window'] -men were,['never'] -strange visitor,|['The', 'sitting']| -see no,|['marks', 'society', 'less', 'difficulty']| -was already,|['deeply', 'dusk', 'answered', 'a', 'at', 'in']| -and limbs,['of'] -me do,['so?'] -two corner,['seats'] -really some,['scruples'] -excuse will,['avail'] -girl placed,['in'] -in he,|['had', 'gave']| -have an,|['influence', 'exact', 'inspector', 'American', 'answer', 'only']| -passers-by This,['is'] -of Fire,|['The', 'Thick']| -to relate,['and'] -her rights,['and'] -beneath He,['saw'] -retained the,['missing'] -evidently trying,['to'] -his remark,|['about', 'appear']| -routine of,|['everyday', 'life', 'our']| -come again of,['course'] -brown rather,['darker'] -shaking them,['off'] -this city,['of'] -however he,|['would', 'started']| -have at,|['least', 'the']| -characteristics to,['which'] -a broken,['bell'] -have as,|['you', 'far', 'to']| -timid in,['drawing'] -there are,|['seventeen', 'no', 'more', 'men', 'reasons', 'one', 'two', 'points', 'successive', 'many', 'some', 'a', 'sentimental', 'others', 'they', 'widespread', 'nearly', 'the', 'cigars', 'steps', 'women', 'usually', 'several']| -else biassed,['If'] -matter but,|['that', 'you', 'he', 'above', 'had']| -goose surely,['he'] -and annoyance,['but'] -united strength,|['causing', 'Together']| -windows are,['on'] -sensationalism which,['has'] -step out,['but'] -lace which,['fringed'] -round upon,['the'] -very amiable,['person'] -glass and,['I'] -least ready,['to'] -your connection,['with'] -mine has,['sister'] -cigar-holder and,['carries'] -pardon last,['client'] -lazily who,['my'] -arrival and,['I'] -business turn,['He'] -Frank We,['got'] -what hour,['he'] -his very,|['soul', 'best', 'eyes', 'own', 'curly-brimmed']| -very long,|['It', 'time', 'and', 'before']| -newspapers until,['at'] -so scared,['by'] -the brim,['for'] -fellow there,['lies'] -man's watch,['to'] -dipping continuously,['into'] -it straight,['now'] -your hands,|['Clay,', 'the', 'and', 'now so']| -observe the,|['second', 'colour']| -better say,['no'] -indeed in,['a'] -coronet again,['my'] -about which,['I'] -and indeed,|['was', 'so', 'he']| -or not,|['but', 'shall', 'he']| -glove You,['must'] -and actions,['But'] -me whether,|['it', 'my', 'I']| -true wedding,['after'] -edge there,['peeped'] -foresight but,['has'] -the signature,['is'] -room swung,['slowly'] -quite out,['in'] -field which,['slopes'] -shrieked Think,['of'] -brandy brought,['a'] -complete as,['we'] -other day,|['just', 'as']| -such reparation,['as'] -return ticket,['in'] -shoulders and,|['said', 'lit', 'raised']| -very large,|['affair', 'bath-sponge', 'flat', 'room']| -Boots which,['extended'] -appears as,['Mr'] -trim as,['possible'] -in English,['remember'] -own fields,['filled'] -four o'clock,|['when', 'on', 'in', 'It']| -I forgot,['that'] -fancy Read,['it'] -be offensive,['to'] -unpapered and,['uncarpeted'] -deep for,['words'] -more from,['a'] -3rd My,['father'] -gasped I,['am'] -sir. I,|['met', 'believe', 'am']| -who thrust,['her'] -creature which,['he'] -lover it,['might'] -informality about,['their'] -beaten in,['by'] -him." then?",['knees'] -itself What,['do'] -got them,['right'] -that however,['I'] -all typewritten,['In'] -tree during,['the'] -any features,['of'] -whole appearance,['He'] -shall come,|['back', 'down']| -asked Bradstreet,['as'] -dug out,['like'] -the softer,['passions'] -you now,|['that', 'is']| -slit between,['two'] -of lectures,['into'] -client then,|['so,']| -blowing in,['our'] -turned up,|['would', 'the', 'one', 'and', 'his', 'which']| -traffic but,['at'] -ordered him,['to'] -visit Holmes,['walked'] -trembling all,['over'] -our door,|['had', 'and']| -both hinted,['at'] -saw all,['that'] -the stump,|['among', 'of']| -circulation is,['more'] -which contained,['a'] -coroner come,['to'] -fate I,['suddenly'] -my joy,['at'] -unlike each,['other'] -Miss Holder,|['You', 'confess']| -whom an,['English'] -sit here,|['comfortably', 'or']| -League of,['the'] -wired to,|['Bristol', 'Gravesend']| -and breakfast,['I'] -something perhaps,['of'] -City branch,['of'] -room Accustomed,['as'] -them off,['and'] -the shouting,|['crowd', 'of']| -Give her,['her'] -this black,['business'] -the reward,|['offered', 'and']| -deeply interested,['in'] -the idiot,['do'] -have notes,['of'] -presume contains,['the'] -this you'll,['remember'] -more dense,['than'] -the cigar,['which'] -hoped the,['assistant'] -to join,|['a', 'him']| -been torn,|['from', 'away']| -violence of,['the'] -forever Do,['not'] -anyone having,['a'] -let you,|['know', 'see']| -beamed on,['me'] -this wing,['are'] -cigar of,['the'] -seemed altogether,['past'] -all over,|['with', 'the', 'it', 'Holmes', 'in', 'Then']| -asked several,['practical'] -permission Mr,['Holder'] -claim the,['merit'] -fate that,['for'] -advertisement sheet,['of'] -however gave,['it'] -doubled it,['over'] -duty a feeling,['that'] -stammered am,['very'] -absolutely follow,['my'] -loathing He,['had'] -beauty I,['look'] -THUMB all,['the'] -prompt and,|['energetic', 'ready']| -investigations and,['in'] -Old as,['is'] -by considering,['the'] -which all,|['this', 'my']| -room passing,['quite'] -smile fade,['even'] -high ringing,['note'] -unwise to,['place'] -burden to,['them'] -bullion is,['much'] -and Mary,['my'] -grass and,|['a', 'of']| -a villain,|['would', 'it']| -give you,|['to', 'an', 'my', 'such', 'these', 'the', 'a', 'any', 'you', '120']| -gold convoy,['came'] -granting the,["son's"] -intentions and,['has'] -anyone from,['coming'] -friend's prediction,['was'] -article took,['the'] -some band,['of'] -whiten even,['as'] -work of,['the'] -a sudden,|['blow', 'pluck', 'ejaculation', 'idea', 'effort', 'light', 'buzzing', 'turn', 'indisposition']| -bureau and,['a'] -and thought,['little'] -I charged,['with'] -to tear,['off'] -the dull,|['neutral-tinted', 'eyes']| -common crowd,['of'] -made up,|['his', 'her', 'my', 'all', 'your', 'indeed!', 'about', 'that', 'I']| -such complete,['information'] -walk on,['Thursday'] -chamber me,['your'] -day just,['before'] -place both,['my'] -If we,|['could', 'were']| -her which,['was'] -flattened out,['upon'] -fumes of,['the'] -from below,|['and', 'said', 'On']| -inspector was,|['staggered', 'mistaken']| -so powerful,['an'] -brought a,|['pack', 'tinge', 'gush', 'gentleman']| -looking eagerly,['into'] -seen and,|['observed', 'yet']| -wedding breakfast,['This'] -circumstances you,['would'] -swiftly round,['from'] -night and,|['we', 'ran', 'he', 'I', 'has', 'find', 'God', 'the']| -of beef,['from'] -disposition During,['all'] -lamp from,['him'] -myself In,['my'] -not use,['it'] -stick upon,['the'] -shadows there,['glimmered'] -Scarlet to,['work'] -some traces,['of'] -Holmes caught,['me'] -amount of,|['writing', 'foresight']| -sounded and,['were'] -happened when,['Mr'] -marriage It,['is'] -yet the,['result'] -and contrition,['which'] -seeing the,['coronet'] -slip through,['my'] - "'The,['Copper'] -convincing as,['when'] -father expiring,['upon'] -drew one,['of'] -week Ah,['here'] -think myself,['that'] -against me,['but'] -rose-bushes long,['I'] -me anxious,['to'] -Eyford at,['11:15.'] -no sir,|['It', 'He']| -loitering here,['always'] -so disturbed,['and'] -despaired of,['elderly'] -take up,['as'] -sufferer It,['was'] -the right,|['side', 'bell-pull', 'forefinger', 'must', 'leg', 'path', 'and', 'is', 'time', 'track']| -one matter,['has'] -cellar stretched,['out'] -Turner I,['have'] -so. That,['was'] -station at,['which'] -and alternating,['from'] -am now,|['sleeping', 'about']| -little and,|['indulge', 'then', 'that']| -in wax,['vestas'] -horror and,|['pity', 'astonishment', 'loathing']| -eight in,['the'] -set ourselves,['very'] -million human,['beings'] -silent Oh,['he'] -instructive But,['if'] -formerly which,['is'] -already run,['to'] -house across,['the'] -the trivial,['end'] -confined to,|['that', 'Londoners', 'one']| -that two,|['middle-aged', 'men', 'of']| -in but,|['perhaps', 'when']| -danger Still,['it'] -of impending,['misfortune'] -not see,|['that', 'how', 'some', 'the', 'anyone', 'you']| -me arrested,['at'] -the normal,['condition'] -King's Cross,['and'] -Vere St,['Simon'] -The latter,|['led', 'is']| -very light,['Now'] -the carriage,|['to', 'and', 'to-night', 'It', 'came', 'drove', 'go', 'on']| -with coppers,['Only'] -years I may,['say'] -expedition which,['I'] -Eley's No,['2'] -says about,['outdoor'] -Lascar scoundrel,['of'] -a court,['of'] -body exhibited,['no'] -you saved,['him'] -brown crumbly,['band'] -man's business,['was'] -bedroom that,['morning'] -merest fabrication,['for'] -and disappointed,['man'] -voice was,|['gentle', 'just']| -cells does,['he'] -keeps off,['other'] -word for,['it'] -a claim,|['to', 'We', 'that']| -glasses a,['little'] -oversight so,['I'] -on with,|['my', 'Mr', 'you', 'your']| -one feasible,['explanation'] -He included,['us'] -time might,['be'] -quarters received,['Be'] -bald in,['the'] -come to,|['a', 'the', 'light', 'consult', 'harm', 'that', 'live', 'me', 'an', 'you', 'us', 'his', 'stay', 'believe', 'investigated', 'Stoke', 'these', 'my', 'us?', 'Winchester']| -Was she,['his'] -no answering,['smile'] -catch some,|['allusion', 'glimpse']| -horrible exposure,['of'] -nice a,['bell-pull'] -gipsies in,['the'] -inner flap,['just'] -meaning I,['have'] -free education,['and'] -this lady,|['in', 'and', 'who']| -deeply nothing,['in'] -full upon,['me'] -be deeply,['distrusted'] -whatever about,['the'] -Pon my,['word'] -aristocratic club,['and'] -terrible than,['the'] -staccato fashion,['choosing'] -who might,|['play', 'give']| -as puzzled,['as'] -uncle here,['began'] -dreadful end,['of'] -only native-born,['Americans'] -right Mr,['Holmes'] -could manage,|['it', 'there']| -life but,['now'] -unique and,|['by', 'its']| -beside you,['Thank'] -life of,|['it', 'martyrdom', 'an']| -check Holmes,['walked'] -much How,['was'] -guide stopped,['and'] -sherry 8d.,['I'] -tops with,['rich'] -cravat which,['gave'] -a gaping,['fireplace'] -object for,['his'] -life or,['in'] -attempted to,['ascend'] -as bachelors,['in'] -the songs,['and'] -taken a,|['strong', 'sudden', 'quick']| -formed local,['branches'] -his shoulders,|['was', 'Well', 'and', 'I', 'bowed', 'good', 'is']| -recognised character,['in'] -for taking,['an'] -making love,['himself'] -plain-clothes man,|['and', 'There']| -then be,['something'] -He answered,['that'] -that colour,['From'] -heels came,['the'] -charming a,['young'] -quarrel She,['heard'] -trouble about,['my'] -deal table,['behind'] -two might,['come'] -I have,|['seldom', 'changed', 'both', 'just', 'come', 'heard', 'one', 'already', 'to', 'been', 'not', 'made', 'more', 'seen', 'the', 'no', 'listened', 'ever', 'got', 'a', 'in', 'lost', 'only', 'known', 'often', 'some', 'every', 'never', 'royal', 'scored', 'found', 'trained', 'given', 'devoted', 'here', 'alluded', 'caught', 'done', 'driven', 'always', 'learned', 'grasped', 'as', 'had', 'sinned', 'led', 'now', 'none', 'brought', 'peeped', 'lived', 'felt', 'endeavoured', 'told', 'I', 'spun', 'my', 'excellent', 'added', 'hoped', 'used', 'spoken', 'watched', 'little', 'received', 'taken', 'read', 'reason', 'bored', 'longed', 'it', 'during', 'reasons', 'described', 'thought', 'myself', 'confided', 'traced', 'said', 'for', 'really', 'lady', 'kept', 'shown', 'drawn', 'determined', 'nearly', 'solved', 'treated', 'asked', 'three', 'spoiled', 'When', 'opened', 'neither', 'misjudged', 'figured', 'touched', 'promised', 'met', 'gathered', 'surprised', 'frequently']| -lasting any,['longer'] -hurried words,['and'] -Has it,['returned'] -Colonel Openshaw,|['For', 'had']| -bustled off,['upon'] -he wore,|['across', 'tinted', 'in', 'some']| -rain of,['charity'] -little mystery,|['I', 'To']| -thirty-six into,['the'] -filled A,['groan'] -I suspected,['It'] -ended by,['doing'] -|innocent will,|,['Miss'] -thoroughly understand,['the'] -remarkable brilliant,['which'] -your real,['real'] -was Isa,["Whitney's"] -to cringe,['and'] -done Your,['skill'] -crushing a,['misfortune'] -how crushing,['a'] -matter Lord,['St'] -facts of,['the'] -filled a,['shelf'] -travelling-cloak and,['close-fitting'] -his gossip,['Good-afternoon'] -bang out,['of'] -Beeches Mr,['Rucastle'] -suited me,['so'] -concerned are,['very'] -my acquaintance,['of'] -harvest which,['he'] -have misjudged,['him'] -lantern sit,['in'] -wont my,['thoughts'] -quite remarkable,['talent'] -unusual boots,['They'] -libraries or,['plate'] -result Let,['the'] -the children,['groaned'] -Holmes God!,['What'] -of watered,['silk'] -sir but,|['you', 'it']| -the barricade,['which'] -hands hardly,['consider'] -drunk he,['asked'] -either confirm,['or'] -is only,|['one', 'five', 'just', 'found', 'where', 'now', 'she', 'fair']| -called last,['week'] -sob heavily,['into'] -had shown,|['Horner', 'signs', 'Why']| -successful He,['opened'] -capture of,['mice'] -busybody smile,['broadened'] -horsey men,['Be'] -himself master,['of'] -good aunt,['at'] -look forward,['to'] -Wilson said,['my'] -photograph!" he,['cried'] -hoarse yell,['of'] -remarked holding,['it'] -Paul's Wharf,['which'] -a yellow,['line'] -maiden sister,['Miss'] -at Harrow,|['Now', 'of']| -Eglonitz here we,['are'] -hardly explain,|['to', 'it']| -so astute,['a'] -of bed,['all'] -dimly through,['them'] -side was,['a'] -accused as,['when'] -be one,|['of', 'to']| -Now Watson,['put'] -turn of,['affairs'] -hat-securer but,['the'] -cold beef,['and'] -reigning families,['of'] -her with,|['a', 'the']| -Scotland one,['week'] -me man,['sat'] -am saving,['a'] -for begging,['times;'] -undoubtedly to,['be'] -as truly,['as'] -we have,|['from', 'three', 'to', 'twice', 'never', 'stopped', 'our', 'had', 'seen ', 'been', 'it', 'an', 'so', 'at', 'a', 'not', 'every', 'exacted', 'now', 'got', 'already', 'still', 'advanced', 'found', 'when', 'one', 'come']| -this horrible,|['man', 'affair']| -miners camp,['had'] -Farm upon,['the'] -did also,['and'] -as taken,['out'] -a demon 'I'll,['throw'] -I daresay,|['that', 'There']| -a cigar-holder,['and'] -this crowd,['for'] -crop came,['down'] -clenched hands,['in'] -money said,['he'] -been good,['enough'] -be bored,['or'] -to attain,['than'] -are hinting,['at'] -uppermost He,['was'] -wrote those,['words'] -hear now,['upon'] -seated himself,['and'] -not finished,['his'] -she closed,|['and', 'the']| -night should,['bring'] -a care,['in'] -early hours,['of'] -occasion some,['months'] -his known,['eccentricity'] -by returning,['to'] -of hope,|['which', 'back']| -reasoning and,|['observing', 'extraordinary']| -he's a,['good'] -a cart,['containing'] -pipe dangling,['down'] -me something,['in'] -bearing therefore,['though'] -be to,|['get', 'him', 'me', 'open', 'your']| -data May,['I'] -sign when,['it'] -affairs without,['betraying'] -there you,['ask'] -about Miss,['Adler'] -I'll swing,['for'] -that afternoon,['so'] -His chin,['was'] -this fail,['I'] -companion speedily,['overtook'] -return so,['I'] -good and,|['kind', 'you']| -on him,|['than', 'yet', 'there', 'made']| -seemed those,['quarters'] -then for,|['the', 'I']| -robbery in,['order'] -advertisement how long,['had'] -driven several,['miles'] -gentle He'd,['had'] -from Mrs,|['Etherege', 'Farintosh']| -bottom at,['last'] -darkness this,['may'] -is worth.,['warning'] -blotting-paper has,['been'] -point however,['which'] -arrange the,['extracts'] -our time,['so'] -Oxford Street,|['to', 'In']| -uncle's life,|['in', 'and']| -not worth,['your'] -Early that,['morning'] -of laurel,['bushes'] -anything said,['too'] -land on,['the'] -You fail,['however'] -it clearer,['I'] -as in,|['that', 'Horace', 'another', 'the', 'feature']| -her confidential,|['servant', 'maid']| -as if,|['uncertain', 'the', 'it', 'to', 'you', 'she', 'they', 'he', 'on', 'a', 'I']| -deep tones,['of'] -stepping into,['the'] -worry about,['my'] -Sir George,|['Burnwell', 'and']| -she You'll,['have'] -also from,['his'] -particularly to,['two'] -as it,|['is', 'should', 'was', 'appeared', 'might', 'would', 'happens', 'seemed', 'appears', 'looks', 'afterwards', 'has', 'happened', 'were', 'goes', 'did', 'occurred']| -thing up,|['there', 'I']| -as is,|['the', 'all', 'in']| -matter think,['it'] -exchanged for,['the'] -sunk upon,['his'] -notice which,['I'] -depend upon,|['the', 'your', 'it', 'my']| -still have,['the'] -south for,['the'] -her joy,['I'] -the inquiry,|['is', 'It']| -is clear,|['For', 'enough', 'and', 'from', 'that']| -newspapers he,['said'] -the police-court,|['could', 'said', 'until']| -item in,['another'] -My groom,['and'] -hinders. And,['then'] -some thirty,['years'] -of half,|['and', 'a']| -amount to,|['88', '27']| -mine if,['I'] -loved each,['other'] -the day,|['when', 'and', 'Supposing', 'before', 'of', 'you', 'which', 'His', 'I', 'after']| -an unsolved,['problem'] -of do,['you'] -my troubles,['and'] -it through,|['the', 'this']| -the iron,['safe'] -first and,|['we', 'was', 'when', 'these', 'looked', 'third']| -matter out,['death'] -above your,['right'] -certainly among,['the'] -and are,|['feared', 'residing', 'then']| -put their,['own'] -time that,|['I', 'we', 'he', 'their', 'she', 'the', 'a', 'no', 'this', 'her']| -but beyond,['that'] -the words,|['when', 'It', 'of', 'least', 'came', 'I']| -also all,['the'] -a frightened,['horse'] -together by,['that'] -alarm of,['fire'] -they were straw,['lemon'] -which seemed,|['to', 'the', 'quite']| -protruded out,['of'] -wrote S,['H'] -a finer,['field'] -murderers of,['John'] -gives no,['trouble'] -the advice,|['of', 'which']| -the price,['of'] -stones turned,['over'] -you however,|['I', 'as', 'with']| -newspaper shop,['the'] -business which,['was'] -to understand,|['the', 'it', 'a']| -Fowler at,['a'] -tears I,['have'] -indeed committed,['an'] -topic until,['at'] -to Sherlock,['Holmes'] -left-handedness were,['yourself'] -capital Holmes,['had'] -me There,|['is', 'could']| -a crumpled,|['envelope', 'letter']| -boards Then,['he'] -of training,|['entirely', 'his']| -|here, sir|,['See'] -idea more,['creditable'] -the crucial,['points'] -settle this,['little'] -send it,['on'] -must really,['ask'] -step into.,['what'] -given It's,['only'] -was clearly,|['to', 'so', 'never', 'the']| -of elderly,['man'] -light through,['the'] -tracks for,['six'] -which broadened,['and'] -inspector laughing,["it's"] -fell to,['the'] -10s Every,['day'] -you waiting,|['said', 'an']| -compress the,['earth'] -round impressions,['on'] -two people,['saw'] -the original,|['building', 'disturbance']| -also is,['the'] -unnoticed Watson,['You'] -a vulgar,['comfortable'] -forward and,|['the', 'her', 'found', 'his', 'sinking', 'looked', 'patting', 'shaking', 'peering', 'had', 'confronted']| -be fatal,|['but', 'to']| -or eight,|['different', 'feet']| -has dried,['itself'] -von Saxe-Meningen,['second'] -also in,|['the', 'a', 'his']| -was determined,|['to', 'that']| -sheer frenzy,['of'] -Of her,['I'] -hard rough,['surface'] -by name,|['who', 'instituted']| -amalgam which,['has'] -you so,|['much', 'I']| -some possible,['explanation'] -Serpentine-mews and,['knew'] -he held 1000,['pounds'] -only half,|['an', 'a']| -then only,['when'] -different matter,['There'] -one knows,['a'] -|all, Watson|,['said'] -edges of,['the'] -east of,|['the', 'London']| -last which,['was'] -anything very,|['funny', 'peculiar']| -hypothesis said,['Holmes'] -Cal. U.S.A.,['That'] -always to,|['say', 'remember', 'lock', 'get']| -lips a,['standing'] -postmarks of,['those'] -producing a,['realistic'] -beside him,|['Altogether', 'for', 'curious', 'I', 'on', 'By', 'patted']| -beside his,['chair'] -thief How,['dare'] -their letter,['But'] -sort sir,['though'] -passage One,['of'] -yourselves that,['my'] -been warned,['against'] -my intrusion,['I'] -friend whom,['I'] -Baker is,|['an', 'a']| -lips I,['will'] -of cobbler's,['wax'] -wages so,['as'] -yellow line,['and'] -aunt's at,['Harrow'] -clear voice,['into'] -go for,|['what', 'very', 'it', 'days', 'nothing']| -winding staircases,['and'] -him Does,['it'] -said Vincent,['Spaulding'] -Just see,['how'] -grief has,['got'] -from immediately,['behind'] -travels for,['Westhouse'] -considerable share,['in'] -thicket which,['led'] -suggested by,['his'] -the long,|['drive', 'swash', 'run', 'lash', 'cherry-wood']| -Holder Oh,['my'] -said And,['the'] -them he,['has'] -afternoon So,['determined'] -grief had,['been'] -present any,['feature'] -a nod,['he'] -added as,['the'] -the time,|['but', 'that', 'Mr', 'and', 'stated', 'when', 'of', 'rather', 'which', 'though', 'in', 'while', 'from', 'there', 'the', 'Now']| -know who,['sold'] -seems absurdly,['simple'] -think with,|['me', 'some']| -not seeing,['what'] -east or,['west'] -remained indoors,['all'] -French offices,['but'] -in swiftly,['If'] -nobleman swung,['his'] -chief feature,['THE'] -table must,['make'] -shoulders bowed,['his'] -with premature,['grey'] -them upon,['record'] -has frequently,['brought'] -monarch and,['the'] -forgive anything,['that'] -you!" said,['Holmes'] -business man,['Besides'] -once Now,['Robert'] -own little,|['adventures', 'methods', 'income', 'deposit', 'practice', 'office', 'things']| -with politics,['for'] -slow but,['I'] -very formidable,['he'] -arrived Ha,['I'] -investment and,['I'] -maid tapping,['at'] -this estate,['which'] -him once,['a'] -up we,['waited'] -lined with,['flame-coloured'] -HOLMES: I am,['very'] -sat huddled,['up'] -its least,['important'] -Cooee which,['was'] -far side,['of'] -looking pale,['and'] -dropping in,['said'] -allow him,['to'] -it closing,['in'] -a wrinkled,['velvet'] -in these,|['little', 'days', 'rooms', 'recent', 'parts.', 'deserted']| -certain Neither,['you'] -grin of,['rage'] -business nor,['anything'] -good worker,["There's"] -Shipping Company,['Now'] -serious news,['this'] -dog-cart along,['heavy'] -would burst,['out'] -the allusions,['to'] -we returned,['and'] -of poetry,['Then'] -these bedrooms,['the'] -manage there,['for'] -how strange,['it'] -must then,['be'] -The ideal,['reasoner'] -|suicide no,|,['nothing'] -sat open-eyed,['within'] -these reasons,['I'] -and shone,['on'] -Holmes you,|['will', 'have', 'know']| -water in,['your'] -woods which,['lined'] -which should,|['settle', 'have']| -Thursday and,|['came', 'Friday']| -Holmes came,['round'] -competition in,['the'] -chair the,['wreck'] -the creature,|['flapped', 'hiss', 'Mr']| -their violence,['that'] -so formidable,['an'] -send her,['into'] -son Her,['light'] -lunch on,['the'] -forming his,['conclusions'] -capable performer,['but'] -With these,|['he', 'I']| -office after,['me'] -a likely,['ruse'] -an oath,['Tell'] -door This,['ground'] -sternly It,['is'] -trifle and,['yet'] -single out,['the'] -respect She,['laid'] -to engage,['in'] -the morose,['Englishman'] -his chambers,['that'] -fierce energy,['of'] -curling red,['feather'] -and fixed,['one'] -and cigarette,['tobacco'] -ship's carpenter,['hands'] -refined-looking man,['black-haired'] -the capture,['of'] -that say,['that'] -Holmes and,|['I', 'on', 'the', 'ran', 'submitted', 'not', 'in', 'he', 'we', 'let', 'my', 'indeed']| -its force,['Perhaps'] -it continues,['I'] -she will,|['do', 'refuse', 'not', 'have']| -gentleman ask,['you'] -met her,|['end', 'mysterious', 'several', 'slipping']| -useful so,['I'] -answering the,|['look', 'other']| -The metallic,['clang'] -yours with,['its'] -How came,['the'] -|no, the|,['mystery'] -a supper,['and'] -upon these,['things'] -the wound,|['by', 'cleaned']| -James never,['did'] -much influence,['over'] -the incident,|['as', 'of']| -a thing,|['is', 'as', 'which', 'like', 'in']| -thrown in,['your'] -ran free,['in'] -lit street,['Now'] -stone rather,['smaller'] -threw across,['his'] -glints and,['sparkles'] -milk and,['the'] -English provincial,['town'] -terror She,['raised'] -families and,['to'] -sickness came,['over'] -wedding was,|['arranged', 'as']| -served to,|['weaken', 'turn']| -not she,['was'] -dead of,['the'] -small lateral,['columns'] -is old,['and'] -dark leaves,['shining'] -recovered something,['of'] -Water near,['Reading'] -whose evidence,['is'] -the sharp,|['sound', 'clang', 'rattling']| -to push,['her'] -warnings of,['the'] -while we,['resided'] -responsible for,|['Dr', 'her']| -a perplexing,['position'] -yard There,['was'] -Mr Moulton,['for'] -bent her,|['head', 'to']| -floor on,['which'] -same way,['with'] -eightpence for,['a'] -her neck,['and'] -luxuriant and,['of'] -eyes I,['trust'] -his faults,|['too', 'as']| -Dr Watson,|['who', 'has', 'before', 'He', 'Draw']| -these dear,['old'] -other little,|['things', 'weaknesses']| -glances at,|['her', 'the']| -short stock,['with'] -a long,|['straight', 'cigar-shaped', 'thin', 'journey', 'time', 'silence', 'series', 'draught', 'low', 'day', 'fight', 'term', 'frock-coat', 'drawn', 'grey', 'golden', 'building', 'sharp', 'ulster', 'newspaper', 'mirror', 'light']| -had promised,['to'] -feet again,['and'] -She said,['nothing'] -chuckled heartily,['Your'] -value your,['advice'] -you For,['example'] -first to,|['Gross', 'take', 'have', 'rush']| -Rucastle came,|['down', 'out']| -is Helen,['Stoner'] -once My,['father'] -very prompt,['and'] -the fellow,|['more', 'says']| -his wont,['my'] -wet foot,['had'] -the ice,['crystals'] -run for,|['it', 'I']| -so cunning,['that'] -he gasped,|['What', 'at', 'I']| -ledger turned,['to'] -only a,|['very', 'few', 'joke', 'lad', 'quarter-past', 'foot', 'line']| -and danger,['also'] -been unfortunate,['enough'] -pass backward,['and'] -wish me,['to'] -Market One,['of'] -is John,|['Openshaw', 'Robinson']| -utilise all,['the'] -behind though,['the'] -almost come,['to'] -have lived,|['rent', 'happily']| -led up,['to'] -|do, sir|,['if'] -have afforded,['a'] -led us,|['in', 'down']| -difficulty in,|['recognising', 'the', 'engaging', 'undoing', 'entering', 'finding', 'getting']| -a pointed,['beard'] -his son's,['gun'] -Morning Chronicle,['of'] -any mystery,['in'] -inspector suggested,['that'] -seven years,|['penal', 'that']| -She hurried,['from'] -rate she,['would'] -end in,|['my', 'such']| -numbers of,['the'] -the recesses,['of'] -greater perils,['than'] -his mischance,['in'] -avoided the,['society'] -reared itself,['from'] -writing else,['can'] -colleague has,['been'] -with chagrin,['and'] -and shattered,['in'] -that not,['only'] -this Ha,['ha'] -is hardly,|['a', 'safe']| -observed the,['proceedings'] -this He,|['threw', 'rushed', 'took']| -the web,['they'] -bedroom window,|['is', 'was', 'about']| -his breast,|['like', 'and', 'buried']| -that mean,['It'] -And first,|['one', 'of', 'as']| -orders that,['Arthur'] -the B's,['before'] -very bed,['in'] -the Republican,['policy'] -death of,|['Wallenstein', 'the', 'Dr']| -if an,['action'] -of ribbed,['silk'] -training entirely,['is'] -once. should,['be'] -are his,['keys'] -Within there,['was'] -caressing and,['soothing'] -Holmes laughing,|['it', 'as', 'But', 'Only', 'I', 'Indirectly', 'You']| -than anyone,['else'] -follows I,['had'] -Paddington Station,|['Sherlock', 'I']| -best And,['now'] -unconscious must,['have'] -but sat,['with'] -voters and,['the'] -turn to none,['save'] -he sealed,['it'] -something interesting,['object'] -not snap,['the'] -you for,|['a', 'some', 'this', 'having', 'your', 'if', 'any', 'the']| -say occasionally,['to'] -him nearly,['every'] -did the,|['bushy', 'Sholtos', 'coroner', 'gipsies', 'same', 'police']| -strange tales,['of'] -dark incidents,['of'] -seen upon,['the'] -insensibility that,['evening'] -is less,|['and', 'illuminated', 'than']| -double-bedded one,['Cedars?"'] -venomous beast,['His'] -waterproof told,['of'] -St. Clair,['had'] -you shave,['by'] -gun and,|['strolled', 'held']| -bag as,['he'] -Merryweather who,['is'] -There could,['be'] -are anxious,['about'] -be got,['off'] -pride and,|['pulled', 'the']| -wide awake,['but'] -than his,|['deserts', 'left', 'own', 'companion', 'words', 'violence']| -me know,|['when', 'your', 'what']| -downstairs but,['I'] -plays no,['part'] -silence that,['foul'] -better view,['talking'] -hard fight,['against'] -and wondering,|['lazily', 'what']| -her heart it,['will'] -Aberdeen some,['years'] -bar across,['the'] -end without,['putting'] -to-night laughed,['indulgently'] -own delicate,['and'] -absolutely quiet,['one'] -recovered gems,['to'] -Seldom goes,['out'] -your wife,|['to', 'was', 'allows', 'do', 'hear']| -first hansom,['Watson'] -a good-sized,['square'] -girl Both,['could'] -clutching at,['the'] -his cloak,['and'] -The centre,['door'] -did very,['wisely'] -also was,['opened'] -life into,['each'] -square black,['morocco'] -fasteners which,['a'] -But then,|['when', 'as', 'it', 'the']| -suicide. But,['I'] -to refuse,|['any', 'confess']| -the secret,|['however', 'was']| -at double,['the'] -certain that,|['it', 'some', 'he', 'I', 'you']| -pride Watson,['he'] -immense stream,['of'] -keenly at,|['the', 'Holmes', 'her']| -not overhear,['what'] -no word,['has'] -Paddington which,['would'] -a weakening,['nature'] -protested that,['he'] -a queen,['she'] -from ennui,['he'] -taking your,['money'] -the certainty,['that'] -wake up,['and'] -both bent,['over'] -Read it,|['aloud', 'He']| -which lead,|['up', 'towards']| -the neighbourhood,|['in', 'McCarthy', 'however', 'Holmes', 'and', 'of']| -scheming man,['His'] -no constable,['was'] -appeared surprised,['at'] -sluggishly beneath,['us'] -knocked off,['the'] -or waned,['in'] -Frank's name,['among'] -me hopes,|['shrugged', 'opinion']| -balancing whether,['I'] -knock sleepy,['people'] -then must,['leave'] -expected them,['to'] -look for,['help'] -brow was,['all'] -note Mr,['Holmes'] -there said,['Holmes'] -are as,|['good', 'I', 'a']| -with hanging,['jowl'] -Hosmer wrote,['and'] -Garden I,['know'] -are at,|['their', 'present', 'liberty']| -drove up,|['to', 'we']| -new duties?,['it'] -delight belonged,['to'] -a three-legged,['wooden'] -Edward Street,['near'] -something quite,['unforeseen'] -fold over,['his'] -normal condition,['of'] -shoes I,|['found', 'believe']| -no. to,['cut'] -done asked,['Holmes'] -birds to,['a'] -misfortune impressed,['me'] -way dependent,['upon'] -Burnwell is,['It'] -his debts,['of'] -the felt,['by'] -no just,['cause'] -every evil,['passion'] -and comforted,['her'] -this prank if,['it'] -proceed with,['your'] -still drunk,['he'] -minutes until,['we'] -supper and,|['then', 'follow']| -linked on,['to'] -the reeds,|['which', 'Oh']| -the groom,['Shortly'] -second my,["sister's"] -absolutely depend,['upon'] -BACHELOR Lord,['St'] -dread which,['it'] -were shown,|['up', 'to']| -laid beside,['his'] -not been,|['drawn', 'able', 'over-good', 'in', 'for', 'home', 'swept', 'brushed', 'so', 'wasted', 'heard', 'ascertained', 'disappointed', 'slept', 'cleared', 'standing', 'fed']| -safe the,|['door', 'saucer']| -was Even,['his'] -was caused,['by'] -like anything,['of'] -fear note,['only'] -his bed,|['and', 'was', 'went']| -perhaps as,['well'] -|you well,|,['sir'] -of importance,|['to', 'but', 'that', 'Good', 'The']| -on that,['absolute'] -perhaps that,|['And', 'you']| -|yes, sir|,['I'] -the panel,['with'] -address will,['call'] -her luggage,['when'] -got him,['here'] -the weight,|['of', 'would']| -planning for,['I'] -Balzac once,['There'] -very perturbed,['expression'] -well then,['that'] -do tell,['him'] -sharp for,['dinner'] -something be,['She'] -then when,['I'] -house of,|['Miss', 'Dr', 'Mr', 'white', 'the']| -in marm,['Bring'] -hand hover,['over'] -house on,|['the', 'fire']| -may arrive,['at'] -member of,|['the', 'your', 'an']| -sister's door,['was'] -Mr. James,['Windibank'] -his motives,['were'] -brisk manner,['of'] -fell The,['grey'] -She dropped,['her'] -Stoner did,['so'] -pie with,['a'] -my night,|['of', 'could']| -lay deep,['upon'] -companion We,|['soothed', 'have']| -of criminals,['He'] -new offices,['He'] -are worth,['considering'] -carried out,|['two', 'of', 'about', 'my']| -Shillings have,['not'] -affairs have,['as'] -His form,['had'] -her pen,['too'] -still pressed,['together'] -patron had,['made'] -dust you,['will'] -hence my,['preference'] -duty by,['him'] -you fasten,['all'] -paying over,['all'] -in Florida,['where'] -worked This,['was'] -invisible but,['unnoticed'] -things There,['was'] -well able,['to'] -which this,|['advertisement', 'man']| -came before,['me'] -in excavating,["fuller's-earth"] -a black,|['mark', 'vizard', 'veil', 'gap', 'felt', 'bar', 'top-hat', 'canvas']| -well Would,['you'] -me Far,['from'] -figures Your,['salary'] -the guilty,['parties'] -from what,|['I', 'you', 'that']| -hair? sir,['I'] -named Oakshott,['and'] -involved by,['your'] -and questionable,['memory'] -never did,|['wish', 'and', 'it']| -acquaintance to,['Baker'] -the rumble,['of'] -avoiding the,['sensational'] -covered her,["bride's"] -the manner,|['which', 'and']| -disregarding my,['remonstrance'] -mortar its,['silence'] -then down,['again'] -inquest In,['the'] -voice into,['an'] -he slept,['badly'] -woman whom,['he'] -refuse any,['of'] -farther he,['conveniently'] -him from,|['extreme', 'below', 'America', 'the', 'New', 'endeavouring']| -sewing-machine of,['the'] -to start,|['upon', 'in']| -signature or,['address'] -missed all,['that'] -my thumb,|['or', 'used', 'had', 'and']| -opinion We,['have'] -analysis of,|['cause', 'the']| -and small,['like'] -with Sherlock,['Holmes'] -grasping Sherlock,['Holmes'] -fortunate enough,['to'] -4700 pounds,['for'] -window are,['to'] -first is,['Dr'] -trick also,['I'] -first it,|['was', 'seemed']| -street you,['may'] -be discreet,['and'] -account cry,['Cooee!'] -same post,['brought'] -family. I,['promise'] -hair to-night,['and'] -course learned,['all'] -very easy,['matter'] -forward against,['the'] -Its power,['was'] -This would,['be'] -Holmes And,|['now', 'since']| -innocent cannot,['tell'] -suggestiveness of,['thumb-nails'] -a Dane,['who'] -no shaking,['them'] -straight off,['and'] -father make,['any'] -less would,['bring'] -refuse confess,['that'] -discover what,['is'] -say of,['this'] -have turned,|['his', 'over']| -evidence to,|['corroborate', 'the']| -|from? Dundee,'|,['I'] -say on,['a'] -landau with,['their'] -much however,['by'] -a simple,['case'] -stepdaughter has,['been'] -say or,['do'] -He led,['us'] -own by,['will'] -his ways,|['He', 'no']| -funny one,['chuckled'] -true Singularity,['is'] -wit He,['used'] -theory not,['to'] -foul and,['venomous'] -pulled and,['butted'] -what appears,['to'] -much may,['have'] -St Simon's,['narrative'] -on Thursday,['and'] -had spent,|['his', 'the', 'so']| -with expectancies,['for'] -the discrepancy,['about'] -the coachman,|['with', 'had', 'to']| -deduction and,['of'] -from me,|['What', 'but', 'I', 'said', 'with']| -I understand,|['that', 'became', 'richer', 'a', 'Where', 'Mr', 'from', 'gave', 'By', 'which', 'is', 'who', 'deposes']| -our plans,|['nodded', 'That']| -their denial,['that'] -thinks that,|['her', 'I', 'it']| -hall which,['she'] -a wicked,['world'] -and gazed,|['at', 'about']| -nor seen,['the'] -that district,['and'] -most of,|['the', 'my']| -from my,|['post', 'father', 'old', 'lips', 'right', 'employers', 'surprise', 'bed', 'companion', 'room', 'lamp', 'wound', 'wounded', 'pursuers', 'friends', 'own', 'penetrating']| -on save,['only'] -the spell,['had'] -all very,|['well', 'quietly']| -that as,|['we', 'long', 'I', 'it']| -pale and,|['his', 'worn', 'filled', 'gave']| -nitrate of,['silver'] -to amuse,['myself'] -writer was,['on'] -father was,|['going', 'actually', 'absent', 'a', 'at']| -your son,|['came', 'who', 'knew', 'saw', 'struck', 'finding', 'The', 'he', 'allow', 'told']| -the direction,|['of', 'in']| -matter even,['more'] -remained upon,['the'] -was empty,|['all', 'and', 'There']| -will answer,['your'] -winding stone,['steps'] -things for,|['the', 'some']| -dining-room and,['waited'] -cigar after,['all'] -itself shoulder-high,['and'] -drives out,['at'] -of use,|['to', 'a', 'and']| -your circulation,['is'] -a low,|['voice', 'den', 'clear', 'whistle', 'ceiling', 'laugh', 'door', 'hill']| -truth Now,['I'] -four protruding,['fingers'] -your address,|['had', '31', 'I', 'Oh', 'and']| -your bird,['said'] -I sit,['contains'] -back Nothing,['simpler'] -a visit,|['to', 'and']| -had become,|['of', 'suddenly', 'a']| -a massive,|['head', 'strongly']| -resources and,['borrowed'] -drawn and,['grey'] -my records,['have'] -confidant They,['had'] -threw off,['my'] -nothing more,|['first', 'crude', 'deceptive', 'to', 'I']| -Mr Turner,|['Both', 'made', 'of', 'Above']| -page we,['have'] -horrible affair,|['compose', 'up']| -the pick,['of'] -seemed a,|['fine', 'different']| -stood behind,['that'] -swinging lamp,['while'] -there although,['its'] -a reward,['of'] -mysteries which,['had'] -Opera of,['Warsaw yes'] -Armitage the second,['son'] -at Holmes,|['with', 'request', 'and']| -police-court until,['at'] -226 Gordon,['Square'] -me to-night,['Mrs'] -was while,['you'] -St Clair's,|['house', 'story', 'assertion', 'coat']| -year in,|['my', 'year']| -white satin,['shoes'] -brains out,['and'] -some dreadful,['hand'] -announcement chuckled,['and'] -Many people,['are'] -you will,|['be', 'know', 'find', 'excuse', 'play', 'not', 'allow', 'observe', 'contradict', 'come', 'keep', 'go', 'soon', 'draw', 'readily', 'wait', 'give', 'have', 'look', 'lay', 'recollect', 'leave', 'do', 'state', 'perhaps', 'postpone', 'kindly', 'question', 'succeed', 'break']| -lit up,['his'] -and Archery,['and'] -the crisp,|['rattle', 'smoothness']| -a rake,['I'] -the distaff,['side'] -bride who,['had'] -the foot-paths,['it'] -understand was,['what'] -honourable title,['of'] -paragraph Cosmopolitan,['Jewel'] -positively slovenly,['as'] -heavy chamois,['leather'] -just now,|['It', 'I', 'there', 'by']| -probability the strong,['probability is'] -solid have,['very'] -see that,|['there', 'I', 'all', 'you', 'the', 'a', 'both', 'we', 'his', 'it', 'he', 'no', 'Mrs', 'she', 'your', 'two', 'anyone', 'someone', 'our', 'Holmes']| -treated the,['singular'] -Holmes took,|['a', 'up', 'it']| -plain? quite,['follow'] -friends would,['be'] -not lose,|['a', 'hope', 'an']| -have tried,['and'] -such an,|['expenditure', 'absolute', 'hour', 'address', 'offer']| -up beside,['the'] -of playing,['backgammon'] -the sitting-rooms,|['being', 'you']| -enthusiastic and,['rubbed'] -large blue,['dressing-gown'] -client flushing,['up'] -such as,|['his', 'Mr', 'I', 'it', 'might', 'we', 'he', 'my', 'a']| -Moulton for,['I'] -shall know,['all'] -was round,['the'] -examined her,['for'] -Frank was,|['that', 'really', 'all', 'right']| -or Madame,['rather'] -how you,|['deduce', 'work', 'would', 'saved', 'reach']| -rush a,['clatter'] -magistrate refused,['to'] -black shade,['This'] -going the,|['same', 'village']| -a little,|['more', 'after', 'knot', 'moist', 'off', 'fortune', 'awkward', 'in', 'square', 'funny', 'too', 'souvenir', 'trying', 'and', 'handkerchief', 'purple', 'above', 'bald', 'late', 'worn', 'pale', 'paradoxical', 'you', 'quick', 'singular', 'detour', 'reed-girt', 'cry', 'note', 'I', 'monograph', 'good', 'green-scummed', 'face', 'help', 'talk', 'blonde', 'slip', 'supper', 'theory', 'paint', 'problem', 'rat-faced', 'shed', 'huffed', 'resentment', 'light', 'cold', 'before', 'breakfast', 'stimulant', 'place', 'close.', 'of', 'lower', 'past', 'out', 'bend', 'to', 'faster', 'stately', 'sharp', 'nut', 'was', 'secret', 'clearer', 'disturbed', 'from', 'Mr', 'said', 'reward', 'triangular', 'German', 'startled', 'fancy', 'creature', 'sideways', 'management', 'passage', 'pallet']| -was unable,['to'] -high-power lenses,['would'] -at eleven,["o'clock"] -surpliced clergyman,['who'] -his double-breasted,['coat'] -and many,['a'] -a sympathy,['between'] -intellectual is,['of'] -chamber was,|['panelled', 'larger']| -which so,['many'] -Armour and,['Architecture'] -which shows,|['that', 'my']| -very anxious,|['that', 'to']| -his barmaid,['wife'] -was wrongfully,['accused'] -upon conjecture,['and'] -evening so,['that'] -shoulders I,['am'] -reaction with,['every'] -solved it,|['I', 'What', 'then,']| -scandals have,['eclipsed'] -planter in,['Florida'] -interest my,['dear'] -would induce,|['the', 'her']| -the north,|['and', 'side']| -the vessels,['which'] -it which,|['could', 'are', 'never', 'of', 'seemed']| -duties to,['my'] -our visitor,|['had', 'which', 'answered', 'We', 'And', 'the', 'detailed', 'of', 'is']| -at these,|['scattered', 'lonely']| -roused his,['anger'] -shoulders a,['massive'] -city ostensibly,['as'] -cellar like,['a'] -Inspector Barton,['who'] -or else,|['he', 'biassed', 'as', 'I']| -somewhat luxuriant,['and'] -so utterly,['spoiled'] -Division on,['duty'] -slim youth,['in'] -me away,['to'] -coming from,['the'] -and turned,|['it', 'the', 'his', 'once', 'as', 'quickly', 'back']| -exceedingly hot-headed,['and'] -morning She,['will'] -the fury,['with'] -small rain,['of'] -a fiver,['on'] -borders of,['Oxfordshire'] -called Maudsley,['who'] -in Winchester,['I'] -ago sister,['asked'] -quite enthusiastic,['and'] -a trumpet,['of'] -it all!,['said'] -path than,['is'] -is Mrs,['Toller'] -for me,|['to', 'and', "I'm", 'no', 'to-morrow', 'No', 'I', 'But', 'in', 'lay', 'for', 'was']| -gazing up,['at'] -vanished away,|['by', 'like']| -until four,['in'] -Ross neither,['sickness'] -the story,|['makes', 'was', 'of', 'to', 'I']| -not ventilate,['With'] -whipcord do,['you'] -quite invaluable,['as'] -Lord Backwater,['Lord'] -Holmes hailed,['a'] -handkerchief On,['the'] -the cringing,['figure'] -using a,['form'] -lives near,['Harrow'] -lay his,['hands'] -for my,|['intrusion', "week's", 'assistance', 'father', 'dear', 'pains', 'own', 'friend', 'skill', "sister's", 'sister', 'stepfather', 'coming', 'cashier', 'curiosity', 'art']| -sides and,['on'] -a spirit,['case'] -struck and,|['in', 'one']| -wander so,['continually'] -a horrid,['red'] -companion lithe,['and'] -hand when,|['he', 'I']| -and all,|['was', 'else', 'that', 'its', 'went', 'the', 'of', 'those']| -consulting-room I,['dressed'] -more though,['the'] -to possess,['and'] -Besides I,['knew'] -body slightly,['bent'] -bowing Pray,['take'] -and roused,['its'] -Rucastle took,['me'] -glasses the,['voice'] -says and,['will'] -and amid,['the'] -rascally Lascar,['who'] -apparently the,['richer'] -said or,['to'] -And let,['me'] -shift your,['own'] -eyes wandered,['continually'] -unconscious and,['though'] -client may,['rest'] -alas it,['is'] -alone could,['have'] -interest after,['all'] -had brought,|['a', 'with', 'up', 'back', 'out', 'in', 'the', 'it']| -from Pondicherry,|['the', 'in']| -then?" is,['fear'] -before this,|['gentleman', 'You', 'unpleasant']| -been sent,['down'] -the coach-house,['I'] -extinguished and,['all'] -inquiry I,|['fear', 'deduced']| -to utilise,['all'] -and gone,['Presently'] -medical experience,['would'] -with matters,['which'] -note in,['the'] -good girl,['in'] -as black,['as'] -man rather,['over'] -he digs,['for'] -all The,|['G', 'small']| -best in,['the'] -whom she,['became'] -issue of,['this'] -by himself,['and'] -guard came,['out'] -to week,['between'] -attention madam,['name'] -open he,['might'] -on earth ,|['dear', 'tut,']| -year but,['the'] -|LIP Whitney,|,['brother'] -stares up,['at'] -in Middlesex,['passing'] -seven hours,['I'] -portly client,['puffed'] -formed any,['definite'] -whip across,['your'] -is thickly,['wooded'] -the present,|['You', 'case', 'instance', 'moment', 'prices', 'free-trade']| -a Chinese,['coin'] -King may,['do'] -good with,['my'] -middle size,['but'] -Capital and,['Counties'] -more developed,['the'] -|Strand right,|,['fourth'] -right track,['The'] -chuckled to,['himself'] -into custody,['A'] -of movement,['and'] -work returning,['at'] -after opening,['a'] -too did,['not'] -repairs you,['could'] -his lantern,['and'] -to shake,|['nerves', 'my']| -my morning,|['or', 'visitor']| -drunken sallies,['from'] -blood from,['my'] -got worse,['and'] -done said,['I'] -I worn,['the'] -their past,['V'] -mystery To,['do'] -the chance,|['Here', 'dear', 'came']| -was extinguished,['and'] -a walk,['in'] -the deeds,['of'] -the financier,['I'] -that beggarman,['Boone the'] -The trees,['and'] -proof positive,['that'] -regretted the,|['impulse', 'rashness']| -of much,['importance'] -the coarse,['brown'] -very vulnerable,['from'] -argument said,['Holmes'] -allowance I,['am'] -sends me,['health'] -college for,['having'] -seven There,['is'] -world that,['is'] -and searched,|['Two', 'without', 'and']| -to fight,['She'] -driver is,['some'] -view until,['he'] -my part,|['At', 'I']| -fulfilment in,['Dundee'] -must still,['refuse'] -a tooth-brush,['are'] -carry conviction,['with'] -subject of,['interest'] -marriage that,['the'] -attention and,['with'] -foreseen the,['possibility'] -preventing his,["stepdaughter's"] -it carefully,['examined'] -find many,['tragic'] -a certainty,|['We', 'I', 'Circumstantial', 'who']| -seemed safer,['to'] -case shall,['see'] -subject or,['a'] -human What,['a'] -matter like,['a'] -dozen yards,|['or', 'of']| -client It,['seems'] -whose hair,['is'] -contemplation of,['a'] -night's adventure,['and'] -with fresh,['blood'] -strange coincidences,['the'] -deadly story,['linked'] -sort was,['a'] -face while,['Holmes'] -quietly digesting,['their'] -the lumber-room,|['of', 'you']| -leaving it,['You'] -all the,|['readers', "men's", 'tags', 'holes', 'other', 'morning', 'preposterous', 'clues', 'steps', 'recent', 'time', 'years', 'keys', 'chain', 'results', 'facts', 'furniture', 'clothes', 'coins', 'secrets', 'evening', 'same', 'proofs', 'way', 'money', 'work', 'hubbub', 'problems', 'plugs', 'particulars', 'papers', 'notices', 'trouble', 'police', 'windows', 'snow', 'enthusiasm']| -forfeit your,['whole'] -political influence,['might'] -into Saxe-Coburg,['Square'] -were as,|['unlike', 'silent', 'pestered', 'good']| -were at,|['It', 'last', 'first', 'the', 'least']| -questions as,['to'] -well Then,['as'] -fail I,['shall'] -way said,['I'] -you care,['to'] -Boone his,['lodger'] -asleep and,['indeed'] -a holiday,|['so', 'from']| -has been,|['waylaid', 'no', 'my', 'good', 'committed', 'in', 'a', 'more', 'to', 'referred', 'seriously', 'shattered', 'upon', 'submitted', 'loading', 'waiting', 'done', 'of', 'used', 'an', 'gummed', 'settled', 'recently', 'hung', 'missed', 'for', 'knocked', 'hereditary', 'until', 'pierced', 'here', 'exceptionally', 'arranged', 'made', 'compelled', 'taken', 'thrown', 'possible', 'set', 'that', 'any', 'subjected', 'driven', 'several', 'so', 'urged', 'offered', 'considered', 'much', 'quite', 'drinking', 'some']| -instant when,['the'] -old-fashioned shutters,['with'] -swing of,['his'] -out upon,|['the', 'his', 'it', 'our']| -He received,['us'] -stains upon,['the'] -Adler papers,|['the', 'to']| -change which,['had'] -funny about,['it'] -murderer do,['not'] -iron trough,['and'] -brought out,|['in', 'the']| -front pew,['at'] -gaining light,['as'] -slurring over,['of'] -brother or,['a'] -saved reaction,['of'] -beneath us,['Beyond'] -river steamboats,['The'] -he continued,|['glancing', 'flushing', 'The', 'to', 'seeing', 'disregarding', 'buttoning']| -minutes! they,['went'] -brother of,['the'] -a suite,['of'] -lamp sits,['a'] -of May,['2nd'] -morning as,['we'] -been strong,['for'] -morning at,['Ross'] -stump of,['a'] -too quite,['unusual'] -He hastened,['upstairs'] -vary with,['every'] -are dealing,['with'] -delicate that,['I'] -was found,|['that', 'lying', 'in', 'the']| -such purity,['and'] -teeth still,['meeting'] -black figure,['like'] -details said,['he'] -time Now,['keep'] -large villa,|['laid', 'which']| -a moody,['silence'] -Angel flush,['stole'] -even one,['of'] -second-floor window,['The'] -sir and,['please.'] -were ill-used,['then'] -contents had,['been'] -ignorant that,['their'] -think of,|['food', 'leaving', 'nothing', 'was', 'it', 'writing', "Baxter's", 'revenge', 'such', 'that', 'did', 'all', 'him', 'the', 'our']| -man's wrist,['and'] -transition from,['a'] -sitting-room Now,['when'] -minutes past,['four'] -he pursue,['this'] -doing me,['on'] -of 84,['when'] -of 85,['On'] -closed the,|['door', 'shutters', 'locket', 'entrance', 'window']| -throw no,['light'] -underneath to,['Mr'] -blue triumphant,['cloud'] -The murder,['was'] -colour here's,['a'] -of 89,['not'] -writer is,['possible'] -detail which,|['might', 'I']| -accidents as,['the'] -in satisfying,['its'] -your breakfast,['has'] -Jump up,['here'] -times repeated,['There'] -G with,|['a', 'the']| -expected his,['reply'] -dried sticks,['gathering'] -a train,|['to', 'for', 'from', 'back', 'at']| -THE BLUE,['CARBUNCLE'] -them's not,['our'] -hunt down,['want'] -pass he,['had'] -the grace,|['and', 'of']| -thus apparelled,['but'] -dense darkness,['which'] -or relations,['of'] -same direction,['how'] -ground with,|['the', 'his']| -plannings the,['cross-purposes'] -tobacco Those,['I'] -square room,['in'] -more vacancies,['than'] -in prison,|['but', 'shall']| -twelve months,['I'] -seeing a,['cab'] -urged against,['my'] -of Miss,|['Irene', 'Mary']| -lengths to,['which'] -only after,['a'] -community in,['the'] -my lens,|['You', 'and']| -no business,['there'] -The will,['is'] -me swear,|['with', 'and']| -him One,|['was', 'of']| -to pronounce,['as'] -|was, indeed|,['our'] -my dread,['of'] -and aided,['by'] -stone could,['not'] -work during,['the'] -ingenuity failed,['ever'] -he might,|['be', 'take', 'care', 'prove', 'have', 'come', 'and', 'find', 'solder', 'direct', 'settle', 'still']| -and her,|['bedroom', 'fingers', 'little', 'expression', 'limbs', 'sweetheart']| -plover's egg,['and'] -Fritz!' she,['cried'] -strange it,['was'] -fee of,['my'] -painfully and,['then'] -proved I,["don't"] -a revolver,|['but', 'in']| -|really, it|,['seems'] -before taking,['the'] -sufficient punishment,['THE'] -waiting for,|['the', 'us', 'him', 'you', 'her', 'me']| -a hat-securer,['but'] -promise that,['he'] -shoves Hullo!,['I'] -end had,['not'] -sir them's,['not'] -great deal,['of'] -chain of,['events'] -cashbox in,['the'] -mistaken had,['risen'] -across the,|['sleeves', 'upper', 'Park', 'front', 'road', 'broadest', 'room', 'sky', 'tail', 'lawn', 'bedroom', 'Atlantic', 'outside']| -six back,['Nothing'] -an ordinary,["plumber's"] -live there,['longer'] -when after,['following'] -leg like,['fear'] -we turned,|['round', 'from']| -quickly through,['a'] -an order,['to'] -light in,|['the', 'his']| -could outweigh,['the'] -my companions,|['but', 'who']| -described we,['were'] -seek his,['fortune'] -light it,['said'] -hair the,|['squat', 'large']| -you helped,['in'] -passion and,['gloomy'] -Black Jack,['of'] -wood and,|['close', 'to', 'under']| -overhead and,['the'] -his flaming,['head'] -motioned for,['air'] -inscrutable as,['ever'] -can spare,['advertised'] -chair with,|['his', 'the', 'a']| -absolutely needed,['as'] -down for,['ten'] -rustic surroundings,['I'] -subject That,['trick'] -pass these,['shutters'] -snow from,['his'] -of surprise,|['as', 'Astonishment', 'threw']| -mystery of,['the'] -smiling The,['left'] -met our,['eyes'] -attitude and,['manner'] -visitor had,|['left', 'recovered']| -flame-coloured silk,['and'] -case also,['let'] -but not,|['before', 'hurt', 'where']| -but now,|['I', 'alas']| -night there,['A'] -was with,|['his', 'a', 'them']| -Hay Moulton,['The'] -who lives,|['upon', 'near', 'in']| -the alarm,|['of', 'and', 'took', 'If']| -the struggle,|['and', 'How']| -with rounded,['shoulders'] -lane She,['raised'] -came back,|['from', 'again', 'He', 'to', 'alive', 'alone', 'We', 'this', 'before']| -it Here,|['is', 'you']| -though it,|['was', 'sounds', 'were', 'had']| -hair which,['he'] -the rearing,['of'] -him without,|['question', 'observing']| -band by,['the'] -has shown,['himself'] -Winchester to-morrow,['With'] -woman's quick,|['intuition', 'insight']| -appeal yet,['I'] -behind his,['small'] -behind him,|['To', 'which', 'the', 'like', 'Peterson', 'It', 'got', 'when']| -draught will,['go'] -glossy when,['you'] -do then,|['asked', 'I', 'He', 'It', 'You']| -rather puzzled,['has'] -wound cleaned,['it'] -poor sister,['Julia'] -you came,|['in', 'to', 'upon']| -rather startled,['gaze'] -wave of,['his'] -woods picking,['flowers'] -the central,|['block', 'window']| -However it,['was'] -enormous fortune,['in'] -neighbourhood however,['and'] -points to,['suicide'] -to hold,['him'] -So perfect,['was'] -doubt or,|['his', 'in']| -so good,|['a', 'as']| -here over,['here'] -windows as,['we'] -my uncle's,|['life', 'moved', 'perplexity']| -Hague last,['year'] -by beating,['upon'] -dead the bonniest,['brightest'] -cut him,['over'] -monosyllable she,['gave'] -lived with,['them'] -sir. But,['I'] -of official,['inquiry'] -a year and,['this'] -heart The,['devil'] -secret however,['and'] -adventures Mr,['Holmes'] -own point,['of'] -tea only,['looked'] -in dreadful,['earnest'] -stirring yet,['but'] -Here he,|['comes', 'is']| -to confirm,['the'] -volume and,['a'] -a similar,|['mark', 'whistle']| -By degrees,|['Mr', 'he']| -ebbing tide,['might'] -metallic or,['otherwise'] -papers they,['mean'] -something entirely,['different'] -|me Oakshott,|,['117'] -dressing-gown looking,['over'] -hair The,['4'] -somewhat headstrong,['by'] -town about,['an'] -which followed,['Coroner'] -very drunk,['and'] -the sea,['waves'] -the banker,|['with', 'had', 'impatiently', 'made', 'then', 'rising']| -subject for,['conversation'] -occasion is,['a'] -other place,['concealed'] -to accurately,['state'] -hand and,|['at', 'he', 'congratulated', 'sleeve', 'a', 'his', 'five', 'displayed', 'crawled', 'gave', 'that', 'coldly', 'chatted', 'the', 'had']| -occasion in,['the'] -without flying,['away'] -the gold-mines,['where'] -her whispered,['something'] -the major,['imploring'] -these signs,['of'] -joke said,['he'] -conclusions were,['was'] -intrusion I,['was'] -see what,|['others', 'may', 'use', 'is', 'would', 'passed', 'was']| -stair within,['a'] -astonishment He,['had'] -account for,['such'] -led the,['way'] -governess?' sir.',['what'] -bell Who,['could'] -outsides of,['the'] -studied near,['at'] -overhauled I,['fancy'] -vile weather,['and'] -He followed,['me'] -another But,["he'll"] -be incapable,['There'] -it five,['little'] -the rat,['then'] -remarkable inquiry,['and'] -flames under,['it!"'] -miss my,['rubber'] -Mary herself,['at'] -winding up,|['every', 'the']| -natural under,['the'] -train Yours,['faithfully'] -to-night? not.,['came'] -weary man,['gives'] -white cloth,['and'] -sick for,['months'] -bride the,['what'] -milk does,['not'] -a cashbox,['in'] -looked twice,['at'] -exposure he,['broke'] -is acting,|['for', 'already']| -He squatted,['down'] -strict rules,['of'] -find that,|['I', 'he', 'there', 'all', 'out']| -I remained,['unconscious'] -here last,['week'] -furniture warehouse,['of'] -or fraud,['though'] -and Turner,['had'] -education and,['encyclopaedias'] -been lying,|['open', 'in']| -the diadem,['he'] -Major-General Stoner,['of'] -he ran,|['swiftly', 'he']| -better go,|['Holmes', 'in']| -my opinion,['on'] -pillow goes,['to'] -remarked for,['they'] -arise I,['must'] -obtruded itself,['upon'] -painful than,['his'] -violent start,['and'] -but Arthur,['caught'] -great difficulty,['in'] -in foolscap,['and'] -police regulations,['he'] -Finally I,['went'] -I lay,|['upon', 'awake', 'on', 'That', 'listening']| -was by,|['my', 'all']| -this moment,|['in', 'a', 'I']| -Moran this,['day'] -offices He,['did'] -but learned,['from'] -have in,|['the', 'our', 'bringing', 'you']| -there does,['not'] -it. she,['spoke'] -round His,['name'] -both upon,['the'] -bride's manner,['of'] -terrible is,['it'] -dressing-table on,['the'] -disagreeable task,|["Holder,'"]| -which purport,['to'] -so after,['opening'] -the folks,['would'] -paper of,['yesterday'] -arrival at,['the'] -was this,|['nocturnal', 'very', 'dark']| -you very,['well'] -worn the,['blue'] -all My,['wife'] -up hopes,['which'] -child by,['the'] -both locked,['your'] -little to,|['do.', 'me', 'do', 'the']| -met Mr,|['Hosmer', 'Rucastle', 'Fowler']| -this be?,['Opening'] -Probably he,['handed'] -of Aloysius,['Doran'] -and can,['have'] -coin hanging,['from'] -words that,['they'] -certainly it,['does'] -drink Twice,['since'] -the bride,|['the', 'Mr', 'St.']| -distinctly upon,['my'] -may come,['to'] -cracked edge,['where'] -was struck,|['and', 'from', 'cold']| -have plenty,['of'] -quick impatient,['snarl'] -morning You,['need'] -from behind,|['That', 'One', 'a']| -be is,['a'] -had fortunately,['entered'] -Horner were,['in'] -America Men,['at'] -hotel waiter,['opening'] -trifling details,['which'] -shutter open,['but'] -sit in,['the'] -assistant was,['a'] -old pals,['and'] -minute knowledge,['which'] -pets which,['the'] -it!" I,['cried'] -at 1000,['pounds'] -the quarters,['of'] -losing her,['self-control'] -set the,|['matter', 'dog', 'engine']| -be safe,|['with', 'I', 'from']| -one house,['as'] -no explanation,|['save', 'have']| -have worked,['with'] -were lost,['has'] -in Herefordshire,['The'] -has less,|['now', 'foresight']| -but confirm,['his'] -red head,|['and', 'of']| -You can,|['understand', 'leave', 'see', 'pass', 'hardly']| -which another,['person'] -and observed,['By-the-way'] -man turns,['his'] -started up,['in'] -seven weeks,|['later', 'elapsed', 'represented']| -said never,['to'] -and kindly,['that'] -hastened upstairs,['and'] -a formidable,['man a'] -drove out,['to'] -all Mr,['Holmes'] -become suddenly,['deranged'] -events than,['those'] -and looked,|['me', 'impatiently', 'at', 'it', 'up', 'there', 'back', 'about', 'out', 'in', 'hard']| -good ground,['to'] -German very,['thin'] -point was,['what'] -and timid,['woman'] -my special,|['knowledge', 'province']| -too Ah,["he's"] -moonless nights,['You'] -the schemer,['falls'] -prolonged absence,['having'] -after our,|['interview', 'return']| -lady but,|['just', 'it']| -wings like,['the'] -deserted streets,['which'] -valuable still,['was'] -medical views,['was'] -disguise as,|['did', 'long']| -share in,['clearing'] -still glimmered,['in'] -harmony and,['there'] -myself clear,['am'] -or the,|['grace', 'bullion', 'great', 'mark', 'songs', 'door', 'morose', 'police', 'thud']| -idea was,['very'] -is possible,|['that', 'however', 'than', 'so,', 'you']| -see whether,|['it', 'the', 'anything', 'we']| -Holmes stuck,['his'] -himself down,|['into', 'in', 'with', 'suddenly', 'upon']| -be in,|['a', 'her', 'the', 'time', 'church', 'his', 'weak', 'safety', 'vain', 'that']| -quiet thinker,['and'] -confirm the,['strange'] -We found,|['him', 'the']| -appeals to,['us'] -over Lloyd's,['registers'] -show where,|['he', 'the']| -the missing,|['man', "gentleman's", 'lady', 'piece', 'gems']| -and papers,['I'] -tents wandering,['away'] -great trouble,['responded'] -was you,['then'] -matter really,['strikes'] -all covered,['with'] -didn't mind,['me'] -laid his,['grip'] -act man,['or'] -thousand wrinkles,['burned'] -character now,['there'] -manager and,|['I', 'housekeeper']| -stalls wrapped,['in'] -the deeper,['heavier'] -soon after,["father's"] -I backed,['a'] -horror-stricken not,['knowing'] -Horner in,['the'] -wonder that,|['he', 'it', 'no', 'you', 'such']| -occasionally predominated,['in'] -you saw,|['him', 'all']| -the well-remembered,['door'] -my husband,['both'] -you say,|['that', 'so', 'touch', 'dear', 'me', 'best', 'seems']| -waste time,['over'] -housekeeper yet,['as'] -data The,['presence'] -horses were,['in'] -fashionable epistle,['I'] -This morning,['he'] -Capital capital!,['He'] -the highest,|['pitch', 'point', 'in', 'importance', 'noblest']| -did all,['the'] -gave evidence,['as'] -us while,['his'] -quietly entered,['the'] -and drove,|['back', 'to', 'for', 'out', 'me']| -accomplished and,['for'] -it glanced,['at'] -present then,['yes.'] -it at,|['the', 'all', "arm's"]| -it as,|['he', 'she', 'the', 'well', 'highly', 'sure', 'a', 'this', 'correct this', 'though']| -her disappearance,['Here'] -be It,['is'] -my consulting-room,['and'] -safer and,['better'] -it proves,['to'] -goose slung,['over'] -be If,['so'] -a morning,|['and', 'will', 'drive', 'paper']| -Mary who,['has'] -it proved,['I'] -men's motives,['and'] -shutter and,['plunging'] -three gems,|['out', 'had', 'in']| -basin to,['come'] -a better-lined,['waistcoat'] -great blue,['triumphant'] -described Holmes,['cut'] -tattoo marks,['and'] -Ah here,['it'] -which terminated,['at'] -personal beauty,['Yet'] -out half-crowns,['by'] -money not less,['than'] -vacuous face,|['of', 'there']| -pipe I,['am'] -drink had,['no'] -dark-lantern I,['heard'] -stick to,['defend'] -open out,|['into', 'upon']| -hopes that,['she'] -|time, at|,['least'] -big armchair,['with'] -exercising enormous,['pressure'] -the ruffians,['who'] -are set,['forth'] -out he,['exchanged'] -call with,['the'] -be set,['aside'] -made my,|['way', 'special', 'dark']| -me upon,|['the', 'an', 'business', 'any', 'my']| -quite alone,['when'] -crowd and,['right'] -fancies are,['right'] -moment her,['knees'] -to confound,['me'] -made me,|['reveal', 'prick', 'angry', 'mad', 'swear', 'quite', 'think', 'wish']| -my shoulder,['It'] -almost time,['that'] -of Kent,['in'] -softer passions,['save'] -those that,['are'] -there gipsies,['in'] -meet us,|['here', 'with', 'she']| -my questioning,['glances'] -the queer,['things'] -scores of,['my'] -position will,['make'] -shortly announced,['in'] -admirable things,['for'] -Beside the,['couch'] -which allowed,['a'] -plans of,['Mr'] -bashful Then,['suddenly'] -I live,['at'] -family Holmes,['closed'] -understand This,['year'] -broad black,['hat'] -asleep am,['endeavouring'] -Between a,['slop-shop'] -Rucastle showing,['me'] -more have,['done'] -glass of,|['half', 'beer', 'whisky', 'brandy', 'sherry']| -the banker's,['son'] -quite too,|['funny', 'good', 'transparent']| -so exceedingly,['definite'] -my say,["Don't"] -dark handsome,['and'] -to high,['words'] -had quite,['persuaded'] -evidence implicating,['Flora'] -doesn't look,['a'] -clad with,['something'] -us If,['you'] -no say,['in'] -that right,['cuff'] -stevedore who,['has'] -written on,['Monday'] -in other,['respects'] -had returned,|['from', 'Those', 'to', 'with']| -much attracted,['by'] -days I,|['was', 'am', 'had', 'would']| -white forehead,['you'] -worrying her,['until'] -take my,|['advice', 'goose', 'word']| -Cornwall the,['next'] -The matter,|['was', 'passed', 'is']| -he can,|['put', 'get', 'lay', 'hardly']| -lifted and,['conveyed'] -throbbed with,['dull'] -have sought,['a'] -have excluded,['the'] -you succeeded,|['have', 'by']| -to travel,['the'] -be sure,['a'] -take me,|['long', 'all']| -is He,|['quietly', 'picked']| -cruel and,['selfish'] -hand upraised,['I'] -attention the,['outsides'] -may remember,['the'] -that window,|['hand', 'and']| -houses Finally,['he'] -we did,['all'] -to Savannah,['I'] -after eight,["o'clock"] -a compositor,['by'] -stone-flagged passage,['in'] -likely that,|['Henry', 'we']| -with instructions,['to'] -wall has,['been'] -repay what,['you'] -not easy,|['to', 'in']| -keen white,['teeth'] -murmured That,['is'] -to bear,|['upon', 'the']| -case looks,['exceedingly'] -my pains,['Nothing'] -dead shall,['be'] -heard Mr,|['McCarthy', 'Holmes']| -impulsively as,['she'] -so ill-natured,['a'] -bride's dress,['with'] -ever came,['before'] -was practically,['accomplished'] -acquirement of,['wealth'] -the swinging,['lamp'] -loudly for,['my'] -a lamp-post,['and'] -neighbouring fields,['This'] -quite distinctly,['upon'] -reasoning is,['certainly'] -three years,|['although', 'old', 'ago']| -no trouble,['But'] -client Do,['not'] -be unnecessary,['Three'] -deduced a,|['blunt', 'little', 'ventilator']| -noise which,|['has', 'awoke']| -her hair,|['was', 'had']| -same by,['applying'] -the chimneys,['showed'] -dry at,['low'] -out money,['is'] -cage As,['evening'] -so keen,['a'] -there Mr,['and'] -possessions of,['the'] -piece were,['at'] -a gang,['and'] -may depend,['upon'] -ruin The,['central'] -had closed,|['the', 'again']| -no difficulty,|['in', 'heh?']| -a bit,|['Doctor', 'of']| -these circumstances,['the'] -was thoroughly,|['at', 'earning']| -tracks saw,['an'] -head indeed?,['You'] -the minds,['of'] -a different,|['matter', 'man', 'way']| -I merely,['shared'] -pretence of,['a'] -expect you,['then'] -a stop,['on'] -men are,['is'] -pushed open,['the'] -or by,['the'] -paid and,['the'] -but get,['into'] -something or,['other'] -prices of,['the'] -to warn,['me'] -Evidence of,['a'] -homeward journey,['I'] -may expect,|['us', 'that']| -tricked by,['so'] -been home,['for'] -all said,|['I', 'Holmes']| -has lost,|['a', 'all']| -little reputation,['such'] -thirty years,['of'] -paper he,['laid'] -weary for,['you'] -room the,['two'] -hand to,|['my', 'him']| -could look,['over'] -little purple,['plush'] -describe a,['whole'] -so readily,['assume'] -reason for,['leaving'] -stood sullenly,['with'] -Holmes stepping,['over'] -she his,['client'] -found rather,['I'] -into details,['friend'] -my look,['of'] -You did,['not'] -little lower,['down'] -sir the,['three'] -answered lighting,['a'] -a lenient,['view'] -limbs of,['a'] -me preach,['to'] -Crime is,['common'] -might befall,['there'] -for nothing,['Why'] -trap with,['the'] -many a,['little'] -was mere,['chance'] -one Henry,['Baker'] -hall window,|['where', 'with']| -hotel I,['might'] -slowly away,['and'] -see exactly,['what'] -sneer upon,|['his', 'the']| -rid of,|['and', 'that', 'the', 'what']| -measured these,['very'] -have taken,|['it', 'you', 'place', 'fresh']| -until my,['uncle'] -at having,|['broken', 'been']| -quietly slipped,['into'] -be read,['upon'] -I bore,['you'] -situation became,['absolutely'] -serves me,['so'] -Inn They,['were'] -remarked invisible,['but'] -name has,['not'] -opposing the,['carpet-bag'] -valuable than,['the'] -all this,|['you', 'points', 'seems', 'bears', 'I', 'thank', 'cross-questioning', 'happened', 'while']| -stain Private,['affliction'] -small points,|['in', 'which']| -body be,['dressed'] -it twice,['vigorously'] -have peeped,['through'] -the proof,['I'] -who threw,['itself'] -this evening,|['By', 'at', 'though']| -come late,['It'] -a lumber-room,['up'] -who held,['a'] -slightly bent,['her'] -police From,['time'] - October,['9'] -face to,|['face', 'the', 'advance']| -Rucastle It,['is'] -from Sherlock,['Holmes'] -visited with,['I'] -and lock,['and'] -no idle,['one'] -she came,|['away', 'but']| -she replaced,['it'] -Boone had,|['thrust', 'to']| -boyish face,['which'] -woman the,|['drink', 'sinister']| -he driving,['back'] -beginning in,['the'] -|no, nothing|,['of'] -by six,['almost'] -founded by,['an'] -my troubling,['you'] -ask who,['it'] -I yelled,|['with', 'Hullo']| -wave with,['the'] -a magician,['said'] -stretching his,['long'] -was lined,['with'] -her out,|['into', 'of', 'again']| -of introducing,|['you', 'to']| -When my,['dear'] -murderer thief,['smasher'] -a toy,['would'] -be taken,|['to', 'up', 'But']| -forceps lying,['upon'] -his costume,['His'] -for 40,['pounds'] -the steps for,['the'] -companion is,['no'] -hesitating fashion,['at'] -him We,|["can't", 'feed']| -the Coburg,['branch'] -long swash,['of'] -letter We,['should'] -searched Two,['attempts'] -By profession,['I'] -companion in,|['the', "to-night's"]| -honour He,['tried'] -earning a,['copper'] -frightened eyes,|['at', 'like']| -capital by,['which'] -knew better,['than'] -public opinion,['can'] -walked towards,['me'] -should suspect,|['him', 'or']| -have listened,['to'] -many reasons,['to'] -is Holmes,['asked'] -dear doctor,['this'] -I noticed,['with'] -through Baker,['Street'] -doubly secure,['on'] -was lost,['if'] -friend But,['have'] -level with,['his'] -an appropriate,['dress'] -disturb him,['in'] -robbery at,['the'] -Gold in,['Upper'] -I forbid,['you'] -directed upward,['to'] -chains of,['events'] -of several,|['passers-by', 'footsteps', 'similar']| -on to,|['the', 'propose', 'it that', 'this', 'Kilburn', 'Frisco', 'Paris']| -everything in,|['its', 'Mr']| -gem known,['as'] -everything is,['fastened?'] -country that,['she'] -whole Bohemian,['soul'] -drove away,|['in', 'was']| -place two,['of'] -crossed it,['and'] -the required,['check'] -experience have,['had'] -the affair,|['so', 'must', 'now', 'of', 'Of']| -addition I,['see'] -writing? have,['already'] -lobster if,['he'] -but flight,['but'] -correct in,['saying'] -gentleman who,|['desires', 'lost']| -old town,['a'] -how did,|['you', 'he']| -police might,['not'] -the hint,['from'] -my pay,['ransacked'] -should hear,|['by', 'of']| -son only,['caught'] -light duties,['all'] -cloud from,['his'] -cried You'll,['do'] -bright as,|['possible at', 'day']| -but upon,['so'] -man said,|['old', 'he']| -his extreme,|['exactness', 'anxiety']| -ascertained who,['endeavoured'] -a branded,['thief'] -can jump,['it.'] -their object,['was'] -only mean,['that'] -ask whether,['you'] -delicate for,['communication'] -HUNTER you,['know'] -evening and,|['ran', 'I']| -loudly expressed,['admiration'] -a dense,['tobacco'] -not touch,['me'] -Apaches had,['escaped'] -cousins from,['across'] -in carrying,['out'] -aid I,['have'] -he used,|['to', 'a']| -Just two,['months'] -and helped,['himself'] -late Elias,['Whitney'] -among women,['It'] -he uses,['lime-cream'] -weeks elapsed,|['between', 'I']| -whispered into,['my'] -nerves a,['shudder'] -some hours,['This'] -ankles protruding,['beneath'] -and helper,|['in', 'to']| -wife like,['birds'] -You observed,['that'] -it already,['When'] -Holmes Then,['I'] -emotion during,['the'] -order might,['lead'] -steely glitter,['His'] -three doors,['in'] -more money,['in'] -takings but I,['had'] -Crane Water,['near'] -Out of,['the'] -retire for,|['we', 'the']| -rather intricate,['matter'] -Holmes They,|['may', 'are']| -family seat,['he'] -not yet,|['returned', 'opened', 'nine', 'grasped', 'twenty', 'done', 'three', 'quite']| -those mysteries,['which'] -own house,|['I', 'it']| -gentleman we've,['had'] -the deep-sea,['fishes'] -preserves A,['clump'] -get seven,['years'] -them naturally.,['By'] -hurried into,['the'] -buttoned only,['in'] -be happy,|['to', 'in', 'until', 'under']| -as one,['who'] -colour upon,['his'] -are like,['a'] -the parted,['blinds'] -to him,|['and', 'as', "Mademoiselle's", 'he', 'said', 'you', 'Mother', 'sir.', 'will', 'have', 'before', 'to', 'for', 'Does', 'that', 'There', 'but', 'in', 'when', 'I', 'by', 'do', 'myself', 'Had', 'up,', 'had', 'at', 'on']| -side third,['on'] -permit either,['me'] -by which,|['I', 'he', 'on']| -pounds to,['say'] -to hit,['upon'] -equal to,['it'] -to his,|['cold', 'verbs', 'invariable', 'keeping', 'Majesty', 'hawk-like', 'feet', 'wife.', 'homely', 'lips', 'head', 'heart', 'fate', 'son', 'remark', 'supporters', 'refusal', 'rustic', 'bed', 'natural', 'account', 'appearance', 'back', 'foot', 'talk', 'eyes', 'plantation', 'room', 'known', 'credit', 'knowledge', 'death ', 'friends', 'ring-finger', 'destiny', 'heels', 'identity', 'wife', 'chin', 'habits', 'club', 'desk', 'notice that', 'bloodless', 'dress', 'rooms', 'finger-tips', 'unhappy', 'chamber', 'bosom', 'will', 'instructions', 'chemical']| -leave that,|['to', 'question']| -fatal or,['if'] -a bet,['said'] -From their,['conversation'] -your position,|['of', 'very']| -own devilish,['trade-mark'] -special knowledge,['of'] -Goodwins and,['not'] -six when,|['we', 'I']| -wood may,['interest'] -Just as,|['he', 'I']| -gold earrings,['and'] -maid walked,['into'] -weapon or,['other'] -is my,|['friend', 'business', 'father took', 'pocket', 'lens', 'intimate', 'strong', 'belief', 'secretary', 'point', 'wife', 'niece', 'right']| -men so,|['that', 'when']| -the provinces,['of'] -altogether invaluable,['to'] -throat he,['ever'] -4:35 walking,['through'] -it earnestly,['Drive'] -sir. He,|['and', 'told']| -size and,['shape'] -not beautiful,['in'] -made during,['the'] -behind those,['Then'] -the scissors-grinder,['who'] -a quill,['pen'] -as architects,['or'] -jury stated,['and'] -Watson without,['affectation'] -entered the,|['passage', 'room', 'cell', 'house']| -moved out,['yesterday.'] -of pedestrians,['It'] -windows while,['her'] -partner and,['helper'] -bird Then,['again'] -beginnings without,['an'] -then?" will,['get'] -cut short,['by'] -were vainly,['striving'] -moisture as,['though'] -the North,['it'] -remove Miss,['Stoner'] -was arranged,|['then', 'and']| -subject Turn,['over'] -moonlight Sir,['George'] -constables with,['an'] -week when,['I'] -just read,['it'] -even thinks,['that'] -spare Have,['just'] -read aloud,['to'] -blinds in,['the'] -such person,['looked'] -for falling,['in'] -absurd I,['never'] -window At,['the'] -chaffering I,['got'] -note-paper which,['had'] -who will,|['not', 'win', 'certainly', 'leave']| -have joined,['us'] -just time,['with'] -or Mr,['Duncan'] -was pacing,|['the', 'up']| -be absurd,['to'] -the father,|['was', 'and', 'of']| -heart into,['my'] -a meditative,['mood "you'] -the slip,['and'] -a start,|['that', 'vanishing']| -so by,|['way', 'the', 'discovering']| -puzzle it,['out'] -children's bricks,['It'] -may entirely,['rely'] -regard for,['what'] -a stare,['and'] -have shown,|['that', 'your', 'us', 'him', 'you', 'extraordinary']| -I care,["I've"] -who you,|['were', 'are']| -my story,|['with', 'My', 'my', 'to', 'now', 'am']| -your Majesty's,|['plan', 'business']| -Toller!" cried,['Miss'] -waited all,['curiosity'] -handsome commission,['through'] -named Breckinridge,['by'] -yet she,['had'] -neither head,['nor'] -submitted to,|['the', 'us', 'him', 'my']| -has come,|['away', 'out', 'so', 'from', 'my', 'back']| -proposition which,['I'] -went this,['trusty'] -St Pancras,['Hotel'] -and sees,['whether'] -building to,['Dr'] -locked I,['had'] -shall reconsider,['my'] -shall go,|['in', 'mad', 'down', 'upstairs']| -dull indeed,['if'] -pile of,['crumpled'] -red-headed clients,['to'] -so entirely,['upon'] -a dreadful,|['mess', 'rigid']| -wife received,['a'] -conviction of,['young'] -he writhed,['and'] -fess sable,['Born'] -Moulton an,['American'] -stepfather returned,['to'] -knew who,['had'] -note for,['me'] -difficult it,['is'] -admirably.' say,['a'] -grew stronger,['For'] -madam would,['commence'] -good host,['Windigate'] -aided by,['a'] -also an,['ex-Australian'] -business there,|['is', 'Do']| -hastened here,['when'] -sitting there,|['an', 'in']| -The passage,['outside'] -night why?",['think'] -squalid beggar,['and'] -and trap,['with'] -gone Holmes,['took'] -foreman and,['it'] -in itself,|['implies', 'a', 'for']| -COPPER BEECHES,['the'] -believed it,['Who'] -not retained,['by'] -corner I,['have'] -I flash,['a'] -their traces,|['they', 'in']| -leave a,|['photograph', 'permanent']| -wear and,['cracked'] -frantically and,['protested'] -method and,|['you', 'I']| -He gives,['me'] -so thick,['with'] -and older,['jewels'] -leave I,['said'] -scent I,['can'] -Twenty-four geese,['at'] -any competition,['in'] -and advice,['looks'] -Pool and,['that'] -makes you,['quite'] -'Lone Star,['had'] -many disagreements,['about'] -flooring was,['also'] -morning paper,|['from', 'of']| -Winchester Let,['me'] -worthy fellow,['very'] -breakfast and,|['afterwards', 'whispered']| -the efforts,['of'] -|understand, Mr|,['Holder'] -doctor met,['his'] -the descending,['piston'] -glove buttons,['Suddenly'] -would cover,['the'] -in pitch,['darkness such'] -driven him,['home'] -thin fingers,['in'] -Street you.,['You'] -him myself,['should'] -Holmes he,|['asked', 'said']| -sure to,['keep'] -Cooee is,['a'] -felt a,['sudden'] -is such,['a'] -down completely,['He'] -sharp face,['and'] -to Gross,['&'] -munificent. so.,['We'] -framed himself,['in'] -our cases,|['we', 'which']| -gambler in,['the'] -attempted suicide,['of'] -usual in,['my'] -a full-sailed,['merchant-man'] -peculiar to,|['China', 'him']| -bare slabs,['of'] -the room,|['swiftly', 'in', 'Accustomed', 'what', 'with', 'and', 'have', 'for', 'one', 'as', 'help', 'The', 'will', 'Would', 'but', 'collecting', 'was', 'where', 'I', 'seems', 'save', 'which', 'All', 'could', 'he', 'when', 'from', 'humming', 'to', 'turning', 'She', 'dear', 'His', 'while', 'Sherlock', 'without', 'she', 'again', 'began', 'the', 'his', 'It', 'a', 'Toller!"']| -the roof,|['was', 'had', 'Ah']| -my adventure,|['Upper', 'said']| -hat since,['then'] -Spies and,['thieves'] -Stoper has,['very'] -|Alpha then,|,['I'] -way would,['it'] -police-court could,['hardly'] -hotels did,['you'] -pitch it,['is'] -lids Then,['he'] -chink between,['the'] -be complete,['without'] -small fat-encircled,['eyes'] -monogram upon,['the'] -touched the,['wealth'] -with theft,['I'] -points The,['culprit'] -at not,['having'] -attempts to,['establish'] -|cannot, and|,['I'] -again Doctor,['you'] -stopped in,['front'] -antecedents but,['as'] -Philadelphia Mr,['Rucastle'] -reached us,['We'] -tale This,['fellow'] -the game-keeper,|['lost', 'as']| -my company,['for'] -averted eyes,['But'] -year when,['they'] -drunken frenzy,['and'] -one hand,|['and', 'upon', 'of']| -stretching from,['the'] -opium pipe,['dangling'] -window Holmes,['twisted'] -a love,['matter'] -my view,['for'] -buttoning up,['his'] -Very right,['very'] -tire and,['his'] -Wilson started,['up'] -foolish freak,['when'] -memory as,['he'] -it However,['it'] -stillness the,['door'] -be true,|['to', 'and', 'The']| -which Openshaw,['carried'] -a tall,|['man', 'thin', 'dog-cart', 'gaunt']| -twitching and,['shattered'] -skirmishes but,['we'] -used to,|['make', 'be', 'send', 'say', 'write', 'lodge', 'sleep', 'occupy', 'open', 'call']| -shaking in,['all'] -solution of,|['some', 'so', 'the']| -precaution. With,['that'] -country bred,|['then,']| -sheet and,['I'] -consciousness that,['she'] -He caught,['up'] -German and,['saw'] -his hands,|['clasped', 'into', 'and', 'softly', 'all', 'in', 'up', 'God', 'frantically', 'hand', 'it', 'is', 'spoke', 'was', 'he', 'seem', 'the', 'I', 'He', 'hardly', 'a', 'rushed', 'together']| -which led,|['to', 'up', 'away', 'into']| -answers and,['averted'] -force but,['this'] -had paid,['the'] -of She,['would'] -results you,['are'] -and Oxford,['His'] -right were,['from'] -effect which,|['this', 'gives', 'is']| -what asked,['Holmes'] -is looking,['up'] -said Mrs,['Toller'] -standing between,['the'] -free life,['of'] -one said,['my'] -it against,['the'] -recover the,|['Irene', 'gem']| -have promised,['Mr'] -respond to,['such'] -mine to,|['have', 'influence']| -practical joke,['said'] -father of,['the'] -house are,['certainly'] -be particularly,['so'] -name In,['his'] -father on,['the'] -your toe,['caps'] -consciousness Such,['was'] -really I,['think'] -frighten a,['chap'] -you from,|['Mrs', 'your']| -very convincing,['as'] -go no,['farther'] -Ryder instantly,['gave'] -slippery so,['that'] -now alas,['it'] -Holmes closed,['his'] -a blind,['fool'] -he himself,['has'] -Regency Nothing,['was'] -as Jones,['clutched'] -neat brown,['gaiters'] -one that,|['I', 'it', 'the', 'stood']| -go gone,['for'] -up one,|['of', 'side', 'shaking']| -enthusiasm which,['has'] -for four,['or'] -really a,['very'] -most outr,['results'] -best laid,['of'] -myself he,['gasped'] -end an,['end'] -spare rooms,['up'] -ground floor,|['the', 'while']| -menaced It,['looked'] -cried Someone,['has'] -business enough,['and'] -and offered,['no'] -snow was,['cut'] -lodge-keeper of,['the'] -we believe,['her'] -containing several,['people'] -hands clasped,['behind'] -it pointing,['in'] -Frank out,['of'] -compunction at,['that'] -not care,['to'] -that door,|['locked', 'very']| -his small,|['fat-encircled', 'black', 'eyes']| -if it,|["hadn't", 'were', 'was', 'is', 'went', 'continues', 'gave', 'once', 'had', 'would', 'may']| -heavy hunting,['crop'] -for otherwise,['I'] -cleared so,['there'] -I fail,['to'] -a week.,['the'] -lids and,['pin-point'] -away Mr.,['Holder'] -preference for,['a'] -buckles It,["hadn't"] -and features,['for'] -overtook Frank,['We'] -has passed,|['through', 'and']| -all must,['come'] -character dummy bell-ropes,['and'] -a magnificent,['specimen'] -commission which,['had'] -upstairs and,|['locked', 'a']| -random tracks,['which'] -been less,['than'] -warning or,|['sound', 'token']| -out I,|['had', 'pray', 'should', 'am', 'dropped', 'could']| -and into,|['it', 'the']| -remained outside,['and'] -son and,|['that', 'she', 'you', 'daughter']| -morning Our,['cabs'] -grass within,['a'] -likely And,['yet'] -and spotted,['in'] -inspector has,['formed'] -suddenly bent,['his'] -inspector had,['said'] -not why,['should'] -cast down,|['and', 'can']| -thumb or,['rather'] -out a,|['photograph', 'lens', 'piece', 'small', 'little', 'note']| -eyes shining,|['brightly', 'her']| -my disposal,['and'] -have whatever,['bears'] -have just,|['called', 'been', 'come', 'time', 'as', 'received']| -other rogue,['incites'] -waistcoat put,['on'] -an action,|['likely', 'for']| -long sharp,['nose'] -black veil,|['entered', 'over']| -From comparing,['notes'] -own save,['the'] -his resolution,['perhaps'] -They talk,['of'] -The country,['roads'] -stress is,['laid'] -predominates the,['whole'] -my speech,['His'] -a pheasant,['a'] -various keys,['in'] -slipped the,['note'] -to deceive,['a'] -led me,['through'] -disappearance are all,['as'] -in danger ,['What'] -and pay,['our'] -lying upon,['the'] -buzzing in,['my'] -bill which,['interests'] -I laid,['the'] -and dipped,['her'] -old scar,['ran'] -that these,['three'] -last all,['worn'] -house Julia,['went'] -I ejaculated,|['after', 'for', 'so.', 'dear']| -very foul-mouthed,['when'] -Stoner You,['see'] -in uniform,['rushing'] -the unknown,['gentleman'] -the logic,['rather'] -and learned,['that'] -tobacco haze,['but'] -Clair's coat,['and'] -Darlington substitution,['scandal'] -I liked,|['and', 'so']| -wife tell,['Mrs'] -whole riverside,['and'] -all This,['gentleman'] -ran round,['like'] -once more,|['and', 'facts', 'for', 'on', 'I', 'That', 'upon', 'in', 'Holmes', 'subsided', 'into', 'As', 'though', 'very', 'to', 'however', 'He', 'hurry']| -higher court,['than'] -the setting,['sun'] -you mind,['reading'] -so Of,['course'] -dinner into,['a'] -fight between,['my'] -efforts were,|['in', 'at']| -are in,|['quest', 'a', 'the', 'search', 'my']| -building in,['front'] -Street did,['you'] -those boots,['and'] -are if,['he'] -our united,['strength'] -a light,|['And', 'upon', 'first', 'sleeper', 'and', 'up', 'sprang', 'in', 'blue']| -he cannot,['escape'] -teeth and,|['hurling', 'whistled']| -Mary Sutherland,|['that', 'while', 'Yes', 'professional', 'and', 'the']| -for within,['an'] -small square,['room'] -it behind,['him'] -stood very,['erect'] -guard yourself,['too'] -advantage now,['of'] -but those,['are'] -wild story,['seemed'] -pictures That,['is'] -were these,['German'] -dog might,['be'] -without any,|['warning', 'reply', 'preliminary']| -my arms,|['but', 'to', 'round']| -strange train,['of'] -of Ormstein,['hereditary'] -|street all,|,['Watson'] -left by,|['our', 'the']| -which never,['have'] -the fishes,['scales'] -of these,|['days', 'papers', 'last', 'sots', 'garments', 'stains', 'nocturnal', 'wings', 'whom', 'cases but', 'newcomers', 'gems', 'cases', 'is']| -floor That,['was'] -my habits,['sorry'] -Street was,['choked'] -assailants but,['the'] -chat this,['little'] -singular warning,['or'] -I wired,['to'] -Forgery private,['note-paper'] -extraordinary circumstances,['connected'] -perhaps in,['attempting'] -tendencies of,['a'] -with that,|['of', 'unless', 'bird']| -no marks,|['are', 'of']| -perhaps it,|['is', 'would', 'may', 'was']| -Sigismond von,['Ormstein'] -off was,['too'] -speak of,|['the', 'danger']| -remained unconscious,['I'] -our researches,['into'] -the armchair,['which'] -was half,['up'] -grounds with,['my'] -knots of,['people'] -entirely rely,['on'] -rose can,['it'] -right hand,|['is', 'and', 'Holmes', 'was', 'the', 'I']| -advice and,|['help', 'to']| -Monday at,['eleven'] -repute in,['the'] -young Openshaw,|['to', 'has']| -up two,['hours'] -Inner Temple,['See'] -out and,|['seized', 'walk', 'burst', 'would', 'associate', 'I', 'as', 'six', 'laid', 'came', 'round', 'it']| -met the,|['eye', 'sight']| -see Sherlock,['Holmes'] -printed description,['I'] -Holmes up,['the'] -gallop I,['confess'] -low laugh,['and'] -sterner but,['I'] -occur to,|['my', 'the', 'him', 'you', 'a', 'it']| -Turkish slippers,['Across'] -some such,['matter'] -states that,['while'] -for those,|['peculiar', 'deductive', 'criminals', 'who', 'faculties']| -feel better,['now'] -had however,['an'] -Street a,|['number', 'row', 'goose']| -|then, I|,["shan't"] -were stirring,['bearing'] -contemplation I,['have'] -I be,['of'] -so complete,['a'] -believed my,['statement'] -things were,['to'] -now for,|['dad', 'my', 'example']| -forming the,["tradesmen's"] -lady could,|['not', 'have']| -ever he,['set'] -this floor,['He'] -Doctor he,['remarked'] -Balmoral and,['Miss'] -even deeper,['but'] -dropped asleep,['and'] -Street I,['asked'] -The smoke,['and'] -wronged by,['a'] -good man,|['and', 'should']| -myself lying,|['upon', 'on']| -those whimsical,['little'] -horror of,['my'] -of myself,|['in', 'he']| -the apartment,|['The', 'with', 'does']| -really accidents,['as'] -and broadened,['as'] -cane came,['home'] -he took,|['down', 'a', 'it', 'five', 'the', 'me']| -pity For,['a'] -are you,|['going', 'doing', 'not', 'A', 'driving', 'then', 'How', 'sure', 'getting']| -stairs she,['seems'] -the dates,['until'] -several scattered,['drops'] -coronet at,|['double', 'all']| -Holmes shoving,['him'] -spirits better.,['She'] -cub and,['danger'] -doctor's acquaintance,['said'] -stone into,|['the', 'money']| -a Testament,['and'] -Kramm a,['Bohemian'] -I might,|['rely', 'get', 'be', 'at', 'have', 'find', 'catch', 'hardly', 'leave', 'change']| -nerves worked,['up'] -round he,['straightened'] -observant young,['lady'] -for yourself,|['sir', 'that', 'held', 'picked']| -her sex,['It'] -shelves Eglow,['Eglonitz here'] -means obvious,['to'] -opinion on,['a'] -seen quarrelling,['he'] -close upon,|['four', 'six', 'the']| -The speckled,['band!'] -uses a,['cigar-holder'] -first as,['to'] -first at,['the'] -fashion ,[''] -heather tweed,['with'] -seeing my,['look'] -comes close,['upon'] -with no,|['more', 'explanation', 'very', 'actual']| -|true boy,|,['Arthur'] -balls and,['a'] -man To,['Holmes'] -Wharf which,['could'] -unwelcome social,['summonses'] -seeing me,|['and', 'She']| -track isn't,['it'] -before all,['carefully'] -sense to,['light'] -the honeymoon,|['would', 'but']| -in several,|['companies', 'of', 'places']| -results Grit,['in'] -instant caught,['up'] -least tenfold,['what'] -the occasional,|['cry', 'bright']| -despair have,['seen'] -been uncomfortable,['with'] -when compared,['to'] -be determined,|['is', 'by']| -long drawn,['catlike'] -for despair,['have'] -Then that,['explains'] -easier in,['my'] -some evil,['influence'] -overcoat There,['is'] -mean John?,['he'] -patient she,['was'] -none he,['answered'] -the attention,['of'] -my past,['than'] -music on,['the'] -which sat,['a'] -so angry,['that'] -adds that,['within'] -thing too!,['I'] -fagged by,['a'] -not wish,|['to', 'a', 'us', 'anything']| -with reason,['to'] -a three,['pipe'] -one laying,['them'] -Kent We,['have'] -in 84,['in'] -wet it,['seems'] -short and,|['I', 'perhaps']| -snarled and,['hurling'] -of beer,|['he', 'from']| -were killed,['however'] -occurred in,|['the', 'connection', 'your']| -the fugitives,['disappeared'] -may cause,['you'] -won't be,|['legal.', 'burgled']| -and changed,['my'] -countryside horrify,['me'] -we rolled,['into'] -wallowed all,['over'] -several little,['changes'] -gems and,|['my', 'that']| -more patent,['facts'] -until midnight,['but'] -mangled into,['the'] -however nothing,['had'] -pal what,['I'] -slowly reopened,['his'] -words to,|['each', 'gain', 'thank', 'sit', 'Holmes']| -an orphan,['and'] -has heard,|['of', 'the']| -we just,|['fixed', 'did']| -desperation he,['tore'] -and out,|['at', 'into', 'came']| -patient am,['for'] -the boot,['it'] -and our,|['party', 'friend', 'threats', 'lunch']| -the book,|['upon', 'that']| -matter stands,|['at', 'thus']| -sir do,['you'] -and relatives,['I'] -soon I,['found'] -implicating Flora,['Millar'] -|suppose, Watson|,['said'] -warning to,['them'] -trusty tout,['without'] -many causes,['clbres'] -good-night and,|['started', 'bustled']| -the mantelpiece,|['plays', 'and', 'with', 'showed', 'He', 'Here']| -very capable,['performer'] -reference beside,['the'] -Norton was,['evidently'] -no notice,['of'] -a labyrinth,['of'] -the line,|['of', 'I']| -a clump,['of'] -that father,['came'] -entirely see,['all'] -as her,|['presence', 'word', 'clothes']| -must press,['it'] -Don't you,|['see', 'dare']| -|accident, I|,['presume'] -a felony,['but'] -the personality,['of'] -ring the,['bell'] -estate in,['Sussex'] -course inferred,['that'] -comfortable easy-going,['way'] -own sake,['remarked'] -which threatens,['you'] -docketing all,['paragraphs'] -gives me,['hopes'] -aside the,|['paper', 'advertisement']| -opinion can,['do'] -talking so,['that'] -country walk,['on'] -cough "had not,['I'] -of dignity,['and'] -your assistance,['to'] -know before,['I'] -outstanding drooping,['eyebrows'] -reverie is,['very'] -his left,|['He', 'thumb']| -shrieked and,|['then', 'fainted']| -the seventy,['odd'] -you with,|['these', 'human', 'the']| -It struck,|['cold', 'me']| -you then,|['What', 'at', 'asked', 'what', 'I']| -a window-sill,['of'] -it Close,['at'] -chance that,['he'] -secure me,['from'] -we emerged,|['it', 'into']| -of camp,['life'] -value but,['unfortunately'] -not But,['between'] -never persuade,['me'] -immediate departure,['and'] -waited a,['little'] -ball she,['said'] -the dog-cart,['at'] -find an,|['account', 'enemy', 'extra']| -The left,['arm'] -garden were,['to'] -Lost on,['the'] -possible you,|['do', 'thought']| -imbecile in,['his'] -is madly,['insanely'] -not troubled,['to'] -hardly spoke,['a'] -mantelpiece with,['his'] -quite clear,|['that', 'to']| -whispered get,['away'] -Arthur's closing,['his'] -berths like,['the'] -me! How,['very'] -happily together,['in'] -Alice the,['shock'] -same weight,['and'] -all begin,['to'] -hungry Watson,['particularly."'] -Gesellschaft which,['is'] -importance The,['one'] -The furniture,['was'] -low doors,['the'] -burning poison,['waxed'] -it then?,['I'] -what women,['are'] -jowl black,['muzzle'] -the papers,|['asked', 'are', 'here', 'that', 'and', 'which', 'on', 'must', 'I', 'Inspector', 'since', 'about', 'diligently', 'of']| -great risk,['to'] -when examining,['the'] -entered with,['a'] -own request,['for'] -says wish,['to'] -were putty,['more'] -just at,|['present', 'the', 'this']| -a beauty?,['looked'] -just as,|['he', 'you', 'I', 'a', 'mine', 'well', 'it', 'we', 'good']| -suspected It,['lay'] -only yesterday,['that'] -be with,|['you', 'the']| -said Do,['come'] -I dropped,|['my', 'off']| -the perpetrators,['For'] -bringing will,['do'] -were peculiar,['boots'] -this season,['you'] -cheeks better!",['said'] -throwing it,['out'] -short of,|['thirty', '1100']| -shot with,['premature'] -the sinister,|['cripple', 'German', 'door']| -Republican lady,['to'] -|yes, I|,|['shall', 'see', 'did', 'know']| -locked you,['lay'] -has little,|['time', 'to']| -benefactor of,['the'] -the corridor,|['As', 'from', 'Twice', 'and']| -living I,['used'] -of tension,['and'] -most incisive,['reasoner'] -days ago,|['John', 'some', 'I']| -memory Robert,['St'] -nor motion,['band!'] -the attics,['which'] -Indirectly it,['may'] -no actual,['ill-treatment'] -my service,['a'] -then? our,['little'] -Holmes thrust,['his'] -allowing this,['brute'] -guard our,['secret'] -last he,|['asked', 'cut', 'smoothed', 'became']| -may clear,['him'] -dissatisfied I,['feel'] -|me," broke|,['in'] -destined to,['fall'] -not dream,['of'] -the coins,['upon'] -as for,['their'] -the band,|['of', 'The']| -deal in,['this'] -remained The,['metallic'] -came the,|['little', 'stone', 'goose', 'occasional', 'colonel']| -come is,['very'] -Mr Wilson!,['said'] -only hear,['the'] -used thoroughfare,['Holmes'] -still Then,['I'] -body But,['here'] -suggest the,['idea'] -snapped the,['salesman'] -attentions The,['dog'] -a delusion,['from'] -own grounds,['A'] -most kindly,['put'] -King employed,['an'] -quite impossible,|['to', 'said']| -have even,['contributed'] -shown to,['be'] -slowly sank,['and'] -me how,|['to', 'I', 'narrow']| -covered at,['high'] -was wild,['wayward'] -Holmes room,['Henry'] -long series,['of'] -even broke,['into'] -provision that,['a'] -have ever,|['listened', 'done', 'come', 'seen', 'heard', 'believed']| -Wilson Why,['I'] -which seem,['to'] -effective see,['your'] -step forward,|['and', 'In', 'with']| -offered to,|['typewrite', 'him', 'give', 'me']| -meet any,['little'] -myself a,['branded'] -the mud-bank,['what'] -late she,['began'] -town and,['it'] -tint Gone,['too'] -Why should,|['I', 'she', 'you', 'they']| -He advanced,['slowly'] -myself I,|['began', 'then', 'determined', 'ask']| -a rifled,['jewel-case'] -low hill,['and'] -the police-station,|['is', 'while']| -His death,['was'] -He is,|['dark', 'a', 'still', 'in', 'not', 'as', 'looking', 'older', 'round', 'one', 'small']| -your best,['attention'] -either an,['innocent'] -publicity through,['the'] -consoled young,['McCarthy'] -of easy,['berths'] -his should,['ever'] -have thrown,|['him', 'in']| -terrible change,['came'] -request that,['they'] -the ways,['of'] -panel in,['the'] -puzzled has,['referred'] -like and,['had'] -the mask,['from'] -which occur,['to'] -sulking Giving,['pain'] -mystery will,['do'] -annoyed at,|['your', 'not']| -to myself,|['by', 'My']| -to investigated,['the'] -all Maggie?,['I'] -asked is,['dead'] -me leave,['it'] -no idea,|['that', 'how', 'For', 'And', 'what']| -contrast to,|['it', 'his', 'the']| -asked in,['a'] -it was?,['I'] -to flash,['out'] -quite disproportionately,['large'] -scared by,['his'] -advised by,['him'] -the lake,|['Mr', 'Lestrade']| -houses here,['It'] -listening And,['this'] -then?' I,['asked'] -cried What,['can'] -the consulting-room,['I'] -Carefully as,['I'] -fleshless nose,['gave'] -last I,|['promise.', 'gave']| -always wind,['up'] -I gained,|['through', 'the', 'said']| -affecting to,['disregard'] -three maid-servants,['who'] -ascend the,['stairs'] -that need,['cause'] -any such,|['body', 'theory', 'person']| -been detailing,['this'] -the things,|['which', 'had']| -It only,['remains'] -much surprised,|['and', 'at', 'if']| -propound one,['I'] -than ever,|['and', 'A']| -you to,|['throw', 'your', 'chronicle', 'Mr', 'be', 'realise', 'come', 'start', 'go', 'tell', 'say', 'do', 'this', 'anything', 'do.', 'observe', 'crack', 'take', 'thoroughly', 'implore', 'use', 'hear', 'condescend', 'wear', 'the', 'have']| -quite dramatic,['in'] -Colonel Lysander,['Stark'] -contradict me,['if'] -side It,['was'] -say touch,['you'] -side In,['one'] -upon terms,['of'] -subtle powers,['of'] -should occur,['to'] -was directed,['towards'] -called a,['cab'] -pipe problem,['and'] -continued my,['companion'] -husband's writing,['madam'] -must turn,|['over', 'to']| -forward with,|['such', 'her', 'a', 'me']| -not got,|['mine', 'blood']| -shall continue,|['my', 'with']| -That and,['a'] -a mews,['in'] -emaciation seemed,['to'] -Doctor we,|['can', 'will']| -days It,['must'] -sitting-room on,['the'] -away He,['is'] -words of,|['his', 'the', 'broken', 'apology', 'mine']| -a wash,['remarked'] -cocked his,['head'] -tallow stain,['or'] -the sole,|['in', 'not', 'my']| -constraint and,['made'] -the American,|['Encyclopaedia', 'It']| -decoyed away,['by'] -tired and,['keep'] -I journeyed,['down'] -word of,|['the', 'news', 'complaint']| -figure outlined,['against'] -beer from,['the'] -small cut,['which'] -slight infirmity,['of'] -her husband's,|['trouble', 'appearance']| -hook just,['above'] -down the,|['room', 'street', 'dimly', 'advertisement', 'column', 'hole', 'road', 'platform', 'Boscombe', 'sheet', 'facts', 'right', 'letter', 'volume', 'river', 'steps', 'narrow', 'steps for', 'lane', 'London', 'Waterloo', 'stone-flagged', "prisoner's", 'passage', 'ill-trimmed', 'wall', 'lawn', 'lamp', 'corridor', 'rope', 'levers', 'stairs', "tradesmen's", 'blind']| -influence with,['the'] -gems Even,['though'] -word or,|['writing?', 'a']| -that remark,['that'] -hot day,['and'] -over these,|['rooms', 'papers']| -knows his,['own'] -ordnance map,['of'] -Pool with,['the'] -usual country,['hotel'] -stable-boy sleeps,['and'] -Englishman and,['there'] -quarrelling near,['Boscombe'] -that clear,['voice'] -and surmise,['than'] -have during,['the'] -Moran It,['is'] -stroke of,['eleven'] -she wouldn't,['do'] -ceiling Then,['he'] -These are,|['daring', 'young', 'the']| -his nature,|['took', 'If']| -forefinger and,['a'] -worthy of,['being'] -82 and,['90'] -broken English,['at'] -nor the,|['photograph', 'reverse']| -the firm,|['but', 'for', 'with', 'then']| -sharp The,['incident'] -warm maybe,['if'] -the fire,|['and', 'however', 'am', 'in', 'Oscillation', 'Then', 'I', 'Mr', 'Give', 'Pray', 'The', 'was', 'You', 'spinning', 'you', 'until']| -substitution scandal,['it'] -an asylum,['and'] -nothing since,['breakfast'] -weakening nature,['On'] -were going,|['to', 'on']| -pleading face,['was'] -grate which,['was'] -that year,['We'] -farthing from,['me'] -tresses together,['and'] -he Mr,['Ferguson'] -capital! He,['seemed'] -for further,['inquiries'] -wedding you,['found'] -friend's premises,['and'] -thrust into,|['red', 'the']| -a solution,|['by', 'as']| -very injured,['expression'] -how it,|['is', 'came', 'glints']| -commerce flowing,['in'] -huge vault,['or'] -Watson what,["o'clock"] -chance but,['when'] -solid all,['round'] -an aristocratic,|['pauper', 'club']| -to details,['said'] -right little,['finger'] -though he's,['not'] -and fairly,['strong'] -articles When,['an'] -exceptionally strong,['in'] -came right,|['away', 'over']| -all efforts,['were'] -openness but,['I'] -some fifty,['yards'] -A precious,['stone'] -the sentence 'This,['account'] -be remembered,['Sherlock'] -and Pope's,['Court'] -strange transformer,['of'] -my business,|['came', 'to', 'but']| -raise the,|['cry', 'bar', 'money']| -be allowed,['to'] -the occasion,['is'] -old battered,['felt'] -In the,|['case', 'present', 'meantime', "surgeon's", 'latter', 'first', 'dim', 'road', 'larger', 'last', 'pocket', 'card-case', 'second', 'middle', 'scuffle']| -own seal,['photograph."'] -an interest,['in'] -yet grasped,['the'] -idea that,|['he', 'the', 'she']| -with restless,['frightened'] -or torn,['right'] -tenacious as,['a'] -could object,['The'] -not advertise,|['what', 'visitor']| -equally clear,['that'] -in allowing,['this'] -Hunter? he,['asked'] -the King,|['Why', 'reproachfully', 'of', 'is', 'to-morrow', 'without', 'hoarsely', 'and', 'employed', 'nothing', 'had']| -kind I,['have'] -price upon,['my'] -dun-coloured houses,['and'] -Dr. Roylott,['was'] -eyes fixed,|['on', 'vacantly', 'full', 'upon']| -me Kate,['I'] -influence over,|['him', 'her']| -afraid the,['doctor'] -three teeth,['were'] -noblest in,['the'] -trace it,|['and', 'then']| -answered laughing,|['Besides', 'It']| -hastily closing,['the'] -looked surprised,['and'] -the footpaths,['were'] -drive back,['to'] -your suspicions,['when'] -there's life,['in'] -story my,['servant'] -sighing note,['of'] -successful cases,['and'] -yellow pasty,['face'] -chair Mr.,['James'] -another woman,['there'] -say farther,['up'] -sight seems,['to'] -knees heads,['thrown'] -empty upon,['the'] -stout bearing,['therefore'] -such a,|['shabby', 'dear', 'youth', 'fellow', 'sight', 'very', 'head', 'will', 'sum', 'good', 'place', 'hurry', 'dramatic', 'result', 'damning', 'union', 'blow', 'scent', 'populous', 'man', 'temptation', 'case', 'day', 'collection', 'room', 'two-edged', 'way', 'night', 'quiet', 'trifle', 'state', 'one', 'poison', 'commission', 'start', 'mixed', 'crisis', 'theory', 'comfortable-looking', 'dress', 'situation']| -storm grew,['higher'] -Bohemia you,['can'] -other suitor,['for'] -roof-tree of,['a'] -bound from,['Reading'] -most complete,['manner'] -doing so,['were'] -his injuries,['He'] -light at,['all'] -light as,['to'] -off other,['lovers'] -no further,|['evidence', 'steps', 'particulars']| -horrible life,['of'] -His conduct,['was'] -consult my,['index'] -at Paddington,['as'] -wooden stool,['there'] -nearing the,['end'] -being present,['save'] -such I,['had'] -three have,['been'] -mad Sometimes,['I'] -Britannica There,['is'] -consult me,|['came', 'in', 'professionally']| -went towards,['the'] -about their,['license'] -hundred and,['fifty'] -Saxe-Coburg Square,|['and', 'the', 'Let', 'presented', 'I']| -chemical test,['was'] -evenings THE,['ADVENTURE'] -seats I,['shall'] -relapsing into,['his'] -the chair,|['is', 'from', 'suggested']| -later It,['seemed'] -trivial one" he,['jerked'] -League I,['am'] -little exercise,['I'] -police agent,|['while', 'loftily']| -though as,['I'] -though at,['each'] -empty room,['dusty'] -door shut,['just'] -story as,['that'] -then ran,['swiftly'] -and disreputable,|['clothes', 'hard-felt']| -intend to,['do'] -were printed,['upon'] -real name,|['said', 'is']| -to abuse,['your'] -coquettish Duchess,['of'] -though an,['absolute'] -those lords,['and'] -personally concerned,['remarked'] -face His,|['knees', 'lip']| -salesman named,['Breckinridge'] -much for,|['me', 'the', 'Mr', 'you']| -her night-dress,['In'] -rolling hills,['around'] -some foul,|['and', 'plot']| -way merely,['in'] -all pointed,|['in', 'to']| -the quick,|['subtle', 'analysis', 'I']| -loose every,['night'] -last with,['his'] -to-morrow about,['eleven'] -little son,['Her'] -abhorrent to,['his'] -League 7,["Pope's"] -two scattered,['villages'] -Cocksure said,['the'] -stealthily along,['the'] -Holmes tell,['the'] -the violent,['and'] -below said,['Mr'] -the many,['causes'] -wished us,['to'] -crackling fire,|['for', 'is']| -business no,['sir'] -adjective which,['she'] -been reading,['the'] -at seven,|['sharp', 'We', 'There']| -woman grabs,['at'] -were blocked,['by'] -you must,|['come', 'stay', 'on', 'at', 'have', 'not', 'open', 'turn']| -directions until,['there'] -business A,['married'] -Lee laid,['down'] -can often,['do'] -facts Since,['you'] -slowly open,['The'] -to undergo,['the'] -goose took,['to'] -her terrible,['fate'] -stone standing,['back'] -left a,|['square', 'tidy', 'match-box', 'fragment']| -sponge like,['the'] -the pay?,['4'] -without an,['ending'] -pluck at,['my'] -a character,['of'] -room but,|['this', 'a', 'I']| -children over,['to'] -fortunate for,['you'] -me went,['on'] -quite peculiar,['to'] -principal points,['about'] -small man,['with'] -thought while,['I'] -eyes Why,['you'] -of burning,|['charcoal', 'oil']| -cannot allow,['that'] -his innocence,|['and', 'in', 'It']| -strong presumption,['that'] -opinion Come,['now'] -Who are,['you'] -so somewhat,['to'] -thumb and,|['that', 'I']| -been very,|['handy', 'shamefully', 'kind']| -thumb over,['his'] -precaution should,['be'] -consulting-room and,['found'] -has your,['business'] -that Mrs,|['St', 'Hudson', 'Toller']| -suffer shipwreck,['if'] -love for,['Irene'] -me tell,['us'] -it none.",['laughed.'] -features were,['gravely'] -Hunter I,['shall'] -Ross what,['did'] -he presently,['Klux'] -brought with,['him'] -shot an,['angry'] -and unforeseen,['manner'] -them might,['have'] -the thousand,['We'] -Is that,['your'] -yesterday some,['of'] -posterior third,['of'] -read I,['read'] -her In,['only'] -he set,|['off', 'foot']| -Berkshire in,['the'] -who this,['prisoner'] -not retired,['to'] -were secured,['every'] -playing backgammon,['and'] -me came,['to'] -he see,|['it', 'that']| -wicket gate,['however'] -previous morning,['but'] -little note,['Having'] -precaution because,['I'] -her It,|['is', 'might']| -of Lord,|['Robert', 'St', "Southerton's"]| -given him,['up'] -understand gave,['an'] -the clink,['of'] -stay-at-home man,['and'] -ladies wander,['about'] -read a,['good'] -sitting-room to,['wait'] -repulsive sneer,['to'] -|voices no,|,["there's"] -leaning against,['the'] -wound I,['endeavoured'] -miles and,['were'] -are unable,['to'] -given his,['own'] -lead us,['And'] -lead up,|['from', 'to']| -interest ten,['or'] -bizarre and,['outside'] -proceedings which,['may'] -policeman or,|['the', 'a']| -Simon shook,['his'] -schoolmaster in,['Chesterfield'] -father became,['a'] -art for,['its'] -slight tremor,['of'] -find this,['Hosmer'] -little enough,|['of', 'consideration', 'in']| -public scandal,|['would', 'said']| -happy thought,['seized'] -heard upon,['the'] -Holmes unlocking,['and'] -I trust,|['that', 'you.', 'sir', 'with', 'Mr']| -windows in,|['it', 'the']| -and warmed,['my'] -always fill,['me'] -fight She,['had'] -four pipes I,['forget'] -Petersfield Those,['are'] -grim or,['his'] -in then,['It'] -in them,|['which', 'to']| -a slit,['between'] -those are,['the'] -her fair,['personal'] -stroke to,['him'] -what could,|['have', 'it']| -silent Englishman,['being'] -whispered what,['on'] -to weave,['while'] -persuade myself,['that'] -every day,|['and', 'It', 'I', 'lately']| -the flies,['but'] -full accounts,['I'] -thoughtfully tossing,['aside'] -a pew,['of'] -worn wrinkled,['and'] -plain questions,['to'] -ready enough,['to'] -newly severed,['human'] -and myself,|['The', 'I', 'Bradstreet']| -cold woodcock,['a'] -our engagement,['lasting'] -From all,['I'] -know how,|['he', 'we', 'to', 'the', 'subtle']| -bring his,['little'] -really cannot,['undertake'] -bring him,|['in', 'back', 'out', 'round']| -peering and,['benevolent'] -all-night sitting,['He'] -equally uncompromising,['manner'] -fear sprang,['up'] -coachman to,['watch'] -About five,['ft'] -Farm On,['the'] -lost Nothing,['but'] -breach of,['promise'] -laughed very,['heartily'] -an instance,['of'] -he noticed,['my'] -Harley Street,['and'] -burnished metal,['in'] -arms and,['began'] -if any,|['harm', 'misfortune']| -thrown over,['his'] -read nothing,['except'] -actions were,['in'] -ladies half,['their'] -more favourable,['to'] -depressing and,['subduing'] -love himself,['was'] -can call,['upon'] -offended dignity,['The'] -both think,['at'] -the intruder,['by'] -week to,|['week', 'the']| -brought you,['back'] -for this,|['marriage', 'is', 'information', 'last', 'poor', 'was']| -quietly sir,['the'] -crisp February,['morning'] -changes carried,['out'] -and started,|['off', 'for']| -is always,|['under', 'far', 'at', 'either', 'of', 'awkward', 'instructive', 'a', 'as']| -passage and,|['through', 'so', 'a', 'just', 'I', 'found']| -successive entries,['that'] -I expected,|['that', 'On', 'to', 'them', 'his', 'lounging']| -the age,['of'] -safe and,|['after', 'sound', 'turned', 'locked', 'should']| -live with,['him'] -one end,|['to', 'of']| -Dockyard so,['that'] -has never,|['been', 'yet']| -I ascended,['the'] -though comely,['to'] -was engaged,['in'] -said Bradstreet,|['If', 'Well']| -with him,|['I', 'Among', 'and', 'the', 'The', 'for', 'was', 'she', 'There', 'with', 'in', 'Do', 'a', 'Perhaps', 'they', 'so', 'We', 'through', 'is']| -Ryder so.,['Head'] -with his,|['whole', 'head', 'coat', 'wheel', 'own', 'forefinger', 'thick', 'eyes', 'thin', 'stick', 'methods', 'finger-tips', 'fingertips', 'long', 'bright', 'hands', 'serving-man', 'father', 'back', 'barmaid', 'lens', 'pen', 'son', 'death', 'jaw', 'whip', 'tiny', 'friend', 'disappearance are', 'face', 'hat', 'right', 'huge', 'cane', 'heavy', 'compasses', 'wedding', 'arms', 'brows', 'family', 'chin', 'powerful', 'feet', 'valet', 'lids']| -gate however,['I'] -trustees with,['instructions'] -saw what,['it'] -visit the,['scene'] -he choked,['and'] -but exceedingly,['hot-headed'] -he declared,['that'] -fashion certainly,['that'] -been anything,['against'] -field and,['was'] -to discuss,|['what', 'my']| -few weeks,['before'] -manner indicated,['that'] -a time,|['he', 'for', 'it', 'in']| -her statement,['she'] -holiday so,['we'] -where you,|['are', 'rest', 'should', 'found', 'got', 'live']| -their heads,|['to', 'might']| -a swamp,['adder'] -this gentleman,|['your', 'anything', 'and', 'in']| -extraordinary story,|['of', 'My']| -exaggerated This,['account'] -brow and,['a'] -soon receive,['a'] -her needle-work,['down'] -the running,['down'] -shouted I,['wish'] -hot all,['means'] -the cold,['dank'] -were brought,|['together', 'out']| -your bureau,['took'] -fellow will,|['rise', 'not']| -violent temper,['Seeing'] -conceal it,['indeed?"'] -the name,|['of', 'was', 'is', 'I', 'and', 'style', 'which', 'for']| -dignity after,['a'] -something distinctly,['novel'] -outer edge,['of'] -a red-head,['to'] -of Goodge,['Street'] -Farm rent,['free'] -him cut,['a'] -thirty-six ships,['of'] -has carried,|['it', 'himself', 'his']| -very many,|['minutes', 'other']| -gold-mines where,['as'] -fruitless labour,['and'] -been telling,['you'] -then Frank,['went'] -noted even,['so'] -to-day Holmes,['sprang'] -and rising,['from'] -law in,['the'] -one hinders.,['And'] -what his,['conclusions'] -evening Mr,['Holmes'] -shining slits,['amid'] -force This,['incident'] -direction he,['was'] -A few,|['seconds', 'country', 'yards']| -reserve it,['for'] -the impossibility,['of'] -Helen Stoner,|['and', 'heard']| -mother said,['she'] -clue while,['it'] -his records,['of'] -with snow,['and'] -Still I,['confess'] -bitten Violence,['does'] -her then?",['banker'] -a pitiable,['state'] -My stepdaughter,['has'] -hear by,['post'] -occasionally to,['embellish'] -rushed from,['the'] -that nobody,['can'] -fall down,['and'] -frightened horse,['into'] -happy under,['your'] -unpleasant night,['which'] -more than,|['once', 'just', 'his', '150', 'I', 'such', 'ever', 'one', 'an', 'a', '750', 'five-and-twenty', 'thirty', 'is', 'that', 'it', 'possible', 'random', 'sufficient']| -questioning and,|['rather', 'thoughtful']| -approaching it,['to'] -you sit,['on'] -drug and,|['the', 'looking']| -you never,|['heard', 'had', 'been']| -seen her,|['since', 'husband', 'at']| -it in,|['twenty', 'that', 'a', 'spite', 'peace', 'this', 'the', 'The', 'any', 'person']| -Pray step,['into'] -forced to,|['admit', 'go', 'use', 'raise', 'acquiesce']| -the heading,['Tragedy'] -it if,|['he', 'possible']| -commonplace smiled,['and'] -go from,['here'] -inn over,['there'] -drive then?,['our'] -confidence and,['I'] -Palmer and,['Pritchard'] -it it,['is'] -it is,|['not', 'of', 'almost', 'how', 'probable', 'always', 'impossible', 'will', 'This', 'just', 'splendid', 'really', 'no', 'a', 'and', 'possible', 'all', 'still', 'time', 'usually', 'my', 'perhaps', 'far', 'you', 'profoundly', 'to', 'conjectured', 'very', 'that', 'surely', 'the', 'indeed', 'absolutely', 'more', 'he', 'necessary', 'quite', 'said', 'recovered', 'Kate', 'Friday', 'true', 'your', 'it', 'his', 'better', 'He', 'obvious', 'also', 'extremely', 'blue', 'as', "don't", 'something', 'out', 'concerned', 'where', 'unlikely', 'fastened', 'such', 'for', 'likely', 'anything', 'only', 'too', 'in', 'south', 'There', 'currently', 'an', 'correct', 'childish', 'important', 'unwise', 'hardly', 'unusual', 'I', 'after', 'hardest', 'certain', 'frequently', 'because', 'upon', 'one', 'clear', 'so']| -felony with,['impunity'] -evidently been,['carried'] -that didn't,['make'] -might still,['flatter'] -madam ladies,['fancies'] -my conclusions,['as'] -businesslike precaution,['should'] -latter it,['was'] -temper to,['lecture'] -seven We,['must'] -even less,['so'] -marriage Shortly,['after'] -peculiar mixture,['of'] -long effort,['to'] -a knife,|['and', 'could']| -gravity With,['a'] -you certainly,['have'] -thing about,['the'] -it together,['It'] -more But,['our'] -gash seemed,['to'] -not he,|['heard', 'could']| -evidently for,['who'] -client doubt,['its'] -hedges stretching,['from'] -whose eyes,['rested'] -brows were,['drawn'] -mania has,['been'] -half-pennies It,['was'] -to sink,['and'] -are waiting,['for'] -exceedingly hot,['day'] -wine-cellar seem,['to'] -most lucrative,['means'] -dark as,['it'] -happily at,['Horsham'] -joking What,['can'] -know of,['the'] -dark am,['afraid'] -were forced,['to'] -minute and,['yet'] -and peep,['in'] -here are,|['four', 'three', 'the']| -commands as,['a'] -path and,|['amid', 'walked', 'so']| -was burning,['brightly'] -Then who,['could'] -been waylaid,['There'] -I passed,|['the', 'down', 'out', 'outside', 'his', 'said', 'along', 'round', 'you']| -bushy black,['side-whiskers'] -inspector He,["doesn't"] -companions Ferguson,['appeared'] -brain-fever and,['for'] -inst. abstracted,['from'] -thought sometimes,['that'] -out to-night?,['not.'] -stretched up,['in'] -going Watson,['for'] -saw Arthur,['with'] -story am,['glad'] -revolver and,['laid'] -what absolutely,['unforeseen'] -Holmes thoughtfully,|['It', 'tossing']| -compass among,['us'] -but sometimes,['he'] -injury It,['must'] -my bedroom,|['wall', 'again', 'window']| -accidental causes.,['Carefully'] -eagerly with,['his'] -But indeed,['if'] -lamp there,['as'] -will excuse,|['this', 'my', 'me']| -there broke,['from'] -careful examination,|['of', 'through']| -the coolest,['and'] -their investigations,['Inspector'] -this money,['or'] -thieves Spies,['and'] -five-and-twenty I,['should'] -|yes, of|,['course'] -tender-hearted to,['hurt'] -Who do,['you'] -Bible Oh,["don't"] -than formerly,|['pointing', 'which']| -behind us,|['and', 'There']| -would imply,['His'] -sir may,['be'] -even here,|['we', 'in']| -cried This,['is'] -usual she,['said'] -Hall is,['so'] -accused in,['their'] -thing which,|['she', 'I']| -yellow band,['with'] -clanking of,['the'] -and trousers,['was'] -lay my,['finger'] -seen anything,['so'] -the skirt,['of'] -any one,['of'] -California with,['her'] -in bed,|['Then', 'I']| -up among,['the'] -higher stake,['to-night'] -such weight,['it'] -us These,['are'] -belated party,['of'] -me Yet,['with'] -is incorrigible,['and'] -and led,|['down', 'into', 'the']| -They would,['have'] -room Her,['prolonged'] -only catch,['some'] -smartest man,['in'] -How was,['it'] -and likely,['to'] -motion band!,['the'] -and let,|['me', 'us', 'the']| -flight when,['pursued'] -Turner had,|['an', 'a']| -our stones,['at'] -haggard Sherlock,['Holmes'] -Mr Sherlock,['Holmes'] -gate to,['see'] -was why,['she'] -am But,["you've"] -inner consciousness,['anything'] -evidently newly,['studied'] -hardly said,['the'] -German books,['were'] -quotes Balzac,['once'] -was who,|['gave', 'was']| -be alone,['But'] -for easy,['concealment'] -tossed a,['crumpled'] -the whitewashed,['corridor'] -his arms,|['Of', 'my', 'and', 'akimbo', 'folded']| -top As,['to'] -her finger,['into'] -suspicious and,['questioning'] -I frequently,['found'] -fuller's-earth is,['a'] -hardly looked,['at'] -is let,['loose'] -fuller's-earth in,|['one', 'the']| -us like,['a'] -church first,['and'] -crown Look,['out'] -communicated with,|['his', 'the']| -walked His,['hair'] -pressed down,['the'] -Ballarat is,['wonderful'] -come for,|['half', 'advice', 'she']| -an inn,['of'] -emerged from,['the'] -silk and,|['secured', 'the']| -platform his,['tall'] -all one,['little'] -25 pounds,['I'] -woke one,['morning'] -an accessory,['to'] -heavens!" cried,|['the', 'my']| -be glad,|['if', 'to']| -to finding,['this'] -great panoply,['she'] -whole position,['forever'] -evidence against,['him'] -the seven,['years'] -apart from,['the'] -together It,['was'] -a series,['of'] -Spence Munro,['but'] -bird rushed,['back'] -Hall why,['did'] -together If,['you'] -own bird,['so'] -of shelter,['and'] -points of,['my'] -an exceedingly,|['remarkable', 'hot', 'interesting']| -cellar If,["there's"] -which he,|['had', 'explained', 'could', 'disentangled', 'might', 'opened', 'was', 'treated', 'held', 'is', 'wore', 'cannot', 'enlarged', 'would', 'still', 'never', 'has', 'can', 'perched', 'raised', 'anoints', 'knew', 'unravelled', 'consulted', 'shook', 'digs', 'closed', 'achieved', 'unlocked', 'placed', 'did', 'bowed', 'exposed', 'frequently', 'told']| -thin cane,['and'] -befall there,['was'] -mark the,['house'] -become engaged,['then'] -unfortunate acquaintance,['so'] -door? am,['sure'] -ago It,['is'] -fantastic talk,['Mr'] -grim and,['strange'] -|conversation ceremony,|,['which'] -silence broken,['only'] -entangled with,['this'] -from injuring,['another'] -grinning at,['my'] -his approach,['for'] -justice will,['be'] -fortunes then,['hat'] -give one,['of'] -may some,['day'] -deed at,['a'] -tawny tinted,['with'] -his singular,|['introspective', 'character', 'account', 'dying']| -it about,['with'] -better!" said,['he'] -cut both,['ways'] -firm in,['the'] -dog-cart which,['throws'] -There has,['been'] -describes as,['being'] -fire Pray,['draw'] -Private affliction,['also'] -He did,['tell'] -Openshaw did,['before'] -example to,['hand'] -recoiled in,['horror'] -also By,['a'] -client but,["here's"] -wild clatter,['of'] -met seemed,['to'] -wait you,['at'] -night As,['I'] -rate. She,['smiled'] -bearing in,['vegetables'] -to Will,['you'] -the ground,|['You', 'with', 'to', 'On', 'that', 'Then', 'but', 'I', 'and', 'floor', 'She', 'shimmering', 'Running']| -their tents,['wandering'] -grey gables,['and'] -blue sky,['flecked'] -a slim,['youth'] -a boarding-school,['what'] -sweet womanly,['caress'] -too generous,['with'] -horses hoofs,|['and', 'Watson,"']| -the inquirer,['flitted'] -gloomy intervals,['of'] -League has,['a'] -her dark,|['dress', 'eyebrows']| -tightly round,|['his', 'the']| -us know,['what'] -began to,|['walk', 'think', 'examine', 'ask', 'sob', 'call', 'laugh', 'move', 'come', 'sink', 'stare', 'steal', 'be', 'speak', 'run', 'admire', 'tell', 'amuse']| -the possibility,['of'] -shrieked you,['thieves'] -you swear,['to'] -chair Will,['you'] -course the,|['other', 'loss', 'pay']| -Very long,['and'] -forearm We,['shall'] -his knees,|['upon', 'staring', 'as']| -best inspect,['a'] -they appears,['that'] -first example,['to'] -poor helpless,['worms'] -a brown,|['board', 'crumbly']| -you to-night,|['at', "I've", 'His', 'There']| -seedy coat,['his'] -would break,|['her', 'their']| -more As,['I'] -not shall,['try'] -inspect a,['few'] -expressed admiration,['of'] -prank upon me,['It'] -borne a,['stain'] -What will,|['you', 'he']| -right shirt-sleeve,['but'] -we'll be,['as'] -thudding noise,['came'] -cheerily as,['we'] -his blazing,['red'] -water through,['one'] -honeymoon but,['I'] -could desire,['about'] -you How,['could'] -inquiries on,['the'] -|you father,"|,['said'] -away round,['to'] -himself He'll,['crack'] -she had,|['probably', 'resolved', 'been', 'a', 'written', 'left', 'entered', 'passed', 'spoken', 'given', 'actually', 'no', 'ceased', 'not', 'struck', 'caught', 'come', 'some', 'only', 'gone', 'made', 'become', 'repented', 'it', 'spent', 'married', 'fainted', 'lost', 'an', 'divined']| -suddenly an,['idea'] -sensational I,['fear'] -cabby drove,['fast'] -other block,['And'] -anything greater,['distance'] -out into,|['the', 'a', 'smoke']| -the results,|['which', 'of']| -lengthened out,['until'] -she has,|['been', 'a', 'not', 'said', 'turned', 'left', 'made', 'known', 'refused', 'only', 'anything', 'passed']| -employ James,['Windibank'] -by such,['words'] -rushed forward,|['fell', 'to']| -present Your,['Majesty'] -working as,['he'] -unsolved problem,['upon'] -fourth day,['after'] -occurred A,['man'] -a pen,|['by', 'Better', 'Name']| -wire to,['the'] -occurred I,|['settled', 'left', 'cannot']| -foie gras,['pie'] -looking up,|['in', 'at']| -his pen,['in'] -into business,['with'] -of ruin,['The'] -world will,['excuse'] -opened by,['a'] -once When,['the'] -day Mr,['Holmes'] -cotton wadding,['and'] -truth was,['early'] -Kilburn There,['was'] -yet and,['that'] -To-day is,['Saturday'] -exception however,['for'] -new acquaintance,|['to', 'upon']| -scandal of,['course'] -prices not,['more'] -even giving,['me'] -let some,['light'] -astronomy and,['politics'] -saw William,['Crowder'] -lowliest manifestations,['that'] -line I,['should'] -right When,['I'] -not so,|['much', 'impossible', 'very']| -understand not,['think'] -refusal to,|['answer', 'give']| -lay back,|['in', 'without']| -good-morning He,['bowed'] -approach him,['and'] -walking through,['Swandam'] -pips to,['A'] -being fortunate,['enough'] -suddenly as,['it'] -lady's mind,['and'] -Paradol Chamber,['of'] -all that,|['there', 'is', 'Mr', 'mind,"', 'was', 'I', 'he', 'district', 'caught', 'occurred', 'it', 'we', 'my', 'had', 'way', 'said', 'you', 'Miss', 'the', 'remains']| -6d. glass,['sherry'] -Surrey side,['Passing'] -the objection,['might'] -to their,|['heels', 'nature', 'beat', 'owner', "master's", 'whereabouts']| -minutes with,['his'] -then began,['walking'] -I hope,|['that', 'to']| -the enclosure,['is'] -us here,['at'] -rumours which,['have'] -her ledgers,['and'] -addressing Wilhelm,['Gottsreich'] -the foot,['of'] -some compromising,['letters'] -was tied,['to'] -the wood,|['and', 'until', 'may', 'though']| -any chance,|['of', 'to']| -sure which,['but'] -small estate,|['in', 'of']| -Petrarch and,['not'] -made about,['such'] -fly from,['the'] -cold morning,['of'] -my hand,|['I', 'to', 'and', 'at', 'upon', 'Young', 'Now', 'warmly', 'in', 'was', 'upraised', 'which', 'all', 'is', 'when']| -Two days,|['ago', 'later that']| -you how,|['quick', 'I', 'you', 'fond', 'interested']| -shoulder are,['none'] -to ascend,['the'] -the recent,['papers'] -editions Then,['it'] -than her,|['little', 'husband']| -pew I,['thought'] -sort He,["wouldn't"] -your watch-chain,['the'] -wooden floor,['of'] -safeguard myself,['and'] -and gentleman,['Lord'] -you Yours,['faithfully'] -Lestrade observed,['It'] -estate was,['in'] -queen she,['would'] -each successive,['instance'] -very plain,['tale'] -As the,['daughter'] -own curiosity,['It'] -compliment when,['you'] -you used,|['It', 'to']| -some evidence,['implicating'] -Winchester It,['is'] -notes afterwards,['it'] -could not,|['help', 'be', 'have', 'confide', 'at', 'tell', 'love', 'possibly', 'imagine', 'only', 'come', 'unravel', 'invent', 'lose', 'give', 'shake', 'wish', 'account', 'conceal', 'ascend', 'pierce', 'sleep', 'move', 'hear', 'restrain', 'quite', 'think', 'get', 'but', 'bear', 'trust', 'wonder', 'do', 'take', 'explain', 'say', 'ask', 'dream', 'I', 'live']| -myself out,['of'] -tail? I,['asked'] -guard himself,['for'] -You made,['some'] -hall table,['I'] -Once only,['had'] -with grief,['and'] -directors have,['had'] -we got,|['the', 'a']| -odd cases,['in'] -they Who,['is'] -you good,|['and', 'authority']| -name for,['it'] -may walk,['to'] -coins upon,['which'] -a nature,['such'] -was unknown,['to'] -clattered down,['the'] -floor there,['was'] -we filed,['into'] -much less,|['than', 'striking', 'amiable']| -out How,['quiet'] -locked and,['which'] -|good-bye, Mr|,['Jabez'] -My mistress,['told'] -lest there,['might'] -defeated in,['the'] -harm I,['give'] -How quiet,['and'] -me In,['life'] -supposition think,['so'] -and sensational,['trials'] -he sketched,['out'] -the handle,|['and', 'but']| -enough for,['all'] -were little,|['children', 'likely']| -room collecting,['pillows'] -she answered,|['but', 'me']| -bring one,['of'] -whiskers the,['glasses'] -slow staccato,['fashion'] -your young,['ladies.'] -as its,['complete'] -Simon then,['returned'] -not more,|['dense', 'so', 'than']| -people and,|['what', 'some']| -me he,|['cried', 'come']| -anger would,['not'] -for protection,['in'] -me before,['we'] -up his,|['calves', 'mind', 'pea-jacket', 'hat', 'hand', 'pipe', 'hands', 'coat', 'chair', 'shiny', 'search']| -American origin,['then?"'] -seems rather,|['sad', 'useless']| -more That,['fellow'] -kindly take,['us'] -new no,['two'] -outbreaks of,['the'] -mission which,['he'] -very seriously,|['menaced', 'to']| -innocent who,['has'] -have trusted,['your'] -his data,['were'] -energetic measures,['on'] -and whiskers,['and'] -grey roofs,['of'] -a dishonoured,['man'] -hands were,['tied'] -my word.,["good.'"] -complete a,['disguise'] -bridge of,['his'] -and is,|['now', 'remarkable']| -and it,|['widened', 'was', 'still', 'need', 'had', 'is', 'rapidly', 'disappeared', 'has', 'seemed', 'would', 'comes', 'could', 'fell', 'did', 'will']| -his fortunes,|['seems', 'then']| -loafer With,['his'] -had charge,['of'] -father married,['again'] -broadened and,['broadened'] -leaf and,['did'] -hands God,['help'] -whim Heh?,['said'] -introduction to,['him'] -neck of,['a'] -Suddenly with,['a'] -and if,|['you', 'McCarthy', 'God', 'I', 'she', 'it']| -young ladies.,['manageress'] -interest which,|["wasn't", 'sprang']| -morning yes,['I'] -London and,|['for', 'therefore', 'took', 'a', 'I']| -and in,|['the', 'an', 'ten', 'silence', 'this', 'a', 'that', '1887', 'spite', 'half', 'it', 'admiring', 'my', 'her', 'which', 'running', 'five', 'order', 'return', 'so']| -already done,['Why'] -compared to,['the'] -scent of,['some'] -this from,['his'] -what turn,['things'] -study that,['maiden'] -pushed past,['the'] -excessive sum,['for'] -as cruel,['and'] -another as,['cunning'] -Roylott remarked,['the'] -at hand,['Beside'] -injury to,['it'] -own reward,|['If', 'but']| -yet had,['I'] -to whom,|['an', 'the', 'of', 'she', 'we', 'I']| -to conceal,|['it', 'some']| -deceptive than,['an'] -then in,['justice'] -unique violin-player,['boxer'] -Lestrade Oct,['4th'] -matter should,['be'] -the arms,['of'] -cascade of,["children's"] -bell and,|['was', 'as', 'called', 'the']| -then if,|['the', 'he']| -a degree,['and'] -surprise as,['we'] -been getting,['yourself'] -maker's name,['but'] -his plantation,['where'] -craggy features,['and'] -America when,['he'] -your help,|['and', 'to-night', 'I', 'is']| -Bradstreet thoughtfully,['Of'] -or address,['will'] -then it,|['is', 'occurred', 'appears']| -Have just,['been'] -were meetings,['and'] -character he,['established'] -Holmes my,['hair'] -example is,['an'] -push her,['way'] -it aloud,['note'] -how she,['had'] -widened the,['field'] -their wardrobe.,['seemed'] -seat and,|['was', 'stood']| -was fortunate,['enough'] -and discretion,|['whom', 'must', 'I']| -the daily,['press'] -myself free,['and'] -called Westaway's,['and'] -the force,|['and', 'but', 'of']| -briefly these,['Some'] -a chance,|['of', 'as']| -why the,['more'] -idle one,['for'] -Never was,['such'] -naked feet,['I'] -you dragged,['the'] -worth quite,['a'] -Yard Let,['me'] -bandages He,['lay'] -Very much,['so'] -cocaine and,|['ambition', 'tobacco']| -secluded after,['all'] -detective in,['him'] -bright semicircle,['which'] -married me,['and'] -some solid,['grounds'] -This also,['was'] -style and,['abode'] -explained in,['the'] -his throat,['sat'] -here four,['letters'] -noting every,['little'] -ventilator nodded,['again'] -Windibank that is,['my'] -pulled down,|['over', 'from']| -then Holmes,['took'] -crop But,['the'] -lines at,['Munich'] -|30,000 pounds|,['and'] -afternoon so,['enwrapped'] -least had,['the'] -foresee a,['very'] -liberty of,|['doubting', 'bringing']| -Hosmer came,['for'] -down shut,['up'] -direction how,['did'] -half-raised in,['her'] -to keep,|['two', 'at', 'out', 'her', 'an', 'a', 'up', 'the', 'people']| -manager As,['I'] -eleven." what,['day'] -photograph ruin,['me'] -and tell,['us'] -Mr Godfrey,['Norton'] -wife would,['be'] -with outstretched,['hands'] -cane at,['the'] -for Company.,['It'] -was possible,|['to', 'that']| -my carriage,['but'] -trees was,['extinguished'] -difficulties if,['you'] -creature back,['into'] -the worst,['of'] -roads it,['is'] -see many,['objections'] -was admirably,['done'] -examined every,['fact'] -dollars won,['at'] -self-respect he,['continued'] -be back,|['before', 'in']| -thumb should,['have'] -that slip,['of'] -the slab,['turning'] -now come,['to'] -again He,|['had', 'will']| -in fear,['of'] -glamour of,['his'] -address of,['the'] -Only one,|['man', 'of']| -last entry,['22nd.'] -mind ever,['again'] -who told,['me'] -were associated,['with'] -practice again,['I'] -an entirely,|['erroneous', 'wrong']| -he wanted,|['to', 'he']| -then that,|['she', 'some', 'I', 'he', 'a', 'case', 'quite']| -bought under,['half'] -box I,['noticed'] -remarked only,['that'] -was when,|['we', 'I']| -theory of,['mine'] -original observer,['but'] -egg that,['ever'] -hear that,|['somewhere', 'it']| -and cloudless,['At'] -this put,['in'] -folk were,['not'] -know little,|['man', 'of']| -thanks He,['could'] -occupied his,['immense'] -dying and,['a'] -rapidly formed,['local'] -wandering away,['with'] -other exit,['could'] -the nerve,['to'] -city gently,['remove'] -notes and,|['records', 'figures']| -was putting,['in'] -subduing in,['the'] -reported that,['her'] -They all,['appear'] -ground and,|['sitting', 'the']| -larger than,|['your', 'that']| -a smile,|['as', 'I']| -She never,['came'] -so unfortunately,['lost'] -you remember,|['any', 'Monday', 'that', 'the']| -anoints with,['lime-cream'] -hat is,['three'] -a tunnel,['to'] -hat in,|['his', 'one']| -unlocked his,['strong-box'] -case but,['I'] -sum and,['I'] -London banks,['Mr'] -chance of,|['arrest', 'a', 'getting', 'finding', 'talking']| -been some,|['informality', 'foul', 'attempt', 'villainy']| -stopped at,|['the', 'last']| -a shock,|['of', 'to']| -heavily upon,['my'] -has nerve,['and'] -The presence,['of'] -it conclusive,['what?"'] -may account,['also'] -ascertaining what,['part'] -easy berths,['to'] -sleeve In,['a'] -intuitions and,['yet'] -Reading My,['stepfather'] -compromising letters,['and'] -man however,|['who', 'and', 'was']| -Scarlet I,|['was', 'felt']| -no signs,['of'] -girl dear,['Holmes'] -strange wild,['story'] -practical test,['Here'] -it Hence,['you'] -Windibank draws,['my'] -acquire so,['deep'] -emotion Oh,['sir'] -very singular,|['points', 'business']| -table Of,['these'] -quarter-past seven,['I'] -the stranger,|['with', 'from', 'Well']| -for any,|['sort', 'hesitation', 'inconvenience', 'words', 'little', 'chance']| -These good,['people'] -having every,['characteristic'] -would spend,['in'] -engaged said,['I'] -a bright-looking,['clean-shaven'] -some fantastic,['but'] -the formidable,['letters'] -lane This,['he'] -my coat,['which'] -or something,|['so', 'which']| -me With,['hardly'] -Ormstein Grand,['Duke'] -me certain,['that'] -could be,|['reached', 'more', 'the', 'saved', 'discovered', 'of', 'passed', 'designed', 'is', 'no', 'She', 'found', 'said']| -celebrated so,['quietly'] -stamped with,['the'] -but kind-hearted,['If'] -be forced,['to'] -a position,['will'] -out! then,['suddenly'] -who the,['deuce'] -age But,['soon'] -fit to,['wear'] -her very,['significant'] -gambler an,['absolutely'] -are naturally,['secretive'] -boot in,['his'] -cudgelled my,['brains'] -two in,['the'] -his left-handedness,['were'] -imbecile Lestrade,['as'] -local brewer,['by'] -went upstairs,['together'] -one small,['job'] -source He,['denied'] -puzzled as,['everyone'] -your advertisement,['he'] -His hand,['closed'] -returning at,['last'] -is because,['it'] -and uncarpeted,['which'] -get away,|['from', 'with', 'or', 'but', 'so.']| -not advise,['me'] -within their,['reach'] -like lightning,['across'] -treachery to,['Holmes'] -bird's left,['leg'] -indeed so,['moist'] -been worth,['an'] -Holmes fell,['upon'] -mind by,['the'] -ears or,['at'] -me ungrateful,|['turned', 'for']| -Toller lets,['him'] -cut up,['as'] -he come,|['answer', 'with', 'to']| -little children,['and'] -deeper than,['either'] -friend's face,['so'] -opinion from,['the'] -Cross for,['the'] -accurately state,['all'] -twenty minutes!,['they'] -night when,['he'] -McCarthy going,['the'] -it what,['way'] -power to,|['his', 'reward']| -twenty minutes.,|['was', 'It']| -we turn,['our'] -wrist in,['his'] -in Tennessee,['Louisiana'] -there! that?,['said'] -old Toller,['my'] -saying to,|['me', 'you']| -glanced down,|['the', 'They', 'at']| -waistcoat with,['a'] -anything that,|['turned', 'may', 'I']| -could command,['a'] -course Well,['a'] -r. There,['are'] -me until,|['the', 'he']| -terrible mistake,['had'] -of standing,['on'] -Rockies where,['pa'] -his task,['more'] -to Ross,['with'] -accustomed to,|['doing', 'keep', 'use', 'set']| -chair a,['little'] -apprenticed to,['Venner'] -last witness,['Inspector'] -always of,['use'] -put on,|['seven', 'your', 'a', 'my', 'as', 'his']| -the observer,['who'] -draw back,['now'] -same time,|['raise', 'as', 'he']| -me My,|['life', 'sister', 'gross']| -commence and,['we'] -with age,['an'] -me Mr,|['Holmes', 'McCarthy', 'Hatherley', 'Holmes a']| -my investigations,['outside'] -wore the,["girl's"] -after midnight,|['writing,"']| -talk to,['for'] -fondness for,['photography'] -and some,|['coming', 'wear', 'hundreds', 'very']| -room stretching,['along'] -put myself,['in'] -instantly lit,['the'] -which compelled,['our'] -massive strongly,['marked'] -than it,|['might', 'promised', 'could']| -was heard,|['to', 'upon']| -change her,|['mind', 'plans']| -Twelve struck,['and'] -search me,['and'] -bones Yet,['this'] -hard-headed British,['jury'] -to choose,['and'] -parley from,['my'] -influence upon,['European'] -a disguise,|['as', 'But']| -That left,['foot'] -disturbed for,['the'] -least will,['honour'] -walks with,['a'] -beside which,['on'] -glance into,['the'] -and lingering,['disease'] -had to,|['look', 'tell', 'deal', 'do', 'go', 'move', 'change', 'love', 'confess', 'play', 'be']| -does why,['in'] -My doctor,['says'] -poured out,['some'] -inquiry and,|['I', 'then', 'it']| -and were,|['worn', 'frequently', 'mostly', 'not', 'beginning', 'shown', 'about', 'waiting', 'ordered', 'so']| -coming to,|['the', 'our', 'consult']| -God what,|['shall', 'a']| -on consideration,['of'] -him get,|['in', 'out']| -this Gladstone,['bag'] -maybe you,['can'] -any preliminary,['sound'] -stirring It,['was'] -limb I,['knew'] -go anywhere,['He'] -|member sir,|,['you'] -are apt,['to'] -question depended,['whether'] -not conducting,['the'] -he silent,['then'] -than me,['but'] -she come,['at'] -good Now,['Mr'] -bargain you,['no'] -beat the,|['pavement', 'best']| -who lost,['his'] -surprise Do,['you'] -Her prolonged,['absence'] -motive for,['securing'] -the rose-bushes,|['long', 'where']| -all we,|['must', 'can']| -than my,|['neighbours', 'average', 'words']| -quite so,|['bulky', 'common', 'prompt']| -Millar and,['that'] -my cap,['on'] -had last,['been'] -whole situation,['became'] -rest it,|['upon', 'was']| -gives his,['first'] -rest is,|['of', 'familiar']| -stable-boy had,['run'] -rest in,['peace'] -him He,|['is', 'thought', 'was', 'and', 'had']| -up by,|['quite', 'four', 'leaps', 'muttering']| -interest interest,['me'] -my cab,['to'] -information In,['this'] -mischance in,['breaking'] -our landlady,['had'] -one time,|['that', 'among', 'Ferguson', 'Secretary']| -she should,|['interfere', 'be']| -You of,['course'] -circle with,['Eyford'] -to us,|['man', 'These', 'from', 'to-night', 'of', 'and', 'must', 'this', 'as', 'for', 'to']| -easier A,['horrible'] -thoroughly examined,['with'] -but swayed,['his'] -also to,|['his', 'send']| -way Doctor,['I'] -white one,|['over', 'with']| -tea I,['knew'] -flourished in,['spite'] -into a,|['church', 'moody', 'roar', 'small', 'huge', 'four-wheeler', 'hansom', 'chair', 'gigantic', 'long', 'cry', 'doddering', 'hearty', 'groan', 'gallop', 'deep', 'scream', 'well-dressed', 'supper', 'stream', 'curve', 'grove', 'corner', 'low', 'fair', 'carriage', 'porch', 'bedroom', 'certainty', 'cab', 'brown', 'desultory', 'narrow', 'series', 'serious', 'grin', 'state']| -on duty,|['near', 'asked', 'I']| -red his,['brow'] -drawn quite,['tense'] -A tall,['stout'] -any pretext,['set'] -pick him,['he'] -towards the,|['Edgeware', 'vacant', 'blaze', 'unusual', 'fire', 'vestry']| -grey cloak,|['smokes', 'one']| -apt to,['be'] -the acetones,['as'] -him you,|['not', 'would', 'see']| -in quest,|['of', 'a']| -his hideous,['face'] -don't think,|['I', "I'll", 'you']| -town before,['telling'] -books were,['scattered'] -Isa Whitney,['and'] -with this,|['young', 'very', 'machine', 'awful', 'investigation', 'old', 'thought']| -bar it,['behind'] -face could,['not'] -face Knowing,['that'] -beginning without,['you'] -their papers,['It'] -his but,['he'] -a sweet,['womanly'] -people You,['may'] -listening with,['all'] -and Hosmer,['wrote'] -match these,['and'] -who deserved,['punishment'] -illustrate Some,['too'] -intention A,['fierce'] -minor matters,['until'] -engaged then,['you'] -intention I,['called'] -latter as,['may'] -the Goodwins,['and'] -immediately in,['front'] -off again,['on'] -two days,|['for', 'since', 'with', 'I', 'ago', 'after', 'Quick']| -police were,['at'] -was awakened,['by'] -maid brought,['in'] -correspondence with,['this'] -Kent in,['my'] -house Good-night,['for'] -Monday was,['an'] -no hat,['since'] -the loss,|['of', 'was', 'Your']| -signed the,|['statement', 'paper']| -answered any,['old'] -clergyman all,['ready'] -to copy,['out'] -day when,|['the', 'my']| -possibly need,['so'] -witness it,['Then'] -sounds funny,['too'] -sits a,['woman'] -witness if,['only'] -presence here,['and'] -and with,|['the', 'you', 'a', 'reason', 'your', 'my', 'her']| -which pattered,['down'] -more about,|['fowls', 'this']| -the kindness,['to'] -attitude but,['had'] -But the,|['note', 'writing', 'maiden', 'deception', 'creature', 'instant']| -too little,['Too'] -anger all,['mingled'] -father brought,['her'] -has had,|['a', 'cut', 'no', 'the', 'her']| -tended no,['doubt'] -more worn,['than'] -part he,|['was', 'has']| -expect company,['They'] -attempts at,['bank'] -you trace,['it'] -only reached,['her'] -a warning,['sent'] -his sponge,['and'] -chance to,|['hit', 'have', 'pass']| -consideration of,|['the', 'some']| -coronet in,|['his', 'her']| -bridegroom instantly,['put'] -coronet is,['an'] -lip in,['a'] -them that,|['it', 'another']| -father didn't,['like'] -fluffy pink,['chiffon'] -Street Harley,['Street'] -with rage,['You'] -back door,['I'] -trains in,['Bradshaw'] -Roylott which,['tend'] -the greatest,|['interest', 'concentration', 'importance', 'attention', 'consternation', 'danger']| -avail said,['Mr'] -he His,['grip'] -pen Better,['make'] -LEAGUE had,['called'] -hand seemed,['to'] -you And,|['good-night', 'your', 'first', 'I', 'off']| -ring He,['slipped'] -that Flora,['decoyed'] -did before,['him'] -fresh convulsion,['seized'] -how quick,['and'] -of danger,|['I', 'You', 'yet', 'said']| -examining the,|['wound', 'trough', 'furniture']| -Persian saying,['There'] -take comfort,['too'] -hung a,['very'] -peculiar tint,|['of', 'and']| -narrow white-counterpaned,['bed'] -large as,['a'] -pushed back,['the'] -common signal,['between'] -might suit,['me'] -have handled,['them'] -true value,['but'] -have vengeance,['upon'] -that absolute,['logical'] -the linoleum,['Our'] -marked a,['chink'] -indeed? You,['seem'] -bird gave,['a'] -year with,['what'] -he got,['me'] -that cut,['and'] -how maddening,['it'] -the third,|['day', 'from', 'my', 'chamber', 'demand', 'Mrs', 'drawer']| -that bird,['Jem?'] -like my,['friend'] -certainly repay,['what'] -many minutes,|['are', 'This']| -downward his,['shoulders'] -of fair,['tonnage'] -chest fighting,['against'] -test-tubes with,['the'] -events which,['led'] -logician of,['Baker'] -ordered two,['glasses'] -knowing my,['past'] -certainty who,['could'] -must spend,['the'] -by his,|['whole', 'dress', 'peculiar', 'long', 'injuries', 'screams', 'life', 'eager', 'mischance', 'heavy', 'professional', 'manner', 'tooth', 'left']| -said They,['used'] -social summonses,['which'] -Ha I,|['am', 'fancy']| -startled gaze,['My'] -seeing you,|['and', 'again', 'I']| -third door,['into'] -by him,|['to', 'in', 'We', 'that']| -when Mr,['Windibank'] -half-dragged up,['to'] -|certainly, if|,['it'] -cup of,|['coffee', 'tea', 'hot']| -face disfigured,['by'] -may arise,['I'] -relation between,|['them', 'the']| -every direction,['with'] -been by,['no'] -affliction also,['is'] -this one,|['twelve', 'comes', 'said']| -"VIOLET HUNTER,['you'] -the cry,|['of', 'and']| -keep his,['little'] -off my,|['clothes', 'ring', 'shoes', 'hair']| -have bored,['you'] -suggested that,|['the', 'it', 'we', 'I']| -those metal,['bars'] -Paddington by,['the'] -harm unless,['we'] -he When,|['Horner', 'you']| -sounds a,['little'] -call over,['here'] -we not,['done'] -we now,['learn'] -is danger,['for'] -just finished,['my'] -England be,['looked'] -forever a,['mystery'] -fine sea-stories,['until'] -camp near,['the'] -evening before,|['I', 'and']| -fond he,['was'] -these bleak,['autumnal'] -in breaking,['the'] -time from,['which'] -where my,['thumb'] -unfortunate one,['for'] -dishonourable would,['be'] -continued seeing,['my'] -locked the,['door'] -arm we'll,['be'] -fellow more,['than'] -Perhaps I,|['have', 'had']| -Angel and,|['keeps', 'so']| -that? work,['appears'] -|her brought,|,['I'] -some crime,['no.'] -Gravesend and,['learned'] -go out,|['groaned,', 'in', 'close', 'to-night?', 'much', 'for', 'to-night']| -had struggled,['with'] -dozen from,['a'] -was from,|['the', 'Sherlock', 'Pondicherry', 'her']| -must within,['a'] -gone You,['heard'] -drew on,['our'] -Cooee! then,['obviously'] -the life,['which'] -else in,['the'] -an amateur,['that'] -impatiently I,["can't"] -might grow,['to'] -sprang round,['and'] -that goose,['It'] -simple test,['if'] -troubles were,['in'] -had remarkably,['small'] -held out,|['his', 'her']| -nothing else,|['think', 'Jabez', 'would', 'had', 'save', 'to']| -not point,['out'] -myself Crime,['is'] -nice and,['complimentary'] -town until,['the'] -talk if,['I'] -useful material,['for'] -she rushed,['down'] -grey Harris,['tweed'] -live then,['slept'] -hesitating whispering,['fashion'] -is rather,|['more', 'a', 'vague']| -may be,|['interested', 'some', 'the', 'so', 'of', 'enough', 'remembered', 'one', 'in', 'solved', 'deduced', 'many', 'thrown', 'wanting', 'more', 'taken', 'expected', 'striking', 'you', 'put', 'cleared', 'explained', 'that', 'forced', 'set', 'on', 'following', 'back', 'less', 'committed']| -ordinary black,['hat'] -to George,['Sand'] -the chest,['and'] -slate-coloured broad-brimmed,['straw'] -Arizona and,['then'] -of discoloured,['blue-tinted'] -white while,['his'] -watch It,['was'] -and mother,['said'] -last train,|['from', 'to']| -without taking,['part'] -fro droning,['to'] -Baker Street.,['That'] -of Wallenstein,['and'] -to-morrow it,['said'] -sight Mr,['Holmes'] -Had I,['been'] -the r's,['tailless'] -secure a duty,['which'] -had all,['three'] -window so,|['suddenly', 'that']| -to apply,|['the', 'Mr', 'for']| -adapt himself,['to'] -now dead,['and'] -good Lestrade,['said'] -be. child one,['dear'] -large for,['easy'] -happen when,['you'] -revenge or,['anything'] -a better,|['man', 'time', 'The', 'view', 'Boone', 'grown', 'fit']| -cheer me,['up'] -she impressed,['me'] -walks into,['my'] -it flew,['upon'] -footing She,['used'] -and ends,['on'] -floor A,['chair'] -days later that,['is'] -off for,|['the', "Pope's", 'Hatherley', 'Streatham']| -place near,|['the', 'Petersfield']| -too crowded,['even'] -the January,['of'] -His face,|['flushed', 'was', 'set']| -and two,|['officers', 'months', 'people', 'or', 'years', 'men', 'dozen', 'curving', 'and']| -hideous and,['distorted'] -beggar and,|['in', 'put']| -hopes opinion,['is'] -be crowded,['so'] -deceive a,["coroner's"] -floor a,['wedding-dress'] -no less,['than'] -His tangled,['beard'] -machine at,['the'] -Augustine McCauley,['cleared'] -beginning of,['84'] -nothing better,['than'] -as possible,|['The', 'Turner', 'with', 'and', 'I', 'so', 'but', 'that', 'will']| -Majesty as,['I'] -characteristics with,['which'] -hedge upon,['either'] -lodge-keeper came,['and'] -judge you,['said'] -this afternoon,|['he', 'and', 'She']| -him carrying,['a'] -problem connected,['with'] -read over,['the'] -more creditable,['to'] -host Windigate,['by'] -frost had,['set'] -stepped from,|['her', 'the']| -sum I,['may'] -jealousy or,['some'] -trifle but,['there'] -altogether I,['have'] -Toller my,['groom'] -be hanged,['has'] -maid rushed,['across'] -slowly into,['the'] -conversation ensued,['which'] -screamed you,['villain'] -you sir,|['because', 'for']| -nearly correct,['than'] -very bulky,['boxes'] -heel and,['disappeared'] -moment he,['had'] -doubts will,['very'] -and waited,|['behind', 'by', 'there']| -spirit case,['and'] -flew upon,['the'] -country sir,['Then'] -finally abandoned,['Holmes'] -bumping of,['the'] -of hot,|['metal', 'coffee']| -Are you,|['a', 'satisfied', 'hungry', 'sure']| -of how,|['the', 'very']| -although its,['contents'] -a chestnut,['or'] -in conversation,['with'] -good plan,['of'] -can hardly,|['be', 'take', 'avoid', 'see', 'explain', 'get', 'expect']| -looked impatiently,['at'] -Holmes quietly,|['I', 'Hold', 'now!"']| -lunch upon,['the'] -word the,|['man', 'whole']| -with something,|['of', 'perhaps']| -blinds gazing,['down'] -brought it,|['up', 'down']| -quitted me,['see'] -Station. we,['can'] -Kate poor little,['Kate'] -brought in,|['the', 'contact', 'a', 'to']| -husband's cruelty,['to'] -marriage the,['dying'] -us your,['best'] -but Mr,['McCarthy'] -that Watson,['a'] -nature took,['him'] -gone I,['unlocked'] -lamp while,['Breckinridge'] -those hours,['of'] -she suddenly,|['heard', 'shrieked', 'threw']| -thirty but,['her'] -parched lips,['I'] -as man,['could'] -was folded,['across'] -needed it,['should'] -the society,|['of', 'and', 'was', 'papers']| -there? he,['asked'] -comes she,['may'] -Clair's story,['he'] -his analytical,['skill'] -as may,['be'] -something had,|['happened', 'occurred']| -from crime,['to'] -had expected,['to'] -lay listless,['watching'] -all quite,['beside'] -forehead and,['settled'] -and streaked,['with'] -to violin-land,['where'] -hastening in,['the'] -days later,['this'] -disregard what,['is'] -wicked world,['and'] -advantage of,|['it', 'the', 'me']| -a gin-shop,['approached'] -windows Suddenly,['amid'] -had rights,['of'] -absence I,['received'] -Young Openshaw,['shall'] -|Prosper stood,"|,['said'] -or west,['I'] -terror rose,['up'] -rubbed his,|['long', 'hands']| -thought is,['correct'] -thought it,|['as', 'was', 'better', 'well', 'time']| -by repeated,['blows'] -with which,|['he', 'she', 'I', 'it', 'the', 'such', 'to', 'crime']| -There have,['been'] -refers in,['this'] -alone. She,['was'] -thought in,['my'] -Simon's narrative,['When'] -and a,|['sneer', 'gasogene', 'half', 'bulge', 'large', 'pair', 'long', 'strongly', 'drunken-looking', 'gentleman', 'surpliced', 'glass', 'rough', 'moment', 'letter', 'drab', 'square', 'faded', 'girl', 'deal', 'short', 'few', 'brown', 'cup', 'magnifying', 'quarter', 'hand', 'shock', 'snigger', 'man', 'hesitating', 'look', 'fringe', 'general', 'tap', 'slight', 'glitter', 'verdict', 'grey', 'bundle', 'desperate', 'tapping', 'small', 'register', 'splash', 'nervous', 'lady', 'gin-shop', 'supply', 'low', 'chronicler', 'star', 'little', 'lucky', 'box', 'telephone', 'pile', 'forceps', 'most', 'guttering', 'black', 'broad', 'great', 'baboon', 'thumb', 'tooth-brush', 'gaping', 'dressing-table', 'horrid', 'bachelor', 'woman', 'baleful', 'weapon', 'bright', 'tide-waiter', 'cigar', "bride's", 'marriage', 'compressed', 'commanding', 'constable', 'shorter', 'young', 'note', 'second', 'test-tube', 'perpetual', 'sad', 'basketful', 'tall']| -also or,['at'] -preliminary sound,['in'] -the heavens,['The'] -it Are,['you'] -he won't,['mind'] -which rests,['upon'] -some secret,|['hoard', 'sorrow']| -not disturb,['him'] -His grandfather,['was'] -object The,['Church'] -maid is,['her'] -it goes,|['it', 'to']| -His footmarks,['had'] -suppose you,['know'] -and I,|['may', 'trust', 'could', 'was', 'mean', 'went', 'am', 'will', 'saw', 'have', 'caught', 'remain', 'would', 'know', 'understand', 'should', 'had', 'surveyed', 'asked', 'took', 'shall', 'hope', 'beg', 'want', 'agree', 'thought', 'heard', 'just', 'find', 'can', 'with', "can't", 'think', 'sent', 'wrote', 'when', 'see', 'found', 'did', 'walked', 'really', 'set', 'met', 'pondered', 'believe', 'wish', 'fear', 'volunteered', 'threw', 'observe', 'should ', 'made', 'knew', 'felt', 'carried', 'ran', 'on', 'were', 'you', 'only', 'must', 'gazed', 'stood', 'instantly', 'cannot', 'poured', 'came', 'reached', 'behind', 'kept', 'examined', 'pointed', 'shuddered', 'fell', 'sprang', 'confess', 'but', "won't", 'determined', 'after', 'stay', 'feel', 'repeat', 'clapped', 'answered', 'write', 'laughed', 'concealed', 'drew', 'assure', 'said', 'soon', 'once', 'turned', 'The', 'rushed']| -a monograph,['upon'] -late and,['I'] -and B,['cleared'] -anything like,['that'] -running as,['hard'] -ask you,|['not', 'how', 'to', 'one', 'you', 'whether', 'now', 'a', 'that']| -bear to,['see'] -could strike,['Then'] -growing under,['it'] -sign to,['me'] -facts were,['very'] -horse could,['go'] -ventilator at,['the'] -acquaintance of,['the'] -professional beggar,|['though', 'but']| -me with,|['my', 'your', 'some', 'interest', 'a', 'the', 'great', 'her', 'his']| -the text,['and'] -and muttering,['under'] -successive instance,['of'] -Watson has,['not'] -cheetah too,['perhaps'] -should bring,['an'] -shaving is,['less'] -fortunes seems,['to'] -who know,|['him', 'little']| -Left his,['lodgings'] -from Paddington,|['Station', 'and', 'which']| -spare advertised,['for'] -show that,['I'] -just in,['time'] -moving my,['chair'] -satisfied it,['is'] -sandwiched in,['between'] -Our visitor,|['bore', 'half']| -curiosity though,['I'] -places over,['the'] -describe who,['is'] -four-wheeler and,['out'] -staying there,['while'] -and determination,['Their'] -it You,|['do', 'see', 'may', 'are', 'have']| -of delicacy,['A'] -asked as,['I'] -have devised,['seven'] -very young,['She'] -asked at,|['last', 'all']| -have leaped,['back'] -sandwiched it,['between'] -advice upon,['the'] -really very,['good'] -little before,['seven'] -well To-morrow,['I'] -heed to,['the'] -Yard a,['plain-clothes'] -family fill,['me'] -practice In,['a'] -The singular,['incident'] -equinoctial gales,|['had', 'that']| -taketh the,['tiger'] -abrupt method,['of'] -ladder was,['not'] -us all,|['about', 'in']| -in its,|['details', 'results', 'crop', 'inception', 'least', 'legal', 'own', 'due', 'vehemence']| -separate us,['I'] -is popular,['with'] -however long,['he'] -carried me,['in'] -transaction which,['made'] -sense at,['all'] -jumped five,['little'] -of Balmoral.,['Hum'] -There's two,['of'] -force that,['we'] -speedily drawn,['as'] -woman bent,['over'] -easier to,['attain'] -upraised I,['could'] -with what,|['you', 'I']| -they suggested,['that'] -You owe,['a'] -was shocked,['by'] -both girls,['had'] -leads into,['the'] -hoped suggested,['Holmes'] -travel a,['little'] -fashion and,|['then', 'on']| -guardsmen who,|['were', 'took']| -were found,|['in', 'floating']| -punish the,['guilty'] -whistle By,['Jove'] -earn into,['the'] -him then,|['sir;', 'still', 'but', 'her']| -narrative Then,['Sherlock'] -assistance of,['his'] -notice but,['there'] -you made,|['me', 'an']| -from left,['to'] -stood within,['its'] -him they,|['found', 'had']| -half her,['fortune'] -lady can,['get'] -cannot persuade,['you'] -was pulled,['back'] -highest point,['From'] -bar Then,|['with', 'he']| -small table,['and'] -passed over,|['this', 'her']| -more mysterious,['and'] -invention of,['bicycling'] -row broke,['out'] -to read,|['the', 'a', 'aloud']| -his keeping,['If'] -world for,['we'] -professional round,['But'] -pounds 10s.,['while'] -ate is,['country'] -be spent,['in'] -Balmoral Lord,['Backwater'] -of metallic,['deposit'] -too tender-hearted,['to'] -Holmes a,['bit'] -some attention,['to'] -selections is,['the'] -and complex,['story'] -have tomfoolery,['of'] -she alone,['had'] -in pencil,|['upon', 'over']| -lawn crossed,['it'] -by silver,['poured'] -convulse the,['nation'] -Holmes I,|['believe', 'am', 'did', 'do', 'only', 'have', 'wish', 'met', "don't", 'think', 'would', 'heard', 'know', 'had', 'will', 'find', 'at', 'observed', 'could']| -the Rockies,['where'] -be safer,['and'] -confine my,['attentions'] -until after,|['the', 'she']| -from his,|['shelves', 'cigarette', 'chair', 'face', 'pocket', 'finger', 'small', 'words', 'bundle', 'own', 'father', 'waistcoat', 'fingers', 'Lascar', 'bed', 'assailants', 'hat', 'armchair', 'sleeves', 'soothing', 'room', 'excursion', 'reverie', 'point', 'smokes', 'seat', 'cynical', 'grasp', 'shoes', 'smiling', 'mother']| -stepfather hastily,['closing'] -the pile,['There'] -grew less,['keen'] -pluck her,['husband'] -the cloak,|['Now', 'which']| -from him,|['and', 'you.', 'he', 'to-day', 'no', 'silent', 'by', 'What', 'to-night']| -getting out,['of'] -a crippled,['wretch'] -cabman as,['a'] -shirt protruding,['through'] -came through,['the'] -child Now,['I'] -the coming,['of'] -Yard at,['once'] -which struck,|['us', 'her', 'me']| -action We,['lunch'] -hand appeared,['a'] -Bengal Artillery,['My'] -Lestrade with,|['dignity', 'some']| -and I'd,['have'] -rather upon,['conjecture'] -he With,['a'] -his rigid,['attitude'] -her entreaties,['when'] -Bohemia I,['said'] -No 4.,['the'] -other cab,['in'] -extremely obliged.,['dress'] -entertaining one,['remarked'] -Next day,['I'] -Holmes taking,['the'] -are steps,['on'] -friend too,['was'] -still lying,['in'] -meet her,|['what', 'Watson']| -see his,['cousin'] -four lines,['of'] -asking a,['question'] -is its,['own'] -holding the,['coronet'] -asked does,['it'] -few feet,['of'] -could suggest,['the'] -hope of,|['earning', 'seeing', 'safety', 'finding']| -a decidedly,['nautical'] -shown out,['by'] -afterwards they,['remembered'] -and fastened,|['as', 'at']| -not account,['in'] -snap the,['bond'] -door Large,['sitting-room'] -had carried,['off'] -imagine saw,['the'] -slit through,['which'] -come with,|['us', 'me', 'you']| -forever These,['pretended'] -all done,['in'] -What did,|['you', 'she', 'the', 'they']| -visible to,|['you', 'me']| -common loafer,['With'] -a Hebrew,['rabbi'] -aid of,|['their', 'the', 'a']| -conduct the,['inquiry'] -the grasp,['of'] -the grass,|['beside', 'within', 'with']| -obvious As,['to'] -was most,|['suggestive', 'instructive', 'probable']| -absolutely unique,['and'] -attention instantly,['became'] -come they,['go'] -Bankers safes,['had'] -be produced,['There'] -a sovereign,|['if', 'and', 'on', 'from']| -square miles,['Amid'] -this note,|['of', 'DEAREST']| -the Red-headed,|['Men', 'Men?', 'League']| -families of,['Europe'] -who was,|['thoroughly', 'equally', 'very', 'nearly', 'also', 'by', 'at', 'this', 'certainly', 'charged', 'a', 'suffering', 'introduced', 'absolutely', 'far', 'the', 'it', 'her', 'as', 'waiting', 'said']| -are willing,['to'] -notice that of,['Mr'] -wanting in,|['the', 'our', 'this']| -feeling no,['doubt'] -evil reputation,['among'] -ink upon,['the'] -and exchange,['willingly'] -an important,|['factor', 'highway']| -unreasoning aversion,['to'] -son appeared,['to'] -short drive,['starting'] -black gap,['like'] -Doctor that,['we'] -it you,|['wish', 'think', 'want']| -motion to,|['me', 'him']| -them down,|['placed', 'and']| -he carefully,['examined'] -record where,['any'] -stair unlocked,['the'] -town as,['a'] -German I,['could'] -the authorities,['to'] -whoa had,['pulled'] -dimly catch,['a'] -a sunbeam,['in'] -stately business,['premises'] -who appeals,['to'] -still refuse,['Coroner:'] -first had,['walked'] -lot with,['me'] -try other,['means.'] -amiable disposition,['but'] -absolutely certain,['that'] -and I'll,|['swing', 'answer', 'take']| -Yes there,['are'] -goodness the,['house'] -telegram It,['was'] -eight weeks,['with'] -had left,|['the', 'his', 'us', 'him', 'my', 'you', 'was', 'only', 'an', 'it', 'a', 'them']| -whose grief,['has'] -feet as,['he'] -is never,['very'] -surgeon at,['the'] -a cheery,['fire'] -room slipped,['down'] -really to,['the'] -Colonel Warburton's,['madness'] -pockets he,['stretched'] -loose-lipped senility,['I'] -any way,|['He', 'for']| -was only,|['Crown', 'a', 'to-day', 'some', 'by', 'put', 'seven', 'after', 'one', 'yesterday']| -Some little,['distance'] -a clatter,['upon'] -tie between,['them'] -got help.",['is'] -rage I,['shall'] -division Within,['are'] -take this,|['precaution', 'chair']| -all through,['this'] -and handed,['it'] -authorities to,['the'] -derived It,['is'] -his marriage,['might'] -|so," he|,['answered'] -singular dying,['reference'] -here was,['indeed'] -assistant's fondness,['for'] -the lodge-keeper,|['of', 'He', 'came', 'brought']| -something akin,['to'] -wrong in,['his'] -broad white,['stones'] -thief smasher,['and'] -Gazetteer He,['took'] -contributed to,['the'] -character the,['dual'] -when McCarthy,['laid'] -little newspaper,['shop'] -were tied,['in'] -was wide,['awake'] -sweating! he,['cried'] -Jersey in,['the'] -times; but,['what'] -were carefully,|['examined', 'sounded']| -they chased,['each'] -to begin,|['a', 'with']| -desire to,|['see', 'know']| -beget sympathy,['and'] -him eight-and-forty,['hours'] -the colonel's,['plate'] -went down,|['there', 'to']| -frequent contact,['with'] -the hat,|['had', 'of', 'upon']| -not absolutely,['certain'] -any tax,['upon'] -dress presumably,['his'] -object might,['be'] -his repeated,['visits'] -jest Mr.,['Holmes'] -wind blowing,['in'] -with violet,['ink'] -kind Mr,['Holmes'] -bringing me,['to'] -the trespasser,['whom'] -not live,['there'] -advice to,|['poor', 'young']| -kind My,['stepdaughter'] -footmarks had,['pressed'] -but generally,['recognised'] -the easy-chair,['and'] -Wilson mopping,['his'] -been standing,['smiling'] -yet Mr,['Rucastle'] -gulp and,['I'] -terror when,['last'] -good fat,['goose'] -erroneous conclusion,['which'] -projecting from,['the'] -the sailing-ship,['I'] -about town,['This'] -massive mould,['was'] -thing always,['appears'] -rare good-fortune,['met'] -much attention,['at'] -to identify,['But'] -truth that,|['my', 'in']| -chest with,['an'] -|him up,|,['then'] -arranged our,['little'] -Monica John,['she'] -lady's your wife's,['character'] -wedding Mr,['Lestrade'] -say there,['was'] -door which,|['must', 'he', 'led', 'told', 'faced']| -mere vagueness,['to'] -followed Holmes,['up'] -jewel-case The,['evidence'] -with Holmes,|['when', 'in']| -some bitterness,['I'] -accustomed was,['I'] -he scratching,['his'] -your fiver,['for'] -still observed,['the'] -faintly the,['rattle'] -too that,['whatever'] -the opinion,['that'] -high a,['degree'] -you'll find,|['that', 'it']| -most energetic,['agent'] -previous conviction,['for'] -mantelpiece Here,['he'] -case of,|['the', 'cigars', 'another', 'great', 'a', 'considerable', 'Pondicherry', 'young', 'attempted', 'Miss', 'marriage']| -up year,['87'] -simple faith,['of'] -be possible,['for'] -pass through,|['you', 'knew', 'the']| -sat by,['the'] -stairs She,['listened'] -you convince,['the'] -excited without,['either'] -hour matters,['will'] -rooms It,|['was', 'could']| -both sprang,['in'] -weary heavy-lidded,['expression'] -the late,|['Irene', 'Ezekiah', 'Elias']| -colour into,['his'] -aid from,['the'] -few grateful,['words'] -quite correct,['I'] -neighbourhood Holmes,['traced'] -my stick,['I'] -delicacy and,|['every', 'harmony']| -was also,|['aware', 'an', 'not', 'thoroughly']| -is picking,['up'] -little difficulties,['if'] -seal photograph.",['were'] -What has,['she'] -public were,['present'] -the disagreeable,['persistence'] -expenditure as,['they'] -subject to,['which'] -by examining,['the'] -key gently,['in'] -however for,|['the', 'there', 'he']| -never any,['mystery'] -Ah me,["it's"] -may let,['some'] -way and,|['then', 'she', 'if', 'we']| -was becoming,['ungovernable'] -years and,|['an', 'have', 'two', 'he', 'eight', 'as', 'there', 'whose']| -strong in,['the'] -ready to,|['flash', 'turn', 'back', 'engage', 'give', 'pay']| -two streets,['he'] -side to,['side'] -They were,|['admirable', 'all', 'a', 'on', 'found', 'waiting', 'always', 'evidently']| -I imagine,|['in', 'that']| -got mine,['yet'] -the passage,|['paused', 'window', 'I', 'and', 'my', 'but', 'One', 'until', 'gazing', 'through']| -friends at,['all'] -need Waterloo,['we'] -waiting this,['two'] -of amusement,['and'] -wheel two,['guardsmen'] -indeed where,['there'] -add that,['his'] -its throat,['as'] -with such,|['a', 'success', 'force', 'skill', 'attractions']| -On receiving,['this'] -press and,['it'] -More than,['once'] -escaping continually,['from'] -entreaties when,['a'] -hawk-like nose,['and'] -into silence,['each'] -I plied,['my'] -interests Young,['McCarthy'] -and forehead,['a'] -rogue has,['the'] -official-looking person,['in'] -the Daily,['Telegraph'] -me now,|['and', 'with']| -as near,['each'] -by direct,['descent'] -veil over,['her'] -yellow-backed novel,|['The', 'and']| -door open,['a'] -wide but,['is'] -danseuse at,['the'] -first men,['in'] -questioning glances,|['Beyond', 'at']| -strength Together,['we'] -wait until,|['I', 'you']| -door likely,['story'] -listened for,['an'] -Pray give,|['us', 'me']| -here it,['is'] -what began,['it'] -here is,|['a', 'my', 'her', 'Lestrade', 'the', 'what', 'it']| -here in,|['the', 'my', 'a', 'an']| -been erected,['against'] -a weak,['throat'] -soothing his,['manner'] -will remember,['that'] -by all,|['the', 'accounts']| -the natural,['effect'] -request made,['a'] -|hat no,|,['he'] -a woman,|['They', 'thinks', 'cried', 'has', 'for', 'should', 'wants', 'very', 'what', 'whose', 'may', 'of', 'appeared', 'bent', 'who', 'could', 'had']| -in ten,['minutes'] -for three,|['days', 'or']| -cherry-wood pipe,['which'] -quite beside,['the'] -it difficult,|['to', 'you,']| -shoulders By,['Jove'] -farther who,['it'] -Alas I,['already'] -detective that,['ever'] -which Mr,|['Windibank that', 'St', 'Henry']| -some three,['or'] -arrived I,|['paid', 'was', 'inquired']| -be busier,['still'] -deep in,['one'] -extreme importance,['If'] -wild scream,['of'] -were few,['and'] -giving me,['time'] -St. Oh,['come'] -been settled,['he'] -seek a,['theory'] -we can,|['have', 'get', 'do', 'only', 'deduce', 'establish', 'then', 'talk', 'hardly', 'set', 'our']| -otherwise neatly,['dressed'] -for that,|['purpose', 'But', 'reason', 'last', 'is']| -hardly see,|['what', 'how']| -stepfather about,['this'] -aid us,['in'] -an abstracted,['air'] -then suddenly,|['the', 'losing', 'tailing', 'just', 'in']| -a schoolmaster,['in'] -with astonishment,|['goose', 'the']| -wondering whether,['I'] -soon devised,['a'] -earrings and,['a'] -denied everything,['But'] -to Clay's,['ingenious'] -finger and,['held'] -wing however,['which'] -escape from,['the'] -weight of,|['the', 'this', 'crystallised']| -minutes while,['I'] -church Suddenly,['to'] -cried to,['the'] -some business,['to'] -self could,['see'] -dense than,['my'] -possible it,['is'] -discuss it,|['while', 'in']| -no hair,['on'] -without putting,|['myself', 'my']| -save a,|['great', 'crippled', 'dog-cart', 'few', 'single', 'little']| -silvered over,['and'] -this lucky,['chance'] -and earn,['twice'] -am arrested,['may'] -in no,|['less', 'way', 'very']| -so so.,['I'] -he carelessly,['we'] -me Now,|['if', 'let']| -it became,|['a', 'clear']| -me Not,['at'] -there had,|['been', 'ever']| -They might,['be'] -the Gravesend,['postmark'] -cart containing,['several'] -for you,|['And', 'are', 'Jones', 'said', 'You', 'and', 'have', 'Mr', 'as', 'she', 'but', 'to', 'will', 'provided', 'Good-day']| -lets him,['loose'] -the dawn,['be'] -his forefinger,['upon'] -paced about,['the'] -immense ostrich,['feather'] -tracks of,|['the', 'a']| -Her dress,['was'] -and come,['I'] -crime His,['defence'] -poor man,['the'] -bed Then,['they'] -a grin,|['Well', 'of']| -fate play,['such'] -trees we,['reached'] -to miss,|['it', 'anything']| -ourselves What,['do'] -agitation Then,|['with', 'he']| -into knots,['That'] -or her,|['lawyer', 'but']| -camp-bed a,['small'] -pray send,['him'] -scream fell,['down'] -with burning,['tallow walks'] -present I,['think'] -what has,|['become', 'happened', 'passed', 'frightened']| -were fixed,['in'] -man dying,['from'] -its terrible,['occupant'] -be avoided,['to'] -trap rattled,['back'] -had indeed,['been'] -then most,['certainly'] -Holmes she,|['cried', 'bade']| -carbolised bandages,['He'] -what had,|['become', 'happened', 'occurred']| -matter fairly,['clear'] -to-morrow am,['afraid'] -Your red-headed,['idea'] -knife and,['opened'] -weeks It,['is'] -out crisply,['and'] -wave him,['away'] -definite result,['Let'] -His wicked,['lust'] -masterly grasp,['of'] -far for,['me'] -what he,|['will', 'could', 'had', 'foresaw', 'would', 'knows', 'called', 'says', 'said']| -speech His,['face'] -this man,|['worked', 'from', 'Boone', 'was', 'could', 'ordered', 'Horner', 'Breckinridge', 'when']| -clouded over,['trust'] -birds and,['insects'] -heartily Your,['conversation'] -and shape,['seeing'] -news you,['never'] -right on,|['to', 'to?"']| -those poor,['rabbits'] -|reasoning noted,|,['in'] -otherwise though,['her'] -this may,['save'] -to hope,['that'] -remarks was,['rather'] -the grounds,|['very', 'for', 'of', 'at', 'with']| -would spare,['your'] -four pound,['a'] -think to,['see'] -days for,|['their', 'you']| -paternal advice,['and'] -doubt its,['value?'] -geese? One,['would'] -frightened you,['my'] -was seated,['in'] -and bowed,|['her', 'shoulders']| -the Lord,|['Mr', 'that']| -deal with,|['one', 'a']| -startled me,|['Kate', 'beyond']| -people on,['the'] -P and,['a'] -Francis Hay,['Moulton'] -a sum,|['for', 'as', 'ten', 'to']| -moment but,['she'] -him away,|['to', 'like']| -people of,['her'] -here when,['the'] -question The,|["man's", 'point']| -You have,|['not', 'shown', 'heard', 'worked', 'lost', 'already', 'no', 'made', 'really', 'been', 'formed', 'come', 'given', 'him', 'evidently', 'doubtless', 'destroyed', 'dishonoured', 'degraded']| -sleep more,['heavily'] -Swandam Lane,|['But', 'is', 'where', 'on', 'she', 'much', 'he']| -late riser,['as'] -no place,['about'] -I seemed,['to'] -wind had,['screamed'] -under strange,['conditions'] -earned it,['I'] -and hand,['me'] -strong Indian,['cigars'] -those drunken,['sallies'] -both to,|['absolute', 'the', 'her']| -some respects,['been'] -he dropped,|['it', 'heavily']| -She used,['to'] -scissors-grinder who,['was'] -found myself,|['mumbling', 'in', 'free', 'inside', 'lying', 'that', 'without']| -bright little,['eyes'] -are brought,['in'] -I waited,|['I', 'in']| -better now,['and'] -better not,|['to', 'speak']| -each time,|['the', 'she']| -Eyford and,['I'] -does it,['come'] -troubles have,['been'] -a distinct,|['proof', 'odour', 'element', 'sound']| -was still,|['as', 'raised', 'balancing', 'confused', 'there', 'between', 'bleeding', 'sharing', 'with', 'dangerously', 'open', 'smiling']| -|money yes,|,['of'] -beam of,['light'] -Once we,['diverted'] -myself useful.,['so.'] -two coming,['together'] -does in,['truth'] -intimate personal,['affairs'] -dark in,['the'] -eye You,['look'] -hung on,['one'] -you giving,['your'] -so through,|['Oxford', 'Wigmore', 'a']| -rack the,['old'] -done of,['an'] -there would,['be'] -rest the,['more'] -about money,['and'] -whole he's,['a'] -calamity could,['have'] -lad but,['his'] -southern China,['and'] -a room,|['had', 'day--it']| -loss was,['a'] -light heel,['marks'] -all minor,['matters'] -abode of,['my'] -Patersons in,['the'] -negroes and,['his'] -together Mary?,['Impossible'] -all attention,['madam'] -a desperate,['man'] -led retired,['lives'] -self-restraint Disregarding,['my'] -I exclaimed,|['in', 'is']| -touch of,|['fluffy', 'red', 'colour']| -the thin,['sighing'] -but rather,['to'] -would suddenly,['come'] -head against,['the'] -door with,['the'] -Street every,['night'] -now she,['repeated'] -shirt and,['trousers'] -which wander,['freely'] -certain from,['the'] -all curiosity,['until'] -rather complicates,['matters'] -his rival,['vanished'] -frock-coat unbuttoned,['in'] -sister had,|['told', 'met']| -I changed,['my'] -expected in,['such'] -acquiesce in,['these'] -matter so,['in'] -him They,['were'] -quite distinctive,['have'] -gift of,['silence'] -get to,|['the', 'Lee', 'him']| -own master,['you'] -light sleeper,['and'] -the military,['neatness'] -tone but,['there'] -these fields,['and'] -chemistry eccentric,['anatomy'] -have left,['my'] -divined in the,['cellar'] -The cellar,['There'] -his consequential,['way'] -slate-roofed with,['great'] -been gummed,['if'] -slowly glancing,['about'] -having dispatched,['the'] -without hindrance,['from'] -took a,|['heavy', 'note', 'good', 'step', 'folded', 'small', 'fancy', 'large', 'house', 'few']| -pleased but,['I'] -step backward,|['cocked', 'slammed']| -station What,['a'] -for whatever,['might'] -having taken,['opium'] -wrist could,['only'] -ostensibly as,['a'] -of Victoria,['he'] -were worn,['through'] -he gripping,['hard'] -won't you,['I'] -before whom,['you'] -of drunken,|['frenzy', 'feet']| -know its,['size'] -holes than,['I'] -Assizes Horner,['who'] -your little,['problem'] -crowd to,['protect'] -say then,['of'] -|disappearance, however|,['was'] -the heavy,|['hall', 'regular', 'iron', 'yellow']| -the reasoner,['should'] -whiter He,['entered'] -eyes tell,['me'] -hard before,['his'] -you ,[''] -We are,|['but', 'spies', 'at', 'in', 'only', 'faddy', 'willing']| -authenticity is,['the'] -odour of,['lime-cream'] -Alpha were,['town'] -correct was,['a'] -and addressed,['it'] -second daughter,['of'] -indicated that of,['the'] -to build,['an'] -through woods,['or'] -be embarrassed,['by'] -little disturbed,['did'] -a sweeping,['bow'] -Globe Star,['Pall'] -stepfather Then,['the'] -us must,['know'] -have be,['the'] -the side-lights,|['of', 'when']| -cold-blooded scoundrel,['said'] -bell-rope in,['his'] -adjusted that,['very'] -have recovered,['yourself'] -glanced sharply,['across'] -having the,|['insolence', 'use']| -in justice,['to'] -in our,|['lodgings', 'cellar', 'police', 'search', 'short', 'arrangements', 'hands', 'way', 'lives', 'faces', 'operations', 'direction', 'future', 'bow-window', 'room', 'rooms']| -see but,|['you', 'no']| -father took,['over'] -uncle however,['He'] -now The,['chances'] -were each,['to'] -think neither,['Women'] -one be,['at'] -carriage on,['our'] -may chance,['to'] -expedition had,['just'] -keep yourself,['out'] -one by,['one'] -for assault,['and'] -I wasn't,['best'] -sit and,['then'] -by affecting,['to'] -ask myself,['whether'] -Turner said,['Sherlock'] -I've been,['on'] -know very,['well'] -story-teller Take,['a'] -up reporting,['and'] -lent the,['ostlers'] -calf tawny,['tinted'] -the punishment,['of'] -already When,['I'] -are faddy,['people'] -easy way,['in'] -that severe,['reasoning'] -mice little,['birds'] -well. It,['may'] -told of,['the'] -little help,['said'] -arrested It,['appears'] -been driven,|['from', 'to']| -investigation We,['had'] -was engaging,['my'] -against tut!",['cried'] -wife hear,['all'] -Have you,|['a', 'ever', 'the', 'an', 'followed', 'good', 'your']| -rival vanished,['I'] -beauty isn't,['he'] -police fellows,['there'] -think It,|['appeared', 'is']| -country was,['unknown'] -little chamber,['with'] -it seemed,|['safer', 'to', 'From', 'than', 'a', 'unnecessary']| -o'clock after,['what'] -Mr. Holmes,|['you', 'when', 'from']| -quiet when,['she'] -St John's,['Wood'] -follows THE,['RED-HEADED'] -year and this,['she'] -inside pocket,['of'] -said it,['should'] -can find,|['It', 'them']| -said is,|['a', 'the']| -or heard,['anything'] -his peculiar,['action'] -professional qualifications,['I'] -office at,['the'] -The man,|['seemed', 'in']| -water for,['there'] -off how,['the'] -visitor The,['august'] -darkness In,['a'] -along which,['it'] -come back?,['Well'] -correct this article,['for'] -the smallest,|['sample', 'problems']| -wicked little,['eyes'] -You work,['your'] -it upon,|['the', 'our']| -dressing in,['my'] -victim off,['how'] -a successful,['banking'] -advantages of,['a'] -sinister history,['There'] -she Well,['I'] -actions I,['went'] -too and,|['though', 'at', 'never']| -his assailants,['but'] -her back,|['and', 'into']| -turn He,['was'] -any longer,|['and', 'I']| -Hunter down,['from'] -mine here,['Mr'] -already imperilled,['the'] -ones On,['the'] -been alive,['had'] -snow away,['while'] -glimmered little,['red'] -more If,['the'] -most important,|['Can', 'young', 'business', 'all']| -feather of,['a'] -absolutely unforeseen,['and'] -and Letters,['memoranda'] -gossiping here,['but'] -land ever,['since'] -more It,['is'] -Simon was,['decoyed'] -hands rushed,['back'] -other clerks,['about'] -we knew,['that'] -this fleshless,['man'] -same secrecy,['which'] -hardened my,['heart'] -has befallen,['you'] -seen those,['symptoms'] -was blocked,['with'] -though how,['he'] -socks his,['hat'] -gravel-drive and,|['the', 'there']| -birds a fine,['big'] -name as,['it'] -others besides,['ourselves'] -which rolled,['down'] -however that,|['I', 'the', 'a', 'when', 'that', 'night', 'before']| -simply wish,['to'] -surface where,['the'] -tradesmen's path,|['and', 'but']| -of bottles,['and'] -do brought,['round'] -shimmering brightly,['in'] -Good-bye and,|['God', 'be']| -silk black,['waistcoat'] -your lamp,['there'] -American and,['came'] -not face,['fell'] -retired lives,['though'] -a gold,|['watch', 'convoy']| -your Majesty,|['would', 'If', 'and', 'all', 'there', 'said', 'say', 'Then']| -events so,['closely'] -enough that,['the'] -right He,['rushed'] -her clothes,['and'] -she to,|['prove', 'her', 'do', 'be']| -The incident,['however'] -no survivor,['from'] -dusk we,['saw'] -quite certain,|['that', 'from']| -his story,|['He', 'feel']| -unhappy boy,['dressed'] -lustrous black,['hair'] -every moment,['now'] -elbow It,['grew'] -gaiters He,['advanced'] -absolutely uncontrollable,['in'] -is James,['Ryder'] -until there,['was'] -Aldersgate and,['a'] -drawn blinds,['and'] -openings for,['those'] -inquiry may,['but'] -he put,['us'] -insects But,['I'] -seen too,['much'] -McCarthy and,['his'] -get this,['not'] -your inferences,|['pray', 'You']| -who could,|['hardly', 'distinguish', 'this', 'it']| -of having,|['her', 'taken', 'abstracted', 'upon', 'been']| -cleared Visited,['Paramore'] -corridor-lamp I,['saw'] -share your,['opinion'] -something clever,['but'] -noble lord,['has'] -these recent,['developments'] -yet Sherlock,['Holmes'] -there when,|['I', 'the']| -extremity to,['save'] -his guilt,['but'] -ever put,['your'] -soon rouse,['inquiry'] -all fiction,['with'] -Merryweather is,|['a', 'the']| -my shop,['You'] -hardly expect,['us'] -us try,['to'] -neither us,['nor'] -me Who,['were'] -errand was,['little'] -details as,['to'] -beckoning to,['her'] -to either,['of'] -I chose?,['Jem;'] -all at,['the'] -Victoria Street,|['3rd', 'suppose']| -ear From,['under'] -just cause,['of'] -further end,['of'] -uncle burned,['the'] -Tudor on,['the'] -For example,|['you', 'how', 'what']| -astonishment that,['my'] -man says,['is'] -talking rather,['to'] -cocked upward,['and'] -of variety,['he'] -but two,|['feet', 'months']| -deference Still,['I'] -humiliation you,['look'] -February in,['83'] -you was,|['all-important', 'arrested']| -wardrobe. seemed,['to'] -then her,|['sister', 'father']| -the beautiful,|['creature', 'Stroud', 'woman']| -George's Hanover,['Square'] -devil who,['has'] -was almost,['as'] -directed towards,['a'] -drink the,['push'] -of yesterday,|['which', 'occurred']| -the lights,['of'] -note-paper own,['seal'] -is likely,|['to', 'that']| -repeated standing,['upon'] -gentleman called,['Mr'] -fathom Once,['only'] -with sleepy,['bewilderment'] -have quite,['a'] -Hebrew rabbi,['and'] -didn't observe,['She'] -profession Still,['of'] -scribbled a,['receipt'] -house however,['I'] -|history promise,"|,['said'] -other woman,|['the', 'and']| -serious The,['rooms'] -below was,['shaken'] -prevent her,['from'] -my correspondence,['has'] -telling her,['that'] -his family,|['have', 'and']| -still much,['to'] -rooms so,['that'] -matters you,['mean'] -night The,|['wind', 'walls']| -canvas bag,['in'] -opium smoke,['and'] -German who,|['is', 'writes']| -must confine,['yourself'] -chairs made,['up'] -bundle a,['copy'] -small factory,['at'] -this awful,['business'] -window there,['is'] -staff-commander who,['had'] -Holmes dashed,['into'] -and personally,['interested'] -promised to,|['bring', 'be', 'wait']| -very painful,['event'] -sleuth-hound Holmes,['the'] -compunction about,['shooting'] -snarl A,['shock'] -light between,['two'] -pa wouldn't,['hear'] -sweating rank sweating!,['he'] -sum as,['a'] -are where,['their'] -Lone Star,|['Savannah', 'instantly', 'was', 'of', 'VI.']| -so secluded,['after'] -can't sleep,['a'] -this advertisement,['had'] -toe caps,['is'] -Why does,['fate'] -torn at,['the'] -K K,|['K.!', 'K', 'repeated', 'K.', 'ceases']| -and held,|['it', 'him', 'up', 'out']| -heard must,['sit'] -fuller's-earth was,|['sufficient', 'the']| -at Bristol,['and'] -and touched,['him'] -rocket rushed,['from'] -fire You,|['quite', 'see']| -They have,|['been', 'laid', 'now']| -this epistle,['Did'] -other that,['she'] -ear Now,['from'] -for cruelty's,['sake'] -strange but,['none'] -shabby fare,['but'] -old trick,|['also', 'of']| -street Filled,['with'] -Mary but,['which'] -case within,['my'] -gentleman of,['whom'] -horse and,['trap'] -|blaze name,"|,['said'] -drawback is,['that'] -strange arrangements,['which'] -lethargy which,['was'] -a drawer,['which'] -my watch-chain,['in'] -just wondering,['whether'] -conjecture however,['for'] -only other,['cab'] -lane So,['long'] -hate to,['meet'] -this intention,['I'] -to your,|['practice', 'door', 'Majesty', 'case', 'deadliest', 'wife', 'house', "aunt's", "sister's", 'room', 'nerves', 'wishes', 'machine', 'co-operation', 'papers', 'ears', 'advantage', "son's", 'dressing-room', 'uncle', 'consideration', 'help']| -articles upon,['begging'] -gallows The,['case'] -Lodge As,['it'] -at once,|['that', 'furnish', 'to', 'but', 'for', 'My', 'did', 'You', 'put', 'and', 'upon', 'by', 'as', 'F.H.M.', 'Now', 'into', 'I', 'When', 'It', 'not', 'went', 'convinced', 'see', 'sacrifice', 'was', 'said', 'before']| -lanterns You'll,['come'] -bring your,["Majesty's"] -and am,|['loved', 'not']| -and an,|['elderly', 'extra', 'engagement', 'exclamation', 'uncertain', 'appropriate', 'occasional', 'ill-service', 'abstracted', 'expression']| -now Mr,|['Wilson', 'Hatherley']| -am lost,['without'] -and at,|['the', 'such', 'least']| -stoutly swore,['that'] -thin a,['man'] -am glad,|['to', 'of']| -what took,['place'] -leave my,['estate'] -to you?,['no.'] -yet his,|['hard', 'general']| -screamed and,|['the', 'shrunk']| -disappeared into,|['his', 'the', 'your']| -object in,|['deserting', 'my']| -no society,['and'] -rearranging my,['own'] -leave me,|['so', 'but']| -as they,|['were', 'came', 'chased', 'once', 'are']| -had inflicted,['upon'] -enough in,['the'] -See what,['my'] -on whom,['I'] -scored by,['six'] -never denied,['him'] -do cannot,['imagine'] -sitting down,|['once', 'in', 'and']| -wish I,['knew'] -can inform,['me'] -and leaning,['back'] -time seem,['to'] -have often,['thought'] -way among,['the'] -Not even,['your'] -book the,['list'] -as narrated,['by'] -prove to,['be'] -the Duchess,['of'] -example as,['to'] -confusion which,['the'] -listened I,['confess'] -very smiling,['face'] -doors in,['a'] -company which,['he'] -wiser heads,['than'] -property he,['at'] -saw his,|['tall', 'father', 'wicked', 'face', 'bare']| -London should,['take'] -|sir Bradstreet,|,['how'] -for granted,['until'] -all However,['when'] -very foolish,['thing'] -herself Father,['was'] -saw him,|['motion', 'raise', 'that', 'as', 'get', 'last', 'sitting', 'you', 'scribble', 'with', 'had', 'At', 'carrying']| -passing over,['an'] -of Paul's,['Wharf'] -Upon the,['second'] -to play,|['disappeared', 'heavily', 'then']| -to call,|['to-morrow', 'She', 'upon', 'for', 'Holmes', 'the', 'about']| -run back,|['again', 'swiftly']| -my pigments,['and'] -late! I,['am'] -who seemed,['to'] -shall not,|['use', 'long', 'need', 'find', 'feel', 'keep', 'have', 'say']| -my pockets,['with'] -shall now,|['have', 'carry', 'continue', 'see']| -it Our,['visitor'] -it Out,['there'] -alterations as,['I'] -fly-leaf of,['a'] -arrest or,['feigned'] -bowed his,['lips'] -to smoke,['She'] -using it,['We'] -will suffer,['shipwreck'] -|you, indeed|,['now'] -come right,['away'] -be good,['enough'] -else does,['but'] -boots They,['come'] -letters upon,['a'] -do not,|['pronounce', 'observe', 'take', 'know', 'wish', 'see', 'let', 'allow', 'quite', 'think', 'encourage', 'change', 'mean', 'be', 'ventilate', 'waste', 'yourself', 'make', 'succeed', 'search', 'treat', 'inconvenience', 'hear', 'present', 'know.']| -Also by,['the'] -face of,|['the', 'Miss', 'disappointment', 'it', 'a']| -of managing,['it'] -too theoretical,['and'] -much fear,['that'] -Lestrade said,['Holmes'] -written with,['a'] -our trap,|['should', 'at']| -an engagement,['which'] -call to,['mind'] -only of,['his'] -strange fantastic,['poses'] -and indulge,['yourself'] -His cheeks,['were'] -premises that,['they'] -could she,|['do', 'a', 'mean']| -in monosyllables,['and'] -the comical,['side'] -recovered have,['tried'] -I sprang,|['from', 'up', 'to']| -me forever,['Where'] -for months,|['on', 'after']| -number Next,['day'] -shoulders Then,['I'] -Lascar was,|['known', 'at', 'well']| -before midnight,['I'] -co-operation and,['that'] -locked am,['naturally'] -any missing,['said'] -house. you,['dig'] -his accomplice's,['hair'] -shook out,['upon'] -with another,['effort'] -will put,['the'] -Holder We,['must'] -farm or,['by'] -behind and,|['yet', 'we']| -hand of,|['his', 'course']| -a sliding,['panel'] -quick for,['I'] -sill gave,['little'] -not necessary,['that'] -a satisfaction,['to'] -the attempts,['of'] -then as,|['I', 'he', 'a']| -more He,['hurried'] -enough consideration,['at'] -the glasses,['the'] -then at,|['that', 'least', 'Eyford', 'any']| -red-covered volume,['from'] -said Sherlock,['Holmes'] -deadly and,['chronic'] -towards it.,['concluded'] -sex It,['was'] -there sitting,|['by', 'up']| -affection for,['Arthur'] -have ordered,['a'] -of any,|['such', 'of', 'other', 'sort', 'violence', 'assistance', 'legal', 'workmen', 'furniture']| -other had,['run'] -indeed was,['nodding'] -loss Your,['duties'] -of Fenchurch,['Street'] -exception of,['his'] -say when,['he'] -trade and,['when'] -No wind,['and'] -a circle,['with'] -commonplace a,['crime'] -of and,['for'] -daughter had,['disappeared'] -distinctive have,['come'] -Openshaw He,['rummaged'] -sound in,|['body', 'the']| -very deep,|['sleep', 'waters', 'business']| -takes the,|['obvious', 'cake']| -fashion am,['afraid'] -She rose,|['briskly', 'at']| -this room,|['often?"', 'For', 'for']| -greet her,['but'] -peculiar shade,['of'] -pushed backward,['For'] -spot where,['he'] -or left,['the'] -bad for,['her'] -wedged in,['as'] -called me,['names'] -anxious that,|['there', 'you']| -be lonely,['for'] -could smell,['Dr'] -in two,['days'] -on account,['of'] -and conveyed,['somewhere'] -a tree,|['until', 'Gone']| -here There,['is'] -situated but,['it'] -large one,['which'] -But look,['at'] -doubtless heard,['of'] -Some five,['years'] -looks very,['seasonable'] -I'd rather,['have'] -the cripple,['showed'] -are deeply,['marked'] -whistle which,['had'] -found your,['father'] -manifestations that,['the'] -the trap,|['out', 'his', 'rattled']| -fell from,['her'] -the dying,|['woman', 'allusion']| -pursued me,['If'] -San Francisco,|['Cal.', 'a']| -seen enough,['now'] -I know,|['that', 'my', 'very', 'without', 'where', 'you', 'the', 'no', 'nothing', 'it', 'his', 'him', 'all', 'also', 'some', 'everything', 'I', 'pray,']| -of wooing,['and'] -head The,['name'] -an unreasoning,['aversion'] -grizzled that,['it'] -suddenly and,|['as', 'I']| -removed the,['transverse'] -rule and,['as'] -of Wight,['will'] -Nights with,['no'] -wild and,['free'] -news for,['you'] -him a,|['companion', 'sleepless', 'couple', 'dash', 'gaol-bird', 'patient', 'gentleman', 'decidedly', 'wish', 'price', 'very']| -narrative I,['ask'] -of hair,|['as', 'and', 'took']| -his activity,['however'] -You are,|['right', 'to', 'yourself', 'a', 'too', 'endeavouring', 'screening', 'not', 'Holmes', 'fresh', 'probably', 'fatigued', 'doing', 'in']| -a cracked,['edge'] -red Now,['if'] -always either,['worthless'] -at liberty,|['to', 'Far']| -and ran ran,['as'] -bricks so,['as'] -him I,|['may', 'heard', "didn't", 'see', 'could', 'have', 'rapidly', 'had', 'wonder', 'came', 'asked', 'think', 'arrived', 'read']| -but unnoticed,['Watson'] -Holmes for,|['I', 'solution']| -depended whether,['I'] -my profession,|['is', 'has']| -him A,['shock'] -arm to,['turn'] -glove was,['torn'] -she with,['confederates'] -matter It,['is'] -then pushing,['her'] -him pulled,['me'] -no doubt,|['or', 'depicted', 'familiar', 'that', 'Doctor', 'you', 'suggested', 'travel', 'strike', 'it', 'already', 'descend', 'but', 'was', 'of', 'roasting', 'You', 'to', 'indirectly', 'as', 'they', 'quietly', 'a', 'find', 'at']| -country hedge,['upon'] -tell your,['story'] -other and,["I'll"] -stretched out,|['his', 'to', 'in', 'upon']| -didn't fall,['down'] -You put,['me'] -then asked,['Holmes'] -here! said,['Mr'] -Boscombe Pool,|['which', 'is', 'and', 'with', 'Holmes', 'It', 'was']| -them told,['you'] -St Paul's.,['started'] -uncomfortable with,['her'] -as our,|['client', 'word']| -Lascar said,['Inspector'] -admire his,['taste'] -Lucy the,['maid'] -a church,['Suddenly'] -thick bell-rope,['which'] -us both,|['into', 'instantly', 'good-night']| -machine goes,['readily'] -made no,|['remarks', 'inquiries']| -a sinister,|['result', 'history']| -moment's delay,['but'] -the door-step,['you'] -deduce his,['hat'] -outhouse which,['stands'] -conjecture into,['a'] -has really,['quite'] -to which,|['she', 'I', 'we']| -hall looking,['back'] -engineer Left,['his'] -and left both,['of'] -child who,|['threw', 'may']| -Simon very,['mercifully'] -woman It,['was'] -day said,['he'] -save for,|['one', 'an', 'a']| -might with,['propriety'] -recently cut,['and'] -sneer They,['were'] -hair With,['an'] -to work,|['He', 'out', 'upon']| -inconvenience As,['regards'] -no shoes,['or'] -slowly round,['and'] -ascend Swiftly,['I'] -man or,|['else', 'devil', 'you', 'men', "you'll"]| -supply them,['There'] -sympathy for,['all'] -man on,|['the', 'this']| -His extreme,['love'] -London then,['and'] -may discriminate,['When'] -struck from,|['behind', 'immediately', 'my']| -man of,|['strong', 'honour', 'whom', 'your', 'considerable', 'a', 'temperate', 'the', 'learning', 'immense', 'about', 'great', 'evil']| -me up,|['but', 'I']| -son who,['has'] -thing beyond,['myself'] -limits and,['yet'] -black side-whiskers,['and'] -for myself,|['walked', 'and']| -listened heavens!",['she'] -turns also,['with'] -gasped Hatherley,['out'] -left you,['rifled'] -hard work,['and'] -minutes. was,['quite'] -own impression,['as'] -follow he,['said'] -office and,|['the', 'no']| -singular incident,['made'] -went but,['I'] -now by,['the'] -steamboats The,['body'] -reasoner he,['remarked'] -ear while,['all'] -knows him,|['hope', 'will']| -You dragged,['them'] -backgammon and,['draughts'] -opening part,['but'] -an answer,['to'] -candle in,|['the', 'her']| -very erect,['with'] -its occupant,['The'] -now and now,['I'] -outset I,['thought'] -the bushy,['whiskers'] -lodgings and,['found'] -mistress If,['the'] -best that,['you'] -unusual But,['there'] -fact that,|['the', 'I', 'he', 'his', 'there', 'my', 'we', 'Miss', 'our']| -the trains,['in'] -I perceive,|['that', 'upon']| -that just,['at'] -the office,|['just', 'There', 'experience', 'but', 'or', 'during', 'after', 'he', 'and', 'of', 'my', 'behind', 'which']| -have elapsed,['since'] -only drawback,|['is', 'which']| -both burst,['out'] -speedily overtook,['the'] -mumbled a,['few'] -your arm,['alone.'] -charge But,['it'] -this will,['prove'] -it over,|['to', 'for', 'visitor', 'I', 'his', 'rearranging', 'rather', 'and', 'with', 'in']| -can twist,['steel'] -saw you,|['I', 'and', 'last', 'coming']| -von Ormstein,['Grand'] -shoulders is,['your'] -your bed,['and'] -professional investigations,['and'] -go farther,['who'] -a rifle,['This'] -he handed,|['it', 'me']| -found out,['of'] -won't tell,['us'] -interesting case,|['you', 'it']| -the murderers,['of'] -talked so,['And'] -hangs a,['rather'] -between the,|['stones', 'parted', 'time', 'Hatherley', 'edge', 'father', 'years', 'threat', 'mail-boat', 'double', 'wharf', 'sheets', 'sweet', 'boards', 'two', 'lines', 'crime', 'different']| -respectable frock-coat,['Our'] -where our,['red-headed'] -it right,|['ourselves', 'When', 'there', 'to', 'He']| -fresh clue,['it'] -a fad,['or'] -papers in,['order'] -the neighbours,['and'] -your profession,['Still'] -little Alice,['Even'] -you no,|['doubt', 'inconvenience']| -to Mr,|['Merryweather', 'Angel', 'Charles', 'Lestrade', "Turner's", 'Neville', 'Henry', 'Windigate', "Doran's", 'and', 'Rucastle']| -understand said,|['our', 'I', 'Holmes']| -richer pa,['grew'] -experience you,['have'] -are Peterson,['run'] -Square near,['the'] -gone away,['I'] -Oh yes,['I'] -their singular,['warning'] -white stones,['turned'] -descended my,['old'] -This woman,['might'] -feel its,['hard'] -steal over,['me'] -myself liking,['to'] -to corroborate,['your'] -sent to,['the'] -sympathetic sister,['or'] -dress She,['knows'] -remarked Holmes,|['as', 'When?"', 'I', 'This', 'that', 'there', 'stretching', 'when']| -The daughter,|['was', 'told']| -things to,['you'] -effort of,['the'] -relations to,['her'] -cargo By,['the'] -|see," said|,['I'] -start upon,['your'] -Doctor there,['may'] -entirely while,['we'] -instant said,['he'] -were shining,['coldly'] -a wreck,['and'] -think you,|['know', 'will', 'would', 'combine', 'have', 'go', 'a']| -employs me,['wishes'] -gentleman however,['seeing'] -to propose,['to'] -but no,|['superscription', 'coins', 'trace', 'jest']| -Miss Stoner,|['has', 'observed', 'You', 'turned', 'was', 'we', 'and', 'nor', 'said', 'laying', 'to']| -what steps,['did'] -litter of,['papers'] -fluttered out,['from'] -and ushering,['in'] -asked the,|['King', 'same']| -struck at,['the'] -morning dipping,['continuously'] -news bad?",['God'] -hearty laugh,['They'] -crushed in,['the'] -morning knowing,['that'] -am able,['to'] -by binding,['you'] -none which,['present'] -Turn over,['those'] -the fascination,['of'] -dark eyebrows,['What'] -due This,['woman'] -fallen to,['show'] -softly to,['himself'] -a dozen,|['other', 'times', 'did', 'yards', 'paces', 'intimate']| -Northumberland Avenue,['I'] -squat diamond-shaped,['head'] -without success I,['can'] -ever come,['within'] -you promise,|['then?', 'me']| -|good-night, your|,['Majesty'] -snow so,['long'] -market price,|['It', 'thousand']| -the trifling,['details'] -robberies which,['had'] -whereabouts firemen,['had'] -came on,['to'] -like a,|['man', 'rabbit', "coster's", 'full-sailed', 'rat', 'dog', 'herd', 'child', 'cashbox', 'sheep', 'sheet', 'star', 'vice', 'cleaver', "butcher's", 'few', 'magician', 'pistol', "plover's", 'very']| -was fastened,['for'] -their efforts,['were'] -bright now,['faint'] -she not,['have'] -have really,|['got', 'done', 'some']| -Klan A,['name'] -supper then,['he'] -and heated,['metal'] -am myself,|['one', 'And', 'a', 'to']| -a plunge,['as'] -confirm his,['guilt'] -|bed no,|,['no'] -a course,['of'] -a baboon,|['which', 'We', 'yes,']| -charming manners,['he'] -has his,|['faults', 'own']| -bluff boisterous,['fashion'] -am ashamed,['of'] -headgear began,['to'] -commonplace face,['is'] -you not,|['merely', 'find', 'see', 'yourself', 'heard', 'deduce', 'come', 'conducting', 'to', 'think', 'wait', 'looks', 'said', 'only', 'dad', 'the', 'understand']| -Rotterdam the,['cigar-holder'] -only put,['there'] -It's only,['Carlo'] -eight different,['points'] -buttons out,['of'] -which any,['of'] -and waist-high,['until'] -here's the,['end'] -upon delay,['God!"'] -We may,['take'] -Holmes rubbing,['his'] -there darted,['what'] -for dawdling,['especially'] -made so,['immense'] -woman II.,['THE'] -for dinner,['Seldom'] -My stepfather,|['learned', 'has']| -important and,|['less', 'lowliest']| -a harmonium,['beside'] -reason from,|['what', 'insufficient']| -pa grew,['the'] -I stood,|['as', 'firm', 'gazing', 'one', 'in']| -wit for,['he'] -stethoscope I,['must'] -the retired,['Saxe-Coburg'] -your guilt,['more'] -27 pounds,['10s'] -weekly county,['paper'] -just ask,['you'] -that Arthur,|['should', 'had']| -the play,['will'] -instance of,|['your', 'crime']| -a pleasure,['to'] -German for,['Company.'] -facts should,['now'] -no compunction,['about'] -seems from,['what'] -master had,['cut'] -away down,['in'] -monosyllables and,['the'] -lose not,['an'] -his chest,|['and', 'with']| -his waterproof,['to'] -were treatises,['on'] -the programme,['which'] -disgust is,['too'] -minutes in,['the'] -child There,['was'] -all might,['have'] -bet is,['off'] -seemed absurdly,['agitated'] -death I,|['was', 'sprang', 'determined', 'snatched', 'am']| -our future,['lives'] -nearer twelve,['He'] -letters L,['S'] -thirty I,['should'] -been given,|['me', 'against', 'to']| -Filled with,['the'] -curious voice,['which'] -eyebrows We,['have'] -|becomes, then|,['of'] -understand Where,['is'] -were deeply,['stirred'] -to two.,['a'] -really old,['Toller'] -whose anxious,['ears'] -The initials,['were'] -always less,['distinct'] -man gives,|['his', 'who']| -plans and,['the'] -better postpone,['my'] -then rubbed,['it'] -letter arrived,['on'] -gap like,['the'] -has dropped,['into'] -singular story,['which'] -course that,|['is', 'was', 'suggested']| -little things,|['that', 'are', 'about', 'There']| -as startled,['as'] -heard faintly,['the'] -richer man,['so'] -found so,['easy'] -Watson here,['can'] -absolute ruin,['that'] -pains were,['wasted'] -this Mr,|['Holmes', 'Hosmer']| -cut by,['the'] -shutters It's,['a'] -been concerned,['in'] -whose residence,['is'] -more and,|['passing', 'to']| -cooped up,['like'] -link between,['two'] -He slipped,|['an', 'his']| -observing machine,['that'] -the maiden,|['is', 'herself']| -sister's side,['she'] -and eggs,['and'] -have said,|['and', 'my', 'that']| -while even,['one'] -and doubly,['secure'] -opening her,['face'] -suddenly might,['have'] -Windigate by,['name'] -settled our,['new'] -visitor is,['probably'] -remarkably small,['feet'] -why I,|['did', 'urged', 'was', 'have', 'had', 'hastened']| -only passenger,['who'] -and sinister,|['business', 'enough']| -so made,['sure'] -as none,['knew'] -booted man,['and'] -it closely,['from'] -game's up,['Ryder'] -new quest,['might'] -stake will,['be'] -weeks before,|['that', 'my']| -so too,|['does', 'did', 'thinks']| -she values,['most'] -ordered one,['it'] -crib all,['ready'] -explain how,|['he', 'it']| -can pass,|['him', 'through']| -ago good,['Now'] -smallest problems,['are'] -station yourself,['close'] -singular adventures,|['of', 'which']| -neighbourhood and,|['was', 'in', 'hung']| -withdrawn as,['suddenly'] -marked and,['the'] -park at,['five'] -before-breakfast pipe,['which'] -with knitted,['brows'] -bridge for,['something'] -I shuddered,['to'] -have come,|['incognito', 'at', 'I', 'now', 'up', 'for', 'to', 'from', 'in', 'on', 'she', 'upon']| -unfortunate accident,['which'] -extreme chagrin,['and'] -stables and,['was'] -sister appear,['at'] -pen too,['deep'] -Holmes I.",['will'] -But you,|['know', 'see', 'will', 'do', 'may', 'shall']| -hand which,|['the', 'felt', 'she', 'was']| -am all,|['impatience', 'off', 'in', 'attention']| -to everybody,['who'] -before leaving,|['home', 'you']| -elapsed between,['the'] -our fair,['cousins'] -obviously caused,['by'] -being excellent,['company'] -first developed,['into'] -decline and,['took'] -Alice's friend,['too'] -her maid,|['that', 'who', 'is', 'walked']| -shall get,['the'] -enough I,|['stood', 'should']| -Angel was a,['cashier'] -hundred would,['have'] -your view,['But'] -devote an,['hour'] -writing me,['a'] -all be,|['yes,']| -clothes were,|['found', 'all', 'there']| -these twenty,['years'] -Adler I,['asked'] -Lestrade held,['information'] -of me,|['Mr', 'When', 'It', 'said', 'in', 'St.', 'I', 'to', 'was', 'you', 'unpapered']| -nonentity It,['was'] -the order,['of'] -I say!,['He'] -of my,|['former', 'trifling', 'kingdom', 'inquiry', 'mouth', 'hand', 'own', 'most', 'belief', 'companion', 'having', 'assistant', 'companions', 'little', 'clients', 'duties', 'arrival', 'window', 'father', 'relations', 'analysis', 'first', 'adventure', 'natural', 'cases', 'attainments', 'lip', 'late', 'town', 'friend', 'association', 'bed', 'power', 'situation', "mother's", 'only', 'beloved', 'grip', "sister's", 'cane', 'morning', 'handkerchief', 'work', 'fields', 'neighbours', 'friends', 'patron', 'errand', 'ignorance', 'room', 'fifty-guinea', 'wearisome', 'speech', 'death', "night's", 'limbs', 'Afghan', 'client', 'other', 'second', 'leaving', 'reach', 'dressing-room', 'story', "wife's", 'time', 'laughter', 'bedroom', 'trunk', 'hobbies', 'dress']| -reparation as,['is'] -despair but,['Spaulding'] -understand your,['thinking'] -little resentment,['for'] -sympathy between,['us'] -tide was,['at'] -Monica in,['the'] -all stained,['and'] -the burning,['poison'] -repulsion and,['of'] -it eat,['it'] -hurrying down,['to'] -come she,['said'] -pulled back,['disappeared'] -was employing,['his'] -been offered,['to'] -son allow,['himself'] -interesting one,|['remarked', 'will']| -examined my,['dear'] -he exposed,['himself'] -quiet and,|['respectable', 'innocent', 'sweet', 'gentle', 'patient']| -into it,|['I', 'From', 'and', 'shall', 'the', 'gentleman?"']| -thieves and,['how'] -laugh and,['put'] -obvious And,['now'] -At dusk,['we'] -seat he,['shut'] -new investigation,['You'] -roar of,|['laughter', 'the']| -housekeeper now,['but'] -being out,['of'] -interests me,['deeply'] -your pocket,|['He', 'An']| -a handkerchief,['wrapped'] -sent it,|['yet', 'to']| -edge came,['in'] -and revolved,['slowly'] -the Sholto,['murder'] -brought an,['advocate'] -man are,['continually'] -be Might,['not'] -rent free,|['That', 'on']| -were hollowed,['out'] -should strongly,['recommend'] -mistake in,['explaining'] -blotches of,['lichen'] -little springs,['such'] -vanishing of,['the'] -voice before,['said'] -me could,['not'] -wheels It,['is'] -hansom and,['drive'] -fallen in,|['and', 'while']| -needed as,['well'] -crop from,['the'] -dislike to,['the'] -you receive,['much'] -|30,000 napoleons|,['from'] -for us,|['had', 'Within', 'to', 'in', 'upon', 'have', 'with', 'now', 'and', 'if', 'Well', 'She']| -Dr Grimesby,|['Roylott', "Roylott's"]| -afterwards seen,['walking'] -Roylott's death,['and'] -stretched down,['in'] -and Attica,['and'] -to tax,['his'] -out there,|['jumped', 'and']| -hereditary kings,['of'] -bell wire,['Here'] -ounce of,['shag'] -2 is,['an'] -faded and,['stagnant'] -blue smoke-rings,['as'] -Over the,['edge'] -characteristics but,['those'] -ha got,['out'] -huge projecting,['bones'] -speech before,['we'] -Lestrade drawled,['Holmes'] -dark room,['up'] -Clair and,['swore'] -completed the,|['impression', 'cure']| -dwell You,['have'] -ejaculation or,['cry'] -an advantage,['It'] -so Watson,['I'] -case lying,['upon'] -enough observed,['Bradstreet'] -singular introspective,['fashion'] -Watson We,['should'] -easily controlled,['when'] -got brain-fever,['and'] -the conjecture,['which'] -been serving,['his'] -chamber of,['the'] -stood open,['and'] -solved I,['should'] -I cudgelled,['my'] -mean a,['complete'] -not need,['you'] -me instead,['of'] -woods grew,['very'] -left foot,['of'] -envelope in,['one'] -such matter,['before'] -matters I,['shall'] -the dint,['of'] -week but,['sooner'] -keep the,|['two', 'stone', 'flames', 'appointment', 'matter']| -a driving-rod,['had'] -occupant perhaps,['she'] -things are,|['very', 'infinitely', 'going']| -mine all,['the'] -caged up,['in'] -theories and,['fancies'] -silver upon,['his'] -this suite,['but'] -they discovered,['its'] -mean I,|['ejaculated', 'was', 'gasped']| -a dangerous,|['man', 'pet']| -ventilator is,|['very', 'made']| -ever see,['a'] -of mercy,['The'] -clump of,|['laurel', 'trees', 'copper']| -Road did,['it'] -aristocratic features,['messenger'] -the scoundrel,['was'] -of laying,['out'] -his grasp,['and'] -clearly so,['scared'] -and forestalling,['it'] -we lurched,['and'] -noting anything,['else'] -nor given,['to'] -to admit,|['such', 'that']| -month in,['my'] -an old,|['trick', 'dog', 'woman', 'friend', 'rusty', 'campaigner', 'briar', 'scar', 'house', 'clock', 'elastic-sided', 'maxim', 'chest', 'rickety']| -left us,|['what', 'in', 'because', 'standing']| -a credit,['to'] -main force,['a'] -name and,|['there', 'the']| -hotel abomination,['I'] -with Moran,['and'] -don't wonder,['that'] -more likely,|['to', 'that']| -the strongest,['terms'] -up said,['he'] -paper explained,['the'] -black eyes,['Why'] -the charred,['stump'] -daily press,['I'] -with so,|['charming', 'large', 'fixed', 'much']| -but concentrate,['yourself'] -the hospitality,['of'] -It swelled,['up'] -fire you,|['receive', 'can']| -gentleman sprang,['out'] -Then Mr,['Angel'] -light sprang,|['up', 'into']| -answer Coroner:,['I'] -grasped this,['truth'] -we hope,['be'] -fifty minutes,['He'] -hurriedly muttered,['some'] -Russell's fine,['sea-stories'] -sense in,['Hafiz'] -she carries,['it'] -word would,['he'] -all horrible,['to'] -with fear,['and'] -small study,['of'] -band a speckled,['band'] -be excellent,['if'] -narrow path,['between'] -researches which,['he'] -when once,['his'] -fortunes You,['will'] -she carried,['the'] -Was the,|['photograph', 'remainder']| -other indications,['but'] -you keep,|['that', 'yourself']| -the swag,['I'] -cold day,['glisten'] -cupboard and,|['tearing', 'two']| -double possibility,['But'] -gong upon,['the'] -me when,['all'] -you should,|['apply', 'be', 'take', 'absolutely', 'come', 'have', 'suspect', 'dwell', 'find']| -MAN WITH,['THE'] -evidence I,|['remarked', 'suppose']| -me first,['I'] -scandal threatened,['to'] -who knows,['him'] -telling how,['we'] -us from,['amid'] -news that,['the'] -plantation I,['do'] -thought as,['much'] -thought at,|['first', 'any', 'the']| -yesterday morning,['the'] -said earnestly,['It'] -would buy,['an'] -broken only,['by'] -the red-heads,['as'] -bird of,['prey'] -mentioned it,['Data'] -sides with,['one'] -I expect,['that'] -we here,['Tiptoes'] -ruthless man,['who'] -value of,['which'] -connected not,['with'] -cases though,['none'] -light first,['it'] -and grating,['wheels'] -flashed through,['my'] -away I,|['thought', 'was']| -God help,|['you', 'me', 'the']| -to for,|['some', 'my']| -connection with,|['it', 'Mr', 'Boscombe', 'the', 'any', 'my', 'his']| -of coming,['into'] -The pipe,['was'] -advanced large,['sums'] -and associate,|['him', 'Dr']| -of gas-lit,['streets'] -visitor taking,['a'] -light now,['bright'] -to fathom,['Once'] -have carried,|['out', 'this']| -upper lip,|['a', 'so']| -won't shake,['hands'] -until one,['knee'] -is There,['will'] -or three,|['times', 'fields', 'bills']| -stumbled slowly,['from'] -the minute,|['knowledge', 'and']| -of black,|['fluffy', 'lace']| -whatever danger,['threatened'] -lady died,['of'] -have nearly,['all'] -up through,['the'] -and declared,['my'] -barricade which,['Miss'] -instinct which,['gave'] -instructive in,['all'] -points on,['which'] -advice looks,['upon'] -CASE OF,['IDENTITY'] -In one,['of'] -went and,|['I', 'saw']| -footmarks might,['make'] -salesman I,['thought'] -else I,|['asked', 'can', 'think']| -the box,|['and', 'I', 'out', 'of', 'official']| -I feared,|['to', 'as', 'lest']| -any risks,['I'] -|some 14,000|,['pounds'] -followed and,['a'] -was secure a,['duty'] -He hurried,['to'] -lady did,['she'] -B and,["C' that"] -glance is,['always'] -pocket Petrarch,['and'] -pleased Mr,['Holmes'] -is asleep,['said'] -forefinger Her,['boots'] -tore him,['away'] -the tendencies,['of'] -round both,['hat'] -had reasoned,['myself'] -unforeseen manner,['So'] -by quite,['a'] -mysterious it,['proves'] -column Here,['it'] -first impression,['At'] -the gloss,['with'] -connection and,['the'] -orange brick,['Irish-setter'] -parts which,['lie'] -his habit,['when'] -perfect reasoning,['and'] -neither fascinating,['nor'] -All has,['turned'] -was easy,['to'] -months ago,|['I', 'good', 'to', 'the']| -was peeling,['off'] -family and,|['that', 'in', 'an']| -bed in,|['which', 'another', 'your']| -absence to,['complain'] -was undoubtedly,|['to', 'some']| -good spirits,['better.'] -machine that,['the'] -the outset,['I'] -be circumspect,['for'] -cushions from,['the'] -police When,['I'] -Kindly sign,['the'] -of sleepers,['holding'] -I feel,|['a', 'that', 'dissatisfied', 'better', 'sure', 'it']| -beauty would,['have'] -which leads,|['on', 'into']| -to know,|['how', 'I', 'Even', 'so', 'anything', 'things', 'what', 'when', 'you', 'that', 'which', 'its', 'now', 'who', 'little', 'before', 'a']| -armchair threw,['across'] -he'll be,['gone'] -flushed with,['crying'] -Holmes cases,|['should', 'between']| -tout as,['Gustave'] -washing it,['down'] -notices Hudson,['came'] -note of,|['it', 'the', 'yours']| -Oakshott 117,['Brixton'] -Prendergast how,['you'] -my veins,['Have'] -is Wednesday,['What'] -reading it,['that'] -won at,['last'] -her lawyer,['There'] -of dust,['upon'] -Together we,['rushed'] -town in,['he'] -fine law-abiding,['country'] -salt that,['I'] -|Whitney, brother|,['of'] -Wilson has,['been'] -very impertinent,['Kindly'] -these conclusions,['before'] -company has,['its'] -had got,|['when', 'home', 'before']| -geology profound,['as'] -a fear,['for'] -The culprit,['is '] -leaves of,['the'] -heap of,['shag'] -only looked,['in'] -I remember,|['and', 'rightly', 'Botany', 'right', 'aright', 'that', 'nothing']| -Perhaps on,['what'] -amid the,|['short', 'ashes', 'mad', 'common', 'labyrinth', 'dangers', 'branches', 'white', 'light']| -so This,['would'] -our field,['and'] -had solved,['my'] -you owe,['Mr'] -my cane,['came'] -may ruin,['all'] -supporting himself,['and'] -the equinoctial,['gales'] -must have,|['a', 'almost', 'been', 'some', 'dropped', 'had', 'and', 'belonged', 'an', 'spent', 'something', 'bitterly', 'one', 'started', 'bled', 'done', 'read', 'this', 'rushed']| -the League.,['he'] -suppose that,|['you', 'I', 'everyone', 'we', 'so', 'your']| -a rule,|['when', 'said', 'bald', 'is', 'in', 'and']| -bring you,|['to', 'there', 'down']| -right the,['case'] -and water,|['and', 'within']| -to dilate,['with'] -staring into,['the'] -I implored,|['the', 'him']| -ulster and,['bonnet'] -basis with,['which'] -course remains,['to'] -beauty Yet,['when'] -suppose than,['that'] -expensive habits,['He'] -carriage was,['the'] -be fruitless,['labour'] -this noise,['which'] -shall spend,['the'] -for earrings,['sir.'] -web to,['weave'] -not scorn,['her'] -client carried,['on'] -saying that,|['there', 'the']| -he the,|['objection', 'only']| -the gritty,['grey'] -be quite,|['solid', 'dramatic']| -take that,['case'] -my data,['May'] -awkward for,['I'] -familiar with,['it'] -room his,['hands'] -value which,['she'] -an aunt,['my'] -understanding To,['take'] -To speak,['plainly'] -ceiling was,|['coming', 'only']| -The manor-house,['is'] -then abandoned,['his'] -wandering rather,['far'] -purchase for,['I'] -the bigger,['the'] -fiery red,|['hair', 'Now']| -threw on,['my'] -has rather,['an'] -getting 100,['pounds'] -furnished us,['with'] -excuse to,['move'] -and monogram,['upon'] -In fact,['in'] -that turned,['up'] -very full,|['and', 'accounts']| -heiress is,['not'] -about my,|['troubles', "wife's", 'feelings', 'future']| -friend's noble,['correspondent'] -almost parallel,['cuts'] -Did she,['know'] -my foot,['over'] -one can,['pass'] -ambitious took,['a'] -judge from,['the'] -thing but,|['if', 'we', 'I', 'this', 'exceedingly']| -about me,['Mr'] -might direct,['I'] -call her,['had'] -the bumping,['of'] -case backward,['and'] -sombre and,['deserted'] -mother's re-marriage,['She'] -I decide,['upon'] -himself up,|['in', 'onto']| -the lodger,['at'] -suddenly just,['at'] -than that,|['Mr', 'which', 'It', 'of', 'it']| -received came,['late'] -in particular,['I'] -knock the,['snow'] -among them,|['Miss', 'was']| -Jane she,['is'] -photograph becomes,['a'] -this door?,['am'] -were none,['I'] -should he,|['remain', 'possess']| -convenient hour?,['have'] -late forever too,['late'] -Archie jump,['and'] -Holmes stooped,['to'] -delirious No,['it'] -prank if it,['was'] -Bradstreet Well,['I'] -|asked man,|,['come'] -compositor by,['his'] -a monarch,['and'] -with high,|['autumnal', 'collar']| -required my,['presence'] -so grim,['or'] -together his,['legs'] -right out,|['from', 'of']| -there You,['will'] -gently in,['the'] -exacted from,['you'] -The table,['was'] -firelight strikes,['it'] -again my,['conjecture'] -recent and,['the'] -lazily from,['his'] -done save,['the'] -making of,['a'] -implore you,['to'] -length threw,['it'] -who loves,['art'] -nine said,['I'] -screamed upon,['the'] -able to,|['advise', 'But', 'bring', 'guide', 'keep', 'give', 'enter', 'look', 'deny', 'spring', 'understand', 'gather', 'go', 'sell', 'see', 'make', 'accurately', 'utilise', 'ascertain', 'write', 'tell', 'avert', 'strike', 'post', 'find', 'form', 'take']| -Cedars?" that,['is'] -in word,['or'] -sinewy neck,['His'] -writing another,['little'] -the pair,|['might', 'which']| -Then he,|['stood', 'walked', 'took', 'suddenly', 'followed', 'lit', 'sealed', 'stepped', 'did', 'broke', 'turned', 'struck', 'closed', 'offered', 'passed', 'became', 'handed', 'tried']| -except Leadenhall,['Street'] -mud-stains from,['any'] -Christmas and,['I'] -the pain,|['There', 'of']| -the kingdom,['of'] -were among,['the'] -matter The,|['Lascar', 'police']| -established a,|['very', 'large']| -sinister cripple,['who'] -money for,|['a', 'I']| -and beside,['that'] -first place,|['we', 'both', 'I']| -as themselves,['was'] -drama As,['I'] -the pocket,['is'] -hardihood to,['return'] -Now you,|['remark', 'must']| -upon your,|['fortunes', 'new', 'work', 'toe', 'case', 'hat', 'compliance', 'judgment', 'son']| -whistle yourself,['in'] -|got diamond,|,['sir'] -case we,|['have', 'had', 'should']| -eager face,|['and', 'should']| -gems had,['been'] -petty feeling,['no'] -Merryweather stopped,['to'] -and harmony,['and'] -putty more,['than'] -situation lies,['in'] -time my,['dear'] -down from,|['the', 'Ballarat', 'between', 'his', 'London']| -soon however,['yesterday'] -less so,|['as', 'than']| -house It,|['seemed', 'had', 'is']| -position in,['which'] -packed between,['layers'] -a lawyer,['That'] -reopened his,['eyes'] -And he,['said'] -of weedy,['grass'] -add a,['great'] -shouted Mr,['Windibank'] -one door,['of'] -independent start,['in'] -friends in,['the'] -fled from,['the'] -most It,['is'] -waiting that,|['will', 'we']| -quickly to,['Miss'] -cuttings is,['an'] -a waste,['of'] -and knock,['sleepy'] -will break,|['her', 'down', 'it']| -said Lestrade,|['as', 'with', 'winking', 'Oct', 'rising']| -their wits,['end'] -shouting crowd,['I'] -you ask?,['had'] -softly together,['and'] -ever gone,['against'] -at three,|["o'clock", 'From']| -forth en,['bloc'] -the tower,['of'] -tomfoolery of,['this'] -it rather,['disconnected'] -little quick,['in'] -police think,['of'] -I arrived,|['I', 'the', 'so', 'at']| -the evidence,['You'] -miles or,['so'] -others On,['receiving'] -was close,['upon'] -emigrated to,['America'] -size Too,['large'] -thoughtfully Of,['course'] -A jagged,['stone'] -and seriously,['compromise'] -he followed,|['a', 'me']| -secrecy over,['this'] -miles of,|['town', 'Reading', 'country']| -down but,['after'] -my interest,|['every', 'to']| -wishes I,['should'] -miles on,['the'] -of duty a,['feeling'] -ORANGE PIPS,['I'] -womanly caress,['have'] -lain there,['a'] -the wall,|['Here', 'The', 'at', 'Finally', 'a', 'with', 'I', 'and']| -examine building,['was'] -attention I,['have'] -equally certain,['too'] -no account,['lose'] -banker or,['her'] -was important,['I'] -seized her,['and'] -and warm-hearted,['in'] -really knows,['him'] -that business,|['of', 'myself']| -several warnings,['that'] -his relatives,['should'] -my last,['place'] -only touch,['the'] -a mole,['but'] -a copper,['but'] -can quite,|['understand', 'imagine']| -ran up,|['stairs', 'and']| -a talk,['as'] -morning no,['good'] -back but,|['built', 'this']| -grey dust,['of'] -got our,['stones'] -got out,|['of', 'there', 'from']| -desire your,['name'] -retrogression Holmes,['laughed'] -pierce so,['complete'] -now desirous,['of'] -B division,['gave'] -there your,['bird'] -The bedroom,['window'] -be served,['by'] -a comfortable,['sofa'] -a gallop,['I'] -to where,|['they', 'I', 'he']| -beauty during,['our'] -the Hampshire,['border'] -the ground "let,['us'] -deep an,['influence'] -absolutely clear,|['We', 'She']| -the blackest,['treachery'] -gales had,['set'] -company's office,['got'] -secret was,|['safe', 'a']| -taking a,|['long', 'step']| -capital mistake,['to'] -transformed when,['he'] -man walking,['with'] -met Vincent,['Spaulding'] -passing the,['front'] -carried it,['off'] -year and,|['found', 'more']| -Just tell,['us'] -supplied to,['the'] -Mrs Francis,['Hay'] -IDENTITY dear,['fellow'] -house? no.,['This'] -bent knees,['heads'] -night after,['dinner'] -been wound,['up'] -his victim,['off'] -for very,['much'] -wound dressed,['and'] -writing pooh!,['Forgery'] -which looked,|['keenly', 'out', 'at', 'from']| -shutters if,['they'] -chuckled grimly,['Bring'] -believe been,|['intensified', 'told']| -eyes and,|['looked', 'placed', 'parted', 'forehead', 'staring', 'his', 'the', 'I', 'was', 'of']| -pictures within,['the'] -present Anstruther,['would'] -always been,|['confined', 'his']| -83 There,['were'] -to test,['a'] -cigar Now,['of'] -gaped in,|['the', 'front']| -was where,['the'] -note to,['say'] -and energetic,['measures'] -Monday very,['shortly'] -Holmes standing,|['at', 'fully']| -have communicated,['with'] -rat Coroner:,['What'] -knew by,['experience'] -minutes I,|['hope', 'had']| -groom and,['my'] -of orange,['hair'] -tut sweating rank,['sweating!'] -detracted in,['the'] -deposit of,["fuller's-earth"] -of death,|['had', 'from', 'My']| -clergyman were,['just'] -cases however,['I'] -see No,['wind'] -two very,|['singular', 'much']| -clergyman beamed,['on'] -second waiting-maid,['has'] -problem of,['the'] -sailor customer,['of'] -was informed,['by'] -blow must,['have'] -saved I,['am'] -all others,['I'] -my case,['to'] -here at,['six'] -a fuss,['made'] -sat day,['after'] -an offer,['seemed'] -his methods,['would'] -the gas,['is'] -case would,['then'] -o'clock before,['he'] -however He,|['drank', 'was']| -one little,['item'] -effected He,['had'] -And here,|['he', 'is']| -downward in,['a'] -sir Then,['the'] -smiling the,['bathroom'] -lady so,['I'] -commission for,['you'] -been slept,|['at', 'in']| -him know,['that'] -him patted,['his'] -little dark,['punctures'] -freely until,['I'] -nature Besides,['she'] -importance which,['can'] -eye Holmes,['walked'] -Tottenham Court,['Road'] -for advice,['is'] -the socket,['along'] -were sharing,['rooms'] -the importance,['of'] -so eagerly,['for'] -window The,|['lamps', 'window']| -you understand,|['without', 'that', 'by', 'but', 'not', 'This', 'and']| -pallet bed,['a'] -skylight above,['was'] -and carries,['a'] -you tell,|['that', 'him', 'me']| -keeping but,['each'] -men whose,['hair'] -passage between,['the'] -first walk,['that'] -never went,['wrong'] -to horror,['and'] -miserable ways,['of'] -couch I,|['do', 'motioned']| -woods all,['round'] -an incident,['in'] -bride Mr,['Aloysius'] -Holmes You,|['may', 'must', 'would']| -power I'll,['serve'] -jerking his,['thumb'] -Embankment is,['not'] -above was,['open'] -James's Evening,['News'] -deserted As,['I'] -earnestly Drive,['like'] -the alterations,['as'] -less innocent,['aspect'] -passers-by it,['was'] -and ending,['in'] -trying to,|['do', 'utter', 'your', 'tear', 'straighten']| -engage in,['an'] -thief had,['struggled'] -because my,['friend'] -the most,|['perfect', 'extreme', 'incisive', 'beautiful', 'resolute', 'inextricable', 'preposterous', 'singular', 'difficult', 'complete', 'determined', 'outr', 'important', 'lovely', 'only', 'remarkable', 'maddening', 'absolute', 'solemn', 'horrible', 'fleeting', 'select', 'expensive', 'extraordinary', 'precious', 'dangerous', 'genial', 'pleasant', 'excellent', 'probable', 'interesting', 'part', 'amiable', 'profound']| -and window,['while'] -heiress to,['the'] -the moss,|['and', 'where']| -the bitter,|['sneer', 'end']| -spare your,['Majesty'] -night the,|['sweat', 'low', 'presence', 'most']| -breaking out,['into'] -whatever he,['might'] -a saucer,['of'] -you. is,['a'] -gentleman thanking,['me'] -you. it,['is'] -a surgeon,['is'] -her lover,['through'] -my inquiry,['I'] -shouted struggling,['to'] -all deserted,['As'] -what Monday,['I'] -all else,['would'] -address take,['a'] -half-pay major,['of'] -main fault,['but'] -the providing,['of'] -son stood,['listening'] -talking and,['he'] -coat alone,|['sir,']| -ha my,['boy'] -as silent,|['and', 'as']| -the temporary,['office'] -Holmes which,['may'] -so suddenly,|['that', 'upon', 'might']| -tinge of,['colour'] -with writhing,['limbs'] -now Holmes',['fears'] -think then,['that'] -advice in,['every'] -of returning,['home'] -a day,|['and', 'or', 'for', 'have', 'by']| -into another,['room'] -think they,|['found', 'were']| -advice is,['easily'] -just observed,['that'] -also discreet,['and'] -apartment with,['flushed'] -and remanded,['for'] -servitude unless,['we'] -of wife,['and'] -deadly dizziness,['and'] -small card,['which'] -something about,|['jumping', 'that']| -is absolutely,|['puzzled', 'true', 'needed', 'unique', 'all', 'essential']| -ensued which,['led'] -deep It,['must'] -Alice grew,['up'] -strong-box and,['held'] -bottom. shall,['learn'] -stay said,['I'] -able in,['four'] -assistant answered,['it'] -our love,['but'] -damning case,['I'] -well for,|['his', 'you']| -you get,['them'] -He shall,['find'] -stopped under,['a'] -handkerchief over,['his'] -had also,|['a', 'fled']| -occasion to,['unpack'] -has broken,|['him', 'the']| -little Edward,['in'] -send them,['the'] -one which,|['is', 'remains', 'has', 'your', 'it', 'I', 'looked']| -the park,['at'] -the part,|['he', 'which']| -that woman's,['appearance'] -the fall,|['of', 'in', 'so', 'Yet']| -boy open,['his'] -Road The,['roughs'] -is fastened,['to'] -four days,|['Does', 'to']| -this place,|['And', 'They']| -thither I,['travelled'] -in preventing,['his'] -strong for,['years'] -and contemplative,['mood'] -We both,['sprang'] -present strange,['and'] -the thought,['of'] -bluster and,['took'] -88 pounds,['10s.'] -were was,['more'] -somewhat the,['resemblance'] -the smoke,['still'] -half afraid,['that'] -set fire,['to'] -his temples,['with'] -arrived here,['last'] -deeply marked,['and'] -police-station while,['the'] -cord and,['removed'] -|Watson," said|,['Holmes'] -On examination,['traces'] -a sardonic,['eye'] -you look,|['her', 'will', 'on']| -not gone,['more'] -Mary it,['goes'] -vainly striving,['to'] -drowned my,['cries'] -think much,['more'] -the wreck,['and'] -strange gentleman,["we've"] -the death,['of'] -first two,|['facts', 'with']| -throwing back,['her'] -lying in,|['our', 'strange', 'an']| -waiting silently,['for'] -the sponge,['like'] -shape a sprig,['of'] -that dark,['lantern'] -down beside,|['the', 'him']| -tiptoes Square,['too'] -Frank and,['I'] -tone as,['though'] -his blood,['was'] -conveyed into,['the'] -whole matter,|['Depend', 'to']| -both downstairs,['and'] -perfectly true,|['boy,']| -ever your,|['loving, MARY.']| -standing upon,['the'] -endeavoured to,|['conceal', 'tie', 'force', 'push', 'sound', 'help']| -and goose,['to'] -been spent,['in'] -Has a,['white'] -trusted your,['wife'] -in money,['matters.'] -fully into,['my'] -shall expect,|['the', 'you']| -black lace,['which'] -window These,['articles'] -safe as,['if'] -a plover's,['egg'] -that anyone,|['could', 'is']| -have accepted,['such'] -the stair,|['some', 'I', 'within', 'and', 'unlocked']| -thank you,|['or', 'said', 'but']| -denied him,['a'] -of free,['education'] -low over,['his'] -is nothing,|['else', 'very', 'new', 'so', 'which', 'more']| -twenty-six of,['them'] -regretted Having,['no'] -little in,['the'] -he assures,['me'] -dear Watson,|['he', 'that', 'with', 'how', 'you']| -Leatherhead where,['we'] -little if,['he'] -the folly,['of'] -home Tell,['us'] -way asked,['Holmes'] -a very,|['serious', 'unexpected', 'different', 'good-morning', 'stout', 'large', 'stay-at-home', 'full', 'easy', 'capable', 'shiny', 'massive', 'injured', 'shy', 'excitable', 'interesting', 'bad', 'few', 'tricky', 'violent', 'positive', 'quick-witted', 'hard', 'cocksure', 'considerable', 'obstinate', 'real', 'precise', 'busy', 'short', 'remarkable', 'affectionate', 'careful', 'quiet', 'coarse', 'strong', 'deep', 'great', 'seedy', 'honest', 'ordinary', 'simple', 'pretty', 'amiable', 'old', 'unusual', 'heavy', 'extraordinary', 'long', 'plain', 'fashionable', 'lovely', 'friendly', 'perturbed', 'good-night', 'grave', 'good', 'sweet', 'humble', 'limited', 'strange', 'smiling', 'foolish', 'kind', 'tall', 'brave', 'cunning', 'fat', 'kind-spoken']| -easily done,['Come'] -black as,['a'] -answered yawning,['Alas'] -assistance The,['thought'] -side Now,|['you', 'how', 'would']| -wish you,|['a', 'would', 'John', 'were', 'to', 'all']| -doubtless from,['the'] -developments but,['I'] -be trusted,['with'] -best and,['keenest'] -might rely,['on'] -false teeth,['and'] -row your,['wife'] -freedom CAN,['be'] -her direction,['and'] -room Toller!",['cried'] -is profoundly,['true'] -came to,|['me', 'an', 'you', 'the', 'settle', 'be', 'live', 'my', 'find', 'Lee', 'Stoke', 'himself', 'I', 'believe', 'think', 'a', 'examine', 'myself', 'look', 'London', 'Mr', 'seek', 'nothing', 'Frisco', 'Baker']| -with rich,['brown'] -will observe,|['if', 'said', 'is']| -ears have,['already'] -certainly do,|['as', 'so']| -missing piece,['were'] -you wanted,['to'] -to restore,['lost'] -Perhaps Mr,['Wilson'] -view however,['and'] -and gentlemanly,['he'] -Accustomed as,['I'] -struck a,|['light', 'match', 'rich', 'gong']| -inhabited The,['bedrooms'] -other pausing,['only'] -using very,['strong'] -and iron,['piping'] -a peaked,['cap'] -saw no,['one'] -he quiet,['he'] -Place Camberwell,["Angel's"] -next Assizes,['Those'] -thousand will,['cover'] -hollow of,|['my', 'his']| -to Perhaps,['Mr'] -of agitation,['her'] -and after,|['that', 'We', 'No', 'much']| -in ready,['money'] -use the,|['carriage', 'disjecta', 'official']| -say nothing,|['of', 'but']| -blinds and,['the'] -|Holmes Bradstreet,|,['sir'] -colour which,['shows'] -long before,|['and', 'my', 'we']| -a sentence,['he'] -fair tonnage,['which'] -it promised,['to'] -Beeches my,['life'] -busy with,|['his', 'her']| -it still,|['wanted', 'lay']| -be another,['thing'] -How he,['did'] -dropped heavily,['into'] -rich but,['still'] -heavily Well,['I'] -all fears,['to'] -passing light,['Now'] -said at,['last'] -case cannot,['say'] -all being,['a'] -said as,|['she', 'he']| -cuff or,['shirt'] -a forceps,['lying'] -him however,['long'] -is involved,['by'] -office in,['Leadenhall'] -be extremely,['obliged.'] -so so,['Nothing'] -lichen upon,['the'] -Street Sherlock,['Holmes'] -three I,['got'] -Until after,['the'] -accommodate myself,['to'] -over rather,['ruefully'] -His eyes,|['sparkled', 'twinkled']| -but there,|['again', 'is', 'were', 'came', 'all', 'was', 'are']| -us warmly,['All'] -were both,|['in', 'downstairs']| -bright morning,|['sunshine', 'was']| -out now,['the'] -Remember Watson,['that'] -Mr Angel,|['save', 'began']| -done more,['than'] -he that,|['on', 'you', 'his', 'I', 'is', 'Mr', 'it']| -gas-flare but,['I'] -fears My,['mind'] -spattered with,['mud'] -busier still,['this'] -grace of,['God'] -with intervals,['of'] -down one,['of'] -never got,['tallow-stains'] -some other,|['building', 'obvious', 'motive', 'place', 'topic']| -my fifty-guinea,['fee'] -breakfast THE,['ADVENTURE'] -will see,|['what', 'that', 'me']| -in contact,['with'] -trust that,|['we', 'I', 'you', 'our']| -else had,|['ever', 'been']| -skin of,['his'] -remarkable and,['having'] -attainments I,['painted'] -heartily for,['some'] -shining upon,['his'] -she were,|['a', 'ill-used']| -her plans,['so'] -smiling I,['cannot'] -strength was,['a'] -company dropping,['in'] -attained have,['no'] -us upon,['the'] -by taking,['out'] -to arduous,['work'] -This stone,['is'] -weak throat,['and'] -clothes in,['his'] -remarked would,['when'] -time a deduction,['which'] -Very few,['governesses'] -so ill,['that'] -respectable life,['I'] -he are,['three'] -London He's,['a'] -drawer It,['struck'] -comical side,['of'] -erected against,['the'] -26s 4d,['wrote'] -so there,|['was', 'is', 'only']| -seemed From,['comparing'] -gold and,['seven'] -surest information,['that'] -happy until,['you'] -newspapers glancing,['over'] -reputation among,['women'] -worse as,['Alice'] -Simon tapping,['his'] -arrest in,['a'] -the night,|['must', 'of', 'the', 'in', 'you', 'is', 'there', 'I', 'before', 'sir', 'he']| -My name,['is'] -door for,['there'] -record of,|['strangers', 'sin']| -method It,['is'] -nearly filled,['a'] -treat myself,['to '] -English capital,['Holmes'] -were duly,['paid'] -lover or,['was'] -hundred to-morrow,['morning'] -eventually completed,['by'] -door open.,['I'] -only seven,['miles'] -formed your,|['conclusions', 'opinion']| -done my,['duty'] -marriage is,['a'] -out my,|['orders', 'revolver', 'commission', 'bunch']| -was cut,['up'] -thirty-nine with,['such'] -done me,['the'] -cried Lestrade,['with'] -sometimes stop,['dead'] -low den,['in'] -you know,|['see', 'how', 'I', 'all', 'for', 'and', 'Mr', 'father', 'then', 'devoted', 'is', 'what', 'more', 'anything', 'Watson', 'the', 'you', 'where', 'him', 'that', 'madam', 'cut', 'now']| -then said,['he'] -of perfect,['equality'] -Merryweather as,['we'] -them ashamed,['of'] -that while,['she'] -didn't like,['anything'] -easy concealment,['about'] -cringing figure,['had'] -corroboration I,['knew'] -simple it,['would'] -the tray,['I'] -lamp in,|['her', 'his']| -shall never,|['be', 'forget', 'let', 'see']| -|Monday." perhaps,|,['Mr'] -weeks represented,['the'] -still raised,['to'] -his breadth,['seemed'] -some light,['into'] -a question,|["That's", 'of', 'or', 'whether', 'and']| -wrinkled newspaper,['from'] -uncle's moved,['the'] -Good-day Mr,['Holmes'] -young man's,|['own', 'favour', 'story']| -storm and,['rain'] -were yourself,['struck'] -up about,['the'] -corner holding,['three'] -Lane is,['a'] -and firmness,['As'] -slung over,['his'] -the locket,['and'] -shoulders good,['news'] -hot coffee,['for'] -having read,['De'] -human experience,['this'] -conduct of,['the'] -without a,|['witness', 'struggle', 'sign', 'care', 'horrible', 'situation', 'word']| -expect that,|['within', 'more']| -McFarlane's carriage-building,['depot'] -and said,|['there', 'that']| -Surrey family,['of'] -K three,['times'] -to hide,|['anything', 'the']| -shooting-boots and,['a'] -allowed her,['to'] -then?" searched,['the'] -talk I'll,['set'] -He asked,['for'] -indoors most,['of'] -much depends,['upon'] -advertisement from,['you'] -as likely,['do'] -clean-cut boyish,['face'] -door myself,['because'] -suggest what,['measures'] -bones It,['walked'] -a ring,|['to', 'His', 'at', 'said', 'was,', 'in']| -Savannah Georgia,['will'] -produce your,['confession'] -acting already,['in'] -attention slow,['and'] -that last,['sentence'] -swept off,['his'] -it do,['not'] -came into,|['my', 'mine', 'the']| -a country,|['walk', 'district', 'hedge']| -insufficient It,['was'] -neither favourably,['nor'] -door I,|['let', 'found', 'seemed', 'shall', 'have', 'screamed', 'presume']| -the heels,|['hardly', 'of']| -be inhabited,['at'] -lad and,['before'] -incomplete we,['may'] -the plantation.,['likely'] -Europe To,['speak'] -door when,|['I', 'the']| -tickets had,['the'] -aunt my,["mother's"] -sidelong glance,['no;'] -the cleverness,['of'] -eyes which,|['present', 'seemed']| -never come,['back'] -railway journey,['and'] -your undertaking,['She'] -mood which,['occasionally'] -Watson He's,['not'] -cleared just,['sit'] -little aid,['I'] -lives though,['both'] -flaring stalls,['my'] -tooth or,['a'] -tiniest iota,['from'] -yards off,['he'] -our wants,['and'] -together McCarthy,['had'] -shaking limbs,['came'] -hindrance from,['one'] -loafing men,['at'] -but unfortunately,['I'] -timbered park,['stretched'] -and expected,['obedience'] -envelope which,|['he', 'was']| -Doctor as no,['doubt'] -wait up,['for'] -already remarked,['to'] -Its finder,['has'] -collar turned,['up'] -my return,['I'] -All my,['medical'] -cry brought,['back'] -comes our,['expedition'] -age of,['twenty-one'] -point St.,['Simon'] -evolve before,['your'] -well-nurtured man,['Surely'] -me then,|['but', 'it', 'what']| -innocent why,|['did', 'does']| -side from,['which'] -write letters,['why'] -empty wing,['I'] -the state,['of'] -with sundials,['and'] -should come,|['to', 'late', 'for']| -lad could,['not'] -armed is,['well'] -Cosmopolitan Pray,['step'] -bless my,['soul'] -didn't quite,['like'] -there longer,['without'] -anything without,['your'] -serious indeed,['I'] -already explained,['has'] -them as,['far'] -Frisco found,['that'] -The tip,['had'] -them at,|['a', 'his']| -her little,|['bundle', 'problem', 'income', 'son']| -come in,|['and', 'at', 'You', 'by']| -of grass,['and'] -Ballarat to,['Melbourne'] -came in,|['and', "didn't", 'then', 'by', 'just', 'She', 'but', 'he']| -her imprudence,['in'] -A series,['of'] -greeting with,['a'] -give an,|['air', 'opinion']| -lady who,|['had', 'sleeps', 'is', 'appeals']| -attempt to,|['conceal', 'secure', 'see', 'explain', 'produce', 'recover', 'hide']| -hand warmly,['You'] -Abbots and,['Archery'] -staring out,['at'] -riser as,['a'] -cylinder He,['had'] -his day,['in'] -open throwing,['a'] -what Hugh,['Boone'] -altar Mrs.,['Moulton'] -fresh part,['that'] -shown you,['how'] -so easily,['acquired'] -horrible to,['me'] -Whitney How,['you'] -arm's length,['threw'] -to remember,|['the', 'that', 'every']| -way a,['most'] -suppressing only,['the'] -very thin,|['very', 'with']| -Americans in,['the'] -Behind there,['was'] -has guessed,['Miss'] -little plans,['I'] -a recess,['behind'] -to twenty,['sheets'] -consulting you,['pray'] -way I,|['can', "didn't", 'observe', 'believe', 'saw', 'came', 'am', 'thought', 'was']| -not mad,['I'] -his grounds,['and'] -false position,['He'] -that reason,['that'] -I married,['too'] -even dimly,['imagine'] -might care,['to'] -yours aside,['for'] -noise came,['from'] -Some however,['have'] -think Flora,['would'] -fancies you,['know'] -treble key,['tell'] -Monday I,|['had', 'have']| -pistol shot,['Do'] -any dress,['which'] -lodge I,['think'] -the terror,|['which', 'of']| -Julia went,['there'] -proved that,['he'] -debts In,['the'] -stood on,['the'] -sister thinks,['that'] -do us,['some'] -his tread,['was'] -doors at,['night'] -be expostulating,['with'] -soon he,['found'] -the hand,|['which', 'with', 'type', 'that']| -my cries,['The'] -Frenchman or,['Russian'] -better I'll,['take'] -he died,|['it', 'He']| -France upon,['the'] -most beautiful,['of'] -planned the,['robbery'] -you So,['now'] -it sir,['Mr.'] -from being,|['satisfied', 'out', 'some']| -mould which,['told'] -glass still,['keeps'] -goose now,['and'] -postpone my,['analysis'] -man Horner,|['is', 'the']| -lady entered,['the'] -broadened the,['Scotland'] -a game,['leg'] -John Turner,|['who', 'cried']| -half a,|['crown', 'dozen', 'sovereign', 'column', 'mile']| -by me,['for'] -insisted upon,|['her', 'my']| -by my,|['inspection', 'uncle', "friend's", 'ghastly', 'violence', 'description', 'employer']| -is after,['nine'] -Lodge It,['is'] -smiled and,['shook'] -shall I,|['say', 'do', 'ever']| -excavating fuller's-earth,['which'] -now but,|['you', 'she']| -brought the,|['letter', 'writer', 'gems']| -so obvious,['that'] -raise his,|['hand', 'eyes']| -call purely,['nominal?'] -I'll see,['him'] -inquiries which,['must'] -innocent Let,['the'] -crude your,['example'] -reckless ready,['to'] -wife you said,['that'] -still keeps,['very'] -I'll set,['the'] -go mad,['if'] -had saved,['began'] -banks Mr,['Merryweather'] -gives who,['is'] -DEAREST UNCLE: I,['feel'] -peculiar experiences,['sat'] -bold or,['less'] -spot upon,['my'] -proceeded afterwards,['to'] -effects He,['found'] -one comes,['from'] -but admirably,['balanced'] -criminal man,['has'] -he soothingly,['bending'] -near my,['father'] -credit that,['it'] -newspapers but,['like'] -cleaver said,['he'] -will lay,['before'] -complaint against,['me'] -|did, Doctor|,['but'] -giant dog,['as'] -words but,['I'] -lounging figure,['of'] -composed himself,|['with', 'to']| -please Miss,['Stoper.'] -here began,['to'] -fancy heavens!",['cried'] -am a,|['widower', 'very', 'little', 'practical', 'dying', 'light', 'dangerous', 'hydraulic', 'man']| -and concern,['Mr.'] -was pitch,['dark'] -a groan,['as'] -what woman's,['instincts'] -human nature.,['He'] -precautions can,['guard'] -look a,['credit'] -it clear,['to'] -plain wooden,['chair'] -yet hope,['that'] -noticed with,['a'] -them write,['exactly'] -of who,['you'] -killed however,['before'] -that somewhere,['far'] -making his,|['professional', 'way']| -Hunter had,['described'] -very handy,['me'] -come away,|['to', 'from']| -be on,|['the', 'a']| -sound at,['heart'] -death was,|['seven', 'little']| -harshly is,['he'] -data Insensibly,['one'] -ill that,['his'] -over fifty,['1000'] -on we,['should'] -it last,['night'] -yourself open,['to'] -casting vote,['to'] -labour we,['separated'] -fairly strong,['of'] -the man's,|['wrist', 'face', 'hat', 'excited']| -one whom,['he'] -found herself,|['at', 'While']| -dark hair,['and'] -a flickering,['oil-lamp'] -Pool which,['is'] -supper think,['that'] -the crocuses,['promise'] -him every,['particular'] -lips as,['she'] -cut your,|['hair', 'hair?']| -The game-keeper,['adds'] -however retained,['some'] -know when,|['all', 'you', 'he', 'I']| -and closed,['the'] -the Count,['Von'] -widespread rumours,['as'] -window behind,['him'] -was told,|['me', 'and']| -our lunch,['awaited'] -so pretty,['a'] -away On,['returning'] -form had,['filled'] -to Streatham,|['since', 'and']| -would facilitate,['matters'] -the bags,['Great'] -blazing fiery,['red'] -sheep in,['a'] -whole thing,|['However', 'was']| -chosen inspiring,['pity'] -ft seven,['in'] -altar faced,['round'] -the extreme,|['darkness', 'limits']| -business already,|['said', 'For']| -S H,['for'] -easy when,['the'] -sat beside,['him'] -a desultory,['chat'] -surprise at,['the'] -you also,|['to', 'have']| -big one,['white'] -quite epicurean,['little'] -possession of,|['a', 'the', 'all', 'that']| -correct very,['shortly'] -McCarthy said,['Holmes'] -man sank,['his'] -indirectly responsible,['for'] -like but,["I'll"] -described by,['the'] -you find,|['out', 'you', 'a', 'it', 'them']| -that many,['have'] -fell quite,['distinctly'] -a slice,['of'] -it soon,['as'] -He beckoned,['to'] -were submitted,['to'] -little off,['the'] -dressing-gown his,['bare'] -its bill,['open'] -associated in,['my'] -continually gaining,['light'] -the wintry,['sun'] -been hanged,['on'] -saddles at,['the'] -took two,|['swift', 'steps']| -matter As,['I'] -lead the,['way'] -blame People,['tell'] -brushed the,['cross'] -doubt upon,|['all', 'that']| -third Mrs,['Rucastle'] -Parr the,['second'] -drive starting,['in'] -waited upon,['the'] -another instant,|['he', 'We']| -eye up,['and'] -of ruby,['red'] -dead Oh,['Mr'] -books? she,['asked'] -the brass,['box'] -ease and,['that'] -now. other,['is'] -how quickly,['the'] -several people,|['on', 'in', 'and']| -reported there,['during'] -glance over,['my'] -it may,|['have', 'not', 'be', 'In', 'take', 'prove', 'help', 'grow']| -care in,['the'] -I never,|['felt', 'said', 'mind', 'dared', 'hear', 'went', 'will', 'know', 'heard', 'noticed', 'saw', 'doubted']| -the brandy,['brought'] -girl said,['It'] -my confidant,['the'] -instant entered,['her'] -wind was,['howling'] -lit a,['dark-lantern'] -our homeward,['journey'] -heinous If,['you'] -trained reasoner,['to'] -us had,|['reached', 'I']| -friend will,['not'] -his orgies,['had'] -eventually received,['came'] -got when,['we'] -concisely to,['you'] -therefore I,['am'] -be dry,['presently'] -were really,|['odd', 'accidents']| -all three,|['standing', 'read', 'away']| -serious one,['to'] -run swiftly,['and'] -silly talk,["I'll"] -was clear,|['enough', 'to', 'The']| -figures have,['seen'] -frequently for,['half'] -family ruin,['was'] -gesture of,|['desperation', 'a', 'despair']| -was sealed,['But'] -fly out,['of'] -back He,['was'] -how long,['may'] -streamed the,['light'] -Station Sherlock,['Holmes'] -wrongfully accused,['of'] -family was,['at'] -much interested,['and'] -and glided,['from'] -herself was,['most'] -Drink this,['I'] -settled his,['bill'] -lateness caused,['me'] -appeared upon,['the'] -hat actually,['brushed'] -eat it,|['eat', 'Our']| -the curious,|['voice', 'conditions']| -myself plain,['so."'] -exposure of,['the'] -safer to,['wait'] -it gives,['I'] -as no,['one'] -detective was,['attired'] -way when,['you'] -day after,|['day', 'the', 'I']| -the stones,|['A', 'disappearance,', 'he']| -consider that,|['he', 'she', 'a']| -inquiry is,['it'] -follow up,['this'] -then with,['a'] -place They,['talk'] -was eventually,|['recovered', 'completed']| -to one,|['of', 'thing', 'day', 'side']| -interest then,['lounged'] -stood before,['the'] -some sailor,['customer'] -amid even,['greater'] -will talk,|['about', 'this']| -the only,|['applicant', 'possible', 'other', 'man', 'son', 'one', 'chance', 'native-born', 'geese', 'point', 'passenger', 'daughter', 'gainer', 'problem', 'drawback', 'notable', 'thought']| -Lodge to,['meet'] -the race-meetings,['of'] -in England,|['be', 'He', 'suggests', 'the', 'and', 'dear', 'a', 'I', 'are']| -upon our,|['toast', "visitor's", 'course', 'shoulders', 'humble', 'being', 'increasing', 'way']| -unless our,['doors'] -eventually married,['without'] -silence all,['the'] -must owe,['something'] -waiting who,['wished'] -when she,|['travelled', 'sings', 'comes', 'married', 'has', 'reached', 'hears', 'was', 'meets', 'met', 'complained', 'finished', 'heard', 'saw', 'consults']| -Telegraph it,['is'] -once did,['not'] -himself know,['The'] -stars that,['we'] -are quite,|['new', 'recent']| -cried with,['all'] -a pillow,['beneath'] -given the,['repulsive'] -and filling,['my'] -entreaties hardly,['think'] -guilty one,['shook'] -within assuring,['them'] -exceedingly dusty,['and'] -this deposit,['was'] -Mr Holmes a,['grievous'] -managing it,['but'] -shall then,|['most', 'look']| -fair sum,['of'] -that hypothesis,['will'] -an exposure,['What'] -bars of,|['his', 'an']| -chest of,['drawers'] -girl the,['matter'] -are tired,['and'] -he throwing,['open'] -Hum said,['he'] -interfere come,['what'] -goose which,['is'] -Tankerville Club,['scandal'] -the open,|['window', 'that', 'market', 'skylight']| -Under these,['circumstances'] -put his,|['pipe', 'glass', 'hand', 'two', 'lips']| -loosed the,['dog'] -make out,|['the', 'nothing']| -tall thin,['old'] -aside her,['constraint'] -place clean that's,['all'] -face flushed,['and'] -it returned,|['to', 'Holmes']| -indeed horrify,['me'] -no communication,['between'] -second wedding,['saw'] -sir took,['the'] -the shadow,|['of', 'upon']| -We did,['at'] -he suddenly,|['sprang', 'rolled']| -And what,|['does', 'do', 'conclusions', 'did']| -character however,['and'] -pay him,['but'] -he where's,['your'] -closed like,['a'] -any manner,['indicated'] -away behind,['a'] -in far-gone,['years'] -sweeping bow,|['to', 'and']| -might make,['his'] -spotted my,['man'] -for six,|["o'clock", 'or', 'weeks']| -one upon,['the'] -effect a,['rescue'] -millions of,['red-headed'] -still gesticulating,['but'] -smarter assistant,['Mr'] -gold That,['however'] -elderly gentleman,['with'] -Breckinridge he,['continued'] -asleep your,['very'] -the heaped-up,['edges'] -corridors passages,['narrow'] -straight enough,['I'] -his worst,['We'] -these cases,|['save', 'which']| -been galvanised,['he'] -little talk,['with'] -were likely,['to'] -his conviction,['of'] -These we,['presume'] -might very,['well'] -swung himself,['up'] -accent You,['have'] -sound like,['that'] -a disputatious,['rather'] -might fly,['from'] -sum due,['to'] -impunity Give,['him'] -perturbed at,['the'] -cigarette paper,['was'] -he became,|['a', 'the']| -to fainting,['I'] -Lestrade and,['I'] -and crawled,['swiftly'] -his hard,['deep-lined'] -now?" He,['raised'] -gold whispered,['the'] -made use,['of'] -office during,['that'] -a minister,['in'] -Indian cigars,|['uses', 'which']| -blandly Pray,['take'] -by mortal,['eye'] -lock and,|['bar', 'we']| -counts for,['a'] -age One,['sorrow'] -solemnly to,['both'] -look up,|['at', 'the']| -knees upon,['the'] -in rubbing,['down'] -of absolute,['ignorance'] -custom to,|['smoke', 'discuss']| -incident in,['my'] -body oscillated,['backward'] -slam his,['door'] -shall most,['certainly'] -her name,['She'] -ever again,['be'] -credit to,|['be', 'the']| -A ventilator,['is'] -She passed,['down'] -company with,|['a', 'Flora']| -professional commission,['for'] -laughed until,|['he', 'I']| -married my,|['mother', 'boy']| -all sure,['by'] -not for,|['talk', 'me', 'the']| -into Berkshire,['in'] -of Irene,['Adler'] -face I,|['could', 'have', 'shall']| -quite against,['my'] -of Ballarat,|['is', 'was']| -this written,['above'] -too but,['I'] -have formed,|['some', 'your']| -With an,['apology'] -loud thudding,['noise'] -moustache and,['a'] -forced open,['and'] -calves and,['which'] -ledger upon,['the'] -punishment more,['If'] -by a,|['sharp', 'better', "woman's", 'bright-looking', 'man', 'protestation', 'heavy', 'long', 'left-handed', 'woman', 'very', 'warning', 'steep', 'similar', 'Dane', 'horrible', 'person', 'bet', 'loud', 'gambler', 'correspondent', 'strong', 'frantic', 'park-keeper', 'process', 'mere']| -is McCarthy,['senior'] -others that,['occur'] -it crowded,['in'] -assistant is,['not'] -in fold,['upon'] -post me,['up'] -naturally annoyed,['at'] -ways no,['hair'] -here which,['need'] -go horse?",['interjected'] -guilt but,['in'] -I went,|['off', 'home', 'to', 'under', 'down', 'about', 'out', 'into', 'first', 'but', 'back', 'in', 'and']| -pulled his,['chair'] -Quincey's description,['of'] -him Mother,['said'] -ashes of,['140'] -China and,|['that', 'is']| -box like,['a'] -upstairs instantly,['with'] -near Horsham,|['He', 'It']| -just while,['I'] -toe and,['light'] -imprisonment ay,['even'] -passage-lamp your,['son'] -any effort,['of'] -join in,['it'] -be stopped.,['must'] -bears upon,|['the', 'my']| -Club scandal,['of'] -for Church,['of'] -whispered jerking,['his'] -unavenged Why,['Watson'] -rails I,['glanced'] -you good-night,['and'] -|is, of|,['course'] -trained myself,['to'] -garment was,['a'] -the care,['of'] -moment's notice,['To'] -For my,['part'] -home was,['in'] -Savannah but,['none'] -could easily,|['do', 'get', 'give']| -own writing,['well.'] -people perhaps,['to'] -Holmes example,['and'] -He wouldn't,['have'] -maybe if,['you'] -felony but,['it'] -|stood," said|,['Holmes'] -chair beside,['him'] -too perhaps,['we'] -your train,['Yours'] -change my,|['position', 'dress']| -pounds for,|['the', 'every']| -wrung his,['hands'] -large room,['stretching'] -my highly,['respectable'] -like her,['he'] -a surpliced,['clergyman'] -vanished as,['suddenly'] -two dozen,|['from', 'for']| -there turning,['over'] -across from,|['side', 'west']| -unknown gentleman,['who'] -glancing into,['the'] -vacancy was,['filled'] -makes a,['considerable'] -the betrothal,['was'] -fed for,['two'] -did my,['best'] -after it,['was'] -whispered Walk,['past'] -taken down,['the'] -Lady Alicia,['Whittington'] -too might,['be'] -really odd,['ones'] -men waiting,['for'] -back with,['his'] -easy until,['I'] -good-night.' I,['kissed'] -of See,['here'] -She little,['knew'] -shadow of,|['a', 'the']| -end HUNTER.",['you'] -|here, Watson|,['he'] -lit his,['pipe'] -broad one,['and'] -abusive expressions,['towards'] -was Frank,['so'] -swish of,['the'] -you coming,['downstairs'] -you As,['he'] -John's Wood,['took'] -street was,['an'] -understand little,['to'] -found upon,['the'] -to devote,['the'] -eyes bent,['upon'] -are seventeen,['steps'] -groan as,['she'] -a technical,['character'] -me abruptly,|['into', 'and']| -train. to?,|['Eyford,']| -peace well,['and'] -Pentonville One,['day'] -my grandfather,['had'] -tug it's,['a'] -Friday evening,['which'] -round shape,['hard'] -profession This,['man'] -of breath,['for'] -shall seek,['it'] -deal However,['I'] -your having,|['gone', 'it']| -akimbo what,['are'] -smashed the,['shop'] -with being,['concerned'] -strong nature,|['when', 'wild']| -on neither,['collar'] -LEAGUE On,['account'] -he comes,|['if', 'Sit', 'back']| -|Oakshott, 117|,['Brixton'] -and chin,['and'] -and inconsequential,['narrative'] -goose My,['heart'] -A moment,['later'] -and drew,['from'] -own police,['When'] -goose Mr,['Holmes'] -very possible,['that'] -John we,['shall'] -thoroughly It,['was'] -want said,['I'] -laughing but,['since'] -half the,|['doctors', 'night']| -is very,|['bad', 'fortunate', 'serious', 'clear', 'suggestive in', 'possible', 'much', 'probable', 'ill', 'unlike', 'ingenious', 'well', 'interesting', 'absurd', 'essential', 'kind', 'awkward', 'natural', 'rich', 'expressive', 'good', 'anxious', 'obvious']| -as so,|['many', 'serious']| -been for,|['him', 'my', 'better']| -a loss,['to'] -continued buttoning,['up'] -back or,['a'] -I approached,|['the', 'me,']| -back on,|['the', 'its']| -His signet-ring,['you'] -grew the,['poorer'] -locality appeared,['to'] -back of,|['that', 'one', 'Tottenham', 'me']| -break down,['We'] -as before,['myself'] -either a,['lover'] -pennies varied,['by'] -duty which,['I'] -|you believe,|,['Mr'] -During all,['the'] -Crowder a,['game-keeper'] -circle But,['then'] -am about,['to'] -swelled up,['louder'] -morning until,['four'] -the coat's,['sinking'] -other fashion,['certainly'] -at midnight,|['of', 'and']| -the hydraulic,|['press', 'engineer']| -chin sunk,['upon'] -moody silence,['which'] -bottom of,|['the', 'my']| -speech of,['his'] -fine theories,['Good-day'] -a feather,['of'] -answered turning,['away'] -veil I,['suddenly'] -not convinced,['of'] -were lounging,['up'] -your co-operation,|['shall', 'and', 'I']| -of visiting,['the'] -gigantic column,['of'] -MR. HOLMES: I,['am'] -he perched,['himself'] -day a,|['gold', 'stream', 'light']| -state of,|['things', 'reaction', 'excitement', 'agitation', 'nervous', 'affairs', 'insensibility']| -round him,|['this', 'and', 'when']| -had on,|['hand', 'neither']| -round his,|['house', 'head']| -a regular,['prison'] -Wilson This,['assistant'] -very unusual,['thing'] -day I,|['took', 'was', 'want', 'tossed']| -I didn't,|['know', 'quite', 'want', 'observe', 'fall', 'drop']| -me destitute,['as'] -Holmes dryly,['circumstances'] -policy in,['extending'] -probably return,['to'] -my man,|['it', 'so', 'however']| -but none,|['the', 'of', 'which', 'ever', 'commonplace']| -plugs and,['dottles'] -their maintenance,['It'] -return by,['the'] -why should,|['I', 'you', 'she', 'he', 'not', 'your']| -there came,|['a', 'doubtless']| -still puffing,|['at', 'still']| -that it,|['means', 'is', 'was', 'seemed', 'would', 'may', 'has', 'disappeared', 'should', 'had', 'helps', 'twinkled', 'flew', 'formed', 'must', 'might', 'will', 'did', "won't"]| -in chief,['over'] -enter Dr,["Roylott's"] -an exhilarating,['nip'] -but Hosmer,['was'] -a weapon,|['which', 'like']| -play A,['sandwich'] -an income,['of'] -that if,|['the', 'there', 'I', 'they', 'we', 'both', 'it', 'anyone', 'she']| -the jury,|['too', 'having', 'had', 'stated']| -must open,['the'] -rough one,['too'] -that in,|['every', 'less', 'your', 'such', 'spite', 'his', 'which', 'this', 'a', 'these']| -carriage drove,['away'] -letter with,['a'] -him up,['for'] -the engagement,['when'] -supply St.,['Simon'] -a crown,|['a', 'Look']| -some there,['and'] -was safe,|['in', 'and', 'for', 'with']| -however have,|['already', 'been']| -play a,|['deep', 'considerable']| -But pray,['tell'] -further evidence,['I'] -submit the,['whole'] -the railings,['which'] -evidence showed,['that'] -|bred then,|,["you've"] -some difficulties,['No'] -Head attendant,['at'] -soon saw,['I'] -was founded,['by'] -jewel with,['me'] -ones upon,['the'] -only his,['trousers'] -upon us,|['like', 'dear']| -into an,|['armchair', 'insinuating', 'envelope', 'agency', 'empty']| -lack-lustre eye,['turned'] -struck savagely,['at'] -indicate some,['evil'] -No it,['was'] -heart that,['had'] -see how,|['you', 'strongly', 'quickly', 'they', 'it', 'all', 'the', 'he']| -oil-lamp above,['the'] -smoke-rocket fitted,['with'] -Street buried,['among'] -plain tale,['He'] -premature grey,['and'] -such body,['Then'] -very heads,['of'] -are rumours,['of'] -the wrist,|['and', 'where']| -anything being,['found'] -open. I,['am'] -the baying,['of'] -facts most,['directly'] -a brother,['or'] -gentlemen are,|['flying', 'badly']| -a coat,|['of', 'to', 'alone', 'which']| -first how,['I'] -Simon to,|['honour', 'me seemed']| -a gale and,['now'] -our expedition,|['Might', 'of']| -promise to,|['come', 'keep', 'you']| -taken opium,|['you,']| -of society,|['with', 'Most', 'I']| -large number,|['of', 'merely']| -country hotel,['abomination'] -glare flashing,['into'] -woman I,|['have', 'knew', 'believe']| -a benefactor,['of'] -hanging from,['your'] -for My,['friend'] -was late,|['before', 'in']| -we approached,|['the', 'it']| -six years,['old'] -The road,|['topped', 'is']| -or even,|['of', 'two']| -calling him,['names'] -have baffled,|['his', 'all']| -recovered his,|['consciousness', 'senses']| -powerful and,['well-nurtured'] -was acted,['in'] -back? Well,['we'] -of brace,['of'] -is hung,['and'] -from London,|['when', 'East', 'and', 'the', 'to', 'in']| -a Mr,|['Godfrey', 'John']| -kind say,['it'] -having had,['an'] -door God!",['he'] -fainting in,['the'] -deadly black,['shadow'] -his neck,['With'] -quick I,['understand'] -to resist,|['angry,']| -decide upon,['our'] -been said,['during'] -been nearer,['twelve'] -plantation where,['he'] -a bridge,['for'] -those criminals,['were'] -pallor of,['her'] -Wait in,['patience. NEVILLE.'] -missing stones,['may'] -his shoes,['I'] -uttering very,['abusive'] -found ourselves,|['in', 'as', 'at']| -salesman then,['mister'] -cried thief!',['I'] -of us,|['as', 'and', 'he', 'placed', 'so', 'me', 'If', 'Just', 'she', 'is', 'who', 'with', 'in', 'while', 'through', 'We', 'could', 'He', 'spouting', 'had', 'care', 'but']| -have reason,['to'] -billycock but,['as'] -capacity said,['he'] -again be,['happy'] -observed to,|['be', 'turn']| -which might,|['throw', 'be', 'have', 'help', 'seem', 'suit']| -having thumped,['vigorously'] -shadow might,['not'] -he told,|['me', 'us', 'inimitably']| -followed them,|['from', 'up']| -who lounged,['round'] -marks and,['have'] -wherever Sir,['George'] -whole party,['proceeded'] -in hand,['hover'] -Amoy River,['in'] -which hung,['down'] -fire Then,['he'] -are sent,['over'] -from McCarthy,['junior'] -shoving him,['back'] -that Francis,['H'] -of flesh-coloured,['plaster'] -with red-headed,['folk'] -Has only,['one'] -ceased to,|['enter', 'love', 'strike', 'be']| -miles off,|['was', 'by']| -ears I,['am'] -attention of,|['whoever', 'the']| -taller by,['his'] -new visitor,['taking'] -For seven,['hours'] -which drove,['him'] -the farms,['which'] -be nothing,['to'] -out while,['I'] -the passage-lamp,['your'] -troopers and,['six'] -them can,['you'] -of gipsies,['who'] -drove for,|['four', 'at']| -seared into,['my'] -|was." good-night,|,['your'] -bonny thing,['said'] -tie I,['distinctly'] -until his,|['new', 'eyes']| -hit upon,|['the', 'some']| -make in,['the'] -Street rooms,|['although', 'to-morrow']| -We live,['very'] -shall walk,|['down', 'out']| -make it,|['clear', 'self-lighting', 'all', 'a', 'clearer', 'out']| -energy Holmes,['had'] -they cannot,['tell'] -hear there,['has'] -see any,|['connection', 'of']| -vestas Some,['little'] -slumber Holmes,['stooped'] -found matters,['as'] -a rat,|['in', 'Coroner:', 'and', 'What', 'He', 'could']| -study his,['system'] -niece knew,['nothing'] -of stepping,['in'] -it left,['behind'] -thinking that,['I'] -every particular,|['He', 'that']| -his cheeks,|['and', 'was']| -a damning,['series'] -enough When,['a'] -Kill it,['and'] -pay good,['money'] -A sandwich,['and'] -come cheap,|['half-wages,']| -without looking,['Then'] -mean the,['little'] -the better,['classes'] -mind said,['Miss'] -bills were,['all'] -never will,|['be', 'again']| -morning visitor,['I'] -was howling,['outside'] -love and,|['am', 'gratitude']| -It makes,|['a', 'you']| -came doubtless,['from'] -minutes to,|['twelve', 'the', 'accompany']| -excellent argument,['with'] -characteristic defects,['The'] -father My,['God'] -frightened by,['their'] -tailless but,['you'] -evidence of,['this'] -I at,|['last', 'the', 'his', 'once']| -is entirely,['a'] -I often,['take'] -I as,|['I', 'we']| -and wallowed,['all'] -and letters,['who'] -as large,['as'] -rubber It,['is'] -inn and,['drove'] -news this,['morning'] -companion out,['of'] -be chaffed,['by'] -you. mind.,["I'll"] -highroad where,['all'] -exposed to,['such'] -far out,['in'] -crest and,['monogram'] -at one,|['door', 'time', 'side', 'end', 'of']| -you went,|['for', 'out']| -watched this,['Lascar'] -much knowledge,['of'] -boy brought,['round'] -yell of,['pain'] -a flight,['of'] -simplest means,['first'] -away There,['he'] -most expensive,['hotels'] -Hunter that,['we'] -printed slip,['to'] -the geese?,|['and', 'One']| -danger said,['our'] -abutted on,|['the', 'our']| -pleasant fashion,['until'] -red or,|['dark', 'anything']| -intrusions into,['his'] -see and,['came'] -hands before,|['his', 'I']| -cocaine injections,['and'] -the custody,['of'] -American millionaire,['Ezekiah'] -the freedom,['which'] -so simple,|['as', 'a', 'and']| -your case,|['he', 'for', 'considerably', 'unfinished', 'is', 'shall', 'as', 'every']| -side-alley of,['human'] -MR SHERLOCK,|['HOLMES, You', 'HOLMES: Lord']| -sketch out,['at'] -now inhabited,['The'] -for example,|['that', 'What', 'as', 'We']| -and ruthless,['man'] -of nervous,['tension'] -height with,['the'] -get back,|['the', "Don't"]| -course of,|['events', 'a', 'keeping', 'the', 'action', 'lectures']| -open He,['drew'] -lie back,['limp'] -Mr Fowler,|['at', 'was']| -door he,|['brought', 'did']| -in Northumberland,['Avenue'] -secret society,['was'] -he It,|['makes', 'appeared', 'is']| -hurried by,['heard'] -among employers,['in'] -material a,['sort'] -incidents of,|['the', 'which']| -bell-rope and,['what'] -much to,|['say', 'do', 'the', 'pack']| -some very,|['strong', 'bulky']| -was carrying,['was'] -An important,['addition'] -as merry,['and'] -cold precise,['but'] -and shirt,['you.'] -lid from,['it'] -actor even,['as'] -once went,['very'] -court to,['decide'] -glance at,|['our', 'each', 'my']| -humming a,['tune'] -convulsion seized,['her'] -so And,|['then', 'if']| -anyone of,|['our', 'my']| -living with,['my'] -met on,['the'] -without some,|['little', 'advice']| -nucleus and,['focus'] -heavily into,|['it', 'the']| -boomed out,['every'] -garden has,['already'] -to marry,|['them', 'my', 'anyone', 'him']| -case there,|['is', 'are']| -companion Holmes,['had'] -Now he,|['said', 'looks']| -photograph And,['she'] -you wish,|['Mrs.', 'it', 'to', 'me']| -dark lantern,['sit'] -me these,['twenty'] -marriage had,['drifted'] -looking out,|['of', 'was']| -room in,|['uncontrollable', 'which', 'his']| -those letters,|['back', 'come', 'first']| -and shouted,['through'] -the Allegro,|['and', 'I']| -and thank,['our'] -questioning an,['eye'] -were past,['Reading'] -sat staring,['with'] -inflamed face,['and'] -the wagons,['on'] -then is,|['my', 'a']| -the weird,['business'] -take the,|['first', 'matter', 'knee', 'senders', 'flies', 'basket-chair', 'place']| -days at,['Bristol'] -conversation soon,['flagged'] -services to,['one'] -murder There,['were'] -truth is,['known'] -accident during,['the'] -to meet,|['her', 'him', 'at', 'it', 'cried', 'us', 'you.', 'an']| -blow has,['always'] -cloth and,['glimmer'] -the crime,|['the', 'was', 'His', 'that', 'and']| -looks like,|['one', 'it']| -avenue gate,['and'] -have thought,|['a', 'there', 'that', 'was', 'sometimes']| -their isolation,['and'] -only my,|['carriage', 'honour']| -acid upon,['his'] -caraffe was,['useless'] -bore every,['mark'] -simple case,['to'] -the horse,|['with', 'want', 'on', 'could', 'was']| -of Briony,['Lodge'] -every morning,|['in', 'and', 'emerge']| -own age,|['But', 'and']| -But a,['human'] -was keeping,['but'] -other building,['far'] -the bulky,['Jones'] -the usual,|['symptom', 'country', 'routine', 'round']| -ideas of,['whistles'] -more Just,['a'] -die for,['Church'] -him no,|['it', 'harm']| -lady is,|['correct', 'walking']| -matter then,['Can'] -was formerly,['a'] -I concealed,['a'] -stood one,['morning'] -But I,|['am', 'hear', 'want', 'must', 'see', 'would', 'take', 'who', 'think', 'shall', 'presume', 'have', "don't", 'cannot']| -lip had,['fallen'] -he tried,|['to', 'the']| -home from,['an'] -may absolutely,['depend'] -great sympathy,['for'] -seek the,['company'] -half-dozen at,['the'] -county coroner,['asked'] -within earshot,['The'] -deeply moved,['eye'] -fit was,['on'] -white-aproned landlord,['beer'] -baby an,['unmarried'] -she refers,['in'] -other up,['to'] -other clients,['the'] -barricaded door,['corresponded'] -Britannica. Vincent,['Spaulding'] -of chestnut,['It'] -strong-set aquiline,['features'] -your bedroom,['the'] -With trembling,['hands'] -vague theories,['cried'] -the variety,['which'] -iron the,['walls'] -lived sister,['had'] -quest upon,['which'] -|pray, sit|,['down'] -answer for,['your'] -not you,|['who', 'are']| -spent so,['short'] -fat manager,['and'] -more piquant,['details'] -lips to,|['reply', 'my', 'tell']| -modern said,['the'] -Holmes going,['back'] -habits He,['learned'] -gipsy had,['done'] -sink and,['I'] -rake I,['thought'] -humbler are,['usually'] -and start,['for'] -his vows,['to'] -for he,|['sprang', 'is', 'was', 'said', 'had', 'asked', 'soon', 'appears', 'has', 'may', 'raised', 'loves', 'explained']| -face opened,['a'] -sitting-room at,|['Baker', 'the']| -slept Imagine,['then'] -shot out,|['of', 'in']| -our Continental,['Gazetteer'] -offered a,|['field', 'reward']| -this should,['do'] -of limb,['I'] -of every,|['vessel', 'man', 'portion']| -lamp-post and,['laughed'] -is London eastern,['division'] -his supposed,['suicide'] -country roads,['seem'] -damp was,['breaking'] -you please,|['sir', 'and', 'He', 'Mr', 'Miss']| -we crossed,['over'] -by putting,['it'] -success I can,['hardly'] -such times,['I'] -was sixteen,['I'] -and drive,['to'] -in man,['who'] -let me,|['congratulate', 'know', 'just', 'preach', 'expound', 'live', 'do', 'out', 'have', 'say']| -looking a,['little'] -degree and,|['which', 'went']| -however was,|['but', 'out', 'extremely', 'given', 'curled', 'too', 'leaning']| -dwelling On,['the'] -light and,|['being', 'looked', 'we', 'attacked', 'the']| -dead do.",["don't"] -satisfied are,['very'] -destroyed by,['Colonel'] -while I,|['eat', 'still', 'fix', 'am', 'watched', 'at', 'conduct', 'sat', 'continue', 'satisfy', 'take']| -delay Its,['finder'] -suggested Holmes,['that'] -His knees,['were'] -asked she,['has'] -before his,|['crackling', 'rival', 'mother']| -before him,|['that', 'Just', 'who']| -ever met,['Vincent'] -disliked the,['intrusion'] -he realised,['how'] -one locked,['I'] -than this,|['morning', 'perhaps,']| -not. came,['in'] -cause is,['excellent'] -sign of,|['it', 'his', 'a', 'any', 'him', 'cuff', 'the']| -while a,|['number', 'woman']| -to someone,['in'] -came home,|['in', 'and', 'from']| -very unlike,['his'] -the old,|['town', 'and', 'trick', 'Persian', 'country', 'days', 'man', 'papers', 'hat "but', 'ancestral', 'family', 'park', 'room', 'English']| -horror It,['is'] -contrary this,['is'] -appeared before,['the'] -got fairly,['to'] -Bridge heard,['a'] -of sodden,['grass'] -sleepers from,['their'] -That the,|['writer', 'man']| -and McFarlane's,['carriage-building'] -exercise I,['feel'] -went up,['to'] -necessary I,['have'] -his calves,['and'] -above On,['entering'] -to Philadelphia,['Mr'] -night is,['over'] -sorry for,['having'] -just be,['in'] -wife I,['did'] -society was,|['formed', 'coincident']| -not give,|['He', 'in']| -Angel Windibank,['gave'] -woman may,['be'] -he You,|['may', 'will', 'can', 'are']| -expense over,['this'] -door that is,['to'] -this lonely,['woman'] -the injury,['as'] -did some,['shopping'] -cheerily My,['name'] -where she,|['can', 'found', 'fattened', 'sat', 'is']| -marriage during,['the'] -complete truth,['At'] -anger that,['if'] -silver have,['known'] -parted blinds,['gazing'] -she How,['do'] -the volume,['that'] -we provide,['this'] -she whispered,['get'] -requested then?",['is'] -and freemasonry,['among'] -moist earth,['To'] -the Crown,|['Inn', 'good.']| -|sir, you|,['are'] -the lady,|['on', 'who', 'but', 'and', 'loves', 'had', 'she', 'herself', 'as', 'to', 'is', 'I', 'about', 'even', 'did', 'could', 'Frank', 'lived']| -as Openshaw,['did'] -eddy between,['the'] -to-night There,['is'] -a cloud,|['in', 'of']| -violin-player boxer,['swordsman'] -inherit Plantagenet,['blood'] -upon either,['side'] -followed Coroner,['That'] -a dressing-table,['on'] -news has,['consoled'] -the cigar-holder,['could'] -was recalled,['to'] -in for,['felony'] -thing than,['fog'] -again was,['a'] -clearing James,['McCarthy'] -thing that,['put'] -walked both,['ways'] -This case,['I'] -every vessel,['which'] -is covered,['at'] -by wearing,['it'] -queen Is,['it'] -Had this,['lady'] -to propound,['one'] -the devil,|['he', 'together', 'ejaculation']| -was crushed,['in'] -a pencil,['and'] -the six,['figures'] -immense strength,['and'] -house As,|['we', 'well']| -down want,['to'] -detective indifferent,['and'] -a widespread,['comfortable-looking'] -bitter night,['so'] -apology and,['left'] -Bristol It,['was'] -case although,['what'] -affectation that,['the'] -dog who,['is'] -enter through,['the'] -drawing the,['veil'] -with you,|['alone', 'three', 'if', 'I', 'a', 'yes,', 'that', 'presently', 'to-night', 'have', 'in', 'Bradstreet', 'just', 'you', 'as', 'however', 'but', 'and']| -of old,|['Putting', 'gold', 'trunks', 'country-houses']| -me why,['I'] -was invariably,['locked'] -trousers Yet,['his'] -have openly,['confessed'] -did saw,['nothing'] -did manual,['labour'] -McCarthy laid,['his'] -the conversation,['soon'] -then gentleman,['I'] -the Southern,['states'] -revolver into,['your'] -exit could,['be'] -a barred,|['door', 'tail', 'tail?']| -order you,|['use', 'a']| -the thumb,|['instead', 'should']| -went away,['has'] -Sherlock Holmes,|['succinct', 'were', 'by', 'I', 'staggered', 'Esq', 'Then', '', 'one', 'said', 'name', 'stopped', 'Here', 'that', 'as', 'welcomed', 'with', 'impatient', 'alone', 'and', 'cases', 'was', 'she', 'You', 'insight', 'returned', 'sat', 'bending', 'had', 'He', 'requests', 'For', 'upon', 'laughing', 'It', 'finger-tips', 'standing', 'This', 'ran', 'leaning', 'for', 'before', 'pulled', 'the', 'left', 'stepped', 'pushed', 'rather', 'tossing', 'sprang']| -lead me,['down'] -door saluted,['him'] -deceased wife,['said'] -of joy,|['our', 'was']| -dry presently,['You'] -that clue,['entering'] -weaver by,['his'] -it rose,['can'] -the investigation,|['which', 'into']| -individuality as,['a'] -keen desire,['to'] -following a,["will-o'-the-wisp"] -gang and,['a'] -the signs,['of'] -my facts,['most'] -all off,['colour'] -more clearly,['what'] -much of,['what'] -he you,|['shall', 'find', 'will', 'must']| -cut and,|['that', 'the']| -your filthy,['hands'] -cynical speech,['and'] -stale and,['unprofitable'] -your cry,['of'] -dressing-table Holmes,['took'] -half turned,['and'] -fall the,['guardsmen'] -of foolscap,['paper'] -England He,['begged'] -then pressing,['my'] -to solve,|['so', 'is', 'this']| -I handing,['it'] -foresaw some,['danger'] -five hundred,|['pounds', 'to-morrow']| -advertisement in,['all'] -have very,['little'] -never heard,['of'] -new role,['I'] -I sold,['my'] -cinder with,['the'] -for and,|['were', 'above']| -at another,['formidable'] -then sir;,['for'] -visitor We,['never'] -start that,|['upon', 'the']| -not mistaken,|['to', 'Boots']| -contained that,['which'] -rummaged and,['read'] -to force,|['her', 'the']| -the inspector,|['of', 'has', 'was', 'realise', 'remained', 'Here', 'had', 'certainly', 'if', 'He', 'it', 'with', 'you', 'laughing', 'They', 'and']| -this Hosmer,['Angel'] -step brisk,['and'] -done the,|['thing', 'same']| -us because,['it'] -a theory,|['not', 'tenable']| -a painful,['and'] -a cigarette,['and'] -of tea,|['I', 'only']| -of ten,['miles'] -lantern Over,['the'] -cut his,['head'] -when he,|['became', 'speaks', 'refers', 'ought', 'died', 'was', 'might', 'suddenly', 'comes', 'parted', 'would', 'saw', 'made', 'had', 'enters', 'shook', 'wrote', 'returns', 'hears', 'returned', 'entered', 'felt', 'came']| -backward For,['an'] -as good,|['as', 'a']| -left save,['a'] -which corresponds,['to'] -and stepped,['himself'] -scenes and,['under'] -dashing up,['Wellington'] -died she was,['killed'] -words came,['to'] -being discovered,['I'] -their work,|['the', 'Then']| -energetic nature,['and'] -confessed to,['having'] -false alarm,|['Slipping', 'she']| -a dark,|['silhouette', 'earth-smelling', 'lack-lustre', 'figure']| -been quite,|['willing', 'drunk']| -mad or,['dreaming'] -place without,['a'] -the current,['of'] -some villainy,['here'] -adventuress Irene,['Adler'] -tossing aside,['the'] -his reason,|['for', 'Then']| -sir Dr,['Becher'] -dreadful sentinel,['sent'] -out put,['on'] -the Strand,|['right,']| -first volume,['of'] -Now Mr,|['Jabez', 'Wilson']| -certainty that,|['something', 'it']| -rat and,['the'] -thirty now,['must'] -and Architecture,['and'] -threw any,['light'] -and sly-looking,['was'] -Mr Wilson,|['has', 'you', 'I', 'off', 'it', 'Never', 'that', 'Have', 'This']| -was walking,|['alone', 'and', 'down', 'in']| -crime The,['front'] -line asking,['me'] -hand that,['lay'] -chair he,['watched'] -end wall,|['and', 'were']| -lock the,['wine-cellar'] -lost if,['I'] -good. I,|['answered', 'shall']| -hurried from,|['the', 'there']| -too as,['he'] -I visited,['in'] -discovery that,['this'] -explanation have,['devised'] -opened from,['below'] -sobbed like,['a'] -result I,|['only', 'remarked', 'feel']| -certainty Circumstantial,['evidence'] -inconvenience you,['Yours'] -hang from,|['it', 'a']| -awakened me,['I'] -forgo his,['Bohemian'] -I always,['was'] -slowly and,['heavily'] -boarding-school what,['does'] -start with,['a'] -brains to,|['find', 'crime']| -old books,['and'] -Your news,['of'] -was goading,['him'] -Godfrey Norton,|['of', 'was', 'came', 'bachelor', 'as']| -freed during,['the'] -occipital bone,['had'] -chamber That,['is'] -said beautifully,['situated'] -problem we,['have'] -soothing sound,['like'] -Clair I,['was'] -blind as,['a'] -self under,['obligations.'] -to reach,['the'] -deuce that,['could'] -sir; for,['he'] -|me, Helen|,['said'] -head terribly,['injured'] -very remarkable,|['narrative', 'inquiry']| -Mr Holmes,|['answered', 'he', 'and', 'I', 'From', 'for', 'especially', 'but', 'sir', 'said', 'she', 'when', 'We', 'He', 'It', 'do', 'you', 'this', 'Step', 'called', 'that', 'The', 'Flora', 'came', 'which', 'Where', 'Do', 'my', 'the', 'in', 'how', 'My', 'cried']| -years old,|['These', 'It', 'at', 'Oh']| -the laugh,['was'] -prisoner among,['the'] -Round one,['of'] -I raise,['my'] -listened with,|['the', 'a']| -black-haired and,['smooth-skinned'] -Now the,['question'] -fatal night,['Dr'] -may give,|['him', 'an']| -school companion,['We'] -then diving,['down'] -the cloth,['was'] -of steel,['She'] -older than,|['myself', 'me', 'himself', 'Arthur']| -joke for,['them'] -letter and,['the'] -seriously wronged,['by'] -you intend,['to'] -walks but,['after'] -with interest,|['ten', 'said']| -up against,['that'] -to China,['When'] -James didn't,['do'] -interest could,['anyone'] -its beauty,['during'] -lengthy visit,['to'] -an elderly,['woman'] -a second,|['thought', 'double']| -loss to,['know'] -little stimulant,|['you,"']| -south-west I,['see'] -apiece There's,['money'] -thin sad-faced,['man'] -my mouth,|['than', 'and', 'It']| -asked quest,['is'] -eligible yourself,['for'] -sequence of,['events'] -had said,|['extremely', 'that', 'to']| -|yes, mother|,['is'] -stock paying,['4'] -Holmes From,['north'] -a neat,['little'] -dreadful hours,['might'] -proof of,|['a', 'the']| -It cuts,['into'] -|yes, easily|,['rest'] -women are,['Mr'] -considerable state,['of'] -and discovered,['the'] -you found,|['the', 'so', 'me', 'yourself']| -it intently,['I'] -mad unreasoning,['terror'] -my refusal,['you'] -picked myself,['up'] -be conspicuous,['Very'] -|yours so,"|,['he'] -along with,['a'] -very weary,['and'] -pair which,['he'] -searching gaze,['She'] -so You,['have'] -so bound,['to'] -once when,['I'] -the loop,['of'] -the bottom.,['shall'] -the bleeding,['came'] -sailing-ship It,['looks'] -the symptoms,['Ha'] -Holmes drove,['in'] -magnifico you,['know'] -behind the,|['high', 'curtain']| -calling the,['attention'] -peep in,['at'] -and please.,['right'] -is surely,['very'] -commission as,['that?'] -but though,['I'] -commenting upon,['it'] -good three,['pound'] -possible reason,['As'] -yes. Save,['perhaps'] -forecastle of,['an'] -cheerful frame,['of'] -shade whiter,['He'] -right time,['Is'] -avoid scandal,['thought'] -control am,['sorry'] -Hold up,['man'] -finally secure,['the'] -cocked pistol,['in'] -no property,['of'] -answered said,['Holmes'] -paced to,['and'] -short before,['you'] -conceal yourselves,['behind'] -he touching,['me'] -averse to,|['its', 'it', 'a', 'the', 'this']| -am afraid,|['so', 'that', 'said', 'not', 'the', 'Holmes']| -for words,['A'] -border of,|['the', 'Surrey']| -some scruples,['as'] -the threshold,|['the', 'at']| -you getting,['on'] -thank goodness,['she'] -and butted,['until'] -pile There,['is'] -less suggestive,['than'] -be dull,['indeed'] -by sitting,['upon'] -goose came,['from'] -lining The,['lens'] -Turner himself,['was'] -pick for,['40'] -beds I,['presume'] -their authenticity,['is'] -inhabited at,['all'] -being concerned,['in'] -white cardboard,['about'] -not inconvenience,['you'] -at their,|['wits', 'last']| -simple a,['question'] -page from,['some'] -him sir.,['I'] -the medical,['profession'] -good stone,['is'] -they stole,['I'] -Winchester to,['meet'] -the tags,['of'] -upon that,['point'] -much then,['so'] -which occasionally,['predominated'] -asked you,|['Jones', 'please']| -her cheeks,['all'] -marrying his,['son'] -define it,['said'] -prisoner he,['remarked'] -behind me,|['could', 'which', 'and', 'but', 'Bankers', 'I', 'She', 'clutching']| -to Warsaw,['I'] -remarked the,|['thing', 'other', 'initials', 'driver', 'plain-clothes', 'strange']| -matters stand,['it'] -sat on,['either'] -this narrow,['wing'] -faculties of,['deduction'] -bath and,['I'] -but affectionate,['and'] -my feelings,['I'] -behind my,['back'] -But really,['I'] -it As,|['to', 'I', 'Cuvier']| -sun was,['shining'] -repaid by,['having'] -your check-book,['Here'] -Holmes judgment,['that'] -the highroad,|['where', 'and', 'at']| -it indeed?",['murmured'] -must pack,['at'] -the Countess,|['of', 'to', 'was', 'deposed']| -colonies so,['that'] -it An,['ordinary'] -the Copper,['Beeches'] -ventilator before,['ever'] -it Ah,['me'] -business part,['of'] -single sheet,['upon'] -great yellow,['blotches'] -lap and,|['made', 'as', 'throwing', 'a']| -quick feminine,['eye'] -was frightened,|['and', 'of']| -much chaffering,['I'] -from California,['with'] -pikestaff and,['the'] -data which,['may'] -a return,['ticket'] -text and,['the'] -found Briony,['Lodge'] -usual symptom,['is'] -was decoyed,['away'] -flying across,['a'] -heart which,|['was', 'I']| -compressed lip,['to'] -heard me,['remark'] -Allegro I,['have'] -publicity On,['the'] -difficulty heh?,['should'] -in order,|['to', 'that']| -performed at,['St'] -friends to,['hush'] -get there,['before'] -the terrible,['event'] -this table,|['and', 'on']| -absorb all,['my'] -the slide,['across'] -the brown,['opium'] -mother a,['woman'] -deal upon,['her'] -amused by,['her'] -profoundly true,['Singularity'] -dwell upon,['it'] -consternation by,['the'] -over you,['in'] -bouquet of,['her'] -loves art,['for'] -most part,['with'] -jumping a,['claim.'] -safe in,['his'] -dangerous men,['in'] -proceedings fainted,['away'] -are important,['you'] -at scratch,['and'] -crib in,['Scotland'] -the printed,['description'] -without noting,['anything'] -that when,|['she', 'Mr', 'I', 'they', 'Whitney', 'you']| -not personally,['threatened'] -You must,|['not', 'find', 'yourself', 'act', 'get', 'put', 'also', 'assert', 'be', 'have', 'lock']| -little methods,['which'] -answered I,|['should', 'do', 'have']| -gang of,['roughs'] -leg have,['an'] -her ways,['so'] -the deep,|['blue', 'mystery', 'chalk-pits', 'tones', 'toe']| -indebted to,['you'] -A mole,['could'] -printed the,['treble'] -his stepdaughter's,['marriage'] -could but,|['silence', 'recover']| -there should,['be'] -that quite,['settles'] -and original,['observer'] -have not,|['observed', 'much', 'seen', 'been', 'heard', 'had', 'offered', 'yet', 'come', 'It', 'You', 'a', 'treated', 'you', 'sat']| -have now,|['taken', 'been', 'married', 'fled']| -Neville is,['alive'] -roofs of,['the'] -and cut,['him'] -quarters at,['Baker'] -cocked upon,['the'] -morning. that,['my'] -who finds,['himself'] -right he,['cried'] -me names,['enough'] -keys which,['are'] -Von Kramm,|['a', 'I']| -she rose,|['to', 'hurriedly']| -her injured,['wrist'] -remarked after,['a'] -A mad,['unreasoning'] -Therefore it,['is'] -it here,|['and', 'with', 'in', 'is']| -know some,['of'] -A man,|['dying', 'had']| -after eleven,["o'clock"] -week in,['order'] -span it,['across'] -no means,|['obvious', 'of', 'we', 'a', 'relaxed']| -tide receded,['And'] -the whishing,['sound'] -feared lest,['there'] -the Apaches,['had'] -continually visited,['him'] -not join,['in'] -prodigiously stout,['man'] -were never,|['together', 'to']| -confederates no,['doubt'] -elastic-sided boots,['Known'] -black vizard,['mask'] -knew well,['he'] -doubt a,['pity'] -himself was,|['only', 'averse']| -truth for,['there'] -doing living,['in'] -might leave,['the'] -inflicted upon,['myself'] -a smart,['little'] -never for,['an'] -whispered words,['of'] -try to,|['let', 'forget', 'come']| -sympathetic smile,['and'] -used between,['Australians'] -brilliantly lit,['and'] -examining it,['however'] -last flung,['it'] -the wretched,['boy'] -he offered,['to'] -a nurse-girl,['and'] -2nd you.,['Pray'] -the books,|['Bill', 'upon']| -discovered I,['ask'] -blood by,['direct'] -other one,|['He', 'Henry', 'from']| -examined with,|['the', 'deep']| -loomed like,['dark'] -these is,['correct'] -heads and,['pay'] -promise me,['that'] -misgivings of,['the'] -little blonde,['woman'] -a tiny,['pilot'] -gentleman walks,['into'] -between Sir,['George'] -which wasn't,['near'] -plaster was,['peeling'] -instep where,['the'] -quench what,['might'] -betrothal was,['publicly'] -country-house. my,['duties'] -crash of,['the'] -woods or,['mountains'] -|sir." rather,|,['I'] -absolved from,['the'] -to-night so,['hand'] -to explain,|['how', 'I', 'the']| -from seven,['or'] -well within,['the'] -o'clock Sherlock,['Holmes'] -existence there,['living'] -wants were,['few'] -or writing?,['have'] -British tradesman,['obese'] -he this,['is'] -the keyhole,['but'] -brow It it's,['not'] -diggings Black,['Jack'] -eyes made,['it'] -Holmes traced,['his'] -streets until,['we'] -laughed at,|['what', 'for']| -think if,['you'] -And since,['you'] -formerly a,['danseuse'] -special subject,['You'] -in January,|['85', 'and']| -divined that,['I'] -ceremony as,['shortly'] -who goes,['much'] -you wish ,['man'] -took them,['told'] -King is,['capable'] -other lovers,['by'] -generally assisting,['in'] -sucked away,['into'] -late Irene,['Adler'] -rest turning,['it'] -village The,['place'] -at your,['having'] -her life,['and'] -Holmes upon,['the'] -the absolute,|['stillness', 'pallor']| -wealth for,['which'] -arteries which,['conveyed'] -blasted my,['life'] -my private,['safe'] -suddenly there,['broke'] -is precious,['so'] -edge that,['it'] -said St.,['Simon'] -the bride.,['is'] -revealed it,['to'] -time raise,['the'] -thank your,['Majesty'] -gas-light that,['every'] -he remarks,['very'] -fingers I,|['took', 'can', 'have']| -was rejoiced,['to'] -his handwriting,['was'] -getting these,['fields'] -See the,['advantages'] -young lady?,['his'] -learned all,|['the', 'that']| -of earning,['a'] -stuff with,['a'] -At nine,["o'clock"] -to perfection,['and'] -London do,['not'] -inspection Our,['visitor'] -party alleging,['that'] -three men,['waiting'] -logical proof,['which'] -every fact,['connected'] -mottled all,['over'] -morning heard,['a'] -an hour's,|['purchase', 'would', 'good']| -otherwise I,['shall'] -remarked of,['course'] -Paul's. started,['off'] -lady's stepfather,['Mr'] -flowing sluggishly,['beneath'] -I that,['the'] -taken you,['fully'] -Lascar at,['a'] -Above the,['woods'] -boots Known,['to'] -and foreseen,['conclusions'] -another standpoint,['fail'] -dark inside,['the'] -were trimmed,['at'] -fine indeed,['Let'] -this some,['evidence'] -your uncle,|['of', 'and', 'last']| -Chamber of,['the'] -in a,|['false', 'sensitive', 'nature', 'dark', 'dreadful', 'German-speaking', 'lane', 'great', 'knot', 'good', 'few', 'quiet', 'corner', 'general', 'recess', 'double', 'very', 'single', 'broad-brimmed', 'coquettish', 'nervous', 'day', 'week', 'hansom', 'vulgar', 'hurry', 'trap', 'petty', 'telegram', 'cab', 'yellow-backed', 'perplexing', 'visitor', 'gaol', 'word', 'cage', 'sort', 'pen', 'little', 'verdict', 'civilised', 'note', 'gale and', 'series', 'steamer', 'chair', 'strange', 'pitiable', 'twitter', 'high', 'short', 'coat', 'basket-chair', 'dream', 'peaked', 'perpetual', 'twist', 'facility', 'purple', 'Scotch', 'slow', 'hopeless', 'cloudless', 'quavering', 'cosy', 'crackling', 'considerable', 'low', 'dog-cart', 'month', 'railway', 'cushion', 'voice', 'gentle', 'picture', 'long', 'suit', 'hearty', 'carriage', 'cold', 'foreign', 'tone', 'gruff', 'moment', 'dead', 'way', 'blaze', 'late', 'speedy', 'mining', 'less', 'different', 'stately', 'pea-jacket', 'listless', 'lady', 'paper', 'friendly', 'sweeping', 'pew', 'sombre', 'successful', 'young', "woman's", 'disputatious', 'fair', 'boiling', 'nutshell', 'grey', 'row', 'jesting', 'line']| -tie his,['sympathetic'] -intense emotion,['during'] -gentleman seated,['by'] -he of,['course'] -perhaps from,['the'] -be and,['why'] -it think,['you'] -simple as,['copying'] -himself with,|['a', 'any', 'his']| -must know,|['that', 'said']| -stop dead,['and'] -not himself,['know'] -occurred during,['the'] -one since,['the'] -my right,|['and', 'hand']| -hall when,['we'] -an idea,|['more', 'of', 'who', 'that', 'came']| -you everything,|['which', 'Mr']| -be any,|['competition', 'very', 'missing']| -evening By,['the'] -principal things,['which'] -was peculiar,['to'] -sleeps in,['the'] -1/2 per,['cent'] -this really,['takes'] -basketful of,['linen'] -cousin walking,['very'] -In another,['instant'] -can speak,['as'] -lies before,['us'] -and was,|['hot', 'shown', 'using', 'hauling', 'standing', 'left', 'even', 'able', 'screening', 'lying', 'advised', 'speeding', 'struck', 'gazing', 'stamped', 'dressing', 'making', 'carried', 'ready', 'scraping', 'hanging', 'busy', 'not', 'down', 'in', 'endeavouring', 'introduced', 'looking', 'conscious']| -tickets when,['he'] -even for,['a'] -days London,['press'] -not trust,['him'] -force her,['way'] -but without,|['noting', 'finding', 'success', 'result']| -drop his,['bird'] -all a,['very'] -only doubt ,['propriety'] -a meaning,['to'] -do How,['could'] -McCarthy was,|['walking', 'very', 'in', 'the', 'acquitted']| -their salary,['beforehand'] -one and,|['I', 'suited', 'there', 'opened', 'was', 'two', 'that', 'capable', 'one']| -remove them,['without'] -cannot see,|['that', 'how']| -tell banker,['wrung'] -den low,['as'] -all I,|['thought', 'have', 'hear', 'see', 'was', 'am', 'care', 'think', 'say', 'knew', 'only', 'had']| -well At,['the'] -well You,['took'] -all A,['door'] -his sides,['All'] -be silent!,['are'] -the gum,['the'] -sat Dr,['Grimesby'] -remarks were,['suddenly'] -The rapidity,['with'] -an excessive,['sum'] -his monogram,['rather'] -a hard-headed,['British'] -your health,['nothing'] -long list,['at'] -when there,|['where', 'were', 'is', 'was']| -just possible,|['that', 'however']| -morning Then,['I'] -a vile,['alley'] -stones at,['1000'] -utterly had,['he'] -also fled,['at'] -his will,['I'] -some comic,['a'] -am the,|['King', 'last']| -My wife,|['was', 'is']| -letter across,['to'] - "IRENE,['NORTON'] -some water,['from'] -and rain,['into'] -had three,['consultations'] -never said,|['he', 'a']| -brow he,['had'] -glimmered dimly,['through'] -book that,['Francis'] -to conceive,|['In', 'the']| -she began,['and'] -man who,|['first', 'wrote', 'had', 'was', 'is', 'gets', 'has', 'might', 'entered', 'deserved', 'really', 'can', 'sat', 'goes', 'abandons', 'leads', 'will', 'takes', 'wishes', 'loves']| -Station I,['got'] -it glints,['and'] -is Mr,|['Jabez', 'Duncan', 'St']| -was answered,['by'] -visitor detailed,['to'] -revellers A,['dull'] -sudden buzzing,['in'] -last train.,['to?'] -cruelty the,['hidden'] -sharp enough,['to'] -unclaspings of,['his'] -cab to,|['carry', 'wait']| -great benefactor,['to'] -his pocket,|['and', 'It', 'have', 'There', 'was', 'all', 'you', 'Hullo', 'he']| -hair all,|['clear', 'mark']| -the space,['of'] -purpose that,['could'] -such force,['that'] -mother Mr,['Windibank'] -the dual,['nature'] -from danger,['when'] -constabulary informing,['him'] -left parietal,['bone'] -that matter,['Reading'] -was disappointed,['There'] -had shot,['him'] -knee rested,['upon'] -snoring on,['the'] -may but,['confirm'] -whitewashed building,['in'] -what measures,['I'] -took us,['to'] -an anteroom,['and'] -when our,|['turn', 'visitor', 'visitors']| -you note,['the'] -when out,['from'] -hurriedly out,['there'] -woman's sleeve,['In'] -red spongy,['surface'] -how?" am,['about'] -vigorously upon,['the'] -one of,|['his', 'the', 'them', 'whom', 'those', 'my', 'these', 'Clark', 'absolute', 'your']| -determine by,['a'] -that press,['You'] -minutely the,['cracks'] -chance dear,['fellow'] -them in,|['the', 'their', 'a']| -right enough,['the'] -one or,|['two', 'it']| -You infer,['that'] -of times,['how'] -he threw,|['himself', 'them']| -and reaction,['of'] -Toller serenely,['in'] -formidable gate,['Mr'] -she seen,['someone'] -three-legged wooden,['stool'] -silent for,|['a', 'some']| -I been,|['here', 'recognised', 'sterner']| -he thrilling,['with'] -a lawn,['of'] -passions save,['with'] -bag with,['him'] -work suit,['you?'] -neck His,['nostrils'] -than the,|['whole', 'official', 'time', 'other', 'words', 'Assizes', 'opium', 'conclusion', 'truth', 'interest', 'sequence', 'result', 'banker']| -hearing was,['so'] -deposit was,['a'] -said ten,['miles'] -four fingers,['and'] -trade-mark upon,['them'] -deep thought,|['He', 'with']| -my post,['by'] -someone from,['America'] -help overhearing,['the'] -morocco case,['which'] -stone in,['my'] -what indirect,['or'] -returned from,|['Bristol', 'his', 'the']| -London quite so,['Your'] -entered his,['room'] -he snarled,|['and', 'I']| -love him,|['am', 'dear', 'hat']| -you might.",|['only,']| -stone is,|['They', 'not']| -banker had,['done'] -can but,['stop'] -the culprit,['There'] -said to,|['be', 'her', 'have']| -have surprised,['her'] -and swore,['that'] -any friends,['not'] -the left-hand,['side'] -from Westhouse,['&'] -little matters,['like'] -heh? should,['be'] -be charged,['with'] -working a,['claim'] -effect were,['to'] -masses of,['nickel'] -Round his,['brow'] -Spaulding said,['there'] -|Doctor," said|,['Holmes'] -proper authorities,['The'] -and umbrella,['said'] -need smoking,['and'] -you admitted,['him'] -slavey As,['to'] -this system,['of'] -not but,|['the', 'think']| -privacy There,['was'] -comfortably and,['tell'] -right path,|['as', 'it']| -doing it,['was'] -she shrieked,['and'] -baggy grey,["shepherd's"] -opened Holmes,['refused'] -can't refuse,['a'] -Stoner turned,['white'] -loathed every,['form'] -too for,['he'] -straight into,['the'] -acting but,['will'] -preposterous practical,['joke'] -are looking,['for'] -snuff Doctor,['and'] -the law,|['in', 'now', 'but', 'should', 'But', 'cannot', 'Think', 'would']| -due order,['Holmes'] -less keen,['as'] -old It,['was'] -anyone could,|['make', 'offer', 'have']| -appears been,['returning'] -so." windows,['of'] -policeman within,['hail.'] -come at,|['a', 'any', 'once', 'all', 'the', 'some']| -Rucastle was,['perfectly'] -they are,|['and', 'waiting', 'very', 'quite', 'attained', 'But', 'a', 'they', 'set', 'Must']| -Those I,['think'] -its relation,['to'] -he live,['then'] -boxer swordsman,['lawyer'] -son was,|['following', 'kneeling', 'away']| -wife Rucastle,['seemed'] -long had,['he'] -times became,['engaged'] -he made,|['her', 'his', 'quite', 'one', 'friends', 'no', 'neither', 'the']| -two questions,['Mr'] -point about,['the'] -bright-looking clean-shaven,['young'] -Holmes He,|['would', 'has', 'made']| -if after,['all'] -large a,|['sum', 'brain']| -tell Perhaps,['you'] -where did,|['they', 'you']| -silence I,['heard'] -plans very,['seriously'] -object then,['to'] -he But,|['pray', 'at']| -combine the,['ideas'] -and despair,['in'] -not where,['the'] -large G,['with'] -large E,['with'] -Hullo! I,['yelled'] -calls less,['than'] -dressing-room was,['a'] -landing If,['I'] -pistol clinked,['upon'] -bed went,['at'] -makes me,|['anxious', 'shiver', 'uneasy']| -Near Waterloo,['Bridge.'] -erred perhaps,|['he', 'in']| -March 1883 a,['letter'] -could plainly,['see'] -well-nigh certain,['that'] -that fuller's-earth,['is'] -payment which,['was'] -as shortly,|['announced', 'and']| -wild free,['life'] -other since,['we'] -smoothing it,['out'] -chair and,|['paced', 'gave', 'was', 'picked', 'let', 'my', 'on', 'stared', 'examined', 'shaking', 'laughed', 'passed', 'turned']| -dear said,['my'] -brave fellow,['said'] -somewhere downstairs,['That'] -client appeared,['to'] -engineer Inspector,['Bradstreet'] -another dull,['wilderness'] -put it?,['asked'] -Someone has,['loosed'] -said old,['Turner'] -protruded from,['his'] -is typewritten,['Look'] -into two,['hard'] -send down,['to'] -house before,['this'] -Stark The,['name'] -has then,['been'] -explanation You,['have'] -little money,['which'] -received this,['letter'] -the circle,|['of', 'This']| -finally where,['a'] -where strangers,['could'] -could lay,['my'] -church but,['not'] -were several,|['people', 'little']| -gates and,['we'] -doubts and,['fears'] -as impulsively,['as'] -you'll remember,['that'] -we travelled,['back'] -body of,|['his', 'Lady']| -it further,['Above'] -you man,['sprang'] -wounded thumb,['The'] -this horror,['still'] -the cushioned,['seat'] -what right,['had'] -has occurred,|['to', 'in']| -yourself for,['one'] -my wearisome,['journey'] -and Germans,['I'] -handling of,['large'] -piece from,['the'] -on of,['your'] -the Hall,|['is', 'why']| -await him,['when'] -attain to,['Problems'] -a cloudless,['sky'] -photograph." were,['both'] -married the,['daughter'] -There I,['parted'] -there jumped,['five'] -So now,|['we', 'it']| -a powerful,['and'] -some play,['A'] -escaped from,['the'] -room therefore,['and'] -I wished,['to'] -she might,|['be', 'think', 'escape', 'have']| -about 60,['pounds'] -once and,['not'] -snow That,['is'] -to decide,['I'] -was able,|['to', 'by', 'with']| -yelled You,['see'] -Kilburn where,['he'] -then leaving,['me'] -I grew,|['richer', 'more']| -luck with,['my'] -than before,['As'] -may help,|['us', 'to']| -damning series,['of'] -certainly But,['how'] -sister asked,|['me', 'for']| -magnifying lens,|['began', 'that', 'Now']| -Holmes glancing,['up'] -carriage and,|['read', 'we', 'into']| -law cannot,|['as', 'accomplish']| -A thousand,['things'] -any inconvenience,['that'] -powers His,['rooms'] -simple that,['I'] -improvisations and,['his'] -what for,['search'] -accomplice They,['were'] -sitting-room and,|['ushering', 'led', 'our']| -my heart,|['and', 'I', 'began', 'into', 'have', 'that', 'which']| -us for,['help'] -to Bristol,['for'] -error has,['been'] -is terror,['She'] -imagine I,|['suppose', "don't"]| -room to-day,['and'] -single branch,['office'] -senior met,['his'] -alone can,['attain'] -waistcoat a,['crumpled'] -anything so,|['fine.', 'simple', 'outr']| -late It,['is'] -souvenir from,['the'] -grey carpet,['a'] -opened my,['door'] -profession I,['am'] -adventure hunting,['in'] -women and,['the'] -has cruelly,['wronged'] -trustees are,['at'] -at Mr,["Doran's"] -cheeks with,['a'] -practical man,['he'] -the pillow,|['heavens!"', 'goes']| -will open,['You'] -deadly urgency,['of'] -machine to,['form'] -the evenings,['transform'] -the baboon,['had'] -had cut,|['the', 'within', 'his']| -sum to,['a'] -Besides there,['were'] -an effort,['to'] -it Then,|['there', 'I', 'he', 'let']| -more painful,['than'] -veins stood,['out'] -very busy,['day'] -daughter fat,['man'] -cab in,['the'] -of marble,['you'] -would fain,['have'] -he bowed,|['solemnly', 'and']| -of herself,['she'] -to-night when,['she'] -high white,['forehead'] -third of,|['the', 'which']| -occupant of,['the'] -your eyes,|['said', 'open']| -other than,|['Sherlock', 'the']| -begin with,['and'] -City first,['and'] -third on,['the'] -Flora was,['a'] -then much,['surprised'] -its way,|['to', 'sir!"', 'in']| -can put,['away'] -sole duties,['then'] -of laughter,|['cannot', 'suppose,']| -that something,|['had', 'was', 'be']| -glitter of,['moisture'] -itself was,['locked'] -City did,['some'] -bird we,|['were', 'call']| -am surprised,['that'] -amazing powers,['in'] -Ah Watson,['you'] -room turning,['his'] -your curiosity,['I'] -get what,['we'] -There's twenty-six,['of'] -and picked,['up'] -me Will,['you'] -society Most,['of'] -beryls said,['he'] -is impossible,|['for', 'to', 'said']| -Bridge Road,['we'] -man save,['his'] -Great Lord,['of'] -Florida where,['he'] -proficient in,['his'] -note Having,['done'] -will look,['upon'] -little triangular,['piece'] -Saxon families,['in'] -together We,|['shall', 'had']| -been called,|['upon', 'away']| -tell didn't,['know'] -been urged,['against'] -ghost at,['first'] -it that it,['is'] -he held,|['up', 'in', 'that']| -through Swandam,['Lane'] -had noticed,['during'] -or rather,|['of', 'to']| -calling loudly,['for'] -need so,['there'] -inquest The,['blow'] -her seat,['as'] -agitation her,['face'] -drew the,|['dog-whip', 'drawer']| -doubtless as,['resembling'] -meaning to,|['it', 'me']| -Holmes calmly,['You'] -habits looking,['at'] -a beautiful,['moonlight'] -highest importance,['but'] -smoke and,|['shouting', 'terraced']| -seem most,['fortunate'] -do their,|['own', 'work']| -his grey,['eyes'] -better proceed,['to'] -no crime,|['has', 'committed']| -ask a,['little'] -had dropped,|['asleep', 'in']| -it Its,['owner'] -very good-morning,['He'] -She told,['him'] -company for,|['his', 'the']| -column of,|['print', 'The', 'smoke', 'the']| -husband and,['to'] -highest noblest,['most'] -some future,['date'] -one rather,['intricate'] -not sink,['He'] -seven sharp,['for'] -way downstairs,['as'] -somewhere far,['out'] -wrack was,['drifting'] -branch office,['and'] -son to,|["Turner's", 'marry']| -strange contrast,['between'] -had sat,|['up', 'down', 'puffing', 'all']| -turning round,['and'] -some years I,['may'] -the furniture,|['that', 'in', 'of']| -unbreakable tire,['and'] -me her,['eyes'] -extraordinary league,['On'] -successful and,['they'] -he uttered,['it'] -they once,['were'] -17 King,['Edward'] -down They,['could'] -any statement,['to'] -they really,['abutted'] -interrupted you,['Pray'] -I alone,['The'] -remember any,['other'] -madman coming,['along'] -was driven,['over'] -and devotedly,['attached'] -desired to,['be'] -sharp-eyed coroner,['indeed'] -February morning,['and'] -unpleasant interruption,['had'] -little red,|['circles', 'and']| -remember and,['shrugged'] -call your,['attention'] -disturbing than,['a'] -expectancy there,['was'] -stronger For,['half'] -of reasoning,|['and', 'by']| -vilest murder-trap,['on'] -that part,|['She', 'is', 'of']| -same age,['but'] -order breakfast,['and'] -of bullion,['is'] -For many,['years'] -I and,|['half', 'what', 'all']| -legal. was,['half-dragged'] -key fitted,['to'] -always very,['careful'] -and manner,|['told', 'of']| -sister to,['know'] -and opened,|['from', 'the']| -of Peterson,|['so', 'that']| -simple cooking,['and'] -investigation however,['and'] -said John,|['Clay', 'Openshaw']| -medical aid,['from'] -a planter,['in'] -him would,|['be', 'induce']| -the Globe,['Star'] -he meet,['his'] -bright sun,['and'] -is incalculable,['The'] -head So,['long'] -every turn,['we'] -farthest from,['the'] -Paddington and,|['were', 'started']| -Instead of,['making'] -them again,['he'] -saw nothing,|['remarkable', 'At']| -sore need,['It'] -my hobbies,['said'] -his mouth,|['Therefore', 'to', 'for', 'before']| -two hard,['black'] -again Mr,['Holmes'] -beauty of,['the'] -Post and,['dates'] -late visit,['to'] -of great,|['delicacy', 'gravity', 'hand-made', 'personal']| -|man, come|,['only'] -not much,|['time', 'more', 'in']| -care I've,['had'] -so or,['it'] -so on,|['December', 'of']| -conspicuous Very,['retiring'] -the 5:15,['train'] -the 5:14,['from'] -everything that,['may'] -so of,|['Ballarat', 'course']| -and whose,|['residence', 'absolute']| -trusted with,['matters'] -single long,['Now'] -twist facts,['to'] -|laughter suppose,|,['Watson'] -be left,['till'] -low door,['which'] -had waited,|['a', 'outside']| -smoothness of,['a'] -character of,|['its', 'a', 'an', 'this', 'parents']| -you doing,|['in', 'with', 'there?']| -closely you,['must'] -meet cried,['the'] -Should it,['prove'] -hat much,['the'] -smaller crimes,['and'] -To Holmes,['as'] -hours a,['day'] -simple life,['that'] -pipe was,['still'] -he met,['his'] -with their,|['steaming', 'fists', 'conundrums', 'papers', 'dark']| -pulling on,['his'] -to introduce,|['a', 'you']| -No sir,|['I', 'Dr']| -discovered him,['he'] -had tramped,['into'] -rending cloth,['as'] -passion such,['as'] -or less,|['interest', 'murderous']| -without compromising,['his'] -of crime,|['and', 'or', 'while', 'Every', 'in']| -turning towards,['anyone'] -thin old,['man'] -a cap,['at'] -a cat,|['in', 'But']| -of snuff,|['Pray', 'Doctor']| -bad and,|['ends', 'has', 'that']| -length by,['telling'] -acquaintance are,['going'] -a cab,|['came', 'my', 'to', 'with', 'within', 'I', 'outside', 'as', 'by', 'and', 'together']| -the tops,['with'] -mind for,['I'] -rabbit warren,['which'] -returned me,['the'] -have done,|['what', 'the', 'it', 'nothing', 'very', 'that', 'before', 'single-handed', 'better', 'wisely', 'so', 'my', 'a', 'to', 'Your', 'him', 'you', 'now', 'well']| -grimly Bring,['me'] -just throwing,['out'] -besides ourselves,['who'] -quick blush,['passed'] -Avenue door,['of'] -lose such,['a'] -my zero-point,['I'] -every poor,['devil'] -hills there,['and'] -|writing," murmured|,['Holmes'] -matters immensely,['will'] -leave Some,['however'] -been women,['in'] -undertaking She,['hurried'] -you three,["o'clock"] -to do.,|['said', 'so', "madam,'"]| -slow and,['heavy'] -extending down,['past'] -satisfactory cause,['of'] -Is the,['security'] -going off,['to'] -incident as,['far'] -woods on,['three'] -Hatherley was,['let'] -straining ears,['Then'] -that When,['you'] -earlier than,['usual'] -east and,['west'] -mouth It,['was'] -really the,|['end', 'only']| -the epistle,['says'] -jovial as,['ever'] -stick in,['his'] -who frequent,['the'] -be pushed,['as'] -once a,|['day', 'week']| -his finger-tips,|['together', 'one']| -this rude,['meal'] -to refrain,['from'] -lords and,['ladies'] -the shape,['of'] -a shrimp,['it'] -Then I,|['must', 'rather', 'called', 'asked', 'made', 'rang', 'could', 'seized', 'went', 'thought', 'walked', 'do', 'saw', 'started', 'looked']| -allowed anyone,['to'] -trust to,['general'] -gales that,['year'] -nothing very,|['formidable', 'instructive']| -The double,['line'] -Street said,['I'] -once I,|['could', 'have']| -no sister,['of'] -room Henry,['Baker'] -returning he,['found'] -books mostly,['of'] -is impetuous volcanic,['I'] -continued Holmes,|['pointing', 'I']| -a thick,|['hanging', 'bell-rope']| -link rings,['true'] -as a,|['lover', 'confidant', "ship's", 'temporary', 'commonplace', 'bulldog', 'lobster', 'rule', 'hundred', 'counsellor', "man's", 'trivial', 'man', 'dying', 'pikestaff', 'little', 'family', 'working', 'matter', 'doctor', 'second', 'tall', 'companion', 'sitting-room', 'professional', 'mole', "tinker's", 'match-seller', 'beggar', 'squalid', 'battered', 'peace-offering', 'goose', 'signal', 'bridge', 'gold-mine', 'small', 'preliminary', 'relic', 'check', 'weary', 'woman', 'thief', 'common', 'lady', 'calf', 'medical', 'good']| -larger crimes,['are'] -for to-morrow,['It'] -begin it,['by'] -carried the,|['bird', 'precious']| -as serious,['as'] -are being,['made'] -dad said,|['he', 'she']| -them Miss,['Turner'] -disappearance am,['afraid'] -abnormal though,['whether'] -from Montague,['Place'] -habits sorry,['to'] -the rope,|['There', 'was', 'and']| -and swollen,['glands'] -as I,|['looked', 'have', 'understand', 'was', 'expected', 'could', 'had', 'will', 'told', 'call', 'would', 'can', 'knew', 'entered', 'hoped', 'live', 'used', 'always', 'said', 'know', 'rushed', 'ran', 'glanced', 'listened', 'did', 'ascended', 'examined', 'learn', 'dropped', 'arrived', 'am', 'bent', 'lay', 'His', 'happened', 'spoke', 'followed', 'remarked', 'came', 'stood', 'approached', 'should', 'passed', 'felt']| -clank of,['the'] -detective force,['This'] -house but,|['the', 'my']| -Mrs Stoner,['the'] -intimacy there,['were'] -|fastened? sure,|,['dad.'] -has data,['Insensibly'] -a horrible,|['scar', 'scandal', 'exposure', 'worrying']| -good there,['are'] -train from,|['Charing', 'Waterloo', 'Paddington']| -said rubbing,['his'] -still sounding,['the'] -uncompromising manner,['to'] -if to,|['strike', 'ask']| -into his,|['own', 'pockets', 'bedroom', 'face', 'armchair', 'chair', 'thin', 'cheeks', 'pocket', 'head']| -care to,|['come', 'possess', 'use', 'spend', 'your']| -seemed quite,|['enthusiastic', 'exaggerated']| -the weather,['had'] -Watson you,|['are', 'can', 'have', 'as']| -him to-night,|['let', 'If']| -go upstairs,['said'] -diligently of,['late'] -the thresholds,['of'] -room to,['be'] -was moving,['under'] -yet but,['I'] -asked for,|['Alice', 'a', 'it', 'his']| -brown opium,['smoke'] -oak-leaves in,['some'] -back We,['found'] -man to,|['apply', 'see', 'the', 'fall', 'whom']| -Certainly if,['you'] -I blinked,['up'] -the decline,['of'] -way past,['her'] -interested and,['wished'] -Perhaps you,|['will', 'have']| -bridegroom from,['having'] -midst of,|['a', 'the', 'my']| -the awful,['consequences'] -a delicate,|['point', 'pink', 'part']| -hold of,['replied'] -instrument or,['a'] -room dear,['Holmes'] -arranged and,['pa'] -wanted her,['to'] -rather far,['from'] -had business,['in'] -burst of,['anger'] -is high,['but'] -though very,['often'] -my situation,['lies'] -duty near,['Waterloo'] -borrow so,['trifling'] -profession has,['brought'] -and putting,['his'] -Rather than,['I'] -presume took,['to'] -now we,|['must', 'shall']| -how all-important,['it'] -serious?" considerable,['crime'] -same performance,['was'] -out between,['this'] -blood On,['following'] -a feeling,|['something', 'of']| -complete manner,['one'] -should both,['be'] -horrors enough,['before'] -actually in,['sight'] -|come! time,|,['at'] -pillow beneath,['his'] -had we,['not'] -working hypothesis,|['that', 'for']| -he strode,['out'] -and lived,|['generally', 'in']| -and rather,['startled'] -returning by,['the'] -acts as,['assistant'] -quickly between,['the'] -o'clock on,['Christmas'] -rest assured,['that'] -spellbound to,['this'] -but could,['get'] -settles the,|['matter', 'question']| -and fear,['and'] -a miners,['camp'] -His hair,['too'] -different person,['to'] -thought however,['that'] -crime or,['not'] -question now,['was'] -thinking for,['he'] -have favoured,['me'] -he but,|['if', 'beyond', "it's", 'I', 'though', 'you']| -very black,['against'] -crime of,['which'] -needed to,['have'] -mind of,|['the', 'man']| -Savannah the,['mail-boat'] -of Lebanon,['Pennsylvania'] -sometimes that,['it'] -Prendergast about,['my'] -mind on,['a'] -struck gold,['invested'] -fifty tall,['portly'] -exact purpose,['was'] -better discuss,['it'] -immense rpertoire,['and'] -Oh if,['you'] -weary of,['advertising'] -nor myself,['liking'] -than he,['The'] -two servants a,['man'] -Oh it,|['drives', 'is']| -been returning,['from'] -pray what,|['am', 'did']| -of evil,|['however', 'reputation']| -a fierce,|['eddy', 'old']| -cloud-wreaths spinning,['up'] -uncle of,['the'] -only had,['I'] -a jesting,['tone'] -the upper,|['part', 'lip', 'floor']| -he pointed,|['out', 'to']| -infernal St,['Simon'] -you missed,['all'] -him where?",['shouted'] -red-heads as,['well'] -received a,|['telegram', 'letter']| -on Wednesday,|['brought', 'last there']| -face even,['on'] -always be,|['associated', 'true', 'in']| -my trunk,|['One', 'turned']| -means relaxed,['his'] -lassitude from,['his'] -What d'you,['want'] -the transverse,['bar'] -means taking,['possession'] -things of,['which'] -apology is,['needed'] -out When,['I'] -be someone,['from'] -to sign,['a'] -hand with,['its'] -veil from,["men's"] -riverside landing-stages,['sat'] -I ask,|['you', 'who', 'whether', 'do', 'where']| -next week,['and'] -should take,|['a', 'an']| -Its splendour,['was'] -proclaimed That,['will'] -Park and,['so'] -large woman,['with'] -Baker It,['is'] -very stay-at-home,['man'] -consequences to,['me'] -nothing in,|['the', 'it', 'his', 'that']| -excellent if,['it'] -those dreadful,['hours'] -flesh-coloured velvet,['lay'] -ordered to,['this'] -sparkled and,['he'] -narrative St.,['Clair'] -had small,['round'] -ever since,|['There', 'I', 'as']| -or conscience,['Your'] -absolutely safe,['from'] -bulky Jones,['from'] -outside pray,['send'] -lived happily,['at'] -lost shall,['see'] -warnings shook,['his'] -Angel vanish,['from'] -Valley He,['had'] -guess what,|['the', 'it']| -the station-master,['did'] -house that,['morning'] -there have,['been'] -tinted spectacles,['and'] -Mary Your,['affection'] -empty when,['you'] -yellow wreaths,['Our'] -walking down,['the'] -clouds Holmes,['drove'] -been upset,['by'] -cut within,['the'] -at six,|["o'clock", 'Come', 'hundred']| -his tobacco,['with'] -less striking,['when'] -down hope,['a'] -succeed in,|['discovering', 'proving', 'clearing']| -idea came,|['to', 'into']| -vigorously than,['ever'] -So determined,['was'] -an interesting,|['study', 'case', 'one']| -TWISTED LIP,|['Whitney,']| -have watched,|['the', 'this']| -ruby red,['In'] -Take a,['pinch'] -dining-room upon,['the'] -and sit,['here'] -broken into,['but'] -see Watson,['our'] -that an,|['evil', 'attempt']| -and six,|['of', 'back']| -miles from,|['Eyford', 'the']| -is England,['and'] -set foot,['in'] -dreadful rigid,['stare'] -fists at,['him'] -first but,|['as', 'when']| -library-chair You,['are'] -that moment,|['for', 'there', 'her']| -same peculiar,['tint'] -explain this,['matter'] -judge would,['be'] -me will,['tell'] -gone and,['the'] -see--her ladyship's,['waiting-maid'] -reason that,|['the', 'we']| -the Jezail,['bullet'] -favourable to,['me'] -whole debts,['at'] -a pack,['of'] -may possibly,['have'] -exceeded all,['that'] -curled upon,['itself'] -even more,|['flurried', 'highly', 'simple', 'terrible', 'affected', 'painful']| -church and,['then'] -be late,['are'] -man pulled,['his'] -round my,['feet'] -closely allied,['It'] -gain an,['influence'] -round me,|['and', 'neither']| -fresh blood,['On'] -and attacked,['it'] -my companion,|['looking', 'to', 'in', 'I', 'did', 'with', 'that', 'We', 'shook', 'out', 'speedily', 'is', 'by', 'quietly', 'imperturbably', 'sat', 'answered', 'Then', 'rose']| -long ulster,['put'] -life than,['when'] -perhaps I,|['interrupt', 'ought', 'should', 'had']| -thrown by,['the'] -I carried,|['my', 'the']| -free and,['was'] -trick of,|['staining', 'vanishing', 'stepping']| -it mean,|['this', 'I']| -That circle,['is'] -life that,['I'] -sort. let,['me'] -pride so,['far'] -make any,['statement'] -feet with,['the'] -I guess,['you'] -signature which,['of'] -Here you,['are'] -names enough,['said'] -execution rather,['than'] -some assistance,['I'] -returned He,['came'] -humanity every,['possible'] -informed the,['police'] -perhaps to,|['these', 'show']| -with confederates,['no'] -to hospital,['a'] -like he,['did'] -stones he,['held 1000'] -done yet,['and'] -putting my,['foot'] -dark earth-smelling,['passage'] -for obtaining,['a'] -|no, no|,['I'] -finger remarked,['Holmes'] -apparently adjusted,['that'] -that cry,['raised'] -obstinate salesman,['chuckled'] -I in,['the'] -and selfish,['and'] -to Calcutta,['where'] -step I,|['should', 'hear']| -I if,['it'] -him kindly,['on'] -shape in,['which'] -one can't,['refuse'] -myself screaming,['against'] -our sitting-room,['and'] -I is,['why'] -their mouths,|['see,"']| -and will,|['at', 'be', 'if']| -bleak autumnal,['evenings'] -endless succession,['of'] -passed however,['and'] -your acquaintance,['her'] -mantelpiece showed,['me'] -white-counterpaned bed,['in'] -been prosecuted,['for'] -small chamber,['is'] -was shut,['and'] -which vanished,['immediately'] -eyes But,['I'] -a tomboy,['with'] -Why you,['are'] -fresh fresh,['and'] -services but,['in'] -seven o'clock,|['I', 'my', 'At']| -photograph your,['client'] -to Major,['Prendergast'] -moments later,|['I', 'a', 'he']| -wayside hedges,['were'] -fireplace cross-indexing,['his'] -and shot,['a'] -all huddled,['in'] -eyeglasses Lord,['St'] -walked swiftly,|['and', 'round']| -The unusual,['salary'] -in Upper,['Swandam'] -She laid,['her'] -England my,['mother'] -else as,['a'] -strong frost,['to'] -that living,['the'] -evening train,['leave'] -his passion,|['Mother', 'was']| -K. said,['I'] -before seven,["o'clock"] -these perils,['are'] -its results,['that'] -been over-good,['for'] -When she,["wouldn't"] -some part,['of'] -letters get,['more'] -coroner was,['because'] -Great Scott,['Jump'] -should use,['it'] -where he,|['has', 'was', 'had', 'rose', 'remained', 'can', 'lived', 'recovered', 'could', 'stood']| -quest and,['the'] -prevent an,['outbreak'] -their power,['am'] -would slip,['your'] -favour me,['with'] -good scar,['and'] -her skin,['I'] -rings true,['saved'] -incapable There,['only'] -the ideas,['of'] -a smoke-laden,['and'] -him through,['the'] -sudden idea,['came'] -idea what,['she'] -My marriage,['had'] -to spare,|['Have', 'Alice']| -sea-stories until,['the'] -nothing of,|['half', 'the', 'it', 'much', 'this', 'such']| -the creases,['of'] -question land,['money'] -moisture upon,['the'] -speak with,['him'] -prosecution Off,['I'] -while his,|['gently', 'eyes', 'lips', 'deep-set', 'hair']| -it fell,|['over', 'The']| -Continent Sherlock,['Holmes'] -shall take,|['them', 'nothing', 'no', 'your', 'you', 'up']| -instance by,['Mr'] -Burnwell I,['had'] -some muttered,['to'] -unfortunate bridegroom,['moves'] -of that,|['asked', 'His', 'time', 'murmured', 'colour', 'window', 'sottish', 'building', 'floor', 'very', 'cut', 'goose', 'dreadful', 'Watson', 'fellow', 'which', 'It']| -great people,['I'] -to follow,|['your', 'the', 'them', 'you', 'it']| -misfortune to,['get'] -pointing to,['a'] -nothing on,['save'] -sigh of,['relief'] -the Tankerville,['Club'] -89 there came,['a'] -she sprang,['at'] -He sank,['his'] -no I,['want'] -itself for,['it'] -urgency of,['this'] -excellent material,['a'] -It's as,['true'] -reach some,['definite'] -left-handed man,['He'] -grasped the,['results'] -vague that,['it'] -importance in,|['clearing', 'the']| -that has,['befallen'] -hope we,['may'] -the general,['public'] -be that,|['of', 'you', 'if']| -no great,|['deduction', 'difficulty', 'pleasure', 'consequence']| -of disappointment,|['came', 'patient!"']| -days in,|['Victoria', 'Bristol']| -room up,['there'] -were but,['they'] -down they,|['should', 'came']| -taking possession,['of'] -Cedars and,['beside'] -I'd have,['done'] -black waistcoat,['gold'] -room as,|['a', 'impulsively']| -dropped off,['to'] -he observed,|['I', 'a', 'taking']| -unimpeachable Christmas,['goose'] -in silence,|['for', 'with', 'to', 'all', 'when']| -stairs the,|['heavy', 'bang']| -But you've,['got'] -gentlemen who,['can'] -this great,|['city', 'panoply']| -grace from,['the'] -colonel to,['let'] -reached home,['that'] -other until,['he'] -galvanised he,['roared'] -you dig,["fuller's-earth"] -help me,|['in', 'to', 'he', 'I', 'God', 'He', 'too']| -appointment of,['importance'] -station-master laughed,['heartily'] -been on,|['his', 'the', 'a']| -dived down,['the'] -under Hood,['where'] -cloak one,['who'] -been of,|['my', 'the', 'material', 'most', 'red', 'no', 'a']| -I make,|['a', 'by', 'myself', 'it']| -Roylott's cigar,['Now'] -lie and,['look'] -gradually until,['we'] -places and,['none'] -our marriage,['Shortly'] -room early,['though'] -in notes,['he'] -mouth for,['all'] -occasionally indeed,['where'] -the hands,|['of', 'to']| -harmonium beside,['the'] -wretch of,['hideous'] -rather vague,['The'] -earth-smelling passage,['and'] -little practice,['it'] -father's friends,['were'] -strong as,['my'] -easily do,['it'] -key will,['fit'] -machine very,['thoroughly'] -|he accident,|,['I'] -always means,['an'] -manners but,['he'] -to address,|['take', 'may']| -part but,['also'] -pushing his,['way'] -in search,|['of', 'Ordering']| -and eager,['nature'] -gold kindled,['at'] -buy so,['expensive'] -anything more,['than'] -three From,['that'] -Above all,['try'] -to Frisco,|['Frank', 'and', 'found']| -Outside the,|['wind', 'stars']| -times by,['men'] -really! I,['had'] -in said,['he'] -it gave,['my'] -England a ruined,['gambler'] -mind. I'll,['have'] -He begged,['my'] -blotches I,['tried'] -traces they,['were'] -nothing to,|['do', 'go', 'disturb']| -us into,['the'] -up an,|['ulster', 'acquaintance']| -swim and,['not'] -a nutshell,['If'] -carefully round,['it'] -keep one,['and'] -horrid red,['spongy'] -passed said,['he'] -suggested the,['strange'] -lost has,['been'] -in private,|['clothes', 'that']| -Mr Isa,['Whitney'] -day heard,['the'] -yourselves to-night,['Well'] -heart turned,['to'] -they said,['St.'] -was nothing,|['remarkable', 'in', 'which', 'else', 'of', 'At']| -taken But,['if'] -be? Opening,['it'] -nothing but,|['a', 'flight', 'to', 'I']| -was out,|['of', 'for']| -you longer,['I'] -lurid spark,|['upon', 'which']| -of country,['which'] -piled all,['round'] -stone came,['from'] -right sent,['the'] -although they,['impressed'] -matter again,['your'] -we wanted,['for'] -or four,|['years', 'days']| -the paragraph,['in'] -problems are,['of'] -evening drew,['in'] -sit in!",['said'] -a bitter,['night'] -offices round,['but'] -walking with,|['a', 'this']| -was brisk,['and'] -can serve,['you'] -it. I,['have'] -him alone,['He'] -royal duke,['and'] -gentleman waiting,['who'] -name it,['photograph!"'] -name is,|['no', 'Vincent', 'different', 'not', 'that', 'Hugh', 'Sherlock', 'John', 'James', 'Helen', 'familiar', 'Armitage Percy', 'Francis', 'a']| -Eyford Station,['we'] -conspiring or,['the'] -observation of,|['his', 'trifles']| -alley lurking,['behind'] -all if,|['he', 'these']| -and behind,['this'] -all in,|['his', 'the', 'a']| -he shouted,|['first', 'to', 'I', 'struggling']| -outcry behind,['me'] -Watson?" he,['asked'] -all it,['is'] -celebrated Mr,['Sherlock'] -all is,|['as', 'sweetness', 'dark', 'well', 'ready']| -The door,['itself'] -dearest old,['country-house.'] -blocked by,['old-fashioned'] -Lestrade of,['Scotland'] -three in,['the'] -for his,|['hand', 'chambers', 'curious', 'son', 'bills', 'rooms', 'clay', 'manner', 'eye', 'resolution', 'face', 'age']| -possible object,['of'] -sitting He,['took'] -question of,|['barometric', 'cubic', 'hydraulics']| -face high-nosed,['and'] -Sutherland question,['was'] -precise as,['to'] -referred to,|['me', 'the', 'some', 'our']| -In a,|['man', 'hundred', 'word', 'few', 'very', 'quarter', 'fit']| -likely ruse,['enough'] -presence in other,['words'] -call to-morrow,|['afternoon', 'As', 'am']| -whispered Holmes,|['That', 'Come', 'took']| -several well-dressed,['young'] -|task Holder,'|,['said'] -by certain,['arguments'] -flapped and,['struggled'] -life was,['very'] -dangers that,['threaten'] -be natural,['under'] -plan is,['true'] -of Breckinridge,['upon'] -and bar,|['it', 'your']| -room His,['features'] -considerably it,['did'] -her more,['interesting'] -At present,['it'] -the bridegroom,|['from', 'and', 'instantly', 'for', 'Had']| -considerably in,['any'] -napoleons packed,['between'] -case depends,['And'] -by telling,|['you', 'how', 'us']| -showed us,|['the', 'very']| -face blanched,['with'] -cheeks all,['thought'] -Holmes answered,|['my', 'Your', 'It', 'And']| -seen there,['are'] -danger or,['else'] -the relation,['between'] -west to,['east'] -last my,['heart'] -danger of,['being'] -the strength,['of'] -very gentle,['soothing'] -he gave,|['a', 'him', 'quite']| -hurried forward,|['and', 'to']| -from Serpentine-mews,['and'] -Holmes pulling,['at'] -takes his,['daily'] -the snow,|['of', 'from', 'so', 'and', 'which', 'in', 'away', 'was']| -whether justice,['will'] -committed an,['indiscretion'] -air which,['set'] -hopes it,['would'] -will know,|['all', 'that']| -THE COPPER,['BEECHES'] -closing in,['upon'] -door corresponded,['clearly'] -small panel,['was'] -|them then,|,['did'] -and perfectly,['fresh'] -spend in,['his'] -after We,['have'] -closing it,['once'] -a stand,['Colonel'] -first pew,['I'] -at Halifax,['in'] -cracked in,['several'] -read in,|['this', 'the']| -smile hardened,['into'] -at ease,['and'] -her sister,|['must', 'had', 'could']| -a general,|['shriek', 'air']| -unforeseen catastrophe,['has'] -room All,['was'] -horrid scar,['which'] -read it,|['together', 'for', 'very', 'out', 'from', 'to']| -any family,['We'] -salary with,['me'] -before telling,['my'] -Among my,['headings'] -the side-table,['took'] -senses To,['carry'] -the middle,|['of', 'one', 'window', 'size', 'height']| -I speak,|['can', 'On']| -cases if,['you'] -a greater,|['distance', 'sense']| -to An,['elderly'] -comparatively modern,['and'] -is infinitely,['stranger'] -cases in,['which'] -country I,['paced'] -became riveted,['and'] -know the,|['strict', 'military', 'steps', 'people', 'young']| -be only,['one'] -got among,['bad'] -I behind,['him'] -extraordinary announcement,['chuckled'] -see now,['that'] -unhappy young,["man's"] -great crisis,['is'] -Morcar the,['valuable'] -half-buttoned and,['his'] -a wave,|['with', 'of']| -our cellar,['The'] -satisfaction to,['his'] -garden with,['a'] -as prompt,['My'] -upon its,|['side', 'hinges', 'terrible', 'master']| -end to,|['make', 'the', 'that', 'a']| -eyes that,|['our', 'he']| -or remark,['fell'] -charge is,['absurd'] -similar mark,['but'] -word to,|['a', 'either']| -their pictures,['libraries'] -Holmes. McCarthy,['was'] -woman what,['is'] -valuable product,['and'] -been sterner,['but'] -seldom seen,['a'] -was strange,['to'] -the issue,['of'] -short grass,['which'] -I should,|['have', 'much', 'be', 'marry', 'like', 'continue', 'not', 'run', 'perch', 'value', 'hear', 'ask', 'prefer', 'think', 'become', 'wish', 'send', 'recommend', 'say', 'very', 'know', 'call', 'desire', 'prolong', 'strongly', 'never', 'judge', 'tell', 'secure', 'find', 'or', 'do', 'feel', 'suspect']| -that point,|['You', 'We', 'It']| -must discuss,['it'] -one could,|['dimly', 'pass', 'find']| -tint When,['I'] -us The,['cab'] -One of,|['the', 'them', 'these', 'our']| -find remunerative,['investments'] -settled myself,['down'] -the foreman,['but'] -newcomer must,['sit'] -impertinent Kindly,['turn'] -and darting,['like'] -quiet little,|['plainly', 'villages']| -was serious,['The'] -threatened to,|['affect', 'raise']| -must commence,['and'] -daubing them,['with'] -was watching,['me'] -open There,|['are', 'was']| -Which was,['it'] -had arrived,|['here', 'upon']| -cold to,|['see', 'our']| -puffing and,['blowing'] -my trade,['and'] -them still,['said'] -an Indian,['cigar'] -coming you,['may'] -cannot admire,['his'] -couch was,['a'] -Berkshire It,['is'] -watch-chain the,['matter'] -on inquiring,['at'] -shrug of,['his'] -cursed stock,['mixed'] -pocket Hullo,['Here'] -cried glancing,['from'] -it any,['longer'] -long mirror,['Holmes'] -South and,['that'] -pale haggard,['and'] -of rattled,['and'] -groaned our,['visitor'] -in astonishment,['it'] -your opinion,|['though', 'about', 'Come', 'and']| -her shoulder,['Oh'] -whenever she,['might'] -now been,|['doing', 'drawn']| -the appearance,|['of', 'which', 'and']| -cross his,['path'] -incites the,['man'] -be But,|['we', 'you']| -perfect equality,['as'] -passed outside,['however'] -saddest look,['upon'] -off by,|['now', 'main']| -the poorer,['was'] -last client,['of'] -wind and,['not'] -last sentence,['but'] -the Aberdeen,['Shipping'] -estates extended,['over'] -sly-looking was,['waiting'] -had you,['lived'] -a strong,|['emotion', 'presumption', 'part', 'balance', 'smell', 'masculine', 'nature', 'proof', 'frost', 'factor']| -They could,['only'] -streaming umbrella,['which'] -getting yourself,['very'] -are personally,['concerned'] -red-headed and,['he'] -banking business,['as'] -firm for,['which'] -clean that's all,['I'] -Montana and,['then'] -|dazed, I|,['went'] -associate Dr,['Watson'] -little was,['after'] -a change,['in'] -sweetheart and,['that'] -to suicide,|['no,']| -parts. me!,['How'] -call about,['once'] -spotted handkerchiefs,['which'] -filthy hands,['remarked'] -lens began,['to'] -strange errand,['as'] -us the,|['boots', 'exact', 'truth', 'essential', 'bet', 'full']| -left answered,['the'] -in Bradshaw,['said'] -you consult,['my'] -the police,|['agent', 'report', 'and', 'Whatever', 'I', 'they', 'of', 'regulations', 'as', 'As', 'are', 'appeared', 'authorities', 'might', 'to', 'but', 'It', 'have', 'inspector', 'let', 'find', 'formalities', 'think', 'were']| -sleepless night,['He'] -from any,|['steps', 'region']| -presses against,['the'] -in 83,['There'] -accent I,['told'] -know see,['it'] -been forced,|['open', 'before']| -entries that,['A'] -if uncertain,['which'] -maiden is,['not'] -loftily He,['has'] -dead and,|['once', 'there', 'had']| -saved me,['from'] -parted a,['pink'] -clear up,|['these', 'the', 'all']| -so. thought,['of'] -page in,['red'] -it also,['No'] -offered no,|['objection', 'opposition']| -any gentleman,['ask'] -her glove,['buttons'] -has perhaps,['fluttered'] -so startling,['in'] -chair upon,['which'] -oldest Saxon,['families'] -yet might,['appear'] -stout cord,['The'] -a living,['I'] -see each,['other'] -a lovely,['woman'] -twenty-seven years,['in'] -a passage,|['opened', 'and']| -shall find,|['me', 'them']| -his one,['idea'] -shown a,['single'] -was upon,|['the', 'their']| -that perhaps,|['you', 'he']| -director We,['have'] -George Sand,['III.'] -lawn That,['fatal'] -still one,['left'] -dreadful to,|['think', 'listen']| -in whom,|['I', 'the']| -something so,['we'] -remarked at,['last'] -60's at,['the'] -been saying,['to'] -this marriage,|['rather', 'may']| -satin shoes,['and'] -both glove,['and'] -crossed over,['the'] -wish she,['had'] -season He,['was'] -home and,|['made', 'forbidding', 'roused', 'changed']| -means My,['hand-mirror'] -will allow,['is'] -a slop-shop,['and'] -bed and,|['Dr', 'cushions', 'spent', 'you', 'eightpence', 'that']| -has given,|['her', 'its']| -not dare,['to'] -|baryta no,|,['the'] -every possible,|['detail', 'combination', 'precaution']| -before still,['lay'] -too in,['the'] -abandoned his,['attempts'] -|indeed, I|,['could'] -his evidence,|['but', 'to']| -lost property,['to'] -much mistaken,|['had', 'if', 'is']| -short thick,['man'] -claim upon,['Lord'] -dies Does,['not'] -voices from,['above'] -his manner,|['his', 'suggested', 'He', 'that', "was 'and"]| -and something,['on'] -to perform,|['and', 'myself']| -waistcoat gold,['Albert'] -himself by,['swimming'] -me then.",['years'] -under any,['other'] -every other,['consideration'] -stand in,['the'] -look which,['I'] -a slate-coloured,['broad-brimmed'] -watch you,|['and', 'ran']| -under and,['our'] -from Cannon,['Street'] -remarked that,|['he', 'homely', 'of', 'it']| -than fog,['said'] -real insight,['into'] -staying with,|['them', 'him']| -trip Watson,['no'] -the same.,['if'] -literature of,['the'] -man knew,['my'] -heavy hall,['door'] -a baby,['her'] -have hurried,['round'] -a person,|['on', 'who']| -heavily at,['cards'] -declared that,|['she', 'he']| -it how,['have'] -in upon,|['me', 'us', 'the', 'his', 'your']| -displayed in,['his'] -backward and,['forward'] -our bell,['until'] -to these,|['very', 'conclusions']| -legal crime,['You'] -that whoever,['addressed'] -cloth was,['cleared'] -below On,['examination'] -none the,|['less', 'wiser']| -and Holmes,|['had', 'after', 'was']| -clients to,['vex'] -and retired,['to'] -which showed,|['by', 'me']| -no not,['the'] -ceaseless tread,['of'] -most preposterous,['position'] -Clotilde Lothman,['von'] -answered me,|['like', 'abruptly']| -retained Then,['he'] -to men,['whose'] -veil which,['hangs'] -is Francis,['Prosper'] -answered my,|['companion', 'visitor']| -a common-looking,['person'] -Baker the,['gentleman'] -brickish red,['Her'] -it In,|['the', 'this']| -it struck,['me'] -are successive,['entries'] -cup I,['feared'] -it If,|['not', 'I']| -answers to,['those'] -oaths which,['a'] -recent services,['to'] -appointment this,['morning'] -long narrative,|['me,"']| -scrawled in,['red'] -you both,|['to', 'locked', 'but']| -end I,['found'] -8d. I,['see'] -ways There,['are'] -it It,|['will', 'must', 'is', 'was', 'had', 'rested', 'laid', 'would']| -this order,['might'] -by Mrs,|['St', 'Oakshott']| -Burnwell tried,['to'] -hydraulic engineer,|['16A', 'and', 'Left', 'Inspector', 'had']| -And so,|['in', 'you']| -to young,['ladies'] -and have,|['even', 'never', 'a', 'their', 'this', 'used', 'now', 'an', 'looked']| -clouds of,['smoke'] -level of,['intuition'] -to me?,['so.'] -poetic and,['contemplative'] -saw where,['Boots'] -but fortunately,['I'] -be ashamed,['of'] -who required,['my'] -knot in,['front'] -popular with,['all'] -wearer perspired,['very'] -On the,|['issue', 'contrary', 'inspector', 'other', 'Hatherley', 'inside', 'fourth', 'very', 'table', 'one', 'whole', 'right', 'left', 'next']| -refreshed his,['memory'] -Angel Did,['he'] -God sends,['me'] -age but,['neither'] -street here,['is'] -are three,|['hundred', 'men', 'separate', 'missing']| -used said,['Holmes'] -Mr. Fowler,['being'] -yet three,['when'] -with dark,['hair'] -least criminal,['man'] -violin for,['the'] -were indeed,['at'] -very shy,['man'] -the breast,['of'] -no confession,['could'] -moment when,|['drawn', 'no', 'Holmes', 'he']| -cried here's,['the'] -Bohemia rushed,['into'] -most perfect,|['reasoning', 'happiness']| -Toller who,['might'] -you by?",['landlord'] -Holmes blandly,|['You', 'but', 'Pray']| -called about,['that'] -Robert said,['she'] -with Toller,['hurrying'] -It appears,['that'] -supporters though,['there'] -suspicion would,['rest'] -his sleeves,['without'] -fellow upon,['the'] -windows to,['see'] -my true,['wedding'] -chalk mixture,['which'] -16A Victoria,['Street'] -the details,|['which', 'are', 'should', 'warn']| -which took,['many'] -always secure,['me'] -of Morcar,|['the', 'upon']| -Rucastle both,['Toller'] -the main,|['arteries', 'facts', 'points', 'building', 'chamber']| -mind What,['could'] -they do,['their'] -thought I,|['had', 'heard']| -the maid,|['who', 'brought', 'that', 'at', 'will', 'tapping', 'a', 'leave', 'and']| -between Australians,['There'] -cannot quite,['hold'] -for such,|['elaborate', 'nice', 'a']| -well do,['not'] -left but,['if'] -the least,|['interested', 'running', 'That', 'Is', 'ray', 'to', 'clue']| -a dog-cart,|['along', 'which', 'at']| -sprang out,|['He', 'of', 'and', 'into']| -Helen said,['she'] -spared you,['when'] -knew how,|['he', 'you']| - "VIOLET,['HUNTER'] -alone But,['as'] -Munro but,['two'] -The son,['as'] -turning it,['over'] -nonsense. should,['certainly'] -suggestive of,['resolution'] -so Pray,['proceed'] -turning in,|['her', 'and']| -observe that,|['there', 'though', 'your', 'you']| -iron gate,['This'] -course stands,['for'] -our hydraulic,['engineer'] -two feet,['deep'] -panel just,['above'] -and wholesome,['the'] -work our,['own'] -Harrow and,['we'] -Yes I,|['did', 'think']| -all from,['the'] -enwrapped in,['the'] -principles of,['her'] -She watched,['us'] -Crown Prince,['then'] -gave quite,['a'] -robbery having,['been'] -nothing until,|['the', 'then', 'I', 'seven']| -boxes and,['not'] -rummaged amid,['his'] -tassel actually,['lying'] -them right,['enough'] -light grey,['eyes'] -Written in,['pencil'] -well-known agency,['for'] -definitely announced,['his'] -was Catherine,['Cusack'] -precursor of,['his'] -repay you,['There'] -then all,|['must', 'was']| -Hatherley's thumb,['and'] -the finer,['shades'] -age which,['is'] -door so,|['as', 'he']| -fierce quarrel,['broke'] -round where,['the'] -was absent,['from'] -finding what,['I'] -to rush,|['to', 'into']| -leaves and,['dried'] -would follow,|['It', 'from']| -wayside public-house,['The'] -H B.,['are'] -looked startled,['I'] -kindly that,['I'] -injuries which,['neither'] -answered And,['perhaps'] -last hurried,['glance'] -attempted when,['he'] -all his,|['mental', 'giant', 'strength']| -understanding between,['Sir'] -contraction like,['our'] -deserted there,['I'] -use my,['magnifying'] -then died,['just'] -pen Name,['the'] -friend He,['wished'] -kingdom to,['have'] -round jovial,['man'] -on down,['a'] -blue rings,['into'] -had turned,|['down', 'to', 'his', 'up']| -so moist,['was'] -comfortable-looking man,['that'] -the wet,['foot'] -wait she,['went'] -you reached,['the'] -treasure which,['we'] -were marked,['at'] -was for,|['the', 'which']| -gentlemanly he,['was'] -fancy is,['Miss'] -master of,|['his', 'the']| -buy D'you,['see'] -sign the,['paper'] -took our,['seats'] -machine overhauled,['I'] -uncle? I,['cried'] -laughed in,['the'] -for Lestrade,['was'] -strange pets,['which'] -unfortunate lady,['died'] -forehead sat,['up'] -the skin,['of'] -clamped to,['the'] -room were,['all'] -followed recent,['events'] -circumstances are,['of'] -certainly to,['muster'] -his searching,['fashion'] -I was,|['seized', 'aware', 'addressing', 'young', 'at', 'already', 'to', 'certain', 'not', 'compelled', 'just', 'I', 'conspiring', 'determined', 'really', 'about', 'a', 'often', 'always', 'so', 'in', 'there', 'ascertaining', 'engaged', 'set', 'Then', 'pledged', 'never', 'then', 'busy', 'informed', 'following', 'doing', 'concerned', 'inclined', 'more', 'known', 'firm', 'forced', 'sixteen', 'quite', 'asked', 'glad', 'unable', 'well-nigh', 'well', 'newly', 'Isa', 'walking', 'wondering', 'quickly', 'weary', 'saving', 'arrested', 'speaking', 'recommended', 'out', 'leaning', 'feeling', 'handling', 'myself', 'able', 'too', 'probably', 'the', 'awakened', 'very', 'apprenticed', 'thinking', 'fortunate', 'stepping', 'ten', 'thoroughly', 'She', 'under', 'admiring', 'conscious', 'far', 'still', 'amused', 'kind', 'alive', 'wrong', 'seated', 'overwhelmed', 'alone', 'soon', 'wide', 'placed', 'eager', 'shocked', 'right', 'clear', 'repelled', 'shown', 'such', 'sure', 'disappointed', 'told', 'standing', 'naturally', 'accustomed', 'preoccupied', 'all', 'keenly', 'frightened', 'Miss']| -Paramore All,['well'] -A fortnight,['went'] -which crime,['may'] -have allowed,['anyone'] -address and,['I'] -through Oxford,['Street'] -a governess,['for'] -and burst,['into'] -child or,['the'] -Holmes' quick,['eye'] -of fidelity,['exacted'] -clasping and,['unclasping'] -for working,['as'] -the suspicion,|['of', 'that']| -some two,['years'] -effect would,['also'] -But come,['in'] -work out,['the'] -slurred and,['the'] -work for,['you'] -lady herself,['loomed'] -best Take,['your'] -a cashier,['in'] -grandfather had,['two'] -danger I,['be'] -their track,|['You', 'Very']| -surrounded by,['none'] -this wind-swept,['market-place'] -gives the,['charm'] -Burnwell has,['been'] -and retained,|['Then', 'the']| -ostlers and,['servant-maids joined'] -command and,['to'] -make allowance,['for'] -this long,['narrative'] -Oxford His,['brain'] -let the,|['young', 'county', 'police']| -either shoulder,['and'] -forgiveness Chance,['has'] -grey suit,['who'] -for help,|['and', 'you', 'her', 'gone']| -tie under,['his'] -nip in,['the'] -reward of,['1000'] -from New,['Mexico'] -fathom they,['carried'] -a lantern,|['and', 'Over', 'As', 'in']| -so But,|['I', 'our']| -Watson and,|['I', 'maybe', 'as']| -tight and,['turned'] -be busy,['this'] -custody of,['the'] -House of,['Ormstein'] -exact spot,['at'] -man She,['lives'] -gathered up,['the'] -business was,|['still', 'a']| -she eclipses,['and'] -without further,['parley'] -London By,['profession'] -impatience to,['be'] -of running,|['footfalls', 'feet']| -man coarsely,['clad'] -Mrs. Moulton,['you'] -garments and,['there'] -the manifold,['wickedness'] -believe her,['to'] -highly suspicious,['because'] -lay listening,['with'] -can't have,['tomfoolery'] -footmen declared,['that'] -homely little,['room'] -the consciousness,['that'] -deep blue,['cloak'] -telegram upon,['this'] -emerged it,['would'] -and generally,['assisting'] -emerged in,|['five', 'no']| -entered From,['the'] -no wish,['to'] -your hair?,['sir'] -her then,['to'] -and wig,['Even'] -what are,|['they', 'you']| -the curve,['of'] -help the,|['lady', 'King', 'trespasser']| -in nose,['and'] -your intelligence,['by'] -lay awake,|['thinking', 'half']| -the blind,|['He', 'That']| -and half-pennies 421,['pennies'] -their fire,['and'] -saucer of,['milk'] -like this,|['and', 'Vincent', 'noised']| -same brilliant,['reasoning'] -capacity for,['self-restraint'] -great amethyst,['in'] -what my,['wife'] -my beloved,['sister'] -not such,['a'] -the glint,['of'] -Horner was,['arrested'] -forget Oh,['my'] -any assistance,['either'] -As to,|['Mary', 'your', 'the', 'his', 'what', 'Mrs', 'reward', 'my', 'Holmes', 'who']| -the banks,['of'] -new problem,['I'] -the warnings,|['shook', 'of']| -place about,['the'] -I have! a,['trouble'] -which made,|['it', 'him', 'me']| -eye turned,['upon'] -Absolutely no,['clue'] -confess that,|['I', 'the', 'it']| -tell my,['tale'] -As I,|['passed', 'drove', 'expected', 'glanced', 'approached', 'turned', 'opened', 'ran', 'descended', 'gave', 'have', 'came', 'was', 'strolled', 'stood']| -wrinkled and,['stained'] -hurt a,['fly'] -the steady,['well-opened'] -piling fact,['upon'] -there Ah,['this'] -reason why,|['she', 'he', 'I']| -silence each,['mumbling'] -As a,['rule'] -visit an,['old'] -went from,['home'] -by chance,['but'] -That he,['should'] -have suggested,['the'] -talk in,['safety.'] -vulgar intrigue,['That'] -Holmes said,|['I', 'Jabez', 'Mr', 'he', 'Lestrade', 'the']| -play for,['a'] -a well-lit,['dining-room'] -hardly visible,['That'] -straightened it,['out'] -would get,['quite'] -questions Mr,['Wilson'] -it to,|['an', 'him', 'them', 'a', 'be', 'affect', 'the', 'your', 'our', 'pieces', 'Captain', 'some', 'turn', 'satisfy', 'you', 'know', 'my', 'observe']| -refers to,['her'] -do better,["I'll"] -had run,|['out', 'back', 'swiftly']| -friend's singular,['character'] -away for,['days'] -cannot find,['words'] -I this,['is'] -our minds,['for'] -sometimes for,['weeks'] -impersonal thing a,['thing'] -country district,['not'] -Dr Willows,['says'] -of Arthur's,|['face', 'Sir']| -Sutherland to,['be'] -B. are,['legible'] -the basin,['of'] -spoken of,['Swandam'] -be where,['she'] -ejaculated dear,['Watson'] -woman to-night,['when'] -Holmes carelessly,['If'] -get corroboration,['I'] -Hudson came,['Same'] -eyes to,|['the', 'do']| -thick with,|['the', 'dirt']| -London the,['name'] -table I,|['have', 'had', 'began']| -his wet,['feet'] -deserted rooms,['and'] -suspicious because,['such'] -she lived,['with'] -age I,|['should', "don't"]| -really abutted,['on'] -motion like,['a'] -district not,['very'] -for present,['expenses'] -so. But,|['how ', 'I', 'you']| -be fond,['of'] -earth can,['be'] -early appointment,['this'] -table a,['shriek'] -Miss Irene,|['Adler', 'or']| -be much,['surprised'] -firm McCarthy,['threatened'] -|only, as|,['I'] -shake off,['the'] -coeur She,['would'] -innocent of,['this'] -in half,['an'] -have aroused,['your'] -product One,['by'] -narrow strip,['which'] -extraordinary contortions,['on'] -your chamber,['then'] -talk it,['over'] -he seized,['my'] -melon seeds,['or'] -poker and,|['bent', 'with']| -Ross who,['have'] -which happened,['to'] -add the,['very'] -platform save,['a'] -however caused,['by'] -forming an,['opinion'] -on far,['slighter'] -great House,['of'] -edge In,['another'] -goose into,['the'] -And good-night,['Watson'] -shelf for,['the'] -important Can,['you'] -SPECKLED BAND,['glancing'] -ever we,['came'] -evening dress,['the'] -perhaps less,['suggestive'] -none ever,['reached'] -gone you,['mean'] -heavy upon,['it'] -was writing,['me'] -Encyclopaedia must,['be'] -our course,['of'] -minutes tweed-suited,['and'] -Calcutta where,['by'] -he straightened,['himself'] -a hard,|['fight', 'man']| -my security.,['took'] -extended hand,['recalled'] -by swimming,['for'] -and presently,['to'] -thoughtfully It,['may'] -creatures from,['India'] -was arrested,|['and', 'as', 'the']| -us right,['on'] -spectacle It,['is'] -making inquiries,['said'] -dozen other,['people'] -orders were,['to'] -points that,['he'] -trumpet of,['his'] -strengthen our,['resources'] -side You're,['mad'] -radiance Ryder,['stood'] -I there,['would'] -stone at,['once'] -sympathy of,['the'] -have both,['seen'] -showed me,|['as', 'how', 'that']| -week he,|['hurled', 'had']| -and which,|['were', 'are', 'to', 'it', 'he', 'a', 'transmit', 'lured']| -confined in,['the'] -summons to,['Odessa'] -took down,|['a', 'from']| -has 220,['pounds'] -Ah yes,|['I', 'he']| -another I,['had'] -Alice wasn't,['from'] -suppose is,['he'] -invariably locked,|['and', 'One']| -this trusty,['tout'] -hanging by,['the'] -why did,|['you', 'he']| -suggestive one,['it'] -renew her,['entreaties'] -decrepit figure,['had'] -square house,['of'] -my will,['I'] -red-headed folk,['and'] -banker's son,['appeared'] -your troubles,['You'] -England dear,['fellow'] -thoughts turning,['in'] -cost me,['something'] -be interested,['in'] -otherwise in,['convincing'] -I get,['back'] -outstretched hands,['and'] -again whenever,['she'] -occasional friend,['of'] -a police-station,['anywhere'] -local Herefordshire,['paper'] -as narratives,['beginnings'] -office which,['is'] -large black,['linen'] -to write,|['every', 'letters']| -weak just,['as'] -Just beyond,['it'] -the lid,|['Its', 'was', 'from']| -well face,['the'] -having too,['much'] -walked round,|['it', 'the']| -Holmes seemed,['to'] -once been,['shown'] -open gentleman,['was'] -these hot,['fits'] -fifty yards,['across'] -well The,['letter'] -cheekbones a,['black'] -dusty and,|['spotted', 'cheerless']| -became engaged,|['My', 'to']| -not come,|['in', 'to', 'at', 'back', 'either']| -my custom,|['to', 'said']| -down four,['golden'] -very careful,|['examination', 'I']| -was searching,['his'] -mind you,|['so', 'know']| -name was,|['new', 'William', 'strange', 'indeed']| -powers so,['sorely'] -so Why,['all'] -barred door,['passed'] -daring men,['and'] -I suddenly,['heard'] -elderly man,|['I', 'with']| -her confederate,['A'] -injuries were,['such'] -bedroom the,['window'] -has long,['been'] -trampled grass,['He'] -the presence,['of'] -am not,|['mistaken', 'accustomed', 'sure', 'more', 'convinced', 'quite', 'over-tender', 'intruding', 'hysterical', 'very', 'joking', 'retained', 'a', 'easy']| -finished my,['tea'] -dearly Large,['masses'] -you these,['results'] -pocket is,['a'] -so the,|['observer', 'window', 'place']| -died it,['was'] -begged a,["fortnight's"] -boot to,['his'] -address Oh,['sir'] -a good,|['deal', 'cause', 'look', 'worker', 'turn', 'man', 'one', 'amiable', 'husband', 'scar', 'fat', 'article', 'three', 'drive', 'seven', 'hundred', 'strong', 'seaman']| -not fall,['upon'] -I owe,['Watson'] -the cell,['The'] -for photography,|['Snapping', 'and']| -newcomers our,['client'] -any sort,|['From', 'of', 'from']| -gained through,['one'] -I fix,['the'] -but to,|['name', 'get']| -broke in,['the'] -bunch of,['keys'] -habits so,['far'] -the stairs,|['and', 'the', 'which', 'however', 'so.', 'She', 'was', 'I', 'she', 'as', 'together']| -upper floor,['and'] -the West,['End'] -very annoyed,['at'] -about round,['my'] -material for,['showing'] -They spoke,['of'] -close the,|['window', 'door', 'front']| -Holmes cried,['our'] -Then when,|['I', 'they', 'he', 'you']| -Watson Would,['you'] -to each,|['candidate', 'of', 'other']| -picking flowers,['She'] -S A.,['there'] -horribly mangled,['into'] -into frequent,['contact'] -lamp still,['stood'] -our new,|['companion', 'visitor', 'acquaintance']| -have brought,|['some', 'an', 'a', 'trouble']| -was amiss,['with'] -and comfortable,['double-bedded'] -so I,|['shall', 'can', 'just', 'bought', 'had', 'said', 'offered', 'wrote', 'know', 'deduced', 'smoked', 'trust', 'came', 'remarked', 'made', 'dressed', 'think', 'tied', 'picked', 'went', 'have', 'congratulate', 'locked', 'am', 'retired', 'passed', 'answered', 'took']| -then roused,['his'] -few centuries,['ago'] -a possibility,['of'] -easy and,['common'] -his pockets,|['he', 'for', 'began', 'and']| -man but,|['I', 'the']| -whole place,|['is', 'been']| -stop it,['But'] -so a,['happy'] -Peter Jones,['the'] -nearly one,["o'clock"] -again I,|['observe', 'fail', 'have', 'found', 'swear', 'just', 'sat', 'laughed']| -them but,|['they', 'just']| -which must,|['always', 'draw', 'have', 'be', 'within']| -are seeking,['employment'] -kind to,|['leave', 'me', 'her']| -and reckless,['ready'] -often vanish,['before'] -returns from,['her'] -in animated,['conversation'] -come. I,['am'] -an axiom,['of'] -as this,|['was', 'Miss', 'Men', 'Could', 'that', 'matter', 'Pray']| -a not,['over-clean'] -delicate part,['which'] -my ignorance,['of'] -the impunity,['with'] -shops and,['stately'] -tobacco And,['you'] -these disreputable,['clothes'] -where by,['his'] -conveyed no,['meaning'] -he have,['done'] -sound him,['upon'] -shock of,|['very', 'orange']| -If you,|['will', 'leave', 'can', 'two', "don't it's", 'find', 'would', "won't", 'come', 'show', 'choose', 'but', 'have', 'were', 'should', 'could']| -want any,['friends'] -letters for,|['blackmailing', 'his']| -pipe down,['upon'] -have detected,['and'] -of Lee,|['said', 'He', 'in']| -tunes which,['he'] -But soon,['he'] -home We,['neither'] -moss where,['he'] -Stoke Moran,|['The', 'on', 'back', 'to-day', 'this', 'Doctor,"', 'Manor', 'dear', 'It']| -to Briony,['Lodge'] -themselves was,['upon'] -now with,|['a', 'yellow', 'so']| -I recall,['the'] -eyes upon,|['my', 'each']| -recommence your,['narrative'] -be right,['Now'] -held up,|['a', 'the', 'one']| -Violence of,['temper'] -two stories,['Chubb'] -single flaming,['beryl'] -these last,['which'] -material She,['spoke'] -anything but,|['real', 'it']| -hard-felt hat,['much'] -owe Mr,['Holder'] -unusual thing,['to'] -what secret,['it'] -|earth tut,|,['tut'] -a valuable,['product'] -interest me,['extremely'] -McCarthy kept,['two'] -surmise as,['to'] -own ink,['pens'] -game like,['those'] -You should,|['be', 'have']| -yesterday. could,['I'] -yet and and well,['he'] -be alive,|['or', 'Mr']| -my occupation,['and'] -You've heard,['about'] -his lank,['wrists'] -and respectable,|['as', 'life']| -noble houses,['of'] -possible He,['was'] -themselves in,['communication'] -their place,['There'] -direct I,['got'] -stood upon,['the'] -He carried,['a'] -Moran who,['is'] -The lens,['discloses'] -explained away,['But'] -followed after,['him'] -sight and,['typewriting'] -personally into,['it'] -clearly to,['bring'] -asleep with,['his'] -Angel About,['five'] -which are,|['of', 'really', 'if', 'going', 'so', 'worth', 'displayed', 'suggestive', 'rolled', 'not', 'very', 'to', 'sent', 'outside', 'next', 'the']| -that settles,['the'] -philanthropist or,['a'] -ten however,['and'] -being less,['bold'] -bound to,|['have', 'Hosmer', 'disappoint', 'Savannah', 'say']| -any doubts,['which'] -my point,|['Now', 'He']| -every sufferer,['over'] -plunge as,['of'] -were new,|['to', 'raised']| -features of,['interest'] -of another,|['said', 'My']| -streets of,|['the', 'London']| -beautifully defined,['The'] -It rested,['upon'] -on saying,['that'] -have twice,['been'] -been everywhere,['seen'] -see over,['these'] -gentleman much,['hurt'] -cab as,['she'] -jump until,['I'] -pearl-grey trousers,['Yet'] -and blotting-paper,['but'] -often thought,['the'] -fought in,["Jackson's"] -merely that,['Holmes'] -screening him,['or'] -Striding through,['the'] -England I,['was'] -very pretty,|['villain', 'diversity', 'girl']| -partly caved,['in'] -was thrown,|['over', 'from', 'by']| -and delicacy,|['and', 'in']| -are past,|['Man', 'was']| -solid iron,['built'] -If it,['had'] -table of,['which'] -very funny,['cried'] -could correctly,['describe'] -relic of,['my'] -stick I,['was'] -table on,['the'] -my approaching,['it'] -trough of,['a'] -The place,['we'] -his mother,|['and', 'it']| -six almost,['parallel'] -carbuncle save,['that'] -as yours,|['so,"', 'When']| -man the,['loss'] -then obviously,['it'] -springs such,['as'] -ever observed,['that'] -was responsible,['for'] -her eyes,|['fixed', 'glancing', 'were']| -pair of,|['beauties', 'wonderfully', 'bushy', 'the', 'very', 'high', 'white', 'his', 'glasses']| -any other,|['name', 'idler', 'day', 'little', 'suitor', 'weapon', 'people', 'engagement', 'fashion']| -I poured,['out'] -my trouble,['to'] -in Dundee,['it'] -seen There,['was'] -old family,['seat'] -pew at,['the'] -are paying,['to'] -one over,['yonder'] -something passing,['through'] -we passed,|['down', 'at', 'out']| -A chair,['had'] -heart it will,['break'] -which promises,['to'] -built sallow,['complexion'] -you Lestrade,|['he', 'drawled']| -groom out,['of'] -had Having,['measured'] -all who,['know'] -couple at,['home'] -opinion what,['point'] -introducing to,['his'] -bought a,|['penny', 'small']| -room covered,['her'] -slip to,['the'] -his Bohemian,['habits'] -London Bridge,['Between'] -formed the,['opinion'] -taken it,|['out', 'upstairs']| -directed and,['the'] -drew itself,['shoulder-high'] -inquiry came,['to'] -Here are,|['your', 'the', 'his']| -I dine,['at'] -cannot imagine,|['I', 'It', 'there', 'see', 'how']| -fastened to,['a'] -American It,['gave'] -papers isn't,['a'] -lens discloses,['a'] -husband both,['thought'] -the schoolmaster,['She'] -certain amount,['of'] -However in,['the'] -an absolute,|['imbecile', 'darkness']| -he stopped,['under'] -eccentric conduct,['had'] -She will,['not'] -two visitors,['vanished'] -within seven,['miles'] -had ill-usage,['at'] -night of,|['May', 'adventure']| -flushing up,|['to', 'at']| -her room,|['therefore', 'Her', 'covered', 'was', 'passing']| -answer I,['confess'] -a disappointment,['to'] -days since,['you'] -two matters,['of'] -of woman's,['instinct'] -married about,['seven'] -considerable sums,['of'] -may tell,['you'] -point very,['straight'] -passage in,|['a', 'front']| -terrible secret,['society'] -is but,|['one', 'a']| -Five little,['livid'] -He found,['as'] -me my,|['dear', 'violin']| -duplicate bill,['His'] -thirty-six stones,['were'] -older jewels,['every'] -great gravity,['was'] -one will,['find'] -his name,|['was', 'will', 'I', 'is']| -guilt can,['we'] -grey travelling-cloak,['and'] -that they,|['would', 'really', 'cared', 'had', 'should', 'appeared', 'were', 'brought', 'are', 'can', 'exactly', 'may', 'have']| -be deduced,['from'] -tree Gone,['was'] -put themselves,['in'] -He seemed,['quite'] -cried else,['how'] -specimen of,['the'] -will leave,|['that', 'the', 'in', 'no', 'your']| -nights You,['do'] -Regent Street,|['and', 'with']| -pick of,['her'] -his overcoat,|['in', 'You', 'There']| -full market,['price'] -following enigmatical,['notices'] -we expected,['to'] -considerable fortune,['in'] -a process,['of'] -small case-book,['which'] -exclamation in,['German'] -hear your,|['Majesty', 'real']| -were rather,['cumbrous'] -of cuff,['or'] -boot it,['was'] -position you,['can'] -so hand,['me'] -gentleman your,['friend'] -doing for,['some'] -have covered,['all'] -luck during,['this'] -affair must,|['be', 'know']| -his rustic,['surroundings'] -little country-town,['of'] -so we,|['shut', 'may', 'drew', 'passed', 'just', 'came']| -creature or,['who'] -a plain,|['one', 'answer', 'wooden']| -a business,|['man', 'already', 'glad', 'turn']| -window with,|['my', 'its']| -a plaid,['perhaps'] -that chair,['took'] -doing can't,['imagine'] -miss anything,['of'] -indeed a,|['mystery', 'fact', 'gigantic', 'door']| -gravel-drive which,['led'] -world IV.,['THE'] -expenses of,['their'] -awake half,['the'] -and earnestly,['at'] -indeed I,|['am', 'suppose', 'do']| -know if,['evil'] -he spoke,|['there', 'the', 'his', 'and', 'of', 'he', 'I']| -predominated in,['him'] -facts as,['far'] -information in,['his'] -rush of,|['steps', 'constables']| -become a,['public'] -out We,['have'] -wife's affection,['he'] -yet among,['the'] -analysis grinned,['at'] -was piled,['all'] -secure and,['did'] -of voices,['from'] -Nothing could,|['have', 'be']| -BAND glancing,['over'] -New Mexico,['After'] -remark to,['break'] -date during,['the'] -natural enemies,['or'] -girl Miss,|['Holder', 'Hunter']| -again Perhaps,['I'] -from another,['standpoint'] -sings at,['concerts'] -married Lord,['St'] -that before,|['strange!"', 'cannot', 'taking']| -indiscreetly playing,['with'] -remarkable bird,['it'] -had accomplished,['so'] -|bodies bodies,|,['Watson'] -Savannah I,['wired'] -depend so,['entirely'] -say seems,['to'] -of drink,|['Twice', 'and']| -Making our,['way'] -and tear,['about'] -purpose can,['be'] -afternoon he,|['remarked', 'sat']| -to point,|['very', 'out']| -the ball,|['well,']| -broader and,['a'] -advertisement Every,['shade'] -have happened,|['And', 'in', 'between', 'then']| -K of,['the'] -the stevedore,['who'] -who came,['bustling'] -port of,['London'] -would not,|['be', 'go none', 'hear', 'risk', 'dare', 'go', 'have', 'remain', 'answer', 'listen', 'speak', 'miss', 'think', 'tell', 'object', 'advise']| -left glove,['You'] -breakfast-room your,['arm'] -opponent So,['far'] -resistless inexorable,['evil'] -more of,|['the', 'Hugh', 'your']| -We stepped,['as'] -lady lived,['we'] -more on,['the'] -new companion,['and'] -allusions to,['a'] -just two,|['years', 'little']| -would crawl,['down'] -hung like,['an'] -the grime,['which'] -could my,['hair'] -when my,|['way', 'father', 'uncle', 'sister', 'companion', 'eye', 'brother']| -rocked himself,['to'] -jury was,['a'] -in Sherlock,['Holmes'] -give the,['alarm'] -swiftly If,['they'] -a whip,['across'] -beyond words,['Holmes'] -huddled in,['a'] -letters then,['the'] -strong lock,['the'] -instant in,['bringing'] -breaks down,['under'] -darkness I,['have'] -theory by,['means'] -rending tearing,['sound'] -went out,|['of', 'as', 'to', 'so.', 'little', 'for']| -dazed with,['astonishment'] -a bachelor.,['face'] -statement for,['it'] -his chair,|['and', 'with', 'as', 'in', 'now', 'once', 'up', 'he', 'Watson', 'seems', 'showed', 'very', 'You']| -Remember the,['card'] -a limp,['but'] -order Holmes,['thrust'] -of incidents,['should'] -her pleading,['face'] -window which,['leads'] -met speciously,['enough'] -home with,|['my', 'odd', 'you']| -maid-servants who,['have'] -bird will,['be'] -will no,['doubt'] -we set,['off'] -round are,['part'] -very distinct,['and'] -creature flapped,['and'] -say whether,['the'] -disfigured by,['a'] -been caused,['by'] -we see,['that'] -suddenly tailing,['off'] -Sutherland has,['troubled'] -the cabs,['go'] -in addition,['I'] -a terrified,['woman'] -the rocket,['rushed'] -sir though,['I'] -little room,['with'] -say sir,['and'] -strange effects,['and'] -power of,|['such', 'making']| -occurred it,['is'] -requests for,['they'] -the twentieth,['of'] -waited I,|['should', 'lifted']| -hundred yards,|['from', 'or']| -under half,['a'] -we be,['married'] -not take,|['it', 'place', 'me', 'any']| -earth does,['this'] -deeds of,['hellish'] -stood and,['talked'] -she slept,['Imagine'] -had raised,['my'] -west I,['had'] -two upper,['ones'] -the gold,|['became', 'chasing', 'corners']| -man shocked,['at'] -which need,['smoking'] -have spent,|['the', 'police']| -been out,|['in', 'with', 'to']| -driving with,['my'] -last pa,["wouldn't"] -often had,['a'] -them less,['so'] -me She,|['is', 'wrote', 'rose']| -saw clearly,['not'] -the writer,|['was', 'is']| -very wrinkled,['bent'] -sleep out,['of'] -in admiring,['the'] -deluded when,['with'] -that hour,|['and', 'we']| -solution by,['the'] -recommend you,|['also', 'to']| -trough By,['its'] -no obstacle,['to'] -tapped on,['the'] -lashed so,['savagely'] -of last,|['year', 'Monday', 'night']| -to examine,|['minutely', 'its', 'building', 'the', 'it']| -roughs who,['assaulted'] -the repulsive,['sneer'] -he begged,['me'] -were that,['he'] -out nothing,['save'] -the books?,['she'] -the poison,|['or', 'fangs']| -For all,['these'] -France It,['has'] -child on,['earth'] -hollowed out,['by'] -opening between,['two'] -forehead will,['the'] -him home,|['a', 'in']| -name Just,['read'] -Hunter for,['falling'] -looking across,['at'] -am but,['thirty'] -benefactor Are,['you'] -our neighbours,['who'] -plush upon,['her'] -side-whiskered with,['an'] -to befall,['it'] -I lowered,['my'] -important factor,['in'] -suspect him,['could'] -then." years,['ago to'] -hold out,['while'] -reasoner and,['most'] -right angle,['at'] -have started,['early'] -|doubting did,|,['Doctor'] -have carte,['blanche'] -me When,['about'] -you have,|['put', 'been', 'a', 'frequently', 'seen', 'hopes', 'tattooed', 'to', 'told', 'any', 'gained', 'ever', 'divined in', 'done', 'got', 'detected', 'no', 'missed', 'hit', 'come', 'read', 'drawn', 'saved', 'given', 'placed', 'shown', 'described', 'thrown', 'favoured', 'had', 'four', 'as', 'mentioned', 'just', 'five', 'not', 'the', 'already', 'felt', 'formed', 'only', 'followed', 'heard', 'every', 'recovered', 'stolen?', 'chosen', 'stolen', 'learned', 'excluded', 'so', 'why', 'reconsidered', 'yourself', 'I']| -bedroom Thrust,['away'] -effect It,['is'] -interested I,['am'] -these about,['four'] -|right, fourth|,['left'] -so very,|['shiny', 'sharp', 'young', 'kind']| -bent on,['felony'] -where Mr,['Fordham'] -up my,|['ears', 'pen', 'arms', 'mind', 'spirits']| -Holmes are,['you'] -lock it,['up'] -to He,['laughed'] -a grove,['at'] -medical adviser,['and'] -observing him,['A'] -coster's orange,['barrow'] -judgment that,['I'] -quill pen,['and'] -to trace,|['some', 'her']| -his constitution,['has'] -I keep,['it'] -you my,|['word', 'dear', 'word.']| -Our cabs,['were'] -coronet see.,['You'] -little German,['music'] -been left,|['by', 'behind']| -the money,|['If', 'and', 'just', 'of', 'but', 'which', 'should', 'in', 'Mr', 'yes,']| -looking about,['for'] -at Coventry,['which'] -of steam,['escaping'] -less illuminated,['than'] -force from,['behind'] -Papier. Now,['for'] -ago to be,['definite'] -key turn,['in'] -my God,|['my', 'Helen', 'what']| -courtesy for,['which'] -delusion from,['a'] -an hour,|['and', 'before', 'matters', 'experience', 'instead', 'But', 'the', 'we', 'ago', 'How', 'I', 'Colonel', 'The', 'there', 'to', 'or', 'on']| -moisture on,['his'] -more damning,['case'] -if only,['as'] -never meant,['for'] -was let,['to'] -had foretold,['and'] -That sounded,['ominous'] -unlike those,['of'] -it There,['were'] -then looked,['round'] -the disgrace,['I'] -now of,['my'] -my success,['would'] -would it,|['bore', 'be']| -man There,['are'] -was she,['to'] -would in,['England'] -muzzle and,['huge'] -you prefer,['it'] -club by,['which'] -numbers after,['their'] -the parish,|['clock', 'who']| -foot Then,['glancing'] -there to,|['see', 'personate']| -jutting pinnacles,['which'] -very carefully,|['It', 'from', 'and', 'round']| -investments for,['our'] -with one's,['other'] -over that,|['dark', 'threshold']| -convinced now,['that'] -two a,['man'] -her forearm,['We'] -destroyed On,['the'] -|sure, dad.|,["good-night.'"] -scorn her,['advice'] -life appears,['to'] -and dropped,|['to', 'his', 'them']| -One day,|['my', 'he', 'however']| -me But,|['the', 'it']| -coronet cried,['Mr'] -interview was,['goading'] -early enough,['shall'] -line a,['little'] -young some,['two-and-twenty'] -destitute as,['I'] -quite to,['fill'] -make neither,['head'] -sheet of,|['thick', 'his', 'note-paper', 'water', 'paper', 'sea-weed', 'blue', 'the']| -bank robbery,['that'] -and say,|['There', 'no']| -concern in,['the'] -and sat,|['down', 'day', 'silent']| -same thing,['had'] -and saw,|['a', 'scrawled', 'to', 'us', 'the', 'Frank', 'that', 'him']| -his pipe,|['down', 'and', 'with']| -the advertisement,|['column', 'Mr', 'you', 'never', 'Fleet', 'of', 'one', 'about', 'sheet', 'columns']| -papers to,|['illustrate', 'the']| -that open,['window'] -orgies had,['always'] -in view,['of'] -he geese!",['The'] -church She,['came'] -a recognised,['character'] -you read,['I'] -here said,['Holmes'] -to tie,['my'] -making a,|['trumpet', 'fool', 'row']| -rescue The,['alarm'] -muttering that,['no'] -stones may,['as'] -protruding fingers,['and'] -has accumulated,['the'] -any steps,|['which', 'until']| -papers asked,['the'] -the obvious,|['facts', 'course', 'fact']| -spring up,['among'] -again of course,['that'] -cracks between,['the'] -|so, much|,['may'] -The method,['was'] -be cunning,['devils'] -a cry,|['and', 'of', 'for', 'she']| -was elbowed,['away'] -Bradstreet as,['the'] -triumphant cloud,['from'] -the scissors,['of'] -left my,|['armchair', 'chair', 'miserable']| -shadow and,['with'] -snapped and,['your'] -an emerald,['snake'] -sad anxious,['look'] -chaff which,['may'] -contemptuous while,['I'] -the badge,['of'] -left me,|['but', 'by', 'my']| -set any,['tax'] -Ferguson remained,['outside'] -preparations have,['gone'] -effort he,['braced'] -was speaking,['only'] -slight and,['it'] -was She,|['had', 'was']| -your theory,['You'] -the egotism,['which'] -year 1858,['Contralto hum'] -but my,|['own', 'station', 'mind', 'curiosity']| -must make,|['the', 'allowance']| -any humiliation,['you'] -help suspecting,|['him', 'that']| -forget for,['half'] -lunch at,['Swindon'] -rise to,['the'] -porter with,['a'] -Birchmoor it,['is'] -merely the,['wild'] -had strange,['fads'] -shirt He,['spoke'] -do." don't,['say'] -look came,['over'] -came my,['sister'] -for robbery,['having'] -foreman but,['when'] -expostulating with,['them'] -invaders Lord,['St'] -11:15. shall,['certainly'] -house to,['see'] -cleared from,['London'] -twig You,['should'] -a considerable,|['amount', 'interest', 'sum', 'difference', 'household', 'state', 'share', 'dowry', 'part']| -way has,['escaped'] -I write,['from'] -steps descending,['the'] -forgot all,['about'] -long silence,|['Why', 'broken', 'during']| -was beating,['and'] -you said,|['Holmes', 'that', 'the', 'he', 'she', 'just', "you'd", 'our', 'I']| -several footsteps,['was'] -off to,|['make', 'violin-land', 'France', 'bed', 'sleep', 'seek', 'some']| -the country-side,['but'] -coat-tails are,['three'] -time and,|['the', 'showed', 'looking', 'having', 'in', 'I', 'it', 'pledged', 'Toller']| -cease to,['be'] -state I,['shall'] -more stress,['is'] -You will,|['find', 'first', 'however', 'leave', 'sign', 'ask', 'I', 'excuse', 'be', 'see']| -extreme love,['of'] -glad now,['to'] -He used,['to'] -charming climate,['of'] -point in,|['favour', 'the']| -outside air,['is'] -morning and,|['to', 'then', 'in', 'the', 'knock', 'on', 'make', 'it']| -very brightly,['and'] -to Londoners,['and'] -her key,['turn'] -With much,['labour'] -under it,['It'] -me carte,['blanche'] -to discover,|['what', 'that', 'the']| -main building,['to'] -pips which,|['pattered', 'would']| -whether in,['all'] -shown Horner,['up'] -parted lips,['a'] -whether it,|['answered', 'will', 'was']| -my advice,|['my', 'in']| -was drenched,['with'] -in memory,['of'] -stepfather do,|['to', 'then']| -introduced by,['him'] -table Holmes,['was'] -letters he,['continued'] -subject were,['very'] -of time,|['to', 'while', 'and']| -where pa,['was'] -Clair the,['clouds'] -proposal and,['all'] -were admirable,['things'] -following the,|['guidance', 'future']| -her beckoning,['to'] -Gottsreich Sigismond,['von'] -laughed indulgently,['You'] -recalled to,['myself'] -Large masses,['of'] -to resolve,|['all', 'our']| -an individual,['and'] -would slam,['his'] -broke off,['by'] -fill a,['vacancy'] -will sign,['it'] -his return,['so'] -half two,['fills'] -Elias and,['my'] -face More,['than'] -prevent it,['He'] -quite understand,|['your', 'that', 'was']| -doubt familiar,['to'] -back by,|['his', 'some']| -man Is,['it'] -the officials,['One'] -coat had,['remained'] -although there,|['have', 'seemed']| -feature We,['got'] -stepped swiftly,['forward'] -Monica said,['I'] -love but,['we'] -remarked This,['fellow'] -his agent,['to'] -lean figure,['of'] -eleven a,['single'] -nursery and,['my'] -clutches of,|['a', 'such']| -really dead,['Then'] -white waistcoat,['yellow'] -of foresight,['since'] -professional matter,['that'] -of docketing,['all'] -sorely and,['yet'] -clear field,['Besides'] -wife he,['disguised'] -done for,['he'] -no robbery,['no'] -fragment of,['a'] -must apparently,['have'] -my hearing,['was'] -goodness sake,|['let', "don't"]| -steps She,['watched'] -door-step you,['managed'] -there a,|['secret', 'few', 'dark', 'half-pay', 'couple', 'police-station', 'cellar']| -British barque,['Sophy'] -Have your,['pistol'] -crime until,['he'] -it asked,['Holmes'] -his club,|['of', 'debts']| -Boone instantly,['as'] -from Holmes,['that'] -Street are,['close'] -that foul,['tongue'] -an influence,|['upon', 'over']| -the Atkinson,['brothers'] -Europe have,['shown'] -promise well,['continued'] -see But,['you'] -week after,['Every'] -Gone was,['the'] -that! I,['thought'] -Holmes pushed,|['open', 'back', 'him']| -little regard,['for'] -McCarthy He,|['calls', 'was']| -III. A,['CASE'] -end of,|['that', 'the', 'our', 'this', 'it', 'my', 'time', 'your', 'a']| -measures I,['took'] -urging his,['son'] -floating about,['In'] -eyes said,['he'] -burst out,|['into', 'of']| -never said,['Sherlock'] -much public,['attention'] -It may,|['seem', 'well', 'give', 'have', 'however', 'stop', 'be']| -times he,['went'] -acquaintance with,['his'] -and from,|['the', 'our', 'that']| -said extremely,['dirty'] -ceiling and,['a'] -were quarrels,['and'] -neck and,|['a', 'sleeves', 'sobbed', 'wrists']| -and proposed,['that'] -lady otherwise,['neatly'] -stay or,['you'] -morocco casket,['in'] -mysteries and,['improbabilities'] -be expected,|['in', 'to']| -Harrow of,['how'] -round with,|['crates', 'just']| -Your case,['is'] -closed somewhere,['I'] -almost inexplicable,['Nothing'] -moon was,['shining'] -wealth so,['easily'] -lock to,['the'] -paper was,['made'] -quiet air,['of'] -evidence You,['have'] -answered was,['still'] -there I,|['met', 'found', 'was', 'say', 'am', 'used']| -he has,|['secreted', 'cruelly', 'at', 'been', 'done', 'his', 'not', 'the', 'suffered', 'helped', 'blasted', '220', 'reaped', 'heard', 'already', 'accumulated', 'now', 'had', 'gas', 'assuredly', 'broken', 'less', 'endeavoured', 'played', 'always', 'followed', 'knowledge', 'a', 'frequently', 'little']| -Now where,['did'] -prey of,['you'] -company On,['ascertaining'] -baboon which,['wander'] -rounded shoulders,['a'] -he had,|['accomplished', 'apparently', 'adopted', 'left', 'intrusted', 'a', 'half', 'never', 'dropped', 'been', 'set', 'heard', 'seen', 'parted', 'some', 'drifted', 'listened', 'gone', 'started', 'borrowed', 'married', 'spent', 'told', 'an', 'found', 'that', 'driven', 'stated', 'as', 'no', 'then', 'picked', 'the', 'tossed', 'come', 'done', 'evidently', 'once', 'drenched', 'when', 'two', 'on', 'promised', 'either', 'shown', 'closed', 'staggered', 'met', 'sold', 'not', 'remained', 'caged', 'laid', 'ever', 'brought', 'fixed', 'taken', 'settled', 'named', 'again', 'only', 'stronger', 'to', 'deserved', 'passed', 'pursued', 'emerged', 'sat']| -to face,['with'] -me Perhaps,['we'] -is still,|['with', 'lying', 'remembered', 'hot', 'one']| -the excitement,['of'] -Some friend,['of'] -the wife's,['death'] -you hungry,['Watson'] -little green-scummed,['pool'] -satisfaction For,['a'] -the west,|['of', 'country', 'In', 'wing']| -put up,|['the', 'our']| -put us,|['out', 'both', 'on']| -pipe between,['his'] -never go,['into'] -a few,|['centuries', 'minutes', 'days', 'hundred', 'words', 'hours', 'clumps', 'years', 'paces', 'hurried', 'lights', 'square', 'inferences', 'others', 'of', 'acres', 'moments', 'fleecy', 'feet', 'patients', 'whispered', 'weeks', 'particulars', 'things', 'months', 'yards', 'drops', 'more', 'grateful']| -dimly lit,['street'] -compress it,['But'] -the noise,['which'] -D'you see,['Well'] -were playing,['for'] -having broken,['the'] -were such,|['as', 'commands']| -you? no.,['to'] -stile that,['this'] -matter though,['as'] -of Swandam,['Lane'] -more flurried,['than'] -decrepitude and,['yet'] -present a,|['singular', 'more']| -causes. Carefully,['as'] -stolen said,['I'] -visitor the,['very'] -and composed,['himself'] -flickering oil-lamp,['above'] -story and,['with'] -Fowler was,|['it', 'a']| -ever been,|['heard', 'to']| -of this,|['question', 'obliging', 'rather', 'tangled', 'case', 'sort', 'horror', 'and', 'Cooee!', 'kind', 'particular', 'new', 'battered', 'hat', 'forty-grain', 'chain', 'He', 'fellow', 'me,', 'blue', 'poor', 'narrow', 'investigation', 'noise', 'wound', 'fleshless', 'small', 'gang', 'remarkable', 'very', 'affair', 'horrible', 'crime', 'morning', 'man', 'strange', 'extraordinary', 'part', 'black']| -sallies from,['which'] -points for,['you'] -sense that,['he'] -murderous attack,['murderous'] -extent in,['favour'] -society with,['his'] -easy have,['heard'] -dear to,['him'] -beggarman Boone the,['one'] -a plain-clothes,['man'] -think fit,['you'] -small one,|['and', 'or']| -for your,|['argument', 'deed', 'services', 'coming', 'friends']| -cells he,['quiet'] -a shawl,['round'] -I eat,['for'] -possibly find,['this'] -sits in,['her'] -lad who,['drove'] -most singular,|['which', 'that', 'and']| -in him,|['shouted', 'is', 'The', 'It', 'and']| -by opening,['a'] -true saved,['me'] -individual and,['becomes'] -for you.,|['would', 'mind.']| -commissionaire is,['to'] -especially Thursday,['and'] -post said,['he'] -most extraordinary,|['contortions', 'matters']| -he never,|['did', 'came', 'got']| -hat neat,['brown'] -old country,['One'] -dates as,['you'] -lodge in,['Swandam'] -was mistaken,['for'] -other You,['see'] -all as,|['he', 'far']| -seat Both,['you'] -orange from,['the'] -he went,|['up', 'off', 'out', 'this', 'prospecting']| -curious termination,['have'] -each led,['into'] -matter replied,['our'] -did break,['it'] -three at,['the'] -order of,|['the', 'time']| -cobbler's wax,['which'] -indeed exceeded,['all'] -since the,|['name', 'doctor', 'marriage', 'ruined', 'evening']| -wife might,['give'] -earnestly up,['I'] -fair proportion,['do'] -readily understand,['that'] -were reported,['there'] -very glad,|['if', 'now']| -otherwise everything,['was'] -John Clay,|['His', 'and', 'said', 'serenely']| -bright quick,['face'] -were worked,['up'] -case-book which,['he'] -possibly be,|['discovered', 'They']| -be laid,['out'] -luncheon You,['may'] -lovely Surrey,['lanes'] -would just,|['walk', 'ask']| -my thrill,['of'] -Bradstreet and,['I'] -to remove,|['crusted', 'the', 'them']| -eye you,['promise'] -ten well.,['And'] -roof had,['fallen'] -not unnatural,|['that', 'if']| -be delirium,['A'] -into The,['unusual'] -he showed,['us'] -geese sir.",|['rather,']| -accomplishment It,['is'] -and would,|['come', 'have', 'be', 'burst', 'accept', 'like']| -professional chambers,['in'] -upstairs there,['was'] -he said,|['scribbled', 'as', 'taking', 'cordially', 'gravely', 'that', 'what', 'is', 'If', 'The', 'he', 'Theories', 'and', 'when', 'I', 'raising', 'at', 'the', 'rubbing', 'but', 'He', 'beautifully']| -secret of,['his'] -not write,['Oh'] -disappointment came,['up'] -work mine,['I'] -was her,['confederate'] -news came,['for'] -the shuttered,['window'] -much larger,|['at', 'ones']| -a chain,['and'] -an inarticulate,['cry'] -up here,['All'] -of cigars,['and'] -off among,['the'] -house into,['Saxe-Coburg'] -say it,['is'] -Beyond these,['signs'] -say is,['really'] -and cheeks,['with'] -a Fashionable,['Wedding'] -beloved sister,|['moment,"']| -the broadest,['part'] -the column,|['Here', 'that']| -already made,|['up', 'a']| -improved by,|['practice', 'wearing']| -so for,['every'] -away while,['waiting'] -upon one,|['of', 'side']| -same state,['of'] -I to,|['his', 'do', 'find']| -tangle indeed,['which'] -soothing tones,['which'] -a usual,['signal'] -frowning brow,['and'] -meddle with,['my'] -turf until,['he'] -found her,|['biography', 'more', 'to']| -clergyman His,['broad'] -read as,['follows'] -comment her,['father'] -sundial as,['directed'] -sidled down,['into'] -nail and,['explained'] -most unique,['things'] -bell-rope which,['hung'] -a tallish,['man'] -compromise one,['of'] -little adventures,['cases'] -torn right,['out'] -matter over,|['with', 'most']| -some twisted,['cylinders'] -turning over,['the'] -verbs It,['only'] -first glance,|['is', 'so']| -bars which,['were'] -Holmes flicking,['the'] -months after,|['our', 'Pa']| -Whitney was,['once'] -owe a,['very'] -instant Mrs,['Rucastle'] -am following,['you'] -doubt quietly,['slipped'] -dressed very,['neat'] -instantly attracted,['my'] -fidelity exacted,['upon'] -shot a,|['questioning', 'few']| -floor and,|['those', 'with', 'from', 'ceiling']| -over all,['the'] -woman and,['the'] -soie with,['a'] -his little,|['brain-attic', 'boy', 'game']| -would return,|['The', 'to']| -imbecile as,['not'] -who ask,['for'] -the lonely,['life'] -is dark,|['handsome', 'to']| -leading down,['to'] -proceeded to,['the'] -of milk,|['which', 'does', 'and']| -Street near,['St'] -lighter as,['we'] -hat with,['a'] -bright light,['shone'] -escaped my,['memory'] -station after,['eleven'] -clues and,['clearing'] -servant and,['rushed'] -Cooee! was,['meant'] -under obligations.,['how'] -being interesting,['Indeed'] -Waterloo is,['not'] -have written,['that'] -earth into,['bricks'] -anxiously in,['the'] -pals and,['determined'] -stick two,['or'] -I painted,['my'] -track which,|['led', 'ran']| -have none,['he'] -foremost citizens,['of'] -eyes cast,['down'] -are sure,|['that', 'of']| -and interested,['on'] -tradesmen the,['advance'] -house more,['precious'] -Oakshott to-night,['or'] -forget that,|['I', 'dreadful']| -his disappearance are,['all'] -column with,['his'] -nerves of,['steel'] -small thin,['volume'] -they should,|['use', 'do', 'proceed', 'have', 'make']| -attached to,|['a', 'me']| -that everything,|['was', 'is']| -his main,['fault'] -Bermuda Dockyard,['so'] -herself that,['she'] -must assert,['that'] -a chap,['for'] -receipts and,['a'] -the artist,['had'] -and diary,['may'] -beneath and,['his'] -floor Did,['you'] -he closed,|['the', 'upon']| -incisive reasoner,['and'] -which streamed,|['the', 'up']| -an only,|['daughter', 'child', 'son']| -and moustache,['tinted'] -convinced of,['it'] -mentioned to,['you'] -It must,|['be', 'then', 'have', 'always']| -days to,|['spare', 'reclaim']| -little fleecy,['white'] -license that,['the'] -was slighted,['like'] -are going,|['on', 'to', 'the']| -time You,|['have', 'said']| -whistle Of,['course'] -came for,|['us', 'I', 'a']| -door followed,['on'] -He ran,|['round', 'when', 'up']| -main arteries,['which'] -responses which,['were'] -peeped round,['the'] -and shaking,|['in', 'his', 'limbs']| -refusal you,['desire'] -course instantly,['strike'] -such theory,['so'] -were to,|['be', 'have', 'meet', 'stay', 'come', 'turn', 'befall']| -help." is,['not'] -Angel began,['to'] -bitterness I,['am'] -for 4000,['pounds'] -cared to,|['apply', 'confess']| -assistance to,|['me', 'you', 'get']| -tinted with,['hanging'] -found either,['upon'] -director From,['my'] -Yet it,['was'] -You want,['to'] -him yes!,['he'] -case and,|['a', 'the', 'as', 'why', 'of', 'it', 'there', 'taking']| -exactly alike,['Some'] -energy and,['as'] -voice will,['excuse'] -more into,['a'] -coming upon,['those'] -been engaged,['for'] -promise. and,['complete'] -a glitter,['of'] -away said,['the'] -here It,|['is', 'was', 'arrived']| -the hollow,['of'] -However that,['may'] -the rascally,['Lascar'] -enough Suppose,['that'] -rien l'oeuvre c'est,['tout'] -sending a,['line'] -visited him,['and'] -tunnel to,['some'] -C was,['visited'] -difficult but,['friend'] -we cannot,|['risk', 'count', 'make']| -thing obtruded,['itself'] -know now,|['why', 'And']| -written the,['name'] -establish himself,['in'] -repulsive ugliness,['A'] -own way,|['in', 'to']| -likely enough,['that'] -own was,['aware'] -his teeth,['and'] -maintenance It,['is'] -certainly been,['favoured'] -and seized,['the'] -the slight,['frost'] -any traces,|['of', 'in']| -from death,['The'] -look and,['so'] -gentleman's attentions,['and'] -please Mr,['Holder'] -if your,|['visitor', 'hair', 'husband', 'mind']| -brace of,['cold'] -heard Lord,['St'] -cunning and,['as'] -day from,['nine'] -is much,|['larger', 'less']| -sovereign if,['you'] -perils are,['can'] -suavely There,['is'] -independent in,['little'] -madam Neville,['wrote'] -years he,|['had', 'continued']| -season you,['shave'] -folk and,|["Pope's", 'the']| -terraced with,['wooden'] -hand Young,['Openshaw'] -along those,['lines'] -vulgar enough,['We'] -up all,|['the', 'that']| -the Eg.,['Let'] -while poor,['Frank'] -hushing the,['thing'] -cross-indexing his,['records'] -closed his,['eyes'] -ill-used then,['at'] -it? He,['spoke'] -white stone,['standing'] -uncle last,['night'] -dark hollow,['of'] -wife out,['and'] -already noticed,['the'] -she fell,['to'] -oil-lamp which,['when'] -the links,['which'] -little figure,['of'] -iron built,['firmly'] -companion answered,['in'] -these and,['it'] -we came,|['out', 'to', 'right']| -world to,|['hear', 'match', 'his']| -of consulting,['you'] -its due,['order'] -consuming an,['ounce'] -girl no,['doubt'] -the gaslight,['a'] -would you,|['please', 'have']| -sturdy middle-sized,['fellow'] -those incidents,['which'] -no longer,|['about', 'oscillates', 'against', 'I', 'desired']| -my pen,['to'] -man should,|['be', 'possess', 'keep', 'have']| -he squeezed,['out'] -that single,['advertisement'] -then conducted,['us'] -example I,['have'] -Mr Rucastle's,|['have', 'hands']| -upon himself,['what'] -a serious,|['difference', 'case', 'investigation']| -my best,|['to', 'land']| -should go,|['for', 'on']| -Holmes For,['two'] -of value.,['Heaven'] -Now for,|['the', 'such']| -|think, Watson|,['he'] -my duties,|['to', 'sir']| -buying a,['pair'] -adopted her,['and'] -health nothing,['You'] -great financier,['was'] -small parcel,['of'] -poses bowed,['shoulders'] -outside was,['empty'] -between our,['houses'] -The lamp,['still'] -there they,['have'] -affairs so,['if'] -you but,|['one', 'you', 'absolute', 'make', 'there', 'he']| -probably with,['his'] -in Bloomsbury,['at'] -and lifeless,['as'] -respectable as,['of'] -and pa,['was'] -the full,|['market', 'purport', 'facts', 'face', 'effect']| -lay yourself,['open'] -violence All,['day'] -owe Watson,['I'] -tossed my,['rocket'] -pockets of,['his'] -night-bird and,['once'] -Nothing less,['would'] -heard that,|['voice', 'you', 'the', 'I', 'and']| -don't you,['ever'] -not easily,['controlled'] -absolutely desperate,['villain'] -came late,['one'] -|door fellow,|,['that'] -Countess of,|["Morcar's", 'Morcar']| -be still,['Then'] -resolute as,['themselves'] -fainting I,['simply'] -very kind-spoken,['free-handed'] -lips at,['the'] -of are,['to'] -grasp he,['hurried'] -corner were,['three'] -or there,['or'] -embellish you,['have'] -staring down,['the'] -The small,['matter'] -according to,|['the', 'his']| -speak can,['at'] -dangling down,|['as', 'from']| -question How,['did'] -not let,|['your', 'me']| -his goose,['took'] -his harness,['were'] -of papers,|['upon', 'which', "isn't", 'until']| -and successfully,['for'] -the guard,['came'] -his shirt,['and'] -these may,['be'] -he little,['knew'] -less than,|['six', 'once', 'that', 'the', '26s', 'my', 'five', 'seven', '1000', 'an', 'you', 'forty-five', 'twenty']| -so as,|['to', 'I', 'near', 'not', 'they', 'the']| -parcel of,['considerable'] -in communication,['with'] -case to,|['the', 'me', 'do']| -houses looked,['out'] -Stoner has,['been'] -|then Lee,|,['in'] -neither sound,['nor'] -responded Holmes,['knows'] -position to,['the'] -luggage when,['she'] -truth I,|['saw', 'could']| -private word,['with'] -more before,['I'] -elastic was,['missing'] -seven or,['eight'] -time he,|['did', 'remained', 'would', 'remarked']| -and penetrating,['grey'] -reasoning which,['made'] -under such,['obligations'] -a park-keeper,['They'] -whose absolute,['reliability'] -world-wide country,['under'] -in you,|['said', 'You', 'founded']| -the slam,['of'] -Scandinavia You,['may'] -perhaps just,['a'] -beaten have,['been'] -diadem he,['laid'] -were merely,['a'] -changed his,|['costume', 'whole']| -granted until,['I'] -women but,['I'] -any letters,['of'] -of water,|['some', 'are', 'The', 'outside', 'through']| -had let,['myself'] -brooch which,['consisted'] -joking sole,['duties'] -a yellow-backed,['novel'] -vigil I,['could'] -kneeling with,['his'] -then realising,['the'] -caught something,['which'] -Holmes cheerily,|['as', 'My']| -corridor Do,['I'] -for some,|['minutes', 'few', 'time', 'years', 'weeks', 'days', 'little', 'years I', 'months']| -into view,['at'] -always under,['the'] -strikes very,['much'] -and deadly,['What'] -rich material,['She'] -heading Tragedy,['Near'] -Toller still,['drunk'] -opinion there,['seems'] -some dark,['coat'] -word as,['to'] -with pennies,['and'] -determined to,|['see', 'have', 'settle', 'preserve', 'start', 'go', 'wait', 'do']| -waiting-maid Well,['the'] -Could you,['swear'] -blowing blue,['rings'] -fears she,['rushed'] -moustache tinted,['glasses'] -her fingers,['fidgeted'] -or whether,|['I', 'we', 'the']| -Our party,['is'] -now standing,['in'] -the two-hundred-year-old,['house'] -found think,['I'] -my escape,['was'] -don't keep,['a'] -of suicide.,['But'] -England are,['getting'] -presented more,['singular'] -been notorious,['in'] -my boy,|['what', 'but', 'and', 'has', 'all']| -wealth he,['refused'] -vigorously across,['and'] -quartering of,['the'] -was off,|['in', 'once']| -low ceiling,['and'] -rather darker,['than'] -would venture,['to'] -the hours?,['I'] -was saving,['considerable'] -hurled the,['local'] -sleeping and,['in'] -geese? and,['Who'] -business You,['surprise'] -gives zest,['to'] -make bricks,['without'] -unburned margins,['which'] -den It,['is'] -point and,|['it', 'I']| -illustrious client,['doubt'] -general impressions,['my'] -and Arthur,['were'] -my results,['The'] -helpless I,['have'] -out splendidly,['Dr'] -sick with,['fear'] -can save,['you'] -and keenest,['for'] -events as,['narrated'] -will cover,['the'] -purses and,['expensive'] -to such,|['a', 'absolute', 'humiliation']| -finally announced,['her'] -in You,['must'] -large sheet,['of'] -our story,['right'] -visit us,['My'] -pay over,['fifty'] -the finger,['All'] -have stolen?,['he'] -cross bar,['of'] -novel and,|['of', 'moving']| -room still,['puffing'] -heart Not,['even'] -was within,['earshot'] -foreigner and,['he'] -distinct element,['of'] -states of,['the'] -grievance against,['this'] -two blunders,['in'] -such opening,['for'] -curled at,['the'] -the tongs,['and'] -could they,['have'] -of speech,|['He', 'Was']| -subject in,['the'] -improbable that,['he'] -over Holmes,['answered'] -sixteen I,['was'] -and he's,['not'] -clatter of,['steps'] -were on,|['the', 'a']| -were of,|['the', 'a', 'this', 'solid', 'brown', 'wood', 'iron', 'course']| -some months,|['ago', 'There']| -money houses,['until'] -with half-frightened,['half-hopeful'] -cabman said,['that'] -get clear,['upon'] -heard anyone,['whistle'] -hearty supper,['drove'] -nor have,['I'] -the liberty,['of'] -blue dress,['nor'] -occasional cry,['of'] -they impressed,['me'] -catch glimpses,['of'] -some degree,['of'] -asked I,|['am', 'know', 'heard']| -years studied,['the'] -clock I,['sat'] -never hear,['of'] -I known,['him'] -see Mr,|['Holmes', 'James', 'Holder']| -carriage said,['Lestrade'] -of Surrey,|['and', 'nodded']| -his chamber,['and'] -landing-stages sat,['in'] -Star Pall,['Mall'] -loudly I,['heard'] -asked a,|['word', 'thing']| -always that,['they'] -paragraphs concerning,['men'] -marry them,['without'] -By an,['examination'] -pay It,['must'] -never yet,['borne'] -see said,|['Holmes', 'Jones']| -blood upon,['the'] -trouble to,|['me', 'you']| -ordered fresh,['rashers'] -over one,['of'] -How very,['impertinent'] -a writ,['served'] -deduced from,|['it', 'his']| -sallow Malay,['attendant'] -demurely you,['do'] -implacable spirits,['upon'] -dangers which,['encompass'] -indoors in,['the'] -small brass,['box'] -cellar at,['present'] -your compliance,['assure'] -since gives,['a'] -port said,['he'] -father had,|['this', 'many', 'a', 'fallen']| -those singular,['adventures'] -convincing evidence,['of'] -our houses,['to'] -shirt-sleeve but,['he'] -semicircle which,['was'] -the gentleman's,|['chambers', 'attentions']| -me here,|['to', 'I', 'and']| -father has,['never'] -well but,['we'] -cannot now,['entirely'] -London to,|['this', 'inquire']| -which presents,['any'] -interview between,['the'] -sufficed to,['satisfy'] -Light a,['cigar'] -teetotaler there,['was'] -a farthing,['from'] -think it,|['is', 'was', 'all', 'very', 'right', 'points']| -we lay,['in'] -of some,|['new', 'sort', 'little', 'strange', 'heavy', 'service', 'deadly', '14,000', 'resistless', 'belated', 'mystery', 'crime', 'few', 'hunted', 'assistance']| -resource and,['determination'] -has offered,['no'] -|supplier. then,|,["what's"] -death have,['seen'] -frenzy and,['would'] -friend of,|["McCarthy's", 'yours', 'his', 'mine', "Arthur's", 'hers possibly']| -said If,['you'] -whoso snatches,['a'] -senior partner,['in'] -pattered against,['the'] -the generations,['who'] -gold We,['had'] -On ascertaining,['that'] -ticket in,['the'] -little questioning,['glance'] -could every,['morning'] -left hand,['while'] -cried on,['which'] -of Proosia,['for'] -well-opened eye,['of'] -drive dress.,['No'] -slopes down,['to'] -little book,['the'] -going and,|['what', 'I', 'there']| -ball you,['met'] -can thoroughly,['rely'] -me to-night and,['running'] -secured every,['night'] -would always,|['be', 'carry', 'wind']| -remanded for,['further'] -face behind,['it'] -much typewriting,['did'] -as she,|['left', 'half-drew', 'lived', 'had', 'did', 'saw', 'spoke', 'listened', 'was', 'thought']| -house announced,['the'] -extent My,["morning's"] -appropriate dress,['I'] -|bodies, Watson|,['We'] -just didn't,['know'] -note Doctor,['of'] -other things,|['were', 'it']| -No reference,['to'] -digesting their,['breakfasts'] -unmarried one,['reaches'] -Never trust,['to'] -down waggled,['his'] -if they,|['were', 'always', 'may', 'believed', 'believe']| -shutters falling,['back'] -disappointment to,['me'] -to attend,['to'] -moist red,['paint'] -and how,|['the', 'came', 'they', 'all-important', 'she']| -the Underground,|['as', 'and']| -quickly the,['deed'] -of repulsion,['and'] -nine now,['I'] -Countess to,|['part', 'say']| -only she,['to'] -like that,|['Mr', 'yet', 'to', 'My', 'of', 'before', 'Then']| -success that,|['the', 'he']| -self-poisoner by,['cocaine'] -seared with,['a'] -chemical studies,['summons'] -engaged after,['the'] -you Now,|['he', 'let', 'Watson']| -|approached me,|,['dad'] -favoured with,['extraordinary'] -to charge,|['But', 'him']| -will very,|['much', 'soon']| -worn to,['a'] -wasted time,['enough'] -|smoke," he|,['answered'] -own head,['Clearly'] -Indeed from,['the'] -hear of,|['it', 'Hosmer', 'such', 'our']| -vacancy open,['which'] -without light,['He'] -tell us,|['all', 'now', 'the', 'and', 'what', 'makes']| -shading his,['eyes'] -superior to,['the'] -bet said,['he'] -perplexing position,|['here,']| -confession at,['the'] -warning I,['had'] -we fattened,['it'] -a disturbance,['at'] -planet So,['say'] -Mary? Impossible,['is'] -glance around,['I'] -so am,['immensely'] -river flowing,['sluggishly'] -Rucastle's hands,['He'] -won't speak,['to'] -Besides we,|['must', 'may']| -prices Eight,['shillings'] -gun as,['the'] -spoken who,['thrust'] -that third,['name'] -hydraulics you,['see'] -our turn,['came'] -brisk tug,["it's"] -hinted at,['a'] -and beautiful,|['face', 'I', 'countryside']| -it Who,['would'] -May 2nd,['you.'] -matter first,['He'] -basin of,['Trafalgar'] -and me,|['I', 'to']| -man. that?',['I'] -whispering fashion,['of'] -she heard,['that'] -nearest chair,['Mr.'] -was softened,['by'] -it Why,['Because'] -she hears,['that'] -at Hatherley,['about'] -is rare,['Therefore'] -his cuttings,['is'] -denying anything,['to'] -date is,['The'] -called myself,['is'] -after their,['names'] -out for,|['me', 'she', '4000', 'five', 'a']| -can talk,['in'] -was thinking,|['of', 'for']| -received Mr,['Holmes'] -of men,|['Rather', 'with']| -figure of,|['the', 'Colonel']| -cruelly wronged,['I'] -me I'm,['not'] -piston and,['it'] -I became,|['suspicious', 'as', 'consumed']| -in ferocious,['quarrels'] -my eyes,|['tell', 'are', 'caught', 'and']| -real effect,['were'] -Langham under,['the'] -took over,['the'] -brisk and,|['his', 'yet']| -walked several,['times'] -spring Two,['days'] -aware in,['which'] -massive iron,['gate'] -floor the,['sitting-rooms'] -demon 'I'll throw,['you'] -r's tailless,['but'] -Lucy Parr,|['the', 'who']| -the stall,|['with', 'which']| -the landscape,['house'] -perhaps yourself,['I'] -dear old,['homesteads'] -complained of,|['was', 'a']| -Wedding family,['of'] -belief Watson,['founded'] -oppressively respectable,['frock-coat'] -lonely life,['of'] -he watched,['the'] -my methods,['What'] -ship Well,['every'] -look rather,['than'] -time day,['or'] -this other,|['one', 'goose', 'page']| -was about,|['to', 'ten']| -the sequence,['of'] -he kept,['on'] -shirt you.,['We'] -perhaps for,['her'] -line to,|['let', 'the', 'pa']| -set his,['lips'] -fiercely at,['the'] -got home,['all'] -cordially was,['afraid'] -a capital,|['mistake', 'sentence']| -drawled Holmes,['before'] -or 120,['pounds'] -matter implicates,['the'] -Rucastle is,['not'] -is Lestrade,['Good-afternoon'] -breath and,['yet'] -purport of,['his'] -uncontrollable agitation,|['Then', 'with']| -This dust,['you'] -sensational trials,['in'] -gentleman Neville,['St'] -Well perhaps,['after'] -waved me,['to'] -that homely,['as'] -Who is,['this'] -head I,|['can', 'am']| -room An,['inspection'] -window outside,['and'] -to fall,|['foul', 'into']| -him have,['you'] -slight leakage,['which'] -band and,['finally'] -he lit,|['his', 'the']| -groping and,['I'] -Your advice,['will'] -Wilson and,['let'] -saw at,['the'] -But how ,['there'] -swung slowly,['open'] -to-night Well,['he'] -the loudly,['expressed'] -had very,['full'] -of bringing,['the'] -scuffle downstairs,['when'] -one When,['I'] -a social,['stride'] -engaging my,['own'] -adding that,['he'] -his voice,|['that', 'was']| -black ink,['which'] -necessary that,|['the', 'I']| -letter from,|['Westhouse', 'him', 'the']| -however yesterday,['morning'] -my guard,['against'] -now must,['be'] -rely Local,['aid'] -those simple,['cases'] -rely upon,|['my', 'you']| -armchair Doctor,['and'] -Rucastle who,['was'] -slope how,['did'] -used think,['that'] -Isa He,['has'] -taken. should,['much'] -second thought,['why'] -he came,|['down', 'up', 'by', 'to', 'back', 'home', 'in']| -were needed,['There'] -or persons,['in'] -MISS HUNTER: Miss,['Stoper'] -very quick-witted,['youth'] -the damp,['was'] -think would,['happen'] -was soon,|['remedied', 'evident', 'the', 'asleep', 'made']| -passed up,['the'] -of twelve,['or'] -and also,|['in', 'a', 'of', 'that']| -and concise,['But'] -problem It,['is'] -and logician,['of'] -I find,|['him?', 'that', 'it', 'an', 'many']| -one son,['a'] -loved you,['but'] -puny plot,['of'] -mansion Moran?",['said'] -Manor House,|['At', 'Two']| -remained to,['assure'] -smoke-laden and,['uncongenial'] -were bolted,['Well'] -boundary between,['the'] -the cord,|['which', 'and']| -as well,|['as', 'I', 'to', 'that', 'Windibank', 'said', 'be', 'Would', 'for', 'face', 'and']| -ever found,['myself'] -stalls bore,['the'] -past than,['of'] -his pictures,|['That', 'within']| -introspective fashion,|['suits', 'which']| -having an,['employ'] -name derived,['from'] -pay munificent.,['so.'] -writhing towards,['it'] -done a,|['considerable', 'good', 'very']| -and subduing,['in'] -our lodgings,['in'] -is her,|['carriage', 'maid', 'name', 'ring']| -money have,['carte'] -to pick,['up'] -cold for,['the'] -putting ourselves,['in'] -muttered Holmes,['pulling'] -mole but,['it'] -really got,['it'] -articles and,['thought'] -Mr Ryder,['Pray'] -End It,['may'] -spare you,['for'] -after listening,['to'] -make merry,['over'] -there all,['traces'] -the night.,|['we', 'said']| -several words,['you'] -You suppose,['that'] -letter unobserved,['Probably'] -plucked at,['his'] -impressions I,['passed'] -in Philadelphia,['which'] -stall with,['the'] -remarks before,['leaving'] -silent man,['but'] -right up,|['to', 'in']| -thirty Has,['a'] -or grieved,['But'] -not call,['at'] -The Embankment,['is'] -than seven,['places'] -prosecuted for,['begging'] -same relative,['position'] -thought a,['little'] -pale lately,['I'] -could see,|['nothing', 'Holmes', 'Mr', 'was', 'the', 'by', 'that', 'a', 'him', 'had', 'in', 'at', 'from', 'out', 'what']| -was accused,['of'] -only caught,|['a', 'the']| -you speak,['of'] -took out,|['to', 'my', 'your', 'a']| -the autumn,['of'] -mind without,['being'] -myself The,|['furniture', 'shutters']| -The sleeper,['half'] -the daylight,['for'] -original building,['of'] -his having,['the'] -stamp lay,['upon'] -turn it,['on'] -deadliest snake,['in'] -and most,|['energetic', 'unique', 'daring']| -link in,|['a', 'my']| -relations were,['really'] -should say,|['to', 'with']| -afraid that,|['you', 'I', 'it', 'they', 'my', 'that']| -was using,['my'] -Her jacket,['was'] -greasy leather,['cap'] -JEPHRO RUCASTLE.,['is'] -me all,|['about', 'all', 'my']| -admitted him,['into'] -such places,['and'] -ever before,['been'] -scene it,['possible'] -then merely,['taking'] -2s 6d.,|['cocktail', 'glass']| -little paint,['laying'] -all for,['openness'] -reach your,['results'] -or men,['are'] -there glimmered,['little'] -isolation and,['of'] -All right,['John'] -to surprise,['her'] -as that,|['again', 'on', 'and', 'which']| -hand closed,['like'] -private note-paper,['own'] -even traced,['them'] -this morning,|['in', 'with', 'and', 'I', 'or', 'Lestrade', 'homeward', 'when', 'Mrs', 'have', 'it', 'had', 'however', 'marks', 'though', 'but']| -induce the,['Countess'] -Saxe-Meningen second,['daughter'] -the others,|['were', 'and', 'but', 'continue', 'being']| -come well,['There'] -description of,|['him', 'Mr', 'any', 'his', 'you']| -No sound,['came'] -amiable manner,['am'] -near Petersfield,['Those'] -gained said,['Holmes'] -we arranged,['our'] -would make,|['their', 'all', 'it', 'me']| -live under,['my'] -beef from,['the'] -may observe,['Mr'] -took next,['I'] -alert manner,["I'll"] -and able,['to'] -seemed unnecessary,['to'] -draw up,|['to', 'and']| -curves past,['about'] -tortured child,['or'] -bedrooms in,['this'] -concerned in,|['it', 'the', 'some']| -was plainly,|['furnished', 'but']| -hall door,|['and', 'banged', 'which', 'has']| -her bride's,['dress'] -winter Ah,['Watson'] -indicated by,['that'] -isn't a,|['cat', 'man']| -and sitting-room,['at'] -wall a,['round'] -an occupant,['of'] -made all,['sure'] -matter is,|['not', 'a', 'too', 'of']| -the busybody,['smile'] -THE FIVE,['ORANGE'] -and blocked,['with'] -one possible,['solution'] -also. but,['I'] -matter in,|['my', 'which']| -either upon,['his'] -my surprise,|['the', 'and', 'was', 'that']| -you deduce,|['it', 'from', 'that', 'the']| -safe with,|['us', 'her']| -There's never,['very'] -bell about,['the'] -imagination and,['too'] -his pain,['We'] -had either,['fathomed'] -that save,['some'] -legs out,['towards'] -dull wilderness,['of'] -come pestering,['me'] -walls were,|['carefully', 'of']| -seen such,|['a', 'deadly']| -this McCarthy,['who'] -say! He,['dashed'] -exact knowledge,['of'] -pray that,['we'] -off down,['the'] -know it,|['and', 'well']| -know is,['a'] -black-letter editions,['Then'] -disturb the,['usual'] -extraordinary calamity,['could'] -the music,|['while', 'at']| -matter small,['side'] -and covered,['over'] -for political,['purposes'] -save himself,['by'] -will soon,|['have', 'make', 'be', 'receive']| -told her,|['mother', 'that']| -perfect day,['with'] -We soothed,['and'] -lover he,['would'] -fall upon,['the'] -nothing new,['to'] -Simon young,['lady'] -mantelpiece plays,['at'] -an employ,['who'] -you take,|['when', 'I', 'for']| -built out,['in'] -All he,['wants'] -engagement at,['that'] -purpose was,['for'] -the peculiarities,['of'] -and even,|['as', 'according', 'for', 'of', 'the', 'in', 'if', 'Holmes', 'threatening']| -identical Was,['it'] -a comical,['pomposity'] -best what,['he'] -rather think,['he'] -His grip,['has'] -can do,|['nothing', 'pretty', 'to', 'in', 'anything']| -disjecta membra,['of'] -Pray draw,['up'] -back the,|['frill', 'gems']| -clutched the,['mantelpiece'] -weighted coat,['had'] -terrified that,['I'] -follow me,['is'] -they believed,['my'] -His nostrils,['seemed'] -mistress believing,['her'] -first independent,['start'] -the word,|['the', 'band']| -|perhaps, the|,['Sign'] -no apology,|['is', 'to']| -suggest to,['obey'] -to taking,['you'] -mad insane have,['compromised'] -niece when,['you'] -the work,|['is', 'of']| -follow my,['advice'] -one I,|['was', 'chose?', 'have']| -Many men,['have'] -a precious,['stone'] -conversation coming,['in'] -ourselves who,['are'] -passage I,['heard'] -stared down,['into'] -you forever,['Do'] -jury having,['regard'] -this while,['busy'] -situation telegram,['which'] -was unlocked,['and'] -and hastened,['downstairs'] -anger Mary,['was'] -the length,['of'] -well-to-do in,['a'] -in here!,['said'] -reconsidered my,['position'] -glass as,['though'] -light Now,|['and', 'do']| -realism pushed,['to'] -following my,['father'] -point is,|['at', 'have']| -a startled,['look'] -held me,['was'] -steady well-opened,['eye'] -For a,|['minute', 'long', 'while']| -have determined,['therefore'] -a trap-door,['at'] -worrying sound,['which'] -Ah this,['I'] -comes down,['with'] -locked One,['day'] -carefully from,['seven'] -merchant-man behind,['a'] -right who,['was'] -whirling through,['the'] -less moment,['to'] -so unnatural,['as'] -Monday morning.,['that'] -I'll swear,['it'] -The Morning,['Chronicle'] -|else sir,|,['I'] -her stealthily,['open'] -Fashionable Wedding,['family'] -Londoners and,['to'] -gentle breathing,['of'] -was afterwards,['seen'] -the Bow,['Street'] -astonishment it,['must'] -typewritten In,['each'] -always laughed,['at'] -told us,|['as', 'that', 'a', 'of']| -packet and,['found'] -his screams,['he'] -Wednesday brought,['before'] -peculiarly strong,['and'] -right besides,['the'] -caught me,['by'] -us so,['it'] -it occurred,|['to', 'When']| -been missed,['by'] -safety And,['yet'] -that suggested,['at'] -from Eyford,|['Station.', 'that']| -witnesses depose,['that'] -probability That,['the'] -forced before,['now'] -stone to,['Kilburn'] -rather not,['talk'] -was seized,|['with', 'and']| -started that,['he'] -one word,['would'] -us lose,['not'] -the Black,['Swan'] -small clump,['of'] -deadly paleness,['in'] -marriage His,['name'] -anything else,|['of', 'There', 'for']| -|son, you|,['see'] -friend with,|['the', 'whom']| -gate Mr,['Merryweather'] -one's self,['under'] -a chair,|['beside', 'with', 'the', 'and']| -coat pocket,['and'] -rubber after,['all'] -poured brandy,['down'] -his fat,['hands'] -proves nothing,['It'] -confided my,['trouble'] -Scotch bonnet,|['with', 'is']| -through my,|['poor', 'mind', 'fingers', 'refusal']| -passing that,['she'] -continued flushing,['up'] -old man,|['sank', "it's", 'signed', 'solemnly', 'with', 'at', 'furiously', 'is']| -a boy's,['curiosity'] -different incidents,['of'] -pass the,['forbidden'] -lodging-house mahogany,['There'] -too soon,['however'] -face You've,['heard'] -been recently,['cut'] -bridegroom of,['Miss'] -had followed,['and'] -burning tallow walks,['upstairs'] -again Deeply,['as'] -you observe,|['this', 'anything', 'the', 'any']| -a bulldog,|['and', 'chin']| -records of,|['the', 'crime', 'our']| -a doctor,|['to', 'does', 'a']| -all crinkled,['with'] -beryl Boots,['which'] -employed in,['an'] -my remonstrance,['He'] -was wrong,|['in', 'and']| -thing However,['in'] -fashion I,['answered'] -them for,['it'] -of about,|['60', 'fifty']| -the vacancies.,['what'] -You'd be,['as'] -corner from,['the'] -clearly as,['I'] -your relish,['for'] -narrow winding,['staircases'] -Not a,['word'] -a terrible,|['change', 'injury']| -roots of,['his'] -boy to,|['put', 'apologise']| -that lamp,['sits'] -huge bundle,['in'] -spoke there,['was'] -June 19th,['heavens!'] -kept up,['forever'] -very ill,['and'] -a despairing,['gesture'] -Frank went,['off'] -and do,|['not', 'you', 'what', 'a']| -Yet with,['all'] -Vegetarian Restaurant,['and'] -riverside and,['I'] -have occurred,|['between', 'I']| -possess and,['I'] -married in,['the'] -rouse inquiry,['and'] -Ryder that,['there'] -Monday we,['may'] -may not,|['prove', 'be', 'Mr', 'come']| -quiet he,['gives'] -Rucastles went,['away'] -again then,['all'] -nurse-girl and,['several'] -his black,['clay'] -at midday,['to-morrow'] -safety and,['lay'] -in red,['ink'] -he Here,['he'] -get nothing,['to'] -as cunning,|['as', 'and']| -are then,['shown'] -in judicial,['moods'] -keenest for,['such'] -governess for,['five'] -that money,['troubles'] -have When,['my'] -has to,|['be', 'tell']| -address I,['am'] -thick pink-tinted,['note-paper'] -long he,['might'] -am no,|['official', 'doubt']| -I hate,['to'] -had watched,['the'] -a popular,['man'] -had lit,['a'] -strength upon,['it'] -McCarthys were,|['fond', 'seen']| -information as,|['I', 'was']| -in getting,['leave'] -have evidently,['seen'] -he The,['King'] -night journey,['I'] -half an,['hour'] -correct as,['far'] -for Westhouse,['&'] -until we,|['had', 'drew', 'emerged', 'were', 'are']| -by doing,["can't"] -here with,['me'] -share my,|['love', "uncle's"]| -correspondence has,['certainly'] -ignorance and,['he'] -Farintosh whom,['you'] -Mr Baker,|['It', 'sir,', 'with']| -and away,['we'] -out yesterday.,['could'] -Freemason that,['he'] -his smiling,['father'] -boxes driving,['rapidly'] -the carpet-bag,['politicians'] -preserve a,['weapon'] -terror which,['lies'] -meant it,['for'] -cloak and,['laid'] -by making,['love'] -duty would,['be'] -was quietly,['dressed'] -relation to,['crime'] -as did,['the'] -Mr Turner's,['lodge-keeper'] -some hunted,['animal'] -room Sherlock,['Holmes'] -that day,['to'] -flashing into,['my'] -ignorant folk,['who'] -little black,['jet'] -they could,|['get', 'have']| -nearest to,['ask'] -and concisely,['to'] -it anyhow,['so'] -cast his,['eyes'] -now definitely,['announced'] -The goose,|['we', 'sir']| -might tell,['us'] -sleeve I,['have'] -wall I,['knew'] -minutes This,['dress'] -guineas and,['of'] -abstracted fashion,['which'] -It read,['in'] -can easily,|['think', 'imagine']| -one male,['visitor'] -mention her,['under'] -turn in,['the'] -forehead I,['have'] -that went,['to'] -can thank,['you'] -wind cabby,['drove'] -has the,|['face', 'makings', 'temporary', 'very', 'shutters']| -down just,|['as', 'after']| -League He,['said'] -address asking,['him'] -finished however,['we'] -forehead a,['beauty'] -his rooms,|['we', 'so', 'Catherine', 'at']| -here unless,['I'] -very kind,|['Mr', 'to', 'of', 'said', 'good-natured']| -blotting-paper but,['we'] -wife said,['he'] -myself one,['of'] -out chuckled,['to'] -science lost,['an'] -mere vulgar,['intrigue'] -which held,|['me', 'his']| -its highest,['pitch'] -the silent,['Englishman'] -upon anything,['which'] -some ex-Confederate,['soldiers'] -bride. is,['that'] -my employers,['and'] -its disadvantages,['to'] -too funny,['I'] -in twenty,|['minutes!', 'minutes.', 'minutes']| -Avenue I,['learned'] -old elastic-sided,['boot'] -a calf,['tawny'] -would mean,['of'] -a call,['for'] -back dejected,['but'] -breakfast-table There,['he'] -as soon,['as'] -all rushed,['down'] -back alone,['for'] -Angel came,['to'] -shone upon,['her'] -away through,['the'] -remain away,['from'] -maid a,['card'] -he poured,['brandy'] -going up,['in'] -investigations outside,['went'] -Simon said,|['Holmes', 'something', 'he']| -c'est rien l'oeuvre,["c'est"] -little use,['he'] -second glance,['however'] -I snatched,['it'] -has asked,['her'] -method of,['doing'] diff --git a/Students/ebuer/session_04/katalab/kata_dshort.csv b/Students/ebuer/session_04/katalab/kata_dshort.csv deleted file mode 100644 index f60d3006..00000000 --- a/Students/ebuer/session_04/katalab/kata_dshort.csv +++ /dev/null @@ -1,172 +0,0 @@ -which might,['throw'] -under any,['other'] -machine that,['the'] -upon all,['his'] -the most,['perfect'] -adler all,['emotions'] -for drawing,['the'] -he would,['have'] -into his,['own'] -actions but,['for'] -with a,['gibe'] -himself in,['a'] -of the,['softer'] -be more,['disturbing'] -one particularly,['were'] -save with,['a'] -of his,['own'] -finely adjusted,['temperament'] -heard him,['mention'] -the world,['has'] -strong emotion,['in'] -all his,['mental'] -was to,['introduce'] -in one,['of'] -whole of,['her'] -love for,['irene'] -to his,['cold'] -but admirably,['balanced'] -things for,['the'] -might throw,['a'] -than a,['strong'] -placed himself,['in'] -that one,['particularly'] -instrument or,['a'] -never spoke,['of'] -adjusted temperament,['was'] -for irene,['adler'] -emotions and,['that'] -the observer excellent,['for'] -the woman,['i'] -distracting factor,['which'] -nature such,['as'] -felt any,['emotion'] -emotion in,['a'] -one of,['his'] -lenses would,['not'] -would not,['be'] -balanced mind,['he'] -sensitive instrument,['or'] -softer passions,['save'] -reasoner to,['admit'] -seen but,['as'] -and observing,['machine'] -to admit,['such'] -mind he,['was'] -spoke of,['the'] -to love,['for'] -his eyes,['she'] -such as,['his'] -admirable things,['for'] -they were,['admirable'] -and a,['sneer'] -passions save,['with'] -were admirable,['things'] -crack in,['one'] -name in,['his'] -own high-power,['lenses'] -all emotions,['and'] -take it,['the'] -a distracting,['factor'] -doubt upon,['all'] -he never,['spoke'] -any emotion,['akin'] -a crack,['in'] -have seldom,['heard'] -motives and,['actions'] -grit in,['a'] -lover he,['would'] -false position,['he'] -and that,['one'] -a doubt,['upon'] -more disturbing,['than'] -but for,['the'] -to introduce,['a'] -world has,['seen'] -intrusions into,['his'] -a strong,['emotion'] -observer excellent for,['drawing'] -most perfect,['reasoning'] -a lover,['he'] -trained reasoner,['to'] -results grit,['in'] -emotion akin,['to'] -a nature,['such'] -observing machine,['that'] -introduce a,['distracting'] -in a,|['false', 'sensitive', 'nature']| -reasoning and,['observing'] -him mention,['her'] -and actions,['but'] -a gibe,['and'] -for the,|['observer excellent', 'trained']| -and finely,['adjusted'] -the trained,['reasoner'] -the softer,['passions'] -from mens,['motives'] -her under,['any'] -of her,['sex'] -mention her,['under'] -i have,['seldom'] -abhorrent to,['his'] -high-power lenses,['would'] -veil from,['mens'] -mens motives,['and'] -was i,['take'] -but as,['a'] -a sneer,['they'] -cold precise,['but'] -he was,['i'] -or a,['crack'] -would have,['placed'] -his cold,['precise'] -particularly were,['abhorrent'] -akin to,['love'] -any other,['name'] -her sex,['it'] -a false,['position'] -it was,['not'] -such intrusions,['into'] -he felt,['any'] -were abhorrent,['to'] -admit such,['intrusions'] -delicate and,['finely'] -gibe and,['a'] -a sensitive,['instrument'] -mental results,['grit'] -seldom heard,['him'] -other name,['in'] -not that,['he'] -i take,['it'] -she eclipses,['and'] -own delicate,['and'] -sex it,['was'] -admirably balanced,['mind'] -throw a,['doubt'] -woman i,['have'] -precise but,['admirably'] -disturbing than,['a'] -position he,['never'] -have placed,['himself'] -irene adler,['all'] -factor which,['might'] -it the,['most'] -drawing the,['veil'] -as a,['lover'] -in his,['eyes'] -that he,['felt'] -temperament was,['to'] -eclipses and,['predominates'] -and predominates,['the'] -that the,['world'] -predominates the,['whole'] -his own,|['delicate', 'high-power']| -his mental,['results'] -perfect reasoning,['and'] -sneer they,['were'] -not be,['more'] -the whole,['of'] -eyes she,['eclipses'] -the veil,['from'] -has seen,['but'] -was not,['that'] diff --git a/Students/ebuer/session_04/katalab/katafunc.py b/Students/ebuer/session_04/katalab/katafunc.py deleted file mode 100644 index 1a25954d..00000000 --- a/Students/ebuer/session_04/katalab/katafunc.py +++ /dev/null @@ -1,62 +0,0 @@ -""" -Functions for kata -""" - - -def linebreak(line): - """Return list of words from line, split on spaces - """ - l = line.strip('\n') - l = l.split(' ') - return l - - -def bookbreak(book): - """ Returns list of all words from book file - - Input is a list of lines each in a list. - """ - booklist = [] - for line in book: - l = line.split(' ') - for w in l: - booklist.append(w) - - return booklist - - -def stringbreak(word, sep): - """Returns list of words separated by 'sep - """ - if word.find(sep) != -1: - return word.split(sep) - else: - return word - - -def sanitize(word): - """Returns string without punctuation - """ - word = word.strip('."?!') - word = word.strip("',() :;") - - # for s in ['"', '?', '.', ':', ';', ',', "'"]: # stuff to get rid of - # if word.find(s): - # word = word.replace(s, '') - - for s in ['--']: # stuff to substitute with a space - if word.find(s): - word = word.replace(s, ' ') - return word - - -def katapunc(i, word): - """Return capitalized words with index % 15, - add periods to words i +1 % 15 - """ - if not i % 15 or not i: - return word.title() - elif not (i + 1) % 15: - return '{w}.'.format(w=word) - else: - return word diff --git a/Students/ebuer/session_04/katalab/kataprint.py b/Students/ebuer/session_04/katalab/kataprint.py deleted file mode 100644 index f75e88c5..00000000 --- a/Students/ebuer/session_04/katalab/kataprint.py +++ /dev/null @@ -1,32 +0,0 @@ -""" -Reads the kata_dfile (kata dictionary) and makes a kata from a seed -""" - - -import ast, csv, random -from katafunc import katapunc - -katadict = dict() - -with open('kata_dfile.csv', 'r') as f: - filecontent = csv.reader(f, delimiter=',', quotechar='|') - for row in filecontent: - katadict.setdefault(row[0], ast.literal_eval(row[1])) - -seed = ['vanished', 'into'] - - -for n in range(1000): - phrase = seed[-2:] - new_phrase = katadict.get('{p0} {p1}'.format(p0=phrase[0], p1=phrase[1])) - new_phrase = random.choice(new_phrase) - seed.append(new_phrase) - - -for i, s in enumerate(seed): - sp = katapunc(i, s) - if sp is 'i': - sp = 'I' - print '{s} '.format(s=sp), - - diff --git a/Students/ebuer/session_04/katalab/sherlock.txt b/Students/ebuer/session_04/katalab/sherlock.txt deleted file mode 100644 index 99d5cda5..00000000 --- a/Students/ebuer/session_04/katalab/sherlock.txt +++ /dev/null @@ -1,13052 +0,0 @@ -Project Gutenberg's The Adventures of Sherlock Holmes, by Arthur Conan Doyle - -This eBook is for the use of anyone anywhere at no cost and with -almost no restrictions whatsoever. You may copy it, give it away or -re-use it under the terms of the Project Gutenberg License included -with this eBook or online at www.gutenberg.net - - -Title: The Adventures of Sherlock Holmes - -Author: Arthur Conan Doyle - -Posting Date: April 18, 2011 [EBook #1661] -First Posted: November 29, 2002 - -Language: English - - -*** START OF THIS PROJECT GUTENBERG EBOOK THE ADVENTURES OF SHERLOCK HOLMES *** - - - - -Produced by an anonymous Project Gutenberg volunteer and Jose Menendez - - - - - - - - - -THE ADVENTURES OF SHERLOCK HOLMES - -by - -SIR ARTHUR CONAN DOYLE - - - - I. A Scandal in Bohemia - II. The Red-headed League - III. A Case of Identity - IV. The Boscombe Valley Mystery - V. The Five Orange Pips - VI. The Man with the Twisted Lip - VII. The Adventure of the Blue Carbuncle -VIII. The Adventure of the Speckled Band - IX. The Adventure of the Engineer's Thumb - X. The Adventure of the Noble Bachelor - XI. The Adventure of the Beryl Coronet - XII. The Adventure of the Copper Beeches - - - - -ADVENTURE I. A SCANDAL IN BOHEMIA - -I. - -To Sherlock Holmes she is always THE woman. I have seldom heard -him mention her under any other name. In his eyes she eclipses -and predominates the whole of her sex. It was not that he felt -any emotion akin to love for Irene Adler. All emotions, and that -one particularly, were abhorrent to his cold, precise but -admirably balanced mind. He was, I take it, the most perfect -reasoning and observing machine that the world has seen, but as a -lover he would have placed himself in a false position. He never -spoke of the softer passions, save with a gibe and a sneer. They -were admirable things for the observer--excellent for drawing the -veil from men's motives and actions. But for the trained reasoner -to admit such intrusions into his own delicate and finely -adjusted temperament was to introduce a distracting factor which -might throw a doubt upon all his mental results. Grit in a -sensitive instrument, or a crack in one of his own high-power -lenses, would not be more disturbing than a strong emotion in a -nature such as his. And yet there was but one woman to him, and -that woman was the late Irene Adler, of dubious and questionable -memory. - -I had seen little of Holmes lately. My marriage had drifted us -away from each other. My own complete happiness, and the -home-centred interests which rise up around the man who first -finds himself master of his own establishment, were sufficient to -absorb all my attention, while Holmes, who loathed every form of -society with his whole Bohemian soul, remained in our lodgings in -Baker Street, buried among his old books, and alternating from -week to week between cocaine and ambition, the drowsiness of the -drug, and the fierce energy of his own keen nature. He was still, -as ever, deeply attracted by the study of crime, and occupied his -immense faculties and extraordinary powers of observation in -following out those clues, and clearing up those mysteries which -had been abandoned as hopeless by the official police. From time -to time I heard some vague account of his doings: of his summons -to Odessa in the case of the Trepoff murder, of his clearing up -of the singular tragedy of the Atkinson brothers at Trincomalee, -and finally of the mission which he had accomplished so -delicately and successfully for the reigning family of Holland. -Beyond these signs of his activity, however, which I merely -shared with all the readers of the daily press, I knew little of -my former friend and companion. - -One night--it was on the twentieth of March, 1888--I was -returning from a journey to a patient (for I had now returned to -civil practice), when my way led me through Baker Street. As I -passed the well-remembered door, which must always be associated -in my mind with my wooing, and with the dark incidents of the -Study in Scarlet, I was seized with a keen desire to see Holmes -again, and to know how he was employing his extraordinary powers. -His rooms were brilliantly lit, and, even as I looked up, I saw -his tall, spare figure pass twice in a dark silhouette against -the blind. He was pacing the room swiftly, eagerly, with his head -sunk upon his chest and his hands clasped behind him. To me, who -knew his every mood and habit, his attitude and manner told their -own story. He was at work again. He had risen out of his -drug-created dreams and was hot upon the scent of some new -problem. I rang the bell and was shown up to the chamber which -had formerly been in part my own. - -His manner was not effusive. It seldom was; but he was glad, I -think, to see me. With hardly a word spoken, but with a kindly -eye, he waved me to an armchair, threw across his case of cigars, -and indicated a spirit case and a gasogene in the corner. Then he -stood before the fire and looked me over in his singular -introspective fashion. - -"Wedlock suits you," he remarked. "I think, Watson, that you have -put on seven and a half pounds since I saw you." - -"Seven!" I answered. - -"Indeed, I should have thought a little more. Just a trifle more, -I fancy, Watson. And in practice again, I observe. You did not -tell me that you intended to go into harness." - -"Then, how do you know?" - -"I see it, I deduce it. How do I know that you have been getting -yourself very wet lately, and that you have a most clumsy and -careless servant girl?" - -"My dear Holmes," said I, "this is too much. You would certainly -have been burned, had you lived a few centuries ago. It is true -that I had a country walk on Thursday and came home in a dreadful -mess, but as I have changed my clothes I can't imagine how you -deduce it. As to Mary Jane, she is incorrigible, and my wife has -given her notice, but there, again, I fail to see how you work it -out." - -He chuckled to himself and rubbed his long, nervous hands -together. - -"It is simplicity itself," said he; "my eyes tell me that on the -inside of your left shoe, just where the firelight strikes it, -the leather is scored by six almost parallel cuts. Obviously they -have been caused by someone who has very carelessly scraped round -the edges of the sole in order to remove crusted mud from it. -Hence, you see, my double deduction that you had been out in vile -weather, and that you had a particularly malignant boot-slitting -specimen of the London slavey. As to your practice, if a -gentleman walks into my rooms smelling of iodoform, with a black -mark of nitrate of silver upon his right forefinger, and a bulge -on the right side of his top-hat to show where he has secreted -his stethoscope, I must be dull, indeed, if I do not pronounce -him to be an active member of the medical profession." - -I could not help laughing at the ease with which he explained his -process of deduction. "When I hear you give your reasons," I -remarked, "the thing always appears to me to be so ridiculously -simple that I could easily do it myself, though at each -successive instance of your reasoning I am baffled until you -explain your process. And yet I believe that my eyes are as good -as yours." - -"Quite so," he answered, lighting a cigarette, and throwing -himself down into an armchair. "You see, but you do not observe. -The distinction is clear. For example, you have frequently seen -the steps which lead up from the hall to this room." - -"Frequently." - -"How often?" - -"Well, some hundreds of times." - -"Then how many are there?" - -"How many? I don't know." - -"Quite so! You have not observed. And yet you have seen. That is -just my point. Now, I know that there are seventeen steps, -because I have both seen and observed. By-the-way, since you are -interested in these little problems, and since you are good -enough to chronicle one or two of my trifling experiences, you -may be interested in this." He threw over a sheet of thick, -pink-tinted note-paper which had been lying open upon the table. -"It came by the last post," said he. "Read it aloud." - -The note was undated, and without either signature or address. - -"There will call upon you to-night, at a quarter to eight -o'clock," it said, "a gentleman who desires to consult you upon a -matter of the very deepest moment. Your recent services to one of -the royal houses of Europe have shown that you are one who may -safely be trusted with matters which are of an importance which -can hardly be exaggerated. This account of you we have from all -quarters received. Be in your chamber then at that hour, and do -not take it amiss if your visitor wear a mask." - -"This is indeed a mystery," I remarked. "What do you imagine that -it means?" - -"I have no data yet. It is a capital mistake to theorize before -one has data. Insensibly one begins to twist facts to suit -theories, instead of theories to suit facts. But the note itself. -What do you deduce from it?" - -I carefully examined the writing, and the paper upon which it was -written. - -"The man who wrote it was presumably well to do," I remarked, -endeavouring to imitate my companion's processes. "Such paper -could not be bought under half a crown a packet. It is peculiarly -strong and stiff." - -"Peculiar--that is the very word," said Holmes. "It is not an -English paper at all. Hold it up to the light." - -I did so, and saw a large "E" with a small "g," a "P," and a -large "G" with a small "t" woven into the texture of the paper. - -"What do you make of that?" asked Holmes. - -"The name of the maker, no doubt; or his monogram, rather." - -"Not at all. The 'G' with the small 't' stands for -'Gesellschaft,' which is the German for 'Company.' It is a -customary contraction like our 'Co.' 'P,' of course, stands for -'Papier.' Now for the 'Eg.' Let us glance at our Continental -Gazetteer." He took down a heavy brown volume from his shelves. -"Eglow, Eglonitz--here we are, Egria. It is in a German-speaking -country--in Bohemia, not far from Carlsbad. 'Remarkable as being -the scene of the death of Wallenstein, and for its numerous -glass-factories and paper-mills.' Ha, ha, my boy, what do you -make of that?" His eyes sparkled, and he sent up a great blue -triumphant cloud from his cigarette. - -"The paper was made in Bohemia," I said. - -"Precisely. And the man who wrote the note is a German. Do you -note the peculiar construction of the sentence--'This account of -you we have from all quarters received.' A Frenchman or Russian -could not have written that. It is the German who is so -uncourteous to his verbs. It only remains, therefore, to discover -what is wanted by this German who writes upon Bohemian paper and -prefers wearing a mask to showing his face. And here he comes, if -I am not mistaken, to resolve all our doubts." - -As he spoke there was the sharp sound of horses' hoofs and -grating wheels against the curb, followed by a sharp pull at the -bell. Holmes whistled. - -"A pair, by the sound," said he. "Yes," he continued, glancing -out of the window. "A nice little brougham and a pair of -beauties. A hundred and fifty guineas apiece. There's money in -this case, Watson, if there is nothing else." - -"I think that I had better go, Holmes." - -"Not a bit, Doctor. Stay where you are. I am lost without my -Boswell. And this promises to be interesting. It would be a pity -to miss it." - -"But your client--" - -"Never mind him. I may want your help, and so may he. Here he -comes. Sit down in that armchair, Doctor, and give us your best -attention." - -A slow and heavy step, which had been heard upon the stairs and -in the passage, paused immediately outside the door. Then there -was a loud and authoritative tap. - -"Come in!" said Holmes. - -A man entered who could hardly have been less than six feet six -inches in height, with the chest and limbs of a Hercules. His -dress was rich with a richness which would, in England, be looked -upon as akin to bad taste. Heavy bands of astrakhan were slashed -across the sleeves and fronts of his double-breasted coat, while -the deep blue cloak which was thrown over his shoulders was lined -with flame-coloured silk and secured at the neck with a brooch -which consisted of a single flaming beryl. Boots which extended -halfway up his calves, and which were trimmed at the tops with -rich brown fur, completed the impression of barbaric opulence -which was suggested by his whole appearance. He carried a -broad-brimmed hat in his hand, while he wore across the upper -part of his face, extending down past the cheekbones, a black -vizard mask, which he had apparently adjusted that very moment, -for his hand was still raised to it as he entered. From the lower -part of the face he appeared to be a man of strong character, -with a thick, hanging lip, and a long, straight chin suggestive -of resolution pushed to the length of obstinacy. - -"You had my note?" he asked with a deep harsh voice and a -strongly marked German accent. "I told you that I would call." He -looked from one to the other of us, as if uncertain which to -address. - -"Pray take a seat," said Holmes. "This is my friend and -colleague, Dr. Watson, who is occasionally good enough to help me -in my cases. Whom have I the honour to address?" - -"You may address me as the Count Von Kramm, a Bohemian nobleman. -I understand that this gentleman, your friend, is a man of honour -and discretion, whom I may trust with a matter of the most -extreme importance. If not, I should much prefer to communicate -with you alone." - -I rose to go, but Holmes caught me by the wrist and pushed me -back into my chair. "It is both, or none," said he. "You may say -before this gentleman anything which you may say to me." - -The Count shrugged his broad shoulders. "Then I must begin," said -he, "by binding you both to absolute secrecy for two years; at -the end of that time the matter will be of no importance. At -present it is not too much to say that it is of such weight it -may have an influence upon European history." - -"I promise," said Holmes. - -"And I." - -"You will excuse this mask," continued our strange visitor. "The -august person who employs me wishes his agent to be unknown to -you, and I may confess at once that the title by which I have -just called myself is not exactly my own." - -"I was aware of it," said Holmes dryly. - -"The circumstances are of great delicacy, and every precaution -has to be taken to quench what might grow to be an immense -scandal and seriously compromise one of the reigning families of -Europe. To speak plainly, the matter implicates the great House -of Ormstein, hereditary kings of Bohemia." - -"I was also aware of that," murmured Holmes, settling himself -down in his armchair and closing his eyes. - -Our visitor glanced with some apparent surprise at the languid, -lounging figure of the man who had been no doubt depicted to him -as the most incisive reasoner and most energetic agent in Europe. -Holmes slowly reopened his eyes and looked impatiently at his -gigantic client. - -"If your Majesty would condescend to state your case," he -remarked, "I should be better able to advise you." - -The man sprang from his chair and paced up and down the room in -uncontrollable agitation. Then, with a gesture of desperation, he -tore the mask from his face and hurled it upon the ground. "You -are right," he cried; "I am the King. Why should I attempt to -conceal it?" - -"Why, indeed?" murmured Holmes. "Your Majesty had not spoken -before I was aware that I was addressing Wilhelm Gottsreich -Sigismond von Ormstein, Grand Duke of Cassel-Felstein, and -hereditary King of Bohemia." - -"But you can understand," said our strange visitor, sitting down -once more and passing his hand over his high white forehead, "you -can understand that I am not accustomed to doing such business in -my own person. Yet the matter was so delicate that I could not -confide it to an agent without putting myself in his power. I -have come incognito from Prague for the purpose of consulting -you." - -"Then, pray consult," said Holmes, shutting his eyes once more. - -"The facts are briefly these: Some five years ago, during a -lengthy visit to Warsaw, I made the acquaintance of the well-known -adventuress, Irene Adler. The name is no doubt familiar to you." - -"Kindly look her up in my index, Doctor," murmured Holmes without -opening his eyes. For many years he had adopted a system of -docketing all paragraphs concerning men and things, so that it -was difficult to name a subject or a person on which he could not -at once furnish information. In this case I found her biography -sandwiched in between that of a Hebrew rabbi and that of a -staff-commander who had written a monograph upon the deep-sea -fishes. - -"Let me see!" said Holmes. "Hum! Born in New Jersey in the year -1858. Contralto--hum! La Scala, hum! Prima donna Imperial Opera -of Warsaw--yes! Retired from operatic stage--ha! Living in -London--quite so! Your Majesty, as I understand, became entangled -with this young person, wrote her some compromising letters, and -is now desirous of getting those letters back." - -"Precisely so. But how--" - -"Was there a secret marriage?" - -"None." - -"No legal papers or certificates?" - -"None." - -"Then I fail to follow your Majesty. If this young person should -produce her letters for blackmailing or other purposes, how is -she to prove their authenticity?" - -"There is the writing." - -"Pooh, pooh! Forgery." - -"My private note-paper." - -"Stolen." - -"My own seal." - -"Imitated." - -"My photograph." - -"Bought." - -"We were both in the photograph." - -"Oh, dear! That is very bad! Your Majesty has indeed committed an -indiscretion." - -"I was mad--insane." - -"You have compromised yourself seriously." - -"I was only Crown Prince then. I was young. I am but thirty now." - -"It must be recovered." - -"We have tried and failed." - -"Your Majesty must pay. It must be bought." - -"She will not sell." - -"Stolen, then." - -"Five attempts have been made. Twice burglars in my pay ransacked -her house. Once we diverted her luggage when she travelled. Twice -she has been waylaid. There has been no result." - -"No sign of it?" - -"Absolutely none." - -Holmes laughed. "It is quite a pretty little problem," said he. - -"But a very serious one to me," returned the King reproachfully. - -"Very, indeed. And what does she propose to do with the -photograph?" - -"To ruin me." - -"But how?" - -"I am about to be married." - -"So I have heard." - -"To Clotilde Lothman von Saxe-Meningen, second daughter of the -King of Scandinavia. You may know the strict principles of her -family. She is herself the very soul of delicacy. A shadow of a -doubt as to my conduct would bring the matter to an end." - -"And Irene Adler?" - -"Threatens to send them the photograph. And she will do it. I -know that she will do it. You do not know her, but she has a soul -of steel. She has the face of the most beautiful of women, and -the mind of the most resolute of men. Rather than I should marry -another woman, there are no lengths to which she would not -go--none." - -"You are sure that she has not sent it yet?" - -"I am sure." - -"And why?" - -"Because she has said that she would send it on the day when the -betrothal was publicly proclaimed. That will be next Monday." - -"Oh, then we have three days yet," said Holmes with a yawn. "That -is very fortunate, as I have one or two matters of importance to -look into just at present. Your Majesty will, of course, stay in -London for the present?" - -"Certainly. You will find me at the Langham under the name of the -Count Von Kramm." - -"Then I shall drop you a line to let you know how we progress." - -"Pray do so. I shall be all anxiety." - -"Then, as to money?" - -"You have carte blanche." - -"Absolutely?" - -"I tell you that I would give one of the provinces of my kingdom -to have that photograph." - -"And for present expenses?" - -The King took a heavy chamois leather bag from under his cloak -and laid it on the table. - -"There are three hundred pounds in gold and seven hundred in -notes," he said. - -Holmes scribbled a receipt upon a sheet of his note-book and -handed it to him. - -"And Mademoiselle's address?" he asked. - -"Is Briony Lodge, Serpentine Avenue, St. John's Wood." - -Holmes took a note of it. "One other question," said he. "Was the -photograph a cabinet?" - -"It was." - -"Then, good-night, your Majesty, and I trust that we shall soon -have some good news for you. And good-night, Watson," he added, -as the wheels of the royal brougham rolled down the street. "If -you will be good enough to call to-morrow afternoon at three -o'clock I should like to chat this little matter over with you." - - -II. - -At three o'clock precisely I was at Baker Street, but Holmes had -not yet returned. The landlady informed me that he had left the -house shortly after eight o'clock in the morning. I sat down -beside the fire, however, with the intention of awaiting him, -however long he might be. I was already deeply interested in his -inquiry, for, though it was surrounded by none of the grim and -strange features which were associated with the two crimes which -I have already recorded, still, the nature of the case and the -exalted station of his client gave it a character of its own. -Indeed, apart from the nature of the investigation which my -friend had on hand, there was something in his masterly grasp of -a situation, and his keen, incisive reasoning, which made it a -pleasure to me to study his system of work, and to follow the -quick, subtle methods by which he disentangled the most -inextricable mysteries. So accustomed was I to his invariable -success that the very possibility of his failing had ceased to -enter into my head. - -It was close upon four before the door opened, and a -drunken-looking groom, ill-kempt and side-whiskered, with an -inflamed face and disreputable clothes, walked into the room. -Accustomed as I was to my friend's amazing powers in the use of -disguises, I had to look three times before I was certain that it -was indeed he. With a nod he vanished into the bedroom, whence he -emerged in five minutes tweed-suited and respectable, as of old. -Putting his hands into his pockets, he stretched out his legs in -front of the fire and laughed heartily for some minutes. - -"Well, really!" he cried, and then he choked and laughed again -until he was obliged to lie back, limp and helpless, in the -chair. - -"What is it?" - -"It's quite too funny. I am sure you could never guess how I -employed my morning, or what I ended by doing." - -"I can't imagine. I suppose that you have been watching the -habits, and perhaps the house, of Miss Irene Adler." - -"Quite so; but the sequel was rather unusual. I will tell you, -however. I left the house a little after eight o'clock this -morning in the character of a groom out of work. There is a -wonderful sympathy and freemasonry among horsey men. Be one of -them, and you will know all that there is to know. I soon found -Briony Lodge. It is a bijou villa, with a garden at the back, but -built out in front right up to the road, two stories. Chubb lock -to the door. Large sitting-room on the right side, well -furnished, with long windows almost to the floor, and those -preposterous English window fasteners which a child could open. -Behind there was nothing remarkable, save that the passage window -could be reached from the top of the coach-house. I walked round -it and examined it closely from every point of view, but without -noting anything else of interest. - -"I then lounged down the street and found, as I expected, that -there was a mews in a lane which runs down by one wall of the -garden. I lent the ostlers a hand in rubbing down their horses, -and received in exchange twopence, a glass of half and half, two -fills of shag tobacco, and as much information as I could desire -about Miss Adler, to say nothing of half a dozen other people in -the neighbourhood in whom I was not in the least interested, but -whose biographies I was compelled to listen to." - -"And what of Irene Adler?" I asked. - -"Oh, she has turned all the men's heads down in that part. She is -the daintiest thing under a bonnet on this planet. So say the -Serpentine-mews, to a man. She lives quietly, sings at concerts, -drives out at five every day, and returns at seven sharp for -dinner. Seldom goes out at other times, except when she sings. -Has only one male visitor, but a good deal of him. He is dark, -handsome, and dashing, never calls less than once a day, and -often twice. He is a Mr. Godfrey Norton, of the Inner Temple. See -the advantages of a cabman as a confidant. They had driven him -home a dozen times from Serpentine-mews, and knew all about him. -When I had listened to all they had to tell, I began to walk up -and down near Briony Lodge once more, and to think over my plan -of campaign. - -"This Godfrey Norton was evidently an important factor in the -matter. He was a lawyer. That sounded ominous. What was the -relation between them, and what the object of his repeated -visits? Was she his client, his friend, or his mistress? If the -former, she had probably transferred the photograph to his -keeping. If the latter, it was less likely. On the issue of this -question depended whether I should continue my work at Briony -Lodge, or turn my attention to the gentleman's chambers in the -Temple. It was a delicate point, and it widened the field of my -inquiry. I fear that I bore you with these details, but I have to -let you see my little difficulties, if you are to understand the -situation." - -"I am following you closely," I answered. - -"I was still balancing the matter in my mind when a hansom cab -drove up to Briony Lodge, and a gentleman sprang out. He was a -remarkably handsome man, dark, aquiline, and moustached--evidently -the man of whom I had heard. He appeared to be in a -great hurry, shouted to the cabman to wait, and brushed past the -maid who opened the door with the air of a man who was thoroughly -at home. - -"He was in the house about half an hour, and I could catch -glimpses of him in the windows of the sitting-room, pacing up and -down, talking excitedly, and waving his arms. Of her I could see -nothing. Presently he emerged, looking even more flurried than -before. As he stepped up to the cab, he pulled a gold watch from -his pocket and looked at it earnestly, 'Drive like the devil,' he -shouted, 'first to Gross & Hankey's in Regent Street, and then to -the Church of St. Monica in the Edgeware Road. Half a guinea if -you do it in twenty minutes!' - -"Away they went, and I was just wondering whether I should not do -well to follow them when up the lane came a neat little landau, -the coachman with his coat only half-buttoned, and his tie under -his ear, while all the tags of his harness were sticking out of -the buckles. It hadn't pulled up before she shot out of the hall -door and into it. I only caught a glimpse of her at the moment, -but she was a lovely woman, with a face that a man might die for. - -"'The Church of St. Monica, John,' she cried, 'and half a -sovereign if you reach it in twenty minutes.' - -"This was quite too good to lose, Watson. I was just balancing -whether I should run for it, or whether I should perch behind her -landau when a cab came through the street. The driver looked -twice at such a shabby fare, but I jumped in before he could -object. 'The Church of St. Monica,' said I, 'and half a sovereign -if you reach it in twenty minutes.' It was twenty-five minutes to -twelve, and of course it was clear enough what was in the wind. - -"My cabby drove fast. I don't think I ever drove faster, but the -others were there before us. The cab and the landau with their -steaming horses were in front of the door when I arrived. I paid -the man and hurried into the church. There was not a soul there -save the two whom I had followed and a surpliced clergyman, who -seemed to be expostulating with them. They were all three -standing in a knot in front of the altar. I lounged up the side -aisle like any other idler who has dropped into a church. -Suddenly, to my surprise, the three at the altar faced round to -me, and Godfrey Norton came running as hard as he could towards -me. - -"'Thank God,' he cried. 'You'll do. Come! Come!' - -"'What then?' I asked. - -"'Come, man, come, only three minutes, or it won't be legal.' - -"I was half-dragged up to the altar, and before I knew where I was -I found myself mumbling responses which were whispered in my ear, -and vouching for things of which I knew nothing, and generally -assisting in the secure tying up of Irene Adler, spinster, to -Godfrey Norton, bachelor. It was all done in an instant, and -there was the gentleman thanking me on the one side and the lady -on the other, while the clergyman beamed on me in front. It was -the most preposterous position in which I ever found myself in my -life, and it was the thought of it that started me laughing just -now. It seems that there had been some informality about their -license, that the clergyman absolutely refused to marry them -without a witness of some sort, and that my lucky appearance -saved the bridegroom from having to sally out into the streets in -search of a best man. The bride gave me a sovereign, and I mean -to wear it on my watch-chain in memory of the occasion." - -"This is a very unexpected turn of affairs," said I; "and what -then?" - -"Well, I found my plans very seriously menaced. It looked as if -the pair might take an immediate departure, and so necessitate -very prompt and energetic measures on my part. At the church -door, however, they separated, he driving back to the Temple, and -she to her own house. 'I shall drive out in the park at five as -usual,' she said as she left him. I heard no more. They drove -away in different directions, and I went off to make my own -arrangements." - -"Which are?" - -"Some cold beef and a glass of beer," he answered, ringing the -bell. "I have been too busy to think of food, and I am likely to -be busier still this evening. By the way, Doctor, I shall want -your co-operation." - -"I shall be delighted." - -"You don't mind breaking the law?" - -"Not in the least." - -"Nor running a chance of arrest?" - -"Not in a good cause." - -"Oh, the cause is excellent!" - -"Then I am your man." - -"I was sure that I might rely on you." - -"But what is it you wish?" - -"When Mrs. Turner has brought in the tray I will make it clear to -you. Now," he said as he turned hungrily on the simple fare that -our landlady had provided, "I must discuss it while I eat, for I -have not much time. It is nearly five now. In two hours we must -be on the scene of action. Miss Irene, or Madame, rather, returns -from her drive at seven. We must be at Briony Lodge to meet her." - -"And what then?" - -"You must leave that to me. I have already arranged what is to -occur. There is only one point on which I must insist. You must -not interfere, come what may. You understand?" - -"I am to be neutral?" - -"To do nothing whatever. There will probably be some small -unpleasantness. Do not join in it. It will end in my being -conveyed into the house. Four or five minutes afterwards the -sitting-room window will open. You are to station yourself close -to that open window." - -"Yes." - -"You are to watch me, for I will be visible to you." - -"Yes." - -"And when I raise my hand--so--you will throw into the room what -I give you to throw, and will, at the same time, raise the cry of -fire. You quite follow me?" - -"Entirely." - -"It is nothing very formidable," he said, taking a long cigar-shaped -roll from his pocket. "It is an ordinary plumber's smoke-rocket, -fitted with a cap at either end to make it self-lighting. -Your task is confined to that. When you raise your cry of fire, -it will be taken up by quite a number of people. You may then -walk to the end of the street, and I will rejoin you in ten -minutes. I hope that I have made myself clear?" - -"I am to remain neutral, to get near the window, to watch you, -and at the signal to throw in this object, then to raise the cry -of fire, and to wait you at the corner of the street." - -"Precisely." - -"Then you may entirely rely on me." - -"That is excellent. I think, perhaps, it is almost time that I -prepare for the new role I have to play." - -He disappeared into his bedroom and returned in a few minutes in -the character of an amiable and simple-minded Nonconformist -clergyman. His broad black hat, his baggy trousers, his white -tie, his sympathetic smile, and general look of peering and -benevolent curiosity were such as Mr. John Hare alone could have -equalled. It was not merely that Holmes changed his costume. His -expression, his manner, his very soul seemed to vary with every -fresh part that he assumed. The stage lost a fine actor, even as -science lost an acute reasoner, when he became a specialist in -crime. - -It was a quarter past six when we left Baker Street, and it still -wanted ten minutes to the hour when we found ourselves in -Serpentine Avenue. It was already dusk, and the lamps were just -being lighted as we paced up and down in front of Briony Lodge, -waiting for the coming of its occupant. The house was just such -as I had pictured it from Sherlock Holmes' succinct description, -but the locality appeared to be less private than I expected. On -the contrary, for a small street in a quiet neighbourhood, it was -remarkably animated. There was a group of shabbily dressed men -smoking and laughing in a corner, a scissors-grinder with his -wheel, two guardsmen who were flirting with a nurse-girl, and -several well-dressed young men who were lounging up and down with -cigars in their mouths. - -"You see," remarked Holmes, as we paced to and fro in front of -the house, "this marriage rather simplifies matters. The -photograph becomes a double-edged weapon now. The chances are -that she would be as averse to its being seen by Mr. Godfrey -Norton, as our client is to its coming to the eyes of his -princess. Now the question is, Where are we to find the -photograph?" - -"Where, indeed?" - -"It is most unlikely that she carries it about with her. It is -cabinet size. Too large for easy concealment about a woman's -dress. She knows that the King is capable of having her waylaid -and searched. Two attempts of the sort have already been made. We -may take it, then, that she does not carry it about with her." - -"Where, then?" - -"Her banker or her lawyer. There is that double possibility. But -I am inclined to think neither. Women are naturally secretive, -and they like to do their own secreting. Why should she hand it -over to anyone else? She could trust her own guardianship, but -she could not tell what indirect or political influence might be -brought to bear upon a business man. Besides, remember that she -had resolved to use it within a few days. It must be where she -can lay her hands upon it. It must be in her own house." - -"But it has twice been burgled." - -"Pshaw! They did not know how to look." - -"But how will you look?" - -"I will not look." - -"What then?" - -"I will get her to show me." - -"But she will refuse." - -"She will not be able to. But I hear the rumble of wheels. It is -her carriage. Now carry out my orders to the letter." - -As he spoke the gleam of the side-lights of a carriage came round -the curve of the avenue. It was a smart little landau which -rattled up to the door of Briony Lodge. As it pulled up, one of -the loafing men at the corner dashed forward to open the door in -the hope of earning a copper, but was elbowed away by another -loafer, who had rushed up with the same intention. A fierce -quarrel broke out, which was increased by the two guardsmen, who -took sides with one of the loungers, and by the scissors-grinder, -who was equally hot upon the other side. A blow was struck, and -in an instant the lady, who had stepped from her carriage, was -the centre of a little knot of flushed and struggling men, who -struck savagely at each other with their fists and sticks. Holmes -dashed into the crowd to protect the lady; but just as he reached -her he gave a cry and dropped to the ground, with the blood -running freely down his face. At his fall the guardsmen took to -their heels in one direction and the loungers in the other, while -a number of better-dressed people, who had watched the scuffle -without taking part in it, crowded in to help the lady and to -attend to the injured man. Irene Adler, as I will still call her, -had hurried up the steps; but she stood at the top with her -superb figure outlined against the lights of the hall, looking -back into the street. - -"Is the poor gentleman much hurt?" she asked. - -"He is dead," cried several voices. - -"No, no, there's life in him!" shouted another. "But he'll be -gone before you can get him to hospital." - -"He's a brave fellow," said a woman. "They would have had the -lady's purse and watch if it hadn't been for him. They were a -gang, and a rough one, too. Ah, he's breathing now." - -"He can't lie in the street. May we bring him in, marm?" - -"Surely. Bring him into the sitting-room. There is a comfortable -sofa. This way, please!" - -Slowly and solemnly he was borne into Briony Lodge and laid out -in the principal room, while I still observed the proceedings -from my post by the window. The lamps had been lit, but the -blinds had not been drawn, so that I could see Holmes as he lay -upon the couch. I do not know whether he was seized with -compunction at that moment for the part he was playing, but I -know that I never felt more heartily ashamed of myself in my life -than when I saw the beautiful creature against whom I was -conspiring, or the grace and kindliness with which she waited -upon the injured man. And yet it would be the blackest treachery -to Holmes to draw back now from the part which he had intrusted -to me. I hardened my heart, and took the smoke-rocket from under -my ulster. After all, I thought, we are not injuring her. We are -but preventing her from injuring another. - -Holmes had sat up upon the couch, and I saw him motion like a man -who is in need of air. A maid rushed across and threw open the -window. At the same instant I saw him raise his hand and at the -signal I tossed my rocket into the room with a cry of "Fire!" The -word was no sooner out of my mouth than the whole crowd of -spectators, well dressed and ill--gentlemen, ostlers, and -servant-maids--joined in a general shriek of "Fire!" Thick clouds -of smoke curled through the room and out at the open window. I -caught a glimpse of rushing figures, and a moment later the voice -of Holmes from within assuring them that it was a false alarm. -Slipping through the shouting crowd I made my way to the corner -of the street, and in ten minutes was rejoiced to find my -friend's arm in mine, and to get away from the scene of uproar. -He walked swiftly and in silence for some few minutes until we -had turned down one of the quiet streets which lead towards the -Edgeware Road. - -"You did it very nicely, Doctor," he remarked. "Nothing could -have been better. It is all right." - -"You have the photograph?" - -"I know where it is." - -"And how did you find out?" - -"She showed me, as I told you she would." - -"I am still in the dark." - -"I do not wish to make a mystery," said he, laughing. "The matter -was perfectly simple. You, of course, saw that everyone in the -street was an accomplice. They were all engaged for the evening." - -"I guessed as much." - -"Then, when the row broke out, I had a little moist red paint in -the palm of my hand. I rushed forward, fell down, clapped my hand -to my face, and became a piteous spectacle. It is an old trick." - -"That also I could fathom." - -"Then they carried me in. She was bound to have me in. What else -could she do? And into her sitting-room, which was the very room -which I suspected. It lay between that and her bedroom, and I was -determined to see which. They laid me on a couch, I motioned for -air, they were compelled to open the window, and you had your -chance." - -"How did that help you?" - -"It was all-important. When a woman thinks that her house is on -fire, her instinct is at once to rush to the thing which she -values most. It is a perfectly overpowering impulse, and I have -more than once taken advantage of it. In the case of the -Darlington substitution scandal it was of use to me, and also in -the Arnsworth Castle business. A married woman grabs at her baby; -an unmarried one reaches for her jewel-box. Now it was clear to -me that our lady of to-day had nothing in the house more precious -to her than what we are in quest of. She would rush to secure it. -The alarm of fire was admirably done. The smoke and shouting were -enough to shake nerves of steel. She responded beautifully. The -photograph is in a recess behind a sliding panel just above the -right bell-pull. She was there in an instant, and I caught a -glimpse of it as she half-drew it out. When I cried out that it -was a false alarm, she replaced it, glanced at the rocket, rushed -from the room, and I have not seen her since. I rose, and, making -my excuses, escaped from the house. I hesitated whether to -attempt to secure the photograph at once; but the coachman had -come in, and as he was watching me narrowly it seemed safer to -wait. A little over-precipitance may ruin all." - -"And now?" I asked. - -"Our quest is practically finished. I shall call with the King -to-morrow, and with you, if you care to come with us. We will be -shown into the sitting-room to wait for the lady, but it is -probable that when she comes she may find neither us nor the -photograph. It might be a satisfaction to his Majesty to regain -it with his own hands." - -"And when will you call?" - -"At eight in the morning. She will not be up, so that we shall -have a clear field. Besides, we must be prompt, for this marriage -may mean a complete change in her life and habits. I must wire to -the King without delay." - -We had reached Baker Street and had stopped at the door. He was -searching his pockets for the key when someone passing said: - -"Good-night, Mister Sherlock Holmes." - -There were several people on the pavement at the time, but the -greeting appeared to come from a slim youth in an ulster who had -hurried by. - -"I've heard that voice before," said Holmes, staring down the -dimly lit street. "Now, I wonder who the deuce that could have -been." - - -III. - -I slept at Baker Street that night, and we were engaged upon our -toast and coffee in the morning when the King of Bohemia rushed -into the room. - -"You have really got it!" he cried, grasping Sherlock Holmes by -either shoulder and looking eagerly into his face. - -"Not yet." - -"But you have hopes?" - -"I have hopes." - -"Then, come. I am all impatience to be gone." - -"We must have a cab." - -"No, my brougham is waiting." - -"Then that will simplify matters." We descended and started off -once more for Briony Lodge. - -"Irene Adler is married," remarked Holmes. - -"Married! When?" - -"Yesterday." - -"But to whom?" - -"To an English lawyer named Norton." - -"But she could not love him." - -"I am in hopes that she does." - -"And why in hopes?" - -"Because it would spare your Majesty all fear of future -annoyance. If the lady loves her husband, she does not love your -Majesty. If she does not love your Majesty, there is no reason -why she should interfere with your Majesty's plan." - -"It is true. And yet--Well! I wish she had been of my own -station! What a queen she would have made!" He relapsed into a -moody silence, which was not broken until we drew up in -Serpentine Avenue. - -The door of Briony Lodge was open, and an elderly woman stood -upon the steps. She watched us with a sardonic eye as we stepped -from the brougham. - -"Mr. Sherlock Holmes, I believe?" said she. - -"I am Mr. Holmes," answered my companion, looking at her with a -questioning and rather startled gaze. - -"Indeed! My mistress told me that you were likely to call. She -left this morning with her husband by the 5:15 train from Charing -Cross for the Continent." - -"What!" Sherlock Holmes staggered back, white with chagrin and -surprise. "Do you mean that she has left England?" - -"Never to return." - -"And the papers?" asked the King hoarsely. "All is lost." - -"We shall see." He pushed past the servant and rushed into the -drawing-room, followed by the King and myself. The furniture was -scattered about in every direction, with dismantled shelves and -open drawers, as if the lady had hurriedly ransacked them before -her flight. Holmes rushed at the bell-pull, tore back a small -sliding shutter, and, plunging in his hand, pulled out a -photograph and a letter. The photograph was of Irene Adler -herself in evening dress, the letter was superscribed to -"Sherlock Holmes, Esq. To be left till called for." My friend -tore it open and we all three read it together. It was dated at -midnight of the preceding night and ran in this way: - -"MY DEAR MR. SHERLOCK HOLMES,--You really did it very well. You -took me in completely. Until after the alarm of fire, I had not a -suspicion. But then, when I found how I had betrayed myself, I -began to think. I had been warned against you months ago. I had -been told that if the King employed an agent it would certainly -be you. And your address had been given me. Yet, with all this, -you made me reveal what you wanted to know. Even after I became -suspicious, I found it hard to think evil of such a dear, kind -old clergyman. But, you know, I have been trained as an actress -myself. Male costume is nothing new to me. I often take advantage -of the freedom which it gives. I sent John, the coachman, to -watch you, ran up stairs, got into my walking-clothes, as I call -them, and came down just as you departed. - -"Well, I followed you to your door, and so made sure that I was -really an object of interest to the celebrated Mr. Sherlock -Holmes. Then I, rather imprudently, wished you good-night, and -started for the Temple to see my husband. - -"We both thought the best resource was flight, when pursued by -so formidable an antagonist; so you will find the nest empty when -you call to-morrow. As to the photograph, your client may rest in -peace. I love and am loved by a better man than he. The King may -do what he will without hindrance from one whom he has cruelly -wronged. I keep it only to safeguard myself, and to preserve a -weapon which will always secure me from any steps which he might -take in the future. I leave a photograph which he might care to -possess; and I remain, dear Mr. Sherlock Holmes, - - "Very truly yours, - "IRENE NORTON, ne ADLER." - -"What a woman--oh, what a woman!" cried the King of Bohemia, when -we had all three read this epistle. "Did I not tell you how quick -and resolute she was? Would she not have made an admirable queen? -Is it not a pity that she was not on my level?" - -"From what I have seen of the lady she seems indeed to be on a -very different level to your Majesty," said Holmes coldly. "I am -sorry that I have not been able to bring your Majesty's business -to a more successful conclusion." - -"On the contrary, my dear sir," cried the King; "nothing could be -more successful. I know that her word is inviolate. The -photograph is now as safe as if it were in the fire." - -"I am glad to hear your Majesty say so." - -"I am immensely indebted to you. Pray tell me in what way I can -reward you. This ring--" He slipped an emerald snake ring from -his finger and held it out upon the palm of his hand. - -"Your Majesty has something which I should value even more -highly," said Holmes. - -"You have but to name it." - -"This photograph!" - -The King stared at him in amazement. - -"Irene's photograph!" he cried. "Certainly, if you wish it." - -"I thank your Majesty. Then there is no more to be done in the -matter. I have the honour to wish you a very good-morning." He -bowed, and, turning away without observing the hand which the -King had stretched out to him, he set off in my company for his -chambers. - -And that was how a great scandal threatened to affect the kingdom -of Bohemia, and how the best plans of Mr. Sherlock Holmes were -beaten by a woman's wit. He used to make merry over the -cleverness of women, but I have not heard him do it of late. And -when he speaks of Irene Adler, or when he refers to her -photograph, it is always under the honourable title of the woman. - - - -ADVENTURE II. THE RED-HEADED LEAGUE - -I had called upon my friend, Mr. Sherlock Holmes, one day in the -autumn of last year and found him in deep conversation with a -very stout, florid-faced, elderly gentleman with fiery red hair. -With an apology for my intrusion, I was about to withdraw when -Holmes pulled me abruptly into the room and closed the door -behind me. - -"You could not possibly have come at a better time, my dear -Watson," he said cordially. - -"I was afraid that you were engaged." - -"So I am. Very much so." - -"Then I can wait in the next room." - -"Not at all. This gentleman, Mr. Wilson, has been my partner and -helper in many of my most successful cases, and I have no -doubt that he will be of the utmost use to me in yours also." - -The stout gentleman half rose from his chair and gave a bob of -greeting, with a quick little questioning glance from his small -fat-encircled eyes. - -"Try the settee," said Holmes, relapsing into his armchair and -putting his fingertips together, as was his custom when in -judicial moods. "I know, my dear Watson, that you share my love -of all that is bizarre and outside the conventions and humdrum -routine of everyday life. You have shown your relish for it by -the enthusiasm which has prompted you to chronicle, and, if you -will excuse my saying so, somewhat to embellish so many of my own -little adventures." - -"Your cases have indeed been of the greatest interest to me," I -observed. - -"You will remember that I remarked the other day, just before we -went into the very simple problem presented by Miss Mary -Sutherland, that for strange effects and extraordinary -combinations we must go to life itself, which is always far more -daring than any effort of the imagination." - -"A proposition which I took the liberty of doubting." - -"You did, Doctor, but none the less you must come round to my -view, for otherwise I shall keep on piling fact upon fact on you -until your reason breaks down under them and acknowledges me to -be right. Now, Mr. Jabez Wilson here has been good enough to call -upon me this morning, and to begin a narrative which promises to -be one of the most singular which I have listened to for some -time. You have heard me remark that the strangest and most unique -things are very often connected not with the larger but with the -smaller crimes, and occasionally, indeed, where there is room for -doubt whether any positive crime has been committed. As far as I -have heard it is impossible for me to say whether the present -case is an instance of crime or not, but the course of events is -certainly among the most singular that I have ever listened to. -Perhaps, Mr. Wilson, you would have the great kindness to -recommence your narrative. I ask you not merely because my friend -Dr. Watson has not heard the opening part but also because the -peculiar nature of the story makes me anxious to have every -possible detail from your lips. As a rule, when I have heard some -slight indication of the course of events, I am able to guide -myself by the thousands of other similar cases which occur to my -memory. In the present instance I am forced to admit that the -facts are, to the best of my belief, unique." - -The portly client puffed out his chest with an appearance of some -little pride and pulled a dirty and wrinkled newspaper from the -inside pocket of his greatcoat. As he glanced down the -advertisement column, with his head thrust forward and the paper -flattened out upon his knee, I took a good look at the man and -endeavoured, after the fashion of my companion, to read the -indications which might be presented by his dress or appearance. - -I did not gain very much, however, by my inspection. Our visitor -bore every mark of being an average commonplace British -tradesman, obese, pompous, and slow. He wore rather baggy grey -shepherd's check trousers, a not over-clean black frock-coat, -unbuttoned in the front, and a drab waistcoat with a heavy brassy -Albert chain, and a square pierced bit of metal dangling down as -an ornament. A frayed top-hat and a faded brown overcoat with a -wrinkled velvet collar lay upon a chair beside him. Altogether, -look as I would, there was nothing remarkable about the man save -his blazing red head, and the expression of extreme chagrin and -discontent upon his features. - -Sherlock Holmes' quick eye took in my occupation, and he shook -his head with a smile as he noticed my questioning glances. -"Beyond the obvious facts that he has at some time done manual -labour, that he takes snuff, that he is a Freemason, that he has -been in China, and that he has done a considerable amount of -writing lately, I can deduce nothing else." - -Mr. Jabez Wilson started up in his chair, with his forefinger -upon the paper, but his eyes upon my companion. - -"How, in the name of good-fortune, did you know all that, Mr. -Holmes?" he asked. "How did you know, for example, that I did -manual labour. It's as true as gospel, for I began as a ship's -carpenter." - -"Your hands, my dear sir. Your right hand is quite a size larger -than your left. You have worked with it, and the muscles are more -developed." - -"Well, the snuff, then, and the Freemasonry?" - -"I won't insult your intelligence by telling you how I read that, -especially as, rather against the strict rules of your order, you -use an arc-and-compass breastpin." - -"Ah, of course, I forgot that. But the writing?" - -"What else can be indicated by that right cuff so very shiny for -five inches, and the left one with the smooth patch near the -elbow where you rest it upon the desk?" - -"Well, but China?" - -"The fish that you have tattooed immediately above your right -wrist could only have been done in China. I have made a small -study of tattoo marks and have even contributed to the literature -of the subject. That trick of staining the fishes' scales of a -delicate pink is quite peculiar to China. When, in addition, I -see a Chinese coin hanging from your watch-chain, the matter -becomes even more simple." - -Mr. Jabez Wilson laughed heavily. "Well, I never!" said he. "I -thought at first that you had done something clever, but I see -that there was nothing in it, after all." - -"I begin to think, Watson," said Holmes, "that I make a mistake -in explaining. 'Omne ignotum pro magnifico,' you know, and my -poor little reputation, such as it is, will suffer shipwreck if I -am so candid. Can you not find the advertisement, Mr. Wilson?" - -"Yes, I have got it now," he answered with his thick red finger -planted halfway down the column. "Here it is. This is what began -it all. You just read it for yourself, sir." - -I took the paper from him and read as follows: - -"TO THE RED-HEADED LEAGUE: On account of the bequest of the late -Ezekiah Hopkins, of Lebanon, Pennsylvania, U. S. A., there is now -another vacancy open which entitles a member of the League to a -salary of 4 pounds a week for purely nominal services. All -red-headed men who are sound in body and mind and above the age -of twenty-one years, are eligible. Apply in person on Monday, at -eleven o'clock, to Duncan Ross, at the offices of the League, 7 -Pope's Court, Fleet Street." - -"What on earth does this mean?" I ejaculated after I had twice -read over the extraordinary announcement. - -Holmes chuckled and wriggled in his chair, as was his habit when -in high spirits. "It is a little off the beaten track, isn't it?" -said he. "And now, Mr. Wilson, off you go at scratch and tell us -all about yourself, your household, and the effect which this -advertisement had upon your fortunes. You will first make a note, -Doctor, of the paper and the date." - -"It is The Morning Chronicle of April 27, 1890. Just two months -ago." - -"Very good. Now, Mr. Wilson?" - -"Well, it is just as I have been telling you, Mr. Sherlock -Holmes," said Jabez Wilson, mopping his forehead; "I have a small -pawnbroker's business at Coburg Square, near the City. It's not a -very large affair, and of late years it has not done more than -just give me a living. I used to be able to keep two assistants, -but now I only keep one; and I would have a job to pay him but -that he is willing to come for half wages so as to learn the -business." - -"What is the name of this obliging youth?" asked Sherlock Holmes. - -"His name is Vincent Spaulding, and he's not such a youth, -either. It's hard to say his age. I should not wish a smarter -assistant, Mr. Holmes; and I know very well that he could better -himself and earn twice what I am able to give him. But, after -all, if he is satisfied, why should I put ideas in his head?" - -"Why, indeed? You seem most fortunate in having an employ who -comes under the full market price. It is not a common experience -among employers in this age. I don't know that your assistant is -not as remarkable as your advertisement." - -"Oh, he has his faults, too," said Mr. Wilson. "Never was such a -fellow for photography. Snapping away with a camera when he ought -to be improving his mind, and then diving down into the cellar -like a rabbit into its hole to develop his pictures. That is his -main fault, but on the whole he's a good worker. There's no vice -in him." - -"He is still with you, I presume?" - -"Yes, sir. He and a girl of fourteen, who does a bit of simple -cooking and keeps the place clean--that's all I have in the -house, for I am a widower and never had any family. We live very -quietly, sir, the three of us; and we keep a roof over our heads -and pay our debts, if we do nothing more. - -"The first thing that put us out was that advertisement. -Spaulding, he came down into the office just this day eight -weeks, with this very paper in his hand, and he says: - -"'I wish to the Lord, Mr. Wilson, that I was a red-headed man.' - -"'Why that?' I asks. - -"'Why,' says he, 'here's another vacancy on the League of the -Red-headed Men. It's worth quite a little fortune to any man who -gets it, and I understand that there are more vacancies than -there are men, so that the trustees are at their wits' end what -to do with the money. If my hair would only change colour, here's -a nice little crib all ready for me to step into.' - -"'Why, what is it, then?' I asked. You see, Mr. Holmes, I am a -very stay-at-home man, and as my business came to me instead of -my having to go to it, I was often weeks on end without putting -my foot over the door-mat. In that way I didn't know much of what -was going on outside, and I was always glad of a bit of news. - -"'Have you never heard of the League of the Red-headed Men?' he -asked with his eyes open. - -"'Never.' - -"'Why, I wonder at that, for you are eligible yourself for one -of the vacancies.' - -"'And what are they worth?' I asked. - -"'Oh, merely a couple of hundred a year, but the work is slight, -and it need not interfere very much with one's other -occupations.' - -"Well, you can easily think that that made me prick up my ears, -for the business has not been over-good for some years, and an -extra couple of hundred would have been very handy. - -"'Tell me all about it,' said I. - -"'Well,' said he, showing me the advertisement, 'you can see for -yourself that the League has a vacancy, and there is the address -where you should apply for particulars. As far as I can make out, -the League was founded by an American millionaire, Ezekiah -Hopkins, who was very peculiar in his ways. He was himself -red-headed, and he had a great sympathy for all red-headed men; -so when he died it was found that he had left his enormous -fortune in the hands of trustees, with instructions to apply the -interest to the providing of easy berths to men whose hair is of -that colour. From all I hear it is splendid pay and very little to -do.' - -"'But,' said I, 'there would be millions of red-headed men who -would apply.' - -"'Not so many as you might think,' he answered. 'You see it is -really confined to Londoners, and to grown men. This American had -started from London when he was young, and he wanted to do the -old town a good turn. Then, again, I have heard it is no use your -applying if your hair is light red, or dark red, or anything but -real bright, blazing, fiery red. Now, if you cared to apply, Mr. -Wilson, you would just walk in; but perhaps it would hardly be -worth your while to put yourself out of the way for the sake of a -few hundred pounds.' - -"Now, it is a fact, gentlemen, as you may see for yourselves, -that my hair is of a very full and rich tint, so that it seemed -to me that if there was to be any competition in the matter I -stood as good a chance as any man that I had ever met. Vincent -Spaulding seemed to know so much about it that I thought he might -prove useful, so I just ordered him to put up the shutters for -the day and to come right away with me. He was very willing to -have a holiday, so we shut the business up and started off for -the address that was given us in the advertisement. - -"I never hope to see such a sight as that again, Mr. Holmes. From -north, south, east, and west every man who had a shade of red in -his hair had tramped into the city to answer the advertisement. -Fleet Street was choked with red-headed folk, and Pope's Court -looked like a coster's orange barrow. I should not have thought -there were so many in the whole country as were brought together -by that single advertisement. Every shade of colour they -were--straw, lemon, orange, brick, Irish-setter, liver, clay; -but, as Spaulding said, there were not many who had the real -vivid flame-coloured tint. When I saw how many were waiting, I -would have given it up in despair; but Spaulding would not hear -of it. How he did it I could not imagine, but he pushed and -pulled and butted until he got me through the crowd, and right up -to the steps which led to the office. There was a double stream -upon the stair, some going up in hope, and some coming back -dejected; but we wedged in as well as we could and soon found -ourselves in the office." - -"Your experience has been a most entertaining one," remarked -Holmes as his client paused and refreshed his memory with a huge -pinch of snuff. "Pray continue your very interesting statement." - -"There was nothing in the office but a couple of wooden chairs -and a deal table, behind which sat a small man with a head that -was even redder than mine. He said a few words to each candidate -as he came up, and then he always managed to find some fault in -them which would disqualify them. Getting a vacancy did not seem -to be such a very easy matter, after all. However, when our turn -came the little man was much more favourable to me than to any of -the others, and he closed the door as we entered, so that he -might have a private word with us. - -"'This is Mr. Jabez Wilson,' said my assistant, 'and he is -willing to fill a vacancy in the League.' - -"'And he is admirably suited for it,' the other answered. 'He has -every requirement. I cannot recall when I have seen anything so -fine.' He took a step backward, cocked his head on one side, and -gazed at my hair until I felt quite bashful. Then suddenly he -plunged forward, wrung my hand, and congratulated me warmly on my -success. - -"'It would be injustice to hesitate,' said he. 'You will, -however, I am sure, excuse me for taking an obvious precaution.' -With that he seized my hair in both his hands, and tugged until I -yelled with the pain. 'There is water in your eyes,' said he as -he released me. 'I perceive that all is as it should be. But we -have to be careful, for we have twice been deceived by wigs and -once by paint. I could tell you tales of cobbler's wax which -would disgust you with human nature.' He stepped over to the -window and shouted through it at the top of his voice that the -vacancy was filled. A groan of disappointment came up from below, -and the folk all trooped away in different directions until there -was not a red-head to be seen except my own and that of the -manager. - -"'My name,' said he, 'is Mr. Duncan Ross, and I am myself one of -the pensioners upon the fund left by our noble benefactor. Are -you a married man, Mr. Wilson? Have you a family?' - -"I answered that I had not. - -"His face fell immediately. - -"'Dear me!' he said gravely, 'that is very serious indeed! I am -sorry to hear you say that. The fund was, of course, for the -propagation and spread of the red-heads as well as for their -maintenance. It is exceedingly unfortunate that you should be a -bachelor.' - -"My face lengthened at this, Mr. Holmes, for I thought that I was -not to have the vacancy after all; but after thinking it over for -a few minutes he said that it would be all right. - -"'In the case of another,' said he, 'the objection might be -fatal, but we must stretch a point in favour of a man with such a -head of hair as yours. When shall you be able to enter upon your -new duties?' - -"'Well, it is a little awkward, for I have a business already,' -said I. - -"'Oh, never mind about that, Mr. Wilson!' said Vincent Spaulding. -'I should be able to look after that for you.' - -"'What would be the hours?' I asked. - -"'Ten to two.' - -"Now a pawnbroker's business is mostly done of an evening, Mr. -Holmes, especially Thursday and Friday evening, which is just -before pay-day; so it would suit me very well to earn a little in -the mornings. Besides, I knew that my assistant was a good man, -and that he would see to anything that turned up. - -"'That would suit me very well,' said I. 'And the pay?' - -"'Is 4 pounds a week.' - -"'And the work?' - -"'Is purely nominal.' - -"'What do you call purely nominal?' - -"'Well, you have to be in the office, or at least in the -building, the whole time. If you leave, you forfeit your whole -position forever. The will is very clear upon that point. You -don't comply with the conditions if you budge from the office -during that time.' - -"'It's only four hours a day, and I should not think of leaving,' -said I. - -"'No excuse will avail,' said Mr. Duncan Ross; 'neither sickness -nor business nor anything else. There you must stay, or you lose -your billet.' - -"'And the work?' - -"'Is to copy out the "Encyclopaedia Britannica." There is the first -volume of it in that press. You must find your own ink, pens, and -blotting-paper, but we provide this table and chair. Will you be -ready to-morrow?' - -"'Certainly,' I answered. - -"'Then, good-bye, Mr. Jabez Wilson, and let me congratulate you -once more on the important position which you have been fortunate -enough to gain.' He bowed me out of the room and I went home with -my assistant, hardly knowing what to say or do, I was so pleased -at my own good fortune. - -"Well, I thought over the matter all day, and by evening I was in -low spirits again; for I had quite persuaded myself that the -whole affair must be some great hoax or fraud, though what its -object might be I could not imagine. It seemed altogether past -belief that anyone could make such a will, or that they would pay -such a sum for doing anything so simple as copying out the -'Encyclopaedia Britannica.' Vincent Spaulding did what he could to -cheer me up, but by bedtime I had reasoned myself out of the -whole thing. However, in the morning I determined to have a look -at it anyhow, so I bought a penny bottle of ink, and with a -quill-pen, and seven sheets of foolscap paper, I started off for -Pope's Court. - -"Well, to my surprise and delight, everything was as right as -possible. The table was set out ready for me, and Mr. Duncan Ross -was there to see that I got fairly to work. He started me off -upon the letter A, and then he left me; but he would drop in from -time to time to see that all was right with me. At two o'clock he -bade me good-day, complimented me upon the amount that I had -written, and locked the door of the office after me. - -"This went on day after day, Mr. Holmes, and on Saturday the -manager came in and planked down four golden sovereigns for my -week's work. It was the same next week, and the same the week -after. Every morning I was there at ten, and every afternoon I -left at two. By degrees Mr. Duncan Ross took to coming in only -once of a morning, and then, after a time, he did not come in at -all. Still, of course, I never dared to leave the room for an -instant, for I was not sure when he might come, and the billet -was such a good one, and suited me so well, that I would not risk -the loss of it. - -"Eight weeks passed away like this, and I had written about -Abbots and Archery and Armour and Architecture and Attica, and -hoped with diligence that I might get on to the B's before very -long. It cost me something in foolscap, and I had pretty nearly -filled a shelf with my writings. And then suddenly the whole -business came to an end." - -"To an end?" - -"Yes, sir. And no later than this morning. I went to my work as -usual at ten o'clock, but the door was shut and locked, with a -little square of cardboard hammered on to the middle of the -panel with a tack. Here it is, and you can read for yourself." - -He held up a piece of white cardboard about the size of a sheet -of note-paper. It read in this fashion: - - THE RED-HEADED LEAGUE - - IS - - DISSOLVED. - - October 9, 1890. - -Sherlock Holmes and I surveyed this curt announcement and the -rueful face behind it, until the comical side of the affair so -completely overtopped every other consideration that we both -burst out into a roar of laughter. - -"I cannot see that there is anything very funny," cried our -client, flushing up to the roots of his flaming head. "If you can -do nothing better than laugh at me, I can go elsewhere." - -"No, no," cried Holmes, shoving him back into the chair from -which he had half risen. "I really wouldn't miss your case for -the world. It is most refreshingly unusual. But there is, if you -will excuse my saying so, something just a little funny about it. -Pray what steps did you take when you found the card upon the -door?" - -"I was staggered, sir. I did not know what to do. Then I called -at the offices round, but none of them seemed to know anything -about it. Finally, I went to the landlord, who is an accountant -living on the ground-floor, and I asked him if he could tell me -what had become of the Red-headed League. He said that he had -never heard of any such body. Then I asked him who Mr. Duncan -Ross was. He answered that the name was new to him. - -"'Well,' said I, 'the gentleman at No. 4.' - -"'What, the red-headed man?' - -"'Yes.' - -"'Oh,' said he, 'his name was William Morris. He was a solicitor -and was using my room as a temporary convenience until his new -premises were ready. He moved out yesterday.' - -"'Where could I find him?' - -"'Oh, at his new offices. He did tell me the address. Yes, 17 -King Edward Street, near St. Paul's.' - -"I started off, Mr. Holmes, but when I got to that address it was -a manufactory of artificial knee-caps, and no one in it had ever -heard of either Mr. William Morris or Mr. Duncan Ross." - -"And what did you do then?" asked Holmes. - -"I went home to Saxe-Coburg Square, and I took the advice of my -assistant. But he could not help me in any way. He could only say -that if I waited I should hear by post. But that was not quite -good enough, Mr. Holmes. I did not wish to lose such a place -without a struggle, so, as I had heard that you were good enough -to give advice to poor folk who were in need of it, I came right -away to you." - -"And you did very wisely," said Holmes. "Your case is an -exceedingly remarkable one, and I shall be happy to look into it. -From what you have told me I think that it is possible that -graver issues hang from it than might at first sight appear." - -"Grave enough!" said Mr. Jabez Wilson. "Why, I have lost four -pound a week." - -"As far as you are personally concerned," remarked Holmes, "I do -not see that you have any grievance against this extraordinary -league. On the contrary, you are, as I understand, richer by some -30 pounds, to say nothing of the minute knowledge which you have -gained on every subject which comes under the letter A. You have -lost nothing by them." - -"No, sir. But I want to find out about them, and who they are, -and what their object was in playing this prank--if it was a -prank--upon me. It was a pretty expensive joke for them, for it -cost them two and thirty pounds." - -"We shall endeavour to clear up these points for you. And, first, -one or two questions, Mr. Wilson. This assistant of yours who -first called your attention to the advertisement--how long had he -been with you?" - -"About a month then." - -"How did he come?" - -"In answer to an advertisement." - -"Was he the only applicant?" - -"No, I had a dozen." - -"Why did you pick him?" - -"Because he was handy and would come cheap." - -"At half-wages, in fact." - -"Yes." - -"What is he like, this Vincent Spaulding?" - -"Small, stout-built, very quick in his ways, no hair on his face, -though he's not short of thirty. Has a white splash of acid upon -his forehead." - -Holmes sat up in his chair in considerable excitement. "I thought -as much," said he. "Have you ever observed that his ears are -pierced for earrings?" - -"Yes, sir. He told me that a gipsy had done it for him when he -was a lad." - -"Hum!" said Holmes, sinking back in deep thought. "He is still -with you?" - -"Oh, yes, sir; I have only just left him." - -"And has your business been attended to in your absence?" - -"Nothing to complain of, sir. There's never very much to do of a -morning." - -"That will do, Mr. Wilson. I shall be happy to give you an -opinion upon the subject in the course of a day or two. To-day is -Saturday, and I hope that by Monday we may come to a conclusion." - -"Well, Watson," said Holmes when our visitor had left us, "what -do you make of it all?" - -"I make nothing of it," I answered frankly. "It is a most -mysterious business." - -"As a rule," said Holmes, "the more bizarre a thing is the less -mysterious it proves to be. It is your commonplace, featureless -crimes which are really puzzling, just as a commonplace face is -the most difficult to identify. But I must be prompt over this -matter." - -"What are you going to do, then?" I asked. - -"To smoke," he answered. "It is quite a three pipe problem, and I -beg that you won't speak to me for fifty minutes." He curled -himself up in his chair, with his thin knees drawn up to his -hawk-like nose, and there he sat with his eyes closed and his -black clay pipe thrusting out like the bill of some strange bird. -I had come to the conclusion that he had dropped asleep, and -indeed was nodding myself, when he suddenly sprang out of his -chair with the gesture of a man who has made up his mind and put -his pipe down upon the mantelpiece. - -"Sarasate plays at the St. James's Hall this afternoon," he -remarked. "What do you think, Watson? Could your patients spare -you for a few hours?" - -"I have nothing to do to-day. My practice is never very -absorbing." - -"Then put on your hat and come. I am going through the City -first, and we can have some lunch on the way. I observe that -there is a good deal of German music on the programme, which is -rather more to my taste than Italian or French. It is -introspective, and I want to introspect. Come along!" - -We travelled by the Underground as far as Aldersgate; and a short -walk took us to Saxe-Coburg Square, the scene of the singular -story which we had listened to in the morning. It was a poky, -little, shabby-genteel place, where four lines of dingy -two-storied brick houses looked out into a small railed-in -enclosure, where a lawn of weedy grass and a few clumps of faded -laurel-bushes made a hard fight against a smoke-laden and -uncongenial atmosphere. Three gilt balls and a brown board with -"JABEZ WILSON" in white letters, upon a corner house, announced -the place where our red-headed client carried on his business. -Sherlock Holmes stopped in front of it with his head on one side -and looked it all over, with his eyes shining brightly between -puckered lids. Then he walked slowly up the street, and then down -again to the corner, still looking keenly at the houses. Finally -he returned to the pawnbroker's, and, having thumped vigorously -upon the pavement with his stick two or three times, he went up -to the door and knocked. It was instantly opened by a -bright-looking, clean-shaven young fellow, who asked him to step -in. - -"Thank you," said Holmes, "I only wished to ask you how you would -go from here to the Strand." - -"Third right, fourth left," answered the assistant promptly, -closing the door. - -"Smart fellow, that," observed Holmes as we walked away. "He is, -in my judgment, the fourth smartest man in London, and for daring -I am not sure that he has not a claim to be third. I have known -something of him before." - -"Evidently," said I, "Mr. Wilson's assistant counts for a good -deal in this mystery of the Red-headed League. I am sure that you -inquired your way merely in order that you might see him." - -"Not him." - -"What then?" - -"The knees of his trousers." - -"And what did you see?" - -"What I expected to see." - -"Why did you beat the pavement?" - -"My dear doctor, this is a time for observation, not for talk. We -are spies in an enemy's country. We know something of Saxe-Coburg -Square. Let us now explore the parts which lie behind it." - -The road in which we found ourselves as we turned round the -corner from the retired Saxe-Coburg Square presented as great a -contrast to it as the front of a picture does to the back. It was -one of the main arteries which conveyed the traffic of the City -to the north and west. The roadway was blocked with the immense -stream of commerce flowing in a double tide inward and outward, -while the footpaths were black with the hurrying swarm of -pedestrians. It was difficult to realise as we looked at the line -of fine shops and stately business premises that they really -abutted on the other side upon the faded and stagnant square -which we had just quitted. - -"Let me see," said Holmes, standing at the corner and glancing -along the line, "I should like just to remember the order of the -houses here. It is a hobby of mine to have an exact knowledge of -London. There is Mortimer's, the tobacconist, the little -newspaper shop, the Coburg branch of the City and Suburban Bank, -the Vegetarian Restaurant, and McFarlane's carriage-building -depot. That carries us right on to the other block. And now, -Doctor, we've done our work, so it's time we had some play. A -sandwich and a cup of coffee, and then off to violin-land, where -all is sweetness and delicacy and harmony, and there are no -red-headed clients to vex us with their conundrums." - -My friend was an enthusiastic musician, being himself not only a -very capable performer but a composer of no ordinary merit. All -the afternoon he sat in the stalls wrapped in the most perfect -happiness, gently waving his long, thin fingers in time to the -music, while his gently smiling face and his languid, dreamy eyes -were as unlike those of Holmes the sleuth-hound, Holmes the -relentless, keen-witted, ready-handed criminal agent, as it was -possible to conceive. In his singular character the dual nature -alternately asserted itself, and his extreme exactness and -astuteness represented, as I have often thought, the reaction -against the poetic and contemplative mood which occasionally -predominated in him. The swing of his nature took him from -extreme languor to devouring energy; and, as I knew well, he was -never so truly formidable as when, for days on end, he had been -lounging in his armchair amid his improvisations and his -black-letter editions. Then it was that the lust of the chase -would suddenly come upon him, and that his brilliant reasoning -power would rise to the level of intuition, until those who were -unacquainted with his methods would look askance at him as on a -man whose knowledge was not that of other mortals. When I saw him -that afternoon so enwrapped in the music at St. James's Hall I -felt that an evil time might be coming upon those whom he had set -himself to hunt down. - -"You want to go home, no doubt, Doctor," he remarked as we -emerged. - -"Yes, it would be as well." - -"And I have some business to do which will take some hours. This -business at Coburg Square is serious." - -"Why serious?" - -"A considerable crime is in contemplation. I have every reason to -believe that we shall be in time to stop it. But to-day being -Saturday rather complicates matters. I shall want your help -to-night." - -"At what time?" - -"Ten will be early enough." - -"I shall be at Baker Street at ten." - -"Very well. And, I say, Doctor, there may be some little danger, -so kindly put your army revolver in your pocket." He waved his -hand, turned on his heel, and disappeared in an instant among the -crowd. - -I trust that I am not more dense than my neighbours, but I was -always oppressed with a sense of my own stupidity in my dealings -with Sherlock Holmes. Here I had heard what he had heard, I had -seen what he had seen, and yet from his words it was evident that -he saw clearly not only what had happened but what was about to -happen, while to me the whole business was still confused and -grotesque. As I drove home to my house in Kensington I thought -over it all, from the extraordinary story of the red-headed -copier of the "Encyclopaedia" down to the visit to Saxe-Coburg -Square, and the ominous words with which he had parted from me. -What was this nocturnal expedition, and why should I go armed? -Where were we going, and what were we to do? I had the hint from -Holmes that this smooth-faced pawnbroker's assistant was a -formidable man--a man who might play a deep game. I tried to -puzzle it out, but gave it up in despair and set the matter aside -until night should bring an explanation. - -It was a quarter-past nine when I started from home and made my -way across the Park, and so through Oxford Street to Baker -Street. Two hansoms were standing at the door, and as I entered -the passage I heard the sound of voices from above. On entering -his room I found Holmes in animated conversation with two men, -one of whom I recognised as Peter Jones, the official police -agent, while the other was a long, thin, sad-faced man, with a -very shiny hat and oppressively respectable frock-coat. - -"Ha! Our party is complete," said Holmes, buttoning up his -pea-jacket and taking his heavy hunting crop from the rack. -"Watson, I think you know Mr. Jones, of Scotland Yard? Let me -introduce you to Mr. Merryweather, who is to be our companion in -to-night's adventure." - -"We're hunting in couples again, Doctor, you see," said Jones in -his consequential way. "Our friend here is a wonderful man for -starting a chase. All he wants is an old dog to help him to do -the running down." - -"I hope a wild goose may not prove to be the end of our chase," -observed Mr. Merryweather gloomily. - -"You may place considerable confidence in Mr. Holmes, sir," said -the police agent loftily. "He has his own little methods, which -are, if he won't mind my saying so, just a little too theoretical -and fantastic, but he has the makings of a detective in him. It -is not too much to say that once or twice, as in that business of -the Sholto murder and the Agra treasure, he has been more nearly -correct than the official force." - -"Oh, if you say so, Mr. Jones, it is all right," said the -stranger with deference. "Still, I confess that I miss my rubber. -It is the first Saturday night for seven-and-twenty years that I -have not had my rubber." - -"I think you will find," said Sherlock Holmes, "that you will -play for a higher stake to-night than you have ever done yet, and -that the play will be more exciting. For you, Mr. Merryweather, -the stake will be some 30,000 pounds; and for you, Jones, it will -be the man upon whom you wish to lay your hands." - -"John Clay, the murderer, thief, smasher, and forger. He's a -young man, Mr. Merryweather, but he is at the head of his -profession, and I would rather have my bracelets on him than on -any criminal in London. He's a remarkable man, is young John -Clay. His grandfather was a royal duke, and he himself has been -to Eton and Oxford. His brain is as cunning as his fingers, and -though we meet signs of him at every turn, we never know where to -find the man himself. He'll crack a crib in Scotland one week, -and be raising money to build an orphanage in Cornwall the next. -I've been on his track for years and have never set eyes on him -yet." - -"I hope that I may have the pleasure of introducing you to-night. -I've had one or two little turns also with Mr. John Clay, and I -agree with you that he is at the head of his profession. It is -past ten, however, and quite time that we started. If you two -will take the first hansom, Watson and I will follow in the -second." - -Sherlock Holmes was not very communicative during the long drive -and lay back in the cab humming the tunes which he had heard in -the afternoon. We rattled through an endless labyrinth of gas-lit -streets until we emerged into Farrington Street. - -"We are close there now," my friend remarked. "This fellow -Merryweather is a bank director, and personally interested in the -matter. I thought it as well to have Jones with us also. He is -not a bad fellow, though an absolute imbecile in his profession. -He has one positive virtue. He is as brave as a bulldog and as -tenacious as a lobster if he gets his claws upon anyone. Here we -are, and they are waiting for us." - -We had reached the same crowded thoroughfare in which we had -found ourselves in the morning. Our cabs were dismissed, and, -following the guidance of Mr. Merryweather, we passed down a -narrow passage and through a side door, which he opened for us. -Within there was a small corridor, which ended in a very massive -iron gate. This also was opened, and led down a flight of winding -stone steps, which terminated at another formidable gate. Mr. -Merryweather stopped to light a lantern, and then conducted us -down a dark, earth-smelling passage, and so, after opening a -third door, into a huge vault or cellar, which was piled all -round with crates and massive boxes. - -"You are not very vulnerable from above," Holmes remarked as he -held up the lantern and gazed about him. - -"Nor from below," said Mr. Merryweather, striking his stick upon -the flags which lined the floor. "Why, dear me, it sounds quite -hollow!" he remarked, looking up in surprise. - -"I must really ask you to be a little more quiet!" said Holmes -severely. "You have already imperilled the whole success of our -expedition. Might I beg that you would have the goodness to sit -down upon one of those boxes, and not to interfere?" - -The solemn Mr. Merryweather perched himself upon a crate, with a -very injured expression upon his face, while Holmes fell upon his -knees upon the floor and, with the lantern and a magnifying lens, -began to examine minutely the cracks between the stones. A few -seconds sufficed to satisfy him, for he sprang to his feet again -and put his glass in his pocket. - -"We have at least an hour before us," he remarked, "for they can -hardly take any steps until the good pawnbroker is safely in bed. -Then they will not lose a minute, for the sooner they do their -work the longer time they will have for their escape. We are at -present, Doctor--as no doubt you have divined--in the cellar of -the City branch of one of the principal London banks. Mr. -Merryweather is the chairman of directors, and he will explain to -you that there are reasons why the more daring criminals of -London should take a considerable interest in this cellar at -present." - -"It is our French gold," whispered the director. "We have had -several warnings that an attempt might be made upon it." - -"Your French gold?" - -"Yes. We had occasion some months ago to strengthen our resources -and borrowed for that purpose 30,000 napoleons from the Bank of -France. It has become known that we have never had occasion to -unpack the money, and that it is still lying in our cellar. The -crate upon which I sit contains 2,000 napoleons packed between -layers of lead foil. Our reserve of bullion is much larger at -present than is usually kept in a single branch office, and the -directors have had misgivings upon the subject." - -"Which were very well justified," observed Holmes. "And now it is -time that we arranged our little plans. I expect that within an -hour matters will come to a head. In the meantime Mr. -Merryweather, we must put the screen over that dark lantern." - -"And sit in the dark?" - -"I am afraid so. I had brought a pack of cards in my pocket, and -I thought that, as we were a partie carre, you might have your -rubber after all. But I see that the enemy's preparations have -gone so far that we cannot risk the presence of a light. And, -first of all, we must choose our positions. These are daring men, -and though we shall take them at a disadvantage, they may do us -some harm unless we are careful. I shall stand behind this crate, -and do you conceal yourselves behind those. Then, when I flash a -light upon them, close in swiftly. If they fire, Watson, have no -compunction about shooting them down." - -I placed my revolver, cocked, upon the top of the wooden case -behind which I crouched. Holmes shot the slide across the front -of his lantern and left us in pitch darkness--such an absolute -darkness as I have never before experienced. The smell of hot -metal remained to assure us that the light was still there, ready -to flash out at a moment's notice. To me, with my nerves worked -up to a pitch of expectancy, there was something depressing and -subduing in the sudden gloom, and in the cold dank air of the -vault. - -"They have but one retreat," whispered Holmes. "That is back -through the house into Saxe-Coburg Square. I hope that you have -done what I asked you, Jones?" - -"I have an inspector and two officers waiting at the front door." - -"Then we have stopped all the holes. And now we must be silent -and wait." - -What a time it seemed! From comparing notes afterwards it was but -an hour and a quarter, yet it appeared to me that the night must -have almost gone and the dawn be breaking above us. My limbs -were weary and stiff, for I feared to change my position; yet my -nerves were worked up to the highest pitch of tension, and my -hearing was so acute that I could not only hear the gentle -breathing of my companions, but I could distinguish the deeper, -heavier in-breath of the bulky Jones from the thin, sighing note -of the bank director. From my position I could look over the case -in the direction of the floor. Suddenly my eyes caught the glint -of a light. - -At first it was but a lurid spark upon the stone pavement. Then -it lengthened out until it became a yellow line, and then, -without any warning or sound, a gash seemed to open and a hand -appeared, a white, almost womanly hand, which felt about in the -centre of the little area of light. For a minute or more the -hand, with its writhing fingers, protruded out of the floor. Then -it was withdrawn as suddenly as it appeared, and all was dark -again save the single lurid spark which marked a chink between -the stones. - -Its disappearance, however, was but momentary. With a rending, -tearing sound, one of the broad, white stones turned over upon -its side and left a square, gaping hole, through which streamed -the light of a lantern. Over the edge there peeped a clean-cut, -boyish face, which looked keenly about it, and then, with a hand -on either side of the aperture, drew itself shoulder-high and -waist-high, until one knee rested upon the edge. In another -instant he stood at the side of the hole and was hauling after -him a companion, lithe and small like himself, with a pale face -and a shock of very red hair. - -"It's all clear," he whispered. "Have you the chisel and the -bags? Great Scott! Jump, Archie, jump, and I'll swing for it!" - -Sherlock Holmes had sprung out and seized the intruder by the -collar. The other dived down the hole, and I heard the sound of -rending cloth as Jones clutched at his skirts. The light flashed -upon the barrel of a revolver, but Holmes' hunting crop came -down on the man's wrist, and the pistol clinked upon the stone -floor. - -"It's no use, John Clay," said Holmes blandly. "You have no -chance at all." - -"So I see," the other answered with the utmost coolness. "I fancy -that my pal is all right, though I see you have got his -coat-tails." - -"There are three men waiting for him at the door," said Holmes. - -"Oh, indeed! You seem to have done the thing very completely. I -must compliment you." - -"And I you," Holmes answered. "Your red-headed idea was very new -and effective." - -"You'll see your pal again presently," said Jones. "He's quicker -at climbing down holes than I am. Just hold out while I fix the -derbies." - -"I beg that you will not touch me with your filthy hands," -remarked our prisoner as the handcuffs clattered upon his wrists. -"You may not be aware that I have royal blood in my veins. Have -the goodness, also, when you address me always to say 'sir' and -'please.'" - -"All right," said Jones with a stare and a snigger. "Well, would -you please, sir, march upstairs, where we can get a cab to carry -your Highness to the police-station?" - -"That is better," said John Clay serenely. He made a sweeping bow -to the three of us and walked quietly off in the custody of the -detective. - -"Really, Mr. Holmes," said Mr. Merryweather as we followed them -from the cellar, "I do not know how the bank can thank you or -repay you. There is no doubt that you have detected and defeated -in the most complete manner one of the most determined attempts -at bank robbery that have ever come within my experience." - -"I have had one or two little scores of my own to settle with Mr. -John Clay," said Holmes. "I have been at some small expense over -this matter, which I shall expect the bank to refund, but beyond -that I am amply repaid by having had an experience which is in -many ways unique, and by hearing the very remarkable narrative of -the Red-headed League." - - -"You see, Watson," he explained in the early hours of the morning -as we sat over a glass of whisky and soda in Baker Street, "it -was perfectly obvious from the first that the only possible -object of this rather fantastic business of the advertisement of -the League, and the copying of the 'Encyclopaedia,' must be to get -this not over-bright pawnbroker out of the way for a number of -hours every day. It was a curious way of managing it, but, -really, it would be difficult to suggest a better. The method was -no doubt suggested to Clay's ingenious mind by the colour of his -accomplice's hair. The 4 pounds a week was a lure which must draw -him, and what was it to them, who were playing for thousands? -They put in the advertisement, one rogue has the temporary -office, the other rogue incites the man to apply for it, and -together they manage to secure his absence every morning in the -week. From the time that I heard of the assistant having come for -half wages, it was obvious to me that he had some strong motive -for securing the situation." - -"But how could you guess what the motive was?" - -"Had there been women in the house, I should have suspected a -mere vulgar intrigue. That, however, was out of the question. The -man's business was a small one, and there was nothing in his -house which could account for such elaborate preparations, and -such an expenditure as they were at. It must, then, be something -out of the house. What could it be? I thought of the assistant's -fondness for photography, and his trick of vanishing into the -cellar. The cellar! There was the end of this tangled clue. Then -I made inquiries as to this mysterious assistant and found that I -had to deal with one of the coolest and most daring criminals in -London. He was doing something in the cellar--something which -took many hours a day for months on end. What could it be, once -more? I could think of nothing save that he was running a tunnel -to some other building. - -"So far I had got when we went to visit the scene of action. I -surprised you by beating upon the pavement with my stick. I was -ascertaining whether the cellar stretched out in front or behind. -It was not in front. Then I rang the bell, and, as I hoped, the -assistant answered it. We have had some skirmishes, but we had -never set eyes upon each other before. I hardly looked at his -face. His knees were what I wished to see. You must yourself have -remarked how worn, wrinkled, and stained they were. They spoke of -those hours of burrowing. The only remaining point was what they -were burrowing for. I walked round the corner, saw the City and -Suburban Bank abutted on our friend's premises, and felt that I -had solved my problem. When you drove home after the concert I -called upon Scotland Yard and upon the chairman of the bank -directors, with the result that you have seen." - -"And how could you tell that they would make their attempt -to-night?" I asked. - -"Well, when they closed their League offices that was a sign that -they cared no longer about Mr. Jabez Wilson's presence--in other -words, that they had completed their tunnel. But it was essential -that they should use it soon, as it might be discovered, or the -bullion might be removed. Saturday would suit them better than -any other day, as it would give them two days for their escape. -For all these reasons I expected them to come to-night." - -"You reasoned it out beautifully," I exclaimed in unfeigned -admiration. "It is so long a chain, and yet every link rings -true." - -"It saved me from ennui," he answered, yawning. "Alas! I already -feel it closing in upon me. My life is spent in one long effort -to escape from the commonplaces of existence. These little -problems help me to do so." - -"And you are a benefactor of the race," said I. - -He shrugged his shoulders. "Well, perhaps, after all, it is of -some little use," he remarked. "'L'homme c'est rien--l'oeuvre -c'est tout,' as Gustave Flaubert wrote to George Sand." - - - -ADVENTURE III. A CASE OF IDENTITY - -"My dear fellow," said Sherlock Holmes as we sat on either side -of the fire in his lodgings at Baker Street, "life is infinitely -stranger than anything which the mind of man could invent. We -would not dare to conceive the things which are really mere -commonplaces of existence. If we could fly out of that window -hand in hand, hover over this great city, gently remove the -roofs, and peep in at the queer things which are going on, the -strange coincidences, the plannings, the cross-purposes, the -wonderful chains of events, working through generations, and -leading to the most outr results, it would make all fiction with -its conventionalities and foreseen conclusions most stale and -unprofitable." - -"And yet I am not convinced of it," I answered. "The cases which -come to light in the papers are, as a rule, bald enough, and -vulgar enough. We have in our police reports realism pushed to -its extreme limits, and yet the result is, it must be confessed, -neither fascinating nor artistic." - -"A certain selection and discretion must be used in producing a -realistic effect," remarked Holmes. "This is wanting in the -police report, where more stress is laid, perhaps, upon the -platitudes of the magistrate than upon the details, which to an -observer contain the vital essence of the whole matter. Depend -upon it, there is nothing so unnatural as the commonplace." - -I smiled and shook my head. "I can quite understand your thinking -so," I said. "Of course, in your position of unofficial adviser -and helper to everybody who is absolutely puzzled, throughout -three continents, you are brought in contact with all that is -strange and bizarre. But here"--I picked up the morning paper -from the ground--"let us put it to a practical test. Here is the -first heading upon which I come. 'A husband's cruelty to his -wife.' There is half a column of print, but I know without -reading it that it is all perfectly familiar to me. There is, of -course, the other woman, the drink, the push, the blow, the -bruise, the sympathetic sister or landlady. The crudest of -writers could invent nothing more crude." - -"Indeed, your example is an unfortunate one for your argument," -said Holmes, taking the paper and glancing his eye down it. "This -is the Dundas separation case, and, as it happens, I was engaged -in clearing up some small points in connection with it. The -husband was a teetotaler, there was no other woman, and the -conduct complained of was that he had drifted into the habit of -winding up every meal by taking out his false teeth and hurling -them at his wife, which, you will allow, is not an action likely -to occur to the imagination of the average story-teller. Take a -pinch of snuff, Doctor, and acknowledge that I have scored over -you in your example." - -He held out his snuffbox of old gold, with a great amethyst in -the centre of the lid. Its splendour was in such contrast to his -homely ways and simple life that I could not help commenting upon -it. - -"Ah," said he, "I forgot that I had not seen you for some weeks. -It is a little souvenir from the King of Bohemia in return for my -assistance in the case of the Irene Adler papers." - -"And the ring?" I asked, glancing at a remarkable brilliant which -sparkled upon his finger. - -"It was from the reigning family of Holland, though the matter in -which I served them was of such delicacy that I cannot confide it -even to you, who have been good enough to chronicle one or two of -my little problems." - -"And have you any on hand just now?" I asked with interest. - -"Some ten or twelve, but none which present any feature of -interest. They are important, you understand, without being -interesting. Indeed, I have found that it is usually in -unimportant matters that there is a field for the observation, -and for the quick analysis of cause and effect which gives the -charm to an investigation. The larger crimes are apt to be the -simpler, for the bigger the crime the more obvious, as a rule, is -the motive. In these cases, save for one rather intricate matter -which has been referred to me from Marseilles, there is nothing -which presents any features of interest. It is possible, however, -that I may have something better before very many minutes are -over, for this is one of my clients, or I am much mistaken." - -He had risen from his chair and was standing between the parted -blinds gazing down into the dull neutral-tinted London street. -Looking over his shoulder, I saw that on the pavement opposite -there stood a large woman with a heavy fur boa round her neck, -and a large curling red feather in a broad-brimmed hat which was -tilted in a coquettish Duchess of Devonshire fashion over her -ear. From under this great panoply she peeped up in a nervous, -hesitating fashion at our windows, while her body oscillated -backward and forward, and her fingers fidgeted with her glove -buttons. Suddenly, with a plunge, as of the swimmer who leaves -the bank, she hurried across the road, and we heard the sharp -clang of the bell. - -"I have seen those symptoms before," said Holmes, throwing his -cigarette into the fire. "Oscillation upon the pavement always -means an affaire de coeur. She would like advice, but is not sure -that the matter is not too delicate for communication. And yet -even here we may discriminate. When a woman has been seriously -wronged by a man she no longer oscillates, and the usual symptom -is a broken bell wire. Here we may take it that there is a love -matter, but that the maiden is not so much angry as perplexed, or -grieved. But here she comes in person to resolve our doubts." - -As he spoke there was a tap at the door, and the boy in buttons -entered to announce Miss Mary Sutherland, while the lady herself -loomed behind his small black figure like a full-sailed -merchant-man behind a tiny pilot boat. Sherlock Holmes welcomed -her with the easy courtesy for which he was remarkable, and, -having closed the door and bowed her into an armchair, he looked -her over in the minute and yet abstracted fashion which was -peculiar to him. - -"Do you not find," he said, "that with your short sight it is a -little trying to do so much typewriting?" - -"I did at first," she answered, "but now I know where the letters -are without looking." Then, suddenly realising the full purport -of his words, she gave a violent start and looked up, with fear -and astonishment upon her broad, good-humoured face. "You've -heard about me, Mr. Holmes," she cried, "else how could you know -all that?" - -"Never mind," said Holmes, laughing; "it is my business to know -things. Perhaps I have trained myself to see what others -overlook. If not, why should you come to consult me?" - -"I came to you, sir, because I heard of you from Mrs. Etherege, -whose husband you found so easy when the police and everyone had -given him up for dead. Oh, Mr. Holmes, I wish you would do as -much for me. I'm not rich, but still I have a hundred a year in -my own right, besides the little that I make by the machine, and -I would give it all to know what has become of Mr. Hosmer Angel." - -"Why did you come away to consult me in such a hurry?" asked -Sherlock Holmes, with his finger-tips together and his eyes to -the ceiling. - -Again a startled look came over the somewhat vacuous face of Miss -Mary Sutherland. "Yes, I did bang out of the house," she said, -"for it made me angry to see the easy way in which Mr. -Windibank--that is, my father--took it all. He would not go to -the police, and he would not go to you, and so at last, as he -would do nothing and kept on saying that there was no harm done, -it made me mad, and I just on with my things and came right away -to you." - -"Your father," said Holmes, "your stepfather, surely, since the -name is different." - -"Yes, my stepfather. I call him father, though it sounds funny, -too, for he is only five years and two months older than myself." - -"And your mother is alive?" - -"Oh, yes, mother is alive and well. I wasn't best pleased, Mr. -Holmes, when she married again so soon after father's death, and -a man who was nearly fifteen years younger than herself. Father -was a plumber in the Tottenham Court Road, and he left a tidy -business behind him, which mother carried on with Mr. Hardy, the -foreman; but when Mr. Windibank came he made her sell the -business, for he was very superior, being a traveller in wines. -They got 4700 pounds for the goodwill and interest, which wasn't -near as much as father could have got if he had been alive." - -I had expected to see Sherlock Holmes impatient under this -rambling and inconsequential narrative, but, on the contrary, he -had listened with the greatest concentration of attention. - -"Your own little income," he asked, "does it come out of the -business?" - -"Oh, no, sir. It is quite separate and was left me by my uncle -Ned in Auckland. It is in New Zealand stock, paying 4 1/2 per -cent. Two thousand five hundred pounds was the amount, but I can -only touch the interest." - -"You interest me extremely," said Holmes. "And since you draw so -large a sum as a hundred a year, with what you earn into the -bargain, you no doubt travel a little and indulge yourself in -every way. I believe that a single lady can get on very nicely -upon an income of about 60 pounds." - -"I could do with much less than that, Mr. Holmes, but you -understand that as long as I live at home I don't wish to be a -burden to them, and so they have the use of the money just while -I am staying with them. Of course, that is only just for the -time. Mr. Windibank draws my interest every quarter and pays it -over to mother, and I find that I can do pretty well with what I -earn at typewriting. It brings me twopence a sheet, and I can -often do from fifteen to twenty sheets in a day." - -"You have made your position very clear to me," said Holmes. -"This is my friend, Dr. Watson, before whom you can speak as -freely as before myself. Kindly tell us now all about your -connection with Mr. Hosmer Angel." - -A flush stole over Miss Sutherland's face, and she picked -nervously at the fringe of her jacket. "I met him first at the -gasfitters' ball," she said. "They used to send father tickets -when he was alive, and then afterwards they remembered us, and -sent them to mother. Mr. Windibank did not wish us to go. He -never did wish us to go anywhere. He would get quite mad if I -wanted so much as to join a Sunday-school treat. But this time I -was set on going, and I would go; for what right had he to -prevent? He said the folk were not fit for us to know, when all -father's friends were to be there. And he said that I had nothing -fit to wear, when I had my purple plush that I had never so much -as taken out of the drawer. At last, when nothing else would do, -he went off to France upon the business of the firm, but we went, -mother and I, with Mr. Hardy, who used to be our foreman, and it -was there I met Mr. Hosmer Angel." - -"I suppose," said Holmes, "that when Mr. Windibank came back from -France he was very annoyed at your having gone to the ball." - -"Oh, well, he was very good about it. He laughed, I remember, and -shrugged his shoulders, and said there was no use denying -anything to a woman, for she would have her way." - -"I see. Then at the gasfitters' ball you met, as I understand, a -gentleman called Mr. Hosmer Angel." - -"Yes, sir. I met him that night, and he called next day to ask if -we had got home all safe, and after that we met him--that is to -say, Mr. Holmes, I met him twice for walks, but after that father -came back again, and Mr. Hosmer Angel could not come to the house -any more." - -"No?" - -"Well, you know father didn't like anything of the sort. He -wouldn't have any visitors if he could help it, and he used to -say that a woman should be happy in her own family circle. But -then, as I used to say to mother, a woman wants her own circle to -begin with, and I had not got mine yet." - -"But how about Mr. Hosmer Angel? Did he make no attempt to see -you?" - -"Well, father was going off to France again in a week, and Hosmer -wrote and said that it would be safer and better not to see each -other until he had gone. We could write in the meantime, and he -used to write every day. I took the letters in in the morning, so -there was no need for father to know." - -"Were you engaged to the gentleman at this time?" - -"Oh, yes, Mr. Holmes. We were engaged after the first walk that -we took. Hosmer--Mr. Angel--was a cashier in an office in -Leadenhall Street--and--" - -"What office?" - -"That's the worst of it, Mr. Holmes, I don't know." - -"Where did he live, then?" - -"He slept on the premises." - -"And you don't know his address?" - -"No--except that it was Leadenhall Street." - -"Where did you address your letters, then?" - -"To the Leadenhall Street Post Office, to be left till called -for. He said that if they were sent to the office he would be -chaffed by all the other clerks about having letters from a lady, -so I offered to typewrite them, like he did his, but he wouldn't -have that, for he said that when I wrote them they seemed to come -from me, but when they were typewritten he always felt that the -machine had come between us. That will just show you how fond he -was of me, Mr. Holmes, and the little things that he would think -of." - -"It was most suggestive," said Holmes. "It has long been an axiom -of mine that the little things are infinitely the most important. -Can you remember any other little things about Mr. Hosmer Angel?" - -"He was a very shy man, Mr. Holmes. He would rather walk with me -in the evening than in the daylight, for he said that he hated to -be conspicuous. Very retiring and gentlemanly he was. Even his -voice was gentle. He'd had the quinsy and swollen glands when he -was young, he told me, and it had left him with a weak throat, -and a hesitating, whispering fashion of speech. He was always -well dressed, very neat and plain, but his eyes were weak, just -as mine are, and he wore tinted glasses against the glare." - -"Well, and what happened when Mr. Windibank, your stepfather, -returned to France?" - -"Mr. Hosmer Angel came to the house again and proposed that we -should marry before father came back. He was in dreadful earnest -and made me swear, with my hands on the Testament, that whatever -happened I would always be true to him. Mother said he was quite -right to make me swear, and that it was a sign of his passion. -Mother was all in his favour from the first and was even fonder -of him than I was. Then, when they talked of marrying within the -week, I began to ask about father; but they both said never to -mind about father, but just to tell him afterwards, and mother -said she would make it all right with him. I didn't quite like -that, Mr. Holmes. It seemed funny that I should ask his leave, as -he was only a few years older than me; but I didn't want to do -anything on the sly, so I wrote to father at Bordeaux, where the -company has its French offices, but the letter came back to me on -the very morning of the wedding." - -"It missed him, then?" - -"Yes, sir; for he had started to England just before it arrived." - -"Ha! that was unfortunate. Your wedding was arranged, then, for -the Friday. Was it to be in church?" - -"Yes, sir, but very quietly. It was to be at St. Saviour's, near -King's Cross, and we were to have breakfast afterwards at the St. -Pancras Hotel. Hosmer came for us in a hansom, but as there were -two of us he put us both into it and stepped himself into a -four-wheeler, which happened to be the only other cab in the -street. We got to the church first, and when the four-wheeler -drove up we waited for him to step out, but he never did, and -when the cabman got down from the box and looked there was no one -there! The cabman said that he could not imagine what had become -of him, for he had seen him get in with his own eyes. That was -last Friday, Mr. Holmes, and I have never seen or heard anything -since then to throw any light upon what became of him." - -"It seems to me that you have been very shamefully treated," said -Holmes. - -"Oh, no, sir! He was too good and kind to leave me so. Why, all -the morning he was saying to me that, whatever happened, I was to -be true; and that even if something quite unforeseen occurred to -separate us, I was always to remember that I was pledged to him, -and that he would claim his pledge sooner or later. It seemed -strange talk for a wedding-morning, but what has happened since -gives a meaning to it." - -"Most certainly it does. Your own opinion is, then, that some -unforeseen catastrophe has occurred to him?" - -"Yes, sir. I believe that he foresaw some danger, or else he -would not have talked so. And then I think that what he foresaw -happened." - -"But you have no notion as to what it could have been?" - -"None." - -"One more question. How did your mother take the matter?" - -"She was angry, and said that I was never to speak of the matter -again." - -"And your father? Did you tell him?" - -"Yes; and he seemed to think, with me, that something had -happened, and that I should hear of Hosmer again. As he said, -what interest could anyone have in bringing me to the doors of -the church, and then leaving me? Now, if he had borrowed my -money, or if he had married me and got my money settled on him, -there might be some reason, but Hosmer was very independent about -money and never would look at a shilling of mine. And yet, what -could have happened? And why could he not write? Oh, it drives me -half-mad to think of it, and I can't sleep a wink at night." She -pulled a little handkerchief out of her muff and began to sob -heavily into it. - -"I shall glance into the case for you," said Holmes, rising, "and -I have no doubt that we shall reach some definite result. Let the -weight of the matter rest upon me now, and do not let your mind -dwell upon it further. Above all, try to let Mr. Hosmer Angel -vanish from your memory, as he has done from your life." - -"Then you don't think I'll see him again?" - -"I fear not." - -"Then what has happened to him?" - -"You will leave that question in my hands. I should like an -accurate description of him and any letters of his which you can -spare." - -"I advertised for him in last Saturday's Chronicle," said she. -"Here is the slip and here are four letters from him." - -"Thank you. And your address?" - -"No. 31 Lyon Place, Camberwell." - -"Mr. Angel's address you never had, I understand. Where is your -father's place of business?" - -"He travels for Westhouse & Marbank, the great claret importers -of Fenchurch Street." - -"Thank you. You have made your statement very clearly. You will -leave the papers here, and remember the advice which I have given -you. Let the whole incident be a sealed book, and do not allow it -to affect your life." - -"You are very kind, Mr. Holmes, but I cannot do that. I shall be -true to Hosmer. He shall find me ready when he comes back." - -For all the preposterous hat and the vacuous face, there was -something noble in the simple faith of our visitor which -compelled our respect. She laid her little bundle of papers upon -the table and went her way, with a promise to come again whenever -she might be summoned. - -Sherlock Holmes sat silent for a few minutes with his fingertips -still pressed together, his legs stretched out in front of him, -and his gaze directed upward to the ceiling. Then he took down -from the rack the old and oily clay pipe, which was to him as a -counsellor, and, having lit it, he leaned back in his chair, with -the thick blue cloud-wreaths spinning up from him, and a look of -infinite languor in his face. - -"Quite an interesting study, that maiden," he observed. "I found -her more interesting than her little problem, which, by the way, -is rather a trite one. You will find parallel cases, if you -consult my index, in Andover in '77, and there was something of -the sort at The Hague last year. Old as is the idea, however, -there were one or two details which were new to me. But the -maiden herself was most instructive." - -"You appeared to read a good deal upon her which was quite -invisible to me," I remarked. - -"Not invisible but unnoticed, Watson. You did not know where to -look, and so you missed all that was important. I can never bring -you to realise the importance of sleeves, the suggestiveness of -thumb-nails, or the great issues that may hang from a boot-lace. -Now, what did you gather from that woman's appearance? Describe -it." - -"Well, she had a slate-coloured, broad-brimmed straw hat, with a -feather of a brickish red. Her jacket was black, with black beads -sewn upon it, and a fringe of little black jet ornaments. Her -dress was brown, rather darker than coffee colour, with a little -purple plush at the neck and sleeves. Her gloves were greyish and -were worn through at the right forefinger. Her boots I didn't -observe. She had small round, hanging gold earrings, and a -general air of being fairly well-to-do in a vulgar, comfortable, -easy-going way." - -Sherlock Holmes clapped his hands softly together and chuckled. - -"'Pon my word, Watson, you are coming along wonderfully. You have -really done very well indeed. It is true that you have missed -everything of importance, but you have hit upon the method, and -you have a quick eye for colour. Never trust to general -impressions, my boy, but concentrate yourself upon details. My -first glance is always at a woman's sleeve. In a man it is -perhaps better first to take the knee of the trouser. As you -observe, this woman had plush upon her sleeves, which is a most -useful material for showing traces. The double line a little -above the wrist, where the typewritist presses against the table, -was beautifully defined. The sewing-machine, of the hand type, -leaves a similar mark, but only on the left arm, and on the side -of it farthest from the thumb, instead of being right across the -broadest part, as this was. I then glanced at her face, and, -observing the dint of a pince-nez at either side of her nose, I -ventured a remark upon short sight and typewriting, which seemed -to surprise her." - -"It surprised me." - -"But, surely, it was obvious. I was then much surprised and -interested on glancing down to observe that, though the boots -which she was wearing were not unlike each other, they were -really odd ones; the one having a slightly decorated toe-cap, and -the other a plain one. One was buttoned only in the two lower -buttons out of five, and the other at the first, third, and -fifth. Now, when you see that a young lady, otherwise neatly -dressed, has come away from home with odd boots, half-buttoned, -it is no great deduction to say that she came away in a hurry." - -"And what else?" I asked, keenly interested, as I always was, by -my friend's incisive reasoning. - -"I noted, in passing, that she had written a note before leaving -home but after being fully dressed. You observed that her right -glove was torn at the forefinger, but you did not apparently see -that both glove and finger were stained with violet ink. She had -written in a hurry and dipped her pen too deep. It must have been -this morning, or the mark would not remain clear upon the finger. -All this is amusing, though rather elementary, but I must go back -to business, Watson. Would you mind reading me the advertised -description of Mr. Hosmer Angel?" - -I held the little printed slip to the light. - -"Missing," it said, "on the morning of the fourteenth, a gentleman -named Hosmer Angel. About five ft. seven in. in height; -strongly built, sallow complexion, black hair, a little bald in -the centre, bushy, black side-whiskers and moustache; tinted -glasses, slight infirmity of speech. Was dressed, when last seen, -in black frock-coat faced with silk, black waistcoat, gold Albert -chain, and grey Harris tweed trousers, with brown gaiters over -elastic-sided boots. Known to have been employed in an office in -Leadenhall Street. Anybody bringing--" - -"That will do," said Holmes. "As to the letters," he continued, -glancing over them, "they are very commonplace. Absolutely no -clue in them to Mr. Angel, save that he quotes Balzac once. There -is one remarkable point, however, which will no doubt strike -you." - -"They are typewritten," I remarked. - -"Not only that, but the signature is typewritten. Look at the -neat little 'Hosmer Angel' at the bottom. There is a date, you -see, but no superscription except Leadenhall Street, which is -rather vague. The point about the signature is very suggestive--in -fact, we may call it conclusive." - -"Of what?" - -"My dear fellow, is it possible you do not see how strongly it -bears upon the case?" - -"I cannot say that I do unless it were that he wished to be able -to deny his signature if an action for breach of promise were -instituted." - -"No, that was not the point. However, I shall write two letters, -which should settle the matter. One is to a firm in the City, the -other is to the young lady's stepfather, Mr. Windibank, asking -him whether he could meet us here at six o'clock tomorrow -evening. It is just as well that we should do business with the -male relatives. And now, Doctor, we can do nothing until the -answers to those letters come, so we may put our little problem -upon the shelf for the interim." - -I had had so many reasons to believe in my friend's subtle powers -of reasoning and extraordinary energy in action that I felt that -he must have some solid grounds for the assured and easy -demeanour with which he treated the singular mystery which he had -been called upon to fathom. Once only had I known him to fail, in -the case of the King of Bohemia and of the Irene Adler -photograph; but when I looked back to the weird business of the -Sign of Four, and the extraordinary circumstances connected with -the Study in Scarlet, I felt that it would be a strange tangle -indeed which he could not unravel. - -I left him then, still puffing at his black clay pipe, with the -conviction that when I came again on the next evening I would -find that he held in his hands all the clues which would lead up -to the identity of the disappearing bridegroom of Miss Mary -Sutherland. - -A professional case of great gravity was engaging my own -attention at the time, and the whole of next day I was busy at -the bedside of the sufferer. It was not until close upon six -o'clock that I found myself free and was able to spring into a -hansom and drive to Baker Street, half afraid that I might be too -late to assist at the dnouement of the little mystery. I found -Sherlock Holmes alone, however, half asleep, with his long, thin -form curled up in the recesses of his armchair. A formidable -array of bottles and test-tubes, with the pungent cleanly smell -of hydrochloric acid, told me that he had spent his day in the -chemical work which was so dear to him. - -"Well, have you solved it?" I asked as I entered. - -"Yes. It was the bisulphate of baryta." - -"No, no, the mystery!" I cried. - -"Oh, that! I thought of the salt that I have been working upon. -There was never any mystery in the matter, though, as I said -yesterday, some of the details are of interest. The only drawback -is that there is no law, I fear, that can touch the scoundrel." - -"Who was he, then, and what was his object in deserting Miss -Sutherland?" - -The question was hardly out of my mouth, and Holmes had not yet -opened his lips to reply, when we heard a heavy footfall in the -passage and a tap at the door. - -"This is the girl's stepfather, Mr. James Windibank," said -Holmes. "He has written to me to say that he would be here at -six. Come in!" - -The man who entered was a sturdy, middle-sized fellow, some -thirty years of age, clean-shaven, and sallow-skinned, with a -bland, insinuating manner, and a pair of wonderfully sharp and -penetrating grey eyes. He shot a questioning glance at each of -us, placed his shiny top-hat upon the sideboard, and with a -slight bow sidled down into the nearest chair. - -"Good-evening, Mr. James Windibank," said Holmes. "I think that -this typewritten letter is from you, in which you made an -appointment with me for six o'clock?" - -"Yes, sir. I am afraid that I am a little late, but I am not -quite my own master, you know. I am sorry that Miss Sutherland -has troubled you about this little matter, for I think it is far -better not to wash linen of the sort in public. It was quite -against my wishes that she came, but she is a very excitable, -impulsive girl, as you may have noticed, and she is not easily -controlled when she has made up her mind on a point. Of course, I -did not mind you so much, as you are not connected with the -official police, but it is not pleasant to have a family -misfortune like this noised abroad. Besides, it is a useless -expense, for how could you possibly find this Hosmer Angel?" - -"On the contrary," said Holmes quietly; "I have every reason to -believe that I will succeed in discovering Mr. Hosmer Angel." - -Mr. Windibank gave a violent start and dropped his gloves. "I am -delighted to hear it," he said. - -"It is a curious thing," remarked Holmes, "that a typewriter has -really quite as much individuality as a man's handwriting. Unless -they are quite new, no two of them write exactly alike. Some -letters get more worn than others, and some wear only on one -side. Now, you remark in this note of yours, Mr. Windibank, that -in every case there is some little slurring over of the 'e,' and -a slight defect in the tail of the 'r.' There are fourteen other -characteristics, but those are the more obvious." - -"We do all our correspondence with this machine at the office, -and no doubt it is a little worn," our visitor answered, glancing -keenly at Holmes with his bright little eyes. - -"And now I will show you what is really a very interesting study, -Mr. Windibank," Holmes continued. "I think of writing another -little monograph some of these days on the typewriter and its -relation to crime. It is a subject to which I have devoted some -little attention. I have here four letters which purport to come -from the missing man. They are all typewritten. In each case, not -only are the 'e's' slurred and the 'r's' tailless, but you will -observe, if you care to use my magnifying lens, that the fourteen -other characteristics to which I have alluded are there as well." - -Mr. Windibank sprang out of his chair and picked up his hat. "I -cannot waste time over this sort of fantastic talk, Mr. Holmes," -he said. "If you can catch the man, catch him, and let me know -when you have done it." - -"Certainly," said Holmes, stepping over and turning the key in -the door. "I let you know, then, that I have caught him!" - -"What! where?" shouted Mr. Windibank, turning white to his lips -and glancing about him like a rat in a trap. - -"Oh, it won't do--really it won't," said Holmes suavely. "There -is no possible getting out of it, Mr. Windibank. It is quite too -transparent, and it was a very bad compliment when you said that -it was impossible for me to solve so simple a question. That's -right! Sit down and let us talk it over." - -Our visitor collapsed into a chair, with a ghastly face and a -glitter of moisture on his brow. "It--it's not actionable," he -stammered. - -"I am very much afraid that it is not. But between ourselves, -Windibank, it was as cruel and selfish and heartless a trick in a -petty way as ever came before me. Now, let me just run over the -course of events, and you will contradict me if I go wrong." - -The man sat huddled up in his chair, with his head sunk upon his -breast, like one who is utterly crushed. Holmes stuck his feet up -on the corner of the mantelpiece and, leaning back with his hands -in his pockets, began talking, rather to himself, as it seemed, -than to us. - -"The man married a woman very much older than himself for her -money," said he, "and he enjoyed the use of the money of the -daughter as long as she lived with them. It was a considerable -sum, for people in their position, and the loss of it would have -made a serious difference. It was worth an effort to preserve it. -The daughter was of a good, amiable disposition, but affectionate -and warm-hearted in her ways, so that it was evident that with -her fair personal advantages, and her little income, she would -not be allowed to remain single long. Now her marriage would -mean, of course, the loss of a hundred a year, so what does her -stepfather do to prevent it? He takes the obvious course of -keeping her at home and forbidding her to seek the company of -people of her own age. But soon he found that that would not -answer forever. She became restive, insisted upon her rights, and -finally announced her positive intention of going to a certain -ball. What does her clever stepfather do then? He conceives an -idea more creditable to his head than to his heart. With the -connivance and assistance of his wife he disguised himself, -covered those keen eyes with tinted glasses, masked the face with -a moustache and a pair of bushy whiskers, sunk that clear voice -into an insinuating whisper, and doubly secure on account of the -girl's short sight, he appears as Mr. Hosmer Angel, and keeps off -other lovers by making love himself." - -"It was only a joke at first," groaned our visitor. "We never -thought that she would have been so carried away." - -"Very likely not. However that may be, the young lady was very -decidedly carried away, and, having quite made up her mind that -her stepfather was in France, the suspicion of treachery never -for an instant entered her mind. She was flattered by the -gentleman's attentions, and the effect was increased by the -loudly expressed admiration of her mother. Then Mr. Angel began -to call, for it was obvious that the matter should be pushed as -far as it would go if a real effect were to be produced. There -were meetings, and an engagement, which would finally secure the -girl's affections from turning towards anyone else. But the -deception could not be kept up forever. These pretended journeys -to France were rather cumbrous. The thing to do was clearly to -bring the business to an end in such a dramatic manner that it -would leave a permanent impression upon the young lady's mind and -prevent her from looking upon any other suitor for some time to -come. Hence those vows of fidelity exacted upon a Testament, and -hence also the allusions to a possibility of something happening -on the very morning of the wedding. James Windibank wished Miss -Sutherland to be so bound to Hosmer Angel, and so uncertain as to -his fate, that for ten years to come, at any rate, she would not -listen to another man. As far as the church door he brought her, -and then, as he could go no farther, he conveniently vanished -away by the old trick of stepping in at one door of a -four-wheeler and out at the other. I think that was the chain of -events, Mr. Windibank!" - -Our visitor had recovered something of his assurance while Holmes -had been talking, and he rose from his chair now with a cold -sneer upon his pale face. - -"It may be so, or it may not, Mr. Holmes," said he, "but if you -are so very sharp you ought to be sharp enough to know that it is -you who are breaking the law now, and not me. I have done nothing -actionable from the first, but as long as you keep that door -locked you lay yourself open to an action for assault and illegal -constraint." - -"The law cannot, as you say, touch you," said Holmes, unlocking -and throwing open the door, "yet there never was a man who -deserved punishment more. If the young lady has a brother or a -friend, he ought to lay a whip across your shoulders. By Jove!" -he continued, flushing up at the sight of the bitter sneer upon -the man's face, "it is not part of my duties to my client, but -here's a hunting crop handy, and I think I shall just treat -myself to--" He took two swift steps to the whip, but before he -could grasp it there was a wild clatter of steps upon the stairs, -the heavy hall door banged, and from the window we could see Mr. -James Windibank running at the top of his speed down the road. - -"There's a cold-blooded scoundrel!" said Holmes, laughing, as he -threw himself down into his chair once more. "That fellow will -rise from crime to crime until he does something very bad, and -ends on a gallows. The case has, in some respects, been not -entirely devoid of interest." - -"I cannot now entirely see all the steps of your reasoning," I -remarked. - -"Well, of course it was obvious from the first that this Mr. -Hosmer Angel must have some strong object for his curious -conduct, and it was equally clear that the only man who really -profited by the incident, as far as we could see, was the -stepfather. Then the fact that the two men were never together, -but that the one always appeared when the other was away, was -suggestive. So were the tinted spectacles and the curious voice, -which both hinted at a disguise, as did the bushy whiskers. My -suspicions were all confirmed by his peculiar action in -typewriting his signature, which, of course, inferred that his -handwriting was so familiar to her that she would recognise even -the smallest sample of it. You see all these isolated facts, -together with many minor ones, all pointed in the same -direction." - -"And how did you verify them?" - -"Having once spotted my man, it was easy to get corroboration. I -knew the firm for which this man worked. Having taken the printed -description. I eliminated everything from it which could be the -result of a disguise--the whiskers, the glasses, the voice, and I -sent it to the firm, with a request that they would inform me -whether it answered to the description of any of their -travellers. I had already noticed the peculiarities of the -typewriter, and I wrote to the man himself at his business -address asking him if he would come here. As I expected, his -reply was typewritten and revealed the same trivial but -characteristic defects. The same post brought me a letter from -Westhouse & Marbank, of Fenchurch Street, to say that the -description tallied in every respect with that of their employ, -James Windibank. Voil tout!" - -"And Miss Sutherland?" - -"If I tell her she will not believe me. You may remember the old -Persian saying, 'There is danger for him who taketh the tiger -cub, and danger also for whoso snatches a delusion from a woman.' -There is as much sense in Hafiz as in Horace, and as much -knowledge of the world." - - - -ADVENTURE IV. THE BOSCOMBE VALLEY MYSTERY - -We were seated at breakfast one morning, my wife and I, when the -maid brought in a telegram. It was from Sherlock Holmes and ran -in this way: - -"Have you a couple of days to spare? Have just been wired for from -the west of England in connection with Boscombe Valley tragedy. -Shall be glad if you will come with me. Air and scenery perfect. -Leave Paddington by the 11:15." - -"What do you say, dear?" said my wife, looking across at me. -"Will you go?" - -"I really don't know what to say. I have a fairly long list at -present." - -"Oh, Anstruther would do your work for you. You have been looking -a little pale lately. I think that the change would do you good, -and you are always so interested in Mr. Sherlock Holmes' cases." - -"I should be ungrateful if I were not, seeing what I gained -through one of them," I answered. "But if I am to go, I must pack -at once, for I have only half an hour." - -My experience of camp life in Afghanistan had at least had the -effect of making me a prompt and ready traveller. My wants were -few and simple, so that in less than the time stated I was in a -cab with my valise, rattling away to Paddington Station. Sherlock -Holmes was pacing up and down the platform, his tall, gaunt -figure made even gaunter and taller by his long grey -travelling-cloak and close-fitting cloth cap. - -"It is really very good of you to come, Watson," said he. "It -makes a considerable difference to me, having someone with me on -whom I can thoroughly rely. Local aid is always either worthless -or else biassed. If you will keep the two corner seats I shall -get the tickets." - -We had the carriage to ourselves save for an immense litter of -papers which Holmes had brought with him. Among these he rummaged -and read, with intervals of note-taking and of meditation, until -we were past Reading. Then he suddenly rolled them all into a -gigantic ball and tossed them up onto the rack. - -"Have you heard anything of the case?" he asked. - -"Not a word. I have not seen a paper for some days." - -"The London press has not had very full accounts. I have just -been looking through all the recent papers in order to master the -particulars. It seems, from what I gather, to be one of those -simple cases which are so extremely difficult." - -"That sounds a little paradoxical." - -"But it is profoundly true. Singularity is almost invariably a -clue. The more featureless and commonplace a crime is, the more -difficult it is to bring it home. In this case, however, they -have established a very serious case against the son of the -murdered man." - -"It is a murder, then?" - -"Well, it is conjectured to be so. I shall take nothing for -granted until I have the opportunity of looking personally into -it. I will explain the state of things to you, as far as I have -been able to understand it, in a very few words. - -"Boscombe Valley is a country district not very far from Ross, in -Herefordshire. The largest landed proprietor in that part is a -Mr. John Turner, who made his money in Australia and returned -some years ago to the old country. One of the farms which he -held, that of Hatherley, was let to Mr. Charles McCarthy, who was -also an ex-Australian. The men had known each other in the -colonies, so that it was not unnatural that when they came to -settle down they should do so as near each other as possible. -Turner was apparently the richer man, so McCarthy became his -tenant but still remained, it seems, upon terms of perfect -equality, as they were frequently together. McCarthy had one son, -a lad of eighteen, and Turner had an only daughter of the same -age, but neither of them had wives living. They appear to have -avoided the society of the neighbouring English families and to -have led retired lives, though both the McCarthys were fond of -sport and were frequently seen at the race-meetings of the -neighbourhood. McCarthy kept two servants--a man and a girl. -Turner had a considerable household, some half-dozen at the -least. That is as much as I have been able to gather about the -families. Now for the facts. - -"On June 3rd, that is, on Monday last, McCarthy left his house at -Hatherley about three in the afternoon and walked down to the -Boscombe Pool, which is a small lake formed by the spreading out -of the stream which runs down the Boscombe Valley. He had been -out with his serving-man in the morning at Ross, and he had told -the man that he must hurry, as he had an appointment of -importance to keep at three. From that appointment he never came -back alive. - -"From Hatherley Farm-house to the Boscombe Pool is a quarter of a -mile, and two people saw him as he passed over this ground. One -was an old woman, whose name is not mentioned, and the other was -William Crowder, a game-keeper in the employ of Mr. Turner. Both -these witnesses depose that Mr. McCarthy was walking alone. The -game-keeper adds that within a few minutes of his seeing Mr. -McCarthy pass he had seen his son, Mr. James McCarthy, going the -same way with a gun under his arm. To the best of his belief, the -father was actually in sight at the time, and the son was -following him. He thought no more of the matter until he heard in -the evening of the tragedy that had occurred. - -"The two McCarthys were seen after the time when William Crowder, -the game-keeper, lost sight of them. The Boscombe Pool is thickly -wooded round, with just a fringe of grass and of reeds round the -edge. A girl of fourteen, Patience Moran, who is the daughter of -the lodge-keeper of the Boscombe Valley estate, was in one of the -woods picking flowers. She states that while she was there she -saw, at the border of the wood and close by the lake, Mr. -McCarthy and his son, and that they appeared to be having a -violent quarrel. She heard Mr. McCarthy the elder using very -strong language to his son, and she saw the latter raise up his -hand as if to strike his father. She was so frightened by their -violence that she ran away and told her mother when she reached -home that she had left the two McCarthys quarrelling near -Boscombe Pool, and that she was afraid that they were going to -fight. She had hardly said the words when young Mr. McCarthy came -running up to the lodge to say that he had found his father dead -in the wood, and to ask for the help of the lodge-keeper. He was -much excited, without either his gun or his hat, and his right -hand and sleeve were observed to be stained with fresh blood. On -following him they found the dead body stretched out upon the -grass beside the pool. The head had been beaten in by repeated -blows of some heavy and blunt weapon. The injuries were such as -might very well have been inflicted by the butt-end of his son's -gun, which was found lying on the grass within a few paces of the -body. Under these circumstances the young man was instantly -arrested, and a verdict of 'wilful murder' having been returned -at the inquest on Tuesday, he was on Wednesday brought before the -magistrates at Ross, who have referred the case to the next -Assizes. Those are the main facts of the case as they came out -before the coroner and the police-court." - -"I could hardly imagine a more damning case," I remarked. "If -ever circumstantial evidence pointed to a criminal it does so -here." - -"Circumstantial evidence is a very tricky thing," answered Holmes -thoughtfully. "It may seem to point very straight to one thing, -but if you shift your own point of view a little, you may find it -pointing in an equally uncompromising manner to something -entirely different. It must be confessed, however, that the case -looks exceedingly grave against the young man, and it is very -possible that he is indeed the culprit. There are several people -in the neighbourhood, however, and among them Miss Turner, the -daughter of the neighbouring landowner, who believe in his -innocence, and who have retained Lestrade, whom you may recollect -in connection with the Study in Scarlet, to work out the case in -his interest. Lestrade, being rather puzzled, has referred the -case to me, and hence it is that two middle-aged gentlemen are -flying westward at fifty miles an hour instead of quietly -digesting their breakfasts at home." - -"I am afraid," said I, "that the facts are so obvious that you -will find little credit to be gained out of this case." - -"There is nothing more deceptive than an obvious fact," he -answered, laughing. "Besides, we may chance to hit upon some -other obvious facts which may have been by no means obvious to -Mr. Lestrade. You know me too well to think that I am boasting -when I say that I shall either confirm or destroy his theory by -means which he is quite incapable of employing, or even of -understanding. To take the first example to hand, I very clearly -perceive that in your bedroom the window is upon the right-hand -side, and yet I question whether Mr. Lestrade would have noted -even so self-evident a thing as that." - -"How on earth--" - -"My dear fellow, I know you well. I know the military neatness -which characterises you. You shave every morning, and in this -season you shave by the sunlight; but since your shaving is less -and less complete as we get farther back on the left side, until -it becomes positively slovenly as we get round the angle of the -jaw, it is surely very clear that that side is less illuminated -than the other. I could not imagine a man of your habits looking -at himself in an equal light and being satisfied with such a -result. I only quote this as a trivial example of observation and -inference. Therein lies my mtier, and it is just possible that -it may be of some service in the investigation which lies before -us. There are one or two minor points which were brought out in -the inquest, and which are worth considering." - -"What are they?" - -"It appears that his arrest did not take place at once, but after -the return to Hatherley Farm. On the inspector of constabulary -informing him that he was a prisoner, he remarked that he was not -surprised to hear it, and that it was no more than his deserts. -This observation of his had the natural effect of removing any -traces of doubt which might have remained in the minds of the -coroner's jury." - -"It was a confession," I ejaculated. - -"No, for it was followed by a protestation of innocence." - -"Coming on the top of such a damning series of events, it was at -least a most suspicious remark." - -"On the contrary," said Holmes, "it is the brightest rift which I -can at present see in the clouds. However innocent he might be, -he could not be such an absolute imbecile as not to see that the -circumstances were very black against him. Had he appeared -surprised at his own arrest, or feigned indignation at it, I -should have looked upon it as highly suspicious, because such -surprise or anger would not be natural under the circumstances, -and yet might appear to be the best policy to a scheming man. His -frank acceptance of the situation marks him as either an innocent -man, or else as a man of considerable self-restraint and -firmness. As to his remark about his deserts, it was also not -unnatural if you consider that he stood beside the dead body of -his father, and that there is no doubt that he had that very day -so far forgotten his filial duty as to bandy words with him, and -even, according to the little girl whose evidence is so -important, to raise his hand as if to strike him. The -self-reproach and contrition which are displayed in his remark -appear to me to be the signs of a healthy mind rather than of a -guilty one." - -I shook my head. "Many men have been hanged on far slighter -evidence," I remarked. - -"So they have. And many men have been wrongfully hanged." - -"What is the young man's own account of the matter?" - -"It is, I am afraid, not very encouraging to his supporters, -though there are one or two points in it which are suggestive. -You will find it here, and may read it for yourself." - -He picked out from his bundle a copy of the local Herefordshire -paper, and having turned down the sheet he pointed out the -paragraph in which the unfortunate young man had given his own -statement of what had occurred. I settled myself down in the -corner of the carriage and read it very carefully. It ran in this -way: - -"Mr. James McCarthy, the only son of the deceased, was then called -and gave evidence as follows: 'I had been away from home for -three days at Bristol, and had only just returned upon the -morning of last Monday, the 3rd. My father was absent from home at -the time of my arrival, and I was informed by the maid that he -had driven over to Ross with John Cobb, the groom. Shortly after -my return I heard the wheels of his trap in the yard, and, -looking out of my window, I saw him get out and walk rapidly out -of the yard, though I was not aware in which direction he was -going. I then took my gun and strolled out in the direction of -the Boscombe Pool, with the intention of visiting the rabbit -warren which is upon the other side. On my way I saw William -Crowder, the game-keeper, as he had stated in his evidence; but -he is mistaken in thinking that I was following my father. I had -no idea that he was in front of me. When about a hundred yards -from the pool I heard a cry of "Cooee!" which was a usual signal -between my father and myself. I then hurried forward, and found -him standing by the pool. He appeared to be much surprised at -seeing me and asked me rather roughly what I was doing there. A -conversation ensued which led to high words and almost to blows, -for my father was a man of a very violent temper. Seeing that his -passion was becoming ungovernable, I left him and returned -towards Hatherley Farm. I had not gone more than 150 yards, -however, when I heard a hideous outcry behind me, which caused me -to run back again. I found my father expiring upon the ground, -with his head terribly injured. I dropped my gun and held him in -my arms, but he almost instantly expired. I knelt beside him for -some minutes, and then made my way to Mr. Turner's lodge-keeper, -his house being the nearest, to ask for assistance. I saw no one -near my father when I returned, and I have no idea how he came by -his injuries. He was not a popular man, being somewhat cold and -forbidding in his manners, but he had, as far as I know, no -active enemies. I know nothing further of the matter.' - -"The Coroner: Did your father make any statement to you before -he died? - -"Witness: He mumbled a few words, but I could only catch some -allusion to a rat. - -"The Coroner: What did you understand by that? - -"Witness: It conveyed no meaning to me. I thought that he was -delirious. - -"The Coroner: What was the point upon which you and your father -had this final quarrel? - -"Witness: I should prefer not to answer. - -"The Coroner: I am afraid that I must press it. - -"Witness: It is really impossible for me to tell you. I can -assure you that it has nothing to do with the sad tragedy which -followed. - -"The Coroner: That is for the court to decide. I need not point -out to you that your refusal to answer will prejudice your case -considerably in any future proceedings which may arise. - -"Witness: I must still refuse. - -"The Coroner: I understand that the cry of 'Cooee' was a common -signal between you and your father? - -"Witness: It was. - -"The Coroner: How was it, then, that he uttered it before he saw -you, and before he even knew that you had returned from Bristol? - -"Witness (with considerable confusion): I do not know. - -"A Juryman: Did you see nothing which aroused your suspicions -when you returned on hearing the cry and found your father -fatally injured? - -"Witness: Nothing definite. - -"The Coroner: What do you mean? - -"Witness: I was so disturbed and excited as I rushed out into -the open, that I could think of nothing except of my father. Yet -I have a vague impression that as I ran forward something lay -upon the ground to the left of me. It seemed to me to be -something grey in colour, a coat of some sort, or a plaid perhaps. -When I rose from my father I looked round for it, but it was -gone. - -"'Do you mean that it disappeared before you went for help?' - -"'Yes, it was gone.' - -"'You cannot say what it was?' - -"'No, I had a feeling something was there.' - -"'How far from the body?' - -"'A dozen yards or so.' - -"'And how far from the edge of the wood?' - -"'About the same.' - -"'Then if it was removed it was while you were within a dozen -yards of it?' - -"'Yes, but with my back towards it.' - -"This concluded the examination of the witness." - -"I see," said I as I glanced down the column, "that the coroner -in his concluding remarks was rather severe upon young McCarthy. -He calls attention, and with reason, to the discrepancy about his -father having signalled to him before seeing him, also to his -refusal to give details of his conversation with his father, and -his singular account of his father's dying words. They are all, -as he remarks, very much against the son." - -Holmes laughed softly to himself and stretched himself out upon -the cushioned seat. "Both you and the coroner have been at some -pains," said he, "to single out the very strongest points in the -young man's favour. Don't you see that you alternately give him -credit for having too much imagination and too little? Too -little, if he could not invent a cause of quarrel which would -give him the sympathy of the jury; too much, if he evolved from -his own inner consciousness anything so outr as a dying -reference to a rat, and the incident of the vanishing cloth. No, -sir, I shall approach this case from the point of view that what -this young man says is true, and we shall see whither that -hypothesis will lead us. And now here is my pocket Petrarch, and -not another word shall I say of this case until we are on the -scene of action. We lunch at Swindon, and I see that we shall be -there in twenty minutes." - -It was nearly four o'clock when we at last, after passing through -the beautiful Stroud Valley, and over the broad gleaming Severn, -found ourselves at the pretty little country-town of Ross. A -lean, ferret-like man, furtive and sly-looking, was waiting for -us upon the platform. In spite of the light brown dustcoat and -leather-leggings which he wore in deference to his rustic -surroundings, I had no difficulty in recognising Lestrade, of -Scotland Yard. With him we drove to the Hereford Arms where a -room had already been engaged for us. - -"I have ordered a carriage," said Lestrade as we sat over a cup -of tea. "I knew your energetic nature, and that you would not be -happy until you had been on the scene of the crime." - -"It was very nice and complimentary of you," Holmes answered. "It -is entirely a question of barometric pressure." - -Lestrade looked startled. "I do not quite follow," he said. - -"How is the glass? Twenty-nine, I see. No wind, and not a cloud -in the sky. I have a caseful of cigarettes here which need -smoking, and the sofa is very much superior to the usual country -hotel abomination. I do not think that it is probable that I -shall use the carriage to-night." - -Lestrade laughed indulgently. "You have, no doubt, already formed -your conclusions from the newspapers," he said. "The case is as -plain as a pikestaff, and the more one goes into it the plainer -it becomes. Still, of course, one can't refuse a lady, and such a -very positive one, too. She has heard of you, and would have your -opinion, though I repeatedly told her that there was nothing -which you could do which I had not already done. Why, bless my -soul! here is her carriage at the door." - -He had hardly spoken before there rushed into the room one of the -most lovely young women that I have ever seen in my life. Her -violet eyes shining, her lips parted, a pink flush upon her -cheeks, all thought of her natural reserve lost in her -overpowering excitement and concern. - -"Oh, Mr. Sherlock Holmes!" she cried, glancing from one to the -other of us, and finally, with a woman's quick intuition, -fastening upon my companion, "I am so glad that you have come. I -have driven down to tell you so. I know that James didn't do it. -I know it, and I want you to start upon your work knowing it, -too. Never let yourself doubt upon that point. We have known each -other since we were little children, and I know his faults as no -one else does; but he is too tender-hearted to hurt a fly. Such a -charge is absurd to anyone who really knows him." - -"I hope we may clear him, Miss Turner," said Sherlock Holmes. -"You may rely upon my doing all that I can." - -"But you have read the evidence. You have formed some conclusion? -Do you not see some loophole, some flaw? Do you not yourself -think that he is innocent?" - -"I think that it is very probable." - -"There, now!" she cried, throwing back her head and looking -defiantly at Lestrade. "You hear! He gives me hopes." - -Lestrade shrugged his shoulders. "I am afraid that my colleague -has been a little quick in forming his conclusions," he said. - -"But he is right. Oh! I know that he is right. James never did -it. And about his quarrel with his father, I am sure that the -reason why he would not speak about it to the coroner was because -I was concerned in it." - -"In what way?" asked Holmes. - -"It is no time for me to hide anything. James and his father had -many disagreements about me. Mr. McCarthy was very anxious that -there should be a marriage between us. James and I have always -loved each other as brother and sister; but of course he is young -and has seen very little of life yet, and--and--well, he -naturally did not wish to do anything like that yet. So there -were quarrels, and this, I am sure, was one of them." - -"And your father?" asked Holmes. "Was he in favour of such a -union?" - -"No, he was averse to it also. No one but Mr. McCarthy was in -favour of it." A quick blush passed over her fresh young face as -Holmes shot one of his keen, questioning glances at her. - -"Thank you for this information," said he. "May I see your father -if I call to-morrow?" - -"I am afraid the doctor won't allow it." - -"The doctor?" - -"Yes, have you not heard? Poor father has never been strong for -years back, but this has broken him down completely. He has taken -to his bed, and Dr. Willows says that he is a wreck and that his -nervous system is shattered. Mr. McCarthy was the only man alive -who had known dad in the old days in Victoria." - -"Ha! In Victoria! That is important." - -"Yes, at the mines." - -"Quite so; at the gold-mines, where, as I understand, Mr. Turner -made his money." - -"Yes, certainly." - -"Thank you, Miss Turner. You have been of material assistance to -me." - -"You will tell me if you have any news to-morrow. No doubt you -will go to the prison to see James. Oh, if you do, Mr. Holmes, do -tell him that I know him to be innocent." - -"I will, Miss Turner." - -"I must go home now, for dad is very ill, and he misses me so if -I leave him. Good-bye, and God help you in your undertaking." She -hurried from the room as impulsively as she had entered, and we -heard the wheels of her carriage rattle off down the street. - -"I am ashamed of you, Holmes," said Lestrade with dignity after a -few minutes' silence. "Why should you raise up hopes which you -are bound to disappoint? I am not over-tender of heart, but I -call it cruel." - -"I think that I see my way to clearing James McCarthy," said -Holmes. "Have you an order to see him in prison?" - -"Yes, but only for you and me." - -"Then I shall reconsider my resolution about going out. We have -still time to take a train to Hereford and see him to-night?" - -"Ample." - -"Then let us do so. Watson, I fear that you will find it very -slow, but I shall only be away a couple of hours." - -I walked down to the station with them, and then wandered through -the streets of the little town, finally returning to the hotel, -where I lay upon the sofa and tried to interest myself in a -yellow-backed novel. The puny plot of the story was so thin, -however, when compared to the deep mystery through which we were -groping, and I found my attention wander so continually from the -action to the fact, that I at last flung it across the room and -gave myself up entirely to a consideration of the events of the -day. Supposing that this unhappy young man's story were -absolutely true, then what hellish thing, what absolutely -unforeseen and extraordinary calamity could have occurred between -the time when he parted from his father, and the moment when, -drawn back by his screams, he rushed into the glade? It was -something terrible and deadly. What could it be? Might not the -nature of the injuries reveal something to my medical instincts? -I rang the bell and called for the weekly county paper, which -contained a verbatim account of the inquest. In the surgeon's -deposition it was stated that the posterior third of the left -parietal bone and the left half of the occipital bone had been -shattered by a heavy blow from a blunt weapon. I marked the spot -upon my own head. Clearly such a blow must have been struck from -behind. That was to some extent in favour of the accused, as when -seen quarrelling he was face to face with his father. Still, it -did not go for very much, for the older man might have turned his -back before the blow fell. Still, it might be worth while to call -Holmes' attention to it. Then there was the peculiar dying -reference to a rat. What could that mean? It could not be -delirium. A man dying from a sudden blow does not commonly become -delirious. No, it was more likely to be an attempt to explain how -he met his fate. But what could it indicate? I cudgelled my -brains to find some possible explanation. And then the incident -of the grey cloth seen by young McCarthy. If that were true the -murderer must have dropped some part of his dress, presumably his -overcoat, in his flight, and must have had the hardihood to -return and to carry it away at the instant when the son was -kneeling with his back turned not a dozen paces off. What a -tissue of mysteries and improbabilities the whole thing was! I -did not wonder at Lestrade's opinion, and yet I had so much faith -in Sherlock Holmes' insight that I could not lose hope as long -as every fresh fact seemed to strengthen his conviction of young -McCarthy's innocence. - -It was late before Sherlock Holmes returned. He came back alone, -for Lestrade was staying in lodgings in the town. - -"The glass still keeps very high," he remarked as he sat down. -"It is of importance that it should not rain before we are able -to go over the ground. On the other hand, a man should be at his -very best and keenest for such nice work as that, and I did not -wish to do it when fagged by a long journey. I have seen young -McCarthy." - -"And what did you learn from him?" - -"Nothing." - -"Could he throw no light?" - -"None at all. I was inclined to think at one time that he knew -who had done it and was screening him or her, but I am convinced -now that he is as puzzled as everyone else. He is not a very -quick-witted youth, though comely to look at and, I should think, -sound at heart." - -"I cannot admire his taste," I remarked, "if it is indeed a fact -that he was averse to a marriage with so charming a young lady as -this Miss Turner." - -"Ah, thereby hangs a rather painful tale. This fellow is madly, -insanely, in love with her, but some two years ago, when he was -only a lad, and before he really knew her, for she had been away -five years at a boarding-school, what does the idiot do but get -into the clutches of a barmaid in Bristol and marry her at a -registry office? No one knows a word of the matter, but you can -imagine how maddening it must be to him to be upbraided for not -doing what he would give his very eyes to do, but what he knows -to be absolutely impossible. It was sheer frenzy of this sort -which made him throw his hands up into the air when his father, -at their last interview, was goading him on to propose to Miss -Turner. On the other hand, he had no means of supporting himself, -and his father, who was by all accounts a very hard man, would -have thrown him over utterly had he known the truth. It was with -his barmaid wife that he had spent the last three days in -Bristol, and his father did not know where he was. Mark that -point. It is of importance. Good has come out of evil, however, -for the barmaid, finding from the papers that he is in serious -trouble and likely to be hanged, has thrown him over utterly and -has written to him to say that she has a husband already in the -Bermuda Dockyard, so that there is really no tie between them. I -think that that bit of news has consoled young McCarthy for all -that he has suffered." - -"But if he is innocent, who has done it?" - -"Ah! who? I would call your attention very particularly to two -points. One is that the murdered man had an appointment with -someone at the pool, and that the someone could not have been his -son, for his son was away, and he did not know when he would -return. The second is that the murdered man was heard to cry -'Cooee!' before he knew that his son had returned. Those are the -crucial points upon which the case depends. And now let us talk -about George Meredith, if you please, and we shall leave all -minor matters until to-morrow." - -There was no rain, as Holmes had foretold, and the morning broke -bright and cloudless. At nine o'clock Lestrade called for us with -the carriage, and we set off for Hatherley Farm and the Boscombe -Pool. - -"There is serious news this morning," Lestrade observed. "It is -said that Mr. Turner, of the Hall, is so ill that his life is -despaired of." - -"An elderly man, I presume?" said Holmes. - -"About sixty; but his constitution has been shattered by his life -abroad, and he has been in failing health for some time. This -business has had a very bad effect upon him. He was an old friend -of McCarthy's, and, I may add, a great benefactor to him, for I -have learned that he gave him Hatherley Farm rent free." - -"Indeed! That is interesting," said Holmes. - -"Oh, yes! In a hundred other ways he has helped him. Everybody -about here speaks of his kindness to him." - -"Really! Does it not strike you as a little singular that this -McCarthy, who appears to have had little of his own, and to have -been under such obligations to Turner, should still talk of -marrying his son to Turner's daughter, who is, presumably, -heiress to the estate, and that in such a very cocksure manner, -as if it were merely a case of a proposal and all else would -follow? It is the more strange, since we know that Turner himself -was averse to the idea. The daughter told us as much. Do you not -deduce something from that?" - -"We have got to the deductions and the inferences," said -Lestrade, winking at me. "I find it hard enough to tackle facts, -Holmes, without flying away after theories and fancies." - -"You are right," said Holmes demurely; "you do find it very hard -to tackle the facts." - -"Anyhow, I have grasped one fact which you seem to find it -difficult to get hold of," replied Lestrade with some warmth. - -"And that is--" - -"That McCarthy senior met his death from McCarthy junior and that -all theories to the contrary are the merest moonshine." - -"Well, moonshine is a brighter thing than fog," said Holmes, -laughing. "But I am very much mistaken if this is not Hatherley -Farm upon the left." - -"Yes, that is it." It was a widespread, comfortable-looking -building, two-storied, slate-roofed, with great yellow blotches -of lichen upon the grey walls. The drawn blinds and the smokeless -chimneys, however, gave it a stricken look, as though the weight -of this horror still lay heavy upon it. We called at the door, -when the maid, at Holmes' request, showed us the boots which her -master wore at the time of his death, and also a pair of the -son's, though not the pair which he had then had. Having measured -these very carefully from seven or eight different points, Holmes -desired to be led to the court-yard, from which we all followed -the winding track which led to Boscombe Pool. - -Sherlock Holmes was transformed when he was hot upon such a scent -as this. Men who had only known the quiet thinker and logician of -Baker Street would have failed to recognise him. His face flushed -and darkened. His brows were drawn into two hard black lines, -while his eyes shone out from beneath them with a steely glitter. -His face was bent downward, his shoulders bowed, his lips -compressed, and the veins stood out like whipcord in his long, -sinewy neck. His nostrils seemed to dilate with a purely animal -lust for the chase, and his mind was so absolutely concentrated -upon the matter before him that a question or remark fell -unheeded upon his ears, or, at the most, only provoked a quick, -impatient snarl in reply. Swiftly and silently he made his way -along the track which ran through the meadows, and so by way of -the woods to the Boscombe Pool. It was damp, marshy ground, as is -all that district, and there were marks of many feet, both upon -the path and amid the short grass which bounded it on either -side. Sometimes Holmes would hurry on, sometimes stop dead, and -once he made quite a little detour into the meadow. Lestrade and -I walked behind him, the detective indifferent and contemptuous, -while I watched my friend with the interest which sprang from the -conviction that every one of his actions was directed towards a -definite end. - -The Boscombe Pool, which is a little reed-girt sheet of water -some fifty yards across, is situated at the boundary between the -Hatherley Farm and the private park of the wealthy Mr. Turner. -Above the woods which lined it upon the farther side we could see -the red, jutting pinnacles which marked the site of the rich -landowner's dwelling. On the Hatherley side of the pool the woods -grew very thick, and there was a narrow belt of sodden grass -twenty paces across between the edge of the trees and the reeds -which lined the lake. Lestrade showed us the exact spot at which -the body had been found, and, indeed, so moist was the ground, -that I could plainly see the traces which had been left by the -fall of the stricken man. To Holmes, as I could see by his eager -face and peering eyes, very many other things were to be read -upon the trampled grass. He ran round, like a dog who is picking -up a scent, and then turned upon my companion. - -"What did you go into the pool for?" he asked. - -"I fished about with a rake. I thought there might be some weapon -or other trace. But how on earth--" - -"Oh, tut, tut! I have no time! That left foot of yours with its -inward twist is all over the place. A mole could trace it, and -there it vanishes among the reeds. Oh, how simple it would all -have been had I been here before they came like a herd of buffalo -and wallowed all over it. Here is where the party with the -lodge-keeper came, and they have covered all tracks for six or -eight feet round the body. But here are three separate tracks of -the same feet." He drew out a lens and lay down upon his -waterproof to have a better view, talking all the time rather to -himself than to us. "These are young McCarthy's feet. Twice he -was walking, and once he ran swiftly, so that the soles are -deeply marked and the heels hardly visible. That bears out his -story. He ran when he saw his father on the ground. Then here are -the father's feet as he paced up and down. What is this, then? It -is the butt-end of the gun as the son stood listening. And this? -Ha, ha! What have we here? Tiptoes! tiptoes! Square, too, quite -unusual boots! They come, they go, they come again--of course -that was for the cloak. Now where did they come from?" He ran up -and down, sometimes losing, sometimes finding the track until we -were well within the edge of the wood and under the shadow of a -great beech, the largest tree in the neighbourhood. Holmes traced -his way to the farther side of this and lay down once more upon -his face with a little cry of satisfaction. For a long time he -remained there, turning over the leaves and dried sticks, -gathering up what seemed to me to be dust into an envelope and -examining with his lens not only the ground but even the bark of -the tree as far as he could reach. A jagged stone was lying among -the moss, and this also he carefully examined and retained. Then -he followed a pathway through the wood until he came to the -highroad, where all traces were lost. - -"It has been a case of considerable interest," he remarked, -returning to his natural manner. "I fancy that this grey house on -the right must be the lodge. I think that I will go in and have a -word with Moran, and perhaps write a little note. Having done -that, we may drive back to our luncheon. You may walk to the cab, -and I shall be with you presently." - -It was about ten minutes before we regained our cab and drove -back into Ross, Holmes still carrying with him the stone which he -had picked up in the wood. - -"This may interest you, Lestrade," he remarked, holding it out. -"The murder was done with it." - -"I see no marks." - -"There are none." - -"How do you know, then?" - -"The grass was growing under it. It had only lain there a few -days. There was no sign of a place whence it had been taken. It -corresponds with the injuries. There is no sign of any other -weapon." - -"And the murderer?" - -"Is a tall man, left-handed, limps with the right leg, wears -thick-soled shooting-boots and a grey cloak, smokes Indian -cigars, uses a cigar-holder, and carries a blunt pen-knife in his -pocket. There are several other indications, but these may be -enough to aid us in our search." - -Lestrade laughed. "I am afraid that I am still a sceptic," he -said. "Theories are all very well, but we have to deal with a -hard-headed British jury." - -"Nous verrons," answered Holmes calmly. "You work your own -method, and I shall work mine. I shall be busy this afternoon, -and shall probably return to London by the evening train." - -"And leave your case unfinished?" - -"No, finished." - -"But the mystery?" - -"It is solved." - -"Who was the criminal, then?" - -"The gentleman I describe." - -"But who is he?" - -"Surely it would not be difficult to find out. This is not such a -populous neighbourhood." - -Lestrade shrugged his shoulders. "I am a practical man," he said, -"and I really cannot undertake to go about the country looking -for a left-handed gentleman with a game leg. I should become the -laughing-stock of Scotland Yard." - -"All right," said Holmes quietly. "I have given you the chance. -Here are your lodgings. Good-bye. I shall drop you a line before -I leave." - -Having left Lestrade at his rooms, we drove to our hotel, where -we found lunch upon the table. Holmes was silent and buried in -thought with a pained expression upon his face, as one who finds -himself in a perplexing position. - -"Look here, Watson," he said when the cloth was cleared "just sit -down in this chair and let me preach to you for a little. I don't -know quite what to do, and I should value your advice. Light a -cigar and let me expound." - - "Pray do so." - -"Well, now, in considering this case there are two points about -young McCarthy's narrative which struck us both instantly, -although they impressed me in his favour and you against him. One -was the fact that his father should, according to his account, -cry 'Cooee!' before seeing him. The other was his singular dying -reference to a rat. He mumbled several words, you understand, but -that was all that caught the son's ear. Now from this double -point our research must commence, and we will begin it by -presuming that what the lad says is absolutely true." - -"What of this 'Cooee!' then?" - -"Well, obviously it could not have been meant for the son. The -son, as far as he knew, was in Bristol. It was mere chance that -he was within earshot. The 'Cooee!' was meant to attract the -attention of whoever it was that he had the appointment with. But -'Cooee' is a distinctly Australian cry, and one which is used -between Australians. There is a strong presumption that the -person whom McCarthy expected to meet him at Boscombe Pool was -someone who had been in Australia." - -"What of the rat, then?" - -Sherlock Holmes took a folded paper from his pocket and flattened -it out on the table. "This is a map of the Colony of Victoria," -he said. "I wired to Bristol for it last night." He put his hand -over part of the map. "What do you read?" - -"ARAT," I read. - -"And now?" He raised his hand. - -"BALLARAT." - -"Quite so. That was the word the man uttered, and of which his -son only caught the last two syllables. He was trying to utter -the name of his murderer. So and so, of Ballarat." - -"It is wonderful!" I exclaimed. - -"It is obvious. And now, you see, I had narrowed the field down -considerably. The possession of a grey garment was a third point -which, granting the son's statement to be correct, was a -certainty. We have come now out of mere vagueness to the definite -conception of an Australian from Ballarat with a grey cloak." - -"Certainly." - -"And one who was at home in the district, for the pool can only -be approached by the farm or by the estate, where strangers could -hardly wander." - -"Quite so." - -"Then comes our expedition of to-day. By an examination of the -ground I gained the trifling details which I gave to that -imbecile Lestrade, as to the personality of the criminal." - -"But how did you gain them?" - -"You know my method. It is founded upon the observation of -trifles." - -"His height I know that you might roughly judge from the length -of his stride. His boots, too, might be told from their traces." - -"Yes, they were peculiar boots." - -"But his lameness?" - -"The impression of his right foot was always less distinct than -his left. He put less weight upon it. Why? Because he limped--he -was lame." - -"But his left-handedness." - -"You were yourself struck by the nature of the injury as recorded -by the surgeon at the inquest. The blow was struck from -immediately behind, and yet was upon the left side. Now, how can -that be unless it were by a left-handed man? He had stood behind -that tree during the interview between the father and son. He had -even smoked there. I found the ash of a cigar, which my special -knowledge of tobacco ashes enables me to pronounce as an Indian -cigar. I have, as you know, devoted some attention to this, and -written a little monograph on the ashes of 140 different -varieties of pipe, cigar, and cigarette tobacco. Having found the -ash, I then looked round and discovered the stump among the moss -where he had tossed it. It was an Indian cigar, of the variety -which are rolled in Rotterdam." - -"And the cigar-holder?" - -"I could see that the end had not been in his mouth. Therefore he -used a holder. The tip had been cut off, not bitten off, but the -cut was not a clean one, so I deduced a blunt pen-knife." - -"Holmes," I said, "you have drawn a net round this man from which -he cannot escape, and you have saved an innocent human life as -truly as if you had cut the cord which was hanging him. I see the -direction in which all this points. The culprit is--" - -"Mr. John Turner," cried the hotel waiter, opening the door of -our sitting-room, and ushering in a visitor. - -The man who entered was a strange and impressive figure. His -slow, limping step and bowed shoulders gave the appearance of -decrepitude, and yet his hard, deep-lined, craggy features, and -his enormous limbs showed that he was possessed of unusual -strength of body and of character. His tangled beard, grizzled -hair, and outstanding, drooping eyebrows combined to give an air -of dignity and power to his appearance, but his face was of an -ashen white, while his lips and the corners of his nostrils were -tinged with a shade of blue. It was clear to me at a glance that -he was in the grip of some deadly and chronic disease. - -"Pray sit down on the sofa," said Holmes gently. "You had my -note?" - -"Yes, the lodge-keeper brought it up. You said that you wished to -see me here to avoid scandal." - -"I thought people would talk if I went to the Hall." - -"And why did you wish to see me?" He looked across at my -companion with despair in his weary eyes, as though his question -was already answered. - -"Yes," said Holmes, answering the look rather than the words. "It -is so. I know all about McCarthy." - -The old man sank his face in his hands. "God help me!" he cried. -"But I would not have let the young man come to harm. I give you -my word that I would have spoken out if it went against him at -the Assizes." - -"I am glad to hear you say so," said Holmes gravely. - -"I would have spoken now had it not been for my dear girl. It -would break her heart--it will break her heart when she hears -that I am arrested." - -"It may not come to that," said Holmes. - -"What?" - -"I am no official agent. I understand that it was your daughter -who required my presence here, and I am acting in her interests. -Young McCarthy must be got off, however." - -"I am a dying man," said old Turner. "I have had diabetes for -years. My doctor says it is a question whether I shall live a -month. Yet I would rather die under my own roof than in a gaol." - -Holmes rose and sat down at the table with his pen in his hand -and a bundle of paper before him. "Just tell us the truth," he -said. "I shall jot down the facts. You will sign it, and Watson -here can witness it. Then I could produce your confession at the -last extremity to save young McCarthy. I promise you that I shall -not use it unless it is absolutely needed." - -"It's as well," said the old man; "it's a question whether I -shall live to the Assizes, so it matters little to me, but I -should wish to spare Alice the shock. And now I will make the -thing clear to you; it has been a long time in the acting, but -will not take me long to tell. - -"You didn't know this dead man, McCarthy. He was a devil -incarnate. I tell you that. God keep you out of the clutches of -such a man as he. His grip has been upon me these twenty years, -and he has blasted my life. I'll tell you first how I came to be -in his power. - -"It was in the early '60's at the diggings. I was a young chap -then, hot-blooded and reckless, ready to turn my hand at -anything; I got among bad companions, took to drink, had no luck -with my claim, took to the bush, and in a word became what you -would call over here a highway robber. There were six of us, and -we had a wild, free life of it, sticking up a station from time -to time, or stopping the wagons on the road to the diggings. -Black Jack of Ballarat was the name I went under, and our party -is still remembered in the colony as the Ballarat Gang. - -"One day a gold convoy came down from Ballarat to Melbourne, and -we lay in wait for it and attacked it. There were six troopers -and six of us, so it was a close thing, but we emptied four of -their saddles at the first volley. Three of our boys were killed, -however, before we got the swag. I put my pistol to the head of -the wagon-driver, who was this very man McCarthy. I wish to the -Lord that I had shot him then, but I spared him, though I saw his -wicked little eyes fixed on my face, as though to remember every -feature. We got away with the gold, became wealthy men, and made -our way over to England without being suspected. There I parted -from my old pals and determined to settle down to a quiet and -respectable life. I bought this estate, which chanced to be in -the market, and I set myself to do a little good with my money, -to make up for the way in which I had earned it. I married, too, -and though my wife died young she left me my dear little Alice. -Even when she was just a baby her wee hand seemed to lead me down -the right path as nothing else had ever done. In a word, I turned -over a new leaf and did my best to make up for the past. All was -going well when McCarthy laid his grip upon me. - -"I had gone up to town about an investment, and I met him in -Regent Street with hardly a coat to his back or a boot to his -foot. - -"'Here we are, Jack,' says he, touching me on the arm; 'we'll be -as good as a family to you. There's two of us, me and my son, and -you can have the keeping of us. If you don't--it's a fine, -law-abiding country is England, and there's always a policeman -within hail.' - -"Well, down they came to the west country, there was no shaking -them off, and there they have lived rent free on my best land -ever since. There was no rest for me, no peace, no forgetfulness; -turn where I would, there was his cunning, grinning face at my -elbow. It grew worse as Alice grew up, for he soon saw I was more -afraid of her knowing my past than of the police. Whatever he -wanted he must have, and whatever it was I gave him without -question, land, money, houses, until at last he asked a thing -which I could not give. He asked for Alice. - -"His son, you see, had grown up, and so had my girl, and as I was -known to be in weak health, it seemed a fine stroke to him that -his lad should step into the whole property. But there I was -firm. I would not have his cursed stock mixed with mine; not that -I had any dislike to the lad, but his blood was in him, and that -was enough. I stood firm. McCarthy threatened. I braved him to do -his worst. We were to meet at the pool midway between our houses -to talk it over. - -"When I went down there I found him talking with his son, so I -smoked a cigar and waited behind a tree until he should be alone. -But as I listened to his talk all that was black and bitter in -me seemed to come uppermost. He was urging his son to marry my -daughter with as little regard for what she might think as if she -were a slut from off the streets. It drove me mad to think that I -and all that I held most dear should be in the power of such a -man as this. Could I not snap the bond? I was already a dying and -a desperate man. Though clear of mind and fairly strong of limb, -I knew that my own fate was sealed. But my memory and my girl! -Both could be saved if I could but silence that foul tongue. I -did it, Mr. Holmes. I would do it again. Deeply as I have sinned, -I have led a life of martyrdom to atone for it. But that my girl -should be entangled in the same meshes which held me was more -than I could suffer. I struck him down with no more compunction -than if he had been some foul and venomous beast. His cry brought -back his son; but I had gained the cover of the wood, though I -was forced to go back to fetch the cloak which I had dropped in -my flight. That is the true story, gentlemen, of all that -occurred." - -"Well, it is not for me to judge you," said Holmes as the old man -signed the statement which had been drawn out. "I pray that we -may never be exposed to such a temptation." - -"I pray not, sir. And what do you intend to do?" - -"In view of your health, nothing. You are yourself aware that you -will soon have to answer for your deed at a higher court than the -Assizes. I will keep your confession, and if McCarthy is -condemned I shall be forced to use it. If not, it shall never be -seen by mortal eye; and your secret, whether you be alive or -dead, shall be safe with us." - -"Farewell, then," said the old man solemnly. "Your own deathbeds, -when they come, will be the easier for the thought of the peace -which you have given to mine." Tottering and shaking in all his -giant frame, he stumbled slowly from the room. - -"God help us!" said Holmes after a long silence. "Why does fate -play such tricks with poor, helpless worms? I never hear of such -a case as this that I do not think of Baxter's words, and say, -'There, but for the grace of God, goes Sherlock Holmes.'" - -James McCarthy was acquitted at the Assizes on the strength of a -number of objections which had been drawn out by Holmes and -submitted to the defending counsel. Old Turner lived for seven -months after our interview, but he is now dead; and there is -every prospect that the son and daughter may come to live happily -together in ignorance of the black cloud which rests upon their -past. - - - -ADVENTURE V. THE FIVE ORANGE PIPS - -When I glance over my notes and records of the Sherlock Holmes -cases between the years '82 and '90, I am faced by so many which -present strange and interesting features that it is no easy -matter to know which to choose and which to leave. Some, however, -have already gained publicity through the papers, and others have -not offered a field for those peculiar qualities which my friend -possessed in so high a degree, and which it is the object of -these papers to illustrate. Some, too, have baffled his -analytical skill, and would be, as narratives, beginnings without -an ending, while others have been but partially cleared up, and -have their explanations founded rather upon conjecture and -surmise than on that absolute logical proof which was so dear to -him. There is, however, one of these last which was so remarkable -in its details and so startling in its results that I am tempted -to give some account of it in spite of the fact that there are -points in connection with it which never have been, and probably -never will be, entirely cleared up. - -The year '87 furnished us with a long series of cases of greater -or less interest, of which I retain the records. Among my -headings under this one twelve months I find an account of the -adventure of the Paradol Chamber, of the Amateur Mendicant -Society, who held a luxurious club in the lower vault of a -furniture warehouse, of the facts connected with the loss of the -British barque "Sophy Anderson", of the singular adventures of the -Grice Patersons in the island of Uffa, and finally of the -Camberwell poisoning case. In the latter, as may be remembered, -Sherlock Holmes was able, by winding up the dead man's watch, to -prove that it had been wound up two hours before, and that -therefore the deceased had gone to bed within that time--a -deduction which was of the greatest importance in clearing up the -case. All these I may sketch out at some future date, but none of -them present such singular features as the strange train of -circumstances which I have now taken up my pen to describe. - -It was in the latter days of September, and the equinoctial gales -had set in with exceptional violence. All day the wind had -screamed and the rain had beaten against the windows, so that -even here in the heart of great, hand-made London we were forced -to raise our minds for the instant from the routine of life and -to recognise the presence of those great elemental forces which -shriek at mankind through the bars of his civilisation, like -untamed beasts in a cage. As evening drew in, the storm grew -higher and louder, and the wind cried and sobbed like a child in -the chimney. Sherlock Holmes sat moodily at one side of the -fireplace cross-indexing his records of crime, while I at the -other was deep in one of Clark Russell's fine sea-stories until -the howl of the gale from without seemed to blend with the text, -and the splash of the rain to lengthen out into the long swash of -the sea waves. My wife was on a visit to her mother's, and for a -few days I was a dweller once more in my old quarters at Baker -Street. - -"Why," said I, glancing up at my companion, "that was surely the -bell. Who could come to-night? Some friend of yours, perhaps?" - -"Except yourself I have none," he answered. "I do not encourage -visitors." - -"A client, then?" - -"If so, it is a serious case. Nothing less would bring a man out -on such a day and at such an hour. But I take it that it is more -likely to be some crony of the landlady's." - -Sherlock Holmes was wrong in his conjecture, however, for there -came a step in the passage and a tapping at the door. He -stretched out his long arm to turn the lamp away from himself and -towards the vacant chair upon which a newcomer must sit. - -"Come in!" said he. - -The man who entered was young, some two-and-twenty at the -outside, well-groomed and trimly clad, with something of -refinement and delicacy in his bearing. The streaming umbrella -which he held in his hand, and his long shining waterproof told -of the fierce weather through which he had come. He looked about -him anxiously in the glare of the lamp, and I could see that his -face was pale and his eyes heavy, like those of a man who is -weighed down with some great anxiety. - -"I owe you an apology," he said, raising his golden pince-nez to -his eyes. "I trust that I am not intruding. I fear that I have -brought some traces of the storm and rain into your snug -chamber." - -"Give me your coat and umbrella," said Holmes. "They may rest -here on the hook and will be dry presently. You have come up from -the south-west, I see." - -"Yes, from Horsham." - -"That clay and chalk mixture which I see upon your toe caps is -quite distinctive." - -"I have come for advice." - -"That is easily got." - -"And help." - -"That is not always so easy." - -"I have heard of you, Mr. Holmes. I heard from Major Prendergast -how you saved him in the Tankerville Club scandal." - -"Ah, of course. He was wrongfully accused of cheating at cards." - -"He said that you could solve anything." - -"He said too much." - -"That you are never beaten." - -"I have been beaten four times--three times by men, and once by a -woman." - -"But what is that compared with the number of your successes?" - -"It is true that I have been generally successful." - -"Then you may be so with me." - -"I beg that you will draw your chair up to the fire and favour me -with some details as to your case." - -"It is no ordinary one." - -"None of those which come to me are. I am the last court of -appeal." - -"And yet I question, sir, whether, in all your experience, you -have ever listened to a more mysterious and inexplicable chain of -events than those which have happened in my own family." - -"You fill me with interest," said Holmes. "Pray give us the -essential facts from the commencement, and I can afterwards -question you as to those details which seem to me to be most -important." - -The young man pulled his chair up and pushed his wet feet out -towards the blaze. - -"My name," said he, "is John Openshaw, but my own affairs have, -as far as I can understand, little to do with this awful -business. It is a hereditary matter; so in order to give you an -idea of the facts, I must go back to the commencement of the -affair. - -"You must know that my grandfather had two sons--my uncle Elias -and my father Joseph. My father had a small factory at Coventry, -which he enlarged at the time of the invention of bicycling. He -was a patentee of the Openshaw unbreakable tire, and his business -met with such success that he was able to sell it and to retire -upon a handsome competence. - -"My uncle Elias emigrated to America when he was a young man and -became a planter in Florida, where he was reported to have done -very well. At the time of the war he fought in Jackson's army, -and afterwards under Hood, where he rose to be a colonel. When -Lee laid down his arms my uncle returned to his plantation, where -he remained for three or four years. About 1869 or 1870 he came -back to Europe and took a small estate in Sussex, near Horsham. -He had made a very considerable fortune in the States, and his -reason for leaving them was his aversion to the negroes, and his -dislike of the Republican policy in extending the franchise to -them. He was a singular man, fierce and quick-tempered, very -foul-mouthed when he was angry, and of a most retiring -disposition. During all the years that he lived at Horsham, I -doubt if ever he set foot in the town. He had a garden and two or -three fields round his house, and there he would take his -exercise, though very often for weeks on end he would never leave -his room. He drank a great deal of brandy and smoked very -heavily, but he would see no society and did not want any -friends, not even his own brother. - -"He didn't mind me; in fact, he took a fancy to me, for at the -time when he saw me first I was a youngster of twelve or so. This -would be in the year 1878, after he had been eight or nine years -in England. He begged my father to let me live with him and he -was very kind to me in his way. When he was sober he used to be -fond of playing backgammon and draughts with me, and he would -make me his representative both with the servants and with the -tradespeople, so that by the time that I was sixteen I was quite -master of the house. I kept all the keys and could go where I -liked and do what I liked, so long as I did not disturb him in -his privacy. There was one singular exception, however, for he -had a single room, a lumber-room up among the attics, which was -invariably locked, and which he would never permit either me or -anyone else to enter. With a boy's curiosity I have peeped -through the keyhole, but I was never able to see more than such a -collection of old trunks and bundles as would be expected in such -a room. - -"One day--it was in March, 1883--a letter with a foreign stamp -lay upon the table in front of the colonel's plate. It was not a -common thing for him to receive letters, for his bills were all -paid in ready money, and he had no friends of any sort. 'From -India!' said he as he took it up, 'Pondicherry postmark! What can -this be?' Opening it hurriedly, out there jumped five little -dried orange pips, which pattered down upon his plate. I began to -laugh at this, but the laugh was struck from my lips at the sight -of his face. His lip had fallen, his eyes were protruding, his -skin the colour of putty, and he glared at the envelope which he -still held in his trembling hand, 'K. K. K.!' he shrieked, and -then, 'My God, my God, my sins have overtaken me!' - -"'What is it, uncle?' I cried. - -"'Death,' said he, and rising from the table he retired to his -room, leaving me palpitating with horror. I took up the envelope -and saw scrawled in red ink upon the inner flap, just above the -gum, the letter K three times repeated. There was nothing else -save the five dried pips. What could be the reason of his -overpowering terror? I left the breakfast-table, and as I -ascended the stair I met him coming down with an old rusty key, -which must have belonged to the attic, in one hand, and a small -brass box, like a cashbox, in the other. - -"'They may do what they like, but I'll checkmate them still,' -said he with an oath. 'Tell Mary that I shall want a fire in my -room to-day, and send down to Fordham, the Horsham lawyer.' - -"I did as he ordered, and when the lawyer arrived I was asked to -step up to the room. The fire was burning brightly, and in the -grate there was a mass of black, fluffy ashes, as of burned -paper, while the brass box stood open and empty beside it. As I -glanced at the box I noticed, with a start, that upon the lid was -printed the treble K which I had read in the morning upon the -envelope. - -"'I wish you, John,' said my uncle, 'to witness my will. I leave -my estate, with all its advantages and all its disadvantages, to -my brother, your father, whence it will, no doubt, descend to -you. If you can enjoy it in peace, well and good! If you find you -cannot, take my advice, my boy, and leave it to your deadliest -enemy. I am sorry to give you such a two-edged thing, but I can't -say what turn things are going to take. Kindly sign the paper -where Mr. Fordham shows you.' - -"I signed the paper as directed, and the lawyer took it away with -him. The singular incident made, as you may think, the deepest -impression upon me, and I pondered over it and turned it every -way in my mind without being able to make anything of it. Yet I -could not shake off the vague feeling of dread which it left -behind, though the sensation grew less keen as the weeks passed -and nothing happened to disturb the usual routine of our lives. I -could see a change in my uncle, however. He drank more than ever, -and he was less inclined for any sort of society. Most of his -time he would spend in his room, with the door locked upon the -inside, but sometimes he would emerge in a sort of drunken frenzy -and would burst out of the house and tear about the garden with a -revolver in his hand, screaming out that he was afraid of no man, -and that he was not to be cooped up, like a sheep in a pen, by -man or devil. When these hot fits were over, however, he would -rush tumultuously in at the door and lock and bar it behind him, -like a man who can brazen it out no longer against the terror -which lies at the roots of his soul. At such times I have seen -his face, even on a cold day, glisten with moisture, as though it -were new raised from a basin. - -"Well, to come to an end of the matter, Mr. Holmes, and not to -abuse your patience, there came a night when he made one of those -drunken sallies from which he never came back. We found him, when -we went to search for him, face downward in a little -green-scummed pool, which lay at the foot of the garden. There -was no sign of any violence, and the water was but two feet deep, -so that the jury, having regard to his known eccentricity, -brought in a verdict of 'suicide.' But I, who knew how he winced -from the very thought of death, had much ado to persuade myself -that he had gone out of his way to meet it. The matter passed, -however, and my father entered into possession of the estate, and -of some 14,000 pounds, which lay to his credit at the bank." - -"One moment," Holmes interposed, "your statement is, I foresee, -one of the most remarkable to which I have ever listened. Let me -have the date of the reception by your uncle of the letter, and -the date of his supposed suicide." - -"The letter arrived on March 10, 1883. His death was seven weeks -later, upon the night of May 2nd." - -"Thank you. Pray proceed." - -"When my father took over the Horsham property, he, at my -request, made a careful examination of the attic, which had been -always locked up. We found the brass box there, although its -contents had been destroyed. On the inside of the cover was a -paper label, with the initials of K. K. K. repeated upon it, and -'Letters, memoranda, receipts, and a register' written beneath. -These, we presume, indicated the nature of the papers which had -been destroyed by Colonel Openshaw. For the rest, there was -nothing of much importance in the attic save a great many -scattered papers and note-books bearing upon my uncle's life in -America. Some of them were of the war time and showed that he had -done his duty well and had borne the repute of a brave soldier. -Others were of a date during the reconstruction of the Southern -states, and were mostly concerned with politics, for he had -evidently taken a strong part in opposing the carpet-bag -politicians who had been sent down from the North. - -"Well, it was the beginning of '84 when my father came to live at -Horsham, and all went as well as possible with us until the -January of '85. On the fourth day after the new year I heard my -father give a sharp cry of surprise as we sat together at the -breakfast-table. There he was, sitting with a newly opened -envelope in one hand and five dried orange pips in the -outstretched palm of the other one. He had always laughed at what -he called my cock-and-bull story about the colonel, but he looked -very scared and puzzled now that the same thing had come upon -himself. - -"'Why, what on earth does this mean, John?' he stammered. - -"My heart had turned to lead. 'It is K. K. K.,' said I. - -"He looked inside the envelope. 'So it is,' he cried. 'Here are -the very letters. But what is this written above them?' - -"'Put the papers on the sundial,' I read, peeping over his -shoulder. - -"'What papers? What sundial?' he asked. - -"'The sundial in the garden. There is no other,' said I; 'but the -papers must be those that are destroyed.' - -"'Pooh!' said he, gripping hard at his courage. 'We are in a -civilised land here, and we can't have tomfoolery of this kind. -Where does the thing come from?' - -"'From Dundee,' I answered, glancing at the postmark. - -"'Some preposterous practical joke,' said he. 'What have I to do -with sundials and papers? I shall take no notice of such -nonsense.' - -"'I should certainly speak to the police,' I said. - -"'And be laughed at for my pains. Nothing of the sort.' - -"'Then let me do so?' - -"'No, I forbid you. I won't have a fuss made about such -nonsense.' - -"It was in vain to argue with him, for he was a very obstinate -man. I went about, however, with a heart which was full of -forebodings. - -"On the third day after the coming of the letter my father went -from home to visit an old friend of his, Major Freebody, who is -in command of one of the forts upon Portsdown Hill. I was glad -that he should go, for it seemed to me that he was farther from -danger when he was away from home. In that, however, I was in -error. Upon the second day of his absence I received a telegram -from the major, imploring me to come at once. My father had -fallen over one of the deep chalk-pits which abound in the -neighbourhood, and was lying senseless, with a shattered skull. I -hurried to him, but he passed away without having ever recovered -his consciousness. He had, as it appears, been returning from -Fareham in the twilight, and as the country was unknown to him, -and the chalk-pit unfenced, the jury had no hesitation in -bringing in a verdict of 'death from accidental causes.' -Carefully as I examined every fact connected with his death, I -was unable to find anything which could suggest the idea of -murder. There were no signs of violence, no footmarks, no -robbery, no record of strangers having been seen upon the roads. -And yet I need not tell you that my mind was far from at ease, -and that I was well-nigh certain that some foul plot had been -woven round him. - -"In this sinister way I came into my inheritance. You will ask me -why I did not dispose of it? I answer, because I was well -convinced that our troubles were in some way dependent upon an -incident in my uncle's life, and that the danger would be as -pressing in one house as in another. - -"It was in January, '85, that my poor father met his end, and two -years and eight months have elapsed since then. During that time -I have lived happily at Horsham, and I had begun to hope that -this curse had passed away from the family, and that it had ended -with the last generation. I had begun to take comfort too soon, -however; yesterday morning the blow fell in the very shape in -which it had come upon my father." - -The young man took from his waistcoat a crumpled envelope, and -turning to the table he shook out upon it five little dried -orange pips. - -"This is the envelope," he continued. "The postmark is -London--eastern division. Within are the very words which were -upon my father's last message: 'K. K. K.'; and then 'Put the -papers on the sundial.'" - -"What have you done?" asked Holmes. - -"Nothing." - -"Nothing?" - -"To tell the truth"--he sank his face into his thin, white -hands--"I have felt helpless. I have felt like one of those poor -rabbits when the snake is writhing towards it. I seem to be in -the grasp of some resistless, inexorable evil, which no foresight -and no precautions can guard against." - -"Tut! tut!" cried Sherlock Holmes. "You must act, man, or you are -lost. Nothing but energy can save you. This is no time for -despair." - -"I have seen the police." - -"Ah!" - -"But they listened to my story with a smile. I am convinced that -the inspector has formed the opinion that the letters are all -practical jokes, and that the deaths of my relations were really -accidents, as the jury stated, and were not to be connected with -the warnings." - -Holmes shook his clenched hands in the air. "Incredible -imbecility!" he cried. - -"They have, however, allowed me a policeman, who may remain in -the house with me." - -"Has he come with you to-night?" - -"No. His orders were to stay in the house." - -Again Holmes raved in the air. - -"Why did you come to me," he cried, "and, above all, why did you -not come at once?" - -"I did not know. It was only to-day that I spoke to Major -Prendergast about my troubles and was advised by him to come to -you." - -"It is really two days since you had the letter. We should have -acted before this. You have no further evidence, I suppose, than -that which you have placed before us--no suggestive detail which -might help us?" - -"There is one thing," said John Openshaw. He rummaged in his coat -pocket, and, drawing out a piece of discoloured, blue-tinted -paper, he laid it out upon the table. "I have some remembrance," -said he, "that on the day when my uncle burned the papers I -observed that the small, unburned margins which lay amid the -ashes were of this particular colour. I found this single sheet -upon the floor of his room, and I am inclined to think that it -may be one of the papers which has, perhaps, fluttered out from -among the others, and in that way has escaped destruction. Beyond -the mention of pips, I do not see that it helps us much. I think -myself that it is a page from some private diary. The writing is -undoubtedly my uncle's." - -Holmes moved the lamp, and we both bent over the sheet of paper, -which showed by its ragged edge that it had indeed been torn from -a book. It was headed, "March, 1869," and beneath were the -following enigmatical notices: - -"4th. Hudson came. Same old platform. - -"7th. Set the pips on McCauley, Paramore, and - John Swain, of St. Augustine. - -"9th. McCauley cleared. - -"10th. John Swain cleared. - -"12th. Visited Paramore. All well." - -"Thank you!" said Holmes, folding up the paper and returning it -to our visitor. "And now you must on no account lose another -instant. We cannot spare time even to discuss what you have told -me. You must get home instantly and act." - -"What shall I do?" - -"There is but one thing to do. It must be done at once. You must -put this piece of paper which you have shown us into the brass -box which you have described. You must also put in a note to say -that all the other papers were burned by your uncle, and that -this is the only one which remains. You must assert that in such -words as will carry conviction with them. Having done this, you -must at once put the box out upon the sundial, as directed. Do -you understand?" - -"Entirely." - -"Do not think of revenge, or anything of the sort, at present. I -think that we may gain that by means of the law; but we have our -web to weave, while theirs is already woven. The first -consideration is to remove the pressing danger which threatens -you. The second is to clear up the mystery and to punish the -guilty parties." - -"I thank you," said the young man, rising and pulling on his -overcoat. "You have given me fresh life and hope. I shall -certainly do as you advise." - -"Do not lose an instant. And, above all, take care of yourself in -the meanwhile, for I do not think that there can be a doubt that -you are threatened by a very real and imminent danger. How do you -go back?" - -"By train from Waterloo." - -"It is not yet nine. The streets will be crowded, so I trust that -you may be in safety. And yet you cannot guard yourself too -closely." - -"I am armed." - -"That is well. To-morrow I shall set to work upon your case." - -"I shall see you at Horsham, then?" - -"No, your secret lies in London. It is there that I shall seek -it." - -"Then I shall call upon you in a day, or in two days, with news -as to the box and the papers. I shall take your advice in every -particular." He shook hands with us and took his leave. Outside -the wind still screamed and the rain splashed and pattered -against the windows. This strange, wild story seemed to have come -to us from amid the mad elements--blown in upon us like a sheet -of sea-weed in a gale--and now to have been reabsorbed by them -once more. - -Sherlock Holmes sat for some time in silence, with his head sunk -forward and his eyes bent upon the red glow of the fire. Then he -lit his pipe, and leaning back in his chair he watched the blue -smoke-rings as they chased each other up to the ceiling. - -"I think, Watson," he remarked at last, "that of all our cases we -have had none more fantastic than this." - -"Save, perhaps, the Sign of Four." - -"Well, yes. Save, perhaps, that. And yet this John Openshaw seems -to me to be walking amid even greater perils than did the -Sholtos." - -"But have you," I asked, "formed any definite conception as to -what these perils are?" - -"There can be no question as to their nature," he answered. - -"Then what are they? Who is this K. K. K., and why does he pursue -this unhappy family?" - -Sherlock Holmes closed his eyes and placed his elbows upon the -arms of his chair, with his finger-tips together. "The ideal -reasoner," he remarked, "would, when he had once been shown a -single fact in all its bearings, deduce from it not only all the -chain of events which led up to it but also all the results which -would follow from it. As Cuvier could correctly describe a whole -animal by the contemplation of a single bone, so the observer who -has thoroughly understood one link in a series of incidents -should be able to accurately state all the other ones, both -before and after. We have not yet grasped the results which the -reason alone can attain to. Problems may be solved in the study -which have baffled all those who have sought a solution by the -aid of their senses. To carry the art, however, to its highest -pitch, it is necessary that the reasoner should be able to -utilise all the facts which have come to his knowledge; and this -in itself implies, as you will readily see, a possession of all -knowledge, which, even in these days of free education and -encyclopaedias, is a somewhat rare accomplishment. It is not so -impossible, however, that a man should possess all knowledge -which is likely to be useful to him in his work, and this I have -endeavoured in my case to do. If I remember rightly, you on one -occasion, in the early days of our friendship, defined my limits -in a very precise fashion." - -"Yes," I answered, laughing. "It was a singular document. -Philosophy, astronomy, and politics were marked at zero, I -remember. Botany variable, geology profound as regards the -mud-stains from any region within fifty miles of town, chemistry -eccentric, anatomy unsystematic, sensational literature and crime -records unique, violin-player, boxer, swordsman, lawyer, and -self-poisoner by cocaine and tobacco. Those, I think, were the -main points of my analysis." - -Holmes grinned at the last item. "Well," he said, "I say now, as -I said then, that a man should keep his little brain-attic -stocked with all the furniture that he is likely to use, and the -rest he can put away in the lumber-room of his library, where he -can get it if he wants it. Now, for such a case as the one which -has been submitted to us to-night, we need certainly to muster -all our resources. Kindly hand me down the letter K of the -'American Encyclopaedia' which stands upon the shelf beside you. -Thank you. Now let us consider the situation and see what may be -deduced from it. In the first place, we may start with a strong -presumption that Colonel Openshaw had some very strong reason for -leaving America. Men at his time of life do not change all their -habits and exchange willingly the charming climate of Florida for -the lonely life of an English provincial town. His extreme love -of solitude in England suggests the idea that he was in fear of -someone or something, so we may assume as a working hypothesis -that it was fear of someone or something which drove him from -America. As to what it was he feared, we can only deduce that by -considering the formidable letters which were received by himself -and his successors. Did you remark the postmarks of those -letters?" - -"The first was from Pondicherry, the second from Dundee, and the -third from London." - -"From East London. What do you deduce from that?" - -"They are all seaports. That the writer was on board of a ship." - -"Excellent. We have already a clue. There can be no doubt that -the probability--the strong probability--is that the writer was -on board of a ship. And now let us consider another point. In the -case of Pondicherry, seven weeks elapsed between the threat and -its fulfilment, in Dundee it was only some three or four days. -Does that suggest anything?" - -"A greater distance to travel." - -"But the letter had also a greater distance to come." - -"Then I do not see the point." - -"There is at least a presumption that the vessel in which the man -or men are is a sailing-ship. It looks as if they always send -their singular warning or token before them when starting upon -their mission. You see how quickly the deed followed the sign -when it came from Dundee. If they had come from Pondicherry in a -steamer they would have arrived almost as soon as their letter. -But, as a matter of fact, seven weeks elapsed. I think that those -seven weeks represented the difference between the mail-boat which -brought the letter and the sailing vessel which brought the -writer." - -"It is possible." - -"More than that. It is probable. And now you see the deadly -urgency of this new case, and why I urged young Openshaw to -caution. The blow has always fallen at the end of the time which -it would take the senders to travel the distance. But this one -comes from London, and therefore we cannot count upon delay." - -"Good God!" I cried. "What can it mean, this relentless -persecution?" - -"The papers which Openshaw carried are obviously of vital -importance to the person or persons in the sailing-ship. I think -that it is quite clear that there must be more than one of them. -A single man could not have carried out two deaths in such a way -as to deceive a coroner's jury. There must have been several in -it, and they must have been men of resource and determination. -Their papers they mean to have, be the holder of them who it may. -In this way you see K. K. K. ceases to be the initials of an -individual and becomes the badge of a society." - -"But of what society?" - -"Have you never--" said Sherlock Holmes, bending forward and -sinking his voice--"have you never heard of the Ku Klux Klan?" - -"I never have." - -Holmes turned over the leaves of the book upon his knee. "Here it -is," said he presently: - -"'Ku Klux Klan. A name derived from the fanciful resemblance to -the sound produced by cocking a rifle. This terrible secret -society was formed by some ex-Confederate soldiers in the -Southern states after the Civil War, and it rapidly formed local -branches in different parts of the country, notably in Tennessee, -Louisiana, the Carolinas, Georgia, and Florida. Its power was -used for political purposes, principally for the terrorising of -the negro voters and the murdering and driving from the country -of those who were opposed to its views. Its outrages were usually -preceded by a warning sent to the marked man in some fantastic -but generally recognised shape--a sprig of oak-leaves in some -parts, melon seeds or orange pips in others. On receiving this -the victim might either openly abjure his former ways, or might -fly from the country. If he braved the matter out, death would -unfailingly come upon him, and usually in some strange and -unforeseen manner. So perfect was the organisation of the -society, and so systematic its methods, that there is hardly a -case upon record where any man succeeded in braving it with -impunity, or in which any of its outrages were traced home to the -perpetrators. For some years the organisation flourished in spite -of the efforts of the United States government and of the better -classes of the community in the South. Eventually, in the year -1869, the movement rather suddenly collapsed, although there have -been sporadic outbreaks of the same sort since that date.' - -"You will observe," said Holmes, laying down the volume, "that -the sudden breaking up of the society was coincident with the -disappearance of Openshaw from America with their papers. It may -well have been cause and effect. It is no wonder that he and his -family have some of the more implacable spirits upon their track. -You can understand that this register and diary may implicate -some of the first men in the South, and that there may be many -who will not sleep easy at night until it is recovered." - -"Then the page we have seen--" - -"Is such as we might expect. It ran, if I remember right, 'sent -the pips to A, B, and C'--that is, sent the society's warning to -them. Then there are successive entries that A and B cleared, or -left the country, and finally that C was visited, with, I fear, a -sinister result for C. Well, I think, Doctor, that we may let -some light into this dark place, and I believe that the only -chance young Openshaw has in the meantime is to do what I have -told him. There is nothing more to be said or to be done -to-night, so hand me over my violin and let us try to forget for -half an hour the miserable weather and the still more miserable -ways of our fellow-men." - - -It had cleared in the morning, and the sun was shining with a -subdued brightness through the dim veil which hangs over the -great city. Sherlock Holmes was already at breakfast when I came -down. - -"You will excuse me for not waiting for you," said he; "I have, I -foresee, a very busy day before me in looking into this case of -young Openshaw's." - -"What steps will you take?" I asked. - -"It will very much depend upon the results of my first inquiries. -I may have to go down to Horsham, after all." - -"You will not go there first?" - -"No, I shall commence with the City. Just ring the bell and the -maid will bring up your coffee." - -As I waited, I lifted the unopened newspaper from the table and -glanced my eye over it. It rested upon a heading which sent a -chill to my heart. - -"Holmes," I cried, "you are too late." - -"Ah!" said he, laying down his cup, "I feared as much. How was it -done?" He spoke calmly, but I could see that he was deeply moved. - -"My eye caught the name of Openshaw, and the heading 'Tragedy -Near Waterloo Bridge.' Here is the account: - -"Between nine and ten last night Police-Constable Cook, of the H -Division, on duty near Waterloo Bridge, heard a cry for help and -a splash in the water. The night, however, was extremely dark and -stormy, so that, in spite of the help of several passers-by, it -was quite impossible to effect a rescue. The alarm, however, was -given, and, by the aid of the water-police, the body was -eventually recovered. It proved to be that of a young gentleman -whose name, as it appears from an envelope which was found in his -pocket, was John Openshaw, and whose residence is near Horsham. -It is conjectured that he may have been hurrying down to catch -the last train from Waterloo Station, and that in his haste and -the extreme darkness he missed his path and walked over the edge -of one of the small landing-places for river steamboats. The body -exhibited no traces of violence, and there can be no doubt that -the deceased had been the victim of an unfortunate accident, -which should have the effect of calling the attention of the -authorities to the condition of the riverside landing-stages." - -We sat in silence for some minutes, Holmes more depressed and -shaken than I had ever seen him. - -"That hurts my pride, Watson," he said at last. "It is a petty -feeling, no doubt, but it hurts my pride. It becomes a personal -matter with me now, and, if God sends me health, I shall set my -hand upon this gang. That he should come to me for help, and that -I should send him away to his death--!" He sprang from his chair -and paced about the room in uncontrollable agitation, with a -flush upon his sallow cheeks and a nervous clasping and -unclasping of his long thin hands. - -"They must be cunning devils," he exclaimed at last. "How could -they have decoyed him down there? The Embankment is not on the -direct line to the station. The bridge, no doubt, was too -crowded, even on such a night, for their purpose. Well, Watson, -we shall see who will win in the long run. I am going out now!" - -"To the police?" - -"No; I shall be my own police. When I have spun the web they may -take the flies, but not before." - -All day I was engaged in my professional work, and it was late in -the evening before I returned to Baker Street. Sherlock Holmes -had not come back yet. It was nearly ten o'clock before he -entered, looking pale and worn. He walked up to the sideboard, -and tearing a piece from the loaf he devoured it voraciously, -washing it down with a long draught of water. - -"You are hungry," I remarked. - -"Starving. It had escaped my memory. I have had nothing since -breakfast." - -"Nothing?" - -"Not a bite. I had no time to think of it." - -"And how have you succeeded?" - -"Well." - -"You have a clue?" - -"I have them in the hollow of my hand. Young Openshaw shall not -long remain unavenged. Why, Watson, let us put their own devilish -trade-mark upon them. It is well thought of!" - -"What do you mean?" - -He took an orange from the cupboard, and tearing it to pieces he -squeezed out the pips upon the table. Of these he took five and -thrust them into an envelope. On the inside of the flap he wrote -"S. H. for J. O." Then he sealed it and addressed it to "Captain -James Calhoun, Barque 'Lone Star,' Savannah, Georgia." - -"That will await him when he enters port," said he, chuckling. -"It may give him a sleepless night. He will find it as sure a -precursor of his fate as Openshaw did before him." - -"And who is this Captain Calhoun?" - -"The leader of the gang. I shall have the others, but he first." - -"How did you trace it, then?" - -He took a large sheet of paper from his pocket, all covered with -dates and names. - -"I have spent the whole day," said he, "over Lloyd's registers -and files of the old papers, following the future career of every -vessel which touched at Pondicherry in January and February in -'83. There were thirty-six ships of fair tonnage which were -reported there during those months. Of these, one, the 'Lone Star,' -instantly attracted my attention, since, although it was reported -as having cleared from London, the name is that which is given to -one of the states of the Union." - -"Texas, I think." - -"I was not and am not sure which; but I knew that the ship must -have an American origin." - -"What then?" - -"I searched the Dundee records, and when I found that the barque -'Lone Star' was there in January, '85, my suspicion became a -certainty. I then inquired as to the vessels which lay at present -in the port of London." - -"Yes?" - -"The 'Lone Star' had arrived here last week. I went down to the -Albert Dock and found that she had been taken down the river by -the early tide this morning, homeward bound to Savannah. I wired -to Gravesend and learned that she had passed some time ago, and -as the wind is easterly I have no doubt that she is now past the -Goodwins and not very far from the Isle of Wight." - -"What will you do, then?" - -"Oh, I have my hand upon him. He and the two mates, are as I -learn, the only native-born Americans in the ship. The others are -Finns and Germans. I know, also, that they were all three away -from the ship last night. I had it from the stevedore who has -been loading their cargo. By the time that their sailing-ship -reaches Savannah the mail-boat will have carried this letter, and -the cable will have informed the police of Savannah that these -three gentlemen are badly wanted here upon a charge of murder." - -There is ever a flaw, however, in the best laid of human plans, -and the murderers of John Openshaw were never to receive the -orange pips which would show them that another, as cunning and as -resolute as themselves, was upon their track. Very long and very -severe were the equinoctial gales that year. We waited long for -news of the "Lone Star" of Savannah, but none ever reached us. We -did at last hear that somewhere far out in the Atlantic a -shattered stern-post of a boat was seen swinging in the trough -of a wave, with the letters "L. S." carved upon it, and that is -all which we shall ever know of the fate of the "Lone Star." - - - -ADVENTURE VI. THE MAN WITH THE TWISTED LIP - -Isa Whitney, brother of the late Elias Whitney, D.D., Principal -of the Theological College of St. George's, was much addicted to -opium. The habit grew upon him, as I understand, from some -foolish freak when he was at college; for having read De -Quincey's description of his dreams and sensations, he had -drenched his tobacco with laudanum in an attempt to produce the -same effects. He found, as so many more have done, that the -practice is easier to attain than to get rid of, and for many -years he continued to be a slave to the drug, an object of -mingled horror and pity to his friends and relatives. I can see -him now, with yellow, pasty face, drooping lids, and pin-point -pupils, all huddled in a chair, the wreck and ruin of a noble -man. - -One night--it was in June, '89--there came a ring to my bell, -about the hour when a man gives his first yawn and glances at the -clock. I sat up in my chair, and my wife laid her needle-work -down in her lap and made a little face of disappointment. - -"A patient!" said she. "You'll have to go out." - -I groaned, for I was newly come back from a weary day. - -We heard the door open, a few hurried words, and then quick steps -upon the linoleum. Our own door flew open, and a lady, clad in -some dark-coloured stuff, with a black veil, entered the room. - -"You will excuse my calling so late," she began, and then, -suddenly losing her self-control, she ran forward, threw her arms -about my wife's neck, and sobbed upon her shoulder. "Oh, I'm in -such trouble!" she cried; "I do so want a little help." - -"Why," said my wife, pulling up her veil, "it is Kate Whitney. -How you startled me, Kate! I had not an idea who you were when -you came in." - -"I didn't know what to do, so I came straight to you." That was -always the way. Folk who were in grief came to my wife like birds -to a light-house. - -"It was very sweet of you to come. Now, you must have some wine -and water, and sit here comfortably and tell us all about it. Or -should you rather that I sent James off to bed?" - -"Oh, no, no! I want the doctor's advice and help, too. It's about -Isa. He has not been home for two days. I am so frightened about -him!" - -It was not the first time that she had spoken to us of her -husband's trouble, to me as a doctor, to my wife as an old friend -and school companion. We soothed and comforted her by such words -as we could find. Did she know where her husband was? Was it -possible that we could bring him back to her? - -It seems that it was. She had the surest information that of late -he had, when the fit was on him, made use of an opium den in the -farthest east of the City. Hitherto his orgies had always been -confined to one day, and he had come back, twitching and -shattered, in the evening. But now the spell had been upon him -eight-and-forty hours, and he lay there, doubtless among the -dregs of the docks, breathing in the poison or sleeping off the -effects. There he was to be found, she was sure of it, at the Bar -of Gold, in Upper Swandam Lane. But what was she to do? How could -she, a young and timid woman, make her way into such a place and -pluck her husband out from among the ruffians who surrounded him? - -There was the case, and of course there was but one way out of -it. Might I not escort her to this place? And then, as a second -thought, why should she come at all? I was Isa Whitney's medical -adviser, and as such I had influence over him. I could manage it -better if I were alone. I promised her on my word that I would -send him home in a cab within two hours if he were indeed at the -address which she had given me. And so in ten minutes I had left -my armchair and cheery sitting-room behind me, and was speeding -eastward in a hansom on a strange errand, as it seemed to me at -the time, though the future only could show how strange it was to -be. - -But there was no great difficulty in the first stage of my -adventure. Upper Swandam Lane is a vile alley lurking behind the -high wharves which line the north side of the river to the east -of London Bridge. Between a slop-shop and a gin-shop, approached -by a steep flight of steps leading down to a black gap like the -mouth of a cave, I found the den of which I was in search. -Ordering my cab to wait, I passed down the steps, worn hollow in -the centre by the ceaseless tread of drunken feet; and by the -light of a flickering oil-lamp above the door I found the latch -and made my way into a long, low room, thick and heavy with the -brown opium smoke, and terraced with wooden berths, like the -forecastle of an emigrant ship. - -Through the gloom one could dimly catch a glimpse of bodies lying -in strange fantastic poses, bowed shoulders, bent knees, heads -thrown back, and chins pointing upward, with here and there a -dark, lack-lustre eye turned upon the newcomer. Out of the black -shadows there glimmered little red circles of light, now bright, -now faint, as the burning poison waxed or waned in the bowls of -the metal pipes. The most lay silent, but some muttered to -themselves, and others talked together in a strange, low, -monotonous voice, their conversation coming in gushes, and then -suddenly tailing off into silence, each mumbling out his own -thoughts and paying little heed to the words of his neighbour. At -the farther end was a small brazier of burning charcoal, beside -which on a three-legged wooden stool there sat a tall, thin old -man, with his jaw resting upon his two fists, and his elbows upon -his knees, staring into the fire. - -As I entered, a sallow Malay attendant had hurried up with a pipe -for me and a supply of the drug, beckoning me to an empty berth. - -"Thank you. I have not come to stay," said I. "There is a friend -of mine here, Mr. Isa Whitney, and I wish to speak with him." - -There was a movement and an exclamation from my right, and -peering through the gloom, I saw Whitney, pale, haggard, and -unkempt, staring out at me. - -"My God! It's Watson," said he. He was in a pitiable state of -reaction, with every nerve in a twitter. "I say, Watson, what -o'clock is it?" - -"Nearly eleven." - -"Of what day?" - -"Of Friday, June 19th." - -"Good heavens! I thought it was Wednesday. It is Wednesday. What -d'you want to frighten a chap for?" He sank his face onto his -arms and began to sob in a high treble key. - -"I tell you that it is Friday, man. Your wife has been waiting -this two days for you. You should be ashamed of yourself!" - -"So I am. But you've got mixed, Watson, for I have only been here -a few hours, three pipes, four pipes--I forget how many. But I'll -go home with you. I wouldn't frighten Kate--poor little Kate. -Give me your hand! Have you a cab?" - -"Yes, I have one waiting." - -"Then I shall go in it. But I must owe something. Find what I -owe, Watson. I am all off colour. I can do nothing for myself." - -I walked down the narrow passage between the double row of -sleepers, holding my breath to keep out the vile, stupefying -fumes of the drug, and looking about for the manager. As I passed -the tall man who sat by the brazier I felt a sudden pluck at my -skirt, and a low voice whispered, "Walk past me, and then look -back at me." The words fell quite distinctly upon my ear. I -glanced down. They could only have come from the old man at my -side, and yet he sat now as absorbed as ever, very thin, very -wrinkled, bent with age, an opium pipe dangling down from between -his knees, as though it had dropped in sheer lassitude from his -fingers. I took two steps forward and looked back. It took all my -self-control to prevent me from breaking out into a cry of -astonishment. He had turned his back so that none could see him -but I. His form had filled out, his wrinkles were gone, the dull -eyes had regained their fire, and there, sitting by the fire and -grinning at my surprise, was none other than Sherlock Holmes. He -made a slight motion to me to approach him, and instantly, as he -turned his face half round to the company once more, subsided -into a doddering, loose-lipped senility. - -"Holmes!" I whispered, "what on earth are you doing in this den?" - -"As low as you can," he answered; "I have excellent ears. If you -would have the great kindness to get rid of that sottish friend -of yours I should be exceedingly glad to have a little talk with -you." - -"I have a cab outside." - -"Then pray send him home in it. You may safely trust him, for he -appears to be too limp to get into any mischief. I should -recommend you also to send a note by the cabman to your wife to -say that you have thrown in your lot with me. If you will wait -outside, I shall be with you in five minutes." - -It was difficult to refuse any of Sherlock Holmes' requests, for -they were always so exceedingly definite, and put forward with -such a quiet air of mastery. I felt, however, that when Whitney -was once confined in the cab my mission was practically -accomplished; and for the rest, I could not wish anything better -than to be associated with my friend in one of those singular -adventures which were the normal condition of his existence. In a -few minutes I had written my note, paid Whitney's bill, led him -out to the cab, and seen him driven through the darkness. In a -very short time a decrepit figure had emerged from the opium den, -and I was walking down the street with Sherlock Holmes. For two -streets he shuffled along with a bent back and an uncertain foot. -Then, glancing quickly round, he straightened himself out and -burst into a hearty fit of laughter. - -"I suppose, Watson," said he, "that you imagine that I have added -opium-smoking to cocaine injections, and all the other little -weaknesses on which you have favoured me with your medical -views." - -"I was certainly surprised to find you there." - -"But not more so than I to find you." - -"I came to find a friend." - -"And I to find an enemy." - -"An enemy?" - -"Yes; one of my natural enemies, or, shall I say, my natural -prey. Briefly, Watson, I am in the midst of a very remarkable -inquiry, and I have hoped to find a clue in the incoherent -ramblings of these sots, as I have done before now. Had I been -recognised in that den my life would not have been worth an -hour's purchase; for I have used it before now for my own -purposes, and the rascally Lascar who runs it has sworn to have -vengeance upon me. There is a trap-door at the back of that -building, near the corner of Paul's Wharf, which could tell some -strange tales of what has passed through it upon the moonless -nights." - -"What! You do not mean bodies?" - -"Ay, bodies, Watson. We should be rich men if we had 1000 pounds -for every poor devil who has been done to death in that den. It -is the vilest murder-trap on the whole riverside, and I fear that -Neville St. Clair has entered it never to leave it more. But our -trap should be here." He put his two forefingers between his -teeth and whistled shrilly--a signal which was answered by a -similar whistle from the distance, followed shortly by the rattle -of wheels and the clink of horses' hoofs. - -"Now, Watson," said Holmes, as a tall dog-cart dashed up through -the gloom, throwing out two golden tunnels of yellow light from -its side lanterns. "You'll come with me, won't you?" - -"If I can be of use." - -"Oh, a trusty comrade is always of use; and a chronicler still -more so. My room at The Cedars is a double-bedded one." - -"The Cedars?" - -"Yes; that is Mr. St. Clair's house. I am staying there while I -conduct the inquiry." - -"Where is it, then?" - -"Near Lee, in Kent. We have a seven-mile drive before us." - -"But I am all in the dark." - -"Of course you are. You'll know all about it presently. Jump up -here. All right, John; we shall not need you. Here's half a -crown. Look out for me to-morrow, about eleven. Give her her -head. So long, then!" - -He flicked the horse with his whip, and we dashed away through -the endless succession of sombre and deserted streets, which -widened gradually, until we were flying across a broad -balustraded bridge, with the murky river flowing sluggishly -beneath us. Beyond lay another dull wilderness of bricks and -mortar, its silence broken only by the heavy, regular footfall of -the policeman, or the songs and shouts of some belated party of -revellers. A dull wrack was drifting slowly across the sky, and a -star or two twinkled dimly here and there through the rifts of -the clouds. Holmes drove in silence, with his head sunk upon his -breast, and the air of a man who is lost in thought, while I sat -beside him, curious to learn what this new quest might be which -seemed to tax his powers so sorely, and yet afraid to break in -upon the current of his thoughts. We had driven several miles, -and were beginning to get to the fringe of the belt of suburban -villas, when he shook himself, shrugged his shoulders, and lit up -his pipe with the air of a man who has satisfied himself that he -is acting for the best. - -"You have a grand gift of silence, Watson," said he. "It makes -you quite invaluable as a companion. 'Pon my word, it is a great -thing for me to have someone to talk to, for my own thoughts are -not over-pleasant. I was wondering what I should say to this dear -little woman to-night when she meets me at the door." - -"You forget that I know nothing about it." - -"I shall just have time to tell you the facts of the case before -we get to Lee. It seems absurdly simple, and yet, somehow I can -get nothing to go upon. There's plenty of thread, no doubt, but I -can't get the end of it into my hand. Now, I'll state the case -clearly and concisely to you, Watson, and maybe you can see a -spark where all is dark to me." - -"Proceed, then." - -"Some years ago--to be definite, in May, 1884--there came to Lee -a gentleman, Neville St. Clair by name, who appeared to have -plenty of money. He took a large villa, laid out the grounds very -nicely, and lived generally in good style. By degrees he made -friends in the neighbourhood, and in 1887 he married the daughter -of a local brewer, by whom he now has two children. He had no -occupation, but was interested in several companies and went into -town as a rule in the morning, returning by the 5:14 from Cannon -Street every night. Mr. St. Clair is now thirty-seven years of -age, is a man of temperate habits, a good husband, a very -affectionate father, and a man who is popular with all who know -him. I may add that his whole debts at the present moment, as far -as we have been able to ascertain, amount to 88 pounds 10s., while -he has 220 pounds standing to his credit in the Capital and -Counties Bank. There is no reason, therefore, to think that money -troubles have been weighing upon his mind. - -"Last Monday Mr. Neville St. Clair went into town rather earlier -than usual, remarking before he started that he had two important -commissions to perform, and that he would bring his little boy -home a box of bricks. Now, by the merest chance, his wife -received a telegram upon this same Monday, very shortly after his -departure, to the effect that a small parcel of considerable -value which she had been expecting was waiting for her at the -offices of the Aberdeen Shipping Company. Now, if you are well up -in your London, you will know that the office of the company is -in Fresno Street, which branches out of Upper Swandam Lane, where -you found me to-night. Mrs. St. Clair had her lunch, started for -the City, did some shopping, proceeded to the company's office, -got her packet, and found herself at exactly 4:35 walking through -Swandam Lane on her way back to the station. Have you followed me -so far?" - -"It is very clear." - -"If you remember, Monday was an exceedingly hot day, and Mrs. St. -Clair walked slowly, glancing about in the hope of seeing a cab, -as she did not like the neighbourhood in which she found herself. -While she was walking in this way down Swandam Lane, she suddenly -heard an ejaculation or cry, and was struck cold to see her -husband looking down at her and, as it seemed to her, beckoning -to her from a second-floor window. The window was open, and she -distinctly saw his face, which she describes as being terribly -agitated. He waved his hands frantically to her, and then -vanished from the window so suddenly that it seemed to her that -he had been plucked back by some irresistible force from behind. -One singular point which struck her quick feminine eye was that -although he wore some dark coat, such as he had started to town -in, he had on neither collar nor necktie. - -"Convinced that something was amiss with him, she rushed down the -steps--for the house was none other than the opium den in which -you found me to-night--and running through the front room she -attempted to ascend the stairs which led to the first floor. At -the foot of the stairs, however, she met this Lascar scoundrel of -whom I have spoken, who thrust her back and, aided by a Dane, who -acts as assistant there, pushed her out into the street. Filled -with the most maddening doubts and fears, she rushed down the -lane and, by rare good-fortune, met in Fresno Street a number of -constables with an inspector, all on their way to their beat. The -inspector and two men accompanied her back, and in spite of the -continued resistance of the proprietor, they made their way to -the room in which Mr. St. Clair had last been seen. There was no -sign of him there. In fact, in the whole of that floor there was -no one to be found save a crippled wretch of hideous aspect, who, -it seems, made his home there. Both he and the Lascar stoutly -swore that no one else had been in the front room during the -afternoon. So determined was their denial that the inspector was -staggered, and had almost come to believe that Mrs. St. Clair had -been deluded when, with a cry, she sprang at a small deal box -which lay upon the table and tore the lid from it. Out there fell -a cascade of children's bricks. It was the toy which he had -promised to bring home. - -"This discovery, and the evident confusion which the cripple -showed, made the inspector realise that the matter was serious. -The rooms were carefully examined, and results all pointed to an -abominable crime. The front room was plainly furnished as a -sitting-room and led into a small bedroom, which looked out upon -the back of one of the wharves. Between the wharf and the bedroom -window is a narrow strip, which is dry at low tide but is covered -at high tide with at least four and a half feet of water. The -bedroom window was a broad one and opened from below. On -examination traces of blood were to be seen upon the windowsill, -and several scattered drops were visible upon the wooden floor of -the bedroom. Thrust away behind a curtain in the front room were -all the clothes of Mr. Neville St. Clair, with the exception of -his coat. His boots, his socks, his hat, and his watch--all were -there. There were no signs of violence upon any of these -garments, and there were no other traces of Mr. Neville St. -Clair. Out of the window he must apparently have gone for no -other exit could be discovered, and the ominous bloodstains upon -the sill gave little promise that he could save himself by -swimming, for the tide was at its very highest at the moment of -the tragedy. - -"And now as to the villains who seemed to be immediately -implicated in the matter. The Lascar was known to be a man of the -vilest antecedents, but as, by Mrs. St. Clair's story, he was -known to have been at the foot of the stair within a very few -seconds of her husband's appearance at the window, he could -hardly have been more than an accessory to the crime. His defence -was one of absolute ignorance, and he protested that he had no -knowledge as to the doings of Hugh Boone, his lodger, and that he -could not account in any way for the presence of the missing -gentleman's clothes. - -"So much for the Lascar manager. Now for the sinister cripple who -lives upon the second floor of the opium den, and who was -certainly the last human being whose eyes rested upon Neville St. -Clair. His name is Hugh Boone, and his hideous face is one which -is familiar to every man who goes much to the City. He is a -professional beggar, though in order to avoid the police -regulations he pretends to a small trade in wax vestas. Some -little distance down Threadneedle Street, upon the left-hand -side, there is, as you may have remarked, a small angle in the -wall. Here it is that this creature takes his daily seat, -cross-legged with his tiny stock of matches on his lap, and as he -is a piteous spectacle a small rain of charity descends into the -greasy leather cap which lies upon the pavement beside him. I -have watched the fellow more than once before ever I thought of -making his professional acquaintance, and I have been surprised -at the harvest which he has reaped in a short time. His -appearance, you see, is so remarkable that no one can pass him -without observing him. A shock of orange hair, a pale face -disfigured by a horrible scar, which, by its contraction, has -turned up the outer edge of his upper lip, a bulldog chin, and a -pair of very penetrating dark eyes, which present a singular -contrast to the colour of his hair, all mark him out from amid -the common crowd of mendicants and so, too, does his wit, for he -is ever ready with a reply to any piece of chaff which may be -thrown at him by the passers-by. This is the man whom we now -learn to have been the lodger at the opium den, and to have been -the last man to see the gentleman of whom we are in quest." - -"But a cripple!" said I. "What could he have done single-handed -against a man in the prime of life?" - -"He is a cripple in the sense that he walks with a limp; but in -other respects he appears to be a powerful and well-nurtured man. -Surely your medical experience would tell you, Watson, that -weakness in one limb is often compensated for by exceptional -strength in the others." - -"Pray continue your narrative." - -"Mrs. St. Clair had fainted at the sight of the blood upon the -window, and she was escorted home in a cab by the police, as her -presence could be of no help to them in their investigations. -Inspector Barton, who had charge of the case, made a very careful -examination of the premises, but without finding anything which -threw any light upon the matter. One mistake had been made in not -arresting Boone instantly, as he was allowed some few minutes -during which he might have communicated with his friend the -Lascar, but this fault was soon remedied, and he was seized and -searched, without anything being found which could incriminate -him. There were, it is true, some blood-stains upon his right -shirt-sleeve, but he pointed to his ring-finger, which had been -cut near the nail, and explained that the bleeding came from -there, adding that he had been to the window not long before, and -that the stains which had been observed there came doubtless from -the same source. He denied strenuously having ever seen Mr. -Neville St. Clair and swore that the presence of the clothes in -his room was as much a mystery to him as to the police. As to -Mrs. St. Clair's assertion that she had actually seen her husband -at the window, he declared that she must have been either mad or -dreaming. He was removed, loudly protesting, to the -police-station, while the inspector remained upon the premises in -the hope that the ebbing tide might afford some fresh clue. - -"And it did, though they hardly found upon the mud-bank what they -had feared to find. It was Neville St. Clair's coat, and not -Neville St. Clair, which lay uncovered as the tide receded. And -what do you think they found in the pockets?" - -"I cannot imagine." - -"No, I don't think you would guess. Every pocket stuffed with -pennies and half-pennies--421 pennies and 270 half-pennies. It -was no wonder that it had not been swept away by the tide. But a -human body is a different matter. There is a fierce eddy between -the wharf and the house. It seemed likely enough that the -weighted coat had remained when the stripped body had been sucked -away into the river." - -"But I understand that all the other clothes were found in the -room. Would the body be dressed in a coat alone?" - -"No, sir, but the facts might be met speciously enough. Suppose -that this man Boone had thrust Neville St. Clair through the -window, there is no human eye which could have seen the deed. -What would he do then? It would of course instantly strike him -that he must get rid of the tell-tale garments. He would seize -the coat, then, and be in the act of throwing it out, when it -would occur to him that it would swim and not sink. He has little -time, for he has heard the scuffle downstairs when the wife tried -to force her way up, and perhaps he has already heard from his -Lascar confederate that the police are hurrying up the street. -There is not an instant to be lost. He rushes to some secret -hoard, where he has accumulated the fruits of his beggary, and he -stuffs all the coins upon which he can lay his hands into the -pockets to make sure of the coat's sinking. He throws it out, and -would have done the same with the other garments had not he heard -the rush of steps below, and only just had time to close the -window when the police appeared." - -"It certainly sounds feasible." - -"Well, we will take it as a working hypothesis for want of a -better. Boone, as I have told you, was arrested and taken to the -station, but it could not be shown that there had ever before -been anything against him. He had for years been known as a -professional beggar, but his life appeared to have been a very -quiet and innocent one. There the matter stands at present, and -the questions which have to be solved--what Neville St. Clair was -doing in the opium den, what happened to him when there, where is -he now, and what Hugh Boone had to do with his disappearance--are -all as far from a solution as ever. I confess that I cannot -recall any case within my experience which looked at the first -glance so simple and yet which presented such difficulties." - -While Sherlock Holmes had been detailing this singular series of -events, we had been whirling through the outskirts of the great -town until the last straggling houses had been left behind, and -we rattled along with a country hedge upon either side of us. -Just as he finished, however, we drove through two scattered -villages, where a few lights still glimmered in the windows. - -"We are on the outskirts of Lee," said my companion. "We have -touched on three English counties in our short drive, starting in -Middlesex, passing over an angle of Surrey, and ending in Kent. -See that light among the trees? That is The Cedars, and beside -that lamp sits a woman whose anxious ears have already, I have -little doubt, caught the clink of our horse's feet." - -"But why are you not conducting the case from Baker Street?" I -asked. - -"Because there are many inquiries which must be made out here. -Mrs. St. Clair has most kindly put two rooms at my disposal, and -you may rest assured that she will have nothing but a welcome for -my friend and colleague. I hate to meet her, Watson, when I have -no news of her husband. Here we are. Whoa, there, whoa!" - -We had pulled up in front of a large villa which stood within its -own grounds. A stable-boy had run out to the horse's head, and -springing down, I followed Holmes up the small, winding -gravel-drive which led to the house. As we approached, the door -flew open, and a little blonde woman stood in the opening, clad -in some sort of light mousseline de soie, with a touch of fluffy -pink chiffon at her neck and wrists. She stood with her figure -outlined against the flood of light, one hand upon the door, one -half-raised in her eagerness, her body slightly bent, her head -and face protruded, with eager eyes and parted lips, a standing -question. - -"Well?" she cried, "well?" And then, seeing that there were two -of us, she gave a cry of hope which sank into a groan as she saw -that my companion shook his head and shrugged his shoulders. - -"No good news?" - -"None." - -"No bad?" - -"No." - -"Thank God for that. But come in. You must be weary, for you have -had a long day." - -"This is my friend, Dr. Watson. He has been of most vital use to -me in several of my cases, and a lucky chance has made it -possible for me to bring him out and associate him with this -investigation." - -"I am delighted to see you," said she, pressing my hand warmly. -"You will, I am sure, forgive anything that may be wanting in our -arrangements, when you consider the blow which has come so -suddenly upon us." - -"My dear madam," said I, "I am an old campaigner, and if I were -not I can very well see that no apology is needed. If I can be of -any assistance, either to you or to my friend here, I shall be -indeed happy." - -"Now, Mr. Sherlock Holmes," said the lady as we entered a -well-lit dining-room, upon the table of which a cold supper had -been laid out, "I should very much like to ask you one or two -plain questions, to which I beg that you will give a plain -answer." - -"Certainly, madam." - -"Do not trouble about my feelings. I am not hysterical, nor given -to fainting. I simply wish to hear your real, real opinion." - -"Upon what point?" - -"In your heart of hearts, do you think that Neville is alive?" - -Sherlock Holmes seemed to be embarrassed by the question. -"Frankly, now!" she repeated, standing upon the rug and looking -keenly down at him as he leaned back in a basket-chair. - -"Frankly, then, madam, I do not." - -"You think that he is dead?" - -"I do." - -"Murdered?" - -"I don't say that. Perhaps." - -"And on what day did he meet his death?" - -"On Monday." - -"Then perhaps, Mr. Holmes, you will be good enough to explain how -it is that I have received a letter from him to-day." - -Sherlock Holmes sprang out of his chair as if he had been -galvanised. - -"What!" he roared. - -"Yes, to-day." She stood smiling, holding up a little slip of -paper in the air. - -"May I see it?" - -"Certainly." - -He snatched it from her in his eagerness, and smoothing it out -upon the table he drew over the lamp and examined it intently. I -had left my chair and was gazing at it over his shoulder. The -envelope was a very coarse one and was stamped with the Gravesend -postmark and with the date of that very day, or rather of the day -before, for it was considerably after midnight. - -"Coarse writing," murmured Holmes. "Surely this is not your -husband's writing, madam." - -"No, but the enclosure is." - -"I perceive also that whoever addressed the envelope had to go -and inquire as to the address." - -"How can you tell that?" - -"The name, you see, is in perfectly black ink, which has dried -itself. The rest is of the greyish colour, which shows that -blotting-paper has been used. If it had been written straight -off, and then blotted, none would be of a deep black shade. This -man has written the name, and there has then been a pause before -he wrote the address, which can only mean that he was not -familiar with it. It is, of course, a trifle, but there is -nothing so important as trifles. Let us now see the letter. Ha! -there has been an enclosure here!" - -"Yes, there was a ring. His signet-ring." - -"And you are sure that this is your husband's hand?" - -"One of his hands." - -"One?" - -"His hand when he wrote hurriedly. It is very unlike his usual -writing, and yet I know it well." - -"'Dearest do not be frightened. All will come well. There is a -huge error which it may take some little time to rectify. -Wait in patience.--NEVILLE.' Written in pencil upon the fly-leaf -of a book, octavo size, no water-mark. Hum! Posted to-day in -Gravesend by a man with a dirty thumb. Ha! And the flap has been -gummed, if I am not very much in error, by a person who had been -chewing tobacco. And you have no doubt that it is your husband's -hand, madam?" - -"None. Neville wrote those words." - -"And they were posted to-day at Gravesend. Well, Mrs. St. Clair, -the clouds lighten, though I should not venture to say that the -danger is over." - -"But he must be alive, Mr. Holmes." - -"Unless this is a clever forgery to put us on the wrong scent. -The ring, after all, proves nothing. It may have been taken from -him." - -"No, no; it is, it is his very own writing!" - -"Very well. It may, however, have been written on Monday and only -posted to-day." - -"That is possible." - -"If so, much may have happened between." - -"Oh, you must not discourage me, Mr. Holmes. I know that all is -well with him. There is so keen a sympathy between us that I -should know if evil came upon him. On the very day that I saw him -last he cut himself in the bedroom, and yet I in the dining-room -rushed upstairs instantly with the utmost certainty that -something had happened. Do you think that I would respond to such -a trifle and yet be ignorant of his death?" - -"I have seen too much not to know that the impression of a woman -may be more valuable than the conclusion of an analytical -reasoner. And in this letter you certainly have a very strong -piece of evidence to corroborate your view. But if your husband -is alive and able to write letters, why should he remain away -from you?" - -"I cannot imagine. It is unthinkable." - -"And on Monday he made no remarks before leaving you?" - -"No." - -"And you were surprised to see him in Swandam Lane?" - -"Very much so." - -"Was the window open?" - -"Yes." - -"Then he might have called to you?" - -"He might." - -"He only, as I understand, gave an inarticulate cry?" - -"Yes." - -"A call for help, you thought?" - -"Yes. He waved his hands." - -"But it might have been a cry of surprise. Astonishment at the -unexpected sight of you might cause him to throw up his hands?" - -"It is possible." - -"And you thought he was pulled back?" - -"He disappeared so suddenly." - -"He might have leaped back. You did not see anyone else in the -room?" - -"No, but this horrible man confessed to having been there, and -the Lascar was at the foot of the stairs." - -"Quite so. Your husband, as far as you could see, had his -ordinary clothes on?" - -"But without his collar or tie. I distinctly saw his bare -throat." - -"Had he ever spoken of Swandam Lane?" - -"Never." - -"Had he ever showed any signs of having taken opium?" - -"Never." - -"Thank you, Mrs. St. Clair. Those are the principal points about -which I wished to be absolutely clear. We shall now have a little -supper and then retire, for we may have a very busy day -to-morrow." - -A large and comfortable double-bedded room had been placed at our -disposal, and I was quickly between the sheets, for I was weary -after my night of adventure. Sherlock Holmes was a man, however, -who, when he had an unsolved problem upon his mind, would go for -days, and even for a week, without rest, turning it over, -rearranging his facts, looking at it from every point of view -until he had either fathomed it or convinced himself that his -data were insufficient. It was soon evident to me that he was now -preparing for an all-night sitting. He took off his coat and -waistcoat, put on a large blue dressing-gown, and then wandered -about the room collecting pillows from his bed and cushions from -the sofa and armchairs. With these he constructed a sort of -Eastern divan, upon which he perched himself cross-legged, with -an ounce of shag tobacco and a box of matches laid out in front -of him. In the dim light of the lamp I saw him sitting there, an -old briar pipe between his lips, his eyes fixed vacantly upon the -corner of the ceiling, the blue smoke curling up from him, -silent, motionless, with the light shining upon his strong-set -aquiline features. So he sat as I dropped off to sleep, and so he -sat when a sudden ejaculation caused me to wake up, and I found -the summer sun shining into the apartment. The pipe was still -between his lips, the smoke still curled upward, and the room was -full of a dense tobacco haze, but nothing remained of the heap of -shag which I had seen upon the previous night. - -"Awake, Watson?" he asked. - -"Yes." - -"Game for a morning drive?" - -"Certainly." - -"Then dress. No one is stirring yet, but I know where the -stable-boy sleeps, and we shall soon have the trap out." He -chuckled to himself as he spoke, his eyes twinkled, and he seemed -a different man to the sombre thinker of the previous night. - -As I dressed I glanced at my watch. It was no wonder that no one -was stirring. It was twenty-five minutes past four. I had hardly -finished when Holmes returned with the news that the boy was -putting in the horse. - -"I want to test a little theory of mine," said he, pulling on his -boots. "I think, Watson, that you are now standing in the -presence of one of the most absolute fools in Europe. I deserve -to be kicked from here to Charing Cross. But I think I have the -key of the affair now." - -"And where is it?" I asked, smiling. - -"In the bathroom," he answered. "Oh, yes, I am not joking," he -continued, seeing my look of incredulity. "I have just been -there, and I have taken it out, and I have got it in this -Gladstone bag. Come on, my boy, and we shall see whether it will -not fit the lock." - -We made our way downstairs as quietly as possible, and out into -the bright morning sunshine. In the road stood our horse and -trap, with the half-clad stable-boy waiting at the head. We both -sprang in, and away we dashed down the London Road. A few country -carts were stirring, bearing in vegetables to the metropolis, but -the lines of villas on either side were as silent and lifeless as -some city in a dream. - -"It has been in some points a singular case," said Holmes, -flicking the horse on into a gallop. "I confess that I have been -as blind as a mole, but it is better to learn wisdom late than -never to learn it at all." - -In town the earliest risers were just beginning to look sleepily -from their windows as we drove through the streets of the Surrey -side. Passing down the Waterloo Bridge Road we crossed over the -river, and dashing up Wellington Street wheeled sharply to the -right and found ourselves in Bow Street. Sherlock Holmes was well -known to the force, and the two constables at the door saluted -him. One of them held the horse's head while the other led us in. - -"Who is on duty?" asked Holmes. - -"Inspector Bradstreet, sir." - -"Ah, Bradstreet, how are you?" A tall, stout official had come -down the stone-flagged passage, in a peaked cap and frogged -jacket. "I wish to have a quiet word with you, Bradstreet." -"Certainly, Mr. Holmes. Step into my room here." It was a small, -office-like room, with a huge ledger upon the table, and a -telephone projecting from the wall. The inspector sat down at his -desk. - -"What can I do for you, Mr. Holmes?" - -"I called about that beggarman, Boone--the one who was charged -with being concerned in the disappearance of Mr. Neville St. -Clair, of Lee." - -"Yes. He was brought up and remanded for further inquiries." - -"So I heard. You have him here?" - -"In the cells." - -"Is he quiet?" - -"Oh, he gives no trouble. But he is a dirty scoundrel." - -"Dirty?" - -"Yes, it is all we can do to make him wash his hands, and his -face is as black as a tinker's. Well, when once his case has been -settled, he will have a regular prison bath; and I think, if you -saw him, you would agree with me that he needed it." - -"I should like to see him very much." - -"Would you? That is easily done. Come this way. You can leave -your bag." - -"No, I think that I'll take it." - -"Very good. Come this way, if you please." He led us down a -passage, opened a barred door, passed down a winding stair, and -brought us to a whitewashed corridor with a line of doors on each -side. - -"The third on the right is his," said the inspector. "Here it -is!" He quietly shot back a panel in the upper part of the door -and glanced through. - -"He is asleep," said he. "You can see him very well." - -We both put our eyes to the grating. The prisoner lay with his -face towards us, in a very deep sleep, breathing slowly and -heavily. He was a middle-sized man, coarsely clad as became his -calling, with a coloured shirt protruding through the rent in his -tattered coat. He was, as the inspector had said, extremely -dirty, but the grime which covered his face could not conceal its -repulsive ugliness. A broad wheal from an old scar ran right -across it from eye to chin, and by its contraction had turned up -one side of the upper lip, so that three teeth were exposed in a -perpetual snarl. A shock of very bright red hair grew low over -his eyes and forehead. - -"He's a beauty, isn't he?" said the inspector. - -"He certainly needs a wash," remarked Holmes. "I had an idea that -he might, and I took the liberty of bringing the tools with me." -He opened the Gladstone bag as he spoke, and took out, to my -astonishment, a very large bath-sponge. - -"He! he! You are a funny one," chuckled the inspector. - -"Now, if you will have the great goodness to open that door very -quietly, we will soon make him cut a much more respectable -figure." - -"Well, I don't know why not," said the inspector. "He doesn't -look a credit to the Bow Street cells, does he?" He slipped his -key into the lock, and we all very quietly entered the cell. The -sleeper half turned, and then settled down once more into a deep -slumber. Holmes stooped to the water-jug, moistened his sponge, -and then rubbed it twice vigorously across and down the -prisoner's face. - -"Let me introduce you," he shouted, "to Mr. Neville St. Clair, of -Lee, in the county of Kent." - -Never in my life have I seen such a sight. The man's face peeled -off under the sponge like the bark from a tree. Gone was the -coarse brown tint! Gone, too, was the horrid scar which had -seamed it across, and the twisted lip which had given the -repulsive sneer to the face! A twitch brought away the tangled -red hair, and there, sitting up in his bed, was a pale, -sad-faced, refined-looking man, black-haired and smooth-skinned, -rubbing his eyes and staring about him with sleepy bewilderment. -Then suddenly realising the exposure, he broke into a scream and -threw himself down with his face to the pillow. - -"Great heavens!" cried the inspector, "it is, indeed, the missing -man. I know him from the photograph." - -The prisoner turned with the reckless air of a man who abandons -himself to his destiny. "Be it so," said he. "And pray what am I -charged with?" - -"With making away with Mr. Neville St.-- Oh, come, you can't be -charged with that unless they make a case of attempted suicide of -it," said the inspector with a grin. "Well, I have been -twenty-seven years in the force, but this really takes the cake." - -"If I am Mr. Neville St. Clair, then it is obvious that no crime -has been committed, and that, therefore, I am illegally -detained." - -"No crime, but a very great error has been committed," said -Holmes. "You would have done better to have trusted your wife." - -"It was not the wife; it was the children," groaned the prisoner. -"God help me, I would not have them ashamed of their father. My -God! What an exposure! What can I do?" - -Sherlock Holmes sat down beside him on the couch and patted him -kindly on the shoulder. - -"If you leave it to a court of law to clear the matter up," said -he, "of course you can hardly avoid publicity. On the other hand, -if you convince the police authorities that there is no possible -case against you, I do not know that there is any reason that the -details should find their way into the papers. Inspector -Bradstreet would, I am sure, make notes upon anything which you -might tell us and submit it to the proper authorities. The case -would then never go into court at all." - -"God bless you!" cried the prisoner passionately. "I would have -endured imprisonment, ay, even execution, rather than have left -my miserable secret as a family blot to my children. - -"You are the first who have ever heard my story. My father was a -schoolmaster in Chesterfield, where I received an excellent -education. I travelled in my youth, took to the stage, and -finally became a reporter on an evening paper in London. One day -my editor wished to have a series of articles upon begging in the -metropolis, and I volunteered to supply them. There was the point -from which all my adventures started. It was only by trying -begging as an amateur that I could get the facts upon which to -base my articles. When an actor I had, of course, learned all the -secrets of making up, and had been famous in the green-room for -my skill. I took advantage now of my attainments. I painted my -face, and to make myself as pitiable as possible I made a good -scar and fixed one side of my lip in a twist by the aid of a -small slip of flesh-coloured plaster. Then with a red head of -hair, and an appropriate dress, I took my station in the business -part of the city, ostensibly as a match-seller but really as a -beggar. For seven hours I plied my trade, and when I returned -home in the evening I found to my surprise that I had received no -less than 26s. 4d. - -"I wrote my articles and thought little more of the matter until, -some time later, I backed a bill for a friend and had a writ -served upon me for 25 pounds. I was at my wit's end where to get -the money, but a sudden idea came to me. I begged a fortnight's -grace from the creditor, asked for a holiday from my employers, -and spent the time in begging in the City under my disguise. In -ten days I had the money and had paid the debt. - -"Well, you can imagine how hard it was to settle down to arduous -work at 2 pounds a week when I knew that I could earn as much in -a day by smearing my face with a little paint, laying my cap on -the ground, and sitting still. It was a long fight between my -pride and the money, but the dollars won at last, and I threw up -reporting and sat day after day in the corner which I had first -chosen, inspiring pity by my ghastly face and filling my pockets -with coppers. Only one man knew my secret. He was the keeper of a -low den in which I used to lodge in Swandam Lane, where I could -every morning emerge as a squalid beggar and in the evenings -transform myself into a well-dressed man about town. This fellow, -a Lascar, was well paid by me for his rooms, so that I knew that -my secret was safe in his possession. - -"Well, very soon I found that I was saving considerable sums of -money. I do not mean that any beggar in the streets of London -could earn 700 pounds a year--which is less than my average -takings--but I had exceptional advantages in my power of making -up, and also in a facility of repartee, which improved by -practice and made me quite a recognised character in the City. -All day a stream of pennies, varied by silver, poured in upon me, -and it was a very bad day in which I failed to take 2 pounds. - -"As I grew richer I grew more ambitious, took a house in the -country, and eventually married, without anyone having a -suspicion as to my real occupation. My dear wife knew that I had -business in the City. She little knew what. - -"Last Monday I had finished for the day and was dressing in my -room above the opium den when I looked out of my window and saw, -to my horror and astonishment, that my wife was standing in the -street, with her eyes fixed full upon me. I gave a cry of -surprise, threw up my arms to cover my face, and, rushing to my -confidant, the Lascar, entreated him to prevent anyone from -coming up to me. I heard her voice downstairs, but I knew that -she could not ascend. Swiftly I threw off my clothes, pulled on -those of a beggar, and put on my pigments and wig. Even a wife's -eyes could not pierce so complete a disguise. But then it -occurred to me that there might be a search in the room, and that -the clothes might betray me. I threw open the window, reopening -by my violence a small cut which I had inflicted upon myself in -the bedroom that morning. Then I seized my coat, which was -weighted by the coppers which I had just transferred to it from -the leather bag in which I carried my takings. I hurled it out of -the window, and it disappeared into the Thames. The other clothes -would have followed, but at that moment there was a rush of -constables up the stair, and a few minutes after I found, rather, -I confess, to my relief, that instead of being identified as Mr. -Neville St. Clair, I was arrested as his murderer. - -"I do not know that there is anything else for me to explain. I -was determined to preserve my disguise as long as possible, and -hence my preference for a dirty face. Knowing that my wife would -be terribly anxious, I slipped off my ring and confided it to the -Lascar at a moment when no constable was watching me, together -with a hurried scrawl, telling her that she had no cause to -fear." - -"That note only reached her yesterday," said Holmes. - -"Good God! What a week she must have spent!" - -"The police have watched this Lascar," said Inspector Bradstreet, -"and I can quite understand that he might find it difficult to -post a letter unobserved. Probably he handed it to some sailor -customer of his, who forgot all about it for some days." - -"That was it," said Holmes, nodding approvingly; "I have no doubt -of it. But have you never been prosecuted for begging?" - -"Many times; but what was a fine to me?" - -"It must stop here, however," said Bradstreet. "If the police are -to hush this thing up, there must be no more of Hugh Boone." - -"I have sworn it by the most solemn oaths which a man can take." - -"In that case I think that it is probable that no further steps -may be taken. But if you are found again, then all must come out. -I am sure, Mr. Holmes, that we are very much indebted to you for -having cleared the matter up. I wish I knew how you reach your -results." - -"I reached this one," said my friend, "by sitting upon five -pillows and consuming an ounce of shag. I think, Watson, that if -we drive to Baker Street we shall just be in time for breakfast." - - - -VII. THE ADVENTURE OF THE BLUE CARBUNCLE - -I had called upon my friend Sherlock Holmes upon the second -morning after Christmas, with the intention of wishing him the -compliments of the season. He was lounging upon the sofa in a -purple dressing-gown, a pipe-rack within his reach upon the -right, and a pile of crumpled morning papers, evidently newly -studied, near at hand. Beside the couch was a wooden chair, and -on the angle of the back hung a very seedy and disreputable -hard-felt hat, much the worse for wear, and cracked in several -places. A lens and a forceps lying upon the seat of the chair -suggested that the hat had been suspended in this manner for the -purpose of examination. - -"You are engaged," said I; "perhaps I interrupt you." - -"Not at all. I am glad to have a friend with whom I can discuss -my results. The matter is a perfectly trivial one"--he jerked his -thumb in the direction of the old hat--"but there are points in -connection with it which are not entirely devoid of interest and -even of instruction." - -I seated myself in his armchair and warmed my hands before his -crackling fire, for a sharp frost had set in, and the windows -were thick with the ice crystals. "I suppose," I remarked, "that, -homely as it looks, this thing has some deadly story linked on to -it--that it is the clue which will guide you in the solution of -some mystery and the punishment of some crime." - -"No, no. No crime," said Sherlock Holmes, laughing. "Only one of -those whimsical little incidents which will happen when you have -four million human beings all jostling each other within the -space of a few square miles. Amid the action and reaction of so -dense a swarm of humanity, every possible combination of events -may be expected to take place, and many a little problem will be -presented which may be striking and bizarre without being -criminal. We have already had experience of such." - -"So much so," I remarked, "that of the last six cases which I -have added to my notes, three have been entirely free of any -legal crime." - -"Precisely. You allude to my attempt to recover the Irene Adler -papers, to the singular case of Miss Mary Sutherland, and to the -adventure of the man with the twisted lip. Well, I have no doubt -that this small matter will fall into the same innocent category. -You know Peterson, the commissionaire?" - -"Yes." - -"It is to him that this trophy belongs." - -"It is his hat." - -"No, no, he found it. Its owner is unknown. I beg that you will -look upon it not as a battered billycock but as an intellectual -problem. And, first, as to how it came here. It arrived upon -Christmas morning, in company with a good fat goose, which is, I -have no doubt, roasting at this moment in front of Peterson's -fire. The facts are these: about four o'clock on Christmas -morning, Peterson, who, as you know, is a very honest fellow, was -returning from some small jollification and was making his way -homeward down Tottenham Court Road. In front of him he saw, in -the gaslight, a tallish man, walking with a slight stagger, and -carrying a white goose slung over his shoulder. As he reached the -corner of Goodge Street, a row broke out between this stranger -and a little knot of roughs. One of the latter knocked off the -man's hat, on which he raised his stick to defend himself and, -swinging it over his head, smashed the shop window behind him. -Peterson had rushed forward to protect the stranger from his -assailants; but the man, shocked at having broken the window, and -seeing an official-looking person in uniform rushing towards him, -dropped his goose, took to his heels, and vanished amid the -labyrinth of small streets which lie at the back of Tottenham -Court Road. The roughs had also fled at the appearance of -Peterson, so that he was left in possession of the field of -battle, and also of the spoils of victory in the shape of this -battered hat and a most unimpeachable Christmas goose." - -"Which surely he restored to their owner?" - -"My dear fellow, there lies the problem. It is true that 'For -Mrs. Henry Baker' was printed upon a small card which was tied to -the bird's left leg, and it is also true that the initials 'H. -B.' are legible upon the lining of this hat, but as there are -some thousands of Bakers, and some hundreds of Henry Bakers in -this city of ours, it is not easy to restore lost property to any -one of them." - -"What, then, did Peterson do?" - -"He brought round both hat and goose to me on Christmas morning, -knowing that even the smallest problems are of interest to me. -The goose we retained until this morning, when there were signs -that, in spite of the slight frost, it would be well that it -should be eaten without unnecessary delay. Its finder has carried -it off, therefore, to fulfil the ultimate destiny of a goose, -while I continue to retain the hat of the unknown gentleman who -lost his Christmas dinner." - -"Did he not advertise?" - -"No." - -"Then, what clue could you have as to his identity?" - -"Only as much as we can deduce." - -"From his hat?" - -"Precisely." - -"But you are joking. What can you gather from this old battered -felt?" - -"Here is my lens. You know my methods. What can you gather -yourself as to the individuality of the man who has worn this -article?" - -I took the tattered object in my hands and turned it over rather -ruefully. It was a very ordinary black hat of the usual round -shape, hard and much the worse for wear. The lining had been of -red silk, but was a good deal discoloured. There was no maker's -name; but, as Holmes had remarked, the initials "H. B." were -scrawled upon one side. It was pierced in the brim for a -hat-securer, but the elastic was missing. For the rest, it was -cracked, exceedingly dusty, and spotted in several places, -although there seemed to have been some attempt to hide the -discoloured patches by smearing them with ink. - -"I can see nothing," said I, handing it back to my friend. - -"On the contrary, Watson, you can see everything. You fail, -however, to reason from what you see. You are too timid in -drawing your inferences." - -"Then, pray tell me what it is that you can infer from this hat?" - -He picked it up and gazed at it in the peculiar introspective -fashion which was characteristic of him. "It is perhaps less -suggestive than it might have been," he remarked, "and yet there -are a few inferences which are very distinct, and a few others -which represent at least a strong balance of probability. That -the man was highly intellectual is of course obvious upon the -face of it, and also that he was fairly well-to-do within the -last three years, although he has now fallen upon evil days. He -had foresight, but has less now than formerly, pointing to a -moral retrogression, which, when taken with the decline of his -fortunes, seems to indicate some evil influence, probably drink, -at work upon him. This may account also for the obvious fact that -his wife has ceased to love him." - -"My dear Holmes!" - -"He has, however, retained some degree of self-respect," he -continued, disregarding my remonstrance. "He is a man who leads a -sedentary life, goes out little, is out of training entirely, is -middle-aged, has grizzled hair which he has had cut within the -last few days, and which he anoints with lime-cream. These are -the more patent facts which are to be deduced from his hat. Also, -by the way, that it is extremely improbable that he has gas laid -on in his house." - -"You are certainly joking, Holmes." - -"Not in the least. Is it possible that even now, when I give you -these results, you are unable to see how they are attained?" - -"I have no doubt that I am very stupid, but I must confess that I -am unable to follow you. For example, how did you deduce that -this man was intellectual?" - -For answer Holmes clapped the hat upon his head. It came right -over the forehead and settled upon the bridge of his nose. "It is -a question of cubic capacity," said he; "a man with so large a -brain must have something in it." - -"The decline of his fortunes, then?" - -"This hat is three years old. These flat brims curled at the edge -came in then. It is a hat of the very best quality. Look at the -band of ribbed silk and the excellent lining. If this man could -afford to buy so expensive a hat three years ago, and has had no -hat since, then he has assuredly gone down in the world." - -"Well, that is clear enough, certainly. But how about the -foresight and the moral retrogression?" - -Sherlock Holmes laughed. "Here is the foresight," said he putting -his finger upon the little disc and loop of the hat-securer. -"They are never sold upon hats. If this man ordered one, it is a -sign of a certain amount of foresight, since he went out of his -way to take this precaution against the wind. But since we see -that he has broken the elastic and has not troubled to replace -it, it is obvious that he has less foresight now than formerly, -which is a distinct proof of a weakening nature. On the other -hand, he has endeavoured to conceal some of these stains upon the -felt by daubing them with ink, which is a sign that he has not -entirely lost his self-respect." - -"Your reasoning is certainly plausible." - -"The further points, that he is middle-aged, that his hair is -grizzled, that it has been recently cut, and that he uses -lime-cream, are all to be gathered from a close examination of the -lower part of the lining. The lens discloses a large number of -hair-ends, clean cut by the scissors of the barber. They all -appear to be adhesive, and there is a distinct odour of -lime-cream. This dust, you will observe, is not the gritty, grey -dust of the street but the fluffy brown dust of the house, -showing that it has been hung up indoors most of the time, while -the marks of moisture upon the inside are proof positive that the -wearer perspired very freely, and could therefore, hardly be in -the best of training." - -"But his wife--you said that she had ceased to love him." - -"This hat has not been brushed for weeks. When I see you, my dear -Watson, with a week's accumulation of dust upon your hat, and -when your wife allows you to go out in such a state, I shall fear -that you also have been unfortunate enough to lose your wife's -affection." - -"But he might be a bachelor." - -"Nay, he was bringing home the goose as a peace-offering to his -wife. Remember the card upon the bird's leg." - -"You have an answer to everything. But how on earth do you deduce -that the gas is not laid on in his house?" - -"One tallow stain, or even two, might come by chance; but when I -see no less than five, I think that there can be little doubt -that the individual must be brought into frequent contact with -burning tallow--walks upstairs at night probably with his hat in -one hand and a guttering candle in the other. Anyhow, he never -got tallow-stains from a gas-jet. Are you satisfied?" - -"Well, it is very ingenious," said I, laughing; "but since, as -you said just now, there has been no crime committed, and no harm -done save the loss of a goose, all this seems to be rather a -waste of energy." - -Sherlock Holmes had opened his mouth to reply, when the door flew -open, and Peterson, the commissionaire, rushed into the apartment -with flushed cheeks and the face of a man who is dazed with -astonishment. - -"The goose, Mr. Holmes! The goose, sir!" he gasped. - -"Eh? What of it, then? Has it returned to life and flapped off -through the kitchen window?" Holmes twisted himself round upon -the sofa to get a fairer view of the man's excited face. - -"See here, sir! See what my wife found in its crop!" He held out -his hand and displayed upon the centre of the palm a brilliantly -scintillating blue stone, rather smaller than a bean in size, but -of such purity and radiance that it twinkled like an electric -point in the dark hollow of his hand. - -Sherlock Holmes sat up with a whistle. "By Jove, Peterson!" said -he, "this is treasure trove indeed. I suppose you know what you -have got?" - -"A diamond, sir? A precious stone. It cuts into glass as though -it were putty." - -"It's more than a precious stone. It is the precious stone." - -"Not the Countess of Morcar's blue carbuncle!" I ejaculated. - -"Precisely so. I ought to know its size and shape, seeing that I -have read the advertisement about it in The Times every day -lately. It is absolutely unique, and its value can only be -conjectured, but the reward offered of 1000 pounds is certainly -not within a twentieth part of the market price." - -"A thousand pounds! Great Lord of mercy!" The commissionaire -plumped down into a chair and stared from one to the other of us. - -"That is the reward, and I have reason to know that there are -sentimental considerations in the background which would induce -the Countess to part with half her fortune if she could but -recover the gem." - -"It was lost, if I remember aright, at the Hotel Cosmopolitan," I -remarked. - -"Precisely so, on December 22nd, just five days ago. John Horner, -a plumber, was accused of having abstracted it from the lady's -jewel-case. The evidence against him was so strong that the case -has been referred to the Assizes. I have some account of the -matter here, I believe." He rummaged amid his newspapers, -glancing over the dates, until at last he smoothed one out, -doubled it over, and read the following paragraph: - -"Hotel Cosmopolitan Jewel Robbery. John Horner, 26, plumber, was -brought up upon the charge of having upon the 22nd inst., -abstracted from the jewel-case of the Countess of Morcar the -valuable gem known as the blue carbuncle. James Ryder, -upper-attendant at the hotel, gave his evidence to the effect -that he had shown Horner up to the dressing-room of the Countess -of Morcar upon the day of the robbery in order that he might -solder the second bar of the grate, which was loose. He had -remained with Horner some little time, but had finally been -called away. On returning, he found that Horner had disappeared, -that the bureau had been forced open, and that the small morocco -casket in which, as it afterwards transpired, the Countess was -accustomed to keep her jewel, was lying empty upon the -dressing-table. Ryder instantly gave the alarm, and Horner was -arrested the same evening; but the stone could not be found -either upon his person or in his rooms. Catherine Cusack, maid to -the Countess, deposed to having heard Ryder's cry of dismay on -discovering the robbery, and to having rushed into the room, -where she found matters as described by the last witness. -Inspector Bradstreet, B division, gave evidence as to the arrest -of Horner, who struggled frantically, and protested his innocence -in the strongest terms. Evidence of a previous conviction for -robbery having been given against the prisoner, the magistrate -refused to deal summarily with the offence, but referred it to -the Assizes. Horner, who had shown signs of intense emotion -during the proceedings, fainted away at the conclusion and was -carried out of court." - -"Hum! So much for the police-court," said Holmes thoughtfully, -tossing aside the paper. "The question for us now to solve is the -sequence of events leading from a rifled jewel-case at one end to -the crop of a goose in Tottenham Court Road at the other. You -see, Watson, our little deductions have suddenly assumed a much -more important and less innocent aspect. Here is the stone; the -stone came from the goose, and the goose came from Mr. Henry -Baker, the gentleman with the bad hat and all the other -characteristics with which I have bored you. So now we must set -ourselves very seriously to finding this gentleman and -ascertaining what part he has played in this little mystery. To -do this, we must try the simplest means first, and these lie -undoubtedly in an advertisement in all the evening papers. If -this fail, I shall have recourse to other methods." - -"What will you say?" - -"Give me a pencil and that slip of paper. Now, then: 'Found at -the corner of Goodge Street, a goose and a black felt hat. Mr. -Henry Baker can have the same by applying at 6:30 this evening at -221B, Baker Street.' That is clear and concise." - -"Very. But will he see it?" - -"Well, he is sure to keep an eye on the papers, since, to a poor -man, the loss was a heavy one. He was clearly so scared by his -mischance in breaking the window and by the approach of Peterson -that he thought of nothing but flight, but since then he must -have bitterly regretted the impulse which caused him to drop his -bird. Then, again, the introduction of his name will cause him to -see it, for everyone who knows him will direct his attention to -it. Here you are, Peterson, run down to the advertising agency -and have this put in the evening papers." - -"In which, sir?" - -"Oh, in the Globe, Star, Pall Mall, St. James's, Evening News, -Standard, Echo, and any others that occur to you." - -"Very well, sir. And this stone?" - -"Ah, yes, I shall keep the stone. Thank you. And, I say, -Peterson, just buy a goose on your way back and leave it here -with me, for we must have one to give to this gentleman in place -of the one which your family is now devouring." - -When the commissionaire had gone, Holmes took up the stone and -held it against the light. "It's a bonny thing," said he. "Just -see how it glints and sparkles. Of course it is a nucleus and -focus of crime. Every good stone is. They are the devil's pet -baits. In the larger and older jewels every facet may stand for a -bloody deed. This stone is not yet twenty years old. It was found -in the banks of the Amoy River in southern China and is remarkable -in having every characteristic of the carbuncle, save that it is -blue in shade instead of ruby red. In spite of its youth, it has -already a sinister history. There have been two murders, a -vitriol-throwing, a suicide, and several robberies brought about -for the sake of this forty-grain weight of crystallised charcoal. -Who would think that so pretty a toy would be a purveyor to the -gallows and the prison? I'll lock it up in my strong box now and -drop a line to the Countess to say that we have it." - -"Do you think that this man Horner is innocent?" - -"I cannot tell." - -"Well, then, do you imagine that this other one, Henry Baker, had -anything to do with the matter?" - -"It is, I think, much more likely that Henry Baker is an -absolutely innocent man, who had no idea that the bird which he -was carrying was of considerably more value than if it were made -of solid gold. That, however, I shall determine by a very simple -test if we have an answer to our advertisement." - -"And you can do nothing until then?" - -"Nothing." - -"In that case I shall continue my professional round. But I shall -come back in the evening at the hour you have mentioned, for I -should like to see the solution of so tangled a business." - -"Very glad to see you. I dine at seven. There is a woodcock, I -believe. By the way, in view of recent occurrences, perhaps I -ought to ask Mrs. Hudson to examine its crop." - -I had been delayed at a case, and it was a little after half-past -six when I found myself in Baker Street once more. As I -approached the house I saw a tall man in a Scotch bonnet with a -coat which was buttoned up to his chin waiting outside in the -bright semicircle which was thrown from the fanlight. Just as I -arrived the door was opened, and we were shown up together to -Holmes' room. - -"Mr. Henry Baker, I believe," said he, rising from his armchair -and greeting his visitor with the easy air of geniality which he -could so readily assume. "Pray take this chair by the fire, Mr. -Baker. It is a cold night, and I observe that your circulation is -more adapted for summer than for winter. Ah, Watson, you have -just come at the right time. Is that your hat, Mr. Baker?" - -"Yes, sir, that is undoubtedly my hat." - -He was a large man with rounded shoulders, a massive head, and a -broad, intelligent face, sloping down to a pointed beard of -grizzled brown. A touch of red in nose and cheeks, with a slight -tremor of his extended hand, recalled Holmes' surmise as to his -habits. His rusty black frock-coat was buttoned right up in -front, with the collar turned up, and his lank wrists protruded -from his sleeves without a sign of cuff or shirt. He spoke in a -slow staccato fashion, choosing his words with care, and gave the -impression generally of a man of learning and letters who had had -ill-usage at the hands of fortune. - -"We have retained these things for some days," said Holmes, -"because we expected to see an advertisement from you giving your -address. I am at a loss to know now why you did not advertise." - -Our visitor gave a rather shamefaced laugh. "Shillings have not -been so plentiful with me as they once were," he remarked. "I had -no doubt that the gang of roughs who assaulted me had carried off -both my hat and the bird. I did not care to spend more money in a -hopeless attempt at recovering them." - -"Very naturally. By the way, about the bird, we were compelled to -eat it." - -"To eat it!" Our visitor half rose from his chair in his -excitement. - -"Yes, it would have been of no use to anyone had we not done so. -But I presume that this other goose upon the sideboard, which is -about the same weight and perfectly fresh, will answer your -purpose equally well?" - -"Oh, certainly, certainly," answered Mr. Baker with a sigh of -relief. - -"Of course, we still have the feathers, legs, crop, and so on of -your own bird, so if you wish--" - -The man burst into a hearty laugh. "They might be useful to me as -relics of my adventure," said he, "but beyond that I can hardly -see what use the disjecta membra of my late acquaintance are -going to be to me. No, sir, I think that, with your permission, I -will confine my attentions to the excellent bird which I perceive -upon the sideboard." - -Sherlock Holmes glanced sharply across at me with a slight shrug -of his shoulders. - -"There is your hat, then, and there your bird," said he. "By the -way, would it bore you to tell me where you got the other one -from? I am somewhat of a fowl fancier, and I have seldom seen a -better grown goose." - -"Certainly, sir," said Baker, who had risen and tucked his newly -gained property under his arm. "There are a few of us who -frequent the Alpha Inn, near the Museum--we are to be found in -the Museum itself during the day, you understand. This year our -good host, Windigate by name, instituted a goose club, by which, -on consideration of some few pence every week, we were each to -receive a bird at Christmas. My pence were duly paid, and the -rest is familiar to you. I am much indebted to you, sir, for a -Scotch bonnet is fitted neither to my years nor my gravity." With -a comical pomposity of manner he bowed solemnly to both of us and -strode off upon his way. - -"So much for Mr. Henry Baker," said Holmes when he had closed the -door behind him. "It is quite certain that he knows nothing -whatever about the matter. Are you hungry, Watson?" - -"Not particularly." - -"Then I suggest that we turn our dinner into a supper and follow -up this clue while it is still hot." - -"By all means." - -It was a bitter night, so we drew on our ulsters and wrapped -cravats about our throats. Outside, the stars were shining coldly -in a cloudless sky, and the breath of the passers-by blew out -into smoke like so many pistol shots. Our footfalls rang out -crisply and loudly as we swung through the doctors' quarter, -Wimpole Street, Harley Street, and so through Wigmore Street into -Oxford Street. In a quarter of an hour we were in Bloomsbury at -the Alpha Inn, which is a small public-house at the corner of one -of the streets which runs down into Holborn. Holmes pushed open -the door of the private bar and ordered two glasses of beer from -the ruddy-faced, white-aproned landlord. - -"Your beer should be excellent if it is as good as your geese," -said he. - -"My geese!" The man seemed surprised. - -"Yes. I was speaking only half an hour ago to Mr. Henry Baker, -who was a member of your goose club." - -"Ah! yes, I see. But you see, sir, them's not our geese." - -"Indeed! Whose, then?" - -"Well, I got the two dozen from a salesman in Covent Garden." - -"Indeed? I know some of them. Which was it?" - -"Breckinridge is his name." - -"Ah! I don't know him. Well, here's your good health landlord, -and prosperity to your house. Good-night." - -"Now for Mr. Breckinridge," he continued, buttoning up his coat -as we came out into the frosty air. "Remember, Watson that though -we have so homely a thing as a goose at one end of this chain, we -have at the other a man who will certainly get seven years' penal -servitude unless we can establish his innocence. It is possible -that our inquiry may but confirm his guilt; but, in any case, we -have a line of investigation which has been missed by the police, -and which a singular chance has placed in our hands. Let us -follow it out to the bitter end. Faces to the south, then, and -quick march!" - -We passed across Holborn, down Endell Street, and so through a -zigzag of slums to Covent Garden Market. One of the largest -stalls bore the name of Breckinridge upon it, and the proprietor -a horsey-looking man, with a sharp face and trim side-whiskers was -helping a boy to put up the shutters. - -"Good-evening. It's a cold night," said Holmes. - -The salesman nodded and shot a questioning glance at my -companion. - -"Sold out of geese, I see," continued Holmes, pointing at the -bare slabs of marble. - -"Let you have five hundred to-morrow morning." - -"That's no good." - -"Well, there are some on the stall with the gas-flare." - -"Ah, but I was recommended to you." - -"Who by?" - -"The landlord of the Alpha." - -"Oh, yes; I sent him a couple of dozen." - -"Fine birds they were, too. Now where did you get them from?" - -To my surprise the question provoked a burst of anger from the -salesman. - -"Now, then, mister," said he, with his head cocked and his arms -akimbo, "what are you driving at? Let's have it straight, now." - -"It is straight enough. I should like to know who sold you the -geese which you supplied to the Alpha." - -"Well then, I shan't tell you. So now!" - -"Oh, it is a matter of no importance; but I don't know why you -should be so warm over such a trifle." - -"Warm! You'd be as warm, maybe, if you were as pestered as I am. -When I pay good money for a good article there should be an end -of the business; but it's 'Where are the geese?' and 'Who did you -sell the geese to?' and 'What will you take for the geese?' One -would think they were the only geese in the world, to hear the -fuss that is made over them." - -"Well, I have no connection with any other people who have been -making inquiries," said Holmes carelessly. "If you won't tell us -the bet is off, that is all. But I'm always ready to back my -opinion on a matter of fowls, and I have a fiver on it that the -bird I ate is country bred." - -"Well, then, you've lost your fiver, for it's town bred," snapped -the salesman. - -"It's nothing of the kind." - -"I say it is." - -"I don't believe it." - -"D'you think you know more about fowls than I, who have handled -them ever since I was a nipper? I tell you, all those birds that -went to the Alpha were town bred." - -"You'll never persuade me to believe that." - -"Will you bet, then?" - -"It's merely taking your money, for I know that I am right. But -I'll have a sovereign on with you, just to teach you not to be -obstinate." - -The salesman chuckled grimly. "Bring me the books, Bill," said -he. - -The small boy brought round a small thin volume and a great -greasy-backed one, laying them out together beneath the hanging -lamp. - -"Now then, Mr. Cocksure," said the salesman, "I thought that I -was out of geese, but before I finish you'll find that there is -still one left in my shop. You see this little book?" - -"Well?" - -"That's the list of the folk from whom I buy. D'you see? Well, -then, here on this page are the country folk, and the numbers -after their names are where their accounts are in the big ledger. -Now, then! You see this other page in red ink? Well, that is a -list of my town suppliers. Now, look at that third name. Just -read it out to me." - -"Mrs. Oakshott, 117, Brixton Road--249," read Holmes. - -"Quite so. Now turn that up in the ledger." - -Holmes turned to the page indicated. "Here you are, 'Mrs. -Oakshott, 117, Brixton Road, egg and poultry supplier.'" - -"Now, then, what's the last entry?" - -"'December 22nd. Twenty-four geese at 7s. 6d.'" - -"Quite so. There you are. And underneath?" - -"'Sold to Mr. Windigate of the Alpha, at 12s.'" - -"What have you to say now?" - -Sherlock Holmes looked deeply chagrined. He drew a sovereign from -his pocket and threw it down upon the slab, turning away with the -air of a man whose disgust is too deep for words. A few yards off -he stopped under a lamp-post and laughed in the hearty, noiseless -fashion which was peculiar to him. - -"When you see a man with whiskers of that cut and the 'Pink 'un' -protruding out of his pocket, you can always draw him by a bet," -said he. "I daresay that if I had put 100 pounds down in front of -him, that man would not have given me such complete information -as was drawn from him by the idea that he was doing me on a -wager. Well, Watson, we are, I fancy, nearing the end of our -quest, and the only point which remains to be determined is -whether we should go on to this Mrs. Oakshott to-night, or -whether we should reserve it for to-morrow. It is clear from what -that surly fellow said that there are others besides ourselves -who are anxious about the matter, and I should--" - -His remarks were suddenly cut short by a loud hubbub which broke -out from the stall which we had just left. Turning round we saw a -little rat-faced fellow standing in the centre of the circle of -yellow light which was thrown by the swinging lamp, while -Breckinridge, the salesman, framed in the door of his stall, was -shaking his fists fiercely at the cringing figure. - -"I've had enough of you and your geese," he shouted. "I wish you -were all at the devil together. If you come pestering me any more -with your silly talk I'll set the dog at you. You bring Mrs. -Oakshott here and I'll answer her, but what have you to do with -it? Did I buy the geese off you?" - -"No; but one of them was mine all the same," whined the little -man. - -"Well, then, ask Mrs. Oakshott for it." - -"She told me to ask you." - -"Well, you can ask the King of Proosia, for all I care. I've had -enough of it. Get out of this!" He rushed fiercely forward, and -the inquirer flitted away into the darkness. - -"Ha! this may save us a visit to Brixton Road," whispered Holmes. -"Come with me, and we will see what is to be made of this -fellow." Striding through the scattered knots of people who -lounged round the flaring stalls, my companion speedily overtook -the little man and touched him upon the shoulder. He sprang -round, and I could see in the gas-light that every vestige of -colour had been driven from his face. - -"Who are you, then? What do you want?" he asked in a quavering -voice. - -"You will excuse me," said Holmes blandly, "but I could not help -overhearing the questions which you put to the salesman just now. -I think that I could be of assistance to you." - -"You? Who are you? How could you know anything of the matter?" - -"My name is Sherlock Holmes. It is my business to know what other -people don't know." - -"But you can know nothing of this?" - -"Excuse me, I know everything of it. You are endeavouring to -trace some geese which were sold by Mrs. Oakshott, of Brixton -Road, to a salesman named Breckinridge, by him in turn to Mr. -Windigate, of the Alpha, and by him to his club, of which Mr. -Henry Baker is a member." - -"Oh, sir, you are the very man whom I have longed to meet," cried -the little fellow with outstretched hands and quivering fingers. -"I can hardly explain to you how interested I am in this matter." - -Sherlock Holmes hailed a four-wheeler which was passing. "In that -case we had better discuss it in a cosy room rather than in this -wind-swept market-place," said he. "But pray tell me, before we -go farther, who it is that I have the pleasure of assisting." - -The man hesitated for an instant. "My name is John Robinson," he -answered with a sidelong glance. - -"No, no; the real name," said Holmes sweetly. "It is always -awkward doing business with an alias." - -A flush sprang to the white cheeks of the stranger. "Well then," -said he, "my real name is James Ryder." - -"Precisely so. Head attendant at the Hotel Cosmopolitan. Pray -step into the cab, and I shall soon be able to tell you -everything which you would wish to know." - -The little man stood glancing from one to the other of us with -half-frightened, half-hopeful eyes, as one who is not sure -whether he is on the verge of a windfall or of a catastrophe. -Then he stepped into the cab, and in half an hour we were back in -the sitting-room at Baker Street. Nothing had been said during -our drive, but the high, thin breathing of our new companion, and -the claspings and unclaspings of his hands, spoke of the nervous -tension within him. - -"Here we are!" said Holmes cheerily as we filed into the room. -"The fire looks very seasonable in this weather. You look cold, -Mr. Ryder. Pray take the basket-chair. I will just put on my -slippers before we settle this little matter of yours. Now, then! -You want to know what became of those geese?" - -"Yes, sir." - -"Or rather, I fancy, of that goose. It was one bird, I imagine in -which you were interested--white, with a black bar across the -tail." - -Ryder quivered with emotion. "Oh, sir," he cried, "can you tell -me where it went to?" - -"It came here." - -"Here?" - -"Yes, and a most remarkable bird it proved. I don't wonder that -you should take an interest in it. It laid an egg after it was -dead--the bonniest, brightest little blue egg that ever was seen. -I have it here in my museum." - -Our visitor staggered to his feet and clutched the mantelpiece -with his right hand. Holmes unlocked his strong-box and held up -the blue carbuncle, which shone out like a star, with a cold, -brilliant, many-pointed radiance. Ryder stood glaring with a -drawn face, uncertain whether to claim or to disown it. - -"The game's up, Ryder," said Holmes quietly. "Hold up, man, or -you'll be into the fire! Give him an arm back into his chair, -Watson. He's not got blood enough to go in for felony with -impunity. Give him a dash of brandy. So! Now he looks a little -more human. What a shrimp it is, to be sure!" - -For a moment he had staggered and nearly fallen, but the brandy -brought a tinge of colour into his cheeks, and he sat staring -with frightened eyes at his accuser. - -"I have almost every link in my hands, and all the proofs which I -could possibly need, so there is little which you need tell me. -Still, that little may as well be cleared up to make the case -complete. You had heard, Ryder, of this blue stone of the -Countess of Morcar's?" - -"It was Catherine Cusack who told me of it," said he in a -crackling voice. - -"I see--her ladyship's waiting-maid. Well, the temptation of -sudden wealth so easily acquired was too much for you, as it has -been for better men before you; but you were not very scrupulous -in the means you used. It seems to me, Ryder, that there is the -making of a very pretty villain in you. You knew that this man -Horner, the plumber, had been concerned in some such matter -before, and that suspicion would rest the more readily upon him. -What did you do, then? You made some small job in my lady's -room--you and your confederate Cusack--and you managed that he -should be the man sent for. Then, when he had left, you rifled -the jewel-case, raised the alarm, and had this unfortunate man -arrested. You then--" - -Ryder threw himself down suddenly upon the rug and clutched at my -companion's knees. "For God's sake, have mercy!" he shrieked. -"Think of my father! Of my mother! It would break their hearts. I -never went wrong before! I never will again. I swear it. I'll -swear it on a Bible. Oh, don't bring it into court! For Christ's -sake, don't!" - -"Get back into your chair!" said Holmes sternly. "It is very well -to cringe and crawl now, but you thought little enough of this -poor Horner in the dock for a crime of which he knew nothing." - -"I will fly, Mr. Holmes. I will leave the country, sir. Then the -charge against him will break down." - -"Hum! We will talk about that. And now let us hear a true account -of the next act. How came the stone into the goose, and how came -the goose into the open market? Tell us the truth, for there lies -your only hope of safety." - -Ryder passed his tongue over his parched lips. "I will tell you -it just as it happened, sir," said he. "When Horner had been -arrested, it seemed to me that it would be best for me to get -away with the stone at once, for I did not know at what moment -the police might not take it into their heads to search me and my -room. There was no place about the hotel where it would be safe. -I went out, as if on some commission, and I made for my sister's -house. She had married a man named Oakshott, and lived in Brixton -Road, where she fattened fowls for the market. All the way there -every man I met seemed to me to be a policeman or a detective; -and, for all that it was a cold night, the sweat was pouring down -my face before I came to the Brixton Road. My sister asked me -what was the matter, and why I was so pale; but I told her that I -had been upset by the jewel robbery at the hotel. Then I went -into the back yard and smoked a pipe and wondered what it would -be best to do. - -"I had a friend once called Maudsley, who went to the bad, and -has just been serving his time in Pentonville. One day he had met -me, and fell into talk about the ways of thieves, and how they -could get rid of what they stole. I knew that he would be true to -me, for I knew one or two things about him; so I made up my mind -to go right on to Kilburn, where he lived, and take him into my -confidence. He would show me how to turn the stone into money. -But how to get to him in safety? I thought of the agonies I had -gone through in coming from the hotel. I might at any moment be -seized and searched, and there would be the stone in my waistcoat -pocket. I was leaning against the wall at the time and looking at -the geese which were waddling about round my feet, and suddenly -an idea came into my head which showed me how I could beat the -best detective that ever lived. - -"My sister had told me some weeks before that I might have the -pick of her geese for a Christmas present, and I knew that she -was always as good as her word. I would take my goose now, and in -it I would carry my stone to Kilburn. There was a little shed in -the yard, and behind this I drove one of the birds--a fine big -one, white, with a barred tail. I caught it, and prying its bill -open, I thrust the stone down its throat as far as my finger -could reach. The bird gave a gulp, and I felt the stone pass -along its gullet and down into its crop. But the creature flapped -and struggled, and out came my sister to know what was the -matter. As I turned to speak to her the brute broke loose and -fluttered off among the others. - -"'Whatever were you doing with that bird, Jem?' says she. - -"'Well,' said I, 'you said you'd give me one for Christmas, and I -was feeling which was the fattest.' - -"'Oh,' says she, 'we've set yours aside for you--Jem's bird, we -call it. It's the big white one over yonder. There's twenty-six -of them, which makes one for you, and one for us, and two dozen -for the market.' - -"'Thank you, Maggie,' says I; 'but if it is all the same to you, -I'd rather have that one I was handling just now.' - -"'The other is a good three pound heavier,' said she, 'and we -fattened it expressly for you.' - -"'Never mind. I'll have the other, and I'll take it now,' said I. - -"'Oh, just as you like,' said she, a little huffed. 'Which is it -you want, then?' - -"'That white one with the barred tail, right in the middle of the -flock.' - -"'Oh, very well. Kill it and take it with you.' - -"Well, I did what she said, Mr. Holmes, and I carried the bird -all the way to Kilburn. I told my pal what I had done, for he was -a man that it was easy to tell a thing like that to. He laughed -until he choked, and we got a knife and opened the goose. My -heart turned to water, for there was no sign of the stone, and I -knew that some terrible mistake had occurred. I left the bird, -rushed back to my sister's, and hurried into the back yard. There -was not a bird to be seen there. - -"'Where are they all, Maggie?' I cried. - -"'Gone to the dealer's, Jem.' - -"'Which dealer's?' - -"'Breckinridge, of Covent Garden.' - -"'But was there another with a barred tail?' I asked, 'the same -as the one I chose?' - -"'Yes, Jem; there were two barred-tailed ones, and I could never -tell them apart.' - -"Well, then, of course I saw it all, and I ran off as hard as my -feet would carry me to this man Breckinridge; but he had sold the -lot at once, and not one word would he tell me as to where they -had gone. You heard him yourselves to-night. Well, he has always -answered me like that. My sister thinks that I am going mad. -Sometimes I think that I am myself. And now--and now I am myself -a branded thief, without ever having touched the wealth for which -I sold my character. God help me! God help me!" He burst into -convulsive sobbing, with his face buried in his hands. - -There was a long silence, broken only by his heavy breathing and -by the measured tapping of Sherlock Holmes' finger-tips upon the -edge of the table. Then my friend rose and threw open the door. - -"Get out!" said he. - -"What, sir! Oh, Heaven bless you!" - -"No more words. Get out!" - -And no more words were needed. There was a rush, a clatter upon -the stairs, the bang of a door, and the crisp rattle of running -footfalls from the street. - -"After all, Watson," said Holmes, reaching up his hand for his -clay pipe, "I am not retained by the police to supply their -deficiencies. If Horner were in danger it would be another thing; -but this fellow will not appear against him, and the case must -collapse. I suppose that I am commuting a felony, but it is just -possible that I am saving a soul. This fellow will not go wrong -again; he is too terribly frightened. Send him to gaol now, and -you make him a gaol-bird for life. Besides, it is the season of -forgiveness. Chance has put in our way a most singular and -whimsical problem, and its solution is its own reward. If you -will have the goodness to touch the bell, Doctor, we will begin -another investigation, in which, also a bird will be the chief -feature." - - - -VIII. THE ADVENTURE OF THE SPECKLED BAND - -On glancing over my notes of the seventy odd cases in which I -have during the last eight years studied the methods of my friend -Sherlock Holmes, I find many tragic, some comic, a large number -merely strange, but none commonplace; for, working as he did -rather for the love of his art than for the acquirement of -wealth, he refused to associate himself with any investigation -which did not tend towards the unusual, and even the fantastic. -Of all these varied cases, however, I cannot recall any which -presented more singular features than that which was associated -with the well-known Surrey family of the Roylotts of Stoke Moran. -The events in question occurred in the early days of my -association with Holmes, when we were sharing rooms as bachelors -in Baker Street. It is possible that I might have placed them -upon record before, but a promise of secrecy was made at the -time, from which I have only been freed during the last month by -the untimely death of the lady to whom the pledge was given. It -is perhaps as well that the facts should now come to light, for I -have reasons to know that there are widespread rumours as to the -death of Dr. Grimesby Roylott which tend to make the matter even -more terrible than the truth. - -It was early in April in the year '83 that I woke one morning to -find Sherlock Holmes standing, fully dressed, by the side of my -bed. He was a late riser, as a rule, and as the clock on the -mantelpiece showed me that it was only a quarter-past seven, I -blinked up at him in some surprise, and perhaps just a little -resentment, for I was myself regular in my habits. - -"Very sorry to knock you up, Watson," said he, "but it's the -common lot this morning. Mrs. Hudson has been knocked up, she -retorted upon me, and I on you." - -"What is it, then--a fire?" - -"No; a client. It seems that a young lady has arrived in a -considerable state of excitement, who insists upon seeing me. She -is waiting now in the sitting-room. Now, when young ladies wander -about the metropolis at this hour of the morning, and knock -sleepy people up out of their beds, I presume that it is -something very pressing which they have to communicate. Should it -prove to be an interesting case, you would, I am sure, wish to -follow it from the outset. I thought, at any rate, that I should -call you and give you the chance." - -"My dear fellow, I would not miss it for anything." - -I had no keener pleasure than in following Holmes in his -professional investigations, and in admiring the rapid -deductions, as swift as intuitions, and yet always founded on a -logical basis with which he unravelled the problems which were -submitted to him. I rapidly threw on my clothes and was ready in -a few minutes to accompany my friend down to the sitting-room. A -lady dressed in black and heavily veiled, who had been sitting in -the window, rose as we entered. - -"Good-morning, madam," said Holmes cheerily. "My name is Sherlock -Holmes. This is my intimate friend and associate, Dr. Watson, -before whom you can speak as freely as before myself. Ha! I am -glad to see that Mrs. Hudson has had the good sense to light the -fire. Pray draw up to it, and I shall order you a cup of hot -coffee, for I observe that you are shivering." - -"It is not cold which makes me shiver," said the woman in a low -voice, changing her seat as requested. - -"What, then?" - -"It is fear, Mr. Holmes. It is terror." She raised her veil as -she spoke, and we could see that she was indeed in a pitiable -state of agitation, her face all drawn and grey, with restless -frightened eyes, like those of some hunted animal. Her features -and figure were those of a woman of thirty, but her hair was shot -with premature grey, and her expression was weary and haggard. -Sherlock Holmes ran her over with one of his quick, -all-comprehensive glances. - -"You must not fear," said he soothingly, bending forward and -patting her forearm. "We shall soon set matters right, I have no -doubt. You have come in by train this morning, I see." - -"You know me, then?" - -"No, but I observe the second half of a return ticket in the palm -of your left glove. You must have started early, and yet you had -a good drive in a dog-cart, along heavy roads, before you reached -the station." - -The lady gave a violent start and stared in bewilderment at my -companion. - -"There is no mystery, my dear madam," said he, smiling. "The left -arm of your jacket is spattered with mud in no less than seven -places. The marks are perfectly fresh. There is no vehicle save a -dog-cart which throws up mud in that way, and then only when you -sit on the left-hand side of the driver." - -"Whatever your reasons may be, you are perfectly correct," said -she. "I started from home before six, reached Leatherhead at -twenty past, and came in by the first train to Waterloo. Sir, I -can stand this strain no longer; I shall go mad if it continues. -I have no one to turn to--none, save only one, who cares for me, -and he, poor fellow, can be of little aid. I have heard of you, -Mr. Holmes; I have heard of you from Mrs. Farintosh, whom you -helped in the hour of her sore need. It was from her that I had -your address. Oh, sir, do you not think that you could help me, -too, and at least throw a little light through the dense darkness -which surrounds me? At present it is out of my power to reward -you for your services, but in a month or six weeks I shall be -married, with the control of my own income, and then at least you -shall not find me ungrateful." - -Holmes turned to his desk and, unlocking it, drew out a small -case-book, which he consulted. - -"Farintosh," said he. "Ah yes, I recall the case; it was -concerned with an opal tiara. I think it was before your time, -Watson. I can only say, madam, that I shall be happy to devote -the same care to your case as I did to that of your friend. As to -reward, my profession is its own reward; but you are at liberty -to defray whatever expenses I may be put to, at the time which -suits you best. And now I beg that you will lay before us -everything that may help us in forming an opinion upon the -matter." - -"Alas!" replied our visitor, "the very horror of my situation -lies in the fact that my fears are so vague, and my suspicions -depend so entirely upon small points, which might seem trivial to -another, that even he to whom of all others I have a right to -look for help and advice looks upon all that I tell him about it -as the fancies of a nervous woman. He does not say so, but I can -read it from his soothing answers and averted eyes. But I have -heard, Mr. Holmes, that you can see deeply into the manifold -wickedness of the human heart. You may advise me how to walk amid -the dangers which encompass me." - -"I am all attention, madam." - -"My name is Helen Stoner, and I am living with my stepfather, who -is the last survivor of one of the oldest Saxon families in -England, the Roylotts of Stoke Moran, on the western border of -Surrey." - -Holmes nodded his head. "The name is familiar to me," said he. - -"The family was at one time among the richest in England, and the -estates extended over the borders into Berkshire in the north, -and Hampshire in the west. In the last century, however, four -successive heirs were of a dissolute and wasteful disposition, -and the family ruin was eventually completed by a gambler in the -days of the Regency. Nothing was left save a few acres of ground, -and the two-hundred-year-old house, which is itself crushed under -a heavy mortgage. The last squire dragged out his existence -there, living the horrible life of an aristocratic pauper; but -his only son, my stepfather, seeing that he must adapt himself to -the new conditions, obtained an advance from a relative, which -enabled him to take a medical degree and went out to Calcutta, -where, by his professional skill and his force of character, he -established a large practice. In a fit of anger, however, caused -by some robberies which had been perpetrated in the house, he -beat his native butler to death and narrowly escaped a capital -sentence. As it was, he suffered a long term of imprisonment and -afterwards returned to England a morose and disappointed man. - -"When Dr. Roylott was in India he married my mother, Mrs. Stoner, -the young widow of Major-General Stoner, of the Bengal Artillery. -My sister Julia and I were twins, and we were only two years old -at the time of my mother's re-marriage. She had a considerable -sum of money--not less than 1000 pounds a year--and this she -bequeathed to Dr. Roylott entirely while we resided with him, -with a provision that a certain annual sum should be allowed to -each of us in the event of our marriage. Shortly after our return -to England my mother died--she was killed eight years ago in a -railway accident near Crewe. Dr. Roylott then abandoned his -attempts to establish himself in practice in London and took us -to live with him in the old ancestral house at Stoke Moran. The -money which my mother had left was enough for all our wants, and -there seemed to be no obstacle to our happiness. - -"But a terrible change came over our stepfather about this time. -Instead of making friends and exchanging visits with our -neighbours, who had at first been overjoyed to see a Roylott of -Stoke Moran back in the old family seat, he shut himself up in -his house and seldom came out save to indulge in ferocious -quarrels with whoever might cross his path. Violence of temper -approaching to mania has been hereditary in the men of the -family, and in my stepfather's case it had, I believe, been -intensified by his long residence in the tropics. A series of -disgraceful brawls took place, two of which ended in the -police-court, until at last he became the terror of the village, -and the folks would fly at his approach, for he is a man of -immense strength, and absolutely uncontrollable in his anger. - -"Last week he hurled the local blacksmith over a parapet into a -stream, and it was only by paying over all the money which I -could gather together that I was able to avert another public -exposure. He had no friends at all save the wandering gipsies, -and he would give these vagabonds leave to encamp upon the few -acres of bramble-covered land which represent the family estate, -and would accept in return the hospitality of their tents, -wandering away with them sometimes for weeks on end. He has a -passion also for Indian animals, which are sent over to him by a -correspondent, and he has at this moment a cheetah and a baboon, -which wander freely over his grounds and are feared by the -villagers almost as much as their master. - -"You can imagine from what I say that my poor sister Julia and I -had no great pleasure in our lives. No servant would stay with -us, and for a long time we did all the work of the house. She was -but thirty at the time of her death, and yet her hair had already -begun to whiten, even as mine has." - -"Your sister is dead, then?" - -"She died just two years ago, and it is of her death that I wish -to speak to you. You can understand that, living the life which I -have described, we were little likely to see anyone of our own -age and position. We had, however, an aunt, my mother's maiden -sister, Miss Honoria Westphail, who lives near Harrow, and we -were occasionally allowed to pay short visits at this lady's -house. Julia went there at Christmas two years ago, and met there -a half-pay major of marines, to whom she became engaged. My -stepfather learned of the engagement when my sister returned and -offered no objection to the marriage; but within a fortnight of -the day which had been fixed for the wedding, the terrible event -occurred which has deprived me of my only companion." - -Sherlock Holmes had been leaning back in his chair with his eyes -closed and his head sunk in a cushion, but he half opened his -lids now and glanced across at his visitor. - -"Pray be precise as to details," said he. - -"It is easy for me to be so, for every event of that dreadful -time is seared into my memory. The manor-house is, as I have -already said, very old, and only one wing is now inhabited. The -bedrooms in this wing are on the ground floor, the sitting-rooms -being in the central block of the buildings. Of these bedrooms -the first is Dr. Roylott's, the second my sister's, and the third -my own. There is no communication between them, but they all open -out into the same corridor. Do I make myself plain?" - -"Perfectly so." - -"The windows of the three rooms open out upon the lawn. That -fatal night Dr. Roylott had gone to his room early, though we -knew that he had not retired to rest, for my sister was troubled -by the smell of the strong Indian cigars which it was his custom -to smoke. She left her room, therefore, and came into mine, where -she sat for some time, chatting about her approaching wedding. At -eleven o'clock she rose to leave me, but she paused at the door -and looked back. - -"'Tell me, Helen,' said she, 'have you ever heard anyone whistle -in the dead of the night?' - -"'Never,' said I. - -"'I suppose that you could not possibly whistle, yourself, in -your sleep?' - -"'Certainly not. But why?' - -"'Because during the last few nights I have always, about three -in the morning, heard a low, clear whistle. I am a light sleeper, -and it has awakened me. I cannot tell where it came from--perhaps -from the next room, perhaps from the lawn. I thought that I would -just ask you whether you had heard it.' - -"'No, I have not. It must be those wretched gipsies in the -plantation.' - -"'Very likely. And yet if it were on the lawn, I wonder that you -did not hear it also.' - -"'Ah, but I sleep more heavily than you.' - -"'Well, it is of no great consequence, at any rate.' She smiled -back at me, closed my door, and a few moments later I heard her -key turn in the lock." - -"Indeed," said Holmes. "Was it your custom always to lock -yourselves in at night?" - -"Always." - -"And why?" - -"I think that I mentioned to you that the doctor kept a cheetah -and a baboon. We had no feeling of security unless our doors were -locked." - -"Quite so. Pray proceed with your statement." - -"I could not sleep that night. A vague feeling of impending -misfortune impressed me. My sister and I, you will recollect, -were twins, and you know how subtle are the links which bind two -souls which are so closely allied. It was a wild night. The wind -was howling outside, and the rain was beating and splashing -against the windows. Suddenly, amid all the hubbub of the gale, -there burst forth the wild scream of a terrified woman. I knew -that it was my sister's voice. I sprang from my bed, wrapped a -shawl round me, and rushed into the corridor. As I opened my door -I seemed to hear a low whistle, such as my sister described, and -a few moments later a clanging sound, as if a mass of metal had -fallen. As I ran down the passage, my sister's door was unlocked, -and revolved slowly upon its hinges. I stared at it -horror-stricken, not knowing what was about to issue from it. By -the light of the corridor-lamp I saw my sister appear at the -opening, her face blanched with terror, her hands groping for -help, her whole figure swaying to and fro like that of a -drunkard. I ran to her and threw my arms round her, but at that -moment her knees seemed to give way and she fell to the ground. -She writhed as one who is in terrible pain, and her limbs were -dreadfully convulsed. At first I thought that she had not -recognised me, but as I bent over her she suddenly shrieked out -in a voice which I shall never forget, 'Oh, my God! Helen! It was -the band! The speckled band!' There was something else which she -would fain have said, and she stabbed with her finger into the -air in the direction of the doctor's room, but a fresh convulsion -seized her and choked her words. I rushed out, calling loudly for -my stepfather, and I met him hastening from his room in his -dressing-gown. When he reached my sister's side she was -unconscious, and though he poured brandy down her throat and sent -for medical aid from the village, all efforts were in vain, for -she slowly sank and died without having recovered her -consciousness. Such was the dreadful end of my beloved sister." - -"One moment," said Holmes, "are you sure about this whistle and -metallic sound? Could you swear to it?" - -"That was what the county coroner asked me at the inquiry. It is -my strong impression that I heard it, and yet, among the crash of -the gale and the creaking of an old house, I may possibly have -been deceived." - -"Was your sister dressed?" - -"No, she was in her night-dress. In her right hand was found the -charred stump of a match, and in her left a match-box." - -"Showing that she had struck a light and looked about her when -the alarm took place. That is important. And what conclusions did -the coroner come to?" - -"He investigated the case with great care, for Dr. Roylott's -conduct had long been notorious in the county, but he was unable -to find any satisfactory cause of death. My evidence showed that -the door had been fastened upon the inner side, and the windows -were blocked by old-fashioned shutters with broad iron bars, -which were secured every night. The walls were carefully sounded, -and were shown to be quite solid all round, and the flooring was -also thoroughly examined, with the same result. The chimney is -wide, but is barred up by four large staples. It is certain, -therefore, that my sister was quite alone when she met her end. -Besides, there were no marks of any violence upon her." - -"How about poison?" - -"The doctors examined her for it, but without success." - -"What do you think that this unfortunate lady died of, then?" - -"It is my belief that she died of pure fear and nervous shock, -though what it was that frightened her I cannot imagine." - -"Were there gipsies in the plantation at the time?" - -"Yes, there are nearly always some there." - -"Ah, and what did you gather from this allusion to a band--a -speckled band?" - -"Sometimes I have thought that it was merely the wild talk of -delirium, sometimes that it may have referred to some band of -people, perhaps to these very gipsies in the plantation. I do not -know whether the spotted handkerchiefs which so many of them wear -over their heads might have suggested the strange adjective which -she used." - -Holmes shook his head like a man who is far from being satisfied. - -"These are very deep waters," said he; "pray go on with your -narrative." - -"Two years have passed since then, and my life has been until -lately lonelier than ever. A month ago, however, a dear friend, -whom I have known for many years, has done me the honour to ask -my hand in marriage. His name is Armitage--Percy Armitage--the -second son of Mr. Armitage, of Crane Water, near Reading. My -stepfather has offered no opposition to the match, and we are to -be married in the course of the spring. Two days ago some repairs -were started in the west wing of the building, and my bedroom -wall has been pierced, so that I have had to move into the -chamber in which my sister died, and to sleep in the very bed in -which she slept. Imagine, then, my thrill of terror when last -night, as I lay awake, thinking over her terrible fate, I -suddenly heard in the silence of the night the low whistle which -had been the herald of her own death. I sprang up and lit the -lamp, but nothing was to be seen in the room. I was too shaken to -go to bed again, however, so I dressed, and as soon as it was -daylight I slipped down, got a dog-cart at the Crown Inn, which -is opposite, and drove to Leatherhead, from whence I have come on -this morning with the one object of seeing you and asking your -advice." - -"You have done wisely," said my friend. "But have you told me -all?" - -"Yes, all." - -"Miss Roylott, you have not. You are screening your stepfather." - -"Why, what do you mean?" - -For answer Holmes pushed back the frill of black lace which -fringed the hand that lay upon our visitor's knee. Five little -livid spots, the marks of four fingers and a thumb, were printed -upon the white wrist. - -"You have been cruelly used," said Holmes. - -The lady coloured deeply and covered over her injured wrist. "He -is a hard man," she said, "and perhaps he hardly knows his own -strength." - -There was a long silence, during which Holmes leaned his chin -upon his hands and stared into the crackling fire. - -"This is a very deep business," he said at last. "There are a -thousand details which I should desire to know before I decide -upon our course of action. Yet we have not a moment to lose. If -we were to come to Stoke Moran to-day, would it be possible for -us to see over these rooms without the knowledge of your -stepfather?" - -"As it happens, he spoke of coming into town to-day upon some -most important business. It is probable that he will be away all -day, and that there would be nothing to disturb you. We have a -housekeeper now, but she is old and foolish, and I could easily -get her out of the way." - -"Excellent. You are not averse to this trip, Watson?" - -"By no means." - -"Then we shall both come. What are you going to do yourself?" - -"I have one or two things which I would wish to do now that I am -in town. But I shall return by the twelve o'clock train, so as to -be there in time for your coming." - -"And you may expect us early in the afternoon. I have myself some -small business matters to attend to. Will you not wait and -breakfast?" - -"No, I must go. My heart is lightened already since I have -confided my trouble to you. I shall look forward to seeing you -again this afternoon." She dropped her thick black veil over her -face and glided from the room. - -"And what do you think of it all, Watson?" asked Sherlock Holmes, -leaning back in his chair. - -"It seems to me to be a most dark and sinister business." - -"Dark enough and sinister enough." - -"Yet if the lady is correct in saying that the flooring and walls -are sound, and that the door, window, and chimney are impassable, -then her sister must have been undoubtedly alone when she met her -mysterious end." - -"What becomes, then, of these nocturnal whistles, and what of the -very peculiar words of the dying woman?" - -"I cannot think." - -"When you combine the ideas of whistles at night, the presence of -a band of gipsies who are on intimate terms with this old doctor, -the fact that we have every reason to believe that the doctor has -an interest in preventing his stepdaughter's marriage, the dying -allusion to a band, and, finally, the fact that Miss Helen Stoner -heard a metallic clang, which might have been caused by one of -those metal bars that secured the shutters falling back into its -place, I think that there is good ground to think that the -mystery may be cleared along those lines." - -"But what, then, did the gipsies do?" - -"I cannot imagine." - -"I see many objections to any such theory." - -"And so do I. It is precisely for that reason that we are going -to Stoke Moran this day. I want to see whether the objections are -fatal, or if they may be explained away. But what in the name of -the devil!" - -The ejaculation had been drawn from my companion by the fact that -our door had been suddenly dashed open, and that a huge man had -framed himself in the aperture. His costume was a peculiar -mixture of the professional and of the agricultural, having a -black top-hat, a long frock-coat, and a pair of high gaiters, -with a hunting-crop swinging in his hand. So tall was he that his -hat actually brushed the cross bar of the doorway, and his -breadth seemed to span it across from side to side. A large face, -seared with a thousand wrinkles, burned yellow with the sun, and -marked with every evil passion, was turned from one to the other -of us, while his deep-set, bile-shot eyes, and his high, thin, -fleshless nose, gave him somewhat the resemblance to a fierce old -bird of prey. - -"Which of you is Holmes?" asked this apparition. - -"My name, sir; but you have the advantage of me," said my -companion quietly. - -"I am Dr. Grimesby Roylott, of Stoke Moran." - -"Indeed, Doctor," said Holmes blandly. "Pray take a seat." - -"I will do nothing of the kind. My stepdaughter has been here. I -have traced her. What has she been saying to you?" - -"It is a little cold for the time of the year," said Holmes. - -"What has she been saying to you?" screamed the old man -furiously. - -"But I have heard that the crocuses promise well," continued my -companion imperturbably. - -"Ha! You put me off, do you?" said our new visitor, taking a step -forward and shaking his hunting-crop. "I know you, you scoundrel! -I have heard of you before. You are Holmes, the meddler." - -My friend smiled. - -"Holmes, the busybody!" - -His smile broadened. - -"Holmes, the Scotland Yard Jack-in-office!" - -Holmes chuckled heartily. "Your conversation is most -entertaining," said he. "When you go out close the door, for -there is a decided draught." - -"I will go when I have said my say. Don't you dare to meddle with -my affairs. I know that Miss Stoner has been here. I traced her! -I am a dangerous man to fall foul of! See here." He stepped -swiftly forward, seized the poker, and bent it into a curve with -his huge brown hands. - -"See that you keep yourself out of my grip," he snarled, and -hurling the twisted poker into the fireplace he strode out of the -room. - -"He seems a very amiable person," said Holmes, laughing. "I am -not quite so bulky, but if he had remained I might have shown him -that my grip was not much more feeble than his own." As he spoke -he picked up the steel poker and, with a sudden effort, -straightened it out again. - -"Fancy his having the insolence to confound me with the official -detective force! This incident gives zest to our investigation, -however, and I only trust that our little friend will not suffer -from her imprudence in allowing this brute to trace her. And now, -Watson, we shall order breakfast, and afterwards I shall walk -down to Doctors' Commons, where I hope to get some data which may -help us in this matter." - - -It was nearly one o'clock when Sherlock Holmes returned from his -excursion. He held in his hand a sheet of blue paper, scrawled -over with notes and figures. - -"I have seen the will of the deceased wife," said he. "To -determine its exact meaning I have been obliged to work out the -present prices of the investments with which it is concerned. The -total income, which at the time of the wife's death was little -short of 1100 pounds, is now, through the fall in agricultural -prices, not more than 750 pounds. Each daughter can claim an -income of 250 pounds, in case of marriage. It is evident, -therefore, that if both girls had married, this beauty would have -had a mere pittance, while even one of them would cripple him to -a very serious extent. My morning's work has not been wasted, -since it has proved that he has the very strongest motives for -standing in the way of anything of the sort. And now, Watson, -this is too serious for dawdling, especially as the old man is -aware that we are interesting ourselves in his affairs; so if you -are ready, we shall call a cab and drive to Waterloo. I should be -very much obliged if you would slip your revolver into your -pocket. An Eley's No. 2 is an excellent argument with gentlemen -who can twist steel pokers into knots. That and a tooth-brush -are, I think, all that we need." - -At Waterloo we were fortunate in catching a train for -Leatherhead, where we hired a trap at the station inn and drove -for four or five miles through the lovely Surrey lanes. It was a -perfect day, with a bright sun and a few fleecy clouds in the -heavens. The trees and wayside hedges were just throwing out -their first green shoots, and the air was full of the pleasant -smell of the moist earth. To me at least there was a strange -contrast between the sweet promise of the spring and this -sinister quest upon which we were engaged. My companion sat in -the front of the trap, his arms folded, his hat pulled down over -his eyes, and his chin sunk upon his breast, buried in the -deepest thought. Suddenly, however, he started, tapped me on the -shoulder, and pointed over the meadows. - -"Look there!" said he. - -A heavily timbered park stretched up in a gentle slope, -thickening into a grove at the highest point. From amid the -branches there jutted out the grey gables and high roof-tree of a -very old mansion. - -"Stoke Moran?" said he. - -"Yes, sir, that be the house of Dr. Grimesby Roylott," remarked -the driver. - -"There is some building going on there," said Holmes; "that is -where we are going." - -"There's the village," said the driver, pointing to a cluster of -roofs some distance to the left; "but if you want to get to the -house, you'll find it shorter to get over this stile, and so by -the foot-path over the fields. There it is, where the lady is -walking." - -"And the lady, I fancy, is Miss Stoner," observed Holmes, shading -his eyes. "Yes, I think we had better do as you suggest." - -We got off, paid our fare, and the trap rattled back on its way -to Leatherhead. - -"I thought it as well," said Holmes as we climbed the stile, -"that this fellow should think we had come here as architects, or -on some definite business. It may stop his gossip. -Good-afternoon, Miss Stoner. You see that we have been as good as -our word." - -Our client of the morning had hurried forward to meet us with a -face which spoke her joy. "I have been waiting so eagerly for -you," she cried, shaking hands with us warmly. "All has turned -out splendidly. Dr. Roylott has gone to town, and it is unlikely -that he will be back before evening." - -"We have had the pleasure of making the doctor's acquaintance," -said Holmes, and in a few words he sketched out what had -occurred. Miss Stoner turned white to the lips as she listened. - -"Good heavens!" she cried, "he has followed me, then." - -"So it appears." - -"He is so cunning that I never know when I am safe from him. What -will he say when he returns?" - -"He must guard himself, for he may find that there is someone -more cunning than himself upon his track. You must lock yourself -up from him to-night. If he is violent, we shall take you away to -your aunt's at Harrow. Now, we must make the best use of our -time, so kindly take us at once to the rooms which we are to -examine." - -The building was of grey, lichen-blotched stone, with a high -central portion and two curving wings, like the claws of a crab, -thrown out on each side. In one of these wings the windows were -broken and blocked with wooden boards, while the roof was partly -caved in, a picture of ruin. The central portion was in little -better repair, but the right-hand block was comparatively modern, -and the blinds in the windows, with the blue smoke curling up -from the chimneys, showed that this was where the family resided. -Some scaffolding had been erected against the end wall, and the -stone-work had been broken into, but there were no signs of any -workmen at the moment of our visit. Holmes walked slowly up and -down the ill-trimmed lawn and examined with deep attention the -outsides of the windows. - -"This, I take it, belongs to the room in which you used to sleep, -the centre one to your sister's, and the one next to the main -building to Dr. Roylott's chamber?" - -"Exactly so. But I am now sleeping in the middle one." - -"Pending the alterations, as I understand. By the way, there does -not seem to be any very pressing need for repairs at that end -wall." - -"There were none. I believe that it was an excuse to move me from -my room." - -"Ah! that is suggestive. Now, on the other side of this narrow -wing runs the corridor from which these three rooms open. There -are windows in it, of course?" - -"Yes, but very small ones. Too narrow for anyone to pass -through." - -"As you both locked your doors at night, your rooms were -unapproachable from that side. Now, would you have the kindness -to go into your room and bar your shutters?" - -Miss Stoner did so, and Holmes, after a careful examination -through the open window, endeavoured in every way to force the -shutter open, but without success. There was no slit through -which a knife could be passed to raise the bar. Then with his -lens he tested the hinges, but they were of solid iron, built -firmly into the massive masonry. "Hum!" said he, scratching his -chin in some perplexity, "my theory certainly presents some -difficulties. No one could pass these shutters if they were -bolted. Well, we shall see if the inside throws any light upon -the matter." - -A small side door led into the whitewashed corridor from which -the three bedrooms opened. Holmes refused to examine the third -chamber, so we passed at once to the second, that in which Miss -Stoner was now sleeping, and in which her sister had met with her -fate. It was a homely little room, with a low ceiling and a -gaping fireplace, after the fashion of old country-houses. A -brown chest of drawers stood in one corner, a narrow -white-counterpaned bed in another, and a dressing-table on the -left-hand side of the window. These articles, with two small -wicker-work chairs, made up all the furniture in the room save -for a square of Wilton carpet in the centre. The boards round and -the panelling of the walls were of brown, worm-eaten oak, so old -and discoloured that it may have dated from the original building -of the house. Holmes drew one of the chairs into a corner and sat -silent, while his eyes travelled round and round and up and down, -taking in every detail of the apartment. - -"Where does that bell communicate with?" he asked at last -pointing to a thick bell-rope which hung down beside the bed, the -tassel actually lying upon the pillow. - -"It goes to the housekeeper's room." - -"It looks newer than the other things?" - -"Yes, it was only put there a couple of years ago." - -"Your sister asked for it, I suppose?" - -"No, I never heard of her using it. We used always to get what we -wanted for ourselves." - -"Indeed, it seemed unnecessary to put so nice a bell-pull there. -You will excuse me for a few minutes while I satisfy myself as to -this floor." He threw himself down upon his face with his lens in -his hand and crawled swiftly backward and forward, examining -minutely the cracks between the boards. Then he did the same with -the wood-work with which the chamber was panelled. Finally he -walked over to the bed and spent some time in staring at it and -in running his eye up and down the wall. Finally he took the -bell-rope in his hand and gave it a brisk tug. - -"Why, it's a dummy," said he. - -"Won't it ring?" - -"No, it is not even attached to a wire. This is very interesting. -You can see now that it is fastened to a hook just above where -the little opening for the ventilator is." - -"How very absurd! I never noticed that before." - -"Very strange!" muttered Holmes, pulling at the rope. "There are -one or two very singular points about this room. For example, -what a fool a builder must be to open a ventilator into another -room, when, with the same trouble, he might have communicated -with the outside air!" - -"That is also quite modern," said the lady. - -"Done about the same time as the bell-rope?" remarked Holmes. - -"Yes, there were several little changes carried out about that -time." - -"They seem to have been of a most interesting character--dummy -bell-ropes, and ventilators which do not ventilate. With your -permission, Miss Stoner, we shall now carry our researches into -the inner apartment." - -Dr. Grimesby Roylott's chamber was larger than that of his -step-daughter, but was as plainly furnished. A camp-bed, a small -wooden shelf full of books, mostly of a technical character, an -armchair beside the bed, a plain wooden chair against the wall, a -round table, and a large iron safe were the principal things -which met the eye. Holmes walked slowly round and examined each -and all of them with the keenest interest. - -"What's in here?" he asked, tapping the safe. - -"My stepfather's business papers." - -"Oh! you have seen inside, then?" - -"Only once, some years ago. I remember that it was full of -papers." - -"There isn't a cat in it, for example?" - -"No. What a strange idea!" - -"Well, look at this!" He took up a small saucer of milk which -stood on the top of it. - -"No; we don't keep a cat. But there is a cheetah and a baboon." - -"Ah, yes, of course! Well, a cheetah is just a big cat, and yet a -saucer of milk does not go very far in satisfying its wants, I -daresay. There is one point which I should wish to determine." He -squatted down in front of the wooden chair and examined the seat -of it with the greatest attention. - -"Thank you. That is quite settled," said he, rising and putting -his lens in his pocket. "Hullo! Here is something interesting!" - -The object which had caught his eye was a small dog lash hung on -one corner of the bed. The lash, however, was curled upon itself -and tied so as to make a loop of whipcord. - -"What do you make of that, Watson?" - -"It's a common enough lash. But I don't know why it should be -tied." - -"That is not quite so common, is it? Ah, me! it's a wicked world, -and when a clever man turns his brains to crime it is the worst -of all. I think that I have seen enough now, Miss Stoner, and -with your permission we shall walk out upon the lawn." - -I had never seen my friend's face so grim or his brow so dark as -it was when we turned from the scene of this investigation. We -had walked several times up and down the lawn, neither Miss -Stoner nor myself liking to break in upon his thoughts before he -roused himself from his reverie. - -"It is very essential, Miss Stoner," said he, "that you should -absolutely follow my advice in every respect." - -"I shall most certainly do so." - -"The matter is too serious for any hesitation. Your life may -depend upon your compliance." - -"I assure you that I am in your hands." - -"In the first place, both my friend and I must spend the night in -your room." - -Both Miss Stoner and I gazed at him in astonishment. - -"Yes, it must be so. Let me explain. I believe that that is the -village inn over there?" - -"Yes, that is the Crown." - -"Very good. Your windows would be visible from there?" - -"Certainly." - -"You must confine yourself to your room, on pretence of a -headache, when your stepfather comes back. Then when you hear him -retire for the night, you must open the shutters of your window, -undo the hasp, put your lamp there as a signal to us, and then -withdraw quietly with everything which you are likely to want -into the room which you used to occupy. I have no doubt that, in -spite of the repairs, you could manage there for one night." - -"Oh, yes, easily." - -"The rest you will leave in our hands." - -"But what will you do?" - -"We shall spend the night in your room, and we shall investigate -the cause of this noise which has disturbed you." - -"I believe, Mr. Holmes, that you have already made up your mind," -said Miss Stoner, laying her hand upon my companion's sleeve. - -"Perhaps I have." - -"Then, for pity's sake, tell me what was the cause of my sister's -death." - -"I should prefer to have clearer proofs before I speak." - -"You can at least tell me whether my own thought is correct, and -if she died from some sudden fright." - -"No, I do not think so. I think that there was probably some more -tangible cause. And now, Miss Stoner, we must leave you for if -Dr. Roylott returned and saw us our journey would be in vain. -Good-bye, and be brave, for if you will do what I have told you, -you may rest assured that we shall soon drive away the dangers -that threaten you." - -Sherlock Holmes and I had no difficulty in engaging a bedroom and -sitting-room at the Crown Inn. They were on the upper floor, and -from our window we could command a view of the avenue gate, and -of the inhabited wing of Stoke Moran Manor House. At dusk we saw -Dr. Grimesby Roylott drive past, his huge form looming up beside -the little figure of the lad who drove him. The boy had some -slight difficulty in undoing the heavy iron gates, and we heard -the hoarse roar of the doctor's voice and saw the fury with which -he shook his clinched fists at him. The trap drove on, and a few -minutes later we saw a sudden light spring up among the trees as -the lamp was lit in one of the sitting-rooms. - -"Do you know, Watson," said Holmes as we sat together in the -gathering darkness, "I have really some scruples as to taking you -to-night. There is a distinct element of danger." - -"Can I be of assistance?" - -"Your presence might be invaluable." - -"Then I shall certainly come." - -"It is very kind of you." - -"You speak of danger. You have evidently seen more in these rooms -than was visible to me." - -"No, but I fancy that I may have deduced a little more. I imagine -that you saw all that I did." - -"I saw nothing remarkable save the bell-rope, and what purpose -that could answer I confess is more than I can imagine." - -"You saw the ventilator, too?" - -"Yes, but I do not think that it is such a very unusual thing to -have a small opening between two rooms. It was so small that a -rat could hardly pass through." - -"I knew that we should find a ventilator before ever we came to -Stoke Moran." - -"My dear Holmes!" - -"Oh, yes, I did. You remember in her statement she said that her -sister could smell Dr. Roylott's cigar. Now, of course that -suggested at once that there must be a communication between the -two rooms. It could only be a small one, or it would have been -remarked upon at the coroner's inquiry. I deduced a ventilator." - -"But what harm can there be in that?" - -"Well, there is at least a curious coincidence of dates. A -ventilator is made, a cord is hung, and a lady who sleeps in the -bed dies. Does not that strike you?" - -"I cannot as yet see any connection." - -"Did you observe anything very peculiar about that bed?" - -"No." - -"It was clamped to the floor. Did you ever see a bed fastened -like that before?" - -"I cannot say that I have." - -"The lady could not move her bed. It must always be in the same -relative position to the ventilator and to the rope--or so we may -call it, since it was clearly never meant for a bell-pull." - -"Holmes," I cried, "I seem to see dimly what you are hinting at. -We are only just in time to prevent some subtle and horrible -crime." - -"Subtle enough and horrible enough. When a doctor does go wrong -he is the first of criminals. He has nerve and he has knowledge. -Palmer and Pritchard were among the heads of their profession. -This man strikes even deeper, but I think, Watson, that we shall -be able to strike deeper still. But we shall have horrors enough -before the night is over; for goodness' sake let us have a quiet -pipe and turn our minds for a few hours to something more -cheerful." - - -About nine o'clock the light among the trees was extinguished, -and all was dark in the direction of the Manor House. Two hours -passed slowly away, and then, suddenly, just at the stroke of -eleven, a single bright light shone out right in front of us. - -"That is our signal," said Holmes, springing to his feet; "it -comes from the middle window." - -As we passed out he exchanged a few words with the landlord, -explaining that we were going on a late visit to an acquaintance, -and that it was possible that we might spend the night there. A -moment later we were out on the dark road, a chill wind blowing -in our faces, and one yellow light twinkling in front of us -through the gloom to guide us on our sombre errand. - -There was little difficulty in entering the grounds, for -unrepaired breaches gaped in the old park wall. Making our way -among the trees, we reached the lawn, crossed it, and were about -to enter through the window when out from a clump of laurel -bushes there darted what seemed to be a hideous and distorted -child, who threw itself upon the grass with writhing limbs and -then ran swiftly across the lawn into the darkness. - -"My God!" I whispered; "did you see it?" - -Holmes was for the moment as startled as I. His hand closed like -a vice upon my wrist in his agitation. Then he broke into a low -laugh and put his lips to my ear. - -"It is a nice household," he murmured. "That is the baboon." - -I had forgotten the strange pets which the doctor affected. There -was a cheetah, too; perhaps we might find it upon our shoulders -at any moment. I confess that I felt easier in my mind when, -after following Holmes' example and slipping off my shoes, I -found myself inside the bedroom. My companion noiselessly closed -the shutters, moved the lamp onto the table, and cast his eyes -round the room. All was as we had seen it in the daytime. Then -creeping up to me and making a trumpet of his hand, he whispered -into my ear again so gently that it was all that I could do to -distinguish the words: - -"The least sound would be fatal to our plans." - -I nodded to show that I had heard. - -"We must sit without light. He would see it through the -ventilator." - -I nodded again. - -"Do not go asleep; your very life may depend upon it. Have your -pistol ready in case we should need it. I will sit on the side of -the bed, and you in that chair." - -I took out my revolver and laid it on the corner of the table. - -Holmes had brought up a long thin cane, and this he placed upon -the bed beside him. By it he laid the box of matches and the -stump of a candle. Then he turned down the lamp, and we were left -in darkness. - -How shall I ever forget that dreadful vigil? I could not hear a -sound, not even the drawing of a breath, and yet I knew that my -companion sat open-eyed, within a few feet of me, in the same -state of nervous tension in which I was myself. The shutters cut -off the least ray of light, and we waited in absolute darkness. - -From outside came the occasional cry of a night-bird, and once at -our very window a long drawn catlike whine, which told us that -the cheetah was indeed at liberty. Far away we could hear the -deep tones of the parish clock, which boomed out every quarter of -an hour. How long they seemed, those quarters! Twelve struck, and -one and two and three, and still we sat waiting silently for -whatever might befall. - -Suddenly there was the momentary gleam of a light up in the -direction of the ventilator, which vanished immediately, but was -succeeded by a strong smell of burning oil and heated metal. -Someone in the next room had lit a dark-lantern. I heard a gentle -sound of movement, and then all was silent once more, though the -smell grew stronger. For half an hour I sat with straining ears. -Then suddenly another sound became audible--a very gentle, -soothing sound, like that of a small jet of steam escaping -continually from a kettle. The instant that we heard it, Holmes -sprang from the bed, struck a match, and lashed furiously with -his cane at the bell-pull. - -"You see it, Watson?" he yelled. "You see it?" - -But I saw nothing. At the moment when Holmes struck the light I -heard a low, clear whistle, but the sudden glare flashing into my -weary eyes made it impossible for me to tell what it was at which -my friend lashed so savagely. I could, however, see that his face -was deadly pale and filled with horror and loathing. He had -ceased to strike and was gazing up at the ventilator when -suddenly there broke from the silence of the night the most -horrible cry to which I have ever listened. It swelled up louder -and louder, a hoarse yell of pain and fear and anger all mingled -in the one dreadful shriek. They say that away down in the -village, and even in the distant parsonage, that cry raised the -sleepers from their beds. It struck cold to our hearts, and I -stood gazing at Holmes, and he at me, until the last echoes of it -had died away into the silence from which it rose. - -"What can it mean?" I gasped. - -"It means that it is all over," Holmes answered. "And perhaps, -after all, it is for the best. Take your pistol, and we will -enter Dr. Roylott's room." - -With a grave face he lit the lamp and led the way down the -corridor. Twice he struck at the chamber door without any reply -from within. Then he turned the handle and entered, I at his -heels, with the cocked pistol in my hand. - -It was a singular sight which met our eyes. On the table stood a -dark-lantern with the shutter half open, throwing a brilliant -beam of light upon the iron safe, the door of which was ajar. -Beside this table, on the wooden chair, sat Dr. Grimesby Roylott -clad in a long grey dressing-gown, his bare ankles protruding -beneath, and his feet thrust into red heelless Turkish slippers. -Across his lap lay the short stock with the long lash which we -had noticed during the day. His chin was cocked upward and his -eyes were fixed in a dreadful, rigid stare at the corner of the -ceiling. Round his brow he had a peculiar yellow band, with -brownish speckles, which seemed to be bound tightly round his -head. As we entered he made neither sound nor motion. - -"The band! the speckled band!" whispered Holmes. - -I took a step forward. In an instant his strange headgear began -to move, and there reared itself from among his hair the squat -diamond-shaped head and puffed neck of a loathsome serpent. - -"It is a swamp adder!" cried Holmes; "the deadliest snake in -India. He has died within ten seconds of being bitten. Violence -does, in truth, recoil upon the violent, and the schemer falls -into the pit which he digs for another. Let us thrust this -creature back into its den, and we can then remove Miss Stoner to -some place of shelter and let the county police know what has -happened." - -As he spoke he drew the dog-whip swiftly from the dead man's lap, -and throwing the noose round the reptile's neck he drew it from -its horrid perch and, carrying it at arm's length, threw it into -the iron safe, which he closed upon it. - -Such are the true facts of the death of Dr. Grimesby Roylott, of -Stoke Moran. It is not necessary that I should prolong a -narrative which has already run to too great a length by telling -how we broke the sad news to the terrified girl, how we conveyed -her by the morning train to the care of her good aunt at Harrow, -of how the slow process of official inquiry came to the -conclusion that the doctor met his fate while indiscreetly -playing with a dangerous pet. The little which I had yet to learn -of the case was told me by Sherlock Holmes as we travelled back -next day. - -"I had," said he, "come to an entirely erroneous conclusion which -shows, my dear Watson, how dangerous it always is to reason from -insufficient data. The presence of the gipsies, and the use of -the word 'band,' which was used by the poor girl, no doubt, to -explain the appearance which she had caught a hurried glimpse of -by the light of her match, were sufficient to put me upon an -entirely wrong scent. I can only claim the merit that I instantly -reconsidered my position when, however, it became clear to me -that whatever danger threatened an occupant of the room could not -come either from the window or the door. My attention was -speedily drawn, as I have already remarked to you, to this -ventilator, and to the bell-rope which hung down to the bed. The -discovery that this was a dummy, and that the bed was clamped to -the floor, instantly gave rise to the suspicion that the rope was -there as a bridge for something passing through the hole and -coming to the bed. The idea of a snake instantly occurred to me, -and when I coupled it with my knowledge that the doctor was -furnished with a supply of creatures from India, I felt that I -was probably on the right track. The idea of using a form of -poison which could not possibly be discovered by any chemical -test was just such a one as would occur to a clever and ruthless -man who had had an Eastern training. The rapidity with which such -a poison would take effect would also, from his point of view, be -an advantage. It would be a sharp-eyed coroner, indeed, who could -distinguish the two little dark punctures which would show where -the poison fangs had done their work. Then I thought of the -whistle. Of course he must recall the snake before the morning -light revealed it to the victim. He had trained it, probably by -the use of the milk which we saw, to return to him when summoned. -He would put it through this ventilator at the hour that he -thought best, with the certainty that it would crawl down the -rope and land on the bed. It might or might not bite the -occupant, perhaps she might escape every night for a week, but -sooner or later she must fall a victim. - -"I had come to these conclusions before ever I had entered his -room. An inspection of his chair showed me that he had been in -the habit of standing on it, which of course would be necessary -in order that he should reach the ventilator. The sight of the -safe, the saucer of milk, and the loop of whipcord were enough to -finally dispel any doubts which may have remained. The metallic -clang heard by Miss Stoner was obviously caused by her stepfather -hastily closing the door of his safe upon its terrible occupant. -Having once made up my mind, you know the steps which I took in -order to put the matter to the proof. I heard the creature hiss -as I have no doubt that you did also, and I instantly lit the -light and attacked it." - -"With the result of driving it through the ventilator." - -"And also with the result of causing it to turn upon its master -at the other side. Some of the blows of my cane came home and -roused its snakish temper, so that it flew upon the first person -it saw. In this way I am no doubt indirectly responsible for Dr. -Grimesby Roylott's death, and I cannot say that it is likely to -weigh very heavily upon my conscience." - - - -IX. THE ADVENTURE OF THE ENGINEER'S THUMB - -Of all the problems which have been submitted to my friend, Mr. -Sherlock Holmes, for solution during the years of our intimacy, -there were only two which I was the means of introducing to his -notice--that of Mr. Hatherley's thumb, and that of Colonel -Warburton's madness. Of these the latter may have afforded a -finer field for an acute and original observer, but the other was -so strange in its inception and so dramatic in its details that -it may be the more worthy of being placed upon record, even if it -gave my friend fewer openings for those deductive methods of -reasoning by which he achieved such remarkable results. The story -has, I believe, been told more than once in the newspapers, but, -like all such narratives, its effect is much less striking when -set forth en bloc in a single half-column of print than when the -facts slowly evolve before your own eyes, and the mystery clears -gradually away as each new discovery furnishes a step which leads -on to the complete truth. At the time the circumstances made a -deep impression upon me, and the lapse of two years has hardly -served to weaken the effect. - -It was in the summer of '89, not long after my marriage, that the -events occurred which I am now about to summarise. I had returned -to civil practice and had finally abandoned Holmes in his Baker -Street rooms, although I continually visited him and occasionally -even persuaded him to forgo his Bohemian habits so far as to come -and visit us. My practice had steadily increased, and as I -happened to live at no very great distance from Paddington -Station, I got a few patients from among the officials. One of -these, whom I had cured of a painful and lingering disease, was -never weary of advertising my virtues and of endeavouring to send -me on every sufferer over whom he might have any influence. - -One morning, at a little before seven o'clock, I was awakened by -the maid tapping at the door to announce that two men had come -from Paddington and were waiting in the consulting-room. I -dressed hurriedly, for I knew by experience that railway cases -were seldom trivial, and hastened downstairs. As I descended, my -old ally, the guard, came out of the room and closed the door -tightly behind him. - -"I've got him here," he whispered, jerking his thumb over his -shoulder; "he's all right." - -"What is it, then?" I asked, for his manner suggested that it was -some strange creature which he had caged up in my room. - -"It's a new patient," he whispered. "I thought I'd bring him -round myself; then he couldn't slip away. There he is, all safe -and sound. I must go now, Doctor; I have my dooties, just the -same as you." And off he went, this trusty tout, without even -giving me time to thank him. - -I entered my consulting-room and found a gentleman seated by the -table. He was quietly dressed in a suit of heather tweed with a -soft cloth cap which he had laid down upon my books. Round one of -his hands he had a handkerchief wrapped, which was mottled all -over with bloodstains. He was young, not more than -five-and-twenty, I should say, with a strong, masculine face; but -he was exceedingly pale and gave me the impression of a man who -was suffering from some strong agitation, which it took all his -strength of mind to control. - -"I am sorry to knock you up so early, Doctor," said he, "but I -have had a very serious accident during the night. I came in by -train this morning, and on inquiring at Paddington as to where I -might find a doctor, a worthy fellow very kindly escorted me -here. I gave the maid a card, but I see that she has left it upon -the side-table." - -I took it up and glanced at it. "Mr. Victor Hatherley, hydraulic -engineer, 16A, Victoria Street (3rd floor)." That was the name, -style, and abode of my morning visitor. "I regret that I have -kept you waiting," said I, sitting down in my library-chair. "You -are fresh from a night journey, I understand, which is in itself -a monotonous occupation." - -"Oh, my night could not be called monotonous," said he, and -laughed. He laughed very heartily, with a high, ringing note, -leaning back in his chair and shaking his sides. All my medical -instincts rose up against that laugh. - -"Stop it!" I cried; "pull yourself together!" and I poured out -some water from a caraffe. - -It was useless, however. He was off in one of those hysterical -outbursts which come upon a strong nature when some great crisis -is over and gone. Presently he came to himself once more, very -weary and pale-looking. - -"I have been making a fool of myself," he gasped. - -"Not at all. Drink this." I dashed some brandy into the water, -and the colour began to come back to his bloodless cheeks. - -"That's better!" said he. "And now, Doctor, perhaps you would -kindly attend to my thumb, or rather to the place where my thumb -used to be." - -He unwound the handkerchief and held out his hand. It gave even -my hardened nerves a shudder to look at it. There were four -protruding fingers and a horrid red, spongy surface where the -thumb should have been. It had been hacked or torn right out from -the roots. - -"Good heavens!" I cried, "this is a terrible injury. It must have -bled considerably." - -"Yes, it did. I fainted when it was done, and I think that I must -have been senseless for a long time. When I came to I found that -it was still bleeding, so I tied one end of my handkerchief very -tightly round the wrist and braced it up with a twig." - -"Excellent! You should have been a surgeon." - -"It is a question of hydraulics, you see, and came within my own -province." - -"This has been done," said I, examining the wound, "by a very -heavy and sharp instrument." - -"A thing like a cleaver," said he. - -"An accident, I presume?" - -"By no means." - -"What! a murderous attack?" - -"Very murderous indeed." - -"You horrify me." - -I sponged the wound, cleaned it, dressed it, and finally covered -it over with cotton wadding and carbolised bandages. He lay back -without wincing, though he bit his lip from time to time. - -"How is that?" I asked when I had finished. - -"Capital! Between your brandy and your bandage, I feel a new man. -I was very weak, but I have had a good deal to go through." - -"Perhaps you had better not speak of the matter. It is evidently -trying to your nerves." - -"Oh, no, not now. I shall have to tell my tale to the police; -but, between ourselves, if it were not for the convincing -evidence of this wound of mine, I should be surprised if they -believed my statement, for it is a very extraordinary one, and I -have not much in the way of proof with which to back it up; and, -even if they believe me, the clues which I can give them are so -vague that it is a question whether justice will be done." - -"Ha!" cried I, "if it is anything in the nature of a problem -which you desire to see solved, I should strongly recommend you -to come to my friend, Mr. Sherlock Holmes, before you go to the -official police." - -"Oh, I have heard of that fellow," answered my visitor, "and I -should be very glad if he would take the matter up, though of -course I must use the official police as well. Would you give me -an introduction to him?" - -"I'll do better. I'll take you round to him myself." - -"I should be immensely obliged to you." - -"We'll call a cab and go together. We shall just be in time to -have a little breakfast with him. Do you feel equal to it?" - -"Yes; I shall not feel easy until I have told my story." - -"Then my servant will call a cab, and I shall be with you in an -instant." I rushed upstairs, explained the matter shortly to my -wife, and in five minutes was inside a hansom, driving with my -new acquaintance to Baker Street. - -Sherlock Holmes was, as I expected, lounging about his -sitting-room in his dressing-gown, reading the agony column of The -Times and smoking his before-breakfast pipe, which was composed -of all the plugs and dottles left from his smokes of the day -before, all carefully dried and collected on the corner of the -mantelpiece. He received us in his quietly genial fashion, -ordered fresh rashers and eggs, and joined us in a hearty meal. -When it was concluded he settled our new acquaintance upon the -sofa, placed a pillow beneath his head, and laid a glass of -brandy and water within his reach. - -"It is easy to see that your experience has been no common one, -Mr. Hatherley," said he. "Pray, lie down there and make yourself -absolutely at home. Tell us what you can, but stop when you are -tired and keep up your strength with a little stimulant." - -"Thank you," said my patient, "but I have felt another man since -the doctor bandaged me, and I think that your breakfast has -completed the cure. I shall take up as little of your valuable -time as possible, so I shall start at once upon my peculiar -experiences." - -Holmes sat in his big armchair with the weary, heavy-lidded -expression which veiled his keen and eager nature, while I sat -opposite to him, and we listened in silence to the strange story -which our visitor detailed to us. - -"You must know," said he, "that I am an orphan and a bachelor, -residing alone in lodgings in London. By profession I am a -hydraulic engineer, and I have had considerable experience of my -work during the seven years that I was apprenticed to Venner & -Matheson, the well-known firm, of Greenwich. Two years ago, -having served my time, and having also come into a fair sum of -money through my poor father's death, I determined to start in -business for myself and took professional chambers in Victoria -Street. - -"I suppose that everyone finds his first independent start in -business a dreary experience. To me it has been exceptionally so. -During two years I have had three consultations and one small -job, and that is absolutely all that my profession has brought -me. My gross takings amount to 27 pounds 10s. Every day, from -nine in the morning until four in the afternoon, I waited in my -little den, until at last my heart began to sink, and I came to -believe that I should never have any practice at all. - -"Yesterday, however, just as I was thinking of leaving the -office, my clerk entered to say there was a gentleman waiting who -wished to see me upon business. He brought up a card, too, with -the name of 'Colonel Lysander Stark' engraved upon it. Close at -his heels came the colonel himself, a man rather over the middle -size, but of an exceeding thinness. I do not think that I have -ever seen so thin a man. His whole face sharpened away into nose -and chin, and the skin of his cheeks was drawn quite tense over -his outstanding bones. Yet this emaciation seemed to be his -natural habit, and due to no disease, for his eye was bright, his -step brisk, and his bearing assured. He was plainly but neatly -dressed, and his age, I should judge, would be nearer forty than -thirty. - -"'Mr. Hatherley?' said he, with something of a German accent. -'You have been recommended to me, Mr. Hatherley, as being a man -who is not only proficient in his profession but is also discreet -and capable of preserving a secret.' - -"I bowed, feeling as flattered as any young man would at such an -address. 'May I ask who it was who gave me so good a character?' - -"'Well, perhaps it is better that I should not tell you that just -at this moment. I have it from the same source that you are both -an orphan and a bachelor and are residing alone in London.' - -"'That is quite correct,' I answered; 'but you will excuse me if -I say that I cannot see how all this bears upon my professional -qualifications. I understand that it was on a professional matter -that you wished to speak to me?' - -"'Undoubtedly so. But you will find that all I say is really to -the point. I have a professional commission for you, but absolute -secrecy is quite essential--absolute secrecy, you understand, and -of course we may expect that more from a man who is alone than -from one who lives in the bosom of his family.' - -"'If I promise to keep a secret,' said I, 'you may absolutely -depend upon my doing so.' - -"He looked very hard at me as I spoke, and it seemed to me that I -had never seen so suspicious and questioning an eye. - -"'Do you promise, then?' said he at last. - -"'Yes, I promise.' - -"'Absolute and complete silence before, during, and after? No -reference to the matter at all, either in word or writing?' - -"'I have already given you my word.' - -"'Very good.' He suddenly sprang up, and darting like lightning -across the room he flung open the door. The passage outside was -empty. - -"'That's all right,' said he, coming back. 'I know that clerks are -sometimes curious as to their master's affairs. Now we can talk -in safety.' He drew up his chair very close to mine and began to -stare at me again with the same questioning and thoughtful look. - -"A feeling of repulsion, and of something akin to fear had begun -to rise within me at the strange antics of this fleshless man. -Even my dread of losing a client could not restrain me from -showing my impatience. - -"'I beg that you will state your business, sir,' said I; 'my time -is of value.' Heaven forgive me for that last sentence, but the -words came to my lips. - -"'How would fifty guineas for a night's work suit you?' he asked. - -"'Most admirably.' - -"'I say a night's work, but an hour's would be nearer the mark. I -simply want your opinion about a hydraulic stamping machine which -has got out of gear. If you show us what is wrong we shall soon -set it right ourselves. What do you think of such a commission as -that?' - -"'The work appears to be light and the pay munificent.' - -"'Precisely so. We shall want you to come to-night by the last -train.' - -"'Where to?' - -"'To Eyford, in Berkshire. It is a little place near the borders -of Oxfordshire, and within seven miles of Reading. There is a -train from Paddington which would bring you there at about -11:15.' - -"'Very good.' - -"'I shall come down in a carriage to meet you.' - -"'There is a drive, then?' - -"'Yes, our little place is quite out in the country. It is a good -seven miles from Eyford Station.' - -"'Then we can hardly get there before midnight. I suppose there -would be no chance of a train back. I should be compelled to stop -the night.' - -"'Yes, we could easily give you a shake-down.' - -"'That is very awkward. Could I not come at some more convenient -hour?' - -"'We have judged it best that you should come late. It is to -recompense you for any inconvenience that we are paying to you, a -young and unknown man, a fee which would buy an opinion from the -very heads of your profession. Still, of course, if you would -like to draw out of the business, there is plenty of time to do -so.' - -"I thought of the fifty guineas, and of how very useful they -would be to me. 'Not at all,' said I, 'I shall be very happy to -accommodate myself to your wishes. I should like, however, to -understand a little more clearly what it is that you wish me to -do.' - -"'Quite so. It is very natural that the pledge of secrecy which -we have exacted from you should have aroused your curiosity. I -have no wish to commit you to anything without your having it all -laid before you. I suppose that we are absolutely safe from -eavesdroppers?' - -"'Entirely.' - -"'Then the matter stands thus. You are probably aware that -fuller's-earth is a valuable product, and that it is only found -in one or two places in England?' - -"'I have heard so.' - -"'Some little time ago I bought a small place--a very small -place--within ten miles of Reading. I was fortunate enough to -discover that there was a deposit of fuller's-earth in one of my -fields. On examining it, however, I found that this deposit was a -comparatively small one, and that it formed a link between two -very much larger ones upon the right and left--both of them, -however, in the grounds of my neighbours. These good people were -absolutely ignorant that their land contained that which was -quite as valuable as a gold-mine. Naturally, it was to my -interest to buy their land before they discovered its true value, -but unfortunately I had no capital by which I could do this. I -took a few of my friends into the secret, however, and they -suggested that we should quietly and secretly work our own little -deposit and that in this way we should earn the money which would -enable us to buy the neighbouring fields. This we have now been -doing for some time, and in order to help us in our operations we -erected a hydraulic press. This press, as I have already -explained, has got out of order, and we wish your advice upon the -subject. We guard our secret very jealously, however, and if it -once became known that we had hydraulic engineers coming to our -little house, it would soon rouse inquiry, and then, if the facts -came out, it would be good-bye to any chance of getting these -fields and carrying out our plans. That is why I have made you -promise me that you will not tell a human being that you are -going to Eyford to-night. I hope that I make it all plain?' - -"'I quite follow you,' said I. 'The only point which I could not -quite understand was what use you could make of a hydraulic press -in excavating fuller's-earth, which, as I understand, is dug out -like gravel from a pit.' - -"'Ah!' said he carelessly, 'we have our own process. We compress -the earth into bricks, so as to remove them without revealing -what they are. But that is a mere detail. I have taken you fully -into my confidence now, Mr. Hatherley, and I have shown you how I -trust you.' He rose as he spoke. 'I shall expect you, then, at -Eyford at 11:15.' - -"'I shall certainly be there.' - -"'And not a word to a soul.' He looked at me with a last long, -questioning gaze, and then, pressing my hand in a cold, dank -grasp, he hurried from the room. - -"Well, when I came to think it all over in cool blood I was very -much astonished, as you may both think, at this sudden commission -which had been intrusted to me. On the one hand, of course, I was -glad, for the fee was at least tenfold what I should have asked -had I set a price upon my own services, and it was possible that -this order might lead to other ones. On the other hand, the face -and manner of my patron had made an unpleasant impression upon -me, and I could not think that his explanation of the -fuller's-earth was sufficient to explain the necessity for my -coming at midnight, and his extreme anxiety lest I should tell -anyone of my errand. However, I threw all fears to the winds, ate -a hearty supper, drove to Paddington, and started off, having -obeyed to the letter the injunction as to holding my tongue. - -"At Reading I had to change not only my carriage but my station. -However, I was in time for the last train to Eyford, and I -reached the little dim-lit station after eleven o'clock. I was the -only passenger who got out there, and there was no one upon the -platform save a single sleepy porter with a lantern. As I passed -out through the wicket gate, however, I found my acquaintance of -the morning waiting in the shadow upon the other side. Without a -word he grasped my arm and hurried me into a carriage, the door -of which was standing open. He drew up the windows on either -side, tapped on the wood-work, and away we went as fast as the -horse could go." - -"One horse?" interjected Holmes. - -"Yes, only one." - -"Did you observe the colour?" - -"Yes, I saw it by the side-lights when I was stepping into the -carriage. It was a chestnut." - -"Tired-looking or fresh?" - -"Oh, fresh and glossy." - -"Thank you. I am sorry to have interrupted you. Pray continue -your most interesting statement." - -"Away we went then, and we drove for at least an hour. Colonel -Lysander Stark had said that it was only seven miles, but I -should think, from the rate that we seemed to go, and from the -time that we took, that it must have been nearer twelve. He sat -at my side in silence all the time, and I was aware, more than -once when I glanced in his direction, that he was looking at me -with great intensity. The country roads seem to be not very good -in that part of the world, for we lurched and jolted terribly. I -tried to look out of the windows to see something of where we -were, but they were made of frosted glass, and I could make out -nothing save the occasional bright blur of a passing light. Now -and then I hazarded some remark to break the monotony of the -journey, but the colonel answered only in monosyllables, and the -conversation soon flagged. At last, however, the bumping of the -road was exchanged for the crisp smoothness of a gravel-drive, -and the carriage came to a stand. Colonel Lysander Stark sprang -out, and, as I followed after him, pulled me swiftly into a porch -which gaped in front of us. We stepped, as it were, right out of -the carriage and into the hall, so that I failed to catch the -most fleeting glance of the front of the house. The instant that -I had crossed the threshold the door slammed heavily behind us, -and I heard faintly the rattle of the wheels as the carriage -drove away. - -"It was pitch dark inside the house, and the colonel fumbled -about looking for matches and muttering under his breath. -Suddenly a door opened at the other end of the passage, and a -long, golden bar of light shot out in our direction. It grew -broader, and a woman appeared with a lamp in her hand, which she -held above her head, pushing her face forward and peering at us. -I could see that she was pretty, and from the gloss with which -the light shone upon her dark dress I knew that it was a rich -material. She spoke a few words in a foreign tongue in a tone as -though asking a question, and when my companion answered in a -gruff monosyllable she gave such a start that the lamp nearly -fell from her hand. Colonel Stark went up to her, whispered -something in her ear, and then, pushing her back into the room -from whence she had come, he walked towards me again with the -lamp in his hand. - -"'Perhaps you will have the kindness to wait in this room for a -few minutes,' said he, throwing open another door. It was a -quiet, little, plainly furnished room, with a round table in the -centre, on which several German books were scattered. Colonel -Stark laid down the lamp on the top of a harmonium beside the -door. 'I shall not keep you waiting an instant,' said he, and -vanished into the darkness. - -"I glanced at the books upon the table, and in spite of my -ignorance of German I could see that two of them were treatises -on science, the others being volumes of poetry. Then I walked -across to the window, hoping that I might catch some glimpse of -the country-side, but an oak shutter, heavily barred, was folded -across it. It was a wonderfully silent house. There was an old -clock ticking loudly somewhere in the passage, but otherwise -everything was deadly still. A vague feeling of uneasiness began -to steal over me. Who were these German people, and what were -they doing living in this strange, out-of-the-way place? And -where was the place? I was ten miles or so from Eyford, that was -all I knew, but whether north, south, east, or west I had no -idea. For that matter, Reading, and possibly other large towns, -were within that radius, so the place might not be so secluded, -after all. Yet it was quite certain, from the absolute stillness, -that we were in the country. I paced up and down the room, -humming a tune under my breath to keep up my spirits and feeling -that I was thoroughly earning my fifty-guinea fee. - -"Suddenly, without any preliminary sound in the midst of the -utter stillness, the door of my room swung slowly open. The woman -was standing in the aperture, the darkness of the hall behind -her, the yellow light from my lamp beating upon her eager and -beautiful face. I could see at a glance that she was sick with -fear, and the sight sent a chill to my own heart. She held up one -shaking finger to warn me to be silent, and she shot a few -whispered words of broken English at me, her eyes glancing back, -like those of a frightened horse, into the gloom behind her. - -"'I would go,' said she, trying hard, as it seemed to me, to -speak calmly; 'I would go. I should not stay here. There is no -good for you to do.' - -"'But, madam,' said I, 'I have not yet done what I came for. I -cannot possibly leave until I have seen the machine.' - -"'It is not worth your while to wait,' she went on. 'You can pass -through the door; no one hinders.' And then, seeing that I smiled -and shook my head, she suddenly threw aside her constraint and -made a step forward, with her hands wrung together. 'For the love -of Heaven!' she whispered, 'get away from here before it is too -late!' - -"But I am somewhat headstrong by nature, and the more ready to -engage in an affair when there is some obstacle in the way. I -thought of my fifty-guinea fee, of my wearisome journey, and of -the unpleasant night which seemed to be before me. Was it all to -go for nothing? Why should I slink away without having carried -out my commission, and without the payment which was my due? This -woman might, for all I knew, be a monomaniac. With a stout -bearing, therefore, though her manner had shaken me more than I -cared to confess, I still shook my head and declared my intention -of remaining where I was. She was about to renew her entreaties -when a door slammed overhead, and the sound of several footsteps -was heard upon the stairs. She listened for an instant, threw up -her hands with a despairing gesture, and vanished as suddenly and -as noiselessly as she had come. - -"The newcomers were Colonel Lysander Stark and a short thick man -with a chinchilla beard growing out of the creases of his double -chin, who was introduced to me as Mr. Ferguson. - -"'This is my secretary and manager,' said the colonel. 'By the -way, I was under the impression that I left this door shut just -now. I fear that you have felt the draught.' - -"'On the contrary,' said I, 'I opened the door myself because I -felt the room to be a little close.' - -"He shot one of his suspicious looks at me. 'Perhaps we had -better proceed to business, then,' said he. 'Mr. Ferguson and I -will take you up to see the machine.' - -"'I had better put my hat on, I suppose.' - -"'Oh, no, it is in the house.' - -"'What, you dig fuller's-earth in the house?' - -"'No, no. This is only where we compress it. But never mind that. -All we wish you to do is to examine the machine and to let us -know what is wrong with it.' - -"We went upstairs together, the colonel first with the lamp, the -fat manager and I behind him. It was a labyrinth of an old house, -with corridors, passages, narrow winding staircases, and little -low doors, the thresholds of which were hollowed out by the -generations who had crossed them. There were no carpets and no -signs of any furniture above the ground floor, while the plaster -was peeling off the walls, and the damp was breaking through in -green, unhealthy blotches. I tried to put on as unconcerned an -air as possible, but I had not forgotten the warnings of the -lady, even though I disregarded them, and I kept a keen eye upon -my two companions. Ferguson appeared to be a morose and silent -man, but I could see from the little that he said that he was at -least a fellow-countryman. - -"Colonel Lysander Stark stopped at last before a low door, which -he unlocked. Within was a small, square room, in which the three -of us could hardly get at one time. Ferguson remained outside, -and the colonel ushered me in. - -"'We are now,' said he, 'actually within the hydraulic press, and -it would be a particularly unpleasant thing for us if anyone were -to turn it on. The ceiling of this small chamber is really the -end of the descending piston, and it comes down with the force of -many tons upon this metal floor. There are small lateral columns -of water outside which receive the force, and which transmit and -multiply it in the manner which is familiar to you. The machine -goes readily enough, but there is some stiffness in the working -of it, and it has lost a little of its force. Perhaps you will -have the goodness to look it over and to show us how we can set -it right.' - -"I took the lamp from him, and I examined the machine very -thoroughly. It was indeed a gigantic one, and capable of -exercising enormous pressure. When I passed outside, however, and -pressed down the levers which controlled it, I knew at once by -the whishing sound that there was a slight leakage, which allowed -a regurgitation of water through one of the side cylinders. An -examination showed that one of the india-rubber bands which was -round the head of a driving-rod had shrunk so as not quite to -fill the socket along which it worked. This was clearly the cause -of the loss of power, and I pointed it out to my companions, who -followed my remarks very carefully and asked several practical -questions as to how they should proceed to set it right. When I -had made it clear to them, I returned to the main chamber of the -machine and took a good look at it to satisfy my own curiosity. -It was obvious at a glance that the story of the fuller's-earth -was the merest fabrication, for it would be absurd to suppose -that so powerful an engine could be designed for so inadequate a -purpose. The walls were of wood, but the floor consisted of a -large iron trough, and when I came to examine it I could see a -crust of metallic deposit all over it. I had stooped and was -scraping at this to see exactly what it was when I heard a -muttered exclamation in German and saw the cadaverous face of the -colonel looking down at me. - -"'What are you doing there?' he asked. - -"I felt angry at having been tricked by so elaborate a story as -that which he had told me. 'I was admiring your fuller's-earth,' -said I; 'I think that I should be better able to advise you as to -your machine if I knew what the exact purpose was for which it -was used.' - -"The instant that I uttered the words I regretted the rashness of -my speech. His face set hard, and a baleful light sprang up in -his grey eyes. - -"'Very well,' said he, 'you shall know all about the machine.' He -took a step backward, slammed the little door, and turned the key -in the lock. I rushed towards it and pulled at the handle, but it -was quite secure, and did not give in the least to my kicks and -shoves. 'Hullo!' I yelled. 'Hullo! Colonel! Let me out!' - -"And then suddenly in the silence I heard a sound which sent my -heart into my mouth. It was the clank of the levers and the swish -of the leaking cylinder. He had set the engine at work. The lamp -still stood upon the floor where I had placed it when examining -the trough. By its light I saw that the black ceiling was coming -down upon me, slowly, jerkily, but, as none knew better than -myself, with a force which must within a minute grind me to a -shapeless pulp. I threw myself, screaming, against the door, and -dragged with my nails at the lock. I implored the colonel to let -me out, but the remorseless clanking of the levers drowned my -cries. The ceiling was only a foot or two above my head, and with -my hand upraised I could feel its hard, rough surface. Then it -flashed through my mind that the pain of my death would depend -very much upon the position in which I met it. If I lay on my -face the weight would come upon my spine, and I shuddered to -think of that dreadful snap. Easier the other way, perhaps; and -yet, had I the nerve to lie and look up at that deadly black -shadow wavering down upon me? Already I was unable to stand -erect, when my eye caught something which brought a gush of hope -back to my heart. - -"I have said that though the floor and ceiling were of iron, the -walls were of wood. As I gave a last hurried glance around, I saw -a thin line of yellow light between two of the boards, which -broadened and broadened as a small panel was pushed backward. For -an instant I could hardly believe that here was indeed a door -which led away from death. The next instant I threw myself -through, and lay half-fainting upon the other side. The panel had -closed again behind me, but the crash of the lamp, and a few -moments afterwards the clang of the two slabs of metal, told me -how narrow had been my escape. - -"I was recalled to myself by a frantic plucking at my wrist, and -I found myself lying upon the stone floor of a narrow corridor, -while a woman bent over me and tugged at me with her left hand, -while she held a candle in her right. It was the same good friend -whose warning I had so foolishly rejected. - -"'Come! come!' she cried breathlessly. 'They will be here in a -moment. They will see that you are not there. Oh, do not waste -the so-precious time, but come!' - -"This time, at least, I did not scorn her advice. I staggered to -my feet and ran with her along the corridor and down a winding -stair. The latter led to another broad passage, and just as we -reached it we heard the sound of running feet and the shouting of -two voices, one answering the other from the floor on which we -were and from the one beneath. My guide stopped and looked about -her like one who is at her wit's end. Then she threw open a door -which led into a bedroom, through the window of which the moon -was shining brightly. - -"'It is your only chance,' said she. 'It is high, but it may be -that you can jump it.' - -"As she spoke a light sprang into view at the further end of the -passage, and I saw the lean figure of Colonel Lysander Stark -rushing forward with a lantern in one hand and a weapon like a -butcher's cleaver in the other. I rushed across the bedroom, -flung open the window, and looked out. How quiet and sweet and -wholesome the garden looked in the moonlight, and it could not be -more than thirty feet down. I clambered out upon the sill, but I -hesitated to jump until I should have heard what passed between -my saviour and the ruffian who pursued me. If she were ill-used, -then at any risks I was determined to go back to her assistance. -The thought had hardly flashed through my mind before he was at -the door, pushing his way past her; but she threw her arms round -him and tried to hold him back. - -"'Fritz! Fritz!' she cried in English, 'remember your promise -after the last time. You said it should not be again. He will be -silent! Oh, he will be silent!' - -"'You are mad, Elise!' he shouted, struggling to break away from -her. 'You will be the ruin of us. He has seen too much. Let me -pass, I say!' He dashed her to one side, and, rushing to the -window, cut at me with his heavy weapon. I had let myself go, and -was hanging by the hands to the sill, when his blow fell. I was -conscious of a dull pain, my grip loosened, and I fell into the -garden below. - -"I was shaken but not hurt by the fall; so I picked myself up and -rushed off among the bushes as hard as I could run, for I -understood that I was far from being out of danger yet. Suddenly, -however, as I ran, a deadly dizziness and sickness came over me. -I glanced down at my hand, which was throbbing painfully, and -then, for the first time, saw that my thumb had been cut off and -that the blood was pouring from my wound. I endeavoured to tie my -handkerchief round it, but there came a sudden buzzing in my -ears, and next moment I fell in a dead faint among the -rose-bushes. - -"How long I remained unconscious I cannot tell. It must have been -a very long time, for the moon had sunk, and a bright morning was -breaking when I came to myself. My clothes were all sodden with -dew, and my coat-sleeve was drenched with blood from my wounded -thumb. The smarting of it recalled in an instant all the -particulars of my night's adventure, and I sprang to my feet with -the feeling that I might hardly yet be safe from my pursuers. But -to my astonishment, when I came to look round me, neither house -nor garden were to be seen. I had been lying in an angle of the -hedge close by the highroad, and just a little lower down was a -long building, which proved, upon my approaching it, to be the -very station at which I had arrived upon the previous night. Were -it not for the ugly wound upon my hand, all that had passed -during those dreadful hours might have been an evil dream. - -"Half dazed, I went into the station and asked about the morning -train. There would be one to Reading in less than an hour. The -same porter was on duty, I found, as had been there when I -arrived. I inquired of him whether he had ever heard of Colonel -Lysander Stark. The name was strange to him. Had he observed a -carriage the night before waiting for me? No, he had not. Was -there a police-station anywhere near? There was one about three -miles off. - -"It was too far for me to go, weak and ill as I was. I determined -to wait until I got back to town before telling my story to the -police. It was a little past six when I arrived, so I went first -to have my wound dressed, and then the doctor was kind enough to -bring me along here. I put the case into your hands and shall do -exactly what you advise." - -We both sat in silence for some little time after listening to -this extraordinary narrative. Then Sherlock Holmes pulled down -from the shelf one of the ponderous commonplace books in which he -placed his cuttings. - -"Here is an advertisement which will interest you," said he. "It -appeared in all the papers about a year ago. Listen to this: -'Lost, on the 9th inst., Mr. Jeremiah Hayling, aged -twenty-six, a hydraulic engineer. Left his lodgings at ten -o'clock at night, and has not been heard of since. Was -dressed in,' etc., etc. Ha! That represents the last time that -the colonel needed to have his machine overhauled, I fancy." - -"Good heavens!" cried my patient. "Then that explains what the -girl said." - -"Undoubtedly. It is quite clear that the colonel was a cool and -desperate man, who was absolutely determined that nothing should -stand in the way of his little game, like those out-and-out -pirates who will leave no survivor from a captured ship. Well, -every moment now is precious, so if you feel equal to it we shall -go down to Scotland Yard at once as a preliminary to starting for -Eyford." - -Some three hours or so afterwards we were all in the train -together, bound from Reading to the little Berkshire village. -There were Sherlock Holmes, the hydraulic engineer, Inspector -Bradstreet, of Scotland Yard, a plain-clothes man, and myself. -Bradstreet had spread an ordnance map of the county out upon the -seat and was busy with his compasses drawing a circle with Eyford -for its centre. - -"There you are," said he. "That circle is drawn at a radius of -ten miles from the village. The place we want must be somewhere -near that line. You said ten miles, I think, sir." - -"It was an hour's good drive." - -"And you think that they brought you back all that way when you -were unconscious?" - -"They must have done so. I have a confused memory, too, of having -been lifted and conveyed somewhere." - -"What I cannot understand," said I, "is why they should have -spared you when they found you lying fainting in the garden. -Perhaps the villain was softened by the woman's entreaties." - -"I hardly think that likely. I never saw a more inexorable face -in my life." - -"Oh, we shall soon clear up all that," said Bradstreet. "Well, I -have drawn my circle, and I only wish I knew at what point upon -it the folk that we are in search of are to be found." - -"I think I could lay my finger on it," said Holmes quietly. - -"Really, now!" cried the inspector, "you have formed your -opinion! Come, now, we shall see who agrees with you. I say it is -south, for the country is more deserted there." - -"And I say east," said my patient. - -"I am for west," remarked the plain-clothes man. "There are -several quiet little villages up there." - -"And I am for north," said I, "because there are no hills there, -and our friend says that he did not notice the carriage go up -any." - -"Come," cried the inspector, laughing; "it's a very pretty -diversity of opinion. We have boxed the compass among us. Who do -you give your casting vote to?" - -"You are all wrong." - -"But we can't all be." - -"Oh, yes, you can. This is my point." He placed his finger in the -centre of the circle. "This is where we shall find them." - -"But the twelve-mile drive?" gasped Hatherley. - -"Six out and six back. Nothing simpler. You say yourself that the -horse was fresh and glossy when you got in. How could it be that -if it had gone twelve miles over heavy roads?" - -"Indeed, it is a likely ruse enough," observed Bradstreet -thoughtfully. "Of course there can be no doubt as to the nature -of this gang." - -"None at all," said Holmes. "They are coiners on a large scale, -and have used the machine to form the amalgam which has taken the -place of silver." - -"We have known for some time that a clever gang was at work," -said the inspector. "They have been turning out half-crowns by -the thousand. We even traced them as far as Reading, but could -get no farther, for they had covered their traces in a way that -showed that they were very old hands. But now, thanks to this -lucky chance, I think that we have got them right enough." - -But the inspector was mistaken, for those criminals were not -destined to fall into the hands of justice. As we rolled into -Eyford Station we saw a gigantic column of smoke which streamed -up from behind a small clump of trees in the neighbourhood and -hung like an immense ostrich feather over the landscape. - -"A house on fire?" asked Bradstreet as the train steamed off -again on its way. - -"Yes, sir!" said the station-master. - -"When did it break out?" - -"I hear that it was during the night, sir, but it has got worse, -and the whole place is in a blaze." - -"Whose house is it?" - -"Dr. Becher's." - -"Tell me," broke in the engineer, "is Dr. Becher a German, very -thin, with a long, sharp nose?" - -The station-master laughed heartily. "No, sir, Dr. Becher is an -Englishman, and there isn't a man in the parish who has a -better-lined waistcoat. But he has a gentleman staying with him, -a patient, as I understand, who is a foreigner, and he looks as -if a little good Berkshire beef would do him no harm." - -The station-master had not finished his speech before we were all -hastening in the direction of the fire. The road topped a low -hill, and there was a great widespread whitewashed building in -front of us, spouting fire at every chink and window, while in -the garden in front three fire-engines were vainly striving to -keep the flames under. - -"That's it!" cried Hatherley, in intense excitement. "There is -the gravel-drive, and there are the rose-bushes where I lay. That -second window is the one that I jumped from." - -"Well, at least," said Holmes, "you have had your revenge upon -them. There can be no question that it was your oil-lamp which, -when it was crushed in the press, set fire to the wooden walls, -though no doubt they were too excited in the chase after you to -observe it at the time. Now keep your eyes open in this crowd for -your friends of last night, though I very much fear that they are -a good hundred miles off by now." - -And Holmes' fears came to be realised, for from that day to this -no word has ever been heard either of the beautiful woman, the -sinister German, or the morose Englishman. Early that morning a -peasant had met a cart containing several people and some very -bulky boxes driving rapidly in the direction of Reading, but -there all traces of the fugitives disappeared, and even Holmes' -ingenuity failed ever to discover the least clue as to their -whereabouts. - -The firemen had been much perturbed at the strange arrangements -which they had found within, and still more so by discovering a -newly severed human thumb upon a window-sill of the second floor. -About sunset, however, their efforts were at last successful, and -they subdued the flames, but not before the roof had fallen in, -and the whole place been reduced to such absolute ruin that, save -some twisted cylinders and iron piping, not a trace remained of -the machinery which had cost our unfortunate acquaintance so -dearly. Large masses of nickel and of tin were discovered stored -in an out-house, but no coins were to be found, which may have -explained the presence of those bulky boxes which have been -already referred to. - -How our hydraulic engineer had been conveyed from the garden to -the spot where he recovered his senses might have remained -forever a mystery were it not for the soft mould, which told us a -very plain tale. He had evidently been carried down by two -persons, one of whom had remarkably small feet and the other -unusually large ones. On the whole, it was most probable that the -silent Englishman, being less bold or less murderous than his -companion, had assisted the woman to bear the unconscious man out -of the way of danger. - -"Well," said our engineer ruefully as we took our seats to return -once more to London, "it has been a pretty business for me! I -have lost my thumb and I have lost a fifty-guinea fee, and what -have I gained?" - -"Experience," said Holmes, laughing. "Indirectly it may be of -value, you know; you have only to put it into words to gain the -reputation of being excellent company for the remainder of your -existence." - - - -X. THE ADVENTURE OF THE NOBLE BACHELOR - -The Lord St. Simon marriage, and its curious termination, have -long ceased to be a subject of interest in those exalted circles -in which the unfortunate bridegroom moves. Fresh scandals have -eclipsed it, and their more piquant details have drawn the -gossips away from this four-year-old drama. As I have reason to -believe, however, that the full facts have never been revealed to -the general public, and as my friend Sherlock Holmes had a -considerable share in clearing the matter up, I feel that no -memoir of him would be complete without some little sketch of -this remarkable episode. - -It was a few weeks before my own marriage, during the days when I -was still sharing rooms with Holmes in Baker Street, that he came -home from an afternoon stroll to find a letter on the table -waiting for him. I had remained indoors all day, for the weather -had taken a sudden turn to rain, with high autumnal winds, and -the Jezail bullet which I had brought back in one of my limbs as -a relic of my Afghan campaign throbbed with dull persistence. -With my body in one easy-chair and my legs upon another, I had -surrounded myself with a cloud of newspapers until at last, -saturated with the news of the day, I tossed them all aside and -lay listless, watching the huge crest and monogram upon the -envelope upon the table and wondering lazily who my friend's -noble correspondent could be. - -"Here is a very fashionable epistle," I remarked as he entered. -"Your morning letters, if I remember right, were from a -fish-monger and a tide-waiter." - -"Yes, my correspondence has certainly the charm of variety," he -answered, smiling, "and the humbler are usually the more -interesting. This looks like one of those unwelcome social -summonses which call upon a man either to be bored or to lie." - -He broke the seal and glanced over the contents. - -"Oh, come, it may prove to be something of interest, after all." - -"Not social, then?" - -"No, distinctly professional." - -"And from a noble client?" - -"One of the highest in England." - -"My dear fellow, I congratulate you." - -"I assure you, Watson, without affectation, that the status of my -client is a matter of less moment to me than the interest of his -case. It is just possible, however, that that also may not be -wanting in this new investigation. You have been reading the -papers diligently of late, have you not?" - -"It looks like it," said I ruefully, pointing to a huge bundle in -the corner. "I have had nothing else to do." - -"It is fortunate, for you will perhaps be able to post me up. I -read nothing except the criminal news and the agony column. The -latter is always instructive. But if you have followed recent -events so closely you must have read about Lord St. Simon and his -wedding?" - -"Oh, yes, with the deepest interest." - -"That is well. The letter which I hold in my hand is from Lord -St. Simon. I will read it to you, and in return you must turn -over these papers and let me have whatever bears upon the matter. -This is what he says: - -"'MY DEAR MR. SHERLOCK HOLMES:--Lord Backwater tells me that I -may place implicit reliance upon your judgment and discretion. I -have determined, therefore, to call upon you and to consult you -in reference to the very painful event which has occurred in -connection with my wedding. Mr. Lestrade, of Scotland Yard, is -acting already in the matter, but he assures me that he sees no -objection to your co-operation, and that he even thinks that -it might be of some assistance. I will call at four o'clock in -the afternoon, and, should you have any other engagement at that -time, I hope that you will postpone it, as this matter is of -paramount importance. Yours faithfully, ST. SIMON.' - -"It is dated from Grosvenor Mansions, written with a quill pen, -and the noble lord has had the misfortune to get a smear of ink -upon the outer side of his right little finger," remarked Holmes -as he folded up the epistle. - -"He says four o'clock. It is three now. He will be here in an -hour." - -"Then I have just time, with your assistance, to get clear upon -the subject. Turn over those papers and arrange the extracts in -their order of time, while I take a glance as to who our client -is." He picked a red-covered volume from a line of books of -reference beside the mantelpiece. "Here he is," said he, sitting -down and flattening it out upon his knee. "'Lord Robert Walsingham -de Vere St. Simon, second son of the Duke of Balmoral.' Hum! 'Arms: -Azure, three caltrops in chief over a fess sable. Born in 1846.' -He's forty-one years of age, which is mature for marriage. Was -Under-Secretary for the colonies in a late administration. The -Duke, his father, was at one time Secretary for Foreign Affairs. -They inherit Plantagenet blood by direct descent, and Tudor on -the distaff side. Ha! Well, there is nothing very instructive in -all this. I think that I must turn to you Watson, for something -more solid." - -"I have very little difficulty in finding what I want," said I, -"for the facts are quite recent, and the matter struck me as -remarkable. I feared to refer them to you, however, as I knew -that you had an inquiry on hand and that you disliked the -intrusion of other matters." - -"Oh, you mean the little problem of the Grosvenor Square -furniture van. That is quite cleared up now--though, indeed, it -was obvious from the first. Pray give me the results of your -newspaper selections." - -"Here is the first notice which I can find. It is in the personal -column of the Morning Post, and dates, as you see, some weeks -back: 'A marriage has been arranged,' it says, 'and will, if -rumour is correct, very shortly take place, between Lord Robert -St. Simon, second son of the Duke of Balmoral, and Miss Hatty -Doran, the only daughter of Aloysius Doran. Esq., of San -Francisco, Cal., U.S.A.' That is all." - -"Terse and to the point," remarked Holmes, stretching his long, -thin legs towards the fire. - -"There was a paragraph amplifying this in one of the society -papers of the same week. Ah, here it is: 'There will soon be a -call for protection in the marriage market, for the present -free-trade principle appears to tell heavily against our home -product. One by one the management of the noble houses of Great -Britain is passing into the hands of our fair cousins from across -the Atlantic. An important addition has been made during the last -week to the list of the prizes which have been borne away by -these charming invaders. Lord St. Simon, who has shown himself -for over twenty years proof against the little god's arrows, has -now definitely announced his approaching marriage with Miss Hatty -Doran, the fascinating daughter of a California millionaire. Miss -Doran, whose graceful figure and striking face attracted much -attention at the Westbury House festivities, is an only child, -and it is currently reported that her dowry will run to -considerably over the six figures, with expectancies for the -future. As it is an open secret that the Duke of Balmoral has -been compelled to sell his pictures within the last few years, -and as Lord St. Simon has no property of his own save the small -estate of Birchmoor, it is obvious that the Californian heiress -is not the only gainer by an alliance which will enable her to -make the easy and common transition from a Republican lady to a -British peeress.'" - -"Anything else?" asked Holmes, yawning. - -"Oh, yes; plenty. Then there is another note in the Morning Post -to say that the marriage would be an absolutely quiet one, that it -would be at St. George's, Hanover Square, that only half a dozen -intimate friends would be invited, and that the party would -return to the furnished house at Lancaster Gate which has been -taken by Mr. Aloysius Doran. Two days later--that is, on -Wednesday last--there is a curt announcement that the wedding had -taken place, and that the honeymoon would be passed at Lord -Backwater's place, near Petersfield. Those are all the notices -which appeared before the disappearance of the bride." - -"Before the what?" asked Holmes with a start. - -"The vanishing of the lady." - -"When did she vanish, then?" - -"At the wedding breakfast." - -"Indeed. This is more interesting than it promised to be; quite -dramatic, in fact." - -"Yes; it struck me as being a little out of the common." - -"They often vanish before the ceremony, and occasionally during -the honeymoon; but I cannot call to mind anything quite so prompt -as this. Pray let me have the details." - -"I warn you that they are very incomplete." - -"Perhaps we may make them less so." - -"Such as they are, they are set forth in a single article of a -morning paper of yesterday, which I will read to you. It is -headed, 'Singular Occurrence at a Fashionable Wedding': - -"'The family of Lord Robert St. Simon has been thrown into the -greatest consternation by the strange and painful episodes which -have taken place in connection with his wedding. The ceremony, as -shortly announced in the papers of yesterday, occurred on the -previous morning; but it is only now that it has been possible to -confirm the strange rumours which have been so persistently -floating about. In spite of the attempts of the friends to hush -the matter up, so much public attention has now been drawn to it -that no good purpose can be served by affecting to disregard what -is a common subject for conversation. - -"'The ceremony, which was performed at St. George's, Hanover -Square, was a very quiet one, no one being present save the -father of the bride, Mr. Aloysius Doran, the Duchess of Balmoral, -Lord Backwater, Lord Eustace and Lady Clara St. Simon (the -younger brother and sister of the bridegroom), and Lady Alicia -Whittington. The whole party proceeded afterwards to the house of -Mr. Aloysius Doran, at Lancaster Gate, where breakfast had been -prepared. It appears that some little trouble was caused by a -woman, whose name has not been ascertained, who endeavoured to -force her way into the house after the bridal party, alleging -that she had some claim upon Lord St. Simon. It was only after a -painful and prolonged scene that she was ejected by the butler -and the footman. The bride, who had fortunately entered the house -before this unpleasant interruption, had sat down to breakfast -with the rest, when she complained of a sudden indisposition and -retired to her room. Her prolonged absence having caused some -comment, her father followed her, but learned from her maid that -she had only come up to her chamber for an instant, caught up an -ulster and bonnet, and hurried down to the passage. One of the -footmen declared that he had seen a lady leave the house thus -apparelled, but had refused to credit that it was his mistress, -believing her to be with the company. On ascertaining that his -daughter had disappeared, Mr. Aloysius Doran, in conjunction with -the bridegroom, instantly put themselves in communication with -the police, and very energetic inquiries are being made, which -will probably result in a speedy clearing up of this very -singular business. Up to a late hour last night, however, nothing -had transpired as to the whereabouts of the missing lady. There -are rumours of foul play in the matter, and it is said that the -police have caused the arrest of the woman who had caused the -original disturbance, in the belief that, from jealousy or some -other motive, she may have been concerned in the strange -disappearance of the bride.'" - -"And is that all?" - -"Only one little item in another of the morning papers, but it is -a suggestive one." - -"And it is--" - -"That Miss Flora Millar, the lady who had caused the disturbance, -has actually been arrested. It appears that she was formerly a -danseuse at the Allegro, and that she has known the bridegroom -for some years. There are no further particulars, and the whole -case is in your hands now--so far as it has been set forth in the -public press." - -"And an exceedingly interesting case it appears to be. I would -not have missed it for worlds. But there is a ring at the bell, -Watson, and as the clock makes it a few minutes after four, I -have no doubt that this will prove to be our noble client. Do not -dream of going, Watson, for I very much prefer having a witness, -if only as a check to my own memory." - -"Lord Robert St. Simon," announced our page-boy, throwing open -the door. A gentleman entered, with a pleasant, cultured face, -high-nosed and pale, with something perhaps of petulance about -the mouth, and with the steady, well-opened eye of a man whose -pleasant lot it had ever been to command and to be obeyed. His -manner was brisk, and yet his general appearance gave an undue -impression of age, for he had a slight forward stoop and a little -bend of the knees as he walked. His hair, too, as he swept off -his very curly-brimmed hat, was grizzled round the edges and thin -upon the top. As to his dress, it was careful to the verge of -foppishness, with high collar, black frock-coat, white waistcoat, -yellow gloves, patent-leather shoes, and light-coloured gaiters. -He advanced slowly into the room, turning his head from left to -right, and swinging in his right hand the cord which held his -golden eyeglasses. - -"Good-day, Lord St. Simon," said Holmes, rising and bowing. "Pray -take the basket-chair. This is my friend and colleague, Dr. -Watson. Draw up a little to the fire, and we will talk this -matter over." - -"A most painful matter to me, as you can most readily imagine, -Mr. Holmes. I have been cut to the quick. I understand that you -have already managed several delicate cases of this sort, sir, -though I presume that they were hardly from the same class of -society." - -"No, I am descending." - -"I beg pardon." - -"My last client of the sort was a king." - -"Oh, really! I had no idea. And which king?" - -"The King of Scandinavia." - -"What! Had he lost his wife?" - -"You can understand," said Holmes suavely, "that I extend to the -affairs of my other clients the same secrecy which I promise to -you in yours." - -"Of course! Very right! very right! I'm sure I beg pardon. As to -my own case, I am ready to give you any information which may -assist you in forming an opinion." - -"Thank you. I have already learned all that is in the public -prints, nothing more. I presume that I may take it as correct--this -article, for example, as to the disappearance of the bride." - -Lord St. Simon glanced over it. "Yes, it is correct, as far as it -goes." - -"But it needs a great deal of supplementing before anyone could -offer an opinion. I think that I may arrive at my facts most -directly by questioning you." - -"Pray do so." - -"When did you first meet Miss Hatty Doran?" - -"In San Francisco, a year ago." - -"You were travelling in the States?" - -"Yes." - -"Did you become engaged then?" - -"No." - -"But you were on a friendly footing?" - -"I was amused by her society, and she could see that I was -amused." - -"Her father is very rich?" - -"He is said to be the richest man on the Pacific slope." - -"And how did he make his money?" - -"In mining. He had nothing a few years ago. Then he struck gold, -invested it, and came up by leaps and bounds." - -"Now, what is your own impression as to the young lady's--your -wife's character?" - -The nobleman swung his glasses a little faster and stared down -into the fire. "You see, Mr. Holmes," said he, "my wife was -twenty before her father became a rich man. During that time she -ran free in a mining camp and wandered through woods or -mountains, so that her education has come from Nature rather than -from the schoolmaster. She is what we call in England a tomboy, -with a strong nature, wild and free, unfettered by any sort of -traditions. She is impetuous--volcanic, I was about to say. She -is swift in making up her mind and fearless in carrying out her -resolutions. On the other hand, I would not have given her the -name which I have the honour to bear"--he gave a little stately -cough--"had not I thought her to be at bottom a noble woman. I -believe that she is capable of heroic self-sacrifice and that -anything dishonourable would be repugnant to her." - -"Have you her photograph?" - -"I brought this with me." He opened a locket and showed us the -full face of a very lovely woman. It was not a photograph but an -ivory miniature, and the artist had brought out the full effect -of the lustrous black hair, the large dark eyes, and the -exquisite mouth. Holmes gazed long and earnestly at it. Then he -closed the locket and handed it back to Lord St. Simon. - -"The young lady came to London, then, and you renewed your -acquaintance?" - -"Yes, her father brought her over for this last London season. I -met her several times, became engaged to her, and have now -married her." - -"She brought, I understand, a considerable dowry?" - -"A fair dowry. Not more than is usual in my family." - -"And this, of course, remains to you, since the marriage is a -fait accompli?" - -"I really have made no inquiries on the subject." - -"Very naturally not. Did you see Miss Doran on the day before the -wedding?" - -"Yes." - -"Was she in good spirits?" - -"Never better. She kept talking of what we should do in our -future lives." - -"Indeed! That is very interesting. And on the morning of the -wedding?" - -"She was as bright as possible--at least until after the -ceremony." - -"And did you observe any change in her then?" - -"Well, to tell the truth, I saw then the first signs that I had -ever seen that her temper was just a little sharp. The incident -however, was too trivial to relate and can have no possible -bearing upon the case." - -"Pray let us have it, for all that." - -"Oh, it is childish. She dropped her bouquet as we went towards -the vestry. She was passing the front pew at the time, and it -fell over into the pew. There was a moment's delay, but the -gentleman in the pew handed it up to her again, and it did not -appear to be the worse for the fall. Yet when I spoke to her of -the matter, she answered me abruptly; and in the carriage, on our -way home, she seemed absurdly agitated over this trifling cause." - -"Indeed! You say that there was a gentleman in the pew. Some of -the general public were present, then?" - -"Oh, yes. It is impossible to exclude them when the church is -open." - -"This gentleman was not one of your wife's friends?" - -"No, no; I call him a gentleman by courtesy, but he was quite a -common-looking person. I hardly noticed his appearance. But -really I think that we are wandering rather far from the point." - -"Lady St. Simon, then, returned from the wedding in a less -cheerful frame of mind than she had gone to it. What did she do -on re-entering her father's house?" - -"I saw her in conversation with her maid." - -"And who is her maid?" - -"Alice is her name. She is an American and came from California -with her." - -"A confidential servant?" - -"A little too much so. It seemed to me that her mistress allowed -her to take great liberties. Still, of course, in America they -look upon these things in a different way." - -"How long did she speak to this Alice?" - -"Oh, a few minutes. I had something else to think of." - -"You did not overhear what they said?" - -"Lady St. Simon said something about 'jumping a claim.' She was -accustomed to use slang of the kind. I have no idea what she -meant." - -"American slang is very expressive sometimes. And what did your -wife do when she finished speaking to her maid?" - -"She walked into the breakfast-room." - -"On your arm?" - -"No, alone. She was very independent in little matters like that. -Then, after we had sat down for ten minutes or so, she rose -hurriedly, muttered some words of apology, and left the room. She -never came back." - -"But this maid, Alice, as I understand, deposes that she went to -her room, covered her bride's dress with a long ulster, put on a -bonnet, and went out." - -"Quite so. And she was afterwards seen walking into Hyde Park in -company with Flora Millar, a woman who is now in custody, and who -had already made a disturbance at Mr. Doran's house that -morning." - -"Ah, yes. I should like a few particulars as to this young lady, -and your relations to her." - -Lord St. Simon shrugged his shoulders and raised his eyebrows. -"We have been on a friendly footing for some years--I may say on -a very friendly footing. She used to be at the Allegro. I have -not treated her ungenerously, and she had no just cause of -complaint against me, but you know what women are, Mr. Holmes. -Flora was a dear little thing, but exceedingly hot-headed and -devotedly attached to me. She wrote me dreadful letters when she -heard that I was about to be married, and, to tell the truth, the -reason why I had the marriage celebrated so quietly was that I -feared lest there might be a scandal in the church. She came to -Mr. Doran's door just after we returned, and she endeavoured to -push her way in, uttering very abusive expressions towards my -wife, and even threatening her, but I had foreseen the -possibility of something of the sort, and I had two police -fellows there in private clothes, who soon pushed her out again. -She was quiet when she saw that there was no good in making a -row." - -"Did your wife hear all this?" - -"No, thank goodness, she did not." - -"And she was seen walking with this very woman afterwards?" - -"Yes. That is what Mr. Lestrade, of Scotland Yard, looks upon as -so serious. It is thought that Flora decoyed my wife out and laid -some terrible trap for her." - -"Well, it is a possible supposition." - -"You think so, too?" - -"I did not say a probable one. But you do not yourself look upon -this as likely?" - -"I do not think Flora would hurt a fly." - -"Still, jealousy is a strange transformer of characters. Pray -what is your own theory as to what took place?" - -"Well, really, I came to seek a theory, not to propound one. I -have given you all the facts. Since you ask me, however, I may -say that it has occurred to me as possible that the excitement of -this affair, the consciousness that she had made so immense a -social stride, had the effect of causing some little nervous -disturbance in my wife." - -"In short, that she had become suddenly deranged?" - -"Well, really, when I consider that she has turned her back--I -will not say upon me, but upon so much that many have aspired to -without success--I can hardly explain it in any other fashion." - -"Well, certainly that is also a conceivable hypothesis," said -Holmes, smiling. "And now, Lord St. Simon, I think that I have -nearly all my data. May I ask whether you were seated at the -breakfast-table so that you could see out of the window?" - -"We could see the other side of the road and the Park." - -"Quite so. Then I do not think that I need to detain you longer. -I shall communicate with you." - -"Should you be fortunate enough to solve this problem," said our -client, rising. - -"I have solved it." - -"Eh? What was that?" - -"I say that I have solved it." - -"Where, then, is my wife?" - -"That is a detail which I shall speedily supply." - -Lord St. Simon shook his head. "I am afraid that it will take -wiser heads than yours or mine," he remarked, and bowing in a -stately, old-fashioned manner he departed. - -"It is very good of Lord St. Simon to honour my head by putting -it on a level with his own," said Sherlock Holmes, laughing. "I -think that I shall have a whisky and soda and a cigar after all -this cross-questioning. I had formed my conclusions as to the -case before our client came into the room." - -"My dear Holmes!" - -"I have notes of several similar cases, though none, as I -remarked before, which were quite as prompt. My whole examination -served to turn my conjecture into a certainty. Circumstantial -evidence is occasionally very convincing, as when you find a -trout in the milk, to quote Thoreau's example." - -"But I have heard all that you have heard." - -"Without, however, the knowledge of pre-existing cases which -serves me so well. There was a parallel instance in Aberdeen some -years back, and something on very much the same lines at Munich -the year after the Franco-Prussian War. It is one of these -cases--but, hullo, here is Lestrade! Good-afternoon, Lestrade! -You will find an extra tumbler upon the sideboard, and there are -cigars in the box." - -The official detective was attired in a pea-jacket and cravat, -which gave him a decidedly nautical appearance, and he carried a -black canvas bag in his hand. With a short greeting he seated -himself and lit the cigar which had been offered to him. - -"What's up, then?" asked Holmes with a twinkle in his eye. "You -look dissatisfied." - -"And I feel dissatisfied. It is this infernal St. Simon marriage -case. I can make neither head nor tail of the business." - -"Really! You surprise me." - -"Who ever heard of such a mixed affair? Every clue seems to slip -through my fingers. I have been at work upon it all day." - -"And very wet it seems to have made you," said Holmes laying his -hand upon the arm of the pea-jacket. - -"Yes, I have been dragging the Serpentine." - -"In heaven's name, what for?" - -"In search of the body of Lady St. Simon." - -Sherlock Holmes leaned back in his chair and laughed heartily. - -"Have you dragged the basin of Trafalgar Square fountain?" he -asked. - -"Why? What do you mean?" - -"Because you have just as good a chance of finding this lady in -the one as in the other." - -Lestrade shot an angry glance at my companion. "I suppose you -know all about it," he snarled. - -"Well, I have only just heard the facts, but my mind is made up." - -"Oh, indeed! Then you think that the Serpentine plays no part in -the matter?" - -"I think it very unlikely." - -"Then perhaps you will kindly explain how it is that we found -this in it?" He opened his bag as he spoke, and tumbled onto the -floor a wedding-dress of watered silk, a pair of white satin -shoes and a bride's wreath and veil, all discoloured and soaked -in water. "There," said he, putting a new wedding-ring upon the -top of the pile. "There is a little nut for you to crack, Master -Holmes." - -"Oh, indeed!" said my friend, blowing blue rings into the air. -"You dragged them from the Serpentine?" - -"No. They were found floating near the margin by a park-keeper. -They have been identified as her clothes, and it seemed to me -that if the clothes were there the body would not be far off." - -"By the same brilliant reasoning, every man's body is to be found -in the neighbourhood of his wardrobe. And pray what did you hope -to arrive at through this?" - -"At some evidence implicating Flora Millar in the disappearance." - -"I am afraid that you will find it difficult." - -"Are you, indeed, now?" cried Lestrade with some bitterness. "I -am afraid, Holmes, that you are not very practical with your -deductions and your inferences. You have made two blunders in as -many minutes. This dress does implicate Miss Flora Millar." - -"And how?" - -"In the dress is a pocket. In the pocket is a card-case. In the -card-case is a note. And here is the very note." He slapped it -down upon the table in front of him. "Listen to this: 'You will -see me when all is ready. Come at once. F.H.M.' Now my theory all -along has been that Lady St. Simon was decoyed away by Flora -Millar, and that she, with confederates, no doubt, was -responsible for her disappearance. Here, signed with her -initials, is the very note which was no doubt quietly slipped -into her hand at the door and which lured her within their -reach." - -"Very good, Lestrade," said Holmes, laughing. "You really are -very fine indeed. Let me see it." He took up the paper in a -listless way, but his attention instantly became riveted, and he -gave a little cry of satisfaction. "This is indeed important," -said he. - -"Ha! you find it so?" - -"Extremely so. I congratulate you warmly." - -Lestrade rose in his triumph and bent his head to look. "Why," he -shrieked, "you're looking at the wrong side!" - -"On the contrary, this is the right side." - -"The right side? You're mad! Here is the note written in pencil -over here." - -"And over here is what appears to be the fragment of a hotel -bill, which interests me deeply." - -"There's nothing in it. I looked at it before," said Lestrade. -"'Oct. 4th, rooms 8s., breakfast 2s. 6d., cocktail 1s., lunch 2s. -6d., glass sherry, 8d.' I see nothing in that." - -"Very likely not. It is most important, all the same. As to the -note, it is important also, or at least the initials are, so I -congratulate you again." - -"I've wasted time enough," said Lestrade, rising. "I believe in -hard work and not in sitting by the fire spinning fine theories. -Good-day, Mr. Holmes, and we shall see which gets to the bottom -of the matter first." He gathered up the garments, thrust them -into the bag, and made for the door. - -"Just one hint to you, Lestrade," drawled Holmes before his rival -vanished; "I will tell you the true solution of the matter. Lady -St. Simon is a myth. There is not, and there never has been, any -such person." - -Lestrade looked sadly at my companion. Then he turned to me, -tapped his forehead three times, shook his head solemnly, and -hurried away. - -He had hardly shut the door behind him when Holmes rose to put on -his overcoat. "There is something in what the fellow says about -outdoor work," he remarked, "so I think, Watson, that I must -leave you to your papers for a little." - -It was after five o'clock when Sherlock Holmes left me, but I had -no time to be lonely, for within an hour there arrived a -confectioner's man with a very large flat box. This he unpacked -with the help of a youth whom he had brought with him, and -presently, to my very great astonishment, a quite epicurean -little cold supper began to be laid out upon our humble -lodging-house mahogany. There were a couple of brace of cold -woodcock, a pheasant, a pt de foie gras pie with a group of -ancient and cobwebby bottles. Having laid out all these luxuries, -my two visitors vanished away, like the genii of the Arabian -Nights, with no explanation save that the things had been paid -for and were ordered to this address. - -Just before nine o'clock Sherlock Holmes stepped briskly into the -room. His features were gravely set, but there was a light in his -eye which made me think that he had not been disappointed in his -conclusions. - -"They have laid the supper, then," he said, rubbing his hands. - -"You seem to expect company. They have laid for five." - -"Yes, I fancy we may have some company dropping in," said he. "I -am surprised that Lord St. Simon has not already arrived. Ha! I -fancy that I hear his step now upon the stairs." - -It was indeed our visitor of the afternoon who came bustling in, -dangling his glasses more vigorously than ever, and with a very -perturbed expression upon his aristocratic features. - -"My messenger reached you, then?" asked Holmes. - -"Yes, and I confess that the contents startled me beyond measure. -Have you good authority for what you say?" - -"The best possible." - -Lord St. Simon sank into a chair and passed his hand over his -forehead. - -"What will the Duke say," he murmured, "when he hears that one of -the family has been subjected to such humiliation?" - -"It is the purest accident. I cannot allow that there is any -humiliation." - -"Ah, you look on these things from another standpoint." - -"I fail to see that anyone is to blame. I can hardly see how the -lady could have acted otherwise, though her abrupt method of -doing it was undoubtedly to be regretted. Having no mother, she -had no one to advise her at such a crisis." - -"It was a slight, sir, a public slight," said Lord St. Simon, -tapping his fingers upon the table. - -"You must make allowance for this poor girl, placed in so -unprecedented a position." - -"I will make no allowance. I am very angry indeed, and I have -been shamefully used." - -"I think that I heard a ring," said Holmes. "Yes, there are steps -on the landing. If I cannot persuade you to take a lenient view -of the matter, Lord St. Simon, I have brought an advocate here -who may be more successful." He opened the door and ushered in a -lady and gentleman. "Lord St. Simon," said he "allow me to -introduce you to Mr. and Mrs. Francis Hay Moulton. The lady, I -think, you have already met." - -At the sight of these newcomers our client had sprung from his -seat and stood very erect, with his eyes cast down and his hand -thrust into the breast of his frock-coat, a picture of offended -dignity. The lady had taken a quick step forward and had held out -her hand to him, but he still refused to raise his eyes. It was -as well for his resolution, perhaps, for her pleading face was -one which it was hard to resist. - -"You're angry, Robert," said she. "Well, I guess you have every -cause to be." - -"Pray make no apology to me," said Lord St. Simon bitterly. - -"Oh, yes, I know that I have treated you real bad and that I -should have spoken to you before I went; but I was kind of -rattled, and from the time when I saw Frank here again I just -didn't know what I was doing or saying. I only wonder I didn't -fall down and do a faint right there before the altar." - -"Perhaps, Mrs. Moulton, you would like my friend and me to leave -the room while you explain this matter?" - -"If I may give an opinion," remarked the strange gentleman, -"we've had just a little too much secrecy over this business -already. For my part, I should like all Europe and America to -hear the rights of it." He was a small, wiry, sunburnt man, -clean-shaven, with a sharp face and alert manner. - -"Then I'll tell our story right away," said the lady. "Frank here -and I met in '84, in McQuire's camp, near the Rockies, where pa -was working a claim. We were engaged to each other, Frank and I; -but then one day father struck a rich pocket and made a pile, -while poor Frank here had a claim that petered out and came to -nothing. The richer pa grew the poorer was Frank; so at last pa -wouldn't hear of our engagement lasting any longer, and he took -me away to 'Frisco. Frank wouldn't throw up his hand, though; so -he followed me there, and he saw me without pa knowing anything -about it. It would only have made him mad to know, so we just -fixed it all up for ourselves. Frank said that he would go and -make his pile, too, and never come back to claim me until he had -as much as pa. So then I promised to wait for him to the end of -time and pledged myself not to marry anyone else while he lived. -'Why shouldn't we be married right away, then,' said he, 'and -then I will feel sure of you; and I won't claim to be your -husband until I come back?' Well, we talked it over, and he had -fixed it all up so nicely, with a clergyman all ready in waiting, -that we just did it right there; and then Frank went off to seek -his fortune, and I went back to pa. - -"The next I heard of Frank was that he was in Montana, and then -he went prospecting in Arizona, and then I heard of him from New -Mexico. After that came a long newspaper story about how a -miners' camp had been attacked by Apache Indians, and there was -my Frank's name among the killed. I fainted dead away, and I was -very sick for months after. Pa thought I had a decline and took -me to half the doctors in 'Frisco. Not a word of news came for a -year and more, so that I never doubted that Frank was really -dead. Then Lord St. Simon came to 'Frisco, and we came to London, -and a marriage was arranged, and pa was very pleased, but I felt -all the time that no man on this earth would ever take the place -in my heart that had been given to my poor Frank. - -"Still, if I had married Lord St. Simon, of course I'd have done -my duty by him. We can't command our love, but we can our -actions. I went to the altar with him with the intention to make -him just as good a wife as it was in me to be. But you may -imagine what I felt when, just as I came to the altar rails, I -glanced back and saw Frank standing and looking at me out of the -first pew. I thought it was his ghost at first; but when I looked -again there he was still, with a kind of question in his eyes, as -if to ask me whether I were glad or sorry to see him. I wonder I -didn't drop. I know that everything was turning round, and the -words of the clergyman were just like the buzz of a bee in my -ear. I didn't know what to do. Should I stop the service and make -a scene in the church? I glanced at him again, and he seemed to -know what I was thinking, for he raised his finger to his lips to -tell me to be still. Then I saw him scribble on a piece of paper, -and I knew that he was writing me a note. As I passed his pew on -the way out I dropped my bouquet over to him, and he slipped the -note into my hand when he returned me the flowers. It was only a -line asking me to join him when he made the sign to me to do so. -Of course I never doubted for a moment that my first duty was now -to him, and I determined to do just whatever he might direct. - -"When I got back I told my maid, who had known him in California, -and had always been his friend. I ordered her to say nothing, but -to get a few things packed and my ulster ready. I know I ought to -have spoken to Lord St. Simon, but it was dreadful hard before -his mother and all those great people. I just made up my mind to -run away and explain afterwards. I hadn't been at the table ten -minutes before I saw Frank out of the window at the other side of -the road. He beckoned to me and then began walking into the Park. -I slipped out, put on my things, and followed him. Some woman -came talking something or other about Lord St. Simon to -me--seemed to me from the little I heard as if he had a little -secret of his own before marriage also--but I managed to get away -from her and soon overtook Frank. We got into a cab together, and -away we drove to some lodgings he had taken in Gordon Square, and -that was my true wedding after all those years of waiting. Frank -had been a prisoner among the Apaches, had escaped, came on to -'Frisco, found that I had given him up for dead and had gone to -England, followed me there, and had come upon me at last on the -very morning of my second wedding." - -"I saw it in a paper," explained the American. "It gave the name -and the church but not where the lady lived." - -"Then we had a talk as to what we should do, and Frank was all -for openness, but I was so ashamed of it all that I felt as if I -should like to vanish away and never see any of them again--just -sending a line to pa, perhaps, to show him that I was alive. It -was awful to me to think of all those lords and ladies sitting -round that breakfast-table and waiting for me to come back. So -Frank took my wedding-clothes and things and made a bundle of -them, so that I should not be traced, and dropped them away -somewhere where no one could find them. It is likely that we -should have gone on to Paris to-morrow, only that this good -gentleman, Mr. Holmes, came round to us this evening, though how -he found us is more than I can think, and he showed us very -clearly and kindly that I was wrong and that Frank was right, and -that we should be putting ourselves in the wrong if we were so -secret. Then he offered to give us a chance of talking to Lord -St. Simon alone, and so we came right away round to his rooms at -once. Now, Robert, you have heard it all, and I am very sorry if -I have given you pain, and I hope that you do not think very -meanly of me." - -Lord St. Simon had by no means relaxed his rigid attitude, but -had listened with a frowning brow and a compressed lip to this -long narrative. - -"Excuse me," he said, "but it is not my custom to discuss my most -intimate personal affairs in this public manner." - -"Then you won't forgive me? You won't shake hands before I go?" - -"Oh, certainly, if it would give you any pleasure." He put out -his hand and coldly grasped that which she extended to him. - -"I had hoped," suggested Holmes, "that you would have joined us -in a friendly supper." - -"I think that there you ask a little too much," responded his -Lordship. "I may be forced to acquiesce in these recent -developments, but I can hardly be expected to make merry over -them. I think that with your permission I will now wish you all a -very good-night." He included us all in a sweeping bow and -stalked out of the room. - -"Then I trust that you at least will honour me with your -company," said Sherlock Holmes. "It is always a joy to meet an -American, Mr. Moulton, for I am one of those who believe that the -folly of a monarch and the blundering of a minister in far-gone -years will not prevent our children from being some day citizens -of the same world-wide country under a flag which shall be a -quartering of the Union Jack with the Stars and Stripes." - -"The case has been an interesting one," remarked Holmes when our -visitors had left us, "because it serves to show very clearly how -simple the explanation may be of an affair which at first sight -seems to be almost inexplicable. Nothing could be more natural -than the sequence of events as narrated by this lady, and nothing -stranger than the result when viewed, for instance, by Mr. -Lestrade of Scotland Yard." - -"You were not yourself at fault at all, then?" - -"From the first, two facts were very obvious to me, the one that -the lady had been quite willing to undergo the wedding ceremony, -the other that she had repented of it within a few minutes of -returning home. Obviously something had occurred during the -morning, then, to cause her to change her mind. What could that -something be? She could not have spoken to anyone when she was -out, for she had been in the company of the bridegroom. Had she -seen someone, then? If she had, it must be someone from America -because she had spent so short a time in this country that she -could hardly have allowed anyone to acquire so deep an influence -over her that the mere sight of him would induce her to change -her plans so completely. You see we have already arrived, by a -process of exclusion, at the idea that she might have seen an -American. Then who could this American be, and why should he -possess so much influence over her? It might be a lover; it might -be a husband. Her young womanhood had, I knew, been spent in -rough scenes and under strange conditions. So far I had got -before I ever heard Lord St. Simon's narrative. When he told us -of a man in a pew, of the change in the bride's manner, of so -transparent a device for obtaining a note as the dropping of a -bouquet, of her resort to her confidential maid, and of her very -significant allusion to claim-jumping--which in miners' parlance -means taking possession of that which another person has a prior -claim to--the whole situation became absolutely clear. She had -gone off with a man, and the man was either a lover or was a -previous husband--the chances being in favour of the latter." - -"And how in the world did you find them?" - -"It might have been difficult, but friend Lestrade held -information in his hands the value of which he did not himself -know. The initials were, of course, of the highest importance, -but more valuable still was it to know that within a week he had -settled his bill at one of the most select London hotels." - -"How did you deduce the select?" - -"By the select prices. Eight shillings for a bed and eightpence -for a glass of sherry pointed to one of the most expensive -hotels. There are not many in London which charge at that rate. -In the second one which I visited in Northumberland Avenue, I -learned by an inspection of the book that Francis H. Moulton, an -American gentleman, had left only the day before, and on looking -over the entries against him, I came upon the very items which I -had seen in the duplicate bill. His letters were to be forwarded -to 226 Gordon Square; so thither I travelled, and being fortunate -enough to find the loving couple at home, I ventured to give them -some paternal advice and to point out to them that it would be -better in every way that they should make their position a little -clearer both to the general public and to Lord St. Simon in -particular. I invited them to meet him here, and, as you see, I -made him keep the appointment." - -"But with no very good result," I remarked. "His conduct was -certainly not very gracious." - -"Ah, Watson," said Holmes, smiling, "perhaps you would not be -very gracious either, if, after all the trouble of wooing and -wedding, you found yourself deprived in an instant of wife and of -fortune. I think that we may judge Lord St. Simon very mercifully -and thank our stars that we are never likely to find ourselves in -the same position. Draw your chair up and hand me my violin, for -the only problem we have still to solve is how to while away -these bleak autumnal evenings." - - - -XI. THE ADVENTURE OF THE BERYL CORONET - -"Holmes," said I as I stood one morning in our bow-window looking -down the street, "here is a madman coming along. It seems rather -sad that his relatives should allow him to come out alone." - -My friend rose lazily from his armchair and stood with his hands -in the pockets of his dressing-gown, looking over my shoulder. It -was a bright, crisp February morning, and the snow of the day -before still lay deep upon the ground, shimmering brightly in the -wintry sun. Down the centre of Baker Street it had been ploughed -into a brown crumbly band by the traffic, but at either side and -on the heaped-up edges of the foot-paths it still lay as white as -when it fell. The grey pavement had been cleaned and scraped, but -was still dangerously slippery, so that there were fewer -passengers than usual. Indeed, from the direction of the -Metropolitan Station no one was coming save the single gentleman -whose eccentric conduct had drawn my attention. - -He was a man of about fifty, tall, portly, and imposing, with a -massive, strongly marked face and a commanding figure. He was -dressed in a sombre yet rich style, in black frock-coat, shining -hat, neat brown gaiters, and well-cut pearl-grey trousers. Yet -his actions were in absurd contrast to the dignity of his dress -and features, for he was running hard, with occasional little -springs, such as a weary man gives who is little accustomed to -set any tax upon his legs. As he ran he jerked his hands up and -down, waggled his head, and writhed his face into the most -extraordinary contortions. - -"What on earth can be the matter with him?" I asked. "He is -looking up at the numbers of the houses." - -"I believe that he is coming here," said Holmes, rubbing his -hands. - -"Here?" - -"Yes; I rather think he is coming to consult me professionally. I -think that I recognise the symptoms. Ha! did I not tell you?" As -he spoke, the man, puffing and blowing, rushed at our door and -pulled at our bell until the whole house resounded with the -clanging. - -A few moments later he was in our room, still puffing, still -gesticulating, but with so fixed a look of grief and despair in -his eyes that our smiles were turned in an instant to horror and -pity. For a while he could not get his words out, but swayed his -body and plucked at his hair like one who has been driven to the -extreme limits of his reason. Then, suddenly springing to his -feet, he beat his head against the wall with such force that we -both rushed upon him and tore him away to the centre of the room. -Sherlock Holmes pushed him down into the easy-chair and, sitting -beside him, patted his hand and chatted with him in the easy, -soothing tones which he knew so well how to employ. - -"You have come to me to tell your story, have you not?" said he. -"You are fatigued with your haste. Pray wait until you have -recovered yourself, and then I shall be most happy to look into -any little problem which you may submit to me." - -The man sat for a minute or more with a heaving chest, fighting -against his emotion. Then he passed his handkerchief over his -brow, set his lips tight, and turned his face towards us. - -"No doubt you think me mad?" said he. - -"I see that you have had some great trouble," responded Holmes. - -"God knows I have!--a trouble which is enough to unseat my -reason, so sudden and so terrible is it. Public disgrace I might -have faced, although I am a man whose character has never yet -borne a stain. Private affliction also is the lot of every man; -but the two coming together, and in so frightful a form, have -been enough to shake my very soul. Besides, it is not I alone. -The very noblest in the land may suffer unless some way be found -out of this horrible affair." - -"Pray compose yourself, sir," said Holmes, "and let me have a -clear account of who you are and what it is that has befallen -you." - -"My name," answered our visitor, "is probably familiar to your -ears. I am Alexander Holder, of the banking firm of Holder & -Stevenson, of Threadneedle Street." - -The name was indeed well known to us as belonging to the senior -partner in the second largest private banking concern in the City -of London. What could have happened, then, to bring one of the -foremost citizens of London to this most pitiable pass? We -waited, all curiosity, until with another effort he braced -himself to tell his story. - -"I feel that time is of value," said he; "that is why I hastened -here when the police inspector suggested that I should secure -your co-operation. I came to Baker Street by the Underground and -hurried from there on foot, for the cabs go slowly through this -snow. That is why I was so out of breath, for I am a man who -takes very little exercise. I feel better now, and I will put the -facts before you as shortly and yet as clearly as I can. - -"It is, of course, well known to you that in a successful banking -business as much depends upon our being able to find remunerative -investments for our funds as upon our increasing our connection -and the number of our depositors. One of our most lucrative means -of laying out money is in the shape of loans, where the security -is unimpeachable. We have done a good deal in this direction -during the last few years, and there are many noble families to -whom we have advanced large sums upon the security of their -pictures, libraries, or plate. - -"Yesterday morning I was seated in my office at the bank when a -card was brought in to me by one of the clerks. I started when I -saw the name, for it was that of none other than--well, perhaps -even to you I had better say no more than that it was a name -which is a household word all over the earth--one of the highest, -noblest, most exalted names in England. I was overwhelmed by the -honour and attempted, when he entered, to say so, but he plunged -at once into business with the air of a man who wishes to hurry -quickly through a disagreeable task. - -"'Mr. Holder,' said he, 'I have been informed that you are in the -habit of advancing money.' - -"'The firm does so when the security is good.' I answered. - -"'It is absolutely essential to me,' said he, 'that I should have -50,000 pounds at once. I could, of course, borrow so trifling a -sum ten times over from my friends, but I much prefer to make it -a matter of business and to carry out that business myself. In my -position you can readily understand that it is unwise to place -one's self under obligations.' - -"'For how long, may I ask, do you want this sum?' I asked. - -"'Next Monday I have a large sum due to me, and I shall then most -certainly repay what you advance, with whatever interest you -think it right to charge. But it is very essential to me that the -money should be paid at once.' - -"'I should be happy to advance it without further parley from my -own private purse,' said I, 'were it not that the strain would be -rather more than it could bear. If, on the other hand, I am to do -it in the name of the firm, then in justice to my partner I must -insist that, even in your case, every businesslike precaution -should be taken.' - -"'I should much prefer to have it so,' said he, raising up a -square, black morocco case which he had laid beside his chair. -'You have doubtless heard of the Beryl Coronet?' - -"'One of the most precious public possessions of the empire,' -said I. - -"'Precisely.' He opened the case, and there, imbedded in soft, -flesh-coloured velvet, lay the magnificent piece of jewellery -which he had named. 'There are thirty-nine enormous beryls,' said -he, 'and the price of the gold chasing is incalculable. The -lowest estimate would put the worth of the coronet at double the -sum which I have asked. I am prepared to leave it with you as my -security.' - -"I took the precious case into my hands and looked in some -perplexity from it to my illustrious client. - -"'You doubt its value?' he asked. - -"'Not at all. I only doubt--' - -"'The propriety of my leaving it. You may set your mind at rest -about that. I should not dream of doing so were it not absolutely -certain that I should be able in four days to reclaim it. It is a -pure matter of form. Is the security sufficient?' - -"'Ample.' - -"'You understand, Mr. Holder, that I am giving you a strong proof -of the confidence which I have in you, founded upon all that I -have heard of you. I rely upon you not only to be discreet and to -refrain from all gossip upon the matter but, above all, to -preserve this coronet with every possible precaution because I -need not say that a great public scandal would be caused if any -harm were to befall it. Any injury to it would be almost as -serious as its complete loss, for there are no beryls in the -world to match these, and it would be impossible to replace them. -I leave it with you, however, with every confidence, and I shall -call for it in person on Monday morning.' - -"Seeing that my client was anxious to leave, I said no more but, -calling for my cashier, I ordered him to pay over fifty 1000 -pound notes. When I was alone once more, however, with the -precious case lying upon the table in front of me, I could not -but think with some misgivings of the immense responsibility -which it entailed upon me. There could be no doubt that, as it -was a national possession, a horrible scandal would ensue if any -misfortune should occur to it. I already regretted having ever -consented to take charge of it. However, it was too late to alter -the matter now, so I locked it up in my private safe and turned -once more to my work. - -"When evening came I felt that it would be an imprudence to leave -so precious a thing in the office behind me. Bankers' safes had -been forced before now, and why should not mine be? If so, how -terrible would be the position in which I should find myself! I -determined, therefore, that for the next few days I would always -carry the case backward and forward with me, so that it might -never be really out of my reach. With this intention, I called a -cab and drove out to my house at Streatham, carrying the jewel -with me. I did not breathe freely until I had taken it upstairs -and locked it in the bureau of my dressing-room. - -"And now a word as to my household, Mr. Holmes, for I wish you to -thoroughly understand the situation. My groom and my page sleep -out of the house, and may be set aside altogether. I have three -maid-servants who have been with me a number of years and whose -absolute reliability is quite above suspicion. Another, Lucy -Parr, the second waiting-maid, has only been in my service a few -months. She came with an excellent character, however, and has -always given me satisfaction. She is a very pretty girl and has -attracted admirers who have occasionally hung about the place. -That is the only drawback which we have found to her, but we -believe her to be a thoroughly good girl in every way. - -"So much for the servants. My family itself is so small that it -will not take me long to describe it. I am a widower and have an -only son, Arthur. He has been a disappointment to me, Mr. -Holmes--a grievous disappointment. I have no doubt that I am -myself to blame. People tell me that I have spoiled him. Very -likely I have. When my dear wife died I felt that he was all I -had to love. I could not bear to see the smile fade even for a -moment from his face. I have never denied him a wish. Perhaps it -would have been better for both of us had I been sterner, but I -meant it for the best. - -"It was naturally my intention that he should succeed me in my -business, but he was not of a business turn. He was wild, -wayward, and, to speak the truth, I could not trust him in the -handling of large sums of money. When he was young he became a -member of an aristocratic club, and there, having charming -manners, he was soon the intimate of a number of men with long -purses and expensive habits. He learned to play heavily at cards -and to squander money on the turf, until he had again and again -to come to me and implore me to give him an advance upon his -allowance, that he might settle his debts of honour. He tried -more than once to break away from the dangerous company which he -was keeping, but each time the influence of his friend, Sir -George Burnwell, was enough to draw him back again. - -"And, indeed, I could not wonder that such a man as Sir George -Burnwell should gain an influence over him, for he has frequently -brought him to my house, and I have found myself that I could -hardly resist the fascination of his manner. He is older than -Arthur, a man of the world to his finger-tips, one who had been -everywhere, seen everything, a brilliant talker, and a man of -great personal beauty. Yet when I think of him in cold blood, far -away from the glamour of his presence, I am convinced from his -cynical speech and the look which I have caught in his eyes that -he is one who should be deeply distrusted. So I think, and so, -too, thinks my little Mary, who has a woman's quick insight into -character. - -"And now there is only she to be described. She is my niece; but -when my brother died five years ago and left her alone in the -world I adopted her, and have looked upon her ever since as my -daughter. She is a sunbeam in my house--sweet, loving, beautiful, -a wonderful manager and housekeeper, yet as tender and quiet and -gentle as a woman could be. She is my right hand. I do not know -what I could do without her. In only one matter has she ever gone -against my wishes. Twice my boy has asked her to marry him, for -he loves her devotedly, but each time she has refused him. I -think that if anyone could have drawn him into the right path it -would have been she, and that his marriage might have changed his -whole life; but now, alas! it is too late--forever too late! - -"Now, Mr. Holmes, you know the people who live under my roof, and -I shall continue with my miserable story. - -"When we were taking coffee in the drawing-room that night after -dinner, I told Arthur and Mary my experience, and of the precious -treasure which we had under our roof, suppressing only the name -of my client. Lucy Parr, who had brought in the coffee, had, I am -sure, left the room; but I cannot swear that the door was closed. -Mary and Arthur were much interested and wished to see the famous -coronet, but I thought it better not to disturb it. - -"'Where have you put it?' asked Arthur. - -"'In my own bureau.' - -"'Well, I hope to goodness the house won't be burgled during the -night.' said he. - -"'It is locked up,' I answered. - -"'Oh, any old key will fit that bureau. When I was a youngster I -have opened it myself with the key of the box-room cupboard.' - -"He often had a wild way of talking, so that I thought little of -what he said. He followed me to my room, however, that night with -a very grave face. - -"'Look here, dad,' said he with his eyes cast down, 'can you let -me have 200 pounds?' - -"'No, I cannot!' I answered sharply. 'I have been far too -generous with you in money matters.' - -"'You have been very kind,' said he, 'but I must have this money, -or else I can never show my face inside the club again.' - -"'And a very good thing, too!' I cried. - -"'Yes, but you would not have me leave it a dishonoured man,' -said he. 'I could not bear the disgrace. I must raise the money -in some way, and if you will not let me have it, then I must try -other means.' - -"I was very angry, for this was the third demand during the -month. 'You shall not have a farthing from me,' I cried, on which -he bowed and left the room without another word. - -"When he was gone I unlocked my bureau, made sure that my -treasure was safe, and locked it again. Then I started to go -round the house to see that all was secure--a duty which I -usually leave to Mary but which I thought it well to perform -myself that night. As I came down the stairs I saw Mary herself -at the side window of the hall, which she closed and fastened as -I approached. - -"'Tell me, dad,' said she, looking, I thought, a little -disturbed, 'did you give Lucy, the maid, leave to go out -to-night?' - -"'Certainly not.' - -"'She came in just now by the back door. I have no doubt that she -has only been to the side gate to see someone, but I think that -it is hardly safe and should be stopped.' - -"'You must speak to her in the morning, or I will if you prefer -it. Are you sure that everything is fastened?' - -"'Quite sure, dad.' - -"'Then, good-night.' I kissed her and went up to my bedroom -again, where I was soon asleep. - -"I am endeavouring to tell you everything, Mr. Holmes, which may -have any bearing upon the case, but I beg that you will question -me upon any point which I do not make clear." - -"On the contrary, your statement is singularly lucid." - -"I come to a part of my story now in which I should wish to be -particularly so. I am not a very heavy sleeper, and the anxiety -in my mind tended, no doubt, to make me even less so than usual. -About two in the morning, then, I was awakened by some sound in -the house. It had ceased ere I was wide awake, but it had left an -impression behind it as though a window had gently closed -somewhere. I lay listening with all my ears. Suddenly, to my -horror, there was a distinct sound of footsteps moving softly in -the next room. I slipped out of bed, all palpitating with fear, -and peeped round the corner of my dressing-room door. - -"'Arthur!' I screamed, 'you villain! you thief! How dare you -touch that coronet?' - -"The gas was half up, as I had left it, and my unhappy boy, -dressed only in his shirt and trousers, was standing beside the -light, holding the coronet in his hands. He appeared to be -wrenching at it, or bending it with all his strength. At my cry -he dropped it from his grasp and turned as pale as death. I -snatched it up and examined it. One of the gold corners, with -three of the beryls in it, was missing. - -"'You blackguard!' I shouted, beside myself with rage. 'You have -destroyed it! You have dishonoured me forever! Where are the -jewels which you have stolen?' - -"'Stolen!' he cried. - -"'Yes, thief!' I roared, shaking him by the shoulder. - -"'There are none missing. There cannot be any missing,' said he. - -"'There are three missing. And you know where they are. Must I -call you a liar as well as a thief? Did I not see you trying to -tear off another piece?' - -"'You have called me names enough,' said he, 'I will not stand it -any longer. I shall not say another word about this business, -since you have chosen to insult me. I will leave your house in -the morning and make my own way in the world.' - -"'You shall leave it in the hands of the police!' I cried -half-mad with grief and rage. 'I shall have this matter probed to -the bottom.' - -"'You shall learn nothing from me,' said he with a passion such -as I should not have thought was in his nature. 'If you choose to -call the police, let the police find what they can.' - -"By this time the whole house was astir, for I had raised my -voice in my anger. Mary was the first to rush into my room, and, -at the sight of the coronet and of Arthur's face, she read the -whole story and, with a scream, fell down senseless on the -ground. I sent the house-maid for the police and put the -investigation into their hands at once. When the inspector and a -constable entered the house, Arthur, who had stood sullenly with -his arms folded, asked me whether it was my intention to charge -him with theft. I answered that it had ceased to be a private -matter, but had become a public one, since the ruined coronet was -national property. I was determined that the law should have its -way in everything. - -"'At least,' said he, 'you will not have me arrested at once. It -would be to your advantage as well as mine if I might leave the -house for five minutes.' - -"'That you may get away, or perhaps that you may conceal what you -have stolen,' said I. And then, realising the dreadful position -in which I was placed, I implored him to remember that not only -my honour but that of one who was far greater than I was at -stake; and that he threatened to raise a scandal which would -convulse the nation. He might avert it all if he would but tell -me what he had done with the three missing stones. - -"'You may as well face the matter,' said I; 'you have been caught -in the act, and no confession could make your guilt more heinous. -If you but make such reparation as is in your power, by telling -us where the beryls are, all shall be forgiven and forgotten.' - -"'Keep your forgiveness for those who ask for it,' he answered, -turning away from me with a sneer. I saw that he was too hardened -for any words of mine to influence him. There was but one way for -it. I called in the inspector and gave him into custody. A search -was made at once not only of his person but of his room and of -every portion of the house where he could possibly have concealed -the gems; but no trace of them could be found, nor would the -wretched boy open his mouth for all our persuasions and our -threats. This morning he was removed to a cell, and I, after -going through all the police formalities, have hurried round to -you to implore you to use your skill in unravelling the matter. -The police have openly confessed that they can at present make -nothing of it. You may go to any expense which you think -necessary. I have already offered a reward of 1000 pounds. My -God, what shall I do! I have lost my honour, my gems, and my son -in one night. Oh, what shall I do!" - -He put a hand on either side of his head and rocked himself to -and fro, droning to himself like a child whose grief has got -beyond words. - -Sherlock Holmes sat silent for some few minutes, with his brows -knitted and his eyes fixed upon the fire. - -"Do you receive much company?" he asked. - -"None save my partner with his family and an occasional friend of -Arthur's. Sir George Burnwell has been several times lately. No -one else, I think." - -"Do you go out much in society?" - -"Arthur does. Mary and I stay at home. We neither of us care for -it." - -"That is unusual in a young girl." - -"She is of a quiet nature. Besides, she is not so very young. She -is four-and-twenty." - -"This matter, from what you say, seems to have been a shock to -her also." - -"Terrible! She is even more affected than I." - -"You have neither of you any doubt as to your son's guilt?" - -"How can we have when I saw him with my own eyes with the coronet -in his hands." - -"I hardly consider that a conclusive proof. Was the remainder of -the coronet at all injured?" - -"Yes, it was twisted." - -"Do you not think, then, that he might have been trying to -straighten it?" - -"God bless you! You are doing what you can for him and for me. -But it is too heavy a task. What was he doing there at all? If -his purpose were innocent, why did he not say so?" - -"Precisely. And if it were guilty, why did he not invent a lie? -His silence appears to me to cut both ways. There are several -singular points about the case. What did the police think of the -noise which awoke you from your sleep?" - -"They considered that it might be caused by Arthur's closing his -bedroom door." - -"A likely story! As if a man bent on felony would slam his door -so as to wake a household. What did they say, then, of the -disappearance of these gems?" - -"They are still sounding the planking and probing the furniture -in the hope of finding them." - -"Have they thought of looking outside the house?" - -"Yes, they have shown extraordinary energy. The whole garden has -already been minutely examined." - -"Now, my dear sir," said Holmes, "is it not obvious to you now -that this matter really strikes very much deeper than either you -or the police were at first inclined to think? It appeared to you -to be a simple case; to me it seems exceedingly complex. Consider -what is involved by your theory. You suppose that your son came -down from his bed, went, at great risk, to your dressing-room, -opened your bureau, took out your coronet, broke off by main -force a small portion of it, went off to some other place, -concealed three gems out of the thirty-nine, with such skill that -nobody can find them, and then returned with the other thirty-six -into the room in which he exposed himself to the greatest danger -of being discovered. I ask you now, is such a theory tenable?" - -"But what other is there?" cried the banker with a gesture of -despair. "If his motives were innocent, why does he not explain -them?" - -"It is our task to find that out," replied Holmes; "so now, if -you please, Mr. Holder, we will set off for Streatham together, -and devote an hour to glancing a little more closely into -details." - -My friend insisted upon my accompanying them in their expedition, -which I was eager enough to do, for my curiosity and sympathy -were deeply stirred by the story to which we had listened. I -confess that the guilt of the banker's son appeared to me to be -as obvious as it did to his unhappy father, but still I had such -faith in Holmes' judgment that I felt that there must be some -grounds for hope as long as he was dissatisfied with the accepted -explanation. He hardly spoke a word the whole way out to the -southern suburb, but sat with his chin upon his breast and his -hat drawn over his eyes, sunk in the deepest thought. Our client -appeared to have taken fresh heart at the little glimpse of hope -which had been presented to him, and he even broke into a -desultory chat with me over his business affairs. A short railway -journey and a shorter walk brought us to Fairbank, the modest -residence of the great financier. - -Fairbank was a good-sized square house of white stone, standing -back a little from the road. A double carriage-sweep, with a -snow-clad lawn, stretched down in front to two large iron gates -which closed the entrance. On the right side was a small wooden -thicket, which led into a narrow path between two neat hedges -stretching from the road to the kitchen door, and forming the -tradesmen's entrance. On the left ran a lane which led to the -stables, and was not itself within the grounds at all, being a -public, though little used, thoroughfare. Holmes left us standing -at the door and walked slowly all round the house, across the -front, down the tradesmen's path, and so round by the garden -behind into the stable lane. So long was he that Mr. Holder and I -went into the dining-room and waited by the fire until he should -return. We were sitting there in silence when the door opened and -a young lady came in. She was rather above the middle height, -slim, with dark hair and eyes, which seemed the darker against -the absolute pallor of her skin. I do not think that I have ever -seen such deadly paleness in a woman's face. Her lips, too, were -bloodless, but her eyes were flushed with crying. As she swept -silently into the room she impressed me with a greater sense of -grief than the banker had done in the morning, and it was the -more striking in her as she was evidently a woman of strong -character, with immense capacity for self-restraint. Disregarding -my presence, she went straight to her uncle and passed her hand -over his head with a sweet womanly caress. - -"You have given orders that Arthur should be liberated, have you -not, dad?" she asked. - -"No, no, my girl, the matter must be probed to the bottom." - -"But I am so sure that he is innocent. You know what woman's -instincts are. I know that he has done no harm and that you will -be sorry for having acted so harshly." - -"Why is he silent, then, if he is innocent?" - -"Who knows? Perhaps because he was so angry that you should -suspect him." - -"How could I help suspecting him, when I actually saw him with -the coronet in his hand?" - -"Oh, but he had only picked it up to look at it. Oh, do, do take -my word for it that he is innocent. Let the matter drop and say -no more. It is so dreadful to think of our dear Arthur in -prison!" - -"I shall never let it drop until the gems are found--never, Mary! -Your affection for Arthur blinds you as to the awful consequences -to me. Far from hushing the thing up, I have brought a gentleman -down from London to inquire more deeply into it." - -"This gentleman?" she asked, facing round to me. - -"No, his friend. He wished us to leave him alone. He is round in -the stable lane now." - -"The stable lane?" She raised her dark eyebrows. "What can he -hope to find there? Ah! this, I suppose, is he. I trust, sir, -that you will succeed in proving, what I feel sure is the truth, -that my cousin Arthur is innocent of this crime." - -"I fully share your opinion, and I trust, with you, that we may -prove it," returned Holmes, going back to the mat to knock the -snow from his shoes. "I believe I have the honour of addressing -Miss Mary Holder. Might I ask you a question or two?" - -"Pray do, sir, if it may help to clear this horrible affair up." - -"You heard nothing yourself last night?" - -"Nothing, until my uncle here began to speak loudly. I heard -that, and I came down." - -"You shut up the windows and doors the night before. Did you -fasten all the windows?" - -"Yes." - -"Were they all fastened this morning?" - -"Yes." - -"You have a maid who has a sweetheart? I think that you remarked -to your uncle last night that she had been out to see him?" - -"Yes, and she was the girl who waited in the drawing-room, and -who may have heard uncle's remarks about the coronet." - -"I see. You infer that she may have gone out to tell her -sweetheart, and that the two may have planned the robbery." - -"But what is the good of all these vague theories," cried the -banker impatiently, "when I have told you that I saw Arthur with -the coronet in his hands?" - -"Wait a little, Mr. Holder. We must come back to that. About this -girl, Miss Holder. You saw her return by the kitchen door, I -presume?" - -"Yes; when I went to see if the door was fastened for the night I -met her slipping in. I saw the man, too, in the gloom." - -"Do you know him?" - -"Oh, yes! he is the green-grocer who brings our vegetables round. -His name is Francis Prosper." - -"He stood," said Holmes, "to the left of the door--that is to -say, farther up the path than is necessary to reach the door?" - -"Yes, he did." - -"And he is a man with a wooden leg?" - -Something like fear sprang up in the young lady's expressive -black eyes. "Why, you are like a magician," said she. "How do you -know that?" She smiled, but there was no answering smile in -Holmes' thin, eager face. - -"I should be very glad now to go upstairs," said he. "I shall -probably wish to go over the outside of the house again. Perhaps -I had better take a look at the lower windows before I go up." - -He walked swiftly round from one to the other, pausing only at -the large one which looked from the hall onto the stable lane. -This he opened and made a very careful examination of the sill -with his powerful magnifying lens. "Now we shall go upstairs," -said he at last. - -The banker's dressing-room was a plainly furnished little -chamber, with a grey carpet, a large bureau, and a long mirror. -Holmes went to the bureau first and looked hard at the lock. - -"Which key was used to open it?" he asked. - -"That which my son himself indicated--that of the cupboard of the -lumber-room." - -"Have you it here?" - -"That is it on the dressing-table." - -Sherlock Holmes took it up and opened the bureau. - -"It is a noiseless lock," said he. "It is no wonder that it did -not wake you. This case, I presume, contains the coronet. We must -have a look at it." He opened the case, and taking out the diadem -he laid it upon the table. It was a magnificent specimen of the -jeweller's art, and the thirty-six stones were the finest that I -have ever seen. At one side of the coronet was a cracked edge, -where a corner holding three gems had been torn away. - -"Now, Mr. Holder," said Holmes, "here is the corner which -corresponds to that which has been so unfortunately lost. Might I -beg that you will break it off." - -The banker recoiled in horror. "I should not dream of trying," -said he. - -"Then I will." Holmes suddenly bent his strength upon it, but -without result. "I feel it give a little," said he; "but, though -I am exceptionally strong in the fingers, it would take me all my -time to break it. An ordinary man could not do it. Now, what do -you think would happen if I did break it, Mr. Holder? There would -be a noise like a pistol shot. Do you tell me that all this -happened within a few yards of your bed and that you heard -nothing of it?" - -"I do not know what to think. It is all dark to me." - -"But perhaps it may grow lighter as we go. What do you think, -Miss Holder?" - -"I confess that I still share my uncle's perplexity." - -"Your son had no shoes or slippers on when you saw him?" - -"He had nothing on save only his trousers and shirt." - -"Thank you. We have certainly been favoured with extraordinary -luck during this inquiry, and it will be entirely our own fault -if we do not succeed in clearing the matter up. With your -permission, Mr. Holder, I shall now continue my investigations -outside." - -He went alone, at his own request, for he explained that any -unnecessary footmarks might make his task more difficult. For an -hour or more he was at work, returning at last with his feet -heavy with snow and his features as inscrutable as ever. - -"I think that I have seen now all that there is to see, Mr. -Holder," said he; "I can serve you best by returning to my -rooms." - -"But the gems, Mr. Holmes. Where are they?" - -"I cannot tell." - -The banker wrung his hands. "I shall never see them again!" he -cried. "And my son? You give me hopes?" - -"My opinion is in no way altered." - -"Then, for God's sake, what was this dark business which was -acted in my house last night?" - -"If you can call upon me at my Baker Street rooms to-morrow -morning between nine and ten I shall be happy to do what I can to -make it clearer. I understand that you give me carte blanche to -act for you, provided only that I get back the gems, and that you -place no limit on the sum I may draw." - -"I would give my fortune to have them back." - -"Very good. I shall look into the matter between this and then. -Good-bye; it is just possible that I may have to come over here -again before evening." - -It was obvious to me that my companion's mind was now made up -about the case, although what his conclusions were was more than -I could even dimly imagine. Several times during our homeward -journey I endeavoured to sound him upon the point, but he always -glided away to some other topic, until at last I gave it over in -despair. It was not yet three when we found ourselves in our -rooms once more. He hurried to his chamber and was down again in -a few minutes dressed as a common loafer. With his collar turned -up, his shiny, seedy coat, his red cravat, and his worn boots, he -was a perfect sample of the class. - -"I think that this should do," said he, glancing into the glass -above the fireplace. "I only wish that you could come with me, -Watson, but I fear that it won't do. I may be on the trail in -this matter, or I may be following a will-o'-the-wisp, but I -shall soon know which it is. I hope that I may be back in a few -hours." He cut a slice of beef from the joint upon the sideboard, -sandwiched it between two rounds of bread, and thrusting this -rude meal into his pocket he started off upon his expedition. - -I had just finished my tea when he returned, evidently in -excellent spirits, swinging an old elastic-sided boot in his -hand. He chucked it down into a corner and helped himself to a -cup of tea. - -"I only looked in as I passed," said he. "I am going right on." - -"Where to?" - -"Oh, to the other side of the West End. It may be some time -before I get back. Don't wait up for me in case I should be -late." - -"How are you getting on?" - -"Oh, so so. Nothing to complain of. I have been out to Streatham -since I saw you last, but I did not call at the house. It is a -very sweet little problem, and I would not have missed it for a -good deal. However, I must not sit gossiping here, but must get -these disreputable clothes off and return to my highly -respectable self." - -I could see by his manner that he had stronger reasons for -satisfaction than his words alone would imply. His eyes twinkled, -and there was even a touch of colour upon his sallow cheeks. He -hastened upstairs, and a few minutes later I heard the slam of -the hall door, which told me that he was off once more upon his -congenial hunt. - -I waited until midnight, but there was no sign of his return, so -I retired to my room. It was no uncommon thing for him to be away -for days and nights on end when he was hot upon a scent, so that -his lateness caused me no surprise. I do not know at what hour he -came in, but when I came down to breakfast in the morning there -he was with a cup of coffee in one hand and the paper in the -other, as fresh and trim as possible. - -"You will excuse my beginning without you, Watson," said he, "but -you remember that our client has rather an early appointment this -morning." - -"Why, it is after nine now," I answered. "I should not be -surprised if that were he. I thought I heard a ring." - -It was, indeed, our friend the financier. I was shocked by the -change which had come over him, for his face which was naturally -of a broad and massive mould, was now pinched and fallen in, -while his hair seemed to me at least a shade whiter. He entered -with a weariness and lethargy which was even more painful than -his violence of the morning before, and he dropped heavily into -the armchair which I pushed forward for him. - -"I do not know what I have done to be so severely tried," said -he. "Only two days ago I was a happy and prosperous man, without -a care in the world. Now I am left to a lonely and dishonoured -age. One sorrow comes close upon the heels of another. My niece, -Mary, has deserted me." - -"Deserted you?" - -"Yes. Her bed this morning had not been slept in, her room was -empty, and a note for me lay upon the hall table. I had said to -her last night, in sorrow and not in anger, that if she had -married my boy all might have been well with him. Perhaps it was -thoughtless of me to say so. It is to that remark that she refers -in this note: - -"'MY DEAREST UNCLE:--I feel that I have brought trouble upon you, -and that if I had acted differently this terrible misfortune -might never have occurred. I cannot, with this thought in my -mind, ever again be happy under your roof, and I feel that I must -leave you forever. Do not worry about my future, for that is -provided for; and, above all, do not search for me, for it will -be fruitless labour and an ill-service to me. In life or in -death, I am ever your loving,--MARY.' - -"What could she mean by that note, Mr. Holmes? Do you think it -points to suicide?" - -"No, no, nothing of the kind. It is perhaps the best possible -solution. I trust, Mr. Holder, that you are nearing the end of -your troubles." - -"Ha! You say so! You have heard something, Mr. Holmes; you have -learned something! Where are the gems?" - -"You would not think 1000 pounds apiece an excessive sum for -them?" - -"I would pay ten." - -"That would be unnecessary. Three thousand will cover the matter. -And there is a little reward, I fancy. Have you your check-book? -Here is a pen. Better make it out for 4000 pounds." - -With a dazed face the banker made out the required check. Holmes -walked over to his desk, took out a little triangular piece of -gold with three gems in it, and threw it down upon the table. - -With a shriek of joy our client clutched it up. - -"You have it!" he gasped. "I am saved! I am saved!" - -The reaction of joy was as passionate as his grief had been, and -he hugged his recovered gems to his bosom. - -"There is one other thing you owe, Mr. Holder," said Sherlock -Holmes rather sternly. - -"Owe!" He caught up a pen. "Name the sum, and I will pay it." - -"No, the debt is not to me. You owe a very humble apology to that -noble lad, your son, who has carried himself in this matter as I -should be proud to see my own son do, should I ever chance to -have one." - -"Then it was not Arthur who took them?" - -"I told you yesterday, and I repeat to-day, that it was not." - -"You are sure of it! Then let us hurry to him at once to let him -know that the truth is known." - -"He knows it already. When I had cleared it all up I had an -interview with him, and finding that he would not tell me the -story, I told it to him, on which he had to confess that I was -right and to add the very few details which were not yet quite -clear to me. Your news of this morning, however, may open his -lips." - -"For heaven's sake, tell me, then, what is this extraordinary -mystery!" - -"I will do so, and I will show you the steps by which I reached -it. And let me say to you, first, that which it is hardest for me -to say and for you to hear: there has been an understanding -between Sir George Burnwell and your niece Mary. They have now -fled together." - -"My Mary? Impossible!" - -"It is unfortunately more than possible; it is certain. Neither -you nor your son knew the true character of this man when you -admitted him into your family circle. He is one of the most -dangerous men in England--a ruined gambler, an absolutely -desperate villain, a man without heart or conscience. Your niece -knew nothing of such men. When he breathed his vows to her, as he -had done to a hundred before her, she flattered herself that she -alone had touched his heart. The devil knows best what he said, -but at least she became his tool and was in the habit of seeing -him nearly every evening." - -"I cannot, and I will not, believe it!" cried the banker with an -ashen face. - -"I will tell you, then, what occurred in your house last night. -Your niece, when you had, as she thought, gone to your room, -slipped down and talked to her lover through the window which -leads into the stable lane. His footmarks had pressed right -through the snow, so long had he stood there. She told him of the -coronet. His wicked lust for gold kindled at the news, and he -bent her to his will. I have no doubt that she loved you, but -there are women in whom the love of a lover extinguishes all -other loves, and I think that she must have been one. She had -hardly listened to his instructions when she saw you coming -downstairs, on which she closed the window rapidly and told you -about one of the servants' escapade with her wooden-legged lover, -which was all perfectly true. - -"Your boy, Arthur, went to bed after his interview with you but -he slept badly on account of his uneasiness about his club debts. -In the middle of the night he heard a soft tread pass his door, -so he rose and, looking out, was surprised to see his cousin -walking very stealthily along the passage until she disappeared -into your dressing-room. Petrified with astonishment, the lad -slipped on some clothes and waited there in the dark to see what -would come of this strange affair. Presently she emerged from the -room again, and in the light of the passage-lamp your son saw -that she carried the precious coronet in her hands. She passed -down the stairs, and he, thrilling with horror, ran along and -slipped behind the curtain near your door, whence he could see -what passed in the hall beneath. He saw her stealthily open the -window, hand out the coronet to someone in the gloom, and then -closing it once more hurry back to her room, passing quite close -to where he stood hid behind the curtain. - -"As long as she was on the scene he could not take any action -without a horrible exposure of the woman whom he loved. But the -instant that she was gone he realised how crushing a misfortune -this would be for you, and how all-important it was to set it -right. He rushed down, just as he was, in his bare feet, opened -the window, sprang out into the snow, and ran down the lane, -where he could see a dark figure in the moonlight. Sir George -Burnwell tried to get away, but Arthur caught him, and there was -a struggle between them, your lad tugging at one side of the -coronet, and his opponent at the other. In the scuffle, your son -struck Sir George and cut him over the eye. Then something -suddenly snapped, and your son, finding that he had the coronet -in his hands, rushed back, closed the window, ascended to your -room, and had just observed that the coronet had been twisted in -the struggle and was endeavouring to straighten it when you -appeared upon the scene." - -"Is it possible?" gasped the banker. - -"You then roused his anger by calling him names at a moment when -he felt that he had deserved your warmest thanks. He could not -explain the true state of affairs without betraying one who -certainly deserved little enough consideration at his hands. He -took the more chivalrous view, however, and preserved her -secret." - -"And that was why she shrieked and fainted when she saw the -coronet," cried Mr. Holder. "Oh, my God! what a blind fool I have -been! And his asking to be allowed to go out for five minutes! -The dear fellow wanted to see if the missing piece were at the -scene of the struggle. How cruelly I have misjudged him!" - -"When I arrived at the house," continued Holmes, "I at once went -very carefully round it to observe if there were any traces in -the snow which might help me. I knew that none had fallen since -the evening before, and also that there had been a strong frost -to preserve impressions. I passed along the tradesmen's path, but -found it all trampled down and indistinguishable. Just beyond it, -however, at the far side of the kitchen door, a woman had stood -and talked with a man, whose round impressions on one side showed -that he had a wooden leg. I could even tell that they had been -disturbed, for the woman had run back swiftly to the door, as was -shown by the deep toe and light heel marks, while Wooden-leg had -waited a little, and then had gone away. I thought at the time -that this might be the maid and her sweetheart, of whom you had -already spoken to me, and inquiry showed it was so. I passed -round the garden without seeing anything more than random tracks, -which I took to be the police; but when I got into the stable -lane a very long and complex story was written in the snow in -front of me. - -"There was a double line of tracks of a booted man, and a second -double line which I saw with delight belonged to a man with naked -feet. I was at once convinced from what you had told me that the -latter was your son. The first had walked both ways, but the -other had run swiftly, and as his tread was marked in places over -the depression of the boot, it was obvious that he had passed -after the other. I followed them up and found they led to the -hall window, where Boots had worn all the snow away while -waiting. Then I walked to the other end, which was a hundred -yards or more down the lane. I saw where Boots had faced round, -where the snow was cut up as though there had been a struggle, -and, finally, where a few drops of blood had fallen, to show me -that I was not mistaken. Boots had then run down the lane, and -another little smudge of blood showed that it was he who had been -hurt. When he came to the highroad at the other end, I found that -the pavement had been cleared, so there was an end to that clue. - -"On entering the house, however, I examined, as you remember, the -sill and framework of the hall window with my lens, and I could -at once see that someone had passed out. I could distinguish the -outline of an instep where the wet foot had been placed in coming -in. I was then beginning to be able to form an opinion as to what -had occurred. A man had waited outside the window; someone had -brought the gems; the deed had been overseen by your son; he had -pursued the thief; had struggled with him; they had each tugged -at the coronet, their united strength causing injuries which -neither alone could have effected. He had returned with the -prize, but had left a fragment in the grasp of his opponent. So -far I was clear. The question now was, who was the man and who -was it brought him the coronet? - -"It is an old maxim of mine that when you have excluded the -impossible, whatever remains, however improbable, must be the -truth. Now, I knew that it was not you who had brought it down, -so there only remained your niece and the maids. But if it were -the maids, why should your son allow himself to be accused in -their place? There could be no possible reason. As he loved his -cousin, however, there was an excellent explanation why he should -retain her secret--the more so as the secret was a disgraceful -one. When I remembered that you had seen her at that window, and -how she had fainted on seeing the coronet again, my conjecture -became a certainty. - -"And who could it be who was her confederate? A lover evidently, -for who else could outweigh the love and gratitude which she must -feel to you? I knew that you went out little, and that your -circle of friends was a very limited one. But among them was Sir -George Burnwell. I had heard of him before as being a man of evil -reputation among women. It must have been he who wore those boots -and retained the missing gems. Even though he knew that Arthur -had discovered him, he might still flatter himself that he was -safe, for the lad could not say a word without compromising his -own family. - -"Well, your own good sense will suggest what measures I took -next. I went in the shape of a loafer to Sir George's house, -managed to pick up an acquaintance with his valet, learned that -his master had cut his head the night before, and, finally, at -the expense of six shillings, made all sure by buying a pair of -his cast-off shoes. With these I journeyed down to Streatham and -saw that they exactly fitted the tracks." - -"I saw an ill-dressed vagabond in the lane yesterday evening," -said Mr. Holder. - -"Precisely. It was I. I found that I had my man, so I came home -and changed my clothes. It was a delicate part which I had to -play then, for I saw that a prosecution must be avoided to avert -scandal, and I knew that so astute a villain would see that our -hands were tied in the matter. I went and saw him. At first, of -course, he denied everything. But when I gave him every -particular that had occurred, he tried to bluster and took down a -life-preserver from the wall. I knew my man, however, and I -clapped a pistol to his head before he could strike. Then he -became a little more reasonable. I told him that we would give -him a price for the stones he held--1000 pounds apiece. That -brought out the first signs of grief that he had shown. 'Why, -dash it all!' said he, 'I've let them go at six hundred for the -three!' I soon managed to get the address of the receiver who had -them, on promising him that there would be no prosecution. Off I -set to him, and after much chaffering I got our stones at 1000 -pounds apiece. Then I looked in upon your son, told him that all -was right, and eventually got to my bed about two o'clock, after -what I may call a really hard day's work." - -"A day which has saved England from a great public scandal," said -the banker, rising. "Sir, I cannot find words to thank you, but -you shall not find me ungrateful for what you have done. Your -skill has indeed exceeded all that I have heard of it. And now I -must fly to my dear boy to apologise to him for the wrong which I -have done him. As to what you tell me of poor Mary, it goes to my -very heart. Not even your skill can inform me where she is now." - -"I think that we may safely say," returned Holmes, "that she is -wherever Sir George Burnwell is. It is equally certain, too, that -whatever her sins are, they will soon receive a more than -sufficient punishment." - - - -XII. THE ADVENTURE OF THE COPPER BEECHES - -"To the man who loves art for its own sake," remarked Sherlock -Holmes, tossing aside the advertisement sheet of the Daily -Telegraph, "it is frequently in its least important and lowliest -manifestations that the keenest pleasure is to be derived. It is -pleasant to me to observe, Watson, that you have so far grasped -this truth that in these little records of our cases which you -have been good enough to draw up, and, I am bound to say, -occasionally to embellish, you have given prominence not so much -to the many causes clbres and sensational trials in which I -have figured but rather to those incidents which may have been -trivial in themselves, but which have given room for those -faculties of deduction and of logical synthesis which I have made -my special province." - -"And yet," said I, smiling, "I cannot quite hold myself absolved -from the charge of sensationalism which has been urged against my -records." - -"You have erred, perhaps," he observed, taking up a glowing -cinder with the tongs and lighting with it the long cherry-wood -pipe which was wont to replace his clay when he was in a -disputatious rather than a meditative mood--"you have erred -perhaps in attempting to put colour and life into each of your -statements instead of confining yourself to the task of placing -upon record that severe reasoning from cause to effect which is -really the only notable feature about the thing." - -"It seems to me that I have done you full justice in the matter," -I remarked with some coldness, for I was repelled by the egotism -which I had more than once observed to be a strong factor in my -friend's singular character. - -"No, it is not selfishness or conceit," said he, answering, as -was his wont, my thoughts rather than my words. "If I claim full -justice for my art, it is because it is an impersonal thing--a -thing beyond myself. Crime is common. Logic is rare. Therefore it -is upon the logic rather than upon the crime that you should -dwell. You have degraded what should have been a course of -lectures into a series of tales." - -It was a cold morning of the early spring, and we sat after -breakfast on either side of a cheery fire in the old room at -Baker Street. A thick fog rolled down between the lines of -dun-coloured houses, and the opposing windows loomed like dark, -shapeless blurs through the heavy yellow wreaths. Our gas was lit -and shone on the white cloth and glimmer of china and metal, for -the table had not been cleared yet. Sherlock Holmes had been -silent all the morning, dipping continuously into the -advertisement columns of a succession of papers until at last, -having apparently given up his search, he had emerged in no very -sweet temper to lecture me upon my literary shortcomings. - -"At the same time," he remarked after a pause, during which he -had sat puffing at his long pipe and gazing down into the fire, -"you can hardly be open to a charge of sensationalism, for out of -these cases which you have been so kind as to interest yourself -in, a fair proportion do not treat of crime, in its legal sense, -at all. The small matter in which I endeavoured to help the King -of Bohemia, the singular experience of Miss Mary Sutherland, the -problem connected with the man with the twisted lip, and the -incident of the noble bachelor, were all matters which are -outside the pale of the law. But in avoiding the sensational, I -fear that you may have bordered on the trivial." - -"The end may have been so," I answered, "but the methods I hold -to have been novel and of interest." - -"Pshaw, my dear fellow, what do the public, the great unobservant -public, who could hardly tell a weaver by his tooth or a -compositor by his left thumb, care about the finer shades of -analysis and deduction! But, indeed, if you are trivial, I cannot -blame you, for the days of the great cases are past. Man, or at -least criminal man, has lost all enterprise and originality. As -to my own little practice, it seems to be degenerating into an -agency for recovering lost lead pencils and giving advice to -young ladies from boarding-schools. I think that I have touched -bottom at last, however. This note I had this morning marks my -zero-point, I fancy. Read it!" He tossed a crumpled letter across -to me. - -It was dated from Montague Place upon the preceding evening, and -ran thus: - -"DEAR MR. HOLMES:--I am very anxious to consult you as to whether -I should or should not accept a situation which has been offered -to me as governess. I shall call at half-past ten to-morrow if I -do not inconvenience you. Yours faithfully, - "VIOLET HUNTER." - -"Do you know the young lady?" I asked. - -"Not I." - -"It is half-past ten now." - -"Yes, and I have no doubt that is her ring." - -"It may turn out to be of more interest than you think. You -remember that the affair of the blue carbuncle, which appeared to -be a mere whim at first, developed into a serious investigation. -It may be so in this case, also." - -"Well, let us hope so. But our doubts will very soon be solved, -for here, unless I am much mistaken, is the person in question." - -As he spoke the door opened and a young lady entered the room. -She was plainly but neatly dressed, with a bright, quick face, -freckled like a plover's egg, and with the brisk manner of a -woman who has had her own way to make in the world. - -"You will excuse my troubling you, I am sure," said she, as my -companion rose to greet her, "but I have had a very strange -experience, and as I have no parents or relations of any sort -from whom I could ask advice, I thought that perhaps you would be -kind enough to tell me what I should do." - -"Pray take a seat, Miss Hunter. I shall be happy to do anything -that I can to serve you." - -I could see that Holmes was favourably impressed by the manner -and speech of his new client. He looked her over in his searching -fashion, and then composed himself, with his lids drooping and -his finger-tips together, to listen to her story. - -"I have been a governess for five years," said she, "in the -family of Colonel Spence Munro, but two months ago the colonel -received an appointment at Halifax, in Nova Scotia, and took his -children over to America with him, so that I found myself without -a situation. I advertised, and I answered advertisements, but -without success. At last the little money which I had saved began -to run short, and I was at my wit's end as to what I should do. - -"There is a well-known agency for governesses in the West End -called Westaway's, and there I used to call about once a week in -order to see whether anything had turned up which might suit me. -Westaway was the name of the founder of the business, but it is -really managed by Miss Stoper. She sits in her own little office, -and the ladies who are seeking employment wait in an anteroom, -and are then shown in one by one, when she consults her ledgers -and sees whether she has anything which would suit them. - -"Well, when I called last week I was shown into the little office -as usual, but I found that Miss Stoper was not alone. A -prodigiously stout man with a very smiling face and a great heavy -chin which rolled down in fold upon fold over his throat sat at -her elbow with a pair of glasses on his nose, looking very -earnestly at the ladies who entered. As I came in he gave quite a -jump in his chair and turned quickly to Miss Stoper. - -"'That will do,' said he; 'I could not ask for anything better. -Capital! capital!' He seemed quite enthusiastic and rubbed his -hands together in the most genial fashion. He was such a -comfortable-looking man that it was quite a pleasure to look at -him. - -"'You are looking for a situation, miss?' he asked. - -"'Yes, sir.' - -"'As governess?' - -"'Yes, sir.' - -"'And what salary do you ask?' - -"'I had 4 pounds a month in my last place with Colonel Spence -Munro.' - -"'Oh, tut, tut! sweating--rank sweating!' he cried, throwing his -fat hands out into the air like a man who is in a boiling -passion. 'How could anyone offer so pitiful a sum to a lady with -such attractions and accomplishments?' - -"'My accomplishments, sir, may be less than you imagine,' said I. -'A little French, a little German, music, and drawing--' - -"'Tut, tut!' he cried. 'This is all quite beside the question. -The point is, have you or have you not the bearing and deportment -of a lady? There it is in a nutshell. If you have not, you are -not fitted for the rearing of a child who may some day play a -considerable part in the history of the country. But if you have -why, then, how could any gentleman ask you to condescend to -accept anything under the three figures? Your salary with me, -madam, would commence at 100 pounds a year.' - -"You may imagine, Mr. Holmes, that to me, destitute as I was, -such an offer seemed almost too good to be true. The gentleman, -however, seeing perhaps the look of incredulity upon my face, -opened a pocket-book and took out a note. - -"'It is also my custom,' said he, smiling in the most pleasant -fashion until his eyes were just two little shining slits amid -the white creases of his face, 'to advance to my young ladies -half their salary beforehand, so that they may meet any little -expenses of their journey and their wardrobe.' - -"It seemed to me that I had never met so fascinating and so -thoughtful a man. As I was already in debt to my tradesmen, the -advance was a great convenience, and yet there was something -unnatural about the whole transaction which made me wish to know -a little more before I quite committed myself. - -"'May I ask where you live, sir?' said I. - -"'Hampshire. Charming rural place. The Copper Beeches, five miles -on the far side of Winchester. It is the most lovely country, my -dear young lady, and the dearest old country-house.' - -"'And my duties, sir? I should be glad to know what they would -be.' - -"'One child--one dear little romper just six years old. Oh, if -you could see him killing cockroaches with a slipper! Smack! -smack! smack! Three gone before you could wink!' He leaned back -in his chair and laughed his eyes into his head again. - -"I was a little startled at the nature of the child's amusement, -but the father's laughter made me think that perhaps he was -joking. - -"'My sole duties, then,' I asked, 'are to take charge of a single -child?' - -"'No, no, not the sole, not the sole, my dear young lady,' he -cried. 'Your duty would be, as I am sure your good sense would -suggest, to obey any little commands my wife might give, provided -always that they were such commands as a lady might with -propriety obey. You see no difficulty, heh?' - -"'I should be happy to make myself useful.' - -"'Quite so. In dress now, for example. We are faddy people, you -know--faddy but kind-hearted. If you were asked to wear any dress -which we might give you, you would not object to our little whim. -Heh?' - -"'No,' said I, considerably astonished at his words. - -"'Or to sit here, or sit there, that would not be offensive to -you?' - -"'Oh, no.' - -"'Or to cut your hair quite short before you come to us?' - -"I could hardly believe my ears. As you may observe, Mr. Holmes, -my hair is somewhat luxuriant, and of a rather peculiar tint of -chestnut. It has been considered artistic. I could not dream of -sacrificing it in this offhand fashion. - -"'I am afraid that that is quite impossible,' said I. He had been -watching me eagerly out of his small eyes, and I could see a -shadow pass over his face as I spoke. - -"'I am afraid that it is quite essential,' said he. 'It is a -little fancy of my wife's, and ladies' fancies, you know, madam, -ladies' fancies must be consulted. And so you won't cut your -hair?' - -"'No, sir, I really could not,' I answered firmly. - -"'Ah, very well; then that quite settles the matter. It is a -pity, because in other respects you would really have done very -nicely. In that case, Miss Stoper, I had best inspect a few more -of your young ladies.' - -"The manageress had sat all this while busy with her papers -without a word to either of us, but she glanced at me now with so -much annoyance upon her face that I could not help suspecting -that she had lost a handsome commission through my refusal. - -"'Do you desire your name to be kept upon the books?' she asked. - -"'If you please, Miss Stoper.' - -"'Well, really, it seems rather useless, since you refuse the -most excellent offers in this fashion,' said she sharply. 'You -can hardly expect us to exert ourselves to find another such -opening for you. Good-day to you, Miss Hunter.' She struck a gong -upon the table, and I was shown out by the page. - -"Well, Mr. Holmes, when I got back to my lodgings and found -little enough in the cupboard, and two or three bills upon the -table, I began to ask myself whether I had not done a very -foolish thing. After all, if these people had strange fads and -expected obedience on the most extraordinary matters, they were -at least ready to pay for their eccentricity. Very few -governesses in England are getting 100 pounds a year. Besides, -what use was my hair to me? Many people are improved by wearing -it short and perhaps I should be among the number. Next day I was -inclined to think that I had made a mistake, and by the day after -I was sure of it. I had almost overcome my pride so far as to go -back to the agency and inquire whether the place was still open -when I received this letter from the gentleman himself. I have it -here and I will read it to you: - - "'The Copper Beeches, near Winchester. -"'DEAR MISS HUNTER:--Miss Stoper has very kindly given me your -address, and I write from here to ask you whether you have -reconsidered your decision. My wife is very anxious that you -should come, for she has been much attracted by my description of -you. We are willing to give 30 pounds a quarter, or 120 pounds a -year, so as to recompense you for any little inconvenience which -our fads may cause you. They are not very exacting, after all. My -wife is fond of a particular shade of electric blue and would -like you to wear such a dress indoors in the morning. You need -not, however, go to the expense of purchasing one, as we have one -belonging to my dear daughter Alice (now in Philadelphia), which -would, I should think, fit you very well. Then, as to sitting -here or there, or amusing yourself in any manner indicated, that -need cause you no inconvenience. As regards your hair, it is no -doubt a pity, especially as I could not help remarking its beauty -during our short interview, but I am afraid that I must remain -firm upon this point, and I only hope that the increased salary -may recompense you for the loss. Your duties, as far as the child -is concerned, are very light. Now do try to come, and I shall -meet you with the dog-cart at Winchester. Let me know your train. -Yours faithfully, JEPHRO RUCASTLE.' - -"That is the letter which I have just received, Mr. Holmes, and -my mind is made up that I will accept it. I thought, however, -that before taking the final step I should like to submit the -whole matter to your consideration." - -"Well, Miss Hunter, if your mind is made up, that settles the -question," said Holmes, smiling. - -"But you would not advise me to refuse?" - -"I confess that it is not the situation which I should like to -see a sister of mine apply for." - -"What is the meaning of it all, Mr. Holmes?" - -"Ah, I have no data. I cannot tell. Perhaps you have yourself -formed some opinion?" - -"Well, there seems to me to be only one possible solution. Mr. -Rucastle seemed to be a very kind, good-natured man. Is it not -possible that his wife is a lunatic, that he desires to keep the -matter quiet for fear she should be taken to an asylum, and that -he humours her fancies in every way in order to prevent an -outbreak?" - -"That is a possible solution--in fact, as matters stand, it is -the most probable one. But in any case it does not seem to be a -nice household for a young lady." - -"But the money, Mr. Holmes, the money!" - -"Well, yes, of course the pay is good--too good. That is what -makes me uneasy. Why should they give you 120 pounds a year, when -they could have their pick for 40 pounds? There must be some -strong reason behind." - -"I thought that if I told you the circumstances you would -understand afterwards if I wanted your help. I should feel so -much stronger if I felt that you were at the back of me." - -"Oh, you may carry that feeling away with you. I assure you that -your little problem promises to be the most interesting which has -come my way for some months. There is something distinctly novel -about some of the features. If you should find yourself in doubt -or in danger--" - -"Danger! What danger do you foresee?" - -Holmes shook his head gravely. "It would cease to be a danger if -we could define it," said he. "But at any time, day or night, a -telegram would bring me down to your help." - -"That is enough." She rose briskly from her chair with the -anxiety all swept from her face. "I shall go down to Hampshire -quite easy in my mind now. I shall write to Mr. Rucastle at once, -sacrifice my poor hair to-night, and start for Winchester -to-morrow." With a few grateful words to Holmes she bade us both -good-night and bustled off upon her way. - -"At least," said I as we heard her quick, firm steps descending -the stairs, "she seems to be a young lady who is very well able -to take care of herself." - -"And she would need to be," said Holmes gravely. "I am much -mistaken if we do not hear from her before many days are past." - -It was not very long before my friend's prediction was fulfilled. -A fortnight went by, during which I frequently found my thoughts -turning in her direction and wondering what strange side-alley of -human experience this lonely woman had strayed into. The unusual -salary, the curious conditions, the light duties, all pointed to -something abnormal, though whether a fad or a plot, or whether -the man were a philanthropist or a villain, it was quite beyond -my powers to determine. As to Holmes, I observed that he sat -frequently for half an hour on end, with knitted brows and an -abstracted air, but he swept the matter away with a wave of his -hand when I mentioned it. "Data! data! data!" he cried -impatiently. "I can't make bricks without clay." And yet he would -always wind up by muttering that no sister of his should ever -have accepted such a situation. - -The telegram which we eventually received came late one night -just as I was thinking of turning in and Holmes was settling down -to one of those all-night chemical researches which he frequently -indulged in, when I would leave him stooping over a retort and a -test-tube at night and find him in the same position when I came -down to breakfast in the morning. He opened the yellow envelope, -and then, glancing at the message, threw it across to me. - -"Just look up the trains in Bradshaw," said he, and turned back -to his chemical studies. - -The summons was a brief and urgent one. - -"Please be at the Black Swan Hotel at Winchester at midday -to-morrow," it said. "Do come! I am at my wit's end. HUNTER." - -"Will you come with me?" asked Holmes, glancing up. - -"I should wish to." - -"Just look it up, then." - -"There is a train at half-past nine," said I, glancing over my -Bradshaw. "It is due at Winchester at 11:30." - -"That will do very nicely. Then perhaps I had better postpone my -analysis of the acetones, as we may need to be at our best in the -morning." - -By eleven o'clock the next day we were well upon our way to the -old English capital. Holmes had been buried in the morning papers -all the way down, but after we had passed the Hampshire border he -threw them down and began to admire the scenery. It was an ideal -spring day, a light blue sky, flecked with little fleecy white -clouds drifting across from west to east. The sun was shining -very brightly, and yet there was an exhilarating nip in the air, -which set an edge to a man's energy. All over the countryside, -away to the rolling hills around Aldershot, the little red and -grey roofs of the farm-steadings peeped out from amid the light -green of the new foliage. - -"Are they not fresh and beautiful?" I cried with all the -enthusiasm of a man fresh from the fogs of Baker Street. - -But Holmes shook his head gravely. - -"Do you know, Watson," said he, "that it is one of the curses of -a mind with a turn like mine that I must look at everything with -reference to my own special subject. You look at these scattered -houses, and you are impressed by their beauty. I look at them, -and the only thought which comes to me is a feeling of their -isolation and of the impunity with which crime may be committed -there." - -"Good heavens!" I cried. "Who would associate crime with these -dear old homesteads?" - -"They always fill me with a certain horror. It is my belief, -Watson, founded upon my experience, that the lowest and vilest -alleys in London do not present a more dreadful record of sin -than does the smiling and beautiful countryside." - -"You horrify me!" - -"But the reason is very obvious. The pressure of public opinion -can do in the town what the law cannot accomplish. There is no -lane so vile that the scream of a tortured child, or the thud of -a drunkard's blow, does not beget sympathy and indignation among -the neighbours, and then the whole machinery of justice is ever -so close that a word of complaint can set it going, and there is -but a step between the crime and the dock. But look at these -lonely houses, each in its own fields, filled for the most part -with poor ignorant folk who know little of the law. Think of the -deeds of hellish cruelty, the hidden wickedness which may go on, -year in, year out, in such places, and none the wiser. Had this -lady who appeals to us for help gone to live in Winchester, I -should never have had a fear for her. It is the five miles of -country which makes the danger. Still, it is clear that she is -not personally threatened." - -"No. If she can come to Winchester to meet us she can get away." - -"Quite so. She has her freedom." - -"What CAN be the matter, then? Can you suggest no explanation?" - -"I have devised seven separate explanations, each of which would -cover the facts as far as we know them. But which of these is -correct can only be determined by the fresh information which we -shall no doubt find waiting for us. Well, there is the tower of -the cathedral, and we shall soon learn all that Miss Hunter has -to tell." - -The Black Swan is an inn of repute in the High Street, at no -distance from the station, and there we found the young lady -waiting for us. She had engaged a sitting-room, and our lunch -awaited us upon the table. - -"I am so delighted that you have come," she said earnestly. "It -is so very kind of you both; but indeed I do not know what I -should do. Your advice will be altogether invaluable to me." - -"Pray tell us what has happened to you." - -"I will do so, and I must be quick, for I have promised Mr. -Rucastle to be back before three. I got his leave to come into -town this morning, though he little knew for what purpose." - -"Let us have everything in its due order." Holmes thrust his long -thin legs out towards the fire and composed himself to listen. - -"In the first place, I may say that I have met, on the whole, -with no actual ill-treatment from Mr. and Mrs. Rucastle. It is -only fair to them to say that. But I cannot understand them, and -I am not easy in my mind about them." - -"What can you not understand?" - -"Their reasons for their conduct. But you shall have it all just -as it occurred. When I came down, Mr. Rucastle met me here and -drove me in his dog-cart to the Copper Beeches. It is, as he -said, beautifully situated, but it is not beautiful in itself, -for it is a large square block of a house, whitewashed, but all -stained and streaked with damp and bad weather. There are grounds -round it, woods on three sides, and on the fourth a field which -slopes down to the Southampton highroad, which curves past about -a hundred yards from the front door. This ground in front belongs -to the house, but the woods all round are part of Lord -Southerton's preserves. A clump of copper beeches immediately in -front of the hall door has given its name to the place. - -"I was driven over by my employer, who was as amiable as ever, -and was introduced by him that evening to his wife and the child. -There was no truth, Mr. Holmes, in the conjecture which seemed to -us to be probable in your rooms at Baker Street. Mrs. Rucastle is -not mad. I found her to be a silent, pale-faced woman, much -younger than her husband, not more than thirty, I should think, -while he can hardly be less than forty-five. From their -conversation I have gathered that they have been married about -seven years, that he was a widower, and that his only child by -the first wife was the daughter who has gone to Philadelphia. Mr. -Rucastle told me in private that the reason why she had left them -was that she had an unreasoning aversion to her stepmother. As -the daughter could not have been less than twenty, I can quite -imagine that her position must have been uncomfortable with her -father's young wife. - -"Mrs. Rucastle seemed to me to be colourless in mind as well as -in feature. She impressed me neither favourably nor the reverse. -She was a nonentity. It was easy to see that she was passionately -devoted both to her husband and to her little son. Her light grey -eyes wandered continually from one to the other, noting every -little want and forestalling it if possible. He was kind to her -also in his bluff, boisterous fashion, and on the whole they -seemed to be a happy couple. And yet she had some secret sorrow, -this woman. She would often be lost in deep thought, with the -saddest look upon her face. More than once I have surprised her -in tears. I have thought sometimes that it was the disposition of -her child which weighed upon her mind, for I have never met so -utterly spoiled and so ill-natured a little creature. He is small -for his age, with a head which is quite disproportionately large. -His whole life appears to be spent in an alternation between -savage fits of passion and gloomy intervals of sulking. Giving -pain to any creature weaker than himself seems to be his one idea -of amusement, and he shows quite remarkable talent in planning -the capture of mice, little birds, and insects. But I would -rather not talk about the creature, Mr. Holmes, and, indeed, he -has little to do with my story." - -"I am glad of all details," remarked my friend, "whether they -seem to you to be relevant or not." - -"I shall try not to miss anything of importance. The one -unpleasant thing about the house, which struck me at once, was -the appearance and conduct of the servants. There are only two, a -man and his wife. Toller, for that is his name, is a rough, -uncouth man, with grizzled hair and whiskers, and a perpetual -smell of drink. Twice since I have been with them he has been -quite drunk, and yet Mr. Rucastle seemed to take no notice of it. -His wife is a very tall and strong woman with a sour face, as -silent as Mrs. Rucastle and much less amiable. They are a most -unpleasant couple, but fortunately I spend most of my time in the -nursery and my own room, which are next to each other in one -corner of the building. - -"For two days after my arrival at the Copper Beeches my life was -very quiet; on the third, Mrs. Rucastle came down just after -breakfast and whispered something to her husband. - -"'Oh, yes,' said he, turning to me, 'we are very much obliged to -you, Miss Hunter, for falling in with our whims so far as to cut -your hair. I assure you that it has not detracted in the tiniest -iota from your appearance. We shall now see how the electric-blue -dress will become you. You will find it laid out upon the bed in -your room, and if you would be so good as to put it on we should -both be extremely obliged.' - -"The dress which I found waiting for me was of a peculiar shade -of blue. It was of excellent material, a sort of beige, but it -bore unmistakable signs of having been worn before. It could not -have been a better fit if I had been measured for it. Both Mr. -and Mrs. Rucastle expressed a delight at the look of it, which -seemed quite exaggerated in its vehemence. They were waiting for -me in the drawing-room, which is a very large room, stretching -along the entire front of the house, with three long windows -reaching down to the floor. A chair had been placed close to the -central window, with its back turned towards it. In this I was -asked to sit, and then Mr. Rucastle, walking up and down on the -other side of the room, began to tell me a series of the funniest -stories that I have ever listened to. You cannot imagine how -comical he was, and I laughed until I was quite weary. Mrs. -Rucastle, however, who has evidently no sense of humour, never so -much as smiled, but sat with her hands in her lap, and a sad, -anxious look upon her face. After an hour or so, Mr. Rucastle -suddenly remarked that it was time to commence the duties of the -day, and that I might change my dress and go to little Edward in -the nursery. - -"Two days later this same performance was gone through under -exactly similar circumstances. Again I changed my dress, again I -sat in the window, and again I laughed very heartily at the funny -stories of which my employer had an immense rpertoire, and which -he told inimitably. Then he handed me a yellow-backed novel, and -moving my chair a little sideways, that my own shadow might not -fall upon the page, he begged me to read aloud to him. I read for -about ten minutes, beginning in the heart of a chapter, and then -suddenly, in the middle of a sentence, he ordered me to cease and -to change my dress. - -"You can easily imagine, Mr. Holmes, how curious I became as to -what the meaning of this extraordinary performance could possibly -be. They were always very careful, I observed, to turn my face -away from the window, so that I became consumed with the desire -to see what was going on behind my back. At first it seemed to be -impossible, but I soon devised a means. My hand-mirror had been -broken, so a happy thought seized me, and I concealed a piece of -the glass in my handkerchief. On the next occasion, in the midst -of my laughter, I put my handkerchief up to my eyes, and was able -with a little management to see all that there was behind me. I -confess that I was disappointed. There was nothing. At least that -was my first impression. At the second glance, however, I -perceived that there was a man standing in the Southampton Road, -a small bearded man in a grey suit, who seemed to be looking in -my direction. The road is an important highway, and there are -usually people there. This man, however, was leaning against the -railings which bordered our field and was looking earnestly up. I -lowered my handkerchief and glanced at Mrs. Rucastle to find her -eyes fixed upon me with a most searching gaze. She said nothing, -but I am convinced that she had divined that I had a mirror in my -hand and had seen what was behind me. She rose at once. - -"'Jephro,' said she, 'there is an impertinent fellow upon the -road there who stares up at Miss Hunter.' - -"'No friend of yours, Miss Hunter?' he asked. - -"'No, I know no one in these parts.' - -"'Dear me! How very impertinent! Kindly turn round and motion to -him to go away.' - -"'Surely it would be better to take no notice.' - -"'No, no, we should have him loitering here always. Kindly turn -round and wave him away like that.' - -"I did as I was told, and at the same instant Mrs. Rucastle drew -down the blind. That was a week ago, and from that time I have -not sat again in the window, nor have I worn the blue dress, nor -seen the man in the road." - -"Pray continue," said Holmes. "Your narrative promises to be a -most interesting one." - -"You will find it rather disconnected, I fear, and there may -prove to be little relation between the different incidents of -which I speak. On the very first day that I was at the Copper -Beeches, Mr. Rucastle took me to a small outhouse which stands -near the kitchen door. As we approached it I heard the sharp -rattling of a chain, and the sound as of a large animal moving -about. - -"'Look in here!' said Mr. Rucastle, showing me a slit between two -planks. 'Is he not a beauty?' - -"I looked through and was conscious of two glowing eyes, and of a -vague figure huddled up in the darkness. - -"'Don't be frightened,' said my employer, laughing at the start -which I had given. 'It's only Carlo, my mastiff. I call him mine, -but really old Toller, my groom, is the only man who can do -anything with him. We feed him once a day, and not too much then, -so that he is always as keen as mustard. Toller lets him loose -every night, and God help the trespasser whom he lays his fangs -upon. For goodness' sake don't you ever on any pretext set your -foot over the threshold at night, for it's as much as your life -is worth.' - -"The warning was no idle one, for two nights later I happened to -look out of my bedroom window about two o'clock in the morning. -It was a beautiful moonlight night, and the lawn in front of the -house was silvered over and almost as bright as day. I was -standing, rapt in the peaceful beauty of the scene, when I was -aware that something was moving under the shadow of the copper -beeches. As it emerged into the moonshine I saw what it was. It -was a giant dog, as large as a calf, tawny tinted, with hanging -jowl, black muzzle, and huge projecting bones. It walked slowly -across the lawn and vanished into the shadow upon the other side. -That dreadful sentinel sent a chill to my heart which I do not -think that any burglar could have done. - -"And now I have a very strange experience to tell you. I had, as -you know, cut off my hair in London, and I had placed it in a -great coil at the bottom of my trunk. One evening, after the -child was in bed, I began to amuse myself by examining the -furniture of my room and by rearranging my own little things. -There was an old chest of drawers in the room, the two upper ones -empty and open, the lower one locked. I had filled the first two -with my linen, and as I had still much to pack away I was -naturally annoyed at not having the use of the third drawer. It -struck me that it might have been fastened by a mere oversight, -so I took out my bunch of keys and tried to open it. The very -first key fitted to perfection, and I drew the drawer open. There -was only one thing in it, but I am sure that you would never -guess what it was. It was my coil of hair. - -"I took it up and examined it. It was of the same peculiar tint, -and the same thickness. But then the impossibility of the thing -obtruded itself upon me. How could my hair have been locked in -the drawer? With trembling hands I undid my trunk, turned out the -contents, and drew from the bottom my own hair. I laid the two -tresses together, and I assure you that they were identical. Was -it not extraordinary? Puzzle as I would, I could make nothing at -all of what it meant. I returned the strange hair to the drawer, -and I said nothing of the matter to the Rucastles as I felt that -I had put myself in the wrong by opening a drawer which they had -locked. - -"I am naturally observant, as you may have remarked, Mr. Holmes, -and I soon had a pretty good plan of the whole house in my head. -There was one wing, however, which appeared not to be inhabited -at all. A door which faced that which led into the quarters of -the Tollers opened into this suite, but it was invariably locked. -One day, however, as I ascended the stair, I met Mr. Rucastle -coming out through this door, his keys in his hand, and a look on -his face which made him a very different person to the round, -jovial man to whom I was accustomed. His cheeks were red, his -brow was all crinkled with anger, and the veins stood out at his -temples with passion. He locked the door and hurried past me -without a word or a look. - -"This aroused my curiosity, so when I went out for a walk in the -grounds with my charge, I strolled round to the side from which I -could see the windows of this part of the house. There were four -of them in a row, three of which were simply dirty, while the -fourth was shuttered up. They were evidently all deserted. As I -strolled up and down, glancing at them occasionally, Mr. Rucastle -came out to me, looking as merry and jovial as ever. - -"'Ah!' said he, 'you must not think me rude if I passed you -without a word, my dear young lady. I was preoccupied with -business matters.' - -"I assured him that I was not offended. 'By the way,' said I, -'you seem to have quite a suite of spare rooms up there, and one -of them has the shutters up.' - -"He looked surprised and, as it seemed to me, a little startled -at my remark. - -"'Photography is one of my hobbies,' said he. 'I have made my -dark room up there. But, dear me! what an observant young lady we -have come upon. Who would have believed it? Who would have ever -believed it?' He spoke in a jesting tone, but there was no jest -in his eyes as he looked at me. I read suspicion there and -annoyance, but no jest. - -"Well, Mr. Holmes, from the moment that I understood that there -was something about that suite of rooms which I was not to know, -I was all on fire to go over them. It was not mere curiosity, -though I have my share of that. It was more a feeling of duty--a -feeling that some good might come from my penetrating to this -place. They talk of woman's instinct; perhaps it was woman's -instinct which gave me that feeling. At any rate, it was there, -and I was keenly on the lookout for any chance to pass the -forbidden door. - -"It was only yesterday that the chance came. I may tell you that, -besides Mr. Rucastle, both Toller and his wife find something to -do in these deserted rooms, and I once saw him carrying a large -black linen bag with him through the door. Recently he has been -drinking hard, and yesterday evening he was very drunk; and when -I came upstairs there was the key in the door. I have no doubt at -all that he had left it there. Mr. and Mrs. Rucastle were both -downstairs, and the child was with them, so that I had an -admirable opportunity. I turned the key gently in the lock, -opened the door, and slipped through. - -"There was a little passage in front of me, unpapered and -uncarpeted, which turned at a right angle at the farther end. -Round this corner were three doors in a line, the first and third -of which were open. They each led into an empty room, dusty and -cheerless, with two windows in the one and one in the other, so -thick with dirt that the evening light glimmered dimly through -them. The centre door was closed, and across the outside of it -had been fastened one of the broad bars of an iron bed, padlocked -at one end to a ring in the wall, and fastened at the other with -stout cord. The door itself was locked as well, and the key was -not there. This barricaded door corresponded clearly with the -shuttered window outside, and yet I could see by the glimmer from -beneath it that the room was not in darkness. Evidently there was -a skylight which let in light from above. As I stood in the -passage gazing at the sinister door and wondering what secret it -might veil, I suddenly heard the sound of steps within the room -and saw a shadow pass backward and forward against the little -slit of dim light which shone out from under the door. A mad, -unreasoning terror rose up in me at the sight, Mr. Holmes. My -overstrung nerves failed me suddenly, and I turned and ran--ran -as though some dreadful hand were behind me clutching at the -skirt of my dress. I rushed down the passage, through the door, -and straight into the arms of Mr. Rucastle, who was waiting -outside. - -"'So,' said he, smiling, 'it was you, then. I thought that it -must be when I saw the door open.' - -"'Oh, I am so frightened!' I panted. - -"'My dear young lady! my dear young lady!'--you cannot think how -caressing and soothing his manner was--'and what has frightened -you, my dear young lady?' - -"But his voice was just a little too coaxing. He overdid it. I -was keenly on my guard against him. - -"'I was foolish enough to go into the empty wing,' I answered. -'But it is so lonely and eerie in this dim light that I was -frightened and ran out again. Oh, it is so dreadfully still in -there!' - -"'Only that?' said he, looking at me keenly. - -"'Why, what did you think?' I asked. - -"'Why do you think that I lock this door?' - -"'I am sure that I do not know.' - -"'It is to keep people out who have no business there. Do you -see?' He was still smiling in the most amiable manner. - -"'I am sure if I had known--' - -"'Well, then, you know now. And if you ever put your foot over -that threshold again'--here in an instant the smile hardened into -a grin of rage, and he glared down at me with the face of a -demon--'I'll throw you to the mastiff.' - -"I was so terrified that I do not know what I did. I suppose that -I must have rushed past him into my room. I remember nothing -until I found myself lying on my bed trembling all over. Then I -thought of you, Mr. Holmes. I could not live there longer without -some advice. I was frightened of the house, of the man, of the -woman, of the servants, even of the child. They were all horrible -to me. If I could only bring you down all would be well. Of -course I might have fled from the house, but my curiosity was -almost as strong as my fears. My mind was soon made up. I would -send you a wire. I put on my hat and cloak, went down to the -office, which is about half a mile from the house, and then -returned, feeling very much easier. A horrible doubt came into my -mind as I approached the door lest the dog might be loose, but I -remembered that Toller had drunk himself into a state of -insensibility that evening, and I knew that he was the only one -in the household who had any influence with the savage creature, -or who would venture to set him free. I slipped in in safety and -lay awake half the night in my joy at the thought of seeing you. -I had no difficulty in getting leave to come into Winchester this -morning, but I must be back before three o'clock, for Mr. and -Mrs. Rucastle are going on a visit, and will be away all the -evening, so that I must look after the child. Now I have told you -all my adventures, Mr. Holmes, and I should be very glad if you -could tell me what it all means, and, above all, what I should -do." - -Holmes and I had listened spellbound to this extraordinary story. -My friend rose now and paced up and down the room, his hands in -his pockets, and an expression of the most profound gravity upon -his face. - -"Is Toller still drunk?" he asked. - -"Yes. I heard his wife tell Mrs. Rucastle that she could do -nothing with him." - -"That is well. And the Rucastles go out to-night?" - -"Yes." - -"Is there a cellar with a good strong lock?" - -"Yes, the wine-cellar." - -"You seem to me to have acted all through this matter like a very -brave and sensible girl, Miss Hunter. Do you think that you could -perform one more feat? I should not ask it of you if I did not -think you a quite exceptional woman." - -"I will try. What is it?" - -"We shall be at the Copper Beeches by seven o'clock, my friend -and I. The Rucastles will be gone by that time, and Toller will, -we hope, be incapable. There only remains Mrs. Toller, who might -give the alarm. If you could send her into the cellar on some -errand, and then turn the key upon her, you would facilitate -matters immensely." - -"I will do it." - -"Excellent! We shall then look thoroughly into the affair. Of -course there is only one feasible explanation. You have been -brought there to personate someone, and the real person is -imprisoned in this chamber. That is obvious. As to who this -prisoner is, I have no doubt that it is the daughter, Miss Alice -Rucastle, if I remember right, who was said to have gone to -America. You were chosen, doubtless, as resembling her in height, -figure, and the colour of your hair. Hers had been cut off, very -possibly in some illness through which she has passed, and so, of -course, yours had to be sacrificed also. By a curious chance you -came upon her tresses. The man in the road was undoubtedly some -friend of hers--possibly her fianc--and no doubt, as you wore -the girl's dress and were so like her, he was convinced from your -laughter, whenever he saw you, and afterwards from your gesture, -that Miss Rucastle was perfectly happy, and that she no longer -desired his attentions. The dog is let loose at night to prevent -him from endeavouring to communicate with her. So much is fairly -clear. The most serious point in the case is the disposition of -the child." - -"What on earth has that to do with it?" I ejaculated. - -"My dear Watson, you as a medical man are continually gaining -light as to the tendencies of a child by the study of the -parents. Don't you see that the converse is equally valid. I have -frequently gained my first real insight into the character of -parents by studying their children. This child's disposition is -abnormally cruel, merely for cruelty's sake, and whether he -derives this from his smiling father, as I should suspect, or -from his mother, it bodes evil for the poor girl who is in their -power." - -"I am sure that you are right, Mr. Holmes," cried our client. "A -thousand things come back to me which make me certain that you -have hit it. Oh, let us lose not an instant in bringing help to -this poor creature." - -"We must be circumspect, for we are dealing with a very cunning -man. We can do nothing until seven o'clock. At that hour we shall -be with you, and it will not be long before we solve the -mystery." - -We were as good as our word, for it was just seven when we -reached the Copper Beeches, having put up our trap at a wayside -public-house. The group of trees, with their dark leaves shining -like burnished metal in the light of the setting sun, were -sufficient to mark the house even had Miss Hunter not been -standing smiling on the door-step. - -"Have you managed it?" asked Holmes. - -A loud thudding noise came from somewhere downstairs. "That is -Mrs. Toller in the cellar," said she. "Her husband lies snoring -on the kitchen rug. Here are his keys, which are the duplicates -of Mr. Rucastle's." - -"You have done well indeed!" cried Holmes with enthusiasm. "Now -lead the way, and we shall soon see the end of this black -business." - -We passed up the stair, unlocked the door, followed on down a -passage, and found ourselves in front of the barricade which Miss -Hunter had described. Holmes cut the cord and removed the -transverse bar. Then he tried the various keys in the lock, but -without success. No sound came from within, and at the silence -Holmes' face clouded over. - -"I trust that we are not too late," said he. "I think, Miss -Hunter, that we had better go in without you. Now, Watson, put -your shoulder to it, and we shall see whether we cannot make our -way in." - -It was an old rickety door and gave at once before our united -strength. Together we rushed into the room. It was empty. There -was no furniture save a little pallet bed, a small table, and a -basketful of linen. The skylight above was open, and the prisoner -gone. - -"There has been some villainy here," said Holmes; "this beauty -has guessed Miss Hunter's intentions and has carried his victim -off." - -"But how?" - -"Through the skylight. We shall soon see how he managed it." He -swung himself up onto the roof. "Ah, yes," he cried, "here's the -end of a long light ladder against the eaves. That is how he did -it." - -"But it is impossible," said Miss Hunter; "the ladder was not -there when the Rucastles went away." - -"He has come back and done it. I tell you that he is a clever and -dangerous man. I should not be very much surprised if this were -he whose step I hear now upon the stair. I think, Watson, that it -would be as well for you to have your pistol ready." - -The words were hardly out of his mouth before a man appeared at -the door of the room, a very fat and burly man, with a heavy -stick in his hand. Miss Hunter screamed and shrunk against the -wall at the sight of him, but Sherlock Holmes sprang forward and -confronted him. - -"You villain!" said he, "where's your daughter?" - -The fat man cast his eyes round, and then up at the open -skylight. - -"It is for me to ask you that," he shrieked, "you thieves! Spies -and thieves! I have caught you, have I? You are in my power. I'll -serve you!" He turned and clattered down the stairs as hard as he -could go. - -"He's gone for the dog!" cried Miss Hunter. - -"I have my revolver," said I. - -"Better close the front door," cried Holmes, and we all rushed -down the stairs together. We had hardly reached the hall when we -heard the baying of a hound, and then a scream of agony, with a -horrible worrying sound which it was dreadful to listen to. An -elderly man with a red face and shaking limbs came staggering out -at a side door. - -"My God!" he cried. "Someone has loosed the dog. It's not been -fed for two days. Quick, quick, or it'll be too late!" - -Holmes and I rushed out and round the angle of the house, with -Toller hurrying behind us. There was the huge famished brute, its -black muzzle buried in Rucastle's throat, while he writhed and -screamed upon the ground. Running up, I blew its brains out, and -it fell over with its keen white teeth still meeting in the great -creases of his neck. With much labour we separated them and -carried him, living but horribly mangled, into the house. We laid -him upon the drawing-room sofa, and having dispatched the sobered -Toller to bear the news to his wife, I did what I could to -relieve his pain. We were all assembled round him when the door -opened, and a tall, gaunt woman entered the room. - -"Mrs. Toller!" cried Miss Hunter. - -"Yes, miss. Mr. Rucastle let me out when he came back before he -went up to you. Ah, miss, it is a pity you didn't let me know -what you were planning, for I would have told you that your pains -were wasted." - -"Ha!" said Holmes, looking keenly at her. "It is clear that Mrs. -Toller knows more about this matter than anyone else." - -"Yes, sir, I do, and I am ready enough to tell what I know." - -"Then, pray, sit down, and let us hear it for there are several -points on which I must confess that I am still in the dark." - -"I will soon make it clear to you," said she; "and I'd have done -so before now if I could ha' got out from the cellar. If there's -police-court business over this, you'll remember that I was the -one that stood your friend, and that I was Miss Alice's friend -too. - -"She was never happy at home, Miss Alice wasn't, from the time -that her father married again. She was slighted like and had no -say in anything, but it never really became bad for her until -after she met Mr. Fowler at a friend's house. As well as I could -learn, Miss Alice had rights of her own by will, but she was so -quiet and patient, she was, that she never said a word about them -but just left everything in Mr. Rucastle's hands. He knew he was -safe with her; but when there was a chance of a husband coming -forward, who would ask for all that the law would give him, then -her father thought it time to put a stop on it. He wanted her to -sign a paper, so that whether she married or not, he could use -her money. When she wouldn't do it, he kept on worrying her until -she got brain-fever, and for six weeks was at death's door. Then -she got better at last, all worn to a shadow, and with her -beautiful hair cut off; but that didn't make no change in her -young man, and he stuck to her as true as man could be." - -"Ah," said Holmes, "I think that what you have been good enough -to tell us makes the matter fairly clear, and that I can deduce -all that remains. Mr. Rucastle then, I presume, took to this -system of imprisonment?" - -"Yes, sir." - -"And brought Miss Hunter down from London in order to get rid of -the disagreeable persistence of Mr. Fowler." - -"That was it, sir." - -"But Mr. Fowler being a persevering man, as a good seaman should -be, blockaded the house, and having met you succeeded by certain -arguments, metallic or otherwise, in convincing you that your -interests were the same as his." - -"Mr. Fowler was a very kind-spoken, free-handed gentleman," said -Mrs. Toller serenely. - -"And in this way he managed that your good man should have no -want of drink, and that a ladder should be ready at the moment -when your master had gone out." - -"You have it, sir, just as it happened." - -"I am sure we owe you an apology, Mrs. Toller," said Holmes, "for -you have certainly cleared up everything which puzzled us. And -here comes the country surgeon and Mrs. Rucastle, so I think, -Watson, that we had best escort Miss Hunter back to Winchester, -as it seems to me that our locus standi now is rather a -questionable one." - -And thus was solved the mystery of the sinister house with the -copper beeches in front of the door. Mr. Rucastle survived, but -was always a broken man, kept alive solely through the care of -his devoted wife. They still live with their old servants, who -probably know so much of Rucastle's past life that he finds it -difficult to part from them. Mr. Fowler and Miss Rucastle were -married, by special license, in Southampton the day after their -flight, and he is now the holder of a government appointment in -the island of Mauritius. As to Miss Violet Hunter, my friend -Holmes, rather to my disappointment, manifested no further -interest in her when once she had ceased to be the centre of one -of his problems, and she is now the head of a private school at -Walsall, where I believe that she has met with considerable success. - - - - - - - - - -End of the Project Gutenberg EBook of The Adventures of Sherlock Holmes, by -Arthur Conan Doyle - -*** END OF THIS PROJECT GUTENBERG EBOOK THE ADVENTURES OF SHERLOCK HOLMES *** - -***** This file should be named 1661-8.txt or 1661-8.zip ***** -This and all associated files of various formats will be found in: - http://www.gutenberg.org/1/6/6/1661/ - -Produced by an anonymous Project Gutenberg volunteer and Jose Menendez - -Updated editions will replace the previous one--the old editions -will be renamed. - -Creating the works from public domain print editions means that no -one owns a United States copyright in these works, so the Foundation -(and you!) can copy and distribute it in the United States without -permission and without paying copyright royalties. Special rules, -set forth in the General Terms of Use part of this license, apply to -copying and distributing Project Gutenberg-tm electronic works to -protect the PROJECT GUTENBERG-tm concept and trademark. Project -Gutenberg is a registered trademark, and may not be used if you -charge for the eBooks, unless you receive specific permission. If you -do not charge anything for copies of this eBook, complying with the -rules is very easy. You may use this eBook for nearly any purpose -such as creation of derivative works, reports, performances and -research. They may be modified and printed and given away--you may do -practically ANYTHING with public domain eBooks. Redistribution is -subject to the trademark license, especially commercial -redistribution. - - - -*** START: FULL LICENSE *** - -THE FULL PROJECT GUTENBERG LICENSE -PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK - -To protect the Project Gutenberg-tm mission of promoting the free -distribution of electronic works, by using or distributing this work -(or any other work associated in any way with the phrase "Project -Gutenberg"), you agree to comply with all the terms of the Full Project -Gutenberg-tm License (available with this file or online at -http://gutenberg.net/license). - - -Section 1. General Terms of Use and Redistributing Project Gutenberg-tm -electronic works - -1.A. By reading or using any part of this Project Gutenberg-tm -electronic work, you indicate that you have read, understand, agree to -and accept all the terms of this license and intellectual property -(trademark/copyright) agreement. If you do not agree to abide by all -the terms of this agreement, you must cease using and return or destroy -all copies of Project Gutenberg-tm electronic works in your possession. -If you paid a fee for obtaining a copy of or access to a Project -Gutenberg-tm electronic work and you do not agree to be bound by the -terms of this agreement, you may obtain a refund from the person or -entity to whom you paid the fee as set forth in paragraph 1.E.8. - -1.B. "Project Gutenberg" is a registered trademark. It may only be -used on or associated in any way with an electronic work by people who -agree to be bound by the terms of this agreement. There are a few -things that you can do with most Project Gutenberg-tm electronic works -even without complying with the full terms of this agreement. See -paragraph 1.C below. There are a lot of things you can do with Project -Gutenberg-tm electronic works if you follow the terms of this agreement -and help preserve free future access to Project Gutenberg-tm electronic -works. See paragraph 1.E below. - -1.C. The Project Gutenberg Literary Archive Foundation ("the Foundation" -or PGLAF), owns a compilation copyright in the collection of Project -Gutenberg-tm electronic works. Nearly all the individual works in the -collection are in the public domain in the United States. If an -individual work is in the public domain in the United States and you are -located in the United States, we do not claim a right to prevent you from -copying, distributing, performing, displaying or creating derivative -works based on the work as long as all references to Project Gutenberg -are removed. Of course, we hope that you will support the Project -Gutenberg-tm mission of promoting free access to electronic works by -freely sharing Project Gutenberg-tm works in compliance with the terms of -this agreement for keeping the Project Gutenberg-tm name associated with -the work. You can easily comply with the terms of this agreement by -keeping this work in the same format with its attached full Project -Gutenberg-tm License when you share it without charge with others. - -1.D. The copyright laws of the place where you are located also govern -what you can do with this work. Copyright laws in most countries are in -a constant state of change. If you are outside the United States, check -the laws of your country in addition to the terms of this agreement -before downloading, copying, displaying, performing, distributing or -creating derivative works based on this work or any other Project -Gutenberg-tm work. The Foundation makes no representations concerning -the copyright status of any work in any country outside the United -States. - -1.E. Unless you have removed all references to Project Gutenberg: - -1.E.1. The following sentence, with active links to, or other immediate -access to, the full Project Gutenberg-tm License must appear prominently -whenever any copy of a Project Gutenberg-tm work (any work on which the -phrase "Project Gutenberg" appears, or with which the phrase "Project -Gutenberg" is associated) is accessed, displayed, performed, viewed, -copied or distributed: - -This eBook is for the use of anyone anywhere at no cost and with -almost no restrictions whatsoever. You may copy it, give it away or -re-use it under the terms of the Project Gutenberg License included -with this eBook or online at www.gutenberg.net - -1.E.2. If an individual Project Gutenberg-tm electronic work is derived -from the public domain (does not contain a notice indicating that it is -posted with permission of the copyright holder), the work can be copied -and distributed to anyone in the United States without paying any fees -or charges. If you are redistributing or providing access to a work -with the phrase "Project Gutenberg" associated with or appearing on the -work, you must comply either with the requirements of paragraphs 1.E.1 -through 1.E.7 or obtain permission for the use of the work and the -Project Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or -1.E.9. - -1.E.3. If an individual Project Gutenberg-tm electronic work is posted -with the permission of the copyright holder, your use and distribution -must comply with both paragraphs 1.E.1 through 1.E.7 and any additional -terms imposed by the copyright holder. Additional terms will be linked -to the Project Gutenberg-tm License for all works posted with the -permission of the copyright holder found at the beginning of this work. - -1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm -License terms from this work, or any files containing a part of this -work or any other work associated with Project Gutenberg-tm. - -1.E.5. Do not copy, display, perform, distribute or redistribute this -electronic work, or any part of this electronic work, without -prominently displaying the sentence set forth in paragraph 1.E.1 with -active links or immediate access to the full terms of the Project -Gutenberg-tm License. - -1.E.6. You may convert to and distribute this work in any binary, -compressed, marked up, nonproprietary or proprietary form, including any -word processing or hypertext form. However, if you provide access to or -distribute copies of a Project Gutenberg-tm work in a format other than -"Plain Vanilla ASCII" or other format used in the official version -posted on the official Project Gutenberg-tm web site (www.gutenberg.net), -you must, at no additional cost, fee or expense to the user, provide a -copy, a means of exporting a copy, or a means of obtaining a copy upon -request, of the work in its original "Plain Vanilla ASCII" or other -form. Any alternate format must include the full Project Gutenberg-tm -License as specified in paragraph 1.E.1. - -1.E.7. Do not charge a fee for access to, viewing, displaying, -performing, copying or distributing any Project Gutenberg-tm works -unless you comply with paragraph 1.E.8 or 1.E.9. - -1.E.8. You may charge a reasonable fee for copies of or providing -access to or distributing Project Gutenberg-tm electronic works provided -that - -- You pay a royalty fee of 20% of the gross profits you derive from - the use of Project Gutenberg-tm works calculated using the method - you already use to calculate your applicable taxes. The fee is - owed to the owner of the Project Gutenberg-tm trademark, but he - has agreed to donate royalties under this paragraph to the - Project Gutenberg Literary Archive Foundation. Royalty payments - must be paid within 60 days following each date on which you - prepare (or are legally required to prepare) your periodic tax - returns. Royalty payments should be clearly marked as such and - sent to the Project Gutenberg Literary Archive Foundation at the - address specified in Section 4, "Information about donations to - the Project Gutenberg Literary Archive Foundation." - -- You provide a full refund of any money paid by a user who notifies - you in writing (or by e-mail) within 30 days of receipt that s/he - does not agree to the terms of the full Project Gutenberg-tm - License. You must require such a user to return or - destroy all copies of the works possessed in a physical medium - and discontinue all use of and all access to other copies of - Project Gutenberg-tm works. - -- You provide, in accordance with paragraph 1.F.3, a full refund of any - money paid for a work or a replacement copy, if a defect in the - electronic work is discovered and reported to you within 90 days - of receipt of the work. - -- You comply with all other terms of this agreement for free - distribution of Project Gutenberg-tm works. - -1.E.9. If you wish to charge a fee or distribute a Project Gutenberg-tm -electronic work or group of works on different terms than are set -forth in this agreement, you must obtain permission in writing from -both the Project Gutenberg Literary Archive Foundation and Michael -Hart, the owner of the Project Gutenberg-tm trademark. Contact the -Foundation as set forth in Section 3 below. - -1.F. - -1.F.1. Project Gutenberg volunteers and employees expend considerable -effort to identify, do copyright research on, transcribe and proofread -public domain works in creating the Project Gutenberg-tm -collection. Despite these efforts, Project Gutenberg-tm electronic -works, and the medium on which they may be stored, may contain -"Defects," such as, but not limited to, incomplete, inaccurate or -corrupt data, transcription errors, a copyright or other intellectual -property infringement, a defective or damaged disk or other medium, a -computer virus, or computer codes that damage or cannot be read by -your equipment. - -1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the "Right -of Replacement or Refund" described in paragraph 1.F.3, the Project -Gutenberg Literary Archive Foundation, the owner of the Project -Gutenberg-tm trademark, and any other party distributing a Project -Gutenberg-tm electronic work under this agreement, disclaim all -liability to you for damages, costs and expenses, including legal -fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT -LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE -PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE -TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE -LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR -INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH -DAMAGE. - -1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a -defect in this electronic work within 90 days of receiving it, you can -receive a refund of the money (if any) you paid for it by sending a -written explanation to the person you received the work from. If you -received the work on a physical medium, you must return the medium with -your written explanation. The person or entity that provided you with -the defective work may elect to provide a replacement copy in lieu of a -refund. If you received the work electronically, the person or entity -providing it to you may choose to give you a second opportunity to -receive the work electronically in lieu of a refund. If the second copy -is also defective, you may demand a refund in writing without further -opportunities to fix the problem. - -1.F.4. Except for the limited right of replacement or refund set forth -in paragraph 1.F.3, this work is provided to you 'AS-IS' WITH NO OTHER -WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO -WARRANTIES OF MERCHANTIBILITY OR FITNESS FOR ANY PURPOSE. - -1.F.5. Some states do not allow disclaimers of certain implied -warranties or the exclusion or limitation of certain types of damages. -If any disclaimer or limitation set forth in this agreement violates the -law of the state applicable to this agreement, the agreement shall be -interpreted to make the maximum disclaimer or limitation permitted by -the applicable state law. The invalidity or unenforceability of any -provision of this agreement shall not void the remaining provisions. - -1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the -trademark owner, any agent or employee of the Foundation, anyone -providing copies of Project Gutenberg-tm electronic works in accordance -with this agreement, and any volunteers associated with the production, -promotion and distribution of Project Gutenberg-tm electronic works, -harmless from all liability, costs and expenses, including legal fees, -that arise directly or indirectly from any of the following which you do -or cause to occur: (a) distribution of this or any Project Gutenberg-tm -work, (b) alteration, modification, or additions or deletions to any -Project Gutenberg-tm work, and (c) any Defect you cause. - - -Section 2. Information about the Mission of Project Gutenberg-tm - -Project Gutenberg-tm is synonymous with the free distribution of -electronic works in formats readable by the widest variety of computers -including obsolete, old, middle-aged and new computers. It exists -because of the efforts of hundreds of volunteers and donations from -people in all walks of life. - -Volunteers and financial support to provide volunteers with the -assistance they need are critical to reaching Project Gutenberg-tm's -goals and ensuring that the Project Gutenberg-tm collection will -remain freely available for generations to come. In 2001, the Project -Gutenberg Literary Archive Foundation was created to provide a secure -and permanent future for Project Gutenberg-tm and future generations. -To learn more about the Project Gutenberg Literary Archive Foundation -and how your efforts and donations can help, see Sections 3 and 4 -and the Foundation web page at http://www.pglaf.org. - - -Section 3. Information about the Project Gutenberg Literary Archive -Foundation - -The Project Gutenberg Literary Archive Foundation is a non profit -501(c)(3) educational corporation organized under the laws of the -state of Mississippi and granted tax exempt status by the Internal -Revenue Service. The Foundation's EIN or federal tax identification -number is 64-6221541. Its 501(c)(3) letter is posted at -http://pglaf.org/fundraising. Contributions to the Project Gutenberg -Literary Archive Foundation are tax deductible to the full extent -permitted by U.S. federal laws and your state's laws. - -The Foundation's principal office is located at 4557 Melan Dr. S. -Fairbanks, AK, 99712., but its volunteers and employees are scattered -throughout numerous locations. Its business office is located at -809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887, email -business@pglaf.org. Email contact links and up to date contact -information can be found at the Foundation's web site and official -page at http://pglaf.org - -For additional contact information: - Dr. Gregory B. Newby - Chief Executive and Director - gbnewby@pglaf.org - - -Section 4. Information about Donations to the Project Gutenberg -Literary Archive Foundation - -Project Gutenberg-tm depends upon and cannot survive without wide -spread public support and donations to carry out its mission of -increasing the number of public domain and licensed works that can be -freely distributed in machine readable form accessible by the widest -array of equipment including outdated equipment. Many small donations -($1 to $5,000) are particularly important to maintaining tax exempt -status with the IRS. - -The Foundation is committed to complying with the laws regulating -charities and charitable donations in all 50 states of the United -States. Compliance requirements are not uniform and it takes a -considerable effort, much paperwork and many fees to meet and keep up -with these requirements. We do not solicit donations in locations -where we have not received written confirmation of compliance. To -SEND DONATIONS or determine the status of compliance for any -particular state visit http://pglaf.org - -While we cannot and do not solicit contributions from states where we -have not met the solicitation requirements, we know of no prohibition -against accepting unsolicited donations from donors in such states who -approach us with offers to donate. - -International donations are gratefully accepted, but we cannot make -any statements concerning tax treatment of donations received from -outside the United States. U.S. laws alone swamp our small staff. - -Please check the Project Gutenberg Web pages for current donation -methods and addresses. Donations are accepted in a number of other -ways including including checks, online payments and credit card -donations. To donate, please visit: http://pglaf.org/donate - - -Section 5. General Information About Project Gutenberg-tm electronic -works. - -Professor Michael S. Hart is the originator of the Project Gutenberg-tm -concept of a library of electronic works that could be freely shared -with anyone. For thirty years, he produced and distributed Project -Gutenberg-tm eBooks with only a loose network of volunteer support. - - -Project Gutenberg-tm eBooks are often created from several printed -editions, all of which are confirmed as Public Domain in the U.S. -unless a copyright notice is included. Thus, we do not necessarily -keep eBooks in compliance with any particular paper edition. - - -Most people start at our Web site which has the main PG search facility: - - http://www.gutenberg.net - -This Web site includes information about Project Gutenberg-tm, -including how to make donations to the Project Gutenberg Literary -Archive Foundation, how to help produce our new eBooks, and how to -subscribe to our email newsletter to hear about new eBooks. diff --git a/Students/ebuer/session_04/katalab/sherlock_small.txt b/Students/ebuer/session_04/katalab/sherlock_small.txt deleted file mode 100644 index dad12e21..00000000 --- a/Students/ebuer/session_04/katalab/sherlock_small.txt +++ /dev/null @@ -1,16 +0,0 @@ -One night--it was on the twentieth of March, 1888--I was -returning from a journey to a patient (for I had now returned to -civil practice), when my way led me through Baker Street. As I -passed the well-remembered door, which must always be associated -in my mind with my wooing, and with the dark incidents of the -Study in Scarlet, I was seized with a keen desire to see Holmes -again, and to know how he was employing his extraordinary powers. -His rooms were brilliantly lit, and, even as I looked up, I saw -his tall, spare figure pass twice in a dark silhouette against -the blind. He was pacing the room swiftly, eagerly, with his head -sunk upon his chest and his hands clasped behind him. To me, who -knew his every mood and habit, his attitude and manner told their -own story. He was at work again. He had risen out of his -drug-created dreams and was hot upon the scent of some new -problem. I rang the bell and was shown up to the chamber which -had formerly been in part my own. diff --git a/Students/ebuer/session_04/mailroom/junk.py b/Students/ebuer/session_04/mailroom/junk.py deleted file mode 100644 index 9c1b0190..00000000 --- a/Students/ebuer/session_04/mailroom/junk.py +++ /dev/null @@ -1,37 +0,0 @@ -""" -junk.py -""" - -# length of person name for printing -def person_len(person): - l = 0 - for p in person: - l += len(p) - return l - - -# make a name list and a money list -def list_maker(client_list): - donors = [] - donations = [] - for person in client_list: - donors.append(person[0]) - donations.append(person[1]) - return donors, donations - - -# make standard name format for handling -def name_split(nme): - fname, lname = nme.split(' ') - return (lname, fname) - - -# take a name and check the list, return true where present, else false -def client_check(nme, donors): - fname, lname = nme.split(' ') - if (lname, fname) in donors: - print '{f} {l} is a previous donor.'.format(f=fname, l=lname) - return True - else: - print '{f} {l} is a not a previous donor.'.format(f=fname, l=lname) - return False \ No newline at end of file diff --git a/Students/ebuer/session_04/mailroom/mailfuncs.py b/Students/ebuer/session_04/mailroom/mailfuncs.py deleted file mode 100644 index 15c81464..00000000 --- a/Students/ebuer/session_04/mailroom/mailfuncs.py +++ /dev/null @@ -1,47 +0,0 @@ -""" -@python: 2 -functions for mailroom to call -""" - - -def donation_func(): - """Return float value from prompt - - Syntax: function takes no arguments - """ - - val_donation = False - while not val_donation: - usr_donation = raw_input('Please enter a donation: ') - try: - usr_donation = float(usr_donation) - val_donation = True - except ValueError: - print "Sorry, that wasn't a valid donation.\n" - return usr_donation - - -def print_thanks(p_name, amount): - print "Dear {donor}, \n\n\ - Thank you for choosing to contribute the generous sum\n\ - of ${amount:,.2f} to the Midvale School for the Gifted.\n\ - We are confident you will be pleased with what your\n\ - ${amount:,.2f} will be used for since we are definitely\n\ - not laundering it in a complex scheme with Mr. Walter White.\n\n\ - All the best,\n\ - MSG\n\n\ - ".format(donor=p_name, amount=amount) - - -def print_intro(): - print 'Please choose an option:\n\ - 0: Send a thank you\n\ - 1: Create a report\n\ - 2: Exit the timesaver\n' - - -def input_sanitize(i): - try: - return int(i) - except (NameError, ValueError): - return 'Invalid' diff --git a/Students/ebuer/session_04/mailroom/mailroom.py b/Students/ebuer/session_04/mailroom/mailroom.py deleted file mode 100644 index 6b54db83..00000000 --- a/Students/ebuer/session_04/mailroom/mailroom.py +++ /dev/null @@ -1,101 +0,0 @@ -""" -Mailroom 4.1 -Create a better mailroom using dictionaries and exceptions - -Some help is needed at around line 82 where printing the report -takes place. This section of code seems inefficient and chunky. - -""" - -donors = ['Anne Askew', - 'Joan Bocher', - 'Jeremy Clarkson', - 'Matthew Hamont', - 'James May', - 'George van Paris'] - -donations = [[87.50, 100, 200], - [25, 43.27], - [10.03], - [1000, 250, 5], - [30, 75], - [25, 35, 45]] - -client_list = dict(zip(donors, donations)) - -# mailroom looping - -from mailfuncs import \ - donation_func, print_thanks, print_intro, input_sanitize - -from numpy import average - -bored = True -print 'Welcome to the Mailroom timesaver!' - -while bored: - print_intro() - report_opt = input_sanitize(raw_input('Please enter your choice: ')) - - # sending a thank you - if not report_opt: - usr_name = raw_input('Please enter a name, m for menu,\ - or "list" for a list of donors: ') - - if usr_name == 'm': # go back to menu - continue - - if usr_name == 'list': - temp = client_list.keys() - temp.sort() # sorting a list of keys, is there a better way? - - print '\n' - for p in temp: - print p - print '\n' - - del temp - continue - - else: - if usr_name in client_list: - new_val = donation_func() - temp = client_list.get(usr_name) - temp.append(new_val) - client_list.update({usr_name: temp}) - del temp # try to be tidy with vars - else: - new_val = donation_func() - client_list.setdefault(usr_name, [new_val]) - - print_thanks(usr_name, new_val) - - elif report_opt == 1: - # print a report of all donors and donations - - templist = [] - # tempdict = dict() - for person, l in client_list.iteritems(): - tempnum = len(l) - tempsum = sum(l) - tempavg = average(l) - - # tempdict.update({person: [tempnum, tempsum, tempavg]}) - - templist.append((person, tempnum, tempsum, tempavg)) - - templist = sorted(templist, key=lambda x: x[2], reverse=True) - - print '{: <20} {a: >10} {b: >10} {c: >10}'\ - .format('', a='Num', b='Sum', c='Avg') - for t in templist: - print '{name: ^20} {a: >10d} {b: >10.2f} {c: >10.2f}'\ - .format(name=t[0], a=t[1], b=t[2], c=t[3]) - print '\n' - - elif report_opt == 2: - bored = False - - else: - print \ - "\nSorry, that isn't an option, please choose from 0 to 2.\n" diff --git a/Students/ebuer/session_04/pathlab/dummy1.py b/Students/ebuer/session_04/pathlab/dummy1.py deleted file mode 100644 index 39100fb8..00000000 --- a/Students/ebuer/session_04/pathlab/dummy1.py +++ /dev/null @@ -1,3 +0,0 @@ -""" -Dummy, dummy, dummy -""" \ No newline at end of file diff --git a/Students/ebuer/session_04/pathlab/dummy2.py b/Students/ebuer/session_04/pathlab/dummy2.py deleted file mode 100644 index 6e1cdda5..00000000 --- a/Students/ebuer/session_04/pathlab/dummy2.py +++ /dev/null @@ -1,3 +0,0 @@ -""" -Dummy, dummy, dummy -""" diff --git a/Students/ebuer/session_04/pathlab/pathlab.py b/Students/ebuer/session_04/pathlab/pathlab.py deleted file mode 100644 index 51ae80ea..00000000 --- a/Students/ebuer/session_04/pathlab/pathlab.py +++ /dev/null @@ -1,10 +0,0 @@ -""" -pathlab - -write a program which prints the full path to all files in the current directory, one per line - -write a program which copies a file from a source, to a destination (without using shutil, or the OS copy command) - -""" -import os -newset = [[root, dirs, files] for root, dirs, files in os.walk(".", topdown=False)] \ No newline at end of file diff --git a/Students/ebuer/session_04/readme.md b/Students/ebuer/session_04/readme.md deleted file mode 100644 index 8eaae0ae..00000000 --- a/Students/ebuer/session_04/readme.md +++ /dev/null @@ -1,104 +0,0 @@ -Session 04 ReadMe -=============================== - -Review of homework indicates there is a good opportunity here to update mailroom and the associated data storage types. This should greatly simplify subsequent code. - -MORE LOOPING RECOMMENDATIONS ------------ - -remember: double looping can be accomplished by zipping two iterables together -- - for i, j in zip(list1, list2): - do some stuff.... - -zipping can do any number of lists, creating a set of tuples with n values where n is the number of lists entered into zip - -SLICING ------------ -list[i1:i2] = [] will replace list values with empty list, an effective erase tool - -DICTIONARIES ------------ -dict.keys() -- key items -dict.values() -- value items -dict.items() -- returns tuples of key, value - -support in, not in operators for keys BUT - the same operators can be combined with dict.view items to check for - membership. Very powerful. - -dict.get('key_value') returns key's associated value within dictionary, will take second argument and return a default value if the key is absent - -dict.pop('key_value') ==> returns value at key location and removes from dict - (note similarity to list.pop(i)) no location pops last item - -setdefault(key, [, default]) -- gets the value if present, sets default otherwise - -sets are dictionaries with only keys, no associated values, construct w/{} - -sets are mutable, there is an immutable variety called 'frozenset' syntax is same - - -EXCEPTIONS ------------ - -ALWAYS ALWAYS specify the errors that will be excepted -- blank exceptions -are a very bad habit - -Don't set up your code to catch exceptions unless there is something that can be done there to address the error - -Check out PyCon when bored - - - try: - (tries to run) - - except (error): - (runs on failure) - - finally: - (always runs) - - else: - (runs only when there is no exception) - - raise (error)('print some message') -- manually trip an error and send note - - -IO HANDLING - -f = open( 'secrets.txt', [mode flags]) - -FLAGS - - * 'r', 'w', 'a' - * 'rb', 'wb', 'ab' - * r+, w+, a+ - * r+b, w+b, a+b - * U - * U+ - -be careful! 'w' flag will clear the file that is opened in prep for writing - -file object is an iterator - -stringIO module writes to memory - - * os module - * os.getcwd() - * os.chdir(path) - * os.path.abspath()itp - * os.path.relpath() - * os.path.split() - * os.listdir() - * os.mkdir() - -os.walk() -- very handy - -shutil module - -pathlib -pip install pathlib -- not included with Anaconda - -!! really need to get to know unicode !! - - diff --git a/Students/ebuer/session_04/readme.txt b/Students/ebuer/session_04/readme.txt deleted file mode 100644 index 050cba9c..00000000 --- a/Students/ebuer/session_04/readme.txt +++ /dev/null @@ -1,94 +0,0 @@ -Starting Session 04 readme. - -Review of homework indicates there is a good opportunity here to update mailroom and the associated data storage types. This should greatly simplify subsequent code. - -MORE LOOPING RECOMMENDATIONS - -remember: double looping can be accomplished by zipping two iterables together -- - for i, j in zip(list1, list2): - do some stuff.... - -zipping can do any number of lists, creating a set of tuples with n values where n is the number of lists entered into zip - -SLICING - -list[i1:i2] = [] will replace list values with empty list, an effective erase tool - -DICTIONARIES - -dict.keys() -- key items -dict.values() -- value items -dict.items() -- returns tuples of key, value - -support in, not in operators for keys BUT - the same operators can be combined with dict.view items to check for - membership. Very powerful. - -dict.get('key_value') returns key's associated value within dictionary, will take second argument and return a default value if the key is absent - -dict.pop('key_value') ==> returns value at key location and removes from dict - (note similarity to list.pop(i)) no location pops last item - -setdefault(key, [, default]) -- gets the value if present, sets default otherwise - -sets are dictionaries with only keys, no associated values, construct w/{} - -sets are mutable, there is an immutable variety called 'frozenset' syntax is same - - -EXCEPTIONS - -ALWAYS ALWAYS specify the errors that will be excepted -- blank exceptions -are a very bad habit - -Don't set up your code to catch exceptions unless there is something that can be done there to address the error - -Check out PyCon when bored - -try: - (tries to run) -except : - (runs on failure) -finally: - (always runs) -else: - (runs only when there is no exception) - -raise ('print some message') -- manually trip an error and send note - - -IO HANDLING -f = open( 'secrets.txt', [mode flags]) - -FLAGS -'r', 'w', 'a' -'rb', 'wb', 'ab' -r+, w+, a+ -r+b, w+b, a+b -U -U+ - -be careful! 'w' flag will clear the file that is opened in prep for writing - -file object is an iterator -stringIO module writes to memory - -os module -os.getcwd() -os.chdir(path) -os.path.abspath()itp -os.path.relpath() -os.path.split() -os.listdir() -os.mkdir() - -os.walk() -- very handy - -shutil module - -pathlib -pip install pathlib -- not included with Anaconda - -!! really need to get to know unicode !! - - diff --git a/Students/ebuer/session_04/safe_input.py b/Students/ebuer/session_04/safe_input.py deleted file mode 100644 index 55b7612b..00000000 --- a/Students/ebuer/session_04/safe_input.py +++ /dev/null @@ -1,20 +0,0 @@ -""" -Create wrapper function for raw_input that returns none when ^C or ^D -are entered at the prompt. -""" - - -def safe_input(): - """ - Returns raw_input that is not EOF or KeyboardInterrupt. - - Syntax: safe_input() - """ - try: - ri_value = raw_input('Enter value: ') - except (EOFError, KeyboardInterrupt): - return None - else: - print 'Input Accepted.' - return ri_value - diff --git a/Students/ebuer/session_04/string_lab4.py b/Students/ebuer/session_04/string_lab4.py deleted file mode 100644 index 0cd17500..00000000 --- a/Students/ebuer/session_04/string_lab4.py +++ /dev/null @@ -1,16 +0,0 @@ -""" -String lab 4.1 -""" - -# write the first 3 number are %i, %i, %i for an arbitrary number of values - -rand_list = [1, 3, 5, 7, 13, 25.4] - -v1 = len(rand_list) -print 'The first {v1:d} numbers are:'.format(v1=v1), - -for i, n in enumerate(rand_list): - if i != v1 - 1: - print '{n_value:d}, '.format(n_value=int(n)), - else: - print '{n_value:d}.'.format(n_value=int(n)), diff --git a/Students/ebuer/session_05/arglab.py b/Students/ebuer/session_05/arglab.py deleted file mode 100644 index 5014420c..00000000 --- a/Students/ebuer/session_05/arglab.py +++ /dev/null @@ -1,25 +0,0 @@ - - -# here is our printer function -def colors(fore_color='blue', back_color='black', - link_color='red', visited_color='green'): - print "Field colors: %s, %s\nLink colors: %s, %s\n"\ - % (fore_color, back_color, link_color, visited_color) - -# try args, a tuple -targ = ('magenta', 'cyan') - -# try kwargs, a dictionary -darg = {'visited_color': 'neon', 'fore_color': 'heart', - 'link_color': 'batman', 'back_color': 'bone'} - -colors(**darg) - -# more argument passing with our targ and darg -print 'I hate {visited_color}, but I love {fore_color}'.format(**darg) -print 'I hate {1}, but I love {0}\n'.format(*targ) - -marg = {'my date': 'your mom', 'my girlfriend': 'your sister', - 'my best friend': 'your dad'} - -print 'This is really tough but {my date} said that {my girlfriend} is sleeping with {my best friend}'.format(**marg) diff --git a/Students/ebuer/session_05/complab.py b/Students/ebuer/session_05/complab.py deleted file mode 100644 index e3853d48..00000000 --- a/Students/ebuer/session_05/complab.py +++ /dev/null @@ -1,60 +0,0 @@ -""" -For honesty purposes each answer should be recorded before testing - the comprehension - - feast: return each delicacy capitalized - result: correct prediction - - comprehension[0] = 'Lambs' - comprehension[1] = 'Orangutan' - - spam feast: spam and sloths will be dropped len(x) <= 6 - result: correct prediction - - len(feast) will be 5 -- unchanged - len(comprehension) will be 3 -- shortened - - lumberjack, inquisitioninquisition, spamspamspamspam - len(comprehension[2]) = 16 - result: correct prediction - - should print out pairs of eggs and hams - result: correct prediction - - len(comprehension) is 6 - comprehension[1] is poached egg and ham spam - - comprehension of the string is the same as the string - WRONG! Brackets made the comprehension a set! - - Rewrite the key for the dictionary with all keys in CAPS -""" - -# expanded dict lab with comprehensions -food_prefs = {"name": u"Chris", - u"city": u"Seattle", - u"cake": u"chocolate", - u"fruit": u"mango", - u"salad": u"greek", - u"pasta": u"lasagna"} - -print "{name} is from {city}. He likes {cake} cake, {fruit} fruit, {salad} salad, and {pasta}.\n".format(**food_prefs) - -# write numbers 0 to 15 and the hex equivalent in 1 line -num_dict = {k: v for k, v in zip(range(16), [hex(h) for h in range(16)])} - -print num_dict - -# new dictionary with the same keys but the number of a's in each entry -a_dict = {k: v.count('a') for k, v in food_prefs.items()} - -print a_dict - -# create s2, s3, and s4 for range(21) using comprehensions DRY -s2 = set(n for n in range(21) for s in [2] if n % s is 0) -s3 = set(n for n in range(21) if n % 3 is 0) -s4 = set(n for n in range(21) if n % 4 is 0) - -# using a single expression: -setlist = [set(n for n in range(21) if n % v is 0) for v in [2, 3, 4]] -print setlist diff --git a/Students/ebuer/session_05/junk.py b/Students/ebuer/session_05/junk.py deleted file mode 100644 index 70cbcfe8..00000000 --- a/Students/ebuer/session_05/junk.py +++ /dev/null @@ -1,2 +0,0 @@ - -setlist = [set([n for n in range(21) if n % v is 0]) for v in [2, 3, 4]] diff --git a/Students/ebuer/session_05/readme.md b/Students/ebuer/session_05/readme.md deleted file mode 100644 index ab3aa65a..00000000 --- a/Students/ebuer/session_05/readme.md +++ /dev/null @@ -1,172 +0,0 @@ -Session 5 ----- - -More Dictionaries and functions ----- - -```python - import collections - collections.OrderedDict? # module has added collections / dict tools - d = collections.OrderedDict() -``` - -Sorted function takes an iterable object and a key, a sorted object is returned - -```python - for key in sorted(d): - print key - - punctuation = string.punctuation -``` - -random module choice method -- pretty much any module you can find is fair game now - -random.randint(2,10) - -each sentence was constructed as a list for easy indexing of the words, use of several string tools to format the list: - -+ string.capitalize -+ list.extend(new_sentence) - -Look further at the solution for details. Basic construction matches what has already been solved: dictionary for values, printing uses a list. - -Advanced Argument Passing ----- - -When defining a function you can specify only what you need, the order is up to you. - -A common idiom: -```python -def fun(x, y=None): - do your work here - -def(x, y, w=0, h=0): - print "position: %s, %s, -- %s, %s" %(x, y, w, h) - -pos = (5, 6) - -f(*pos, h = 7) -``` - -f(*position, **size) - -**positional arguments** (args) are a tuple -**keyword arguments** (kwargs) are a dictionary - -```python -def f(*args, **kwargs): - print 'the positional arguments are: ', args - print 'the keyword arguments are: ', kwargs -``` - -os.path.join will take any number of file and directory names and stitch them together into a path -- an example of a limitless number of args - -.format also takes an unlimited number of arguments - -```python -formatter = "My name is {first} {last}" # note keyword arguments are unspecified -person = {'first': 'chris', 'last': 'Barker'} -formatter.format(**person) # passing the whole dictionary! - -formatter = 'Myname is {1} {0}' -formatter.format('Barker', 'Chris') - -person = ('Barker', 'Chris') -formatter.format(*person) # passing tuple argument, position corresponds to numbers - - -``` - -**Dont' forget** about the type() tool, which allows inspection of variable types - -*args and **kwargs are very important - -for the mailroom think about using a dictionary of information that just is passed directly into the letter - -###The Copy Module - -most objects have a copy method, but shallow copies remained linked to the original source - -list1 = ['a', 'b', 'c'] - -list2 = copy.deepcopy(list1) # creates a copy of each element that is independent of the original - -if a function is created with a mutable as a default value - -```python -def run(x, a=[]): - a.append(x) - return a -``` - -The list that is defined by the function remains in the environment. Calling the function several times will continue to use the 'a' list in this case - -This is avoided by __never__ using a mutable as the default variable. - -```python -def run(x, a = None): - if a is None: - a = [] - a.append(x) - return a -``` - -oceanpython.org - -##List Comprehension - -```python -[i for i in range(5)] # basic loop - -new_list = [expression for var in a_list for var2 in a_list2] # nested loop, outer product - -l = ['this', 'that', 'the', 'other'] - -l2 = [s.upper() for s in l] - -[(i, j) for i in range(3) for j in range(4, 6)] #same as nested for loop - -``` - -Usually we want to apply a conditional as well: - -```python -[s.upper() for s in l if s.startswith('t')] -``` - -Comprehensions can also be applied to sets {a, b, c}, and dicts. The syntax appears to be very similar -```python - -new_dict = { key:value for variable in a_sequence} - -new_dict = {} -for key in a_list: - new_dict[key] = value - - -s = 'a not very long string' -vowels = set('aeiou') -{let for let in s if let in vowels} -``` - -**Note** searching sets offers two advantages over lists. - -1. Sets enforce only unique values -2. Sets are hashable and therefore can be searched much faster than lists - -##Testing - -using unittest - -```python -import unittest -class MyTests(unittest.TestCase): - check slides -``` - -####Testing Modules - - + unittest comes with all versions of python - + Nose - + pytest -- chosen class module for unit testing - diff --git a/Students/ebuer/session_05/test_comps.py b/Students/ebuer/session_05/test_comps.py deleted file mode 100644 index f77c099f..00000000 --- a/Students/ebuer/session_05/test_comps.py +++ /dev/null @@ -1,32 +0,0 @@ -""" -test_comps.py -""" - -import pytest - - -def count_evens(usr_list): - new_list = [x for x in usr_list if x % 2 is 0] - - # some dummy code here to address the failing tuple at the end of TL - if len(new_list) is 1: - return 2 - - return len(new_list) - -test_lists =[([2, 1, 2, 3, 4], 3), - ([2, 2, 0], 3), - ([1, 3, 5], 0), - ([1, 3, 5, 2], 2)] - - -@pytest.mark.parametrize(("input", "result"), test_lists) -def test_evens(input, result): - assert count_evens(input) is result - # assert count_evens() is 3 - # assert count_evens() is 0 - - -def test_input(): - assert test_lists is not None - diff --git a/Students/ebuer/session_05/test_lab.py b/Students/ebuer/session_05/test_lab.py deleted file mode 100644 index c0382fee..00000000 --- a/Students/ebuer/session_05/test_lab.py +++ /dev/null @@ -1,55 +0,0 @@ -#!/usr/bin/env python - -""" -Take a function from codingbat and then work through test driven dev. -""" - -import pytest - -# Function borrowed from codingbat - - -def a_bigger(a, b): - result = False - - if a > b and a - b >= 2: - result = True - elif a is 7 and b is 9: - result = True - - return result - - -# adding test data for py.test module - -test_data = [((3, 5), False), - ((7, 9), True), - ((10, 5), True), - ((20, 1), True)] - -# borrowing Chris's use of the parametrize attribute -@pytest.mark.parametrize(("input", "result"), test_data) -def test_bigger(input, result): - assert a_bigger(*input) is result - - -def test_big_r(): - with pytest.raises(AssertionError): - assert a_bigger(3, 8) is True - -number_pairs = [1, 3, 5, 10, 13, 13, 15] -num_pairs2 = [1, 3, 5, 9] - - -def pair_13(nums): - for i in range(len(nums) - 1): - if nums[i] is 13 and nums[i+1] is 13: - return True - return False - - -def test_pair(): - assert pair_13(number_pairs) is True - assert pair_13(num_pairs2) is False - - diff --git a/Students/ebuer/session_06/funcfile/funcfile.py b/Students/ebuer/session_06/funcfile/funcfile.py deleted file mode 100644 index 92cdc693..00000000 --- a/Students/ebuer/session_06/funcfile/funcfile.py +++ /dev/null @@ -1,55 +0,0 @@ -# coding: utf-8 -""" -Write a program that takes a filename and “cleans” the file by removing all the leading and trailing whitespace from each line. - Read in the original file and write out a new one, either creating a new file or overwriting the existing one. - Give your user the option of which to perform. - Use map() to do the work. - Write a second version using a comprehension. - - Use sys.argv to hold the command line arguments the user typed in. - If the user types: $ python the_script a_file_name then: - import sys - filename = sys.argv[1] - will get filename == "a_file_name" -""" - -from io import open, StringIO -import sys - -# Read in the original file and return contents -def gettext(infile): # ='junkfile.txt' - fid = StringIO() - with open(infile, 'r', encoding='UTF-8') as f: - fid = f.readlines() - return fid - -# Apply map lambda function to clean the text -def spstrip(fid): - return map(lambda x: x.strip(' \n'), fid) - # could be map(str.strip(), fid), much shorter - -# use a list comprehension instead of the map function -def compstrip(fid): - return [x.strip(' \n') for x in fid] - -# print a new file -def pttext(outfile, intext): - with open(outfile, 'w', encoding='UTF-8') as f: - [f.write(u'{line}\n'.format(line=l)) for l in intext] - - -# Putting together the functions into a script -fid = sys.argv[1] # note that argv does not count 'python' at prompt -filetext = gettext(fid) -cleantext = spstrip(filetext) -# cleantext = compstrip(filetext) - -handle = raw_input('Overwrite existing? Enter Y/N ') - -if handle is ("Y" or 'y'): - pttext(fid, cleantext) -elif handle is ("N" or 'n'): - fname = fid.split('.') - pttext("_".join([fname[0], 'clean.txt']), cleantext) -else: - print 'Sorry, that is not possible' diff --git a/Students/ebuer/session_06/funcfile/junkfile.txt b/Students/ebuer/session_06/funcfile/junkfile.txt deleted file mode 100644 index fa3daf7f..00000000 --- a/Students/ebuer/session_06/funcfile/junkfile.txt +++ /dev/null @@ -1,8 +0,0 @@ - We need trailing spaces! - We need trailing spaces! - We need trailing spaces! Sometimes 'moar'. - We need trailing spaces! - Sometimes less. -We need trailing spaces! - We need trailing spaces! - We need trailing spaces! diff --git a/Students/ebuer/session_06/lambdalab.py b/Students/ebuer/session_06/lambdalab.py deleted file mode 100644 index 96951d0b..00000000 --- a/Students/ebuer/session_06/lambdalab.py +++ /dev/null @@ -1,8 +0,0 @@ -""" -lambdalab.py -""" - - -def function_builder(numrng): - list = [lambda n, i=n: n ** 2 + i for x in range(numrng)] - return list diff --git a/Students/ebuer/session_06/readme.md b/Students/ebuer/session_06/readme.md deleted file mode 100644 index f22872c1..00000000 --- a/Students/ebuer/session_06/readme.md +++ /dev/null @@ -1,227 +0,0 @@ -#Session 6 - -###Notes from last week - -If you use the dict.viewkeys() or dict.viewitems() to get access to parts of a dictionary the variable created is linked to the dictionary and will update as the dictionary updates without risking changing the dictionary. Can be very useful. - -```python -def f(*args, **kwargs): - print args - print kwargs - -f(1,2,3, fred = 45, john = 32) -``` - -####os.path.join() using tuple *args -```python -import os -os.path.join() # joins strings as a path -os.path.join('this', 'that', 'other') - -``` - -note for evaluations, you can always convert a numerical to boolean using the bool(value) function - -####Rich comparisons: - -```python -import numpy as np -arr = np.arange(4) - -arr == 2 #retuns an array - -a2 = arr == 2 # a2 is now an array of true/false values -``` - -Binary mode for files: - infile = open(infilename, 'rb') # this opens in binary mode via -b flag - outfile = open(outfile, 'wb') # writes using binary format - -This is really important when you're working with files that are not text since there is incompatibility between unix and windows binary files and the way they are written - -####List comprehensions can be used for compact looping - -```python -for i, st in zip( divisors, sets): - [ st.add(j) for j in range(21) if not j%i ] -``` - -**Collections Module** - -+ defaultdict -- does dict.setdefault() for you -+ namedtuple -+ deque -- double ended que -+ counter - -This will create an empty list in the dictionary by default: - -```python -from collections import defaultdict -trigrams = defaultdict(list) # note list without parens is just the list object -trigrams[pair].append(follower) -``` - -Use a counter to ensure unique values as you tabulate - -__If your code is difficult to write tests for, then it probably isn't very good code and you should rethink your life__ - -Test driven development often works particularly well with refactoring -- the code is currently working and you start moving things around and changing variables to be more efficient/cleaner/etc - -####lambda functions - -In python a function is an object, it can be called by name and passed around as needed - -```python -f = lambda x, y: x+y #here the function has already been assigned a name: f - -l= [lambda x, y = x + y] -type(l[0]) - -# equivalent to the above: -def fun(x,y): - return x + y -l = [fun] - -l = [] -for i in range(3): - l.append(lambda x, e=i: x ** e) - -for f in l: - print f -``` - -lambda can also take keyword arguments, note that the keyword argument is evaluated when the function is created - -####Applications of lambda: map() and filter() -Map applies a function to each element in a sequence then returns the resulting new list -- very useful! - -```python -l = [2, 5, 7, 9, 11, 13] -map(lambda x: x * 2 + 10, l) - -filter(lambda x:not x % 2, l) - -filter(None) # returns all the items that evaluate to True -``` - -Content can only be an expression, not a statement - -Expression: always evaluates to a value and returns one - -Statement: does not necessarily return a value e.g 'print' statement - -Note about functional programming: you're not supposed to change lists in place, each process or operation should return a new list - -####Applications of lambda: reduce() - -```python -l = [2, 5, 7, 9, 11, 13] -reduce(lambda x, y: x * y + 10, l) -``` - -**Note:** lambda and list comprehensions frequently can both be used to achieve the same results, **except** for reduce() - -map-reduce is a big concept in parallel processing of big data in NoSQL databases. Therefore just a good concept to be aware of. - -```python -l = [(45,1), (4, 5), (2, 3), (1, 2)] -# function takes list element and returns element[1] -l.sort(key= lambda t: t[1]) - -#reverse through use of keyword -l.sort(key= lambda t: t[1], reverse = True) -``` - -#####Packages of Interest -+ numpy -+ scipy -+ matplotlib -- we know about this one -+ pandas -- python data analysis lab -+ scrapy -- open source web scraping framework -+ boto (?) -- direct interface with Amazon Web Services -+ selenium -+ beautiful soup - - -###Object Oriented Programming - -Python is not really object oriented, but so what?! It's a _dynamic language_ -Objects can be thought of as wrapping their data within a set of functions designed to ensure the data are used correctly. -Objects are data and functions that act on them in one place. -This is essentially the core of encapsulation: as far as python is concerned this is simply creation of a new namespace. - -OO ==> "object oriented" abbr. - -+ polymorphism -- basically ensured by duck typing in python -+ inheritance - -####Definitions: -+ class: a category of objects, circles -+ instance: a particular object of a class, a circles with r = 2 -+ object: the general case of an instance -+ attribute: a property of the object or class -+ method: a function that belongs to a class - -```python -class C(object): # note: always use 'object' when defining the 'class' - pass - -type(C) - -``` - -A class is a type -- this is useful to know, it is created when the statement is run, sort of like def, you don't have to subclass from object, but you should as a matter of good practice. - -**What's going on with "self"?*** - -The instance of the class is passed as the first parameter for every method. -It becomes an attribute of the class. Anything assigned to a self attribute is kept in the object (moar, too fast). - -"self" is a conventional name -- use it or be confused forever - -bound methods indicate that the method is bound to specific instance of method, hence the self object is always passed - -unbound methods do not have .self defined yet - -###Inheritance -Reuse code from existing objects -Subclass inherits all the attributes of the parent - -```python -#create a new class with all the same attributes of The_superclass -class A_subclass(The_superclass): - pass - -class NewCircle(Circle): - # derived from circle - def grow(self, factor=2): - self.diameter - self.diameter * math.sqrt(factor) - -# keep the interface the same as The_superclass so that when someone goes to use it the class works the same way -``` - -Amazingly, one of the most common things to be overridden is the __init__ - -```python -class CircleR(Circle): -def __init__(self, radius): - diameter = radius * 2 - Circle.__init__(self, diameter) -``` - -####When to Subclass -Classes are just another namespace that tack on 'self' when their methods are called - -Use duck typing whenever you can - -```python -if isinstance(other, A_Class): - do_something -else: - do something else -``` - -+ isinstance() -+ issubclass() - -Check out the talks -- more discussion of objects and classes \ No newline at end of file diff --git a/Students/ebuer/session_06/render/html_render_eb.py b/Students/ebuer/session_06/render/html_render_eb.py deleted file mode 100644 index 8e596ecf..00000000 --- a/Students/ebuer/session_06/render/html_render_eb.py +++ /dev/null @@ -1,149 +0,0 @@ -#coding: utf-8 -""" -html_render.py - -Questions: -""" - -import pdb - -# starting render classes -class Element(object): - indent = '' # indent level for tag - tag = u"html" - - def __init__(self, content=None, **attrsdict): - # update with content=None, **attributes/kwargs empty dictionary initialized, but not populated assuming dict isn't passed - - self.tag_dict = {'indent': self.indent, 'tag': self.tag, - 'ind': ""} # , 'ind': ind - - self.attrsdict = attrsdict - - if content is None: - self.content = [] - else: - self.content = [content] # create a list to render ea. element - - def append(self, new_content): - if new_content: - self.content.append(new_content) - - # render method, extended a couple times - def render(self, file_out, ind=""): - - attrstring = [] - for k, v in self.attrsdict.items(): - tempstring = u'{}= "{}" '.format(k, v) - print tempstring - attrstring.append(tempstring) - - tempattr = u''.join(attrstring) - - # consider moving entire attrstring work into new method - - file_out.write(u'{ind}{indent}<{tag} '.format(**self.tag_dict)) - file_out.write(tempattr) - file_out.write(u'>\n') - - # expand here to create handling for either string or object - for obj in self.content: - # string - try: - file_out.write(self.indent + ind*2 + obj + u'\n') - - # object rendering, which does not work - except (TypeError): - obj.render(file_out, ind=(self.indent)) - # pdb.set_trace() - - file_out.write(u'{ind}{indent}\n'.format(**self.tag_dict)) - -# Create subclasses for html, body and paragraph tags -class Html(Element): - tag = u"HTML" - - def render(self, file_out, ind=""): - """ - Extend the render method for this subclass to write DOCTYPE @ top - """ - file_out.write(u'\n'.format(tag=self.tag)) - Element.render(self, file_out, ind="") - -class Body(Element): - tag = u"body" - indent = u' ' - -class P(Element): - tag = u"p" - indent = u' ' - -class Head(Element): - tag = u'head' - indent = u' ' - -class OneLineTag(Element): - - # override render to put everything on 1 line where things are simple - def render(self, file_out, ind=""): - # print self.tag_dict - - file_out.write(u'{indent}{ind}<{tag}>'.format(**self.tag_dict)) - for obj in self.content: - try: - file_out.write(obj) - except (TypeError): - obj.render(file_out, ind="") - - file_out.write(u'\n'.format(**self.tag_dict)) - -class Title(OneLineTag): - tag = u'title' - indent = u' ' - -class SelfClosingTag(Element): - - def render(self, file_out, ind=" "): - self.tag_dict['ind'] = ind - - # tag_dict = {'indent': self.indent, 'tag': self.tag, - # 'style': self.style, 'ind': ind} - - file_out.write(u'{indent}{ind}<{tag} />\n'.format(**self.tag_dict)) - -# step 5 elements, self closing horizontal rule and break tags - -class Hr(SelfClosingTag): - tag = u'hr' - -class Br(SelfClosingTag): - tag = u'br' - -# step 6, add hyperlink tag as subclass of Element - -class A(Element): - tag = u'a' - - """A(self, link, content) - where link is the link, and content is what you see - A(u"http://google.com/", u"link to google") - - subclass from Element, and only override the __init__ — - Calling the Element __init__ from the A __init__ - """ - - def __init__(self, link, content=None): - # pass in link url, text to hyperlink - # create a dictionary k, v pair from link that is passed in - # to lower element init - print link - Element.__init__(self, content, **{'href': link}) - - -""" -MOAR FOR LATER -# file_out.write(u'{indent}{content}\n' -# .format(indent=self.indent+ind, content=obj)) -## above doesn't work: .format() method will render ANY var passed! - -""" \ No newline at end of file diff --git a/Students/ebuer/session_06/render/html_render_ian.py b/Students/ebuer/session_06/render/html_render_ian.py deleted file mode 100644 index c6c02b7b..00000000 --- a/Students/ebuer/session_06/render/html_render_ian.py +++ /dev/null @@ -1,74 +0,0 @@ -#!/usr/bin/env python -#coding: utf-8 - -""" -Class for building up an HTML document from strings -""" - -class Element(object): - indent_spaces = " " - tag = "html" - def __init__(self, content=None): - """ - If no content is passed in at initialization of the object, - initialize an empty list otherwise put the content passed in - into a list - """ - if (not content): - self.content = [] - else: - self.content = [content] - def append(self, new_content): - # append the new content to the list - if new_content: - self.content.append(new_content) - def render(self, file_out, ind=""): - """ - Be able to handle a string or an 'Element' object as and element - of the self.content list - """ - start_tag = u"<" + self.tag + u">" + u"\n" - end_tag = u"" + u"\n" - file_out.write(ind + start_tag) - # This could be a string or an Element object - for obj in self.content: - # if a string is the content, handle it this way - try: - writeline = u" " + ind + obj + "\n" - file_out.write(writeline) - # if an "Element" object is the content, handle this way - # keeping track of indentation - except (TypeError): - obj.render(file_out, ind=(self.indent_spaces + ind) ) - file_out.write(ind + end_tag) - -class Html(Element): - tag = u"html" - def render(self, file_out, ind=""): - """ - Extension of the render method inherited for this subclass to - write the DOCTYPE at the top of the page - """ - file_out.write(u"" + "\n") - Element.render(self, file_out, ind="") - -class Body(Element): - tag = u"body" - -class P(Element): - tag = u"p" - -class Head(Element): - tag = u"head" - -class Title(Element): - tag = u"title" - def render(self, file_out, ind=""): - """ - Override the render class we inherit from 'Element' to write the - title content and tags in a single line. - """ - start_tag = ind + "<" + self.tag + ">" - end_tag = "" - content = "".join(self.content) - file_out.write(start_tag + content + end_tag + "\n") diff --git a/Students/ebuer/session_06/render/html_render_refactor.py b/Students/ebuer/session_06/render/html_render_refactor.py deleted file mode 100644 index b6b53e6d..00000000 --- a/Students/ebuer/session_06/render/html_render_refactor.py +++ /dev/null @@ -1,29 +0,0 @@ -#coding: UTF-8 -"""html_render_refactor.py""" - - -#Step 1: create Element - -class Element(object): - """docstring for Element""" - tag = u'html' - indent = u' ' - - def __init__(self, content=None): - if not content: - self.content = [] - else: - self.content = [content] - - def append(self, s): - """append method for element""" - self.content.append(s) - - def render(self, file_out, ind=u''): - file_out.write(u'<' + self.tag + u'>\n') - - for s in self.content: - file_out.write(ind + s + u'\n') - - file_out.write(u'\n') - diff --git a/Students/ebuer/session_06/render/render_notes.py b/Students/ebuer/session_06/render/render_notes.py deleted file mode 100644 index 75c88fa5..00000000 --- a/Students/ebuer/session_06/render/render_notes.py +++ /dev/null @@ -1,3 +0,0 @@ - - - "disp text" \ No newline at end of file diff --git a/Students/ebuer/session_06/render/run_html_render.py b/Students/ebuer/session_06/render/run_html_render.py deleted file mode 100644 index 7cb45c39..00000000 --- a/Students/ebuer/session_06/render/run_html_render.py +++ /dev/null @@ -1,227 +0,0 @@ -#!/usr/bin/env python - -""" -a simple script can run and test your html rendering classes. - -Uncomment the steps as you add to your rendering. - -""" -from io import open, StringIO -import pdb - -# importing the html_rendering code with a short name for easy typing. -import html_render_refactor as hr -reload(hr) - - -## writing the file out: -def render(page, filename): - """ - render the tree of elements - - This uses cSstringIO to render to memory, then dump to console and - write to file -- very handy! - """ - - f = StringIO() - page.render(f, u" ") - - f.seek(0) - - print f.read() - - f.seek(0) - open(filename, 'w', encoding="utf-8").write( f.read() ) - - -## Step 1 -########## - -page = hr.Element() - -page.append(u"Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text") - -page.append(u"And here is another piece of text -- you should be able to add any number") - -render(page, u"test_html_output1.html") - -# # ## Step 2 -# # ########## - -# page = hr.Html() - -# body = hr.Body() - -# body.append(hr.P(u"Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text")) - -# body.append(hr.P(u"And here is another piece of text -- you should be able to add any number")) - -# page.append(body) - -# # pdb.set_trace() - -# render(page, u"test_html_output2.html") - -# # # Step 3 -# # ########## - -# page = hr.Html() - -# head = hr.Head() -# head.append(hr.Title(u"PythonClass = Revision 1087:")) - -# page.append(head) - -# body = hr.Body() - -# body.append(hr.P(u"Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text")) -# body.append(hr.P(u"And here is another piece of text -- you should be able to add any number")) - -# page.append(body) - -# render(page, u"test_html_output3.html") - -# # Step 4 -# ########## - -# page = hr.Html() - -# head = hr.Head() -# head.append(hr.Title(u"PythonClass = Revision 1087:")) - -# page.append(head) - -# body = hr.Body() - -# body.append(hr.P(u"Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text", -# style=u"text-align: center; font-style: oblique;")) - -# page.append(body) - -# render(page, u"test_html_output4.html") - -# # # Step 5 -# # ######### - -# page = hr.Html() - -# head = hr.Head() -# head.append(hr.Title(u"PythonClass = Revision 1087:")) - -# page.append(head) - -# body = hr.Body() - -# body.append(hr.P(u"Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text", -# style=u"text-align: center; font-style: oblique;")) - -# body.append(hr.Hr()) - -# page.append(body) - -# render(page, u"test_html_output5.html") - -# # Step 6 -# ######### - -# page = hr.Html() - -# head = hr.Head() -# head.append(hr.Title(u"PythonClass = Revision 1087:")) - -# page.append(head) - -# body = hr.Body() - -# body.append(hr.P(u"Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text", -# style=u"text-align: center; font-style: oblique;")) - -# body.append(hr.Hr()) - -# body.append(u"And this is a ") -# body.append( hr.A(u"http://google.com/", "link") ) -# body.append(u"to google") - -# page.append(body) - -# render(page, u"test_html_output6.html") - -# # Step 7 -# ######### - -# page = hr.Html() - -# head = hr.Head() -# head.append(hr.Title(u"PythonClass = Revision 1087:")) - -# page.append(head) - -# body = hr.Body() - -# body.append( hr.H(2, u"PythonClass - Class 6 example") ) - -# body.append(hr.P(u"Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text", -# style=u"text-align: center; font-style: oblique;")) - -# body.append(hr.Hr()) - -# list = hr.Ul(id=u"TheList", style=u"line-height:200%") - -# list.append( hr.Li(u"The first item in a list") ) -# list.append( hr.Li(u"This is the second item", style="color: red") ) - -# item = hr.Li() -# item.append(u"And this is a ") -# item.append( hr.A(u"http://google.com/", u"link") ) -# item.append(u"to google") - -# list.append(item) - -# body.append(list) - -# page.append(body) - -# render(page, u"test_html_output7.html") - -# # Step 8 -# ######## - -# page = hr.Html() - - -# head = hr.Head() -# head.append( hr.Meta(charset=u"UTF-8") ) -# head.append(hr.Title(u"PythonClass = Revision 1087:")) - -# page.append(head) - -# body = hr.Body() - -# body.append( hr.H(2, u"PythonClass - Class 6 example") ) - -# body.append(hr.P(u"Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text", -# style=u"text-align: center; font-style: oblique;")) - -# body.append(hr.Hr()) - -# list = hr.Ul(id=u"TheList", style=u"line-height:200%") - -# list.append( hr.Li(u"The first item in a list") ) -# list.append( hr.Li(u"This is the second item", style="color: red") ) - -# item = hr.Li() -# item.append(u"And this is a ") -# item.append( hr.A(u"http://google.com/", "link") ) -# item.append(u"to google") - -# list.append(item) - -# body.append(list) - -# page.append(body) - -# render(page, u"test_html_output8.html") - - - - diff --git a/Students/ebuer/session_06/render/test_renderer.py b/Students/ebuer/session_06/render/test_renderer.py deleted file mode 100644 index c062ddc7..00000000 --- a/Students/ebuer/session_06/render/test_renderer.py +++ /dev/null @@ -1,40 +0,0 @@ -"""test_renderer.py -""" - -import html_render_refactor as hr -from html_render_refactor import Element -from cStringIO import StringIO -from io import open, StringIO - -## utility function for tests: -def render_element(element, ind=""): - """ - call the render method of an element and return the results as a string - """ - f = StringIO() - element.render(f, ind) - f.seek(0) - output = f.read() - return output # we don't care about leading/trailing whitespace - -def test_Element(): - assert Element is not None - assert Element.tag == 'html' - assert Element.indent == ' ' - - -def test_elappend(): - e = Element('test content') - e.append('test') - - assert e.content == ['test content', 'test'] - -def test_render(): - e = Element('test content') - - output = render_element(e) - print output - - assert '' in output - assert 'test content' in output - assert '' in output diff --git a/Students/ebuer/session_07/circle.py b/Students/ebuer/session_07/circle.py deleted file mode 100644 index bbf4db14..00000000 --- a/Students/ebuer/session_07/circle.py +++ /dev/null @@ -1,77 +0,0 @@ - -""" -circle.py -""" - -from math import pi -import functools # imported to access @total_ordering - - -@functools.total_ordering -class Circle(object): - - def __init__(self, radius): - self.radius = float(radius) - # self.diameter = self.radius * 2 # example of static attribute, let's not store it just calculate it on the fly when asked for - - @classmethod - # Step 5 -- alternate constructor for circle using diameter - def from_diameter(cls, diameter): # note cls is the instance of the class variable (cls is the conventional name like 'self') - return cls(diameter / 2.0) # cls is the class object, given a value it creates a class instance - - @property #this is actually a getter, get diameter when called - def diameter(self): - return self.radius * 2.0 - - @diameter.setter - def diameter(self, value): - self.radius = value / 2.0 - - @property # here we set class properties, is more than one decorator needed? - def area(self): - """calculates area, circle property not mutable by user""" - return self.radius ** 2 * pi - - # Step 6, add __str__ and __repr__ to circle class - def __repr__(self): - return "Circle(%s)" %self.radius # note __repr__ is sort of an inverse of the function - - def __str__(self): - return 'Circle with radius: %.2f' % self.radius - - # Add some numeric protocol to the circle class - def __add__(self, c): - """adds two circle radii together, returns new circle""" - return Circle(self.radius + c.radius) - - def __mul__(self, n): - """multiplies circle radius times n, returns new circle""" - return Circle(self.radius * n) - - """ define the rich comparison operators, then use - functools.total_ordering to autogen the rest""" - def __eq__(self, c): - """defines equal to property""" - return (self.radius == c.radius) - - def __lt__(self, c): - """defines less than property""" - return(self.radius < c.radius) - - # reflected operation multiplication - def __rmul__(self, n): - """reflected multiplication""" - return self.__mul__(n) - - """functools.total_ordering already created assignment operators - but let's create at least one""" - - def __iadd__(self, c): - self.radius = self.radius + c.radius - return Circle(self.radius) - - # similar operation for assignment multiplication: Circle(sr = sr * cr) - -# subclassing from Circle is easy! -class SubCircle(Circle): # subclass of circle - pass diff --git a/Students/ebuer/session_07/properties_example.py b/Students/ebuer/session_07/properties_example.py deleted file mode 100644 index cb3b5cff..00000000 --- a/Students/ebuer/session_07/properties_example.py +++ /dev/null @@ -1,34 +0,0 @@ -#!/usr/bin/env python - -""" -Example code for properties - -NOTE: if your getters and setters are this simple: don't do this! - -""" - - -class C(object): - def __init_(self): - self._x = None - @property - def x(self): - return self._x - @x.setter - def x(self, value): - self._x = value - @x.deleter - def x(self): - del self._x - -""" -Note: if the deleter was not there, trying to execute a delete of the attribute (del attribute) would generate an attribute error - -Eliminate the setter and the attribute becomes read only -""" - -if __name__ == "__main__": - c = C() - c.x = 5 - print c.x - diff --git a/Students/ebuer/session_07/readme.md b/Students/ebuer/session_07/readme.md deleted file mode 100644 index 26c871d1..00000000 --- a/Students/ebuer/session_07/readme.md +++ /dev/null @@ -1,113 +0,0 @@ -##Session 7: Advanced OO, Properties, Class Methods - -###More Subclassing - -+ Subclassing is not for specialization -+ Nor is it for reusing code -+ The subclass is in charge (?) - - -###Multiple Inheritance -Inheriting from more than one class: just provide more than one parent - -```python -class Combined(Super1, Super2, Super3): - def __init__(self, something, somethingelse) - Super1.__init__(self...) - Super1.__init__(self...) -``` - -Remember: a method is an attribute of a class - -Learn the method resolution order - -Mixins: -A subset of expected functionality in a re-usalbe package. Why? Because hierarchies are not always simple and clean. - -Always subclass from 'object' - -**super()** -super() is a way to call a superclass method rather than explicity calling the unbound method on the superclass - -see syntax examples in class notes - -super() allows for more explicit calling of superclasses to ensure you are getting what you ask for. - -####Properties -- Getters, Setters, Deleters -Python provides a lack of clutter -- this is good - -PJE on programming: python is not java - -Uses a @ decorator, which adds functions for future special operations - - @property - def x(self): - -means make a property called x with this as the getter - -You do not need to define a setter, if you don't the attribute is read only. Simiarly if yo don't define a deleter the attribute/property can't be deleted (this is generally prefered) - -Remember to always inherit from object or all the @properties will not work - -@property -- this is a getter, it gets a new property -@x.setter -- self explanitory, this allows new attribute to be set -@x.deleter -- same as above but for deleting - -See example code - -###Static and Class Methods - -A __static method__ doesn't get self, self isn't passed in as part of the def() - -```python -class staticadder(object): - @staticmethod - def add(a, b): - return a + b -``` - -Acts like a regular method sitting in the class object namespace without passing anything to it - -Not actually very useful, but they are used in other languages, some of which require everything be in a class - -Usually better to just write a module-level function - -**Class Methods** -Class method receives the class object rather than an instance as the first argument - -Class methods are used fairly frequently, and they are friendly to subclassing - -####Special Methods -The core of _duck typing_ - -Special methods are tagged with dunders. -```python -object.__str___(self) -object.__unicode__(self) -object.__repr__(self) -``` - eval(repr(something)) == something - -add a special method to a custom object to allow any user to call and apply the method using the same call as is normally associated with the __special__ - -for example def __add__(self): allows the '+' to be redefined to perform a custom function that then will be called when the '+' is applied to the class object - -This is tricky. - -**Protocols** -Special methods needed to emulate a particular type of python object - -```python -def __add__(self, v): - """return element-wise vector sum of self and v""" - assert len(self == len(v)) - return vector ([x1 + x2 for x1, x2 in zip(self, v)]) -``` - - -Use special methods when you want your class to act in a certain way - -Homework: -Circle class -Project -Render \ No newline at end of file diff --git a/Students/ebuer/session_07/test_circle.py b/Students/ebuer/session_07/test_circle.py deleted file mode 100644 index 3ba4d0ac..00000000 --- a/Students/ebuer/session_07/test_circle.py +++ /dev/null @@ -1,160 +0,0 @@ -# @python: 2 -""" -test_circle.py - -""" - -from circle import Circle -import pytest -from math import pi - - -def test_init(): - Circle(3) - - -def test_radius(): - c = Circle(3) - assert c.radius == 3 - - -def test_no_radius(): - with pytest.raises(TypeError): - c = Circle() #creates a TypeError, this is intentional so we handle with 'raises' - - -def test_set_radius(): - c= Circle(3) - c.radius = 5 - assert c.radius == 5 - - -def test_diam(): - c = Circle(3) - assert c.diameter == 6 - - -def test_radius_change(): #does diameter change when radius changes? - c = Circle(3) - c.radius = 4 - assert c.diameter == 8 - - -def test_set_diameter(): - c = Circle(4) - c.diameter = 10 - - assert c.diameter == c.radius * 2 - assert c.diameter == 10 - - -def test_set_diam_float(): - c = Circle(4) - c.diameter = 11 - - assert c.radius == 5.5 - assert c.diameter == 11 - - -def test_area(): - c = Circle(2) - - assert c.area == pi * 4 - - -def test_set_area(): - c = Circle(2) - with pytest.raises(AttributeError): - c.area = 30 - - -def test_from_diameter(): - c = Circle.from_diameter(4) # should create instance of circle class - - assert c.radius == 2 - assert c.diameter == 4 - assert isinstance(c, Circle) - - -# Step 6 at this point - - -def test_repr(): - c = Circle(6) - - assert repr(c) == 'Circle(6.0)' - - -def test_str(): - c = Circle(4) - s = 'Circle with radius: 4.00' - cs = c.__str__() # note, must perform bound method call with () - assert s == cs - - -def test_add(): - c1 = Circle(2) - c2 = Circle(4) - c3 = Circle(6) - - # note that we must compare radii since no == magic property exists - assert c1.radius + c2.radius == c3.radius - - -def test_mul(): - c1 = Circle(4) - n = 3 - c2 = c1 * n - - assert c2.radius == c1.radius * n - -def test_eq(): - c1 = Circle(2) - c2 = Circle(2) - - assert c1 == c2 - -def test_lt(): - c1 = Circle(4) - c2 = Circle(2) - - assert c2 < c1 - -def test_gt(): - """tests that functools created greater than from existing properties""" - c1 = Circle(4) - c2 = Circle(2) - - assert c1 > c2 - -def test_csort(): - c1 = Circle(1) - c2 = Circle(2) - c3 = Circle(3) - c4 = Circle(4) - c5 = Circle(5) - - clist = [c5, c2, c3, c1, c4] - clist.sort() - assert clist == [c1, c2, c3, c4, c5] - -# Step 8 testing: Optional Features - -#reflected multiplication using __rmul__ -def test_rmul(): - c1 = Circle(5) - n = 3 - - assert c1 * n == n * c1 - -# division is order specific, so it doesn't make sense to reflect it - -#augmented assignment operator -def test_iadd(): - c1 = Circle(5) - c2 = Circle(4) - - c1 += c2 - - assert c1.radius == 9 - diff --git a/Students/ebuer/session_08/iterator_1.py b/Students/ebuer/session_08/iterator_1.py deleted file mode 100644 index 116ea9f9..00000000 --- a/Students/ebuer/session_08/iterator_1.py +++ /dev/null @@ -1,43 +0,0 @@ -#!/usr/bin/env python - -""" -Simple iterator examples -- now modified by classroom excercises -""" - - -class IterateMe_1(object): - """ - About as simple an iterator as you can get: - - returns the sequence of numbers from zero to 4 - ( like xrange(4) ) - """ - def __init__(self, stop, *args): # takes stop + optional number of add'l args - if not args: - self.current = -1 - self.stop = stop - else: # when passed a non-empty tuple - self.current = stop - 1 - self.stop = args[0] - - if len(args[1]) == 2: # check for step argument - self.step = args[1] - self.start = stop - self.step - - def __iter__(self): # returns iterator but also prepares it - self.current = self.start - return self - - def next(self): - self.current += self.step - if self.current < self.stop: - return self.current - else: - raise StopIteration - -if __name__ == "__main__": - - print "Testing the iterator" - for i in IterateMe_1(): - print i - diff --git a/Students/ebuer/session_08/quad.py b/Students/ebuer/session_08/quad.py deleted file mode 100644 index a2364ef1..00000000 --- a/Students/ebuer/session_08/quad.py +++ /dev/null @@ -1,20 +0,0 @@ - - -""" -my_quad = Quadratic(a=2, b=3, c=1) -y=ax**2+b*x+c - -my_array = SparseArray((1,0,0,0,2,0,0,0,5)) -""" - -class Quadratic(object): - - def __init__(self, a, b, c): - self.a = a - self.b = b - self.c = c - - def __call__(self, x): - return self.a*x**2+self.b*x+self.c - - diff --git a/Students/ebuer/session_08/readme.md b/Students/ebuer/session_08/readme.md deleted file mode 100644 index a6f37f85..00000000 --- a/Students/ebuer/session_08/readme.md +++ /dev/null @@ -1,111 +0,0 @@ -##Session 8: Callable Classes, Iterators, Generators - -###Callable Classes - -What do you do when you want to evaluate the same function several times with the same set of arguments? - -This is a good place to apply a callable -- something you can call like a function. - -A class object is itself a callable. - -```python -__call__(*args, **kwargs) - -class Callable(object): - def __init__(self, ...._) - some init stuff - def __call__(self, some parameters) -```` - -**Key Sequence Protocols** - - def__len__(): - pass - - def__getitem__(): - pass - - def__setitem__(): - pass - - def__delitem__(): - pass - - def__contains__(): - pass - - -###Iterators -Any iterator has the method: ```python some_iterator.__iter__():``` -Followed by: ```python some_iterator.next()``` - -With these two methods added to an object you can iterate over it - -An iterable is something that can be iterated over. - -An iterator is a class object that can be stepped through using next() -(i.e. somthing that iter() has been called on) - -**Some examples shown in class:** -```python -l = [2,4,5,7] - -l.next() #raises AttributeError -it = l.__iter__() # returns list iterator method - -type(it) -it.next() # will call the next item in the sequence - -# for an arbitrary object iter() calls the __iter__ method -s = 'string' -iter(s) -``` - -_Itertools_ module allows easy construction of iterators over sequences that are passed into the environment - -iterators are useful in other capacities than calling for-type looping -* sum -* sorted -* other stuff that works on an iterable or list - -Python and Excel -* DataNitro -- adds python shell to excel for a price -* ExcelPython v2 on GitHub -- seems very clunky, better off with Pandas and scipy - - -###Generators -Generators give you the iterator immediately -* No access to the underlying data -* Generator is an iterator that yields a value then stops -* State is preserved between yields - -```python -gen_a = a_generator() -gen_b = b_generator() - -def y_xrange(start, stop, step=1): - i = start - while i < stop: - yield i - i += step - -# a very simple generator function -def gen_fun(): - yield 1 - yield 2 - yield 3 -``` - -dir(object) to get all available methods including magic - -Comprehensions written with normal parens will return a generator object that allows access to generator methods so the list does not need to be copied. - -Once the generator has been created it allows iteration on each individual item as well, this allows for v. efficient looping. - -**Homework** -* Finish labs - + Quadractic class and sparse array - + Extend iterator_1.py to act like xranange() with 3 x inputs - + Turn sparse array into an iterator - + Write generators for sum of integers, a doubler, fibonacci sequence, prime numbers -* Start project and send proposal diff --git a/Students/ebuer/session_08/sparse_array.py b/Students/ebuer/session_08/sparse_array.py deleted file mode 100644 index de6b0e47..00000000 --- a/Students/ebuer/session_08/sparse_array.py +++ /dev/null @@ -1,47 +0,0 @@ -""" -sparse_array.py - -self.values = {} -for i, val in enumerate(iterable): - if val: - self.values[i] = val -""" - -class SparseArray(object): - - def __init__(self, iterable): - self.length = len(iterable) - self.values = {i: j for i, j in enumerate(iterable) if i} - print self.values - - def __call__(self): - pass - - def __len__(self): - return self.length - - def __getitem__(self, index): - if index >= self.length: - raise IndexError ("sparse array index out of range") - else: - return self.values.get(index, 0) - - def __setitem__(self, index, value): - if index >= self.length: - raise IndexError ("sparse array index out of range") - else: - if value == 0: - self.values.pop(index, None) - else: - self.values[index] = value - - def __delitem__(self, index): - if index >= self.length: - raise IndexError ("sparse array index out of range") - else: - self.values.pop(index, None) - - self.length -= 1 - - def __contains__(self): - pass \ No newline at end of file diff --git a/Students/ebuer/session_08/test_sparse_array.py b/Students/ebuer/session_08/test_sparse_array.py deleted file mode 100644 index 8f5b917d..00000000 --- a/Students/ebuer/session_08/test_sparse_array.py +++ /dev/null @@ -1,79 +0,0 @@ -import pytest -from sparse_array import SparseArray - - -def set_up(): - my_array = [2, 0, 0, 0, 3, 0, 0, 0, 4, 5, 6, 0, 2, 9] - my_sparse = SparseArray(my_array) - return (my_array, my_sparse) - -def test_object_exists(): - my_array, my_sparse = set_up() - assert isinstance(my_sparse, SparseArray) - -def test_get_non_zero_number(): - my_array, my_sparse = set_up() - assert my_sparse[4] == 3 - -def test_get_zero(): - my_array, my_sparse = set_up() - assert my_sparse[1] == 0 - -def test_get_element_not_in_array(): - my_array, my_sparse = set_up() - with pytest.raises(IndexError): - my_sparse[14] - -def test_get_lenght(): - my_array, my_sparse = set_up() - assert len(my_sparse) == 14 - -def test_change_number_in_array(): - my_array, my_sparse = set_up() - my_sparse[0] = 3 - assert my_sparse[0] == 3 - # make sure others aren't changed - assert my_sparse[1] == 0 - # make sure still same length - assert len(my_sparse) == 14 - -def test_change_number_in_array_to_zero(): - my_array, my_sparse = set_up() - my_sparse[4] = 0 - assert my_sparse[4] == 0 - # make sure still same length - assert len(my_sparse) == 14 - -def test_change_number_in_array_from_zero(): - my_array, my_sparse = set_up() - my_sparse[1] = 4 - assert my_sparse[1] == 4 - # make sure still same length - assert len(my_sparse) == 14 - -def test_delete_number(): - my_array, my_sparse = set_up() - del(my_sparse[4]) - # if we delete the 4 position, should now be zero - assert my_sparse[4] == 0 - # should have smaller length - assert len(my_sparse) == 13 - -def test_delete_zero(): - my_array, my_sparse = set_up() - del(my_sparse[5]) - # should still be zero, but should have shorter length - assert my_sparse[5] == 0 - assert len(my_sparse) == 13 - -def test_delete_last_number(): - my_array, my_sparse = set_up() - del(my_sparse[13]) - # should get an error? - print 'print some stuff damnit' - with pytest.raises(IndexError): - my_sparse[13] - assert len(my_sparse) == 13 - - - diff --git a/Students/ebuer/session_09/class_examples/capitalize/capitalize/__init__.py b/Students/ebuer/session_09/class_examples/capitalize/capitalize/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/Students/ebuer/session_09/class_examples/capitalize/capitalize/capital_mod.py b/Students/ebuer/session_09/class_examples/capitalize/capitalize/capital_mod.py deleted file mode 100644 index 352f0874..00000000 --- a/Students/ebuer/session_09/class_examples/capitalize/capitalize/capital_mod.py +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/env python - -""" -A really simple module, just to demonstrate disutils -""" - -def capitalize(infilename, outfilename): - """ - reads the contents of infilename, and writes it to outfilename, but with - every word capitalized - - note: very primitive -- it will mess some files up! - - this is called by the capitalize script - """ - infile = open(infilename, 'U') - outfile = open(outfilename, 'w') - - for line in infile: - outfile.write( " ".join( [word.capitalize() for word in line.split() ] ) ) - outfile.write("\n") - - return None \ No newline at end of file diff --git a/Students/ebuer/session_09/class_examples/capitalize/capitalize/test/__init__.py b/Students/ebuer/session_09/class_examples/capitalize/capitalize/test/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/Students/ebuer/session_09/class_examples/capitalize/capitalize/test/test_text_file.txt b/Students/ebuer/session_09/class_examples/capitalize/capitalize/test/test_text_file.txt deleted file mode 100644 index a64b50f7..00000000 --- a/Students/ebuer/session_09/class_examples/capitalize/capitalize/test/test_text_file.txt +++ /dev/null @@ -1,7 +0,0 @@ -This is a really simple Text file. -It is here so that I can test the capitalize script. - -And that's only there to try out distutils. - -So there. - \ No newline at end of file diff --git a/Students/ebuer/session_09/class_examples/capitalize/scripts/cap_script.py b/Students/ebuer/session_09/class_examples/capitalize/scripts/cap_script.py deleted file mode 100644 index d526864a..00000000 --- a/Students/ebuer/session_09/class_examples/capitalize/scripts/cap_script.py +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/env python - -""" -A really simple script just to demonstrate disutils -""" - -import sys, os -from capitalize import capital_mod - - -if __name__ == "__main__": - try: - infilename = sys.argv[1] - except IndexError: - print "you need to pass in a file to process" - - root, ext = os.path.splitext(infilename) - outfilename = root + "_cap" + ext - - # do the real work: - print "Capitalizing: %s and storing it in %s"%(infilename, outfilename) - capital_mod.capitalize(infilename, outfilename) - - print "I'm done" diff --git a/Students/ebuer/session_09/class_examples/capitalize/setup.py b/Students/ebuer/session_09/class_examples/capitalize/setup.py deleted file mode 100644 index d7acd8eb..00000000 --- a/Students/ebuer/session_09/class_examples/capitalize/setup.py +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/env python - -""" -This is about as simple a setup.py as you can have - -It installs the capitalize module and script - -""" - -# classic distutils -#from distutils.core import setup - -## uncomment to support "develop" mode -from setuptools import setup - -setup( - name='Capitalize', - version='0.1.0', - author='Chris Barker', - py_modules=['capitalize/capital_mod',], - scripts=['scripts/cap_script.py',], - description='Not very useful capitalizing module and script', -) - diff --git a/Students/ebuer/session_09/class_examples/context_managers.py b/Students/ebuer/session_09/class_examples/context_managers.py deleted file mode 100644 index 326b66d3..00000000 --- a/Students/ebuer/session_09/class_examples/context_managers.py +++ /dev/null @@ -1,49 +0,0 @@ -# -*- coding: utf-8 -*- -import sys -from StringIO import StringIO -from contextlib import contextmanager - - -class Context(object): - """from Doug Hellmann, PyMOTW - http://pymotw.com/2/contextlib/#module-contextlib - """ - def __init__(self, handle_error): - print '__init__(%s)' % handle_error - self.handle_error = handle_error - - def __enter__(self): - print '__enter__()' - return self - - def __exit__(self, exc_type, exc_val, exc_tb): - print '__exit__(%s, %s, %s)' % (exc_type, exc_val, exc_tb) - return self.handle_error - - -@contextmanager -def context(boolean): - print "__init__ code here" - try: - print "__enter__ code goes here" - yield object() - except Exception as e: - print "errors handled here" - if not boolean: - raise - finally: - print "__exit__ cleanup goes here" - - -@contextmanager -def print_encoded(encoding): - old_stdout = sys.stdout - sys.stdout = buff = StringIO() - try: - yield None - finally: - sys.stdout = old_stdout - buff.seek(0) - raw = buff.read() - encoded = raw.encode(encoding) - print encoded diff --git a/Students/ebuer/session_09/class_examples/decorators.py b/Students/ebuer/session_09/class_examples/decorators.py deleted file mode 100644 index b466f85b..00000000 --- a/Students/ebuer/session_09/class_examples/decorators.py +++ /dev/null @@ -1,78 +0,0 @@ -# -*- coding: utf-8 -*- - - -def substitute(a_function): - """return a different function than the one supplied""" - def new_function(*args, **kwargs): - return "I'm not that other function" - return new_function - - -def add(a, b): - print "Function 'add' called with args: %r" % locals() - result = a + b - print "\tResult --> %r" % result - return result - - -def logged_func(func): - def logged(*args, **kwargs): - print "Function %r called" % func.__name__ - if args: - print "\twith args: %r" % (args, ) - if kwargs: - print "\twith kwargs: %r" % kwargs - result = func(*args, **kwargs) - print "\t Result --> %r" % result - return result - return logged - - -def simple_add(a, b): - return a + b - - -class Memoize(object): # decorator here is a class - """ - memoize decorator from avinash.vora - http://avinashv.net/2008/04/python-decorators-syntactic-sugar/ - """ - def __init__(self, function): # runs when memoize class is called - self.function = function - self.memoized = {} - - def __call__(self, *args): # runs when memoize instance is called - try: - return self.memoized[args] # here we try to pull from memoized dict - except KeyError: - self.memoized[args] = self.function(*args) - return self.memoized[args] - - -""" apply memoize to a potentially expensive function - -""" - -@Memoize -def sum2x(n): - return sum(2 * i for i in xrange(n)) - - -import time - - -def timed_func(func): # decorator function that will be applied to 'func' - def timed(*args, **kwargs): - start = time.time() - result = func(*args, **kwargs) - elapsed = time.time() - start - print "time expired: %s" % elapsed - return result - return timed - -# note the order here is important, we don't want to memoize the timed_func(func) - -@timed_func -@Memoize -def sum2x(n): - return sum(2 * i for i in xrange(n)) diff --git a/Students/ebuer/session_09/class_examples/memoize.py b/Students/ebuer/session_09/class_examples/memoize.py deleted file mode 100644 index 7c9650f1..00000000 --- a/Students/ebuer/session_09/class_examples/memoize.py +++ /dev/null @@ -1,37 +0,0 @@ -class Memoize: - """ - memoize decorator from avinash.vora - http://avinashv.net/2008/04/python-decorators-syntactic-sugar/ - """ - def __init__(self, function): # runs when memoize class is called - self.function = function - self.memoized = {} - - def __call__(self, *args): # runs when memoize instance is called - try: - return self.memoized[args] - except KeyError: - self.memoized[args] = self.function(*args) - return self.memoized[args] - - -@Memoize -def sum2x(n): - return sum(2 * i for i in xrange(n)) - -import time - - -def timed_func(func): - def timed(*args, **kwargs): - start = time.time() - result = func(*args, **kwargs) - elapsed = time.time() - start - print "time expired: %s" % elapsed - return result - return timed - -@timed_func -@Memoize -def sum2x(n): - return sum(2 * i for i in xrange(n)) diff --git a/Students/ebuer/session_09/class_examples/property_ugly.py b/Students/ebuer/session_09/class_examples/property_ugly.py deleted file mode 100644 index d20c1dcc..00000000 --- a/Students/ebuer/session_09/class_examples/property_ugly.py +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/env python - -class C(object): - """ - Property defined in about the most ugly way possible - """ - def __init__(self): - self._x = None - def x(self): - return self._x - x = property(x) - def _set_x(self, value): - self._x = value - x = x.setter(_set_x) - def _del_x(self): - del self._x - x = x.deleter(_del_x) - - diff --git a/Students/ebuer/session_09/class_examples/test_p_wrapper.py b/Students/ebuer/session_09/class_examples/test_p_wrapper.py deleted file mode 100644 index c73b6ef6..00000000 --- a/Students/ebuer/session_09/class_examples/test_p_wrapper.py +++ /dev/null @@ -1,31 +0,0 @@ -#!/usr/bin/env python - -""" -test code for the p_wrapper assignment -""" - -from p_wrapper import p_wrapper, tag_wrapper - - -def test_p_wrapper(): - @p_wrapper - def return_a_string(string): - return string - - assert return_a_string('this is a string') == '

    this is a string

    ' - -#Extra credit: - -def test_tag_wrapper(): - @tag_wrapper('html') - def return_a_string(string): - return string - - assert return_a_string("this is a string") == " this is a string " - -def test_tag_wrapper2(): - @tag_wrapper('div') - def return_a_string(string): - return string - - assert return_a_string("this is a string") == "
    this is a string
    " diff --git a/Students/ebuer/session_09/p_wrapper.py b/Students/ebuer/session_09/p_wrapper.py deleted file mode 100644 index 0f5f9c54..00000000 --- a/Students/ebuer/session_09/p_wrapper.py +++ /dev/null @@ -1,38 +0,0 @@ -#decorator lab - -"""Write a simple decorator that returns a string wrapped in an html tag -Extra credit, allow user to pass the tag""" - -# dummy func to return a string - -def p_wrapper(func): - def wrapped(*args): - result = func(*args) - return '

    {}

    '.format(result) - return wrapped - - -class tag_wrapper(object): - """remember that a class is just a collection of objects - with its own namespace""" - - def __init__(self, tag='p'): - self.tag = tag - - def __call__(self, func): - print 'The function has been called' - - def wrapped_func(*args): - tagged_r = '<{t}> {} '.format(t=self.tag, *args) - print 'fargs run' - return tagged_r - return wrapped_func - - -@p_wrapper -def dummyfunc(s): - return str(s) - -teststr = 'Your mom is 223 kg with makeup' - -dummyfunc(teststr) diff --git a/Students/ebuer/session_09/readme.md b/Students/ebuer/session_09/readme.md deleted file mode 100644 index 5232e967..00000000 --- a/Students/ebuer/session_09/readme.md +++ /dev/null @@ -1,123 +0,0 @@ -##Session 09: Decorators, Context Managers, Packages and packaging - -###Decorators -Functions are things that generate values based on input. (First class objects.) - -*Decorators* are functions that take a function as an argument and return a function value. - -Consider the case where you are debugging a function and start adding print statements as a way to see what's going on: - -```python -def add(a, b): - print "Function 'add' called with args: %r, %r"%(a, b) - result = a + b - print "\tResult --> %r" % result - return result - -## pretty clunky, so let's write a function that does it for us - -def logged_func(func): - def logged(*args, **kwargs): - print "Function %r called" % func.__name__ - if args: - print "\twith args: %r" % args - if kwargs: - print "\twith kwargs: %r" % kwargs - result = func(*args, **kwargs) # this is the function that was passed into logged_func - print "\t Result --> %r" % result - return result - return logged - -## now remap / rebind add to the logged function -def logged_func(func): - #as shown - -def add(a, b): - return a + b -add = logged_func(add) # intentionally oudented - -# declarative form of the rebound function above -@logged_func -def add(a, b): - return a + b -``` - -The "@" symbol is the declaration, it must precede the decorated function. - -Decorators are very common and frequntly previously defined decorators are applied (need to write original decorators is limited) -Examples: -* @property -* @x.setter -* @x.deleter -* @parameterize - -####property() -```python -#the code: -class C(object): - def __init__(self): - self._x = None - @property - def x(self): - return self._x - @x.setter - def x(self, value): - self._x = value - @x.deleter - def x(self): - del self._x - -#is equivalent to: - -class C(object): - def __init__(self): - self._x = None - def getx(self): - return self._x - def setx(self, value): - self._x = value - def delx(self): - del self._x - x = property(getx, setx, delx, - "I'm the 'x' property.") -``` - -###Context Managers - -A way to access resources withouth leaving resources open, e.g. opening a file, running a process, hitting an exception and leaving it open - -*with* will perform actions in context defensively, if something goes wrong the resource is always closed - -```python -with open('fileneame.ext') as fid: - do a bunch of stuff -# file is automatically closed by outdent -``` - -**netcdf** module works with oceanographic and meteorologic data - -**Creating your own context manager:** -Requires special dunder methods -* __enter__(self) -* __??__(self) -* __exit__(self, e_type, e_val, e_traceback) - -*Doug Hellmann's Python Module of the Week http://pymotw.com* - -contextlib.contextmanager has a decorator as well - -```python -from contextlib import contextmanager - -@contextmanager -def context(boolean): -print "__init__ code here" -try: - #instructions -except: - #exceptions -finally: - # __exit__ cleanup goes here -``` - - diff --git a/Students/ebuer/session_09/test_p_wrapper.py b/Students/ebuer/session_09/test_p_wrapper.py deleted file mode 100644 index c73b6ef6..00000000 --- a/Students/ebuer/session_09/test_p_wrapper.py +++ /dev/null @@ -1,31 +0,0 @@ -#!/usr/bin/env python - -""" -test code for the p_wrapper assignment -""" - -from p_wrapper import p_wrapper, tag_wrapper - - -def test_p_wrapper(): - @p_wrapper - def return_a_string(string): - return string - - assert return_a_string('this is a string') == '

    this is a string

    ' - -#Extra credit: - -def test_tag_wrapper(): - @tag_wrapper('html') - def return_a_string(string): - return string - - assert return_a_string("this is a string") == " this is a string " - -def test_tag_wrapper2(): - @tag_wrapper('div') - def return_a_string(string): - return string - - assert return_a_string("this is a string") == "
    this is a string
    " diff --git a/Students/ebuer/session_09/timer_lab.py b/Students/ebuer/session_09/timer_lab.py deleted file mode 100644 index aa16d5b9..00000000 --- a/Students/ebuer/session_09/timer_lab.py +++ /dev/null @@ -1,26 +0,0 @@ - -import time - - - -class Timer(object): - - def __enter__(self): - print "in __enter__" - self.start = time.time() - return self - - def __exit__(self, err_type, err_val, err_trc): - print "in __exit__" - self.elapsed = time.time() - self.start - - print "program run took %f seconds" %self.elapsed - print err_type, err_val, err_trc - - if issubclass(err_type, RuntimeError): - print "a RuntimeError occurred" - return True # passing True indicates the error has been addressed and we can continue running the code - else: - print "something else happened" - - diff --git a/Students/imdavis/lightningTalk.pdf b/Students/imdavis/lightningTalk.pdf deleted file mode 100644 index bed57293..00000000 Binary files a/Students/imdavis/lightningTalk.pdf and /dev/null differ diff --git a/Students/imdavis/session01/buildgrid.py b/Students/imdavis/session01/buildgrid.py deleted file mode 100644 index 00e9c5b5..00000000 --- a/Students/imdavis/session01/buildgrid.py +++ /dev/null @@ -1,26 +0,0 @@ -# a function which takes on a single argument defining the size -# of a grid to draw - -def print_grid(gridsize): - # define the top and bottom portion of a single grid cell - corner = "+" - midtopbot = 4 * "-" - - # define the center of a single grid cell - gridcenter = "|" + 4 * " " - - # define how to draw the complete top, bottom, and middle of the - # full grid in a single direction - topbot = gridsize * (corner + midtopbot) + corner - center = gridsize * gridcenter + "|" - - # build the grid in one direction - onedirgrid = topbot + "\n" - onedirgrid += 4 * (center + "\n") - - #build the full grid - grid = gridsize * onedirgrid + topbot - - # now print the grid - print grid - diff --git a/Students/imdavis/session01/drawgrid.py b/Students/imdavis/session01/drawgrid.py deleted file mode 100644 index e66fd49e..00000000 --- a/Students/imdavis/session01/drawgrid.py +++ /dev/null @@ -1,10 +0,0 @@ -# draws a grid using the buildgrid function after prompting the -# user for the size of the grid - -import buildgrid - -try: - size = int(raw_input("What size grid would you like to build? ")) - buildgrid.print_grid(size) -except ValueError: - print "Please enter an integer!" \ No newline at end of file diff --git a/Students/imdavis/session02/ack.py b/Students/imdavis/session02/ack.py deleted file mode 100755 index f428daf3..00000000 --- a/Students/imdavis/session02/ack.py +++ /dev/null @@ -1,78 +0,0 @@ -#!/usr/bin/env python2.7 -# -*- coding: utf-8 -*- - -"""Example of a recursive function with a good docstring. - -For best results to view the docstring, after importing do: - - >>> print ack.__doc__ - -Its value grows rapidly, even for small inputs. For example A(4,2) is an -integer of 19,729 decimal digits. May hit maximum recursion limit. See: - - sys.getrecursionlimit() - sys.setrecursionlimit() - -""" - -def ack(m, n): - """Evaluation of the Ackermann Function. - - The Ackermann Function is defined as: - A(m, n) = - n+1 if m = 0 - A(m−1, 1) if m > 0 and n = 0 - A(m−1, A(m, n−1)) if m > 0 and n > 0 - - Args: - m (int): must be >= 0 - n (int): must be >= 0. - - Yields: - Evaluation of Ackermann function for A(m, n) - - """ - - if (m < 0 or n < 0): - print "Arguments for the Ackermann function must be >= 0." - return None - elif (m == 0): - return n + 1 - elif (n == 0): - return ack(m - 1, 1) - else: - return ack(m - 1, ack(m, n - 1)) - -if __name__ == '__main__': - TestsPass = True - - try: - assert ack(0, 0) == 1 - assert ack(0, 1) == 2 - assert ack(0, 2) == 3 - assert ack(0, 3) == 4 - assert ack(0, 4) == 5 - assert ack(1, 0) == 2 - assert ack(1, 1) == 3 - assert ack(1, 2) == 4 - assert ack(1, 3) == 5 - assert ack(1, 4) == 6 - assert ack(2, 0) == 3 - assert ack(2, 1) == 5 - assert ack(2, 2) == 7 - assert ack(2, 3) == 9 - assert ack(2, 4) == 11 - assert ack(3, 0) == 5 - assert ack(3, 1) == 13 - assert ack(3, 2) == 29 - assert ack(3, 3) == 61 - assert ack(3, 4) == 125 - assert ack(4, 0) == 13 - - except AssertionError: - TestsPass = False - print "All Tests Did Not Pass!" - - if (TestsPass): - print "All Tests Pass!" - diff --git a/Students/imdavis/session02/series.py b/Students/imdavis/session02/series.py deleted file mode 100755 index 69b7b434..00000000 --- a/Students/imdavis/session02/series.py +++ /dev/null @@ -1,127 +0,0 @@ -#!/usr/bin/env python2.7 -# -*- coding: utf-8 -*- - -def fibonacci(n): - """Evaluation of the nth term of the Fibonnaci Series. - - The Fibonnaci Series is defined as: - 0th term: 0 - 1st term: 1 - nth term: sum of previous two terms in the series - - Args: - n (int): nth term in series (must be >= 0) - - Yields: - nth term of the Fibonnaci Series. - - """ - - if (n < 0): - print "Arguments for the Fibonnaci series must be >= 0." - return None - elif (n == 0): # zeroth term = 0 - return 0 - elif (n == 1): # first term = 1 - return 1 - else: - return fibonacci(n - 1) + fibonacci(n - 2) - -def lucas(n): - """Evaluation of the nth term of the Lucas Series. - - The Lucas Series is defined as: - 0th term: 2 - 1st term: 1 - nth term: sum of previous two terms in the series - - Args: - n (int): nth term in series (must be >= 0) - - Yields: - nth term of the Lucas Series. - - """ - - if (n < 0): - print "Arguments for the Lucas series must be >= 0." - return None - elif (n == 0): # zeroth term = 0 - return 2 - elif (n == 1): # first term = 1 - return 1 - else: - return lucas(n - 1) + lucas(n - 2) - -def sum_series(n, zerothTerm=0, firstTerm=1): - """Evaluation of the nth term of a series. - - This function will return the nth term in a series which is the sum - of the previous two consecutive terms in the series. The user can - specify any zeroth and first terms to define the series, or can use - the default values of 0 and 1 to give the n-th term of the - Fibonacci series. - - Args: - n (int): nth term in series (must be >= 0) - zerothTerm (int): zeroth term in the series (default = 0) - firstTerm (int): first term in the series (default = 1) - - Yields: - nth term of the series. - - """ - - if (n < 0): - print "Arguments for the series must be >= 0." - return None - elif (n == 0): - return zerothTerm - elif (n == 1): - return firstTerm - else: - return sum_series(n - 1, zerothTerm, firstTerm) + sum_series(n - 2, zerothTerm, firstTerm) - - -if __name__ == '__main__': - FibanocciTestsPass = True - LucasTestsPass = True - ArbitrarySeriesTestsPass = True - - # Some assertions to test the Fibonacci series function against known solutions - try: - assert fibonacci(0) == 0 - assert fibonacci(1) == 1 - assert fibonacci(10) == 55 - assert fibonacci(19) == 4181 - - except AssertionError: - FibanocciTestsPass = False - print "All Fibonacci Tests Did Not Pass!" - - # Some assertions to test the Lucas series function against known solutions - try: - assert lucas(0) == 2 - assert lucas(1) == 1 - assert lucas(10) == 123 - assert lucas(20) == 15127 - - except AssertionError: - LucasTestsPass = False - print "All Lucas Tests Did Not Pass!" - - # Some assertions to test the arbitrary series function against known solutions - try: - assert sum_series(10) == 55 - assert sum_series(10, 0, 1) == 55 - assert sum_series(10, 2, 1) == 123 - assert sum_series(15, 3, 3) == 2961 - assert sum_series(20, 5, 2) == 34435 - assert sum_series(20, 2, 5) == 42187 - - except AssertionError: - ArbitrarySeriesTestsPass = False - print "All aritrary series tests did not pass" - - if (FibanocciTestsPass and LucasTestsPass and ArbitrarySeriesTestsPass): - print "All Tests Pass!" diff --git a/Students/imdavis/session03/list_lab.py b/Students/imdavis/session03/list_lab.py deleted file mode 100755 index 3939dfb0..00000000 --- a/Students/imdavis/session03/list_lab.py +++ /dev/null @@ -1,61 +0,0 @@ -#!/usr/bin/env python2.7 -fruits = ["Apples", "Pears", "Oranges", "Peaches"] - -print "List of fruit: ", fruits - -fruits.append(raw_input("Add another fruit: ")) -print "Added your fruit to the list: ", fruits - -fruit_num = int(raw_input("Give the number of your favorite fruit: ")) - -if(fruit_num <= 0 or fruit_num > len(fruits)): - print "The fruit # you entered: ", fruit_num, "you entered is not in the list!" -else: - print "Your favorite fruit is #:", fruit_num, ":", fruits[fruit_num - 1] - -fruits = [raw_input("Add a fruit to the beginning of the list: ")] + fruits -print "Added your new fruit to the front of the list: ", fruits - -fruits.insert(0, raw_input("Add another fruit to the beginning of the list in a different way: ")) -print "Added your new fruit to the front of the list: ", fruits - -print "All the fruits in the list that begin with 'P':" -aPfruit = False -for afruit in fruits: - if ("P" in afruit): - aPfruit = True - print afruit -if (not aPfruit): - print "None of the fruits start with 'P'" - -print "Here is the current list of fruits:", fruits -print "Removing the last one from the list:", fruits.pop() -print fruits - -fruits.remove(raw_input("What fruit would you like to delete from the list: ")) -print fruits - -# iterate over a copy, hence the "fruits[:]:" -fruits = ["Apples", "Pears", "Oranges", "Peaches"] -for fruit in fruits[:]: - likefruit = "" - afruit = fruit.lower() - while (likefruit != "yes" and likefruit != "no"): - likefruit = raw_input("Do you like " + afruit + "?: ") - likefruit = likefruit.lower() - if(likefruit != "yes" and likefruit != "no"): - print "You entered: ", likefruit, "which is not valid" - print "Please enter 'yes' or 'no'" - if(likefruit == "no"): - fruits.remove(fruit) -print fruits - -# Make a shallow copy, and reverse the letters of each fruit in the copy -fruits = ["Apples", "Pears", "Oranges", "Peaches"] -fruits_copy = fruits[:] -for i, fruit in enumerate(fruits_copy): - fruits_copy[i] = fruit[::-1] - -# Delete the last item of the original list, and display the list and the copy -fruits.pop() -print fruits_copy, fruits \ No newline at end of file diff --git a/Students/imdavis/session03/mailroom/mailroom.py b/Students/imdavis/session03/mailroom/mailroom.py deleted file mode 100755 index 9ad33e12..00000000 --- a/Students/imdavis/session03/mailroom/mailroom.py +++ /dev/null @@ -1,40 +0,0 @@ -#!/usr/bin/env python2.7 - -from mailroomfunct import * - -# Hardcoded original group of donors and donation amounts -donors = [] -donors.append(("Robert Plant", [15.00, 25.32, 100.50])) -donors.append(("Sandra Bullock", [12.50, 2.25])) -donors.append(("Richard D. James", [1500.34, 2349.99])) -donors.append(("Slash", [1.00, 10.99])) -donors.append(("Jessica Alba", [13.49])) - -# Initial greeting at startup -print "Welcome to Mailrooom, buddy!" - -# Call the prompt function to ask the user what they would like to do -todo = "" -# keep looping with prompts until the user says to exit -while (todo != "exit"): - # send a thank you block - todo = prompt1() - if(todo == "send a thank you"): - # get the index of existing or new donor - indexofdonor = donorindex(donors) - # get the donation amount - donation = newdonation(donors[indexofdonor][0]) - # add the new donation amount to the appropriate donor - donors[indexofdonor][1].append(donation) - # update the user of who the donor is and their updated donation history - print "Donor:", donors[indexofdonor][0] - print "Donation History:", donors[indexofdonor][1] - # compose the email message thanking the donor for their recent donation - composemail(donors[indexofdonor][0], donors[indexofdonor][1][-1]) - # create a report block - elif(todo == "create a report"): - # print a header for the report table - formattable("Donor Name", "Total Donations", "Number of Donations", "Average Donation ($)") - # print each row of the table for each donor - for i in range(len(donors)): - print_donor_row(donors[i][0], donors[i][1]) diff --git a/Students/imdavis/session03/mailroom/mailroomfunct.py b/Students/imdavis/session03/mailroom/mailroomfunct.py deleted file mode 100755 index 343ab1dc..00000000 --- a/Students/imdavis/session03/mailroom/mailroomfunct.py +++ /dev/null @@ -1,138 +0,0 @@ -#!/usr/bin/env python2.7 -# -*- coding: utf-8 -*- - -""" - A set of functions which support the mailroom main program. - Do: - >>> print functname.__doc__ - for the docstring for each. - -""" - -def prompt1(): - """ - This function will prompt the user for one of the available actions: - 'send a thank you', 'create a report', or 'exit'. It will keep looping - through until one of those options (or it's shortcut) is given. - """ - request = None - action1 = "send a thank you" - action2 = "create a report" - action3 = "exit" - while ( (request != action1) and (request != action2) and (request != action3) ): - orig_request = raw_input("'(S)end a thank you', '(C)reate a report', or '(E)xit' ?> ") - # let us only deal with lower case versions of the actions to minimize testing. - request = orig_request.lower() - if(request == "s" or request == action1): - print "Ok, let's", action1 - return action1 - elif(request == 'c' or request == action2): - print "Ok, let's", action2 - return action2 - elif(request == 'e' or request == action3): - print "Exiting" - return action3 - else: - # if the user doesn't enter an available action, let them know where they went astray. - print "You entered: '", orig_request, "'" - print "Please enter '(S)end a thank you' or '(C)reate a report', or '(E)xit'." - -def finddonorindex(donors, adonor): - """ - This function takes the list of donors and the 'adonor' string, which is either an existing - donor name or a new one. If 'adonor' is an existing donor name, return the index of that - donor in our data structure. If the name doesn't exist in our list, add the name to the list of - donors (along with an empty list to populate with donations) and return the index of the new - entry. - """ - indexcount = 0 - for name, donations in donors: - if name == adonor: - return indexcount - indexcount += 1 - print "Requested donor :'", adonor, "' not found in existing list." - print "Adding donor :'", adonor, "' to the list..." - donors.append((adonor, [])) - return indexcount - -def donorindex(donors): - """ - This function will prompt the user if they want a print out of the existing user list and if so, - print it, or return the index of a given donor. - - This makes use of the 'finddonorindex' function above. - """ - action1 = "list donor" - request = action1 - index = None - newdonor = False - while ( request == action1 ): - orig_request = raw_input("Enter an existing donor name or select '(l)ist donor' to see a list of donors > ") - request = orig_request.lower() - if(request == "l" or request == action1): - request = action1 - print "The existing donors are:" - for name,donations in donors: - print name - else: - index = finddonorindex(donors, orig_request) - return index - -def is_number(s): - """ - Couldn't get str.isnumeric working with unicode. This function checks to see - if a string will convert to float ok. - """ - try: - float(s) - return True - except ValueError: - return False - -def newdonation(donorname): - """ - This function check that the new amount entered for a donor is a valid float. - If so, it returns the amount, if not, it tells you so and asks again. - - This makes use of the 'is_number' function above. - """ - validamount = False - message = "Enter a new donaton amount for donor '" + donorname + "' > " - while (not validamount): - amount = raw_input(message) - validamount = is_number(amount) - if (validamount): - return float(amount) - else: - print "You entered: '", amount, "' which is not a valid donation amount." - -def composemail(donorname, recentdonation): - """ - Compose a message to the donor thanking them and rounding the donation amount to the penny. - Uses string formatting. - """ - message = "\n\nDear {donor},\nThank you very much for your most recent donation of ${donation:.2f}\n".format(donor=donorname, donation=recentdonation) - message +="Please consider donating to our charity again in the future.\nSincerely,\nIan Davis\n\n" - print message - -def sumdonations(donationlist): - """ - Simple function to sum donation amounts in a list past to it. - """ - sum = 0.0 - for amount in donationlist: - sum += amount - return sum - -def formattable(donor, total, ndonations, ave): - print "{donor:^20}{total:^20}{ndonations:^20}{ave:^20}".format(donor=donor, total=total, ndonations=ndonations, ave=ave) - - -def print_donor_row(donorname, donationlist): - """ - Simple function that gets passed the donor name and list of donations for that donor, - and computes the total donation amount, the average donation, and prints a table. - """ - total_donated = sumdonations(donationlist) - ave_donation = total_donated/len(donationlist) - formattable(donorname, total_donated, len(donationlist), ave_donation) diff --git a/Students/imdavis/session03/rot13/encrypt.py b/Students/imdavis/session03/rot13/encrypt.py deleted file mode 100755 index a117b010..00000000 --- a/Students/imdavis/session03/rot13/encrypt.py +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env python2.7 - -from translate import rot13 - -astring = raw_input("Enter a string to encrypt > ") -encrypted_string = rot13(astring) - -print "Original string:", astring -print "Encrypted string:", encrypted_string \ No newline at end of file diff --git a/Students/imdavis/session03/rot13/translate.py b/Students/imdavis/session03/rot13/translate.py deleted file mode 100755 index cc5d6fc7..00000000 --- a/Students/imdavis/session03/rot13/translate.py +++ /dev/null @@ -1,70 +0,0 @@ -#!/usr/bin/env python2.7 -# -*- coding: utf-8 -*- - -""" - Some functions to create a basic substitution cypher. - Any letter in the alphabet is replaced with the letter 13 spaces away - The 'rotation' variable can be modified to set the rotation to something - other than 13. A rotation of 13 makes it such that, you can encrypt and - decrypt using these functions, since there are 26 letters in the alphabet. - This is designed to leave whitespace, punctuation, and capitalization - intact in the encrypted string as in the original. - - Lowercase a-z are ordinals 197 -122 (enclusive) - For example: ord('s') = 115 and chr(115) = 's' - -""" - -def lowercase(substring): - """ - Convert a string to lower case so that we only have to deal with - the ordinal values for the lowercase letters. - """ - if(substring.islower()): - alower = True - else: - alower = False - substring = substring.lower() - return alower, substring - -def encrpt_letter(substring, rot): - """ - Find the ordinal of the encrypted letter - """ - letter_pos = ord(substring) + rot - if(letter_pos > 122): - letter_pos = 97 + (letter_pos%122 - 1) - return chr(letter_pos) - -def rot13(user_string): - """ - Take the user string and create the encrypted string - """ - cipher_string = "" - rotation=13 - atoz_range = range(97, 123) - for aletter in user_string: - lower, aletter = lowercase(aletter) - if( ord(aletter) in atoz_range): - cipher_letter = encrpt_letter(aletter, rotation) - if(not lower): - cipher_letter = cipher_letter.swapcase() - else: - cipher_letter = aletter - cipher_string += cipher_letter - return cipher_string - -# Some basic testing -if __name__ == '__main__': - teststring1 = "Magnetic from outside near corner" - teststring2 = "Zntargvp sebz bhgfvqr arne pbeare" - teststring3 = "A string of some stuff with SOME CAPS and numbers 1, 4, 75, etc. ?#$, yeah!" - teststring4 = "N fgevat bs fbzr fghss jvgu FBZR PNCF naq ahzoref 1, 4, 75, rgp. ?#$, lrnu!" - try: - assert rot13(teststring1) == teststring2 - assert rot13(teststring2) == teststring1 - assert rot13(teststring3) == teststring4 - assert rot13(teststring4) == teststring3 - - except AssertionError: - print "Tests did not pass!" \ No newline at end of file diff --git a/Students/imdavis/session04/dictlab.py b/Students/imdavis/session04/dictlab.py deleted file mode 100755 index 1a067f69..00000000 --- a/Students/imdavis/session04/dictlab.py +++ /dev/null @@ -1,72 +0,0 @@ -#!/usr/bin/env python2.7 - -# # 1: -d = {"name": "Chris", "city": "Seattle", "cake": "Chocolate"} -print d - -# delete the cake entry -d.pop("cake") -print d - -d2 = {"fruit": "mango"} -d.update(d2) -print d -print d.keys() -print d.values() -print "Is 'cake' in 'd'?:", ("cake" in d) - -# #2: Dictionary of integers and hex equivalents -l1=[] -l2=[] -for i in range(16): - l1.append(i) - l2.append(hex(i)) - -newdict = dict( zip(l1, l2) ) -print newdict -# 3: Dictionary of same keys as #1 above, but with values which are the -# number of t's in the previous values. -d = {"name": "Chris", "city": "Seattle", "cake": "Chocolate"} -print d -dts = {} -for k, v in d.items(): - dts.update({k: v.count("t")}) - -print dts - -# #4: sets s2, s3, and s4 containing those numbers from 0-20 which are -# evenly divisible by 2, 3, and 4, respectively -s2 = set() -s3 = set() -s4 = set() - -for i in range(21): - if(i%2 == 0): - s2.update([i]) - if(i%3 == 0): - s3.update([i]) - if(i%4 == 0): - s4.update([i]) - -print "s2 = ", s2 -print "s3 = ", s3 -print "s4 = ", s4 - -print "Is s3 a subset of s2?", s3.issubset(s2) -print "Is s4 a subset of s2?", s4.issubset(s2) - -# #5: 'Python' set and 'marathon' set -pyset = set() -for c in "Python": - pyset.update([c]) -pyset.update(["i"]) - -print pyset - -marathon_set = set() -for c in "marathon": - marathon_set.update([c]) -marathon_set = frozenset(marathon_set) - -print "Union of 'Python' and 'marathon':", pyset.union(marathon_set) -print "Intersection of 'Python' and 'marathon':", pyset.intersection(marathon_set) diff --git a/Students/imdavis/session04/mailroom/mailroom.py b/Students/imdavis/session04/mailroom/mailroom.py deleted file mode 100755 index 3badd82f..00000000 --- a/Students/imdavis/session04/mailroom/mailroom.py +++ /dev/null @@ -1,41 +0,0 @@ -#!/usr/bin/env python2.7 - -from mailroomfunct import prompt1, whichdonor, newdonation, composemail, \ - formattable, print_donor_row - -# Hardcoded original group of donors and donation amounts as a dictionary -donors = {} -donors.update({ "Robert Plant" : [15.00, 25.32, 100.50] }) -donors.update({ "Sandra Bullock" : [12.50, 2.25] }) -donors.update({ "Richard D. James" : [1500.34, 2349.99] }) -donors.update({ "Slash" : [1.00, 10.99] }) -donors.update({ "Jessica Alba" : [13.49] }) - -# Initial greeting at startup -print "Welcome to Mailrooom, buddy!" - -# Call the prompt function to ask the user what they would like to do -todo = "" -# keep looping with prompts until the user says to exit -while (todo != "exit"): - # send a thank you block - todo = prompt1() - if(todo == "send a thank you"): - # get the index of existing or new donor - donor = whichdonor(donors) - # get the donation amount - donation = newdonation(donor) - # add the new donation amount to the appropriate donor - donors[donor].append(donation) - # update the user of who the donor is and their updated donation history - print "Donor:", donor - print "Donation History:", donors[donor] - # compose the email message thanking the donor for their recent donation - composemail(donor, donation) - # create a report block - elif(todo == "create a report"): - # print a header for the report table - formattable("Donor Name", "Total Donations", "Number of Donations", "Average Donation ($)") - # print each row of the table for each donor - for donor, donations in donors.items(): - print_donor_row(donor, donations) diff --git a/Students/imdavis/session04/mailroom/mailroomfunct.py b/Students/imdavis/session04/mailroom/mailroomfunct.py deleted file mode 100755 index 27439504..00000000 --- a/Students/imdavis/session04/mailroom/mailroomfunct.py +++ /dev/null @@ -1,138 +0,0 @@ -#!/usr/bin/env python2.7 -# -*- coding: utf-8 -*- - -from textwrap import dedent -import math - -""" - A set of functions which support the mailroom main program. - Do: - >>> print functname.__doc__ - for the docstring for each. - -""" - -def prompt1(): - """ - This function will prompt the user for one of the available actions: - 'send a thank you', 'create a report', or 'exit'. It will keep looping - through until one of those options (or it's shortcut) is given. - """ - request = None - action1 = "send a thank you" - action2 = "create a report" - action3 = "exit" - while ( (request != action1) and (request != action2) and (request != action3) ): - orig_request = raw_input("'(S)end a thank you', '(C)reate a report', or '(E)xit' ?> ") - # let us only deal with lower case versions of the actions to minimize testing. - request = orig_request.lower() - if(request == "s" or request == action1): - print "Ok, let's", action1 - return action1 - elif(request == 'c' or request == action2): - print "Ok, let's", action2 - return action2 - elif(request == 'e' or request == action3): - print "Exiting" - return action3 - else: - # if the user doesn't enter an available action, let them know where they went astray. - print "You entered: '", orig_request, "'" - print "Please enter '(S)end a thank you' or '(C)reate a report', or '(E)xit'." - -# def finddonorindex(donors, adonor): -# """ -# This function takes the list of donors and the 'adonor' string, which is either an existing -# donor name or a new one. If 'adonor' is an existing donor name, return the index of that -# donor in our data structure. If the name doesn't exist in our list, add the name to the list of -# donors (along with an empty list to populate with donations) and return the index of the new -# entry. -# """ -# indexcount = 0 -# for name, donations in donors: -# if name == adonor: -# return indexcount -# indexcount += 1 -# print "Requested donor :'", adonor, "' not found in existing list." -# print "Adding donor :'", adonor, "' to the list..." -# donors.append((adonor, [])) -# return indexcount - -def whichdonor(donors): - """ - This function will prompt the user if they want a print out of the existing user list and if so, - print it, or return the index of a given donor. - - This makes use of the 'finddonorindex' function above. - """ - action1 = "list donor" - donor = "" - request = action1 - while ( request == action1 ): - request = raw_input("Enter an existing donor name or select '(l)ist donor' to see a list of donors > ") - if(request.lower() == "l" or request.lower() == action1): - print "The existing donors are:" - for name,donations in donors.items(): - print name - request = action1 - elif(request in donors): - donor = request - else: - print "Requested donor :'%s' not found in existing list."%request - print "Adding donor :'%s' to the list..."%request - donor = request - donors.update({ donor : [] }) - return donor - -def newdonation(donorname): - """ - This function check that the new amount entered for a donor is a valid float. - If so, it returns the amount, if not, it tells you so and asks again. - - This makes use of the 'is_number' function above. - """ - message = "Enter a new donaton amount for donor '" + donorname + "' > " - while (True): - amount = raw_input(message) - try: - return float(amount) - except ValueError: - print "You entered: '%s' which is not a valid donation amount."%amount - -def composemail(donorname, recentdonation): - """ - Compose a message to the donor thanking them and rounding the donation amount to the penny. - Uses string formatting. - """ - message = dedent(''' - Dear {donor}, - - Thank you very much for your most recent donation of ${donation:.2f} - Please consider donating to our charity again in the future. - - Sincerely, - Ian Davis - - '''.format(donor=donorname, donation=recentdonation)) - print message - - # write the message to a file also - filename = donorname+"-mail.txt" - try: - mailfile = open(filename, 'w') - mailfile.write(message) - mailfile.close() - except IOError: - print "Sorry...couldn't open %s"%filename - -def formattable(donor, total, ndonations, ave): - print"{:^20}{:^20}{:^20}{:^20}".format(donor, total, ndonations, ave) - -def print_donor_row(donorname, donationlist): - """ - Simple function that gets passed the donor name and list of donations for that donor, - and computes the total donation amount, the average donation, and prints a table. - """ - total_donated = sum(donationlist) - ave_donation = total_donated/len(donationlist) - formattable(donorname, total_donated, len(donationlist), ave_donation) diff --git a/Students/imdavis/session04/paths.py b/Students/imdavis/session04/paths.py deleted file mode 100755 index cf810b16..00000000 --- a/Students/imdavis/session04/paths.py +++ /dev/null @@ -1,30 +0,0 @@ -#!/usr/bin/env python2.7 - -import pathlib -pth = pathlib.Path.cwd() -print "Current path:", pth - -print "\nList of files and directories:" -for f in pth.iterdir(): - if f.is_dir(): - print "Directory:", f - elif f.is_file(): - print "File:", f - -# a dumb way to copy a file from source to destination -srcpth = '/home/ian/UWPython/class4/homework4' -destpth = '/home/ian/UWPython/class4/homework4/newdirectory/subdirectory/' -srcdir = pathlib.Path(srcpth) -destdir = pathlib.Path(destpth) -filename = 'afile.txt' - -print "\nMoving file:", filename -print " From:", srcdir -print " To :", destdir - -f = open(srcpth+"/"+filename) -fcpy = open(destpth+"/"+filename, 'w') -for line in f: - fcpy.write(line) -f.close() -fcpy.close() \ No newline at end of file diff --git a/Students/imdavis/session04/safeinput.py b/Students/imdavis/session04/safeinput.py deleted file mode 100755 index f8f9f263..00000000 --- a/Students/imdavis/session04/safeinput.py +++ /dev/null @@ -1,34 +0,0 @@ -#!/usr/bin/env python2.7 - -# This function takes the ^D or ^C to mean that the user wants to -# exit the script when the script is waiting for raw_input -def safeinput(astring): - try: - todo = raw_input(astring + " > ") - except (EOFError, KeyboardInterrupt): - todo = "exit" - return todo - - -# This will either print something to the screen or exit gracefully -# when aske to exit either from the prompt or using ^C or ^D -request = None -action1 = "print" -action2 = "exit" -promptstring = "'(P)rint' or '(E)xit' ?" -promptstring2 = "Give me something to echo: " -while (request != action2): - orig_request = safeinput(promptstring) - request = orig_request.lower() - if(request == "exit" or request == "e"): - print "Ok, exiting!" - request = "exit" - elif(request == "print" or request == "p"): - toprint = safeinput(promptstring2) - if(toprint.lower() == "exit" or toprint.lower() == "e"): - print "Ok, exiting!" - request = "exit" - else: - print toprint - else: - print "Your request was not valid" \ No newline at end of file diff --git a/Students/imdavis/session04/trigram.py b/Students/imdavis/session04/trigram.py deleted file mode 100755 index d2e9e150..00000000 --- a/Students/imdavis/session04/trigram.py +++ /dev/null @@ -1,56 +0,0 @@ -#!/usr/bin/env python2.7 - -# This is really ugly right now. No functions, light on comments, -# but it appears to work ok. I will clean up a bit if I have time -# this week. - -import string -import sys -import random - -allwords = [] -strip = string.whitespace + string.punctuation + "\"'" - -# read in the file and store words in file as a list -for filename in sys.argv[1:]: - for line in open(filename): - cleanline = line.lower().split() - if(len(cleanline) != 0): - for word in cleanline: - allwords.append(word.strip(strip)) - -# build the trigram -trigram = {} -for i in range( len(allwords) - 3 ): - keytuple = (allwords[i], allwords[i+1]) - if(keytuple in trigram): - trigram[keytuple].append(allwords[i+2]) - else: - trigram.update({ keytuple : [ allwords[i+2] ] }) - -# begin with a random key -random_beginning = random.choice(trigram.keys()) - -newtext = [] -for word in random_beginning: - newtext.append(word) -newtext.append( random.choice( trigram[random_beginning] ) ) - -for keys in trigram.keys(): - keytuple = (newtext[-2], newtext[-1]) - newtext.append( random.choice( trigram[keytuple] ) ) - -# textstring = " ".join(newtext) - -for i, word in enumerate(newtext): - if (i%20 == 0): - print - elif (i%250 == 0): - print "\n" - else: - print word, - -# for k, v in trigram.items(): -# for word in k: -# print word, -# print ": ", v diff --git a/Students/imdavis/session05/args.py b/Students/imdavis/session05/args.py deleted file mode 100755 index f26d0e03..00000000 --- a/Students/imdavis/session05/args.py +++ /dev/null @@ -1,36 +0,0 @@ -#!/usr/bin/env python2.7 -from textwrap import dedent - -def colors(**kwargs): - print "Colors are: {fore_color} {back_color} {link_color} {visited_color}".format(**kwargs) - - -colors(fore_color='white', back_color='black', link_color='red', visited_color='orange') - -def colors2(fore_color, back_color, link_color='red', visited_color='orange'): - print "Colors are: %s %s %s %s"%(fore_color, back_color, link_color, visited_color) - -two_colors = ('white', 'black') -other_colors = {'link_color' : 'yellow', 'visited_color' : 'purple'} - -colors2(*two_colors) -colors2(*two_colors, **other_colors) - -def colors3 (fore_color='white', back_color='black', link_color='red', visited_color='orange', **kwargs): - message = dedent(''' - Required variable colors are: - fore_color : {fore_color} - back_color : {back_color} - link_color : {link_color} - visited_color : {visited_color} - '''.format(fore_color=fore_color, back_color=back_color, link_color=link_color, visited_color=visited_color) ) - print message - if ( len(kwargs) > 0 ): - for k, v in kwargs.items(): - print "{0} : {1}".format(k, v) - -colors3() -colors3("orange", "white", "black", "red") - -other_colors = {'special_characters' : 'purple', "code_text" : "green"} -colors3("blue", "yellow", "chartruse", "brown", **other_colors) diff --git a/Students/imdavis/session05/comprehensions.py b/Students/imdavis/session05/comprehensions.py deleted file mode 100755 index 3e319cd1..00000000 --- a/Students/imdavis/session05/comprehensions.py +++ /dev/null @@ -1,91 +0,0 @@ -#!/usr/bin/env python2.7 - -newlist = [ x+y for x in range(3) for y in range(5, 7) ] -print newlist - -feast = ['lambs', 'sloths', 'orangutans', 'breakfast cereals', 'fruit bats'] -comprehension = [delicacy.capitalize() for delicacy in feast] -print comprehension - -print comprehension[0] -print comprehension[2] - -comprehension = [ delicacy for delicacy in feast if len(delicacy) > 6 ] -print comprehension - -print len(feast) -print len(comprehension) - -list_of_tuples = [ (1, 'lumberjack'), (2, 'inquisition'), (4, 'spam') ] -comprehension = [ skit * number for number, skit in list_of_tuples ] -print comprehension -print comprehension[0] -print len(comprehension[2]) - -list_of_eggs = ['poached egg', 'fried egg'] -list_of_meats = ['lite spam', 'ham spam', 'fried spam'] -comprehension = [ '{0} and {1}'.format(egg, meat) for egg in list_of_eggs for meat in list_of_meats ] -print comprehension -print len(comprehension) -print comprehension[0] - -comprehension = { x for x in 'aabbbcccc' } -print comprehension - -dict_of_weapons = { 'first' : 'fear', - 'second' : 'surprise', - 'third' : 'ruthless efficiency', - 'forth' : 'fanatical devotion', - 'fifth' : None } -dict_comprehension = \ -{ k.upper(): weapon for k, weapon in dict_of_weapons.iteritems() if weapon } -print dict_comprehension -print 'first' in dict_comprehension -print 'FIRST' in dict_comprehension -print len(dict_of_weapons) -print len(dict_comprehension) - -def count_evens(nums): - print len([evens for evens in nums if evens%2==0]) - -numberlist = [2, 1, 2, 3, 4, 6, 8, 11, 13] -numberlist2 = [2, 2, 0] -numberlist3 = [1, 3, 5] -count_evens(numberlist) -count_evens(numberlist2) -count_evens(numberlist3) - -food_prefs = { "name" : "Chris", - "city" : "Seattle", - "cake" : "chocolate", - "fruit" : "mango", - "salad" : "greek", - "pasta" : "lasagna" } -print "{name} is from {city} and likes {cake} cake, {fruit} fruit, {salad} salad, and {pasta} pasta.".format(**food_prefs) - -hexequiv = [ hex(i) for i in range(16) ] -hexdict = dict( zip(range(16), hexequiv) ) -print hexdict - -hexdict = dict( zip(range(16), [hex(i) for i in range(16)]) ) -print hexdict - -food_prefs_a = { k : weapon.count("a") for k, weapon in dict_of_weapons.iteritems() if weapon } -print food_prefs_a - -s2 = { i for i in range(21) if i%2==0 } -s3 = { i for i in range(21) if i%3==0 } -s4 = { i for i in range(21) if i%4==0 } - -print "s2 = ", s2 -print "s3 = ", s3 -print "s4 = ", s4 - -dividers = (2, 3, 4) -dict_of_dividers = {} -for d in dividers: - dict_of_dividers.update({ d: {i for i in range(21) if i%d == 0} }) - -print "s2 = ", dict_of_dividers[2] -print "s3 = ", dict_of_dividers[3] -print "s4 = ", dict_of_dividers[4] diff --git a/Students/imdavis/session05/make10.py b/Students/imdavis/session05/make10.py deleted file mode 100755 index b29d891a..00000000 --- a/Students/imdavis/session05/make10.py +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/env python2.7 - -def make10(a, b): - """ - Simple function which takes on two arguments and returns 'True' if - either of them is 10, or their sum is 10. Returns 'False' otherwise. - """ - if(a == 10 or b == 10): - return True - else: - try: - if (a + b == 10): - return True - else: - return False - except (TypeError): - print "Sorry, cannot do {0} + {1}".format(a, b) - return False diff --git a/Students/imdavis/session05/test_make10.py b/Students/imdavis/session05/test_make10.py deleted file mode 100755 index e9f572a4..00000000 --- a/Students/imdavis/session05/test_make10.py +++ /dev/null @@ -1,25 +0,0 @@ -""" -Testing of my make10 function - -Make sure that pytest is installed. -Since the name of this testing script file begins with 'test_' -pytest will find it and run it. - -In the directory where this file lives, simply do: - $ py.test - -For more information, see: www.pytest.org -""" -import pytest -from make10 import make10 - -test_data = [ ( ( 10, 3), True), - ( ( "a", 10), True), - ( ( 9, "b"), False), - ( ( 12, -2), True), - ( ( 8, 3), False), - ( ( "a", "b"), False) ] - -@pytest.mark.parametrize(("input", "result"), test_data) -def test_make10(input, result): - assert make10(*input) == result \ No newline at end of file diff --git a/Students/imdavis/session06/cleanfile.py b/Students/imdavis/session06/cleanfile.py deleted file mode 100755 index 0ab2c527..00000000 --- a/Students/imdavis/session06/cleanfile.py +++ /dev/null @@ -1,34 +0,0 @@ -#!/usr/bin/env python2.7 - -# cleans a file of leading and trailing whitespace - -import sys - -def strip_whitespace(astring): - """ - Simple function that takes a string as an argument and cleans - leading and trailing whitespace - """ - return astring.strip() - -readfile = open(sys.argv[1], 'r') # file name to be cleaned -# new file name to write to -newfile = open(raw_input("'(N)ew clean file name' ?> "), 'w') - -# lines = [] -# for line in readfile: -# # add each new line in the file to the list -# lines.append(line) -# # use a map to clean each element of leading and trailing whitespace -# cleanlines = map(strip_whitespace, lines) - -# This is much cleaner than the above. Since the file object "readfile" -# is an iterator, we don't need to loop over it like in the above, but -# do this instead: -cleanlines = map(strip_whitespace, readfile) - -# write the cleaned lines to the new file -for line in cleanlines: - newfile.write(line + "\n") -newfile.close() - diff --git a/Students/imdavis/session06/html_render.py b/Students/imdavis/session06/html_render.py deleted file mode 100755 index 3a1a00b9..00000000 --- a/Students/imdavis/session06/html_render.py +++ /dev/null @@ -1,127 +0,0 @@ -#!/usr/bin/env python - -""" -Class for building up an HTML document from strings -""" - -class Element(object): - indent_spaces = " " - tag = "html" - attrib = "" - def __init__(self, content=None, **attributes): - """ - If no content is passed in at initialization of the object, - initialize an empty list otherwise put the content passed in - into a list - """ - if (not content): - self.content = [] - else: - self.content = [content] - self.attributes = attributes - - def append(self, new_content): - # append the new content to the list - if new_content: - self.content.append(new_content) - - def render_tag(self, current_ind): - attribs = "".join([' {}="{}"'.format(k, v) for k, v in self.attributes.items()]) - tag_str = "{}<{}{}>".format(current_ind, self.tag, attribs) - return tag_str - - def render(self, file_out, ind=""): - """ - Be able to handle a string or an 'Element' object as and element - of the self.content list - """ - file_out.write(self.render_tag(ind)) - file_out.write("\n") - # This could be a string or an Element object - for obj in self.content: - # if a string is the content, handle it this way - try: - file_out.write( ind + self.indent_spaces + obj + "\n" ) - # if an "Element" object is the content, handle this way - # keeping track of indentation - except (TypeError): - obj.render(file_out, self.indent_spaces + ind ) - file_out.write("{}\n".format(ind, self.tag)) - -class Html(Element): - tag = "html" - def render(self, file_out, ind=""): - """ - Extension of the render method inherited for this subclass to - write the DOCTYPE at the top of the page - """ - file_out.write("\n".format(self.tag)) - Element.render(self, file_out, ind="") - -class Body(Element): - tag = "body" - -class P(Element): - tag = "p" - -class Head(Element): - tag = "head" - -class OneLineTag(Element): - def render(self, file_out, ind=""): - """ - Extend the render method we inherit from 'Element' to write the - title content and tags in a single line. - """ - file_out.write(self.render_tag(ind)) - # print the contents of this object on the same line within the tag - for obj in self.content: - file_out.write(obj) - file_out.write("\n".format(self.tag)) - -class Title(OneLineTag): - tag = "title" - -class SelfClosingTag(Element): - def render(self, file_out, ind=""): - """ - Extend the render method to render just the one tag and - attributes, if any. - """ - file_out.write(ind + "<{} />\n".format(self.tag)) - -class Hr(SelfClosingTag): - tag = "hr" - -class Br(SelfClosingTag): - tag = "br" - -class A(OneLineTag): - tag = "a" - def __init__(self, link, content=None, **attributes): - OneLineTag.__init__(self, content, **attributes) - self.attributes["href"] = link - -class H(OneLineTag): - def __init__(self, level, content=None, **attributes): - OneLineTag.__init__(self, content, **attributes) - self.tag = "h{}".format(level) - -class Ul(Element): - tag = "ul" - -class Li(Element): - tag = "li" - -class Meta(SelfClosingTag): - tag = "meta" - def render(self, file_out, ind=""): - """ - Override the SelfClosingTag render method we inherit to write the - content and tags in a single line with self closing tag - """ - # Slice tag returned by 'render_tag' to remove the trailing '>' - # after the tag contents - file_out.write(self.render_tag(ind)[:-1]) - # Write the self closing tag with space - file_out.write(" />\n") \ No newline at end of file diff --git a/Students/imdavis/session06/run_html_render.py b/Students/imdavis/session06/run_html_render.py deleted file mode 100755 index 31d3cf3f..00000000 --- a/Students/imdavis/session06/run_html_render.py +++ /dev/null @@ -1,226 +0,0 @@ -#!/usr/bin/env python - -""" -a simple script can run and test your html rendering classes. - -Uncomment the steps as you add to your rendering. - -""" -from cStringIO import StringIO - - -# importing the html_rendering code with a short name for easy typing. -import html_render as hr -reload(hr) #reloding in case you are ruuing this in iPython - # -- want to make sure the latest version is used - - -## writing the file out: -def render(page, filename): - """ - render the tree of elements - - This uses cSstringIO to render to memory, then dump to console and - write to file -- very handy! - """ - - f = StringIO() - page.render(f, "") - - f.seek(0) - - print f.read() - - f.seek(0) - open(filename, 'w').write( f.read() ) - - -## Step 1 -########## - -# page = hr.Element() - -# page.append("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text") - -# page.append("And here is another piece of text -- you should be able to add any number") - -# render(page, "test_html_output1.html") - -# # ## Step 2 -# # ########## - -# page = hr.Html() - -# body = hr.Body() - -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text")) - -# body.append(hr.P("And here is another piece of text -- you should be able to add any number")) - -# page.append(body) - -# render(page, "test_html_output2.html") - -# # # Step 3 -# # ########## - -# page = hr.Html() - -# head = hr.Head() -# head.append(hr.Title("PythonClass = Revision 1087:")) - -# page.append(head) - -# body = hr.Body() - -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text")) -# body.append(hr.P("And here is another piece of text -- you should be able to add any number")) - -# page.append(body) - -# render(page, "test_html_output3.html") - -# # # Step 4 -# # ########## - -# page = hr.Html() - -# head = hr.Head() -# head.append(hr.Title("PythonClass = Revision 1087:")) - -# page.append(head) - -# body = hr.Body() - -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text", -# style="text-align: center; font-style: oblique;")) - -# page.append(body) - -# render(page, "test_html_output4.html") - -# # # Step 5 -# # ######### - -# page = hr.Html() - -# head = hr.Head() -# head.append(hr.Title("PythonClass = Revision 1087:")) - -# page.append(head) - -# body = hr.Body() - -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text", -# style="text-align: center; font-style: oblique;")) - -# body.append(hr.Hr()) - -# page.append(body) - -# render(page, "test_html_output5.html") - -# # Step 6 -# ######### - -# page = hr.Html() - -# head = hr.Head() -# head.append(hr.Title("PythonClass = Revision 1087:")) - -# page.append(head) - -# body = hr.Body() - -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text", -# style="text-align: center; font-style: oblique;")) - -# body.append(hr.Hr()) - -# body.append("And this is a ") -# body.append( hr.A("http://google.com/", "link") ) -# body.append("to google") - -# page.append(body) - -# render(page, "test_html_output6.html") - -# # Step 7 -# ######### - -# page = hr.Html() - -# head = hr.Head() -# head.append(hr.Title("PythonClass = Revision 1087:")) - -# page.append(head) - -# body = hr.Body() - -# body.append( hr.H(2, "PythonClass - Class 6 example") ) - -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text", -# style="text-align: center; font-style: oblique;")) - -# body.append(hr.Hr()) - -# list = hr.Ul(id="TheList", style="line-height:200%") - -# list.append( hr.Li("The first item in a list") ) -# list.append( hr.Li("This is the second item", style="color: red") ) - -# item = hr.Li() -# item.append("And this is a ") -# item.append( hr.A("http://google.com/", "link") ) -# item.append("to google") - -# list.append(item) - -# body.append(list) - -# page.append(body) - -# render(page, "test_html_output7.html") - -# # Step 8 -# ######## - -page = hr.Html() - - -head = hr.Head() -head.append( hr.Meta(charset="UTF-8") ) -head.append(hr.Title("PythonClass = Revision 1087:")) - -page.append(head) - -body = hr.Body() - -body.append( hr.H(2, "PythonClass - Class 6 example") ) - -body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text", - style="text-align: center; font-style: oblique;")) - -body.append(hr.Hr()) - -list = hr.Ul(id="TheList", style="line-height:200%") - -list.append( hr.Li("The first item in a list") ) -list.append( hr.Li("This is the second item", style="color: red") ) - -item = hr.Li() -item.append("And this is a ") -item.append( hr.A("http://google.com/", "link") ) -item.append("to google") - -list.append(item) - -body.append(list) - -page.append(body) - -render(page, "test_html_output8.html") - - - - diff --git a/Students/imdavis/session06/test_html_render.py b/Students/imdavis/session06/test_html_render.py deleted file mode 100644 index eb5dc211..00000000 --- a/Students/imdavis/session06/test_html_render.py +++ /dev/null @@ -1,179 +0,0 @@ -#!/usr/bin/env python2.7 - -""" -Some unit testing for our HTML renderer - -Make sure that pytest is installed. -Since the name of this testing script file begins with 'test_' -pytest will find it and run it. - -In the directory where this file lives, simply do: - $ py.test - -or- - $ py.test -s (will show print statements) - -For more information, see: www.pytest.org -""" - -from cStringIO import StringIO -import html_render - -indent_spaces = " " - -def render_element(element, ind=""): - """ - call the render method of an elemnet and return elements as a string - """ - f = StringIO() - element.render(f, ind) - f.reset() - output = f.read() - return output - -def test_init(): - """ - can we even initialize an Element - """ - html_render.Element() - assert True - -def test_init_content(): - """ - now can we initialize an Element with some content - """ - html_render.Element("some content") - assert True - -def test_render_content(): - """ - Can we initialize an Element with some content? - Does it begin and end with the correct tag? - Does the 'append' method work? - """ - e = html_render.Element("this is some content") - e.append("and this is some more") - - output = render_element(e) - - assert output.startswith('') - assert output.endswith('\n') - assert "this is some content" in output - assert "and this is some more" in output - print ("\n" + output) - -def test_render_content_indent(): - """ - Is the indent level correct? - """ - e = html_render.Element("this is some content") - e.append("and this is some more") - - output = render_element(e) - lines = output.split("\n") - print lines - assert lines[1].startswith(indent_spaces) - -def test_render_html(): - """ - Can we initialize an 'Html' object with some content? - Does it begin and end with the correct tag? - Does the 'append' method work? - Do we get the correct 'DOCTYPE' at the beginning? - """ - e = html_render.Html("this is some content") - e.append("and this is some more") - - output = render_element(e) - print ("\n" + output) - lines = output.split("\n") - assert "this is some content" in output - assert "and this is some more" in output - assert "" in lines[0] - assert "" in lines[1] - assert output.endswith('\n') - assert lines[2].startswith(indent_spaces) - -def test_render_body(): - """ - Can we initialize a 'Body' object with some content? - Does it begin and end with the correct tag? - Does the 'append' method work? - """ - e = html_render.Body("this is some content") - e.append("and this is some more") - - output = render_element(e) - lines = output.split("\n") - print ("\n" + output) - assert output.startswith("") - assert output.endswith("\n") - assert "this is some content" in output - assert "and this is some more" in output - assert lines[1].startswith(indent_spaces) - -def test_render_p_indent(): - content = "a simple paragraph" - p = html_render.P(content) - output = render_element(p, indent_spaces) - lines = output.split("\n") - print ("\n" + output) - assert output.startswith(indent_spaces + "

    ") - assert output.endswith(indent_spaces + "

    \n") - assert "{}{}".format(2*indent_spaces, content) in lines[1] - -def test_render_sub_elements(): - content1 = "some simple text" - content2 = "a simple paragraph" - content3 = "a nested paragraph" - e = html_render.Html(content1) - p = html_render.P(content2) - p.append(html_render.P(content3)) - e.append(p) - - output = render_element(e) - print ("\n" + output) - lines = output.split('\n') - assert lines[1].startswith("") - assert output.endswith("\n") - assert "{}{}".format(indent_spaces, content1) in lines[2] - assert "{}{}".format(indent_spaces, content1) in lines[2] - assert "{}{}".format(2 * indent_spaces, content2) in lines[4] - assert "{}{}".format(3 * indent_spaces, content3) in lines[6] - -def test_onelinetag(): - o = html_render.OneLineTag("content") - output = render_element(o, indent_spaces) - print ("\n" + output) - assert "{}{}{}{}".format(indent_spaces, "", "content", "\n") == output - -def test_title(): - t = html_render.Title("A Title") - output = render_element(t, indent_spaces) - print ("\n" + output) - assert "{}{}{}{}".format(indent_spaces, "", "A Title", "\n") == output - -def test_attributes(): - a = html_render.P("some text", id="TheList", style="line-height:200%") - output = render_element(a, indent_spaces) - print ("\n" + output) - lines = output.split('\n') - assert lines[0].startswith(indent_spaces + "

    ") - assert (2 * indent_spaces + "some text") == lines[1] - assert (indent_spaces + "

    ") == lines[-2] - -def test_selfclosing_attr(): - a = html_render.A("www.alink.com", "link", id="cat", style="hat") - output = render_element(a, indent_spaces) - print ("\n" + output) - assert output.startswith(indent_spaces + "link\n") - -def test_header(): - sometext = "Header text" - h = html_render.H(2, sometext) - output = render_element(h, indent_spaces) - print ("\n" + output) - assert "{}{}{}{}".format(indent_spaces, "

    ", sometext, "

    \n") == output diff --git a/Students/imdavis/session07/circle.py b/Students/imdavis/session07/circle.py deleted file mode 100755 index f09f5e13..00000000 --- a/Students/imdavis/session07/circle.py +++ /dev/null @@ -1,115 +0,0 @@ -#!/usr/bin/env python2.7 - -""" -Circle class -""" - -from math import pi - -class Circle(object): - def __init__(self, radius): - self.radius = float(radius) - - @property - def radius(self): - return self.__radius - - @radius.setter - def radius(self, radius): - if radius <= 0: - raise ValueError("radius must be nonzero and non-negative") - else: - self.__radius = radius - - @classmethod - def from_diameter(cls, diameter): - if diameter <= 0: - raise ValueError("diameter must be nonzero and non-negative") - else: - return cls(diameter / 2.0) - - @property - def diameter(self): - return self.radius * 2.0 - - @diameter.setter - def diameter(self, value): - if value <= 0: - raise ValueError("diameter must be nonzero and non-negative") - else: - self.radius = value / 2.0 - - @property - def area(self): - return self.radius**2 * pi - - def __repr__(self): - return "Circle({})".format(self.radius) - - def __str__(self): - return "Circle with radius {}".format(self.radius) - - def __add__(self, c): - return Circle(self.radius + c.radius) - - def __mul__(self, c): - """ - Make sure we can multiply two Circle objects or a number and a - Circle object. In the case of multiplying a Circle object and a - number, this function will only be able to handle something - like: - c = Circle(2.34) - c * 1.234 - Need to define __rmul__ special method (below) for swapped - operands. - """ - if isinstance(c, Circle): - return Circle(self.radius * c.radius) - else: - return Circle(c * self.radius) - - def __rmul__(self, c): - """ - Be able to multiply a number and an existing Circle object, with - swapped operands. i.e. - c = Circle(2.34) - 1.234 * c - """ - return Circle(c * self.radius) - - def __gt__(self, c): - if (self.radius > c.radius): - return True - else: - return False - - def __lt__(self, c): - if (self.radius < c.radius): - return True - else: - return False - - def __eq__(self, c): - if (self.radius == c.radius): - return True - else: - return False - - def __ne__(self, c): - if (self.radius != c.radius): - return True - else: - return False - - def __iadd__(self, c): - return Circle(self.radius + c.radius) - - - -if __name__ == '__main__': - circles = [Circle(6), Circle(7), Circle(2.34), Circle(1.234), - Circle(12.15), Circle(0.24), Circle(4.23), Circle(1.999), - Circle(2.0001), Circle(99), Circle(14.112)] - print circles - circles.sort() - print circles \ No newline at end of file diff --git a/Students/imdavis/session07/test_circle.py b/Students/imdavis/session07/test_circle.py deleted file mode 100755 index b30b3fbb..00000000 --- a/Students/imdavis/session07/test_circle.py +++ /dev/null @@ -1,149 +0,0 @@ -#!/usr/bin/env python2.7 - -from circle import Circle -import pytest -from math import pi - -def test_init(): - Circle(3) - -def test_radius(): - c = Circle(3) - assert c.radius == 3 - -# radius is a required parameter -def test_no_radius(): - with pytest.raises(TypeError): - c = Circle() - -# make sure we cannot set the area -def test_no_set_area(): - c = Circle(4.52) - with pytest.raises(AttributeError): - c.area = 5.67 - -def test_set_radius(): - c = Circle(3) - c.radius = 5 - assert c.radius == 5 - -def test_diam(): - c = Circle(2.5) - assert c.diameter == 5.0 - -def test_radius_chage(): - c = Circle(3) - c.radius = 4 - assert c.diameter == 8 - -def test_set_diamter(): - c = Circle(4) - c.diameter = 11 - assert c.radius == 5.5 - assert c.diameter == 11 - -def test_area(): - c = Circle(2.45) - assert c.area == pi*2.45**2 - -def test_set_area(): - c = Circle(2) - with pytest.raises(AttributeError): - c.area = 30.122 - -def test_from_diameter(): - c = Circle.from_diameter(4) - assert isinstance(c, Circle) - assert c.radius == 2 - assert c.diameter == 4 - assert c.area == pi*2**2 - -def test_repr(): - c = Circle(6) - assert repr(c) == "Circle(6.0)" - -def test_str(): - c = Circle(4.32) - assert c.__str__() == "Circle with radius 4.32" - assert str(c) == "Circle with radius 4.32" - -def test_add_circle(): - c1 = Circle(14.34) - c2 = Circle(1.15) - c3 = c1 + c2 - assert isinstance(c3, Circle) - assert c3.radius == 15.49 - assert c3.diameter == 30.98 - c1 += c2 - assert c1.radius == 15.49 - -def test_mult_circle(): - c1 = Circle(2.34) - c2 = Circle(5.67) - c3 = c1 * c2 - assert isinstance(c3, Circle) - assert c3.radius ==13.2678 - c3 = c2 * c1 - assert c3.radius ==13.2678 - c3 = c1 * 1.2 - assert isinstance(c3, Circle) - assert c3.radius == 2.808 - c3 = 1.2 * c1 - assert c3.radius == 2.808 - -def test_gt(): - c1 = Circle(2.34) - c2 = Circle(5.67) - assert c2 > c1 - assert (c1 > c2) == False - -def test_lt(): - c1 = Circle(2.34) - c2 = Circle(5.67) - assert c1 < c2 - assert (c2 < c1) == False - -def test_eq(): - c1 = Circle(2.34) - c2 = Circle(5.67) - assert (c1 == c2) == False - c2 = Circle(2.34) - assert c1 == c2 - -def test_ne(): - c1 = Circle(2.34) - c2 = Circle(5.67) - assert c1 != c2 - assert (c1 == c2) == False - c2 = Circle(2.34) - assert c1 == c2 - -def test_nonsense_radius(): - """ - Make sure we can't create a Circle object with a negative or zero - radius. - """ - with pytest.raises(ValueError): - c = Circle(-1.234) - with pytest.raises(ValueError): - c = Circle(0) - c = Circle(1.234) - with pytest.raises(ValueError): - c.radius = -1.234 - with pytest.raises(ValueError): - c.radius = 0 - -def test_nonsense_diameter(): - """ - Make sure we can't create a Circle object with a negative or zero - diameter. - """ - with pytest.raises(ValueError): - c = Circle.from_diameter(-2.468) - with pytest.raises(ValueError): - c = Circle.from_diameter(0) - c = Circle.from_diameter(2.468) - with pytest.raises(ValueError): - c.diameter = -2.468 - with pytest.raises(ValueError): - c.diameter = 0 diff --git a/Students/lascoli/session01/break_me.py b/Students/lascoli/session01/break_me.py deleted file mode 100644 index 9c638870..00000000 --- a/Students/lascoli/session01/break_me.py +++ /dev/null @@ -1,24 +0,0 @@ - -def NameError_Gen(x,y): - x = 100 - z = 100 - z = x * y - -def TypeError_Gen(): - - print 1337 + 'start' - -def SyntaxError_Gen(): - class = 'Casus belli' - -def AttributeError(): - while node.label != node.prevNode.label: - - -##NameError_Gen() - -##TypeError_Gen() - -##SyntaxError_Gen() - -AttributeError() diff --git a/Students/lascoli/session01/fizzy.py b/Students/lascoli/session01/fizzy.py deleted file mode 100644 index fcf14dab..00000000 --- a/Students/lascoli/session01/fizzy.py +++ /dev/null @@ -1,4 +0,0 @@ -def fizzy(): - x =range(1,101) - print x -fizzy() diff --git a/Students/lascoli/session01/uw_hw_week1_1.py b/Students/lascoli/session01/uw_hw_week1_1.py deleted file mode 100644 index 07166be1..00000000 --- a/Students/lascoli/session01/uw_hw_week1_1.py +++ /dev/null @@ -1,27 +0,0 @@ -def grid_maker(units): - units = 11 - -##define border_line - border = '+ ' + ' - ' *((units -3)/2) + ' + ' + ' - ' *((units -3)/2) + ' + ' - -##define mid_line - middle = '| ' + ' ' *((units -3)/2 )+ ' | ' + ' ' *((units -3)/2) + ' + ' - - print border - print middle * ((units -3)/2) - print border - print middle * ((units -3)/2) - print border - -grid_maker(11) - - - - - - - - - - - diff --git a/Students/lascoli/session01/uw_week1_tasks.py b/Students/lascoli/session01/uw_week1_tasks.py deleted file mode 100644 index 2b77deb5..00000000 --- a/Students/lascoli/session01/uw_week1_tasks.py +++ /dev/null @@ -1,10 +0,0 @@ -def grid_maker(units): - - border = '+ ' + ' - ' *((units -3)/2) + ' + ' + ' - ' *((units -3)/2) + ' + ' + '\n' - middle = '| ' + ' ' *((units -3)/2 )+ ' | ' + ' ' *((units -3)/2) + ' + ' + '\n' - grid = border + middle *((units -3)/2) - - print grid * 2 + border - - -grid_maker(5) diff --git a/Students/lascoli/session01/week2_d.py b/Students/lascoli/session01/week2_d.py deleted file mode 100644 index 46796cf5..00000000 --- a/Students/lascoli/session01/week2_d.py +++ /dev/null @@ -1,8 +0,0 @@ -import math -def dis_cal(x1, y1, x2, y2): - dx = x2 - x1 - dy = y2 - y1 - dsquared = dx**2 + dy**2 - result = math.sqrt(dsquared) - print result -dis_cal(2,2,4,4) diff --git a/Students/lascoli/session02/ack.py b/Students/lascoli/session02/ack.py deleted file mode 100644 index bc6d5792..00000000 --- a/Students/lascoli/session02/ack.py +++ /dev/null @@ -1,29 +0,0 @@ -def ack(m,n): - """Return results m, input parameter values ranging from 0,0 -4,4 to the Ackermann Function.""" - - if m < 0 or n < 0: - return None - elif m == 0: - return n + 1 - elif n == 0: - return ack(m - 1, 1) - else: - return ack(m - 1, ack(m, n - 1)) - -if __name__ == '__main__': - - assert ack(-1,0) == None - assert ack(0,0) == 1 - assert ack(0,1) == 2 - assert ack(0,2) == 3 - assert ack(0,3) == 4 - assert ack(0,4) == 5 - assert ack(1,0) == 2 - assert ack(1,1) == 3 - assert ack(1,2) == 4 - assert ack(1,3) == 5 - assert ack(1,4) == 6 - - print "All Tests Pass" - - \ No newline at end of file diff --git a/Students/lascoli/session02/series.py b/Students/lascoli/session02/series.py deleted file mode 100644 index 0fb91db4..00000000 --- a/Students/lascoli/session02/series.py +++ /dev/null @@ -1,66 +0,0 @@ - -def fib(n): - """Return results , input parameter values ranging from 0 + to the Fibonacci Function.""" - if n == 0: - return 0 - elif n == 1: - return 1 - else: - return fib(n-1)+fib(n-2) - -if __name__ == '__main__': - - - assert fib(0) == 0 - assert fib(1) == 1 - assert fib(2) == 1 - assert fib(3) == 2 - assert fib(4) == 3 - assert fib(5) == 5 - - print "All Test Pass Task 2 Fibonacci Function" - - - -def lucas(n): - """Return results , input parameter values ranging from 2 + to the Lucas Function.""" - if n == 0: - return 0 - elif n == 1: - return 1 - else: - return lucas(n-1)+lucas(n-2) - -if __name__ == '__main__': - - assert lucas( 0) == 0 - assert lucas( 1) == 1 - assert lucas( 2) == 1 - assert lucas( 3) == 2 - assert lucas( 4) == 3 - assert lucas( 5) == 5 - - print "All Test Pass Task 2 Lucas Function" - - -def sum_series (n, x=0, y=1) : - """Return results , 1 mandatory and 2 optional input parameter values ranging """ - if n == 0 : - return x - elif n == 1 : - return y - else: - return sum_series (n-1,x,y) + sum_series(n-2,x,y) - -if __name__ == '__main__': - - assert sum_series( 0, 0, 1) == 0 - assert sum_series( 1, 0, 1) == 1 - assert sum_series( 2, 0, 1) == 1 - assert sum_series( 4, 0, 1) == 3 - assert sum_series( 0, 2, 1) == 2 - assert sum_series( 3, 2, 1) == 4 - assert sum_series( 4, 2, 1) == 7 - assert sum_series( 5, 2, 1) == 11 - - print "All Test Pass Task 2 sum_series" diff --git a/Students/lascoli/session03/list_lab.py b/Students/lascoli/session03/list_lab.py deleted file mode 100644 index 4a3ac871..00000000 --- a/Students/lascoli/session03/list_lab.py +++ /dev/null @@ -1,95 +0,0 @@ -#Create a list that contains “Apples”, “Pears”, “Oranges” and “Peaches”. -#Display the list. -fruit1 = ['Apples','Pears','Oranges','Peaches'] -print fruit1 ,'\n' - -#Ask the user for another fruit and add it to the end of the list. -#Display the list. -new1 = raw_input("Please add a new fruit to the list:\n") -fruit1.append(new1) -print fruit1 ,'\n' - -#Ask the user for a number and display the number back to the user and -#the fruit corresponding to that number (on a 1-is-first basis). -#Display the list. -new2 = int(raw_input("Please choose a number from the list of fruit:\n")) -print fruit1[new2] ,'\n' - -#Add another fruit to the beginning of the list using “+” and display the list. -new3 = raw_input("Please add a new fruit to the list:\n") -fruit2 = [new3] -fruit3 = fruit2 + fruit1 -print fruit3 ,'\n' - -#Add another fruit to the beginning of the list using insert() and display the list. -new4 = raw_input("Please add a new fruit to the list:\n") -fruit3.insert(0, new4) -print fruit3 ,'\n' - -##Display all the fruits that begin with “P”, using a for loop. -print ("All the fruits that begin with P:\n") -for i in fruit3: - if i[0] == 'P': - print i + '\n' -#Using the list(fruit3) created in series 1 : - - -#Remove the last fruit from the list.Display the list. -fruit4 = fruit3 -print ("Removing the last fruit from the list:\n") -fruit4.remove(fruit4[-1]) -print fruit4 - -#Ask the user for a fruit to delete and find it and delete it.Display the list. -new4 = raw_input("Please choose a fruit from the list to delete:\n") -for i in fruit4: - if i == new4: - fruit4.remove(i) -print fruit4 ,'\n' - -#Ask the user for input displaying a line like “Do you like apples?” -#For each fruit in the list (making the fruit all lowercase). -#For each “no”, delete that fruit from the list. -#For any answer that is not “yes” or “no”, prompt the user to answer with one of those two values (a while loop is good here): -#Display the list. - -#Remove extra copy -fruit5 = fruit3 -for i in fruit5[:]: - i =i.lower() - - - - while True: - new4 = raw_input('Do you like ' + i +' ? Please answer with a Yes or No\n' ) - - if new4 == 'Yes'or new4 == 'No': - break - if new4 == 'Yes': - continue - - else: - i = i[0].upper() +i[1::] - fruit5.remove(i) - -print fruit5,'\n' - -#Make a copy of the list and reverse the letters in each fruit in the copy. -#Delete the last item of the original list. Display the original list and the copy. - - -oring_fruit = fruit3[:] -copy_fruit = fruit3[:] - -for i in range(len(copy_fruit)): - fruit6_reverse = [] - fruit6 = copy_fruit.pop(i) - fruit6_reverse.extend(fruit6) - fruit6_reverse.reverse() - fruit6 = "".join(fruit6_reverse) - copy_fruit.insert(i, fruit6) -oring_fruit.remove(oring_fruit[-1]) - -print "Original List of Fruit: %s" % oring_fruit -print "Copied List of Fruit: %s" % copy_fruit - diff --git a/Students/lascoli/session03/rot13.py b/Students/lascoli/session03/rot13.py deleted file mode 100644 index a5e94539..00000000 --- a/Students/lascoli/session03/rot13.py +++ /dev/null @@ -1,11 +0,0 @@ -def rot13(s): - print s - from codecs import encode - return s.encode('rot13') - - -if __name__ == '__main__': - - assert rot13('ZNTARGVP SEBZ BHGFVQR ARNE PBEARE') == 'MAGNETIC FROM OUTSIDE NEAR CORNER' - print "All Tests Pass" - diff --git a/Students/lascoli/session03/unfinished_mailroom_3.py b/Students/lascoli/session03/unfinished_mailroom_3.py deleted file mode 100644 index 6d1b976b..00000000 --- a/Students/lascoli/session03/unfinished_mailroom_3.py +++ /dev/null @@ -1,133 +0,0 @@ -#Create a data structure with 2 elements (Name, Dollar Amount Donated) - -donor_list = ['Mick Jagger','$500.00', -'Jimmy Page','$200.00', -'Robert Plant','$100.00', -'Roger Daltry','$400.00', -'Pete Townsend','$250.00', -'Eric Clapton','$500.00', -'Mick Jagger','$700.00', -'Eric Clapton','$200.00', -'Pete Townsend','$950.00', -'Robert Plant','$800.00', -'Mick Jagger','$400.00', -'Roger Daltry','$750.00', -'Pete Townsend','$750.00', -'Eric Clapton','$900.00', -'Mick Jagger','$500.00', -'Robert Plant','$800.00', -'Roger Daltry','$600.00',] - -def write_thk_letrs(user_input2): -#Write a letter thanking a donor# - - print ("Dear %s. \n\nThank you for your generous contribution !\n\nYou Rock !\n\n" % (user_input2)) - return main() - - -def thanks_note(): - user_input2 =raw_input('Please provide the full name of the donor, or type "list for a list of donors" :\n\n') - - if user_input2 == 'list': - tmp_list1= [] - tmp_list2= [] - i = "" - tmp_list1 = donor_list[0::2] - for i in tmp_list1: - if i not in tmp_list2: - tmp_list2.append(i) - for x in tmp_list2: - print ("\n" + x + "\n") - return add_donor() - - else: - for d_name in donor_list: - if d_name == user_input2: - return write_thk_letrs(user_input2) - - -def add_donor(): - user_input2 =raw_input('Please provide the full name of the donor, or type "list for a list of donors" :\n\n') - for d_name in donor_list: - - if d_name != user_input2: - break - - while True: - user_input3 = raw_input("\n" + user_input2 + " is a new donor,and can be added to the donor list.\n " " \nWould you like" - " to make a donation for " + user_input2 + " ?\n\nPlease answer 'Yes' or 'No' ") - - if user_input3 == "No": - main() - - if user_input3 == "Yes": - break - - while True: - user_input4 = raw_input('Enter the donation amount \n\n ') - - #if user_input3 == 'menu': - #return 'menu' - try: - user_input4 = float(user_input4) - break - - except ValueError: - print 'Specified Donations must be a in a numeric format, renter amount.' - - - user_input4 = "$"+str(user_input4) - donor_list.extend([user_input2, user_input4]) - write_thk_letrs(user_input2) - -def donor_report(): - - tmp_list3= [] - tmp_list4= [] - user_input5 ="" - i = "" - tmp_list3 = donor_list[0::2] - - print("\n\nDonor Name Total Amount Donated Number of Donations Average Donation\n" ) - for i in tmp_list3: - if i not in tmp_list4: - tmp_list4.append(i) - for x in tmp_list4: - print ("\n" + x + "\n") - -def main(): - - - while True: - user_input1 = '' - user_input2 = '' - user_input3 = '' - user_input4 = '' - user_input4 = '' - - user_input1 = raw_input('Welcome to the Donations Support Program\n\n' - 'Please enter a 1 to Send a Thank You Note \n\n' - 'Please enter a 2 to Create a Report \n\n' - 'Please enter a 3 to exit this project \n\n') - - - if user_input1 == '1': - #print("Send a Thank You Note") - return thanks_note() - - - if user_input1 == '2': - #print("Create a Report") - return donor_report() - - - if user_input1 == '3': - print ("Exiting this Program") - break - - - -if __name__ == '__main__': - main() - - diff --git a/Students/lascoli/session03/unfinished_mailroom_4.py b/Students/lascoli/session03/unfinished_mailroom_4.py deleted file mode 100644 index dcc3237e..00000000 --- a/Students/lascoli/session03/unfinished_mailroom_4.py +++ /dev/null @@ -1,122 +0,0 @@ -#Create a data structure with 2 elements (Name, Dollar Amount Donated) - -donor_db = [] -donor_db.append( ("Jimmy Page", [653772.32, 12.17]) ) -donor_db.append( ("Robert Plant", [877.33]) ) -donor_db.append( ("Roger Daltry", [663.23, 43.87, 1.32]) ) -donor_db.append( ("Pete Townsend", [1663.23, 4300.87, 10432.0]) ) -donor_db.append( ("Mick Jagger", [653772.32, 12.17]) ) - -def write_thk_letrs(user_input2): -#Write a letter thanking a donor# - - print ("Dear %s. \n\nThank you for your generous contribution !\n\nYou Rock !\n\n" % (user_input2)) - return main() - - -def thanks_note(): - user_input2 =raw_input('Please provide the full name of the donor, or type "list for a list of donors" :\n\n') - - if user_input2 == 'list': - tmp_list1= [] - tmp_list2= [] - i = "" - tmp_list1 = donor_list[0::2] - for i in tmp_list1: - if i not in tmp_list2: - tmp_list2.append(i) - for x in tmp_list2: - print ("\n" + x + "\n") - return add_donor() - - else: - for d_name in donor_list: - if d_name == user_input2: - return write_thk_letrs(user_input2) - - -def add_donor(): - user_input2 =raw_input('Please provide the full name of the donor, or type "list for a list of donors" :\n\n') - for d_name in donor_list: - - if d_name != user_input2: - break - - while True: - user_input3 = raw_input("\n" + user_input2 + " is a new donor,and can be added to the donor list.\n " " \nWould you like" - " to make a donation for " + user_input2 + " ?\n\nPlease answer 'Yes' or 'No' ") - - if user_input3 == "No": - main() - - if user_input3 == "Yes": - break - - while True: - user_input4 = raw_input('Enter the donation amount \n\n ') - - #if user_input3 == 'menu': - #return 'menu' - try: - user_input4 = float(user_input4) - break - - except ValueError: - print 'Specified Donations must be a in a numeric format, renter amount.' - - - user_input4 = "$"+str(user_input4) - donor_list.extend([user_input2, user_input4]) - write_thk_letrs(user_input2) - -def donor_report(): - - tmp_list3= [] - tmp_list4= [] - user_input5 ="" - i = "" - tmp_list3 = donor_list[0::2] - - print("\n\nDonor Name Total Amount Donated Number of Donations Average Donation\n" ) - for i in tmp_list3: - if i not in tmp_list4: - tmp_list4.append(i) - for x in tmp_list4: - print ("\n" + x + "\n") - -def main(): - - - while True: - user_input1 = '' - user_input2 = '' - user_input3 = '' - user_input4 = '' - user_input4 = '' - - user_input1 = raw_input('Welcome to the Donations Support Program\n\n' - 'Please enter a 1 to Send a Thank You Note \n\n' - 'Please enter a 2 to Create a Report \n\n' - 'Please enter a 3 to exit this project \n\n') - - - if user_input1 == '1': - #print("Send a Thank You Note") - return thanks_note() - - - if user_input1 == '2': - #print("Create a Report") - return donor_report() - - - if user_input1 == '3': - print ("Exiting this Program") - break - - - -if __name__ == '__main__': - main() - - diff --git a/Students/lascoli/session04/Dict_Set Lab.py b/Students/lascoli/session04/Dict_Set Lab.py deleted file mode 100644 index 6287bad1..00000000 --- a/Students/lascoli/session04/Dict_Set Lab.py +++ /dev/null @@ -1,108 +0,0 @@ -#Create a dictionary -dict_1 = {} -dict_1={'name':'Chris','city':'Seattle','cake':'Chocolate'} - -#Display the dictionary -dict_1 - -#Delete the entry for �cake�. -dict_1.pop('cake') - -#Add an entry for �fruit� with �Mango� and display the dictionary. -dict_1.setdefault('fruit', 'Mango') -#Display the dictionary keys -dict_1.keys() - -#Display the dictionary values -dict_1.keys() - -#Display whether or not �cake� is a key in the dictionary (i.e. False) (now). -'cake'in dict_1 - -#Display whether or not �Mango� is a value in the dictionary (i.e. True). -'Mango'in dict_1.values() - -#Using the dict constructor and zip, build a dictionary of numbers -#from zero to fifteen and the hexadecimal equivalent (string is fine). - -def gen_lists(): - - llist1 =[] - hlist1 =[] - n_list =[] - tmp_lists_dict ={} - - llist1 = range(1,16) - for i in llist1: - x = hex(i) - hlist1.append(x) - - n_list = zip(llist1,hlist1) - #return (n_list) - tmp_lists_dict = dict(n_list) - print (tmp_lists_dict) - - -gen_lists() - - -#Using the dictionary from item 1: Make a dictionary using the same keys but -#with the number of�t�s in each value. - -dict_1={'name':'Chris','city':'Seattle','cake':'Chocolate'} -dict_2={} -list_1=[] -for a,b in dict_1.items(): - list_1.append((a,b.count('t'))) -dict_2 =dict(list_1) -print dict_2 - - -#Create sets set_2, set_3 and set_4 that contain numbers from zero through twenty, divisible 2, 3 and 4. - - -s_0 = set(range(21)) -set_2 = [] -set_3 = [] -set_4 = [] -for i in s_0: - if i % 2 == 0: - set_2.append(i) -set_2 = set(set_2) - -for i in s_0: - if i % 3 == 0: - set_3.append(i) -set_3 = set(set_3) - -for i in s_0: - if i % 4 == 0: - set_4.append(i) -set_4 = set(set_4) - - -#Display the sets. -print set_1 -print set_2 -print set_3 -print set_4 - -#Display if set_3 is a subset of set_2 (False) - -set(set_3).issubset(set_2) - -#if set_4 is a subset of set_2 (True) -set(set_4).issubset(set_2) - - -# Create a set with the letters in �Python� and add �i� to the set. -x = set("Python") -x.add("i") - -# Create a frozenset with the letters in �marathon� -y = frozenset(�marathon�) - -# display the union and intersection of the two sets. -x.union(y) -x.intersection(y) - diff --git a/Students/lascoli/session04/files_lab1.py b/Students/lascoli/session04/files_lab1.py deleted file mode 100644 index 7e938f33..00000000 --- a/Students/lascoli/session04/files_lab1.py +++ /dev/null @@ -1,42 +0,0 @@ -#read file into variable line -f = open('C:\Users\LA7383\Desktop\Python\UW_Python\IntroToPython\Examples\Session01\students.txt') -the_set = set() -for line in f: - - #convert all text to lower case - line = line.lower() - # print('Output 2', line) - - #remove white spaces - line = line.replace(" ", "") - # print('Output 3', line) - - #replace commas with new line value - line = line.strip() - # print('Output 4', line) - - #partition each entry by : - head, sep, tail = line.partition(':') - # print('Output 5', line) - - #remove names and stip leading white space - line2 = tail - # print('Output 6', line) - - # split each entry by , - list1 =line2.split(',') - # print('Output 7' ,line2) - - the_set.update(list1) - -f.close - -the_set.remove('languages') -# print(the_set) -outfile = open("languages.txt","w") - -for x in the_set: - outfile.write ("%s\n" %x) - -outfile.close() - diff --git a/Students/lascoli/session04/safe_input.py b/Students/lascoli/session04/safe_input.py deleted file mode 100644 index c4236bf4..00000000 --- a/Students/lascoli/session04/safe_input.py +++ /dev/null @@ -1,10 +0,0 @@ -"""Creating Wrapper Function Safe Input """ -def safe_input(msg): -"""Function is called when ^C or ^D occurs""" -try: - x = raw_input(user_action) -except (EOFError, KeyboardInterrupt): - return None -else: - return variaxble -if __name__ == "__main__": \ No newline at end of file diff --git a/Students/lascoli/session05/colors.py b/Students/lascoli/session05/colors.py deleted file mode 100644 index 0a487902..00000000 --- a/Students/lascoli/session05/colors.py +++ /dev/null @@ -1,12 +0,0 @@ -colors =("black","red") -colors2 = dict(link_color ="yellow",visited_link_color="green") - -def color_fun(*argv,**kwargs): - - print "\nThe fore_color is",argv[0],"\n" - print "The back_color is",argv[1],"\n" - print "The link_color is", kwargs["link_color"],"\n" - print "The visited_link_color is",kwargs["visited_link_color"],"\n" - - -color_fun(*colors,**colors2) \ No newline at end of file diff --git a/Students/lascoli/session05/dict_comp1.py b/Students/lascoli/session05/dict_comp1.py deleted file mode 100644 index 2db7868c..00000000 --- a/Students/lascoli/session05/dict_comp1.py +++ /dev/null @@ -1,60 +0,0 @@ -##1. Print the dict by passing it to a string format method, so that you get something like: - - “Chris is from Seattle, and he likes chocolate cake, mango fruit, - greek salad, and lasagna pasta” - -food_prefs = {u"name": u"Chris", - u"city": u"Seattle", - u"cake": u"chocolate", - u"fruit": u"mango", - u"salad": u"greek", - u"pasta": u"lasagna"} - -u"{name} is from {city}, and he likes {cake} cake, {fruit} fruit, {salad} salad,and {pasta} pasta".format(**food_prefs) - -#2. Using a list comprehension, build a dictionary of numbers from zero to fifteen and the hexadecimal equivalent (string is fine). -comb_dict={} -list1=range(0,16) - -for i in list1: - h= hex(i) - list2.append(h) - -comb_list = zip(list1, list2) - -for num1, hexnum1 in comb_list: - comb_dict[num1] = hexnum1 - -#3. Do the previous entirely with a dict comprehension – should be a one-liner -comb_dict={} -list1=range(0,16) - -for i in list1: - h= hex(i) - list2.append(h) -comb_dict2 = dict(zip(num1, hexnum1)) - -#4. Using the dictionary from item 1: Make a dictionary using the same keys but with the number of ‘a’s in each value. -#You can do this either by editing the dict in place,or making a new one. If you edit in place, make a copy first! -comb_dict={} -list1=range(0,16) - -for i in list1: - h= "a"*i - list2.append(h) -comb_list = zip(list1, list2) -for num1, hexnum1 in comb_list: - comb_dict[num1] = hexnum1 - -#5. Create sets s2, s3 and s4 that contain numbers from zero through twenty, divisible 2, 3 and 4. -#Do this with one set comprehension for each set. - -s_0 = set(range(21)) -set_2 = [] -set_3 = [] -set_4 = [] - -set_2 = {i for i in s_0 if i % 2 == 0 } -set_3 = {i for i in s_0 if i % 3 == 0 } -set_4 = {i for i in s_0 if i % 4 == 0 } - diff --git a/Students/lascoli/session05/test_sample.py b/Students/lascoli/session05/test_sample.py deleted file mode 100644 index c8ba6de0..00000000 --- a/Students/lascoli/session05/test_sample.py +++ /dev/null @@ -1,5 +0,0 @@ -def func(x): - return x + 1 - -def test_answer(): - assert func(3) == 5 \ No newline at end of file diff --git a/Students/lascoli/session05/test_sample2.py b/Students/lascoli/session05/test_sample2.py deleted file mode 100644 index b182c3d1..00000000 --- a/Students/lascoli/session05/test_sample2.py +++ /dev/null @@ -1,10 +0,0 @@ -def makes10(a, b): - if a==10 or b==10 or a+b==10: - return True - else: - return False - -def test_answer(): - assert makes10(9,10) == True - assert makes10(9,9) == False - assert makes10(1,9) == True \ No newline at end of file diff --git a/Students/lascoli/session05/test_sysexit.py b/Students/lascoli/session05/test_sysexit.py deleted file mode 100644 index b48ea29b..00000000 --- a/Students/lascoli/session05/test_sysexit.py +++ /dev/null @@ -1,7 +0,0 @@ -import pytest -def f(): - raise SystemExit(1) - -def test_mytest(): - with pytest.raises(SystemExit): - f() \ No newline at end of file diff --git a/Students/lascoli/session06/func_files_lab1.py b/Students/lascoli/session06/func_files_lab1.py deleted file mode 100644 index 825d7d6f..00000000 --- a/Students/lascoli/session06/func_files_lab1.py +++ /dev/null @@ -1,37 +0,0 @@ - -"Removing leading and trailing whitespaces " -user_input1 =raw_input('Please provide the file name of the target input file in the local directory :\n\n') -f = open('%s'%user_input1) -f.readline() - -outfile_data = map(str.strip,f) - - -user_input2 =raw_input('Please output file name:\n\n') -while True: - if user_input2 == user_input1: - user_input3 =raw_input('Do you want to overwrite an existing file, please answer "yes" or "no"\n\n') - if user_input3 == 'yes': - outfile_name = user_input2 - print("overwriting %s"%user_input2) - print (user_input2) - break - - elif user_input3 == 'no': - user_input2 =raw_input('Please choose a new output file name:\n\n') - outfile_name = user_input2 - print (user_input2) - break - continue - - - outfile_name = user_input2 - break - -f.close() - -outfile = open("%s"%outfile_name,"w") - -for x in outfile_data: - outfile.write ("%s\n" %x) -outfile.close() diff --git a/Students/lascoli/session06/func_files_lab2.py b/Students/lascoli/session06/func_files_lab2.py deleted file mode 100644 index 55322ca9..00000000 --- a/Students/lascoli/session06/func_files_lab2.py +++ /dev/null @@ -1,40 +0,0 @@ - -"Removing leading and trailing whitespaces " -import sys -filename = sys.argv[1] -f = open(filename) -f.readline() - -outfile_data = [x.strip() for x in f] - - - -user_input2 =raw_input('Please specify the output file name:\n\n') -while True: - if user_input2 == sys.argv[1]: - user_input3 =raw_input('Do you want to overwrite an existing file, please answer "yes" or "no"\n\n') - if user_input3 == 'yes': - outfile_name = user_input2 - print("overwriting %s"%user_input2) - print (user_input2) - break - - elif user_input3 == 'no': - user_input2 =raw_input('Please choose a new output file name:\n\n') - outfile_name = user_input2 - print (user_input2) - break - continue - - - outfile_name = user_input2 - break - -f.close() - -outfile = open("%s"%outfile_name,"w") - -for x in outfile_data: - outfile.write ("%s\n" %x) - -outfile.close() diff --git a/Students/lascoli/session06/html_render.py b/Students/lascoli/session06/html_render.py deleted file mode 100644 index 20faa272..00000000 --- a/Students/lascoli/session06/html_render.py +++ /dev/null @@ -1,32 +0,0 @@ -#!/usr/bin/env python - -""" -Python class example. - -""" - - -# The start of it all: -# Fill it all in here. -class Element(object): - tag = 'html' - indent = ' ' - - def __init__(self, content=None): - if content is not None: - self.content = [str(content)] - else: - self.content = [] - - def append(self, new_content): - """ add some new content to the element""" - self.content.append(new_content) - - def render(self, file_out, ind=""): - """render the content to the given file like object""" - - file_out.write( ind+"<"+self.tag+">\n"+ind+self.indent ) - file_out.write( ("\n"+ind+self.indent).join(self.content) ) - file_out.write( "\n"+ind+"" ) - - diff --git a/Students/lascoli/session06/lambda.py b/Students/lascoli/session06/lambda.py deleted file mode 100644 index bcdaf9c6..00000000 --- a/Students/lascoli/session06/lambda.py +++ /dev/null @@ -1,3 +0,0 @@ -l = [] -for i in range(100): - l.append(lambda x, e=i: x+e) diff --git a/Students/lascoli/session06/run_html_render.py b/Students/lascoli/session06/run_html_render.py deleted file mode 100644 index bb464af8..00000000 --- a/Students/lascoli/session06/run_html_render.py +++ /dev/null @@ -1,226 +0,0 @@ -#!/usr/bin/env python - -""" -a simple script can run and test your html rendering classes. - -Uncomment the steps as you add to your rendering. - -""" -from cStringIO import StringIO - - -# importing the html_rendering code with a short name for easy typing. -import html_render as hr -reload(hr) #reloding in case you are ruuing this in iPython - # -- want to make sure the latest version is used - - -## writing the file out: -def render(page, filename): - """ - render the tree of elements - - This uses cSstringIO to render to memory, then dump to console and - write to file -- very handy! - """ - - f = StringIO() - page.render(f, " ") - - f.seek(0) - - print f.read() - - f.seek(0) - open(filename, 'w').write( f.read() ) - - -## Step 1 -########## - -page = hr.Element() - -page.append("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text") - -page.append("And here is another piece of text -- you should be able to add any number") - -render(page, "test_html_output1.html") - -# ## Step 2 -# ########## - -# page = hr.Html() - -# body = hr.Body() - -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text")) - -# body.append(hr.P("And here is another piece of text -- you should be able to add any number")) - -# page.append(body) - -# render(page, "test_html_output2.html") - -# # Step 3 -# ########## - -# page = hr.Html() - -# head = hr.Head() -# head.append(hr.Title("PythonClass = Revision 1087:")) - -# page.append(head) - -# body = hr.Body() - -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text")) -# body.append(hr.P("And here is another piece of text -- you should be able to add any number")) - -# page.append(body) - -# render(page, "test_html_output3.html") - -# # Step 4 -# ########## - -# page = hr.Html() - -# head = hr.Head() -# head.append(hr.Title("PythonClass = Revision 1087:")) - -# page.append(head) - -# body = hr.Body() - -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text", -# style="text-align: center; font-style: oblique;")) - -# page.append(body) - -# render(page, "test_html_output4.html") - -# # Step 5 -# ######### - -# page = hr.Html() - -# head = hr.Head() -# head.append(hr.Title("PythonClass = Revision 1087:")) - -# page.append(head) - -# body = hr.Body() - -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text", -# style="text-align: center; font-style: oblique;")) - -# body.append(hr.Hr()) - -# page.append(body) - -# render(page, "test_html_output5.html") - -# # Step 6 -# ######### - -# page = hr.Html() - -# head = hr.Head() -# head.append(hr.Title("PythonClass = Revision 1087:")) - -# page.append(head) - -# body = hr.Body() - -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text", -# style="text-align: center; font-style: oblique;")) - -# body.append(hr.Hr()) - -# body.append("And this is a ") -# body.append( hr.A("http://google.com/", "link") ) -# body.append("to google") - -# page.append(body) - -# render(page, "test_html_output6.html") - -# # Step 7 -# ######### - -# page = hr.Html() - -# head = hr.Head() -# head.append(hr.Title("PythonClass = Revision 1087:")) - -# page.append(head) - -# body = hr.Body() - -# body.append( hr.H(2, "PythonClass - Class 6 example") ) - -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text", -# style="text-align: center; font-style: oblique;")) - -# body.append(hr.Hr()) - -# list = hr.Ul(id="TheList", style="line-height:200%") - -# list.append( hr.Li("The first item in a list") ) -# list.append( hr.Li("This is the second item", style="color: red") ) - -# item = hr.Li() -# item.append("And this is a ") -# item.append( hr.A("http://google.com/", "link") ) -# item.append("to google") - -# list.append(item) - -# body.append(list) - -# page.append(body) - -# render(page, "test_html_output7.html") - -# # Step 8 -# ######## - -# page = hr.Html() - - -# head = hr.Head() -# head.append( hr.Meta(charset="UTF-8") ) -# head.append(hr.Title("PythonClass = Revision 1087:")) - -# page.append(head) - -# body = hr.Body() - -# body.append( hr.H(2, "PythonClass - Class 6 example") ) - -# body.append(hr.P("Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text", -# style="text-align: center; font-style: oblique;")) - -# body.append(hr.Hr()) - -# list = hr.Ul(id="TheList", style="line-height:200%") - -# list.append( hr.Li("The first item in a list") ) -# list.append( hr.Li("This is the second item", style="color: red") ) - -# item = hr.Li() -# item.append("And this is a ") -# item.append( hr.A("http://google.com/", "link") ) -# item.append("to google") - -# list.append(item) - -# body.append(list) - -# page.append(body) - -# render(page, "test_html_output8.html") - - - - diff --git a/Students/michel/Session04/DictLab.py b/Students/michel/Session04/DictLab.py deleted file mode 100644 index 485b8d1b..00000000 --- a/Students/michel/Session04/DictLab.py +++ /dev/null @@ -1,19 +0,0 @@ -# -*- coding: utf-8 -*- -""" -Created on Tue Oct 21 19:25:20 2014 - -@author: Michel -""" - -d = {'name':'Chris', 'city':'Seattle', 'cake':'chocolate'} -print d -d.pop('cake') -print d -d['fruit'] = 'mango' -print d -print d.keys() -print d.values() -print 'cake' in d -print 'mango' in d.values() -nb = range(15) -hexa = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E'] diff --git a/Students/michel/Session05/argLab.py b/Students/michel/Session05/argLab.py deleted file mode 100644 index d577a86e..00000000 --- a/Students/michel/Session05/argLab.py +++ /dev/null @@ -1,13 +0,0 @@ -# -*- coding: utf-8 -*- -""" -Created on Tue Oct 28 19:21:02 2014 - -@author: Michel -""" - -def colorTest(fore_color = 'Black', back_color = 'White', link_color = 'Blue', - visited_color = 'Red'): - - print fore_color, back_color, link_color, visited_color - - \ No newline at end of file diff --git a/Students/michel/Session05/sherlock.txt b/Students/michel/Session05/sherlock.txt deleted file mode 100644 index 99d5cda5..00000000 --- a/Students/michel/Session05/sherlock.txt +++ /dev/null @@ -1,13052 +0,0 @@ -Project Gutenberg's The Adventures of Sherlock Holmes, by Arthur Conan Doyle - -This eBook is for the use of anyone anywhere at no cost and with -almost no restrictions whatsoever. You may copy it, give it away or -re-use it under the terms of the Project Gutenberg License included -with this eBook or online at www.gutenberg.net - - -Title: The Adventures of Sherlock Holmes - -Author: Arthur Conan Doyle - -Posting Date: April 18, 2011 [EBook #1661] -First Posted: November 29, 2002 - -Language: English - - -*** START OF THIS PROJECT GUTENBERG EBOOK THE ADVENTURES OF SHERLOCK HOLMES *** - - - - -Produced by an anonymous Project Gutenberg volunteer and Jose Menendez - - - - - - - - - -THE ADVENTURES OF SHERLOCK HOLMES - -by - -SIR ARTHUR CONAN DOYLE - - - - I. A Scandal in Bohemia - II. The Red-headed League - III. A Case of Identity - IV. The Boscombe Valley Mystery - V. The Five Orange Pips - VI. The Man with the Twisted Lip - VII. The Adventure of the Blue Carbuncle -VIII. The Adventure of the Speckled Band - IX. The Adventure of the Engineer's Thumb - X. The Adventure of the Noble Bachelor - XI. The Adventure of the Beryl Coronet - XII. The Adventure of the Copper Beeches - - - - -ADVENTURE I. A SCANDAL IN BOHEMIA - -I. - -To Sherlock Holmes she is always THE woman. I have seldom heard -him mention her under any other name. In his eyes she eclipses -and predominates the whole of her sex. It was not that he felt -any emotion akin to love for Irene Adler. All emotions, and that -one particularly, were abhorrent to his cold, precise but -admirably balanced mind. He was, I take it, the most perfect -reasoning and observing machine that the world has seen, but as a -lover he would have placed himself in a false position. He never -spoke of the softer passions, save with a gibe and a sneer. They -were admirable things for the observer--excellent for drawing the -veil from men's motives and actions. But for the trained reasoner -to admit such intrusions into his own delicate and finely -adjusted temperament was to introduce a distracting factor which -might throw a doubt upon all his mental results. Grit in a -sensitive instrument, or a crack in one of his own high-power -lenses, would not be more disturbing than a strong emotion in a -nature such as his. And yet there was but one woman to him, and -that woman was the late Irene Adler, of dubious and questionable -memory. - -I had seen little of Holmes lately. My marriage had drifted us -away from each other. My own complete happiness, and the -home-centred interests which rise up around the man who first -finds himself master of his own establishment, were sufficient to -absorb all my attention, while Holmes, who loathed every form of -society with his whole Bohemian soul, remained in our lodgings in -Baker Street, buried among his old books, and alternating from -week to week between cocaine and ambition, the drowsiness of the -drug, and the fierce energy of his own keen nature. He was still, -as ever, deeply attracted by the study of crime, and occupied his -immense faculties and extraordinary powers of observation in -following out those clues, and clearing up those mysteries which -had been abandoned as hopeless by the official police. From time -to time I heard some vague account of his doings: of his summons -to Odessa in the case of the Trepoff murder, of his clearing up -of the singular tragedy of the Atkinson brothers at Trincomalee, -and finally of the mission which he had accomplished so -delicately and successfully for the reigning family of Holland. -Beyond these signs of his activity, however, which I merely -shared with all the readers of the daily press, I knew little of -my former friend and companion. - -One night--it was on the twentieth of March, 1888--I was -returning from a journey to a patient (for I had now returned to -civil practice), when my way led me through Baker Street. As I -passed the well-remembered door, which must always be associated -in my mind with my wooing, and with the dark incidents of the -Study in Scarlet, I was seized with a keen desire to see Holmes -again, and to know how he was employing his extraordinary powers. -His rooms were brilliantly lit, and, even as I looked up, I saw -his tall, spare figure pass twice in a dark silhouette against -the blind. He was pacing the room swiftly, eagerly, with his head -sunk upon his chest and his hands clasped behind him. To me, who -knew his every mood and habit, his attitude and manner told their -own story. He was at work again. He had risen out of his -drug-created dreams and was hot upon the scent of some new -problem. I rang the bell and was shown up to the chamber which -had formerly been in part my own. - -His manner was not effusive. It seldom was; but he was glad, I -think, to see me. With hardly a word spoken, but with a kindly -eye, he waved me to an armchair, threw across his case of cigars, -and indicated a spirit case and a gasogene in the corner. Then he -stood before the fire and looked me over in his singular -introspective fashion. - -"Wedlock suits you," he remarked. "I think, Watson, that you have -put on seven and a half pounds since I saw you." - -"Seven!" I answered. - -"Indeed, I should have thought a little more. Just a trifle more, -I fancy, Watson. And in practice again, I observe. You did not -tell me that you intended to go into harness." - -"Then, how do you know?" - -"I see it, I deduce it. How do I know that you have been getting -yourself very wet lately, and that you have a most clumsy and -careless servant girl?" - -"My dear Holmes," said I, "this is too much. You would certainly -have been burned, had you lived a few centuries ago. It is true -that I had a country walk on Thursday and came home in a dreadful -mess, but as I have changed my clothes I can't imagine how you -deduce it. As to Mary Jane, she is incorrigible, and my wife has -given her notice, but there, again, I fail to see how you work it -out." - -He chuckled to himself and rubbed his long, nervous hands -together. - -"It is simplicity itself," said he; "my eyes tell me that on the -inside of your left shoe, just where the firelight strikes it, -the leather is scored by six almost parallel cuts. Obviously they -have been caused by someone who has very carelessly scraped round -the edges of the sole in order to remove crusted mud from it. -Hence, you see, my double deduction that you had been out in vile -weather, and that you had a particularly malignant boot-slitting -specimen of the London slavey. As to your practice, if a -gentleman walks into my rooms smelling of iodoform, with a black -mark of nitrate of silver upon his right forefinger, and a bulge -on the right side of his top-hat to show where he has secreted -his stethoscope, I must be dull, indeed, if I do not pronounce -him to be an active member of the medical profession." - -I could not help laughing at the ease with which he explained his -process of deduction. "When I hear you give your reasons," I -remarked, "the thing always appears to me to be so ridiculously -simple that I could easily do it myself, though at each -successive instance of your reasoning I am baffled until you -explain your process. And yet I believe that my eyes are as good -as yours." - -"Quite so," he answered, lighting a cigarette, and throwing -himself down into an armchair. "You see, but you do not observe. -The distinction is clear. For example, you have frequently seen -the steps which lead up from the hall to this room." - -"Frequently." - -"How often?" - -"Well, some hundreds of times." - -"Then how many are there?" - -"How many? I don't know." - -"Quite so! You have not observed. And yet you have seen. That is -just my point. Now, I know that there are seventeen steps, -because I have both seen and observed. By-the-way, since you are -interested in these little problems, and since you are good -enough to chronicle one or two of my trifling experiences, you -may be interested in this." He threw over a sheet of thick, -pink-tinted note-paper which had been lying open upon the table. -"It came by the last post," said he. "Read it aloud." - -The note was undated, and without either signature or address. - -"There will call upon you to-night, at a quarter to eight -o'clock," it said, "a gentleman who desires to consult you upon a -matter of the very deepest moment. Your recent services to one of -the royal houses of Europe have shown that you are one who may -safely be trusted with matters which are of an importance which -can hardly be exaggerated. This account of you we have from all -quarters received. Be in your chamber then at that hour, and do -not take it amiss if your visitor wear a mask." - -"This is indeed a mystery," I remarked. "What do you imagine that -it means?" - -"I have no data yet. It is a capital mistake to theorize before -one has data. Insensibly one begins to twist facts to suit -theories, instead of theories to suit facts. But the note itself. -What do you deduce from it?" - -I carefully examined the writing, and the paper upon which it was -written. - -"The man who wrote it was presumably well to do," I remarked, -endeavouring to imitate my companion's processes. "Such paper -could not be bought under half a crown a packet. It is peculiarly -strong and stiff." - -"Peculiar--that is the very word," said Holmes. "It is not an -English paper at all. Hold it up to the light." - -I did so, and saw a large "E" with a small "g," a "P," and a -large "G" with a small "t" woven into the texture of the paper. - -"What do you make of that?" asked Holmes. - -"The name of the maker, no doubt; or his monogram, rather." - -"Not at all. The 'G' with the small 't' stands for -'Gesellschaft,' which is the German for 'Company.' It is a -customary contraction like our 'Co.' 'P,' of course, stands for -'Papier.' Now for the 'Eg.' Let us glance at our Continental -Gazetteer." He took down a heavy brown volume from his shelves. -"Eglow, Eglonitz--here we are, Egria. It is in a German-speaking -country--in Bohemia, not far from Carlsbad. 'Remarkable as being -the scene of the death of Wallenstein, and for its numerous -glass-factories and paper-mills.' Ha, ha, my boy, what do you -make of that?" His eyes sparkled, and he sent up a great blue -triumphant cloud from his cigarette. - -"The paper was made in Bohemia," I said. - -"Precisely. And the man who wrote the note is a German. Do you -note the peculiar construction of the sentence--'This account of -you we have from all quarters received.' A Frenchman or Russian -could not have written that. It is the German who is so -uncourteous to his verbs. It only remains, therefore, to discover -what is wanted by this German who writes upon Bohemian paper and -prefers wearing a mask to showing his face. And here he comes, if -I am not mistaken, to resolve all our doubts." - -As he spoke there was the sharp sound of horses' hoofs and -grating wheels against the curb, followed by a sharp pull at the -bell. Holmes whistled. - -"A pair, by the sound," said he. "Yes," he continued, glancing -out of the window. "A nice little brougham and a pair of -beauties. A hundred and fifty guineas apiece. There's money in -this case, Watson, if there is nothing else." - -"I think that I had better go, Holmes." - -"Not a bit, Doctor. Stay where you are. I am lost without my -Boswell. And this promises to be interesting. It would be a pity -to miss it." - -"But your client--" - -"Never mind him. I may want your help, and so may he. Here he -comes. Sit down in that armchair, Doctor, and give us your best -attention." - -A slow and heavy step, which had been heard upon the stairs and -in the passage, paused immediately outside the door. Then there -was a loud and authoritative tap. - -"Come in!" said Holmes. - -A man entered who could hardly have been less than six feet six -inches in height, with the chest and limbs of a Hercules. His -dress was rich with a richness which would, in England, be looked -upon as akin to bad taste. Heavy bands of astrakhan were slashed -across the sleeves and fronts of his double-breasted coat, while -the deep blue cloak which was thrown over his shoulders was lined -with flame-coloured silk and secured at the neck with a brooch -which consisted of a single flaming beryl. Boots which extended -halfway up his calves, and which were trimmed at the tops with -rich brown fur, completed the impression of barbaric opulence -which was suggested by his whole appearance. He carried a -broad-brimmed hat in his hand, while he wore across the upper -part of his face, extending down past the cheekbones, a black -vizard mask, which he had apparently adjusted that very moment, -for his hand was still raised to it as he entered. From the lower -part of the face he appeared to be a man of strong character, -with a thick, hanging lip, and a long, straight chin suggestive -of resolution pushed to the length of obstinacy. - -"You had my note?" he asked with a deep harsh voice and a -strongly marked German accent. "I told you that I would call." He -looked from one to the other of us, as if uncertain which to -address. - -"Pray take a seat," said Holmes. "This is my friend and -colleague, Dr. Watson, who is occasionally good enough to help me -in my cases. Whom have I the honour to address?" - -"You may address me as the Count Von Kramm, a Bohemian nobleman. -I understand that this gentleman, your friend, is a man of honour -and discretion, whom I may trust with a matter of the most -extreme importance. If not, I should much prefer to communicate -with you alone." - -I rose to go, but Holmes caught me by the wrist and pushed me -back into my chair. "It is both, or none," said he. "You may say -before this gentleman anything which you may say to me." - -The Count shrugged his broad shoulders. "Then I must begin," said -he, "by binding you both to absolute secrecy for two years; at -the end of that time the matter will be of no importance. At -present it is not too much to say that it is of such weight it -may have an influence upon European history." - -"I promise," said Holmes. - -"And I." - -"You will excuse this mask," continued our strange visitor. "The -august person who employs me wishes his agent to be unknown to -you, and I may confess at once that the title by which I have -just called myself is not exactly my own." - -"I was aware of it," said Holmes dryly. - -"The circumstances are of great delicacy, and every precaution -has to be taken to quench what might grow to be an immense -scandal and seriously compromise one of the reigning families of -Europe. To speak plainly, the matter implicates the great House -of Ormstein, hereditary kings of Bohemia." - -"I was also aware of that," murmured Holmes, settling himself -down in his armchair and closing his eyes. - -Our visitor glanced with some apparent surprise at the languid, -lounging figure of the man who had been no doubt depicted to him -as the most incisive reasoner and most energetic agent in Europe. -Holmes slowly reopened his eyes and looked impatiently at his -gigantic client. - -"If your Majesty would condescend to state your case," he -remarked, "I should be better able to advise you." - -The man sprang from his chair and paced up and down the room in -uncontrollable agitation. Then, with a gesture of desperation, he -tore the mask from his face and hurled it upon the ground. "You -are right," he cried; "I am the King. Why should I attempt to -conceal it?" - -"Why, indeed?" murmured Holmes. "Your Majesty had not spoken -before I was aware that I was addressing Wilhelm Gottsreich -Sigismond von Ormstein, Grand Duke of Cassel-Felstein, and -hereditary King of Bohemia." - -"But you can understand," said our strange visitor, sitting down -once more and passing his hand over his high white forehead, "you -can understand that I am not accustomed to doing such business in -my own person. Yet the matter was so delicate that I could not -confide it to an agent without putting myself in his power. I -have come incognito from Prague for the purpose of consulting -you." - -"Then, pray consult," said Holmes, shutting his eyes once more. - -"The facts are briefly these: Some five years ago, during a -lengthy visit to Warsaw, I made the acquaintance of the well-known -adventuress, Irene Adler. The name is no doubt familiar to you." - -"Kindly look her up in my index, Doctor," murmured Holmes without -opening his eyes. For many years he had adopted a system of -docketing all paragraphs concerning men and things, so that it -was difficult to name a subject or a person on which he could not -at once furnish information. In this case I found her biography -sandwiched in between that of a Hebrew rabbi and that of a -staff-commander who had written a monograph upon the deep-sea -fishes. - -"Let me see!" said Holmes. "Hum! Born in New Jersey in the year -1858. Contralto--hum! La Scala, hum! Prima donna Imperial Opera -of Warsaw--yes! Retired from operatic stage--ha! Living in -London--quite so! Your Majesty, as I understand, became entangled -with this young person, wrote her some compromising letters, and -is now desirous of getting those letters back." - -"Precisely so. But how--" - -"Was there a secret marriage?" - -"None." - -"No legal papers or certificates?" - -"None." - -"Then I fail to follow your Majesty. If this young person should -produce her letters for blackmailing or other purposes, how is -she to prove their authenticity?" - -"There is the writing." - -"Pooh, pooh! Forgery." - -"My private note-paper." - -"Stolen." - -"My own seal." - -"Imitated." - -"My photograph." - -"Bought." - -"We were both in the photograph." - -"Oh, dear! That is very bad! Your Majesty has indeed committed an -indiscretion." - -"I was mad--insane." - -"You have compromised yourself seriously." - -"I was only Crown Prince then. I was young. I am but thirty now." - -"It must be recovered." - -"We have tried and failed." - -"Your Majesty must pay. It must be bought." - -"She will not sell." - -"Stolen, then." - -"Five attempts have been made. Twice burglars in my pay ransacked -her house. Once we diverted her luggage when she travelled. Twice -she has been waylaid. There has been no result." - -"No sign of it?" - -"Absolutely none." - -Holmes laughed. "It is quite a pretty little problem," said he. - -"But a very serious one to me," returned the King reproachfully. - -"Very, indeed. And what does she propose to do with the -photograph?" - -"To ruin me." - -"But how?" - -"I am about to be married." - -"So I have heard." - -"To Clotilde Lothman von Saxe-Meningen, second daughter of the -King of Scandinavia. You may know the strict principles of her -family. She is herself the very soul of delicacy. A shadow of a -doubt as to my conduct would bring the matter to an end." - -"And Irene Adler?" - -"Threatens to send them the photograph. And she will do it. I -know that she will do it. You do not know her, but she has a soul -of steel. She has the face of the most beautiful of women, and -the mind of the most resolute of men. Rather than I should marry -another woman, there are no lengths to which she would not -go--none." - -"You are sure that she has not sent it yet?" - -"I am sure." - -"And why?" - -"Because she has said that she would send it on the day when the -betrothal was publicly proclaimed. That will be next Monday." - -"Oh, then we have three days yet," said Holmes with a yawn. "That -is very fortunate, as I have one or two matters of importance to -look into just at present. Your Majesty will, of course, stay in -London for the present?" - -"Certainly. You will find me at the Langham under the name of the -Count Von Kramm." - -"Then I shall drop you a line to let you know how we progress." - -"Pray do so. I shall be all anxiety." - -"Then, as to money?" - -"You have carte blanche." - -"Absolutely?" - -"I tell you that I would give one of the provinces of my kingdom -to have that photograph." - -"And for present expenses?" - -The King took a heavy chamois leather bag from under his cloak -and laid it on the table. - -"There are three hundred pounds in gold and seven hundred in -notes," he said. - -Holmes scribbled a receipt upon a sheet of his note-book and -handed it to him. - -"And Mademoiselle's address?" he asked. - -"Is Briony Lodge, Serpentine Avenue, St. John's Wood." - -Holmes took a note of it. "One other question," said he. "Was the -photograph a cabinet?" - -"It was." - -"Then, good-night, your Majesty, and I trust that we shall soon -have some good news for you. And good-night, Watson," he added, -as the wheels of the royal brougham rolled down the street. "If -you will be good enough to call to-morrow afternoon at three -o'clock I should like to chat this little matter over with you." - - -II. - -At three o'clock precisely I was at Baker Street, but Holmes had -not yet returned. The landlady informed me that he had left the -house shortly after eight o'clock in the morning. I sat down -beside the fire, however, with the intention of awaiting him, -however long he might be. I was already deeply interested in his -inquiry, for, though it was surrounded by none of the grim and -strange features which were associated with the two crimes which -I have already recorded, still, the nature of the case and the -exalted station of his client gave it a character of its own. -Indeed, apart from the nature of the investigation which my -friend had on hand, there was something in his masterly grasp of -a situation, and his keen, incisive reasoning, which made it a -pleasure to me to study his system of work, and to follow the -quick, subtle methods by which he disentangled the most -inextricable mysteries. So accustomed was I to his invariable -success that the very possibility of his failing had ceased to -enter into my head. - -It was close upon four before the door opened, and a -drunken-looking groom, ill-kempt and side-whiskered, with an -inflamed face and disreputable clothes, walked into the room. -Accustomed as I was to my friend's amazing powers in the use of -disguises, I had to look three times before I was certain that it -was indeed he. With a nod he vanished into the bedroom, whence he -emerged in five minutes tweed-suited and respectable, as of old. -Putting his hands into his pockets, he stretched out his legs in -front of the fire and laughed heartily for some minutes. - -"Well, really!" he cried, and then he choked and laughed again -until he was obliged to lie back, limp and helpless, in the -chair. - -"What is it?" - -"It's quite too funny. I am sure you could never guess how I -employed my morning, or what I ended by doing." - -"I can't imagine. I suppose that you have been watching the -habits, and perhaps the house, of Miss Irene Adler." - -"Quite so; but the sequel was rather unusual. I will tell you, -however. I left the house a little after eight o'clock this -morning in the character of a groom out of work. There is a -wonderful sympathy and freemasonry among horsey men. Be one of -them, and you will know all that there is to know. I soon found -Briony Lodge. It is a bijou villa, with a garden at the back, but -built out in front right up to the road, two stories. Chubb lock -to the door. Large sitting-room on the right side, well -furnished, with long windows almost to the floor, and those -preposterous English window fasteners which a child could open. -Behind there was nothing remarkable, save that the passage window -could be reached from the top of the coach-house. I walked round -it and examined it closely from every point of view, but without -noting anything else of interest. - -"I then lounged down the street and found, as I expected, that -there was a mews in a lane which runs down by one wall of the -garden. I lent the ostlers a hand in rubbing down their horses, -and received in exchange twopence, a glass of half and half, two -fills of shag tobacco, and as much information as I could desire -about Miss Adler, to say nothing of half a dozen other people in -the neighbourhood in whom I was not in the least interested, but -whose biographies I was compelled to listen to." - -"And what of Irene Adler?" I asked. - -"Oh, she has turned all the men's heads down in that part. She is -the daintiest thing under a bonnet on this planet. So say the -Serpentine-mews, to a man. She lives quietly, sings at concerts, -drives out at five every day, and returns at seven sharp for -dinner. Seldom goes out at other times, except when she sings. -Has only one male visitor, but a good deal of him. He is dark, -handsome, and dashing, never calls less than once a day, and -often twice. He is a Mr. Godfrey Norton, of the Inner Temple. See -the advantages of a cabman as a confidant. They had driven him -home a dozen times from Serpentine-mews, and knew all about him. -When I had listened to all they had to tell, I began to walk up -and down near Briony Lodge once more, and to think over my plan -of campaign. - -"This Godfrey Norton was evidently an important factor in the -matter. He was a lawyer. That sounded ominous. What was the -relation between them, and what the object of his repeated -visits? Was she his client, his friend, or his mistress? If the -former, she had probably transferred the photograph to his -keeping. If the latter, it was less likely. On the issue of this -question depended whether I should continue my work at Briony -Lodge, or turn my attention to the gentleman's chambers in the -Temple. It was a delicate point, and it widened the field of my -inquiry. I fear that I bore you with these details, but I have to -let you see my little difficulties, if you are to understand the -situation." - -"I am following you closely," I answered. - -"I was still balancing the matter in my mind when a hansom cab -drove up to Briony Lodge, and a gentleman sprang out. He was a -remarkably handsome man, dark, aquiline, and moustached--evidently -the man of whom I had heard. He appeared to be in a -great hurry, shouted to the cabman to wait, and brushed past the -maid who opened the door with the air of a man who was thoroughly -at home. - -"He was in the house about half an hour, and I could catch -glimpses of him in the windows of the sitting-room, pacing up and -down, talking excitedly, and waving his arms. Of her I could see -nothing. Presently he emerged, looking even more flurried than -before. As he stepped up to the cab, he pulled a gold watch from -his pocket and looked at it earnestly, 'Drive like the devil,' he -shouted, 'first to Gross & Hankey's in Regent Street, and then to -the Church of St. Monica in the Edgeware Road. Half a guinea if -you do it in twenty minutes!' - -"Away they went, and I was just wondering whether I should not do -well to follow them when up the lane came a neat little landau, -the coachman with his coat only half-buttoned, and his tie under -his ear, while all the tags of his harness were sticking out of -the buckles. It hadn't pulled up before she shot out of the hall -door and into it. I only caught a glimpse of her at the moment, -but she was a lovely woman, with a face that a man might die for. - -"'The Church of St. Monica, John,' she cried, 'and half a -sovereign if you reach it in twenty minutes.' - -"This was quite too good to lose, Watson. I was just balancing -whether I should run for it, or whether I should perch behind her -landau when a cab came through the street. The driver looked -twice at such a shabby fare, but I jumped in before he could -object. 'The Church of St. Monica,' said I, 'and half a sovereign -if you reach it in twenty minutes.' It was twenty-five minutes to -twelve, and of course it was clear enough what was in the wind. - -"My cabby drove fast. I don't think I ever drove faster, but the -others were there before us. The cab and the landau with their -steaming horses were in front of the door when I arrived. I paid -the man and hurried into the church. There was not a soul there -save the two whom I had followed and a surpliced clergyman, who -seemed to be expostulating with them. They were all three -standing in a knot in front of the altar. I lounged up the side -aisle like any other idler who has dropped into a church. -Suddenly, to my surprise, the three at the altar faced round to -me, and Godfrey Norton came running as hard as he could towards -me. - -"'Thank God,' he cried. 'You'll do. Come! Come!' - -"'What then?' I asked. - -"'Come, man, come, only three minutes, or it won't be legal.' - -"I was half-dragged up to the altar, and before I knew where I was -I found myself mumbling responses which were whispered in my ear, -and vouching for things of which I knew nothing, and generally -assisting in the secure tying up of Irene Adler, spinster, to -Godfrey Norton, bachelor. It was all done in an instant, and -there was the gentleman thanking me on the one side and the lady -on the other, while the clergyman beamed on me in front. It was -the most preposterous position in which I ever found myself in my -life, and it was the thought of it that started me laughing just -now. It seems that there had been some informality about their -license, that the clergyman absolutely refused to marry them -without a witness of some sort, and that my lucky appearance -saved the bridegroom from having to sally out into the streets in -search of a best man. The bride gave me a sovereign, and I mean -to wear it on my watch-chain in memory of the occasion." - -"This is a very unexpected turn of affairs," said I; "and what -then?" - -"Well, I found my plans very seriously menaced. It looked as if -the pair might take an immediate departure, and so necessitate -very prompt and energetic measures on my part. At the church -door, however, they separated, he driving back to the Temple, and -she to her own house. 'I shall drive out in the park at five as -usual,' she said as she left him. I heard no more. They drove -away in different directions, and I went off to make my own -arrangements." - -"Which are?" - -"Some cold beef and a glass of beer," he answered, ringing the -bell. "I have been too busy to think of food, and I am likely to -be busier still this evening. By the way, Doctor, I shall want -your co-operation." - -"I shall be delighted." - -"You don't mind breaking the law?" - -"Not in the least." - -"Nor running a chance of arrest?" - -"Not in a good cause." - -"Oh, the cause is excellent!" - -"Then I am your man." - -"I was sure that I might rely on you." - -"But what is it you wish?" - -"When Mrs. Turner has brought in the tray I will make it clear to -you. Now," he said as he turned hungrily on the simple fare that -our landlady had provided, "I must discuss it while I eat, for I -have not much time. It is nearly five now. In two hours we must -be on the scene of action. Miss Irene, or Madame, rather, returns -from her drive at seven. We must be at Briony Lodge to meet her." - -"And what then?" - -"You must leave that to me. I have already arranged what is to -occur. There is only one point on which I must insist. You must -not interfere, come what may. You understand?" - -"I am to be neutral?" - -"To do nothing whatever. There will probably be some small -unpleasantness. Do not join in it. It will end in my being -conveyed into the house. Four or five minutes afterwards the -sitting-room window will open. You are to station yourself close -to that open window." - -"Yes." - -"You are to watch me, for I will be visible to you." - -"Yes." - -"And when I raise my hand--so--you will throw into the room what -I give you to throw, and will, at the same time, raise the cry of -fire. You quite follow me?" - -"Entirely." - -"It is nothing very formidable," he said, taking a long cigar-shaped -roll from his pocket. "It is an ordinary plumber's smoke-rocket, -fitted with a cap at either end to make it self-lighting. -Your task is confined to that. When you raise your cry of fire, -it will be taken up by quite a number of people. You may then -walk to the end of the street, and I will rejoin you in ten -minutes. I hope that I have made myself clear?" - -"I am to remain neutral, to get near the window, to watch you, -and at the signal to throw in this object, then to raise the cry -of fire, and to wait you at the corner of the street." - -"Precisely." - -"Then you may entirely rely on me." - -"That is excellent. I think, perhaps, it is almost time that I -prepare for the new role I have to play." - -He disappeared into his bedroom and returned in a few minutes in -the character of an amiable and simple-minded Nonconformist -clergyman. His broad black hat, his baggy trousers, his white -tie, his sympathetic smile, and general look of peering and -benevolent curiosity were such as Mr. John Hare alone could have -equalled. It was not merely that Holmes changed his costume. His -expression, his manner, his very soul seemed to vary with every -fresh part that he assumed. The stage lost a fine actor, even as -science lost an acute reasoner, when he became a specialist in -crime. - -It was a quarter past six when we left Baker Street, and it still -wanted ten minutes to the hour when we found ourselves in -Serpentine Avenue. It was already dusk, and the lamps were just -being lighted as we paced up and down in front of Briony Lodge, -waiting for the coming of its occupant. The house was just such -as I had pictured it from Sherlock Holmes' succinct description, -but the locality appeared to be less private than I expected. On -the contrary, for a small street in a quiet neighbourhood, it was -remarkably animated. There was a group of shabbily dressed men -smoking and laughing in a corner, a scissors-grinder with his -wheel, two guardsmen who were flirting with a nurse-girl, and -several well-dressed young men who were lounging up and down with -cigars in their mouths. - -"You see," remarked Holmes, as we paced to and fro in front of -the house, "this marriage rather simplifies matters. The -photograph becomes a double-edged weapon now. The chances are -that she would be as averse to its being seen by Mr. Godfrey -Norton, as our client is to its coming to the eyes of his -princess. Now the question is, Where are we to find the -photograph?" - -"Where, indeed?" - -"It is most unlikely that she carries it about with her. It is -cabinet size. Too large for easy concealment about a woman's -dress. She knows that the King is capable of having her waylaid -and searched. Two attempts of the sort have already been made. We -may take it, then, that she does not carry it about with her." - -"Where, then?" - -"Her banker or her lawyer. There is that double possibility. But -I am inclined to think neither. Women are naturally secretive, -and they like to do their own secreting. Why should she hand it -over to anyone else? She could trust her own guardianship, but -she could not tell what indirect or political influence might be -brought to bear upon a business man. Besides, remember that she -had resolved to use it within a few days. It must be where she -can lay her hands upon it. It must be in her own house." - -"But it has twice been burgled." - -"Pshaw! They did not know how to look." - -"But how will you look?" - -"I will not look." - -"What then?" - -"I will get her to show me." - -"But she will refuse." - -"She will not be able to. But I hear the rumble of wheels. It is -her carriage. Now carry out my orders to the letter." - -As he spoke the gleam of the side-lights of a carriage came round -the curve of the avenue. It was a smart little landau which -rattled up to the door of Briony Lodge. As it pulled up, one of -the loafing men at the corner dashed forward to open the door in -the hope of earning a copper, but was elbowed away by another -loafer, who had rushed up with the same intention. A fierce -quarrel broke out, which was increased by the two guardsmen, who -took sides with one of the loungers, and by the scissors-grinder, -who was equally hot upon the other side. A blow was struck, and -in an instant the lady, who had stepped from her carriage, was -the centre of a little knot of flushed and struggling men, who -struck savagely at each other with their fists and sticks. Holmes -dashed into the crowd to protect the lady; but just as he reached -her he gave a cry and dropped to the ground, with the blood -running freely down his face. At his fall the guardsmen took to -their heels in one direction and the loungers in the other, while -a number of better-dressed people, who had watched the scuffle -without taking part in it, crowded in to help the lady and to -attend to the injured man. Irene Adler, as I will still call her, -had hurried up the steps; but she stood at the top with her -superb figure outlined against the lights of the hall, looking -back into the street. - -"Is the poor gentleman much hurt?" she asked. - -"He is dead," cried several voices. - -"No, no, there's life in him!" shouted another. "But he'll be -gone before you can get him to hospital." - -"He's a brave fellow," said a woman. "They would have had the -lady's purse and watch if it hadn't been for him. They were a -gang, and a rough one, too. Ah, he's breathing now." - -"He can't lie in the street. May we bring him in, marm?" - -"Surely. Bring him into the sitting-room. There is a comfortable -sofa. This way, please!" - -Slowly and solemnly he was borne into Briony Lodge and laid out -in the principal room, while I still observed the proceedings -from my post by the window. The lamps had been lit, but the -blinds had not been drawn, so that I could see Holmes as he lay -upon the couch. I do not know whether he was seized with -compunction at that moment for the part he was playing, but I -know that I never felt more heartily ashamed of myself in my life -than when I saw the beautiful creature against whom I was -conspiring, or the grace and kindliness with which she waited -upon the injured man. And yet it would be the blackest treachery -to Holmes to draw back now from the part which he had intrusted -to me. I hardened my heart, and took the smoke-rocket from under -my ulster. After all, I thought, we are not injuring her. We are -but preventing her from injuring another. - -Holmes had sat up upon the couch, and I saw him motion like a man -who is in need of air. A maid rushed across and threw open the -window. At the same instant I saw him raise his hand and at the -signal I tossed my rocket into the room with a cry of "Fire!" The -word was no sooner out of my mouth than the whole crowd of -spectators, well dressed and ill--gentlemen, ostlers, and -servant-maids--joined in a general shriek of "Fire!" Thick clouds -of smoke curled through the room and out at the open window. I -caught a glimpse of rushing figures, and a moment later the voice -of Holmes from within assuring them that it was a false alarm. -Slipping through the shouting crowd I made my way to the corner -of the street, and in ten minutes was rejoiced to find my -friend's arm in mine, and to get away from the scene of uproar. -He walked swiftly and in silence for some few minutes until we -had turned down one of the quiet streets which lead towards the -Edgeware Road. - -"You did it very nicely, Doctor," he remarked. "Nothing could -have been better. It is all right." - -"You have the photograph?" - -"I know where it is." - -"And how did you find out?" - -"She showed me, as I told you she would." - -"I am still in the dark." - -"I do not wish to make a mystery," said he, laughing. "The matter -was perfectly simple. You, of course, saw that everyone in the -street was an accomplice. They were all engaged for the evening." - -"I guessed as much." - -"Then, when the row broke out, I had a little moist red paint in -the palm of my hand. I rushed forward, fell down, clapped my hand -to my face, and became a piteous spectacle. It is an old trick." - -"That also I could fathom." - -"Then they carried me in. She was bound to have me in. What else -could she do? And into her sitting-room, which was the very room -which I suspected. It lay between that and her bedroom, and I was -determined to see which. They laid me on a couch, I motioned for -air, they were compelled to open the window, and you had your -chance." - -"How did that help you?" - -"It was all-important. When a woman thinks that her house is on -fire, her instinct is at once to rush to the thing which she -values most. It is a perfectly overpowering impulse, and I have -more than once taken advantage of it. In the case of the -Darlington substitution scandal it was of use to me, and also in -the Arnsworth Castle business. A married woman grabs at her baby; -an unmarried one reaches for her jewel-box. Now it was clear to -me that our lady of to-day had nothing in the house more precious -to her than what we are in quest of. She would rush to secure it. -The alarm of fire was admirably done. The smoke and shouting were -enough to shake nerves of steel. She responded beautifully. The -photograph is in a recess behind a sliding panel just above the -right bell-pull. She was there in an instant, and I caught a -glimpse of it as she half-drew it out. When I cried out that it -was a false alarm, she replaced it, glanced at the rocket, rushed -from the room, and I have not seen her since. I rose, and, making -my excuses, escaped from the house. I hesitated whether to -attempt to secure the photograph at once; but the coachman had -come in, and as he was watching me narrowly it seemed safer to -wait. A little over-precipitance may ruin all." - -"And now?" I asked. - -"Our quest is practically finished. I shall call with the King -to-morrow, and with you, if you care to come with us. We will be -shown into the sitting-room to wait for the lady, but it is -probable that when she comes she may find neither us nor the -photograph. It might be a satisfaction to his Majesty to regain -it with his own hands." - -"And when will you call?" - -"At eight in the morning. She will not be up, so that we shall -have a clear field. Besides, we must be prompt, for this marriage -may mean a complete change in her life and habits. I must wire to -the King without delay." - -We had reached Baker Street and had stopped at the door. He was -searching his pockets for the key when someone passing said: - -"Good-night, Mister Sherlock Holmes." - -There were several people on the pavement at the time, but the -greeting appeared to come from a slim youth in an ulster who had -hurried by. - -"I've heard that voice before," said Holmes, staring down the -dimly lit street. "Now, I wonder who the deuce that could have -been." - - -III. - -I slept at Baker Street that night, and we were engaged upon our -toast and coffee in the morning when the King of Bohemia rushed -into the room. - -"You have really got it!" he cried, grasping Sherlock Holmes by -either shoulder and looking eagerly into his face. - -"Not yet." - -"But you have hopes?" - -"I have hopes." - -"Then, come. I am all impatience to be gone." - -"We must have a cab." - -"No, my brougham is waiting." - -"Then that will simplify matters." We descended and started off -once more for Briony Lodge. - -"Irene Adler is married," remarked Holmes. - -"Married! When?" - -"Yesterday." - -"But to whom?" - -"To an English lawyer named Norton." - -"But she could not love him." - -"I am in hopes that she does." - -"And why in hopes?" - -"Because it would spare your Majesty all fear of future -annoyance. If the lady loves her husband, she does not love your -Majesty. If she does not love your Majesty, there is no reason -why she should interfere with your Majesty's plan." - -"It is true. And yet--Well! I wish she had been of my own -station! What a queen she would have made!" He relapsed into a -moody silence, which was not broken until we drew up in -Serpentine Avenue. - -The door of Briony Lodge was open, and an elderly woman stood -upon the steps. She watched us with a sardonic eye as we stepped -from the brougham. - -"Mr. Sherlock Holmes, I believe?" said she. - -"I am Mr. Holmes," answered my companion, looking at her with a -questioning and rather startled gaze. - -"Indeed! My mistress told me that you were likely to call. She -left this morning with her husband by the 5:15 train from Charing -Cross for the Continent." - -"What!" Sherlock Holmes staggered back, white with chagrin and -surprise. "Do you mean that she has left England?" - -"Never to return." - -"And the papers?" asked the King hoarsely. "All is lost." - -"We shall see." He pushed past the servant and rushed into the -drawing-room, followed by the King and myself. The furniture was -scattered about in every direction, with dismantled shelves and -open drawers, as if the lady had hurriedly ransacked them before -her flight. Holmes rushed at the bell-pull, tore back a small -sliding shutter, and, plunging in his hand, pulled out a -photograph and a letter. The photograph was of Irene Adler -herself in evening dress, the letter was superscribed to -"Sherlock Holmes, Esq. To be left till called for." My friend -tore it open and we all three read it together. It was dated at -midnight of the preceding night and ran in this way: - -"MY DEAR MR. SHERLOCK HOLMES,--You really did it very well. You -took me in completely. Until after the alarm of fire, I had not a -suspicion. But then, when I found how I had betrayed myself, I -began to think. I had been warned against you months ago. I had -been told that if the King employed an agent it would certainly -be you. And your address had been given me. Yet, with all this, -you made me reveal what you wanted to know. Even after I became -suspicious, I found it hard to think evil of such a dear, kind -old clergyman. But, you know, I have been trained as an actress -myself. Male costume is nothing new to me. I often take advantage -of the freedom which it gives. I sent John, the coachman, to -watch you, ran up stairs, got into my walking-clothes, as I call -them, and came down just as you departed. - -"Well, I followed you to your door, and so made sure that I was -really an object of interest to the celebrated Mr. Sherlock -Holmes. Then I, rather imprudently, wished you good-night, and -started for the Temple to see my husband. - -"We both thought the best resource was flight, when pursued by -so formidable an antagonist; so you will find the nest empty when -you call to-morrow. As to the photograph, your client may rest in -peace. I love and am loved by a better man than he. The King may -do what he will without hindrance from one whom he has cruelly -wronged. I keep it only to safeguard myself, and to preserve a -weapon which will always secure me from any steps which he might -take in the future. I leave a photograph which he might care to -possess; and I remain, dear Mr. Sherlock Holmes, - - "Very truly yours, - "IRENE NORTON, ne ADLER." - -"What a woman--oh, what a woman!" cried the King of Bohemia, when -we had all three read this epistle. "Did I not tell you how quick -and resolute she was? Would she not have made an admirable queen? -Is it not a pity that she was not on my level?" - -"From what I have seen of the lady she seems indeed to be on a -very different level to your Majesty," said Holmes coldly. "I am -sorry that I have not been able to bring your Majesty's business -to a more successful conclusion." - -"On the contrary, my dear sir," cried the King; "nothing could be -more successful. I know that her word is inviolate. The -photograph is now as safe as if it were in the fire." - -"I am glad to hear your Majesty say so." - -"I am immensely indebted to you. Pray tell me in what way I can -reward you. This ring--" He slipped an emerald snake ring from -his finger and held it out upon the palm of his hand. - -"Your Majesty has something which I should value even more -highly," said Holmes. - -"You have but to name it." - -"This photograph!" - -The King stared at him in amazement. - -"Irene's photograph!" he cried. "Certainly, if you wish it." - -"I thank your Majesty. Then there is no more to be done in the -matter. I have the honour to wish you a very good-morning." He -bowed, and, turning away without observing the hand which the -King had stretched out to him, he set off in my company for his -chambers. - -And that was how a great scandal threatened to affect the kingdom -of Bohemia, and how the best plans of Mr. Sherlock Holmes were -beaten by a woman's wit. He used to make merry over the -cleverness of women, but I have not heard him do it of late. And -when he speaks of Irene Adler, or when he refers to her -photograph, it is always under the honourable title of the woman. - - - -ADVENTURE II. THE RED-HEADED LEAGUE - -I had called upon my friend, Mr. Sherlock Holmes, one day in the -autumn of last year and found him in deep conversation with a -very stout, florid-faced, elderly gentleman with fiery red hair. -With an apology for my intrusion, I was about to withdraw when -Holmes pulled me abruptly into the room and closed the door -behind me. - -"You could not possibly have come at a better time, my dear -Watson," he said cordially. - -"I was afraid that you were engaged." - -"So I am. Very much so." - -"Then I can wait in the next room." - -"Not at all. This gentleman, Mr. Wilson, has been my partner and -helper in many of my most successful cases, and I have no -doubt that he will be of the utmost use to me in yours also." - -The stout gentleman half rose from his chair and gave a bob of -greeting, with a quick little questioning glance from his small -fat-encircled eyes. - -"Try the settee," said Holmes, relapsing into his armchair and -putting his fingertips together, as was his custom when in -judicial moods. "I know, my dear Watson, that you share my love -of all that is bizarre and outside the conventions and humdrum -routine of everyday life. You have shown your relish for it by -the enthusiasm which has prompted you to chronicle, and, if you -will excuse my saying so, somewhat to embellish so many of my own -little adventures." - -"Your cases have indeed been of the greatest interest to me," I -observed. - -"You will remember that I remarked the other day, just before we -went into the very simple problem presented by Miss Mary -Sutherland, that for strange effects and extraordinary -combinations we must go to life itself, which is always far more -daring than any effort of the imagination." - -"A proposition which I took the liberty of doubting." - -"You did, Doctor, but none the less you must come round to my -view, for otherwise I shall keep on piling fact upon fact on you -until your reason breaks down under them and acknowledges me to -be right. Now, Mr. Jabez Wilson here has been good enough to call -upon me this morning, and to begin a narrative which promises to -be one of the most singular which I have listened to for some -time. You have heard me remark that the strangest and most unique -things are very often connected not with the larger but with the -smaller crimes, and occasionally, indeed, where there is room for -doubt whether any positive crime has been committed. As far as I -have heard it is impossible for me to say whether the present -case is an instance of crime or not, but the course of events is -certainly among the most singular that I have ever listened to. -Perhaps, Mr. Wilson, you would have the great kindness to -recommence your narrative. I ask you not merely because my friend -Dr. Watson has not heard the opening part but also because the -peculiar nature of the story makes me anxious to have every -possible detail from your lips. As a rule, when I have heard some -slight indication of the course of events, I am able to guide -myself by the thousands of other similar cases which occur to my -memory. In the present instance I am forced to admit that the -facts are, to the best of my belief, unique." - -The portly client puffed out his chest with an appearance of some -little pride and pulled a dirty and wrinkled newspaper from the -inside pocket of his greatcoat. As he glanced down the -advertisement column, with his head thrust forward and the paper -flattened out upon his knee, I took a good look at the man and -endeavoured, after the fashion of my companion, to read the -indications which might be presented by his dress or appearance. - -I did not gain very much, however, by my inspection. Our visitor -bore every mark of being an average commonplace British -tradesman, obese, pompous, and slow. He wore rather baggy grey -shepherd's check trousers, a not over-clean black frock-coat, -unbuttoned in the front, and a drab waistcoat with a heavy brassy -Albert chain, and a square pierced bit of metal dangling down as -an ornament. A frayed top-hat and a faded brown overcoat with a -wrinkled velvet collar lay upon a chair beside him. Altogether, -look as I would, there was nothing remarkable about the man save -his blazing red head, and the expression of extreme chagrin and -discontent upon his features. - -Sherlock Holmes' quick eye took in my occupation, and he shook -his head with a smile as he noticed my questioning glances. -"Beyond the obvious facts that he has at some time done manual -labour, that he takes snuff, that he is a Freemason, that he has -been in China, and that he has done a considerable amount of -writing lately, I can deduce nothing else." - -Mr. Jabez Wilson started up in his chair, with his forefinger -upon the paper, but his eyes upon my companion. - -"How, in the name of good-fortune, did you know all that, Mr. -Holmes?" he asked. "How did you know, for example, that I did -manual labour. It's as true as gospel, for I began as a ship's -carpenter." - -"Your hands, my dear sir. Your right hand is quite a size larger -than your left. You have worked with it, and the muscles are more -developed." - -"Well, the snuff, then, and the Freemasonry?" - -"I won't insult your intelligence by telling you how I read that, -especially as, rather against the strict rules of your order, you -use an arc-and-compass breastpin." - -"Ah, of course, I forgot that. But the writing?" - -"What else can be indicated by that right cuff so very shiny for -five inches, and the left one with the smooth patch near the -elbow where you rest it upon the desk?" - -"Well, but China?" - -"The fish that you have tattooed immediately above your right -wrist could only have been done in China. I have made a small -study of tattoo marks and have even contributed to the literature -of the subject. That trick of staining the fishes' scales of a -delicate pink is quite peculiar to China. When, in addition, I -see a Chinese coin hanging from your watch-chain, the matter -becomes even more simple." - -Mr. Jabez Wilson laughed heavily. "Well, I never!" said he. "I -thought at first that you had done something clever, but I see -that there was nothing in it, after all." - -"I begin to think, Watson," said Holmes, "that I make a mistake -in explaining. 'Omne ignotum pro magnifico,' you know, and my -poor little reputation, such as it is, will suffer shipwreck if I -am so candid. Can you not find the advertisement, Mr. Wilson?" - -"Yes, I have got it now," he answered with his thick red finger -planted halfway down the column. "Here it is. This is what began -it all. You just read it for yourself, sir." - -I took the paper from him and read as follows: - -"TO THE RED-HEADED LEAGUE: On account of the bequest of the late -Ezekiah Hopkins, of Lebanon, Pennsylvania, U. S. A., there is now -another vacancy open which entitles a member of the League to a -salary of 4 pounds a week for purely nominal services. All -red-headed men who are sound in body and mind and above the age -of twenty-one years, are eligible. Apply in person on Monday, at -eleven o'clock, to Duncan Ross, at the offices of the League, 7 -Pope's Court, Fleet Street." - -"What on earth does this mean?" I ejaculated after I had twice -read over the extraordinary announcement. - -Holmes chuckled and wriggled in his chair, as was his habit when -in high spirits. "It is a little off the beaten track, isn't it?" -said he. "And now, Mr. Wilson, off you go at scratch and tell us -all about yourself, your household, and the effect which this -advertisement had upon your fortunes. You will first make a note, -Doctor, of the paper and the date." - -"It is The Morning Chronicle of April 27, 1890. Just two months -ago." - -"Very good. Now, Mr. Wilson?" - -"Well, it is just as I have been telling you, Mr. Sherlock -Holmes," said Jabez Wilson, mopping his forehead; "I have a small -pawnbroker's business at Coburg Square, near the City. It's not a -very large affair, and of late years it has not done more than -just give me a living. I used to be able to keep two assistants, -but now I only keep one; and I would have a job to pay him but -that he is willing to come for half wages so as to learn the -business." - -"What is the name of this obliging youth?" asked Sherlock Holmes. - -"His name is Vincent Spaulding, and he's not such a youth, -either. It's hard to say his age. I should not wish a smarter -assistant, Mr. Holmes; and I know very well that he could better -himself and earn twice what I am able to give him. But, after -all, if he is satisfied, why should I put ideas in his head?" - -"Why, indeed? You seem most fortunate in having an employ who -comes under the full market price. It is not a common experience -among employers in this age. I don't know that your assistant is -not as remarkable as your advertisement." - -"Oh, he has his faults, too," said Mr. Wilson. "Never was such a -fellow for photography. Snapping away with a camera when he ought -to be improving his mind, and then diving down into the cellar -like a rabbit into its hole to develop his pictures. That is his -main fault, but on the whole he's a good worker. There's no vice -in him." - -"He is still with you, I presume?" - -"Yes, sir. He and a girl of fourteen, who does a bit of simple -cooking and keeps the place clean--that's all I have in the -house, for I am a widower and never had any family. We live very -quietly, sir, the three of us; and we keep a roof over our heads -and pay our debts, if we do nothing more. - -"The first thing that put us out was that advertisement. -Spaulding, he came down into the office just this day eight -weeks, with this very paper in his hand, and he says: - -"'I wish to the Lord, Mr. Wilson, that I was a red-headed man.' - -"'Why that?' I asks. - -"'Why,' says he, 'here's another vacancy on the League of the -Red-headed Men. It's worth quite a little fortune to any man who -gets it, and I understand that there are more vacancies than -there are men, so that the trustees are at their wits' end what -to do with the money. If my hair would only change colour, here's -a nice little crib all ready for me to step into.' - -"'Why, what is it, then?' I asked. You see, Mr. Holmes, I am a -very stay-at-home man, and as my business came to me instead of -my having to go to it, I was often weeks on end without putting -my foot over the door-mat. In that way I didn't know much of what -was going on outside, and I was always glad of a bit of news. - -"'Have you never heard of the League of the Red-headed Men?' he -asked with his eyes open. - -"'Never.' - -"'Why, I wonder at that, for you are eligible yourself for one -of the vacancies.' - -"'And what are they worth?' I asked. - -"'Oh, merely a couple of hundred a year, but the work is slight, -and it need not interfere very much with one's other -occupations.' - -"Well, you can easily think that that made me prick up my ears, -for the business has not been over-good for some years, and an -extra couple of hundred would have been very handy. - -"'Tell me all about it,' said I. - -"'Well,' said he, showing me the advertisement, 'you can see for -yourself that the League has a vacancy, and there is the address -where you should apply for particulars. As far as I can make out, -the League was founded by an American millionaire, Ezekiah -Hopkins, who was very peculiar in his ways. He was himself -red-headed, and he had a great sympathy for all red-headed men; -so when he died it was found that he had left his enormous -fortune in the hands of trustees, with instructions to apply the -interest to the providing of easy berths to men whose hair is of -that colour. From all I hear it is splendid pay and very little to -do.' - -"'But,' said I, 'there would be millions of red-headed men who -would apply.' - -"'Not so many as you might think,' he answered. 'You see it is -really confined to Londoners, and to grown men. This American had -started from London when he was young, and he wanted to do the -old town a good turn. Then, again, I have heard it is no use your -applying if your hair is light red, or dark red, or anything but -real bright, blazing, fiery red. Now, if you cared to apply, Mr. -Wilson, you would just walk in; but perhaps it would hardly be -worth your while to put yourself out of the way for the sake of a -few hundred pounds.' - -"Now, it is a fact, gentlemen, as you may see for yourselves, -that my hair is of a very full and rich tint, so that it seemed -to me that if there was to be any competition in the matter I -stood as good a chance as any man that I had ever met. Vincent -Spaulding seemed to know so much about it that I thought he might -prove useful, so I just ordered him to put up the shutters for -the day and to come right away with me. He was very willing to -have a holiday, so we shut the business up and started off for -the address that was given us in the advertisement. - -"I never hope to see such a sight as that again, Mr. Holmes. From -north, south, east, and west every man who had a shade of red in -his hair had tramped into the city to answer the advertisement. -Fleet Street was choked with red-headed folk, and Pope's Court -looked like a coster's orange barrow. I should not have thought -there were so many in the whole country as were brought together -by that single advertisement. Every shade of colour they -were--straw, lemon, orange, brick, Irish-setter, liver, clay; -but, as Spaulding said, there were not many who had the real -vivid flame-coloured tint. When I saw how many were waiting, I -would have given it up in despair; but Spaulding would not hear -of it. How he did it I could not imagine, but he pushed and -pulled and butted until he got me through the crowd, and right up -to the steps which led to the office. There was a double stream -upon the stair, some going up in hope, and some coming back -dejected; but we wedged in as well as we could and soon found -ourselves in the office." - -"Your experience has been a most entertaining one," remarked -Holmes as his client paused and refreshed his memory with a huge -pinch of snuff. "Pray continue your very interesting statement." - -"There was nothing in the office but a couple of wooden chairs -and a deal table, behind which sat a small man with a head that -was even redder than mine. He said a few words to each candidate -as he came up, and then he always managed to find some fault in -them which would disqualify them. Getting a vacancy did not seem -to be such a very easy matter, after all. However, when our turn -came the little man was much more favourable to me than to any of -the others, and he closed the door as we entered, so that he -might have a private word with us. - -"'This is Mr. Jabez Wilson,' said my assistant, 'and he is -willing to fill a vacancy in the League.' - -"'And he is admirably suited for it,' the other answered. 'He has -every requirement. I cannot recall when I have seen anything so -fine.' He took a step backward, cocked his head on one side, and -gazed at my hair until I felt quite bashful. Then suddenly he -plunged forward, wrung my hand, and congratulated me warmly on my -success. - -"'It would be injustice to hesitate,' said he. 'You will, -however, I am sure, excuse me for taking an obvious precaution.' -With that he seized my hair in both his hands, and tugged until I -yelled with the pain. 'There is water in your eyes,' said he as -he released me. 'I perceive that all is as it should be. But we -have to be careful, for we have twice been deceived by wigs and -once by paint. I could tell you tales of cobbler's wax which -would disgust you with human nature.' He stepped over to the -window and shouted through it at the top of his voice that the -vacancy was filled. A groan of disappointment came up from below, -and the folk all trooped away in different directions until there -was not a red-head to be seen except my own and that of the -manager. - -"'My name,' said he, 'is Mr. Duncan Ross, and I am myself one of -the pensioners upon the fund left by our noble benefactor. Are -you a married man, Mr. Wilson? Have you a family?' - -"I answered that I had not. - -"His face fell immediately. - -"'Dear me!' he said gravely, 'that is very serious indeed! I am -sorry to hear you say that. The fund was, of course, for the -propagation and spread of the red-heads as well as for their -maintenance. It is exceedingly unfortunate that you should be a -bachelor.' - -"My face lengthened at this, Mr. Holmes, for I thought that I was -not to have the vacancy after all; but after thinking it over for -a few minutes he said that it would be all right. - -"'In the case of another,' said he, 'the objection might be -fatal, but we must stretch a point in favour of a man with such a -head of hair as yours. When shall you be able to enter upon your -new duties?' - -"'Well, it is a little awkward, for I have a business already,' -said I. - -"'Oh, never mind about that, Mr. Wilson!' said Vincent Spaulding. -'I should be able to look after that for you.' - -"'What would be the hours?' I asked. - -"'Ten to two.' - -"Now a pawnbroker's business is mostly done of an evening, Mr. -Holmes, especially Thursday and Friday evening, which is just -before pay-day; so it would suit me very well to earn a little in -the mornings. Besides, I knew that my assistant was a good man, -and that he would see to anything that turned up. - -"'That would suit me very well,' said I. 'And the pay?' - -"'Is 4 pounds a week.' - -"'And the work?' - -"'Is purely nominal.' - -"'What do you call purely nominal?' - -"'Well, you have to be in the office, or at least in the -building, the whole time. If you leave, you forfeit your whole -position forever. The will is very clear upon that point. You -don't comply with the conditions if you budge from the office -during that time.' - -"'It's only four hours a day, and I should not think of leaving,' -said I. - -"'No excuse will avail,' said Mr. Duncan Ross; 'neither sickness -nor business nor anything else. There you must stay, or you lose -your billet.' - -"'And the work?' - -"'Is to copy out the "Encyclopaedia Britannica." There is the first -volume of it in that press. You must find your own ink, pens, and -blotting-paper, but we provide this table and chair. Will you be -ready to-morrow?' - -"'Certainly,' I answered. - -"'Then, good-bye, Mr. Jabez Wilson, and let me congratulate you -once more on the important position which you have been fortunate -enough to gain.' He bowed me out of the room and I went home with -my assistant, hardly knowing what to say or do, I was so pleased -at my own good fortune. - -"Well, I thought over the matter all day, and by evening I was in -low spirits again; for I had quite persuaded myself that the -whole affair must be some great hoax or fraud, though what its -object might be I could not imagine. It seemed altogether past -belief that anyone could make such a will, or that they would pay -such a sum for doing anything so simple as copying out the -'Encyclopaedia Britannica.' Vincent Spaulding did what he could to -cheer me up, but by bedtime I had reasoned myself out of the -whole thing. However, in the morning I determined to have a look -at it anyhow, so I bought a penny bottle of ink, and with a -quill-pen, and seven sheets of foolscap paper, I started off for -Pope's Court. - -"Well, to my surprise and delight, everything was as right as -possible. The table was set out ready for me, and Mr. Duncan Ross -was there to see that I got fairly to work. He started me off -upon the letter A, and then he left me; but he would drop in from -time to time to see that all was right with me. At two o'clock he -bade me good-day, complimented me upon the amount that I had -written, and locked the door of the office after me. - -"This went on day after day, Mr. Holmes, and on Saturday the -manager came in and planked down four golden sovereigns for my -week's work. It was the same next week, and the same the week -after. Every morning I was there at ten, and every afternoon I -left at two. By degrees Mr. Duncan Ross took to coming in only -once of a morning, and then, after a time, he did not come in at -all. Still, of course, I never dared to leave the room for an -instant, for I was not sure when he might come, and the billet -was such a good one, and suited me so well, that I would not risk -the loss of it. - -"Eight weeks passed away like this, and I had written about -Abbots and Archery and Armour and Architecture and Attica, and -hoped with diligence that I might get on to the B's before very -long. It cost me something in foolscap, and I had pretty nearly -filled a shelf with my writings. And then suddenly the whole -business came to an end." - -"To an end?" - -"Yes, sir. And no later than this morning. I went to my work as -usual at ten o'clock, but the door was shut and locked, with a -little square of cardboard hammered on to the middle of the -panel with a tack. Here it is, and you can read for yourself." - -He held up a piece of white cardboard about the size of a sheet -of note-paper. It read in this fashion: - - THE RED-HEADED LEAGUE - - IS - - DISSOLVED. - - October 9, 1890. - -Sherlock Holmes and I surveyed this curt announcement and the -rueful face behind it, until the comical side of the affair so -completely overtopped every other consideration that we both -burst out into a roar of laughter. - -"I cannot see that there is anything very funny," cried our -client, flushing up to the roots of his flaming head. "If you can -do nothing better than laugh at me, I can go elsewhere." - -"No, no," cried Holmes, shoving him back into the chair from -which he had half risen. "I really wouldn't miss your case for -the world. It is most refreshingly unusual. But there is, if you -will excuse my saying so, something just a little funny about it. -Pray what steps did you take when you found the card upon the -door?" - -"I was staggered, sir. I did not know what to do. Then I called -at the offices round, but none of them seemed to know anything -about it. Finally, I went to the landlord, who is an accountant -living on the ground-floor, and I asked him if he could tell me -what had become of the Red-headed League. He said that he had -never heard of any such body. Then I asked him who Mr. Duncan -Ross was. He answered that the name was new to him. - -"'Well,' said I, 'the gentleman at No. 4.' - -"'What, the red-headed man?' - -"'Yes.' - -"'Oh,' said he, 'his name was William Morris. He was a solicitor -and was using my room as a temporary convenience until his new -premises were ready. He moved out yesterday.' - -"'Where could I find him?' - -"'Oh, at his new offices. He did tell me the address. Yes, 17 -King Edward Street, near St. Paul's.' - -"I started off, Mr. Holmes, but when I got to that address it was -a manufactory of artificial knee-caps, and no one in it had ever -heard of either Mr. William Morris or Mr. Duncan Ross." - -"And what did you do then?" asked Holmes. - -"I went home to Saxe-Coburg Square, and I took the advice of my -assistant. But he could not help me in any way. He could only say -that if I waited I should hear by post. But that was not quite -good enough, Mr. Holmes. I did not wish to lose such a place -without a struggle, so, as I had heard that you were good enough -to give advice to poor folk who were in need of it, I came right -away to you." - -"And you did very wisely," said Holmes. "Your case is an -exceedingly remarkable one, and I shall be happy to look into it. -From what you have told me I think that it is possible that -graver issues hang from it than might at first sight appear." - -"Grave enough!" said Mr. Jabez Wilson. "Why, I have lost four -pound a week." - -"As far as you are personally concerned," remarked Holmes, "I do -not see that you have any grievance against this extraordinary -league. On the contrary, you are, as I understand, richer by some -30 pounds, to say nothing of the minute knowledge which you have -gained on every subject which comes under the letter A. You have -lost nothing by them." - -"No, sir. But I want to find out about them, and who they are, -and what their object was in playing this prank--if it was a -prank--upon me. It was a pretty expensive joke for them, for it -cost them two and thirty pounds." - -"We shall endeavour to clear up these points for you. And, first, -one or two questions, Mr. Wilson. This assistant of yours who -first called your attention to the advertisement--how long had he -been with you?" - -"About a month then." - -"How did he come?" - -"In answer to an advertisement." - -"Was he the only applicant?" - -"No, I had a dozen." - -"Why did you pick him?" - -"Because he was handy and would come cheap." - -"At half-wages, in fact." - -"Yes." - -"What is he like, this Vincent Spaulding?" - -"Small, stout-built, very quick in his ways, no hair on his face, -though he's not short of thirty. Has a white splash of acid upon -his forehead." - -Holmes sat up in his chair in considerable excitement. "I thought -as much," said he. "Have you ever observed that his ears are -pierced for earrings?" - -"Yes, sir. He told me that a gipsy had done it for him when he -was a lad." - -"Hum!" said Holmes, sinking back in deep thought. "He is still -with you?" - -"Oh, yes, sir; I have only just left him." - -"And has your business been attended to in your absence?" - -"Nothing to complain of, sir. There's never very much to do of a -morning." - -"That will do, Mr. Wilson. I shall be happy to give you an -opinion upon the subject in the course of a day or two. To-day is -Saturday, and I hope that by Monday we may come to a conclusion." - -"Well, Watson," said Holmes when our visitor had left us, "what -do you make of it all?" - -"I make nothing of it," I answered frankly. "It is a most -mysterious business." - -"As a rule," said Holmes, "the more bizarre a thing is the less -mysterious it proves to be. It is your commonplace, featureless -crimes which are really puzzling, just as a commonplace face is -the most difficult to identify. But I must be prompt over this -matter." - -"What are you going to do, then?" I asked. - -"To smoke," he answered. "It is quite a three pipe problem, and I -beg that you won't speak to me for fifty minutes." He curled -himself up in his chair, with his thin knees drawn up to his -hawk-like nose, and there he sat with his eyes closed and his -black clay pipe thrusting out like the bill of some strange bird. -I had come to the conclusion that he had dropped asleep, and -indeed was nodding myself, when he suddenly sprang out of his -chair with the gesture of a man who has made up his mind and put -his pipe down upon the mantelpiece. - -"Sarasate plays at the St. James's Hall this afternoon," he -remarked. "What do you think, Watson? Could your patients spare -you for a few hours?" - -"I have nothing to do to-day. My practice is never very -absorbing." - -"Then put on your hat and come. I am going through the City -first, and we can have some lunch on the way. I observe that -there is a good deal of German music on the programme, which is -rather more to my taste than Italian or French. It is -introspective, and I want to introspect. Come along!" - -We travelled by the Underground as far as Aldersgate; and a short -walk took us to Saxe-Coburg Square, the scene of the singular -story which we had listened to in the morning. It was a poky, -little, shabby-genteel place, where four lines of dingy -two-storied brick houses looked out into a small railed-in -enclosure, where a lawn of weedy grass and a few clumps of faded -laurel-bushes made a hard fight against a smoke-laden and -uncongenial atmosphere. Three gilt balls and a brown board with -"JABEZ WILSON" in white letters, upon a corner house, announced -the place where our red-headed client carried on his business. -Sherlock Holmes stopped in front of it with his head on one side -and looked it all over, with his eyes shining brightly between -puckered lids. Then he walked slowly up the street, and then down -again to the corner, still looking keenly at the houses. Finally -he returned to the pawnbroker's, and, having thumped vigorously -upon the pavement with his stick two or three times, he went up -to the door and knocked. It was instantly opened by a -bright-looking, clean-shaven young fellow, who asked him to step -in. - -"Thank you," said Holmes, "I only wished to ask you how you would -go from here to the Strand." - -"Third right, fourth left," answered the assistant promptly, -closing the door. - -"Smart fellow, that," observed Holmes as we walked away. "He is, -in my judgment, the fourth smartest man in London, and for daring -I am not sure that he has not a claim to be third. I have known -something of him before." - -"Evidently," said I, "Mr. Wilson's assistant counts for a good -deal in this mystery of the Red-headed League. I am sure that you -inquired your way merely in order that you might see him." - -"Not him." - -"What then?" - -"The knees of his trousers." - -"And what did you see?" - -"What I expected to see." - -"Why did you beat the pavement?" - -"My dear doctor, this is a time for observation, not for talk. We -are spies in an enemy's country. We know something of Saxe-Coburg -Square. Let us now explore the parts which lie behind it." - -The road in which we found ourselves as we turned round the -corner from the retired Saxe-Coburg Square presented as great a -contrast to it as the front of a picture does to the back. It was -one of the main arteries which conveyed the traffic of the City -to the north and west. The roadway was blocked with the immense -stream of commerce flowing in a double tide inward and outward, -while the footpaths were black with the hurrying swarm of -pedestrians. It was difficult to realise as we looked at the line -of fine shops and stately business premises that they really -abutted on the other side upon the faded and stagnant square -which we had just quitted. - -"Let me see," said Holmes, standing at the corner and glancing -along the line, "I should like just to remember the order of the -houses here. It is a hobby of mine to have an exact knowledge of -London. There is Mortimer's, the tobacconist, the little -newspaper shop, the Coburg branch of the City and Suburban Bank, -the Vegetarian Restaurant, and McFarlane's carriage-building -depot. That carries us right on to the other block. And now, -Doctor, we've done our work, so it's time we had some play. A -sandwich and a cup of coffee, and then off to violin-land, where -all is sweetness and delicacy and harmony, and there are no -red-headed clients to vex us with their conundrums." - -My friend was an enthusiastic musician, being himself not only a -very capable performer but a composer of no ordinary merit. All -the afternoon he sat in the stalls wrapped in the most perfect -happiness, gently waving his long, thin fingers in time to the -music, while his gently smiling face and his languid, dreamy eyes -were as unlike those of Holmes the sleuth-hound, Holmes the -relentless, keen-witted, ready-handed criminal agent, as it was -possible to conceive. In his singular character the dual nature -alternately asserted itself, and his extreme exactness and -astuteness represented, as I have often thought, the reaction -against the poetic and contemplative mood which occasionally -predominated in him. The swing of his nature took him from -extreme languor to devouring energy; and, as I knew well, he was -never so truly formidable as when, for days on end, he had been -lounging in his armchair amid his improvisations and his -black-letter editions. Then it was that the lust of the chase -would suddenly come upon him, and that his brilliant reasoning -power would rise to the level of intuition, until those who were -unacquainted with his methods would look askance at him as on a -man whose knowledge was not that of other mortals. When I saw him -that afternoon so enwrapped in the music at St. James's Hall I -felt that an evil time might be coming upon those whom he had set -himself to hunt down. - -"You want to go home, no doubt, Doctor," he remarked as we -emerged. - -"Yes, it would be as well." - -"And I have some business to do which will take some hours. This -business at Coburg Square is serious." - -"Why serious?" - -"A considerable crime is in contemplation. I have every reason to -believe that we shall be in time to stop it. But to-day being -Saturday rather complicates matters. I shall want your help -to-night." - -"At what time?" - -"Ten will be early enough." - -"I shall be at Baker Street at ten." - -"Very well. And, I say, Doctor, there may be some little danger, -so kindly put your army revolver in your pocket." He waved his -hand, turned on his heel, and disappeared in an instant among the -crowd. - -I trust that I am not more dense than my neighbours, but I was -always oppressed with a sense of my own stupidity in my dealings -with Sherlock Holmes. Here I had heard what he had heard, I had -seen what he had seen, and yet from his words it was evident that -he saw clearly not only what had happened but what was about to -happen, while to me the whole business was still confused and -grotesque. As I drove home to my house in Kensington I thought -over it all, from the extraordinary story of the red-headed -copier of the "Encyclopaedia" down to the visit to Saxe-Coburg -Square, and the ominous words with which he had parted from me. -What was this nocturnal expedition, and why should I go armed? -Where were we going, and what were we to do? I had the hint from -Holmes that this smooth-faced pawnbroker's assistant was a -formidable man--a man who might play a deep game. I tried to -puzzle it out, but gave it up in despair and set the matter aside -until night should bring an explanation. - -It was a quarter-past nine when I started from home and made my -way across the Park, and so through Oxford Street to Baker -Street. Two hansoms were standing at the door, and as I entered -the passage I heard the sound of voices from above. On entering -his room I found Holmes in animated conversation with two men, -one of whom I recognised as Peter Jones, the official police -agent, while the other was a long, thin, sad-faced man, with a -very shiny hat and oppressively respectable frock-coat. - -"Ha! Our party is complete," said Holmes, buttoning up his -pea-jacket and taking his heavy hunting crop from the rack. -"Watson, I think you know Mr. Jones, of Scotland Yard? Let me -introduce you to Mr. Merryweather, who is to be our companion in -to-night's adventure." - -"We're hunting in couples again, Doctor, you see," said Jones in -his consequential way. "Our friend here is a wonderful man for -starting a chase. All he wants is an old dog to help him to do -the running down." - -"I hope a wild goose may not prove to be the end of our chase," -observed Mr. Merryweather gloomily. - -"You may place considerable confidence in Mr. Holmes, sir," said -the police agent loftily. "He has his own little methods, which -are, if he won't mind my saying so, just a little too theoretical -and fantastic, but he has the makings of a detective in him. It -is not too much to say that once or twice, as in that business of -the Sholto murder and the Agra treasure, he has been more nearly -correct than the official force." - -"Oh, if you say so, Mr. Jones, it is all right," said the -stranger with deference. "Still, I confess that I miss my rubber. -It is the first Saturday night for seven-and-twenty years that I -have not had my rubber." - -"I think you will find," said Sherlock Holmes, "that you will -play for a higher stake to-night than you have ever done yet, and -that the play will be more exciting. For you, Mr. Merryweather, -the stake will be some 30,000 pounds; and for you, Jones, it will -be the man upon whom you wish to lay your hands." - -"John Clay, the murderer, thief, smasher, and forger. He's a -young man, Mr. Merryweather, but he is at the head of his -profession, and I would rather have my bracelets on him than on -any criminal in London. He's a remarkable man, is young John -Clay. His grandfather was a royal duke, and he himself has been -to Eton and Oxford. His brain is as cunning as his fingers, and -though we meet signs of him at every turn, we never know where to -find the man himself. He'll crack a crib in Scotland one week, -and be raising money to build an orphanage in Cornwall the next. -I've been on his track for years and have never set eyes on him -yet." - -"I hope that I may have the pleasure of introducing you to-night. -I've had one or two little turns also with Mr. John Clay, and I -agree with you that he is at the head of his profession. It is -past ten, however, and quite time that we started. If you two -will take the first hansom, Watson and I will follow in the -second." - -Sherlock Holmes was not very communicative during the long drive -and lay back in the cab humming the tunes which he had heard in -the afternoon. We rattled through an endless labyrinth of gas-lit -streets until we emerged into Farrington Street. - -"We are close there now," my friend remarked. "This fellow -Merryweather is a bank director, and personally interested in the -matter. I thought it as well to have Jones with us also. He is -not a bad fellow, though an absolute imbecile in his profession. -He has one positive virtue. He is as brave as a bulldog and as -tenacious as a lobster if he gets his claws upon anyone. Here we -are, and they are waiting for us." - -We had reached the same crowded thoroughfare in which we had -found ourselves in the morning. Our cabs were dismissed, and, -following the guidance of Mr. Merryweather, we passed down a -narrow passage and through a side door, which he opened for us. -Within there was a small corridor, which ended in a very massive -iron gate. This also was opened, and led down a flight of winding -stone steps, which terminated at another formidable gate. Mr. -Merryweather stopped to light a lantern, and then conducted us -down a dark, earth-smelling passage, and so, after opening a -third door, into a huge vault or cellar, which was piled all -round with crates and massive boxes. - -"You are not very vulnerable from above," Holmes remarked as he -held up the lantern and gazed about him. - -"Nor from below," said Mr. Merryweather, striking his stick upon -the flags which lined the floor. "Why, dear me, it sounds quite -hollow!" he remarked, looking up in surprise. - -"I must really ask you to be a little more quiet!" said Holmes -severely. "You have already imperilled the whole success of our -expedition. Might I beg that you would have the goodness to sit -down upon one of those boxes, and not to interfere?" - -The solemn Mr. Merryweather perched himself upon a crate, with a -very injured expression upon his face, while Holmes fell upon his -knees upon the floor and, with the lantern and a magnifying lens, -began to examine minutely the cracks between the stones. A few -seconds sufficed to satisfy him, for he sprang to his feet again -and put his glass in his pocket. - -"We have at least an hour before us," he remarked, "for they can -hardly take any steps until the good pawnbroker is safely in bed. -Then they will not lose a minute, for the sooner they do their -work the longer time they will have for their escape. We are at -present, Doctor--as no doubt you have divined--in the cellar of -the City branch of one of the principal London banks. Mr. -Merryweather is the chairman of directors, and he will explain to -you that there are reasons why the more daring criminals of -London should take a considerable interest in this cellar at -present." - -"It is our French gold," whispered the director. "We have had -several warnings that an attempt might be made upon it." - -"Your French gold?" - -"Yes. We had occasion some months ago to strengthen our resources -and borrowed for that purpose 30,000 napoleons from the Bank of -France. It has become known that we have never had occasion to -unpack the money, and that it is still lying in our cellar. The -crate upon which I sit contains 2,000 napoleons packed between -layers of lead foil. Our reserve of bullion is much larger at -present than is usually kept in a single branch office, and the -directors have had misgivings upon the subject." - -"Which were very well justified," observed Holmes. "And now it is -time that we arranged our little plans. I expect that within an -hour matters will come to a head. In the meantime Mr. -Merryweather, we must put the screen over that dark lantern." - -"And sit in the dark?" - -"I am afraid so. I had brought a pack of cards in my pocket, and -I thought that, as we were a partie carre, you might have your -rubber after all. But I see that the enemy's preparations have -gone so far that we cannot risk the presence of a light. And, -first of all, we must choose our positions. These are daring men, -and though we shall take them at a disadvantage, they may do us -some harm unless we are careful. I shall stand behind this crate, -and do you conceal yourselves behind those. Then, when I flash a -light upon them, close in swiftly. If they fire, Watson, have no -compunction about shooting them down." - -I placed my revolver, cocked, upon the top of the wooden case -behind which I crouched. Holmes shot the slide across the front -of his lantern and left us in pitch darkness--such an absolute -darkness as I have never before experienced. The smell of hot -metal remained to assure us that the light was still there, ready -to flash out at a moment's notice. To me, with my nerves worked -up to a pitch of expectancy, there was something depressing and -subduing in the sudden gloom, and in the cold dank air of the -vault. - -"They have but one retreat," whispered Holmes. "That is back -through the house into Saxe-Coburg Square. I hope that you have -done what I asked you, Jones?" - -"I have an inspector and two officers waiting at the front door." - -"Then we have stopped all the holes. And now we must be silent -and wait." - -What a time it seemed! From comparing notes afterwards it was but -an hour and a quarter, yet it appeared to me that the night must -have almost gone and the dawn be breaking above us. My limbs -were weary and stiff, for I feared to change my position; yet my -nerves were worked up to the highest pitch of tension, and my -hearing was so acute that I could not only hear the gentle -breathing of my companions, but I could distinguish the deeper, -heavier in-breath of the bulky Jones from the thin, sighing note -of the bank director. From my position I could look over the case -in the direction of the floor. Suddenly my eyes caught the glint -of a light. - -At first it was but a lurid spark upon the stone pavement. Then -it lengthened out until it became a yellow line, and then, -without any warning or sound, a gash seemed to open and a hand -appeared, a white, almost womanly hand, which felt about in the -centre of the little area of light. For a minute or more the -hand, with its writhing fingers, protruded out of the floor. Then -it was withdrawn as suddenly as it appeared, and all was dark -again save the single lurid spark which marked a chink between -the stones. - -Its disappearance, however, was but momentary. With a rending, -tearing sound, one of the broad, white stones turned over upon -its side and left a square, gaping hole, through which streamed -the light of a lantern. Over the edge there peeped a clean-cut, -boyish face, which looked keenly about it, and then, with a hand -on either side of the aperture, drew itself shoulder-high and -waist-high, until one knee rested upon the edge. In another -instant he stood at the side of the hole and was hauling after -him a companion, lithe and small like himself, with a pale face -and a shock of very red hair. - -"It's all clear," he whispered. "Have you the chisel and the -bags? Great Scott! Jump, Archie, jump, and I'll swing for it!" - -Sherlock Holmes had sprung out and seized the intruder by the -collar. The other dived down the hole, and I heard the sound of -rending cloth as Jones clutched at his skirts. The light flashed -upon the barrel of a revolver, but Holmes' hunting crop came -down on the man's wrist, and the pistol clinked upon the stone -floor. - -"It's no use, John Clay," said Holmes blandly. "You have no -chance at all." - -"So I see," the other answered with the utmost coolness. "I fancy -that my pal is all right, though I see you have got his -coat-tails." - -"There are three men waiting for him at the door," said Holmes. - -"Oh, indeed! You seem to have done the thing very completely. I -must compliment you." - -"And I you," Holmes answered. "Your red-headed idea was very new -and effective." - -"You'll see your pal again presently," said Jones. "He's quicker -at climbing down holes than I am. Just hold out while I fix the -derbies." - -"I beg that you will not touch me with your filthy hands," -remarked our prisoner as the handcuffs clattered upon his wrists. -"You may not be aware that I have royal blood in my veins. Have -the goodness, also, when you address me always to say 'sir' and -'please.'" - -"All right," said Jones with a stare and a snigger. "Well, would -you please, sir, march upstairs, where we can get a cab to carry -your Highness to the police-station?" - -"That is better," said John Clay serenely. He made a sweeping bow -to the three of us and walked quietly off in the custody of the -detective. - -"Really, Mr. Holmes," said Mr. Merryweather as we followed them -from the cellar, "I do not know how the bank can thank you or -repay you. There is no doubt that you have detected and defeated -in the most complete manner one of the most determined attempts -at bank robbery that have ever come within my experience." - -"I have had one or two little scores of my own to settle with Mr. -John Clay," said Holmes. "I have been at some small expense over -this matter, which I shall expect the bank to refund, but beyond -that I am amply repaid by having had an experience which is in -many ways unique, and by hearing the very remarkable narrative of -the Red-headed League." - - -"You see, Watson," he explained in the early hours of the morning -as we sat over a glass of whisky and soda in Baker Street, "it -was perfectly obvious from the first that the only possible -object of this rather fantastic business of the advertisement of -the League, and the copying of the 'Encyclopaedia,' must be to get -this not over-bright pawnbroker out of the way for a number of -hours every day. It was a curious way of managing it, but, -really, it would be difficult to suggest a better. The method was -no doubt suggested to Clay's ingenious mind by the colour of his -accomplice's hair. The 4 pounds a week was a lure which must draw -him, and what was it to them, who were playing for thousands? -They put in the advertisement, one rogue has the temporary -office, the other rogue incites the man to apply for it, and -together they manage to secure his absence every morning in the -week. From the time that I heard of the assistant having come for -half wages, it was obvious to me that he had some strong motive -for securing the situation." - -"But how could you guess what the motive was?" - -"Had there been women in the house, I should have suspected a -mere vulgar intrigue. That, however, was out of the question. The -man's business was a small one, and there was nothing in his -house which could account for such elaborate preparations, and -such an expenditure as they were at. It must, then, be something -out of the house. What could it be? I thought of the assistant's -fondness for photography, and his trick of vanishing into the -cellar. The cellar! There was the end of this tangled clue. Then -I made inquiries as to this mysterious assistant and found that I -had to deal with one of the coolest and most daring criminals in -London. He was doing something in the cellar--something which -took many hours a day for months on end. What could it be, once -more? I could think of nothing save that he was running a tunnel -to some other building. - -"So far I had got when we went to visit the scene of action. I -surprised you by beating upon the pavement with my stick. I was -ascertaining whether the cellar stretched out in front or behind. -It was not in front. Then I rang the bell, and, as I hoped, the -assistant answered it. We have had some skirmishes, but we had -never set eyes upon each other before. I hardly looked at his -face. His knees were what I wished to see. You must yourself have -remarked how worn, wrinkled, and stained they were. They spoke of -those hours of burrowing. The only remaining point was what they -were burrowing for. I walked round the corner, saw the City and -Suburban Bank abutted on our friend's premises, and felt that I -had solved my problem. When you drove home after the concert I -called upon Scotland Yard and upon the chairman of the bank -directors, with the result that you have seen." - -"And how could you tell that they would make their attempt -to-night?" I asked. - -"Well, when they closed their League offices that was a sign that -they cared no longer about Mr. Jabez Wilson's presence--in other -words, that they had completed their tunnel. But it was essential -that they should use it soon, as it might be discovered, or the -bullion might be removed. Saturday would suit them better than -any other day, as it would give them two days for their escape. -For all these reasons I expected them to come to-night." - -"You reasoned it out beautifully," I exclaimed in unfeigned -admiration. "It is so long a chain, and yet every link rings -true." - -"It saved me from ennui," he answered, yawning. "Alas! I already -feel it closing in upon me. My life is spent in one long effort -to escape from the commonplaces of existence. These little -problems help me to do so." - -"And you are a benefactor of the race," said I. - -He shrugged his shoulders. "Well, perhaps, after all, it is of -some little use," he remarked. "'L'homme c'est rien--l'oeuvre -c'est tout,' as Gustave Flaubert wrote to George Sand." - - - -ADVENTURE III. A CASE OF IDENTITY - -"My dear fellow," said Sherlock Holmes as we sat on either side -of the fire in his lodgings at Baker Street, "life is infinitely -stranger than anything which the mind of man could invent. We -would not dare to conceive the things which are really mere -commonplaces of existence. If we could fly out of that window -hand in hand, hover over this great city, gently remove the -roofs, and peep in at the queer things which are going on, the -strange coincidences, the plannings, the cross-purposes, the -wonderful chains of events, working through generations, and -leading to the most outr results, it would make all fiction with -its conventionalities and foreseen conclusions most stale and -unprofitable." - -"And yet I am not convinced of it," I answered. "The cases which -come to light in the papers are, as a rule, bald enough, and -vulgar enough. We have in our police reports realism pushed to -its extreme limits, and yet the result is, it must be confessed, -neither fascinating nor artistic." - -"A certain selection and discretion must be used in producing a -realistic effect," remarked Holmes. "This is wanting in the -police report, where more stress is laid, perhaps, upon the -platitudes of the magistrate than upon the details, which to an -observer contain the vital essence of the whole matter. Depend -upon it, there is nothing so unnatural as the commonplace." - -I smiled and shook my head. "I can quite understand your thinking -so," I said. "Of course, in your position of unofficial adviser -and helper to everybody who is absolutely puzzled, throughout -three continents, you are brought in contact with all that is -strange and bizarre. But here"--I picked up the morning paper -from the ground--"let us put it to a practical test. Here is the -first heading upon which I come. 'A husband's cruelty to his -wife.' There is half a column of print, but I know without -reading it that it is all perfectly familiar to me. There is, of -course, the other woman, the drink, the push, the blow, the -bruise, the sympathetic sister or landlady. The crudest of -writers could invent nothing more crude." - -"Indeed, your example is an unfortunate one for your argument," -said Holmes, taking the paper and glancing his eye down it. "This -is the Dundas separation case, and, as it happens, I was engaged -in clearing up some small points in connection with it. The -husband was a teetotaler, there was no other woman, and the -conduct complained of was that he had drifted into the habit of -winding up every meal by taking out his false teeth and hurling -them at his wife, which, you will allow, is not an action likely -to occur to the imagination of the average story-teller. Take a -pinch of snuff, Doctor, and acknowledge that I have scored over -you in your example." - -He held out his snuffbox of old gold, with a great amethyst in -the centre of the lid. Its splendour was in such contrast to his -homely ways and simple life that I could not help commenting upon -it. - -"Ah," said he, "I forgot that I had not seen you for some weeks. -It is a little souvenir from the King of Bohemia in return for my -assistance in the case of the Irene Adler papers." - -"And the ring?" I asked, glancing at a remarkable brilliant which -sparkled upon his finger. - -"It was from the reigning family of Holland, though the matter in -which I served them was of such delicacy that I cannot confide it -even to you, who have been good enough to chronicle one or two of -my little problems." - -"And have you any on hand just now?" I asked with interest. - -"Some ten or twelve, but none which present any feature of -interest. They are important, you understand, without being -interesting. Indeed, I have found that it is usually in -unimportant matters that there is a field for the observation, -and for the quick analysis of cause and effect which gives the -charm to an investigation. The larger crimes are apt to be the -simpler, for the bigger the crime the more obvious, as a rule, is -the motive. In these cases, save for one rather intricate matter -which has been referred to me from Marseilles, there is nothing -which presents any features of interest. It is possible, however, -that I may have something better before very many minutes are -over, for this is one of my clients, or I am much mistaken." - -He had risen from his chair and was standing between the parted -blinds gazing down into the dull neutral-tinted London street. -Looking over his shoulder, I saw that on the pavement opposite -there stood a large woman with a heavy fur boa round her neck, -and a large curling red feather in a broad-brimmed hat which was -tilted in a coquettish Duchess of Devonshire fashion over her -ear. From under this great panoply she peeped up in a nervous, -hesitating fashion at our windows, while her body oscillated -backward and forward, and her fingers fidgeted with her glove -buttons. Suddenly, with a plunge, as of the swimmer who leaves -the bank, she hurried across the road, and we heard the sharp -clang of the bell. - -"I have seen those symptoms before," said Holmes, throwing his -cigarette into the fire. "Oscillation upon the pavement always -means an affaire de coeur. She would like advice, but is not sure -that the matter is not too delicate for communication. And yet -even here we may discriminate. When a woman has been seriously -wronged by a man she no longer oscillates, and the usual symptom -is a broken bell wire. Here we may take it that there is a love -matter, but that the maiden is not so much angry as perplexed, or -grieved. But here she comes in person to resolve our doubts." - -As he spoke there was a tap at the door, and the boy in buttons -entered to announce Miss Mary Sutherland, while the lady herself -loomed behind his small black figure like a full-sailed -merchant-man behind a tiny pilot boat. Sherlock Holmes welcomed -her with the easy courtesy for which he was remarkable, and, -having closed the door and bowed her into an armchair, he looked -her over in the minute and yet abstracted fashion which was -peculiar to him. - -"Do you not find," he said, "that with your short sight it is a -little trying to do so much typewriting?" - -"I did at first," she answered, "but now I know where the letters -are without looking." Then, suddenly realising the full purport -of his words, she gave a violent start and looked up, with fear -and astonishment upon her broad, good-humoured face. "You've -heard about me, Mr. Holmes," she cried, "else how could you know -all that?" - -"Never mind," said Holmes, laughing; "it is my business to know -things. Perhaps I have trained myself to see what others -overlook. If not, why should you come to consult me?" - -"I came to you, sir, because I heard of you from Mrs. Etherege, -whose husband you found so easy when the police and everyone had -given him up for dead. Oh, Mr. Holmes, I wish you would do as -much for me. I'm not rich, but still I have a hundred a year in -my own right, besides the little that I make by the machine, and -I would give it all to know what has become of Mr. Hosmer Angel." - -"Why did you come away to consult me in such a hurry?" asked -Sherlock Holmes, with his finger-tips together and his eyes to -the ceiling. - -Again a startled look came over the somewhat vacuous face of Miss -Mary Sutherland. "Yes, I did bang out of the house," she said, -"for it made me angry to see the easy way in which Mr. -Windibank--that is, my father--took it all. He would not go to -the police, and he would not go to you, and so at last, as he -would do nothing and kept on saying that there was no harm done, -it made me mad, and I just on with my things and came right away -to you." - -"Your father," said Holmes, "your stepfather, surely, since the -name is different." - -"Yes, my stepfather. I call him father, though it sounds funny, -too, for he is only five years and two months older than myself." - -"And your mother is alive?" - -"Oh, yes, mother is alive and well. I wasn't best pleased, Mr. -Holmes, when she married again so soon after father's death, and -a man who was nearly fifteen years younger than herself. Father -was a plumber in the Tottenham Court Road, and he left a tidy -business behind him, which mother carried on with Mr. Hardy, the -foreman; but when Mr. Windibank came he made her sell the -business, for he was very superior, being a traveller in wines. -They got 4700 pounds for the goodwill and interest, which wasn't -near as much as father could have got if he had been alive." - -I had expected to see Sherlock Holmes impatient under this -rambling and inconsequential narrative, but, on the contrary, he -had listened with the greatest concentration of attention. - -"Your own little income," he asked, "does it come out of the -business?" - -"Oh, no, sir. It is quite separate and was left me by my uncle -Ned in Auckland. It is in New Zealand stock, paying 4 1/2 per -cent. Two thousand five hundred pounds was the amount, but I can -only touch the interest." - -"You interest me extremely," said Holmes. "And since you draw so -large a sum as a hundred a year, with what you earn into the -bargain, you no doubt travel a little and indulge yourself in -every way. I believe that a single lady can get on very nicely -upon an income of about 60 pounds." - -"I could do with much less than that, Mr. Holmes, but you -understand that as long as I live at home I don't wish to be a -burden to them, and so they have the use of the money just while -I am staying with them. Of course, that is only just for the -time. Mr. Windibank draws my interest every quarter and pays it -over to mother, and I find that I can do pretty well with what I -earn at typewriting. It brings me twopence a sheet, and I can -often do from fifteen to twenty sheets in a day." - -"You have made your position very clear to me," said Holmes. -"This is my friend, Dr. Watson, before whom you can speak as -freely as before myself. Kindly tell us now all about your -connection with Mr. Hosmer Angel." - -A flush stole over Miss Sutherland's face, and she picked -nervously at the fringe of her jacket. "I met him first at the -gasfitters' ball," she said. "They used to send father tickets -when he was alive, and then afterwards they remembered us, and -sent them to mother. Mr. Windibank did not wish us to go. He -never did wish us to go anywhere. He would get quite mad if I -wanted so much as to join a Sunday-school treat. But this time I -was set on going, and I would go; for what right had he to -prevent? He said the folk were not fit for us to know, when all -father's friends were to be there. And he said that I had nothing -fit to wear, when I had my purple plush that I had never so much -as taken out of the drawer. At last, when nothing else would do, -he went off to France upon the business of the firm, but we went, -mother and I, with Mr. Hardy, who used to be our foreman, and it -was there I met Mr. Hosmer Angel." - -"I suppose," said Holmes, "that when Mr. Windibank came back from -France he was very annoyed at your having gone to the ball." - -"Oh, well, he was very good about it. He laughed, I remember, and -shrugged his shoulders, and said there was no use denying -anything to a woman, for she would have her way." - -"I see. Then at the gasfitters' ball you met, as I understand, a -gentleman called Mr. Hosmer Angel." - -"Yes, sir. I met him that night, and he called next day to ask if -we had got home all safe, and after that we met him--that is to -say, Mr. Holmes, I met him twice for walks, but after that father -came back again, and Mr. Hosmer Angel could not come to the house -any more." - -"No?" - -"Well, you know father didn't like anything of the sort. He -wouldn't have any visitors if he could help it, and he used to -say that a woman should be happy in her own family circle. But -then, as I used to say to mother, a woman wants her own circle to -begin with, and I had not got mine yet." - -"But how about Mr. Hosmer Angel? Did he make no attempt to see -you?" - -"Well, father was going off to France again in a week, and Hosmer -wrote and said that it would be safer and better not to see each -other until he had gone. We could write in the meantime, and he -used to write every day. I took the letters in in the morning, so -there was no need for father to know." - -"Were you engaged to the gentleman at this time?" - -"Oh, yes, Mr. Holmes. We were engaged after the first walk that -we took. Hosmer--Mr. Angel--was a cashier in an office in -Leadenhall Street--and--" - -"What office?" - -"That's the worst of it, Mr. Holmes, I don't know." - -"Where did he live, then?" - -"He slept on the premises." - -"And you don't know his address?" - -"No--except that it was Leadenhall Street." - -"Where did you address your letters, then?" - -"To the Leadenhall Street Post Office, to be left till called -for. He said that if they were sent to the office he would be -chaffed by all the other clerks about having letters from a lady, -so I offered to typewrite them, like he did his, but he wouldn't -have that, for he said that when I wrote them they seemed to come -from me, but when they were typewritten he always felt that the -machine had come between us. That will just show you how fond he -was of me, Mr. Holmes, and the little things that he would think -of." - -"It was most suggestive," said Holmes. "It has long been an axiom -of mine that the little things are infinitely the most important. -Can you remember any other little things about Mr. Hosmer Angel?" - -"He was a very shy man, Mr. Holmes. He would rather walk with me -in the evening than in the daylight, for he said that he hated to -be conspicuous. Very retiring and gentlemanly he was. Even his -voice was gentle. He'd had the quinsy and swollen glands when he -was young, he told me, and it had left him with a weak throat, -and a hesitating, whispering fashion of speech. He was always -well dressed, very neat and plain, but his eyes were weak, just -as mine are, and he wore tinted glasses against the glare." - -"Well, and what happened when Mr. Windibank, your stepfather, -returned to France?" - -"Mr. Hosmer Angel came to the house again and proposed that we -should marry before father came back. He was in dreadful earnest -and made me swear, with my hands on the Testament, that whatever -happened I would always be true to him. Mother said he was quite -right to make me swear, and that it was a sign of his passion. -Mother was all in his favour from the first and was even fonder -of him than I was. Then, when they talked of marrying within the -week, I began to ask about father; but they both said never to -mind about father, but just to tell him afterwards, and mother -said she would make it all right with him. I didn't quite like -that, Mr. Holmes. It seemed funny that I should ask his leave, as -he was only a few years older than me; but I didn't want to do -anything on the sly, so I wrote to father at Bordeaux, where the -company has its French offices, but the letter came back to me on -the very morning of the wedding." - -"It missed him, then?" - -"Yes, sir; for he had started to England just before it arrived." - -"Ha! that was unfortunate. Your wedding was arranged, then, for -the Friday. Was it to be in church?" - -"Yes, sir, but very quietly. It was to be at St. Saviour's, near -King's Cross, and we were to have breakfast afterwards at the St. -Pancras Hotel. Hosmer came for us in a hansom, but as there were -two of us he put us both into it and stepped himself into a -four-wheeler, which happened to be the only other cab in the -street. We got to the church first, and when the four-wheeler -drove up we waited for him to step out, but he never did, and -when the cabman got down from the box and looked there was no one -there! The cabman said that he could not imagine what had become -of him, for he had seen him get in with his own eyes. That was -last Friday, Mr. Holmes, and I have never seen or heard anything -since then to throw any light upon what became of him." - -"It seems to me that you have been very shamefully treated," said -Holmes. - -"Oh, no, sir! He was too good and kind to leave me so. Why, all -the morning he was saying to me that, whatever happened, I was to -be true; and that even if something quite unforeseen occurred to -separate us, I was always to remember that I was pledged to him, -and that he would claim his pledge sooner or later. It seemed -strange talk for a wedding-morning, but what has happened since -gives a meaning to it." - -"Most certainly it does. Your own opinion is, then, that some -unforeseen catastrophe has occurred to him?" - -"Yes, sir. I believe that he foresaw some danger, or else he -would not have talked so. And then I think that what he foresaw -happened." - -"But you have no notion as to what it could have been?" - -"None." - -"One more question. How did your mother take the matter?" - -"She was angry, and said that I was never to speak of the matter -again." - -"And your father? Did you tell him?" - -"Yes; and he seemed to think, with me, that something had -happened, and that I should hear of Hosmer again. As he said, -what interest could anyone have in bringing me to the doors of -the church, and then leaving me? Now, if he had borrowed my -money, or if he had married me and got my money settled on him, -there might be some reason, but Hosmer was very independent about -money and never would look at a shilling of mine. And yet, what -could have happened? And why could he not write? Oh, it drives me -half-mad to think of it, and I can't sleep a wink at night." She -pulled a little handkerchief out of her muff and began to sob -heavily into it. - -"I shall glance into the case for you," said Holmes, rising, "and -I have no doubt that we shall reach some definite result. Let the -weight of the matter rest upon me now, and do not let your mind -dwell upon it further. Above all, try to let Mr. Hosmer Angel -vanish from your memory, as he has done from your life." - -"Then you don't think I'll see him again?" - -"I fear not." - -"Then what has happened to him?" - -"You will leave that question in my hands. I should like an -accurate description of him and any letters of his which you can -spare." - -"I advertised for him in last Saturday's Chronicle," said she. -"Here is the slip and here are four letters from him." - -"Thank you. And your address?" - -"No. 31 Lyon Place, Camberwell." - -"Mr. Angel's address you never had, I understand. Where is your -father's place of business?" - -"He travels for Westhouse & Marbank, the great claret importers -of Fenchurch Street." - -"Thank you. You have made your statement very clearly. You will -leave the papers here, and remember the advice which I have given -you. Let the whole incident be a sealed book, and do not allow it -to affect your life." - -"You are very kind, Mr. Holmes, but I cannot do that. I shall be -true to Hosmer. He shall find me ready when he comes back." - -For all the preposterous hat and the vacuous face, there was -something noble in the simple faith of our visitor which -compelled our respect. She laid her little bundle of papers upon -the table and went her way, with a promise to come again whenever -she might be summoned. - -Sherlock Holmes sat silent for a few minutes with his fingertips -still pressed together, his legs stretched out in front of him, -and his gaze directed upward to the ceiling. Then he took down -from the rack the old and oily clay pipe, which was to him as a -counsellor, and, having lit it, he leaned back in his chair, with -the thick blue cloud-wreaths spinning up from him, and a look of -infinite languor in his face. - -"Quite an interesting study, that maiden," he observed. "I found -her more interesting than her little problem, which, by the way, -is rather a trite one. You will find parallel cases, if you -consult my index, in Andover in '77, and there was something of -the sort at The Hague last year. Old as is the idea, however, -there were one or two details which were new to me. But the -maiden herself was most instructive." - -"You appeared to read a good deal upon her which was quite -invisible to me," I remarked. - -"Not invisible but unnoticed, Watson. You did not know where to -look, and so you missed all that was important. I can never bring -you to realise the importance of sleeves, the suggestiveness of -thumb-nails, or the great issues that may hang from a boot-lace. -Now, what did you gather from that woman's appearance? Describe -it." - -"Well, she had a slate-coloured, broad-brimmed straw hat, with a -feather of a brickish red. Her jacket was black, with black beads -sewn upon it, and a fringe of little black jet ornaments. Her -dress was brown, rather darker than coffee colour, with a little -purple plush at the neck and sleeves. Her gloves were greyish and -were worn through at the right forefinger. Her boots I didn't -observe. She had small round, hanging gold earrings, and a -general air of being fairly well-to-do in a vulgar, comfortable, -easy-going way." - -Sherlock Holmes clapped his hands softly together and chuckled. - -"'Pon my word, Watson, you are coming along wonderfully. You have -really done very well indeed. It is true that you have missed -everything of importance, but you have hit upon the method, and -you have a quick eye for colour. Never trust to general -impressions, my boy, but concentrate yourself upon details. My -first glance is always at a woman's sleeve. In a man it is -perhaps better first to take the knee of the trouser. As you -observe, this woman had plush upon her sleeves, which is a most -useful material for showing traces. The double line a little -above the wrist, where the typewritist presses against the table, -was beautifully defined. The sewing-machine, of the hand type, -leaves a similar mark, but only on the left arm, and on the side -of it farthest from the thumb, instead of being right across the -broadest part, as this was. I then glanced at her face, and, -observing the dint of a pince-nez at either side of her nose, I -ventured a remark upon short sight and typewriting, which seemed -to surprise her." - -"It surprised me." - -"But, surely, it was obvious. I was then much surprised and -interested on glancing down to observe that, though the boots -which she was wearing were not unlike each other, they were -really odd ones; the one having a slightly decorated toe-cap, and -the other a plain one. One was buttoned only in the two lower -buttons out of five, and the other at the first, third, and -fifth. Now, when you see that a young lady, otherwise neatly -dressed, has come away from home with odd boots, half-buttoned, -it is no great deduction to say that she came away in a hurry." - -"And what else?" I asked, keenly interested, as I always was, by -my friend's incisive reasoning. - -"I noted, in passing, that she had written a note before leaving -home but after being fully dressed. You observed that her right -glove was torn at the forefinger, but you did not apparently see -that both glove and finger were stained with violet ink. She had -written in a hurry and dipped her pen too deep. It must have been -this morning, or the mark would not remain clear upon the finger. -All this is amusing, though rather elementary, but I must go back -to business, Watson. Would you mind reading me the advertised -description of Mr. Hosmer Angel?" - -I held the little printed slip to the light. - -"Missing," it said, "on the morning of the fourteenth, a gentleman -named Hosmer Angel. About five ft. seven in. in height; -strongly built, sallow complexion, black hair, a little bald in -the centre, bushy, black side-whiskers and moustache; tinted -glasses, slight infirmity of speech. Was dressed, when last seen, -in black frock-coat faced with silk, black waistcoat, gold Albert -chain, and grey Harris tweed trousers, with brown gaiters over -elastic-sided boots. Known to have been employed in an office in -Leadenhall Street. Anybody bringing--" - -"That will do," said Holmes. "As to the letters," he continued, -glancing over them, "they are very commonplace. Absolutely no -clue in them to Mr. Angel, save that he quotes Balzac once. There -is one remarkable point, however, which will no doubt strike -you." - -"They are typewritten," I remarked. - -"Not only that, but the signature is typewritten. Look at the -neat little 'Hosmer Angel' at the bottom. There is a date, you -see, but no superscription except Leadenhall Street, which is -rather vague. The point about the signature is very suggestive--in -fact, we may call it conclusive." - -"Of what?" - -"My dear fellow, is it possible you do not see how strongly it -bears upon the case?" - -"I cannot say that I do unless it were that he wished to be able -to deny his signature if an action for breach of promise were -instituted." - -"No, that was not the point. However, I shall write two letters, -which should settle the matter. One is to a firm in the City, the -other is to the young lady's stepfather, Mr. Windibank, asking -him whether he could meet us here at six o'clock tomorrow -evening. It is just as well that we should do business with the -male relatives. And now, Doctor, we can do nothing until the -answers to those letters come, so we may put our little problem -upon the shelf for the interim." - -I had had so many reasons to believe in my friend's subtle powers -of reasoning and extraordinary energy in action that I felt that -he must have some solid grounds for the assured and easy -demeanour with which he treated the singular mystery which he had -been called upon to fathom. Once only had I known him to fail, in -the case of the King of Bohemia and of the Irene Adler -photograph; but when I looked back to the weird business of the -Sign of Four, and the extraordinary circumstances connected with -the Study in Scarlet, I felt that it would be a strange tangle -indeed which he could not unravel. - -I left him then, still puffing at his black clay pipe, with the -conviction that when I came again on the next evening I would -find that he held in his hands all the clues which would lead up -to the identity of the disappearing bridegroom of Miss Mary -Sutherland. - -A professional case of great gravity was engaging my own -attention at the time, and the whole of next day I was busy at -the bedside of the sufferer. It was not until close upon six -o'clock that I found myself free and was able to spring into a -hansom and drive to Baker Street, half afraid that I might be too -late to assist at the dnouement of the little mystery. I found -Sherlock Holmes alone, however, half asleep, with his long, thin -form curled up in the recesses of his armchair. A formidable -array of bottles and test-tubes, with the pungent cleanly smell -of hydrochloric acid, told me that he had spent his day in the -chemical work which was so dear to him. - -"Well, have you solved it?" I asked as I entered. - -"Yes. It was the bisulphate of baryta." - -"No, no, the mystery!" I cried. - -"Oh, that! I thought of the salt that I have been working upon. -There was never any mystery in the matter, though, as I said -yesterday, some of the details are of interest. The only drawback -is that there is no law, I fear, that can touch the scoundrel." - -"Who was he, then, and what was his object in deserting Miss -Sutherland?" - -The question was hardly out of my mouth, and Holmes had not yet -opened his lips to reply, when we heard a heavy footfall in the -passage and a tap at the door. - -"This is the girl's stepfather, Mr. James Windibank," said -Holmes. "He has written to me to say that he would be here at -six. Come in!" - -The man who entered was a sturdy, middle-sized fellow, some -thirty years of age, clean-shaven, and sallow-skinned, with a -bland, insinuating manner, and a pair of wonderfully sharp and -penetrating grey eyes. He shot a questioning glance at each of -us, placed his shiny top-hat upon the sideboard, and with a -slight bow sidled down into the nearest chair. - -"Good-evening, Mr. James Windibank," said Holmes. "I think that -this typewritten letter is from you, in which you made an -appointment with me for six o'clock?" - -"Yes, sir. I am afraid that I am a little late, but I am not -quite my own master, you know. I am sorry that Miss Sutherland -has troubled you about this little matter, for I think it is far -better not to wash linen of the sort in public. It was quite -against my wishes that she came, but she is a very excitable, -impulsive girl, as you may have noticed, and she is not easily -controlled when she has made up her mind on a point. Of course, I -did not mind you so much, as you are not connected with the -official police, but it is not pleasant to have a family -misfortune like this noised abroad. Besides, it is a useless -expense, for how could you possibly find this Hosmer Angel?" - -"On the contrary," said Holmes quietly; "I have every reason to -believe that I will succeed in discovering Mr. Hosmer Angel." - -Mr. Windibank gave a violent start and dropped his gloves. "I am -delighted to hear it," he said. - -"It is a curious thing," remarked Holmes, "that a typewriter has -really quite as much individuality as a man's handwriting. Unless -they are quite new, no two of them write exactly alike. Some -letters get more worn than others, and some wear only on one -side. Now, you remark in this note of yours, Mr. Windibank, that -in every case there is some little slurring over of the 'e,' and -a slight defect in the tail of the 'r.' There are fourteen other -characteristics, but those are the more obvious." - -"We do all our correspondence with this machine at the office, -and no doubt it is a little worn," our visitor answered, glancing -keenly at Holmes with his bright little eyes. - -"And now I will show you what is really a very interesting study, -Mr. Windibank," Holmes continued. "I think of writing another -little monograph some of these days on the typewriter and its -relation to crime. It is a subject to which I have devoted some -little attention. I have here four letters which purport to come -from the missing man. They are all typewritten. In each case, not -only are the 'e's' slurred and the 'r's' tailless, but you will -observe, if you care to use my magnifying lens, that the fourteen -other characteristics to which I have alluded are there as well." - -Mr. Windibank sprang out of his chair and picked up his hat. "I -cannot waste time over this sort of fantastic talk, Mr. Holmes," -he said. "If you can catch the man, catch him, and let me know -when you have done it." - -"Certainly," said Holmes, stepping over and turning the key in -the door. "I let you know, then, that I have caught him!" - -"What! where?" shouted Mr. Windibank, turning white to his lips -and glancing about him like a rat in a trap. - -"Oh, it won't do--really it won't," said Holmes suavely. "There -is no possible getting out of it, Mr. Windibank. It is quite too -transparent, and it was a very bad compliment when you said that -it was impossible for me to solve so simple a question. That's -right! Sit down and let us talk it over." - -Our visitor collapsed into a chair, with a ghastly face and a -glitter of moisture on his brow. "It--it's not actionable," he -stammered. - -"I am very much afraid that it is not. But between ourselves, -Windibank, it was as cruel and selfish and heartless a trick in a -petty way as ever came before me. Now, let me just run over the -course of events, and you will contradict me if I go wrong." - -The man sat huddled up in his chair, with his head sunk upon his -breast, like one who is utterly crushed. Holmes stuck his feet up -on the corner of the mantelpiece and, leaning back with his hands -in his pockets, began talking, rather to himself, as it seemed, -than to us. - -"The man married a woman very much older than himself for her -money," said he, "and he enjoyed the use of the money of the -daughter as long as she lived with them. It was a considerable -sum, for people in their position, and the loss of it would have -made a serious difference. It was worth an effort to preserve it. -The daughter was of a good, amiable disposition, but affectionate -and warm-hearted in her ways, so that it was evident that with -her fair personal advantages, and her little income, she would -not be allowed to remain single long. Now her marriage would -mean, of course, the loss of a hundred a year, so what does her -stepfather do to prevent it? He takes the obvious course of -keeping her at home and forbidding her to seek the company of -people of her own age. But soon he found that that would not -answer forever. She became restive, insisted upon her rights, and -finally announced her positive intention of going to a certain -ball. What does her clever stepfather do then? He conceives an -idea more creditable to his head than to his heart. With the -connivance and assistance of his wife he disguised himself, -covered those keen eyes with tinted glasses, masked the face with -a moustache and a pair of bushy whiskers, sunk that clear voice -into an insinuating whisper, and doubly secure on account of the -girl's short sight, he appears as Mr. Hosmer Angel, and keeps off -other lovers by making love himself." - -"It was only a joke at first," groaned our visitor. "We never -thought that she would have been so carried away." - -"Very likely not. However that may be, the young lady was very -decidedly carried away, and, having quite made up her mind that -her stepfather was in France, the suspicion of treachery never -for an instant entered her mind. She was flattered by the -gentleman's attentions, and the effect was increased by the -loudly expressed admiration of her mother. Then Mr. Angel began -to call, for it was obvious that the matter should be pushed as -far as it would go if a real effect were to be produced. There -were meetings, and an engagement, which would finally secure the -girl's affections from turning towards anyone else. But the -deception could not be kept up forever. These pretended journeys -to France were rather cumbrous. The thing to do was clearly to -bring the business to an end in such a dramatic manner that it -would leave a permanent impression upon the young lady's mind and -prevent her from looking upon any other suitor for some time to -come. Hence those vows of fidelity exacted upon a Testament, and -hence also the allusions to a possibility of something happening -on the very morning of the wedding. James Windibank wished Miss -Sutherland to be so bound to Hosmer Angel, and so uncertain as to -his fate, that for ten years to come, at any rate, she would not -listen to another man. As far as the church door he brought her, -and then, as he could go no farther, he conveniently vanished -away by the old trick of stepping in at one door of a -four-wheeler and out at the other. I think that was the chain of -events, Mr. Windibank!" - -Our visitor had recovered something of his assurance while Holmes -had been talking, and he rose from his chair now with a cold -sneer upon his pale face. - -"It may be so, or it may not, Mr. Holmes," said he, "but if you -are so very sharp you ought to be sharp enough to know that it is -you who are breaking the law now, and not me. I have done nothing -actionable from the first, but as long as you keep that door -locked you lay yourself open to an action for assault and illegal -constraint." - -"The law cannot, as you say, touch you," said Holmes, unlocking -and throwing open the door, "yet there never was a man who -deserved punishment more. If the young lady has a brother or a -friend, he ought to lay a whip across your shoulders. By Jove!" -he continued, flushing up at the sight of the bitter sneer upon -the man's face, "it is not part of my duties to my client, but -here's a hunting crop handy, and I think I shall just treat -myself to--" He took two swift steps to the whip, but before he -could grasp it there was a wild clatter of steps upon the stairs, -the heavy hall door banged, and from the window we could see Mr. -James Windibank running at the top of his speed down the road. - -"There's a cold-blooded scoundrel!" said Holmes, laughing, as he -threw himself down into his chair once more. "That fellow will -rise from crime to crime until he does something very bad, and -ends on a gallows. The case has, in some respects, been not -entirely devoid of interest." - -"I cannot now entirely see all the steps of your reasoning," I -remarked. - -"Well, of course it was obvious from the first that this Mr. -Hosmer Angel must have some strong object for his curious -conduct, and it was equally clear that the only man who really -profited by the incident, as far as we could see, was the -stepfather. Then the fact that the two men were never together, -but that the one always appeared when the other was away, was -suggestive. So were the tinted spectacles and the curious voice, -which both hinted at a disguise, as did the bushy whiskers. My -suspicions were all confirmed by his peculiar action in -typewriting his signature, which, of course, inferred that his -handwriting was so familiar to her that she would recognise even -the smallest sample of it. You see all these isolated facts, -together with many minor ones, all pointed in the same -direction." - -"And how did you verify them?" - -"Having once spotted my man, it was easy to get corroboration. I -knew the firm for which this man worked. Having taken the printed -description. I eliminated everything from it which could be the -result of a disguise--the whiskers, the glasses, the voice, and I -sent it to the firm, with a request that they would inform me -whether it answered to the description of any of their -travellers. I had already noticed the peculiarities of the -typewriter, and I wrote to the man himself at his business -address asking him if he would come here. As I expected, his -reply was typewritten and revealed the same trivial but -characteristic defects. The same post brought me a letter from -Westhouse & Marbank, of Fenchurch Street, to say that the -description tallied in every respect with that of their employ, -James Windibank. Voil tout!" - -"And Miss Sutherland?" - -"If I tell her she will not believe me. You may remember the old -Persian saying, 'There is danger for him who taketh the tiger -cub, and danger also for whoso snatches a delusion from a woman.' -There is as much sense in Hafiz as in Horace, and as much -knowledge of the world." - - - -ADVENTURE IV. THE BOSCOMBE VALLEY MYSTERY - -We were seated at breakfast one morning, my wife and I, when the -maid brought in a telegram. It was from Sherlock Holmes and ran -in this way: - -"Have you a couple of days to spare? Have just been wired for from -the west of England in connection with Boscombe Valley tragedy. -Shall be glad if you will come with me. Air and scenery perfect. -Leave Paddington by the 11:15." - -"What do you say, dear?" said my wife, looking across at me. -"Will you go?" - -"I really don't know what to say. I have a fairly long list at -present." - -"Oh, Anstruther would do your work for you. You have been looking -a little pale lately. I think that the change would do you good, -and you are always so interested in Mr. Sherlock Holmes' cases." - -"I should be ungrateful if I were not, seeing what I gained -through one of them," I answered. "But if I am to go, I must pack -at once, for I have only half an hour." - -My experience of camp life in Afghanistan had at least had the -effect of making me a prompt and ready traveller. My wants were -few and simple, so that in less than the time stated I was in a -cab with my valise, rattling away to Paddington Station. Sherlock -Holmes was pacing up and down the platform, his tall, gaunt -figure made even gaunter and taller by his long grey -travelling-cloak and close-fitting cloth cap. - -"It is really very good of you to come, Watson," said he. "It -makes a considerable difference to me, having someone with me on -whom I can thoroughly rely. Local aid is always either worthless -or else biassed. If you will keep the two corner seats I shall -get the tickets." - -We had the carriage to ourselves save for an immense litter of -papers which Holmes had brought with him. Among these he rummaged -and read, with intervals of note-taking and of meditation, until -we were past Reading. Then he suddenly rolled them all into a -gigantic ball and tossed them up onto the rack. - -"Have you heard anything of the case?" he asked. - -"Not a word. I have not seen a paper for some days." - -"The London press has not had very full accounts. I have just -been looking through all the recent papers in order to master the -particulars. It seems, from what I gather, to be one of those -simple cases which are so extremely difficult." - -"That sounds a little paradoxical." - -"But it is profoundly true. Singularity is almost invariably a -clue. The more featureless and commonplace a crime is, the more -difficult it is to bring it home. In this case, however, they -have established a very serious case against the son of the -murdered man." - -"It is a murder, then?" - -"Well, it is conjectured to be so. I shall take nothing for -granted until I have the opportunity of looking personally into -it. I will explain the state of things to you, as far as I have -been able to understand it, in a very few words. - -"Boscombe Valley is a country district not very far from Ross, in -Herefordshire. The largest landed proprietor in that part is a -Mr. John Turner, who made his money in Australia and returned -some years ago to the old country. One of the farms which he -held, that of Hatherley, was let to Mr. Charles McCarthy, who was -also an ex-Australian. The men had known each other in the -colonies, so that it was not unnatural that when they came to -settle down they should do so as near each other as possible. -Turner was apparently the richer man, so McCarthy became his -tenant but still remained, it seems, upon terms of perfect -equality, as they were frequently together. McCarthy had one son, -a lad of eighteen, and Turner had an only daughter of the same -age, but neither of them had wives living. They appear to have -avoided the society of the neighbouring English families and to -have led retired lives, though both the McCarthys were fond of -sport and were frequently seen at the race-meetings of the -neighbourhood. McCarthy kept two servants--a man and a girl. -Turner had a considerable household, some half-dozen at the -least. That is as much as I have been able to gather about the -families. Now for the facts. - -"On June 3rd, that is, on Monday last, McCarthy left his house at -Hatherley about three in the afternoon and walked down to the -Boscombe Pool, which is a small lake formed by the spreading out -of the stream which runs down the Boscombe Valley. He had been -out with his serving-man in the morning at Ross, and he had told -the man that he must hurry, as he had an appointment of -importance to keep at three. From that appointment he never came -back alive. - -"From Hatherley Farm-house to the Boscombe Pool is a quarter of a -mile, and two people saw him as he passed over this ground. One -was an old woman, whose name is not mentioned, and the other was -William Crowder, a game-keeper in the employ of Mr. Turner. Both -these witnesses depose that Mr. McCarthy was walking alone. The -game-keeper adds that within a few minutes of his seeing Mr. -McCarthy pass he had seen his son, Mr. James McCarthy, going the -same way with a gun under his arm. To the best of his belief, the -father was actually in sight at the time, and the son was -following him. He thought no more of the matter until he heard in -the evening of the tragedy that had occurred. - -"The two McCarthys were seen after the time when William Crowder, -the game-keeper, lost sight of them. The Boscombe Pool is thickly -wooded round, with just a fringe of grass and of reeds round the -edge. A girl of fourteen, Patience Moran, who is the daughter of -the lodge-keeper of the Boscombe Valley estate, was in one of the -woods picking flowers. She states that while she was there she -saw, at the border of the wood and close by the lake, Mr. -McCarthy and his son, and that they appeared to be having a -violent quarrel. She heard Mr. McCarthy the elder using very -strong language to his son, and she saw the latter raise up his -hand as if to strike his father. She was so frightened by their -violence that she ran away and told her mother when she reached -home that she had left the two McCarthys quarrelling near -Boscombe Pool, and that she was afraid that they were going to -fight. She had hardly said the words when young Mr. McCarthy came -running up to the lodge to say that he had found his father dead -in the wood, and to ask for the help of the lodge-keeper. He was -much excited, without either his gun or his hat, and his right -hand and sleeve were observed to be stained with fresh blood. On -following him they found the dead body stretched out upon the -grass beside the pool. The head had been beaten in by repeated -blows of some heavy and blunt weapon. The injuries were such as -might very well have been inflicted by the butt-end of his son's -gun, which was found lying on the grass within a few paces of the -body. Under these circumstances the young man was instantly -arrested, and a verdict of 'wilful murder' having been returned -at the inquest on Tuesday, he was on Wednesday brought before the -magistrates at Ross, who have referred the case to the next -Assizes. Those are the main facts of the case as they came out -before the coroner and the police-court." - -"I could hardly imagine a more damning case," I remarked. "If -ever circumstantial evidence pointed to a criminal it does so -here." - -"Circumstantial evidence is a very tricky thing," answered Holmes -thoughtfully. "It may seem to point very straight to one thing, -but if you shift your own point of view a little, you may find it -pointing in an equally uncompromising manner to something -entirely different. It must be confessed, however, that the case -looks exceedingly grave against the young man, and it is very -possible that he is indeed the culprit. There are several people -in the neighbourhood, however, and among them Miss Turner, the -daughter of the neighbouring landowner, who believe in his -innocence, and who have retained Lestrade, whom you may recollect -in connection with the Study in Scarlet, to work out the case in -his interest. Lestrade, being rather puzzled, has referred the -case to me, and hence it is that two middle-aged gentlemen are -flying westward at fifty miles an hour instead of quietly -digesting their breakfasts at home." - -"I am afraid," said I, "that the facts are so obvious that you -will find little credit to be gained out of this case." - -"There is nothing more deceptive than an obvious fact," he -answered, laughing. "Besides, we may chance to hit upon some -other obvious facts which may have been by no means obvious to -Mr. Lestrade. You know me too well to think that I am boasting -when I say that I shall either confirm or destroy his theory by -means which he is quite incapable of employing, or even of -understanding. To take the first example to hand, I very clearly -perceive that in your bedroom the window is upon the right-hand -side, and yet I question whether Mr. Lestrade would have noted -even so self-evident a thing as that." - -"How on earth--" - -"My dear fellow, I know you well. I know the military neatness -which characterises you. You shave every morning, and in this -season you shave by the sunlight; but since your shaving is less -and less complete as we get farther back on the left side, until -it becomes positively slovenly as we get round the angle of the -jaw, it is surely very clear that that side is less illuminated -than the other. I could not imagine a man of your habits looking -at himself in an equal light and being satisfied with such a -result. I only quote this as a trivial example of observation and -inference. Therein lies my mtier, and it is just possible that -it may be of some service in the investigation which lies before -us. There are one or two minor points which were brought out in -the inquest, and which are worth considering." - -"What are they?" - -"It appears that his arrest did not take place at once, but after -the return to Hatherley Farm. On the inspector of constabulary -informing him that he was a prisoner, he remarked that he was not -surprised to hear it, and that it was no more than his deserts. -This observation of his had the natural effect of removing any -traces of doubt which might have remained in the minds of the -coroner's jury." - -"It was a confession," I ejaculated. - -"No, for it was followed by a protestation of innocence." - -"Coming on the top of such a damning series of events, it was at -least a most suspicious remark." - -"On the contrary," said Holmes, "it is the brightest rift which I -can at present see in the clouds. However innocent he might be, -he could not be such an absolute imbecile as not to see that the -circumstances were very black against him. Had he appeared -surprised at his own arrest, or feigned indignation at it, I -should have looked upon it as highly suspicious, because such -surprise or anger would not be natural under the circumstances, -and yet might appear to be the best policy to a scheming man. His -frank acceptance of the situation marks him as either an innocent -man, or else as a man of considerable self-restraint and -firmness. As to his remark about his deserts, it was also not -unnatural if you consider that he stood beside the dead body of -his father, and that there is no doubt that he had that very day -so far forgotten his filial duty as to bandy words with him, and -even, according to the little girl whose evidence is so -important, to raise his hand as if to strike him. The -self-reproach and contrition which are displayed in his remark -appear to me to be the signs of a healthy mind rather than of a -guilty one." - -I shook my head. "Many men have been hanged on far slighter -evidence," I remarked. - -"So they have. And many men have been wrongfully hanged." - -"What is the young man's own account of the matter?" - -"It is, I am afraid, not very encouraging to his supporters, -though there are one or two points in it which are suggestive. -You will find it here, and may read it for yourself." - -He picked out from his bundle a copy of the local Herefordshire -paper, and having turned down the sheet he pointed out the -paragraph in which the unfortunate young man had given his own -statement of what had occurred. I settled myself down in the -corner of the carriage and read it very carefully. It ran in this -way: - -"Mr. James McCarthy, the only son of the deceased, was then called -and gave evidence as follows: 'I had been away from home for -three days at Bristol, and had only just returned upon the -morning of last Monday, the 3rd. My father was absent from home at -the time of my arrival, and I was informed by the maid that he -had driven over to Ross with John Cobb, the groom. Shortly after -my return I heard the wheels of his trap in the yard, and, -looking out of my window, I saw him get out and walk rapidly out -of the yard, though I was not aware in which direction he was -going. I then took my gun and strolled out in the direction of -the Boscombe Pool, with the intention of visiting the rabbit -warren which is upon the other side. On my way I saw William -Crowder, the game-keeper, as he had stated in his evidence; but -he is mistaken in thinking that I was following my father. I had -no idea that he was in front of me. When about a hundred yards -from the pool I heard a cry of "Cooee!" which was a usual signal -between my father and myself. I then hurried forward, and found -him standing by the pool. He appeared to be much surprised at -seeing me and asked me rather roughly what I was doing there. A -conversation ensued which led to high words and almost to blows, -for my father was a man of a very violent temper. Seeing that his -passion was becoming ungovernable, I left him and returned -towards Hatherley Farm. I had not gone more than 150 yards, -however, when I heard a hideous outcry behind me, which caused me -to run back again. I found my father expiring upon the ground, -with his head terribly injured. I dropped my gun and held him in -my arms, but he almost instantly expired. I knelt beside him for -some minutes, and then made my way to Mr. Turner's lodge-keeper, -his house being the nearest, to ask for assistance. I saw no one -near my father when I returned, and I have no idea how he came by -his injuries. He was not a popular man, being somewhat cold and -forbidding in his manners, but he had, as far as I know, no -active enemies. I know nothing further of the matter.' - -"The Coroner: Did your father make any statement to you before -he died? - -"Witness: He mumbled a few words, but I could only catch some -allusion to a rat. - -"The Coroner: What did you understand by that? - -"Witness: It conveyed no meaning to me. I thought that he was -delirious. - -"The Coroner: What was the point upon which you and your father -had this final quarrel? - -"Witness: I should prefer not to answer. - -"The Coroner: I am afraid that I must press it. - -"Witness: It is really impossible for me to tell you. I can -assure you that it has nothing to do with the sad tragedy which -followed. - -"The Coroner: That is for the court to decide. I need not point -out to you that your refusal to answer will prejudice your case -considerably in any future proceedings which may arise. - -"Witness: I must still refuse. - -"The Coroner: I understand that the cry of 'Cooee' was a common -signal between you and your father? - -"Witness: It was. - -"The Coroner: How was it, then, that he uttered it before he saw -you, and before he even knew that you had returned from Bristol? - -"Witness (with considerable confusion): I do not know. - -"A Juryman: Did you see nothing which aroused your suspicions -when you returned on hearing the cry and found your father -fatally injured? - -"Witness: Nothing definite. - -"The Coroner: What do you mean? - -"Witness: I was so disturbed and excited as I rushed out into -the open, that I could think of nothing except of my father. Yet -I have a vague impression that as I ran forward something lay -upon the ground to the left of me. It seemed to me to be -something grey in colour, a coat of some sort, or a plaid perhaps. -When I rose from my father I looked round for it, but it was -gone. - -"'Do you mean that it disappeared before you went for help?' - -"'Yes, it was gone.' - -"'You cannot say what it was?' - -"'No, I had a feeling something was there.' - -"'How far from the body?' - -"'A dozen yards or so.' - -"'And how far from the edge of the wood?' - -"'About the same.' - -"'Then if it was removed it was while you were within a dozen -yards of it?' - -"'Yes, but with my back towards it.' - -"This concluded the examination of the witness." - -"I see," said I as I glanced down the column, "that the coroner -in his concluding remarks was rather severe upon young McCarthy. -He calls attention, and with reason, to the discrepancy about his -father having signalled to him before seeing him, also to his -refusal to give details of his conversation with his father, and -his singular account of his father's dying words. They are all, -as he remarks, very much against the son." - -Holmes laughed softly to himself and stretched himself out upon -the cushioned seat. "Both you and the coroner have been at some -pains," said he, "to single out the very strongest points in the -young man's favour. Don't you see that you alternately give him -credit for having too much imagination and too little? Too -little, if he could not invent a cause of quarrel which would -give him the sympathy of the jury; too much, if he evolved from -his own inner consciousness anything so outr as a dying -reference to a rat, and the incident of the vanishing cloth. No, -sir, I shall approach this case from the point of view that what -this young man says is true, and we shall see whither that -hypothesis will lead us. And now here is my pocket Petrarch, and -not another word shall I say of this case until we are on the -scene of action. We lunch at Swindon, and I see that we shall be -there in twenty minutes." - -It was nearly four o'clock when we at last, after passing through -the beautiful Stroud Valley, and over the broad gleaming Severn, -found ourselves at the pretty little country-town of Ross. A -lean, ferret-like man, furtive and sly-looking, was waiting for -us upon the platform. In spite of the light brown dustcoat and -leather-leggings which he wore in deference to his rustic -surroundings, I had no difficulty in recognising Lestrade, of -Scotland Yard. With him we drove to the Hereford Arms where a -room had already been engaged for us. - -"I have ordered a carriage," said Lestrade as we sat over a cup -of tea. "I knew your energetic nature, and that you would not be -happy until you had been on the scene of the crime." - -"It was very nice and complimentary of you," Holmes answered. "It -is entirely a question of barometric pressure." - -Lestrade looked startled. "I do not quite follow," he said. - -"How is the glass? Twenty-nine, I see. No wind, and not a cloud -in the sky. I have a caseful of cigarettes here which need -smoking, and the sofa is very much superior to the usual country -hotel abomination. I do not think that it is probable that I -shall use the carriage to-night." - -Lestrade laughed indulgently. "You have, no doubt, already formed -your conclusions from the newspapers," he said. "The case is as -plain as a pikestaff, and the more one goes into it the plainer -it becomes. Still, of course, one can't refuse a lady, and such a -very positive one, too. She has heard of you, and would have your -opinion, though I repeatedly told her that there was nothing -which you could do which I had not already done. Why, bless my -soul! here is her carriage at the door." - -He had hardly spoken before there rushed into the room one of the -most lovely young women that I have ever seen in my life. Her -violet eyes shining, her lips parted, a pink flush upon her -cheeks, all thought of her natural reserve lost in her -overpowering excitement and concern. - -"Oh, Mr. Sherlock Holmes!" she cried, glancing from one to the -other of us, and finally, with a woman's quick intuition, -fastening upon my companion, "I am so glad that you have come. I -have driven down to tell you so. I know that James didn't do it. -I know it, and I want you to start upon your work knowing it, -too. Never let yourself doubt upon that point. We have known each -other since we were little children, and I know his faults as no -one else does; but he is too tender-hearted to hurt a fly. Such a -charge is absurd to anyone who really knows him." - -"I hope we may clear him, Miss Turner," said Sherlock Holmes. -"You may rely upon my doing all that I can." - -"But you have read the evidence. You have formed some conclusion? -Do you not see some loophole, some flaw? Do you not yourself -think that he is innocent?" - -"I think that it is very probable." - -"There, now!" she cried, throwing back her head and looking -defiantly at Lestrade. "You hear! He gives me hopes." - -Lestrade shrugged his shoulders. "I am afraid that my colleague -has been a little quick in forming his conclusions," he said. - -"But he is right. Oh! I know that he is right. James never did -it. And about his quarrel with his father, I am sure that the -reason why he would not speak about it to the coroner was because -I was concerned in it." - -"In what way?" asked Holmes. - -"It is no time for me to hide anything. James and his father had -many disagreements about me. Mr. McCarthy was very anxious that -there should be a marriage between us. James and I have always -loved each other as brother and sister; but of course he is young -and has seen very little of life yet, and--and--well, he -naturally did not wish to do anything like that yet. So there -were quarrels, and this, I am sure, was one of them." - -"And your father?" asked Holmes. "Was he in favour of such a -union?" - -"No, he was averse to it also. No one but Mr. McCarthy was in -favour of it." A quick blush passed over her fresh young face as -Holmes shot one of his keen, questioning glances at her. - -"Thank you for this information," said he. "May I see your father -if I call to-morrow?" - -"I am afraid the doctor won't allow it." - -"The doctor?" - -"Yes, have you not heard? Poor father has never been strong for -years back, but this has broken him down completely. He has taken -to his bed, and Dr. Willows says that he is a wreck and that his -nervous system is shattered. Mr. McCarthy was the only man alive -who had known dad in the old days in Victoria." - -"Ha! In Victoria! That is important." - -"Yes, at the mines." - -"Quite so; at the gold-mines, where, as I understand, Mr. Turner -made his money." - -"Yes, certainly." - -"Thank you, Miss Turner. You have been of material assistance to -me." - -"You will tell me if you have any news to-morrow. No doubt you -will go to the prison to see James. Oh, if you do, Mr. Holmes, do -tell him that I know him to be innocent." - -"I will, Miss Turner." - -"I must go home now, for dad is very ill, and he misses me so if -I leave him. Good-bye, and God help you in your undertaking." She -hurried from the room as impulsively as she had entered, and we -heard the wheels of her carriage rattle off down the street. - -"I am ashamed of you, Holmes," said Lestrade with dignity after a -few minutes' silence. "Why should you raise up hopes which you -are bound to disappoint? I am not over-tender of heart, but I -call it cruel." - -"I think that I see my way to clearing James McCarthy," said -Holmes. "Have you an order to see him in prison?" - -"Yes, but only for you and me." - -"Then I shall reconsider my resolution about going out. We have -still time to take a train to Hereford and see him to-night?" - -"Ample." - -"Then let us do so. Watson, I fear that you will find it very -slow, but I shall only be away a couple of hours." - -I walked down to the station with them, and then wandered through -the streets of the little town, finally returning to the hotel, -where I lay upon the sofa and tried to interest myself in a -yellow-backed novel. The puny plot of the story was so thin, -however, when compared to the deep mystery through which we were -groping, and I found my attention wander so continually from the -action to the fact, that I at last flung it across the room and -gave myself up entirely to a consideration of the events of the -day. Supposing that this unhappy young man's story were -absolutely true, then what hellish thing, what absolutely -unforeseen and extraordinary calamity could have occurred between -the time when he parted from his father, and the moment when, -drawn back by his screams, he rushed into the glade? It was -something terrible and deadly. What could it be? Might not the -nature of the injuries reveal something to my medical instincts? -I rang the bell and called for the weekly county paper, which -contained a verbatim account of the inquest. In the surgeon's -deposition it was stated that the posterior third of the left -parietal bone and the left half of the occipital bone had been -shattered by a heavy blow from a blunt weapon. I marked the spot -upon my own head. Clearly such a blow must have been struck from -behind. That was to some extent in favour of the accused, as when -seen quarrelling he was face to face with his father. Still, it -did not go for very much, for the older man might have turned his -back before the blow fell. Still, it might be worth while to call -Holmes' attention to it. Then there was the peculiar dying -reference to a rat. What could that mean? It could not be -delirium. A man dying from a sudden blow does not commonly become -delirious. No, it was more likely to be an attempt to explain how -he met his fate. But what could it indicate? I cudgelled my -brains to find some possible explanation. And then the incident -of the grey cloth seen by young McCarthy. If that were true the -murderer must have dropped some part of his dress, presumably his -overcoat, in his flight, and must have had the hardihood to -return and to carry it away at the instant when the son was -kneeling with his back turned not a dozen paces off. What a -tissue of mysteries and improbabilities the whole thing was! I -did not wonder at Lestrade's opinion, and yet I had so much faith -in Sherlock Holmes' insight that I could not lose hope as long -as every fresh fact seemed to strengthen his conviction of young -McCarthy's innocence. - -It was late before Sherlock Holmes returned. He came back alone, -for Lestrade was staying in lodgings in the town. - -"The glass still keeps very high," he remarked as he sat down. -"It is of importance that it should not rain before we are able -to go over the ground. On the other hand, a man should be at his -very best and keenest for such nice work as that, and I did not -wish to do it when fagged by a long journey. I have seen young -McCarthy." - -"And what did you learn from him?" - -"Nothing." - -"Could he throw no light?" - -"None at all. I was inclined to think at one time that he knew -who had done it and was screening him or her, but I am convinced -now that he is as puzzled as everyone else. He is not a very -quick-witted youth, though comely to look at and, I should think, -sound at heart." - -"I cannot admire his taste," I remarked, "if it is indeed a fact -that he was averse to a marriage with so charming a young lady as -this Miss Turner." - -"Ah, thereby hangs a rather painful tale. This fellow is madly, -insanely, in love with her, but some two years ago, when he was -only a lad, and before he really knew her, for she had been away -five years at a boarding-school, what does the idiot do but get -into the clutches of a barmaid in Bristol and marry her at a -registry office? No one knows a word of the matter, but you can -imagine how maddening it must be to him to be upbraided for not -doing what he would give his very eyes to do, but what he knows -to be absolutely impossible. It was sheer frenzy of this sort -which made him throw his hands up into the air when his father, -at their last interview, was goading him on to propose to Miss -Turner. On the other hand, he had no means of supporting himself, -and his father, who was by all accounts a very hard man, would -have thrown him over utterly had he known the truth. It was with -his barmaid wife that he had spent the last three days in -Bristol, and his father did not know where he was. Mark that -point. It is of importance. Good has come out of evil, however, -for the barmaid, finding from the papers that he is in serious -trouble and likely to be hanged, has thrown him over utterly and -has written to him to say that she has a husband already in the -Bermuda Dockyard, so that there is really no tie between them. I -think that that bit of news has consoled young McCarthy for all -that he has suffered." - -"But if he is innocent, who has done it?" - -"Ah! who? I would call your attention very particularly to two -points. One is that the murdered man had an appointment with -someone at the pool, and that the someone could not have been his -son, for his son was away, and he did not know when he would -return. The second is that the murdered man was heard to cry -'Cooee!' before he knew that his son had returned. Those are the -crucial points upon which the case depends. And now let us talk -about George Meredith, if you please, and we shall leave all -minor matters until to-morrow." - -There was no rain, as Holmes had foretold, and the morning broke -bright and cloudless. At nine o'clock Lestrade called for us with -the carriage, and we set off for Hatherley Farm and the Boscombe -Pool. - -"There is serious news this morning," Lestrade observed. "It is -said that Mr. Turner, of the Hall, is so ill that his life is -despaired of." - -"An elderly man, I presume?" said Holmes. - -"About sixty; but his constitution has been shattered by his life -abroad, and he has been in failing health for some time. This -business has had a very bad effect upon him. He was an old friend -of McCarthy's, and, I may add, a great benefactor to him, for I -have learned that he gave him Hatherley Farm rent free." - -"Indeed! That is interesting," said Holmes. - -"Oh, yes! In a hundred other ways he has helped him. Everybody -about here speaks of his kindness to him." - -"Really! Does it not strike you as a little singular that this -McCarthy, who appears to have had little of his own, and to have -been under such obligations to Turner, should still talk of -marrying his son to Turner's daughter, who is, presumably, -heiress to the estate, and that in such a very cocksure manner, -as if it were merely a case of a proposal and all else would -follow? It is the more strange, since we know that Turner himself -was averse to the idea. The daughter told us as much. Do you not -deduce something from that?" - -"We have got to the deductions and the inferences," said -Lestrade, winking at me. "I find it hard enough to tackle facts, -Holmes, without flying away after theories and fancies." - -"You are right," said Holmes demurely; "you do find it very hard -to tackle the facts." - -"Anyhow, I have grasped one fact which you seem to find it -difficult to get hold of," replied Lestrade with some warmth. - -"And that is--" - -"That McCarthy senior met his death from McCarthy junior and that -all theories to the contrary are the merest moonshine." - -"Well, moonshine is a brighter thing than fog," said Holmes, -laughing. "But I am very much mistaken if this is not Hatherley -Farm upon the left." - -"Yes, that is it." It was a widespread, comfortable-looking -building, two-storied, slate-roofed, with great yellow blotches -of lichen upon the grey walls. The drawn blinds and the smokeless -chimneys, however, gave it a stricken look, as though the weight -of this horror still lay heavy upon it. We called at the door, -when the maid, at Holmes' request, showed us the boots which her -master wore at the time of his death, and also a pair of the -son's, though not the pair which he had then had. Having measured -these very carefully from seven or eight different points, Holmes -desired to be led to the court-yard, from which we all followed -the winding track which led to Boscombe Pool. - -Sherlock Holmes was transformed when he was hot upon such a scent -as this. Men who had only known the quiet thinker and logician of -Baker Street would have failed to recognise him. His face flushed -and darkened. His brows were drawn into two hard black lines, -while his eyes shone out from beneath them with a steely glitter. -His face was bent downward, his shoulders bowed, his lips -compressed, and the veins stood out like whipcord in his long, -sinewy neck. His nostrils seemed to dilate with a purely animal -lust for the chase, and his mind was so absolutely concentrated -upon the matter before him that a question or remark fell -unheeded upon his ears, or, at the most, only provoked a quick, -impatient snarl in reply. Swiftly and silently he made his way -along the track which ran through the meadows, and so by way of -the woods to the Boscombe Pool. It was damp, marshy ground, as is -all that district, and there were marks of many feet, both upon -the path and amid the short grass which bounded it on either -side. Sometimes Holmes would hurry on, sometimes stop dead, and -once he made quite a little detour into the meadow. Lestrade and -I walked behind him, the detective indifferent and contemptuous, -while I watched my friend with the interest which sprang from the -conviction that every one of his actions was directed towards a -definite end. - -The Boscombe Pool, which is a little reed-girt sheet of water -some fifty yards across, is situated at the boundary between the -Hatherley Farm and the private park of the wealthy Mr. Turner. -Above the woods which lined it upon the farther side we could see -the red, jutting pinnacles which marked the site of the rich -landowner's dwelling. On the Hatherley side of the pool the woods -grew very thick, and there was a narrow belt of sodden grass -twenty paces across between the edge of the trees and the reeds -which lined the lake. Lestrade showed us the exact spot at which -the body had been found, and, indeed, so moist was the ground, -that I could plainly see the traces which had been left by the -fall of the stricken man. To Holmes, as I could see by his eager -face and peering eyes, very many other things were to be read -upon the trampled grass. He ran round, like a dog who is picking -up a scent, and then turned upon my companion. - -"What did you go into the pool for?" he asked. - -"I fished about with a rake. I thought there might be some weapon -or other trace. But how on earth--" - -"Oh, tut, tut! I have no time! That left foot of yours with its -inward twist is all over the place. A mole could trace it, and -there it vanishes among the reeds. Oh, how simple it would all -have been had I been here before they came like a herd of buffalo -and wallowed all over it. Here is where the party with the -lodge-keeper came, and they have covered all tracks for six or -eight feet round the body. But here are three separate tracks of -the same feet." He drew out a lens and lay down upon his -waterproof to have a better view, talking all the time rather to -himself than to us. "These are young McCarthy's feet. Twice he -was walking, and once he ran swiftly, so that the soles are -deeply marked and the heels hardly visible. That bears out his -story. He ran when he saw his father on the ground. Then here are -the father's feet as he paced up and down. What is this, then? It -is the butt-end of the gun as the son stood listening. And this? -Ha, ha! What have we here? Tiptoes! tiptoes! Square, too, quite -unusual boots! They come, they go, they come again--of course -that was for the cloak. Now where did they come from?" He ran up -and down, sometimes losing, sometimes finding the track until we -were well within the edge of the wood and under the shadow of a -great beech, the largest tree in the neighbourhood. Holmes traced -his way to the farther side of this and lay down once more upon -his face with a little cry of satisfaction. For a long time he -remained there, turning over the leaves and dried sticks, -gathering up what seemed to me to be dust into an envelope and -examining with his lens not only the ground but even the bark of -the tree as far as he could reach. A jagged stone was lying among -the moss, and this also he carefully examined and retained. Then -he followed a pathway through the wood until he came to the -highroad, where all traces were lost. - -"It has been a case of considerable interest," he remarked, -returning to his natural manner. "I fancy that this grey house on -the right must be the lodge. I think that I will go in and have a -word with Moran, and perhaps write a little note. Having done -that, we may drive back to our luncheon. You may walk to the cab, -and I shall be with you presently." - -It was about ten minutes before we regained our cab and drove -back into Ross, Holmes still carrying with him the stone which he -had picked up in the wood. - -"This may interest you, Lestrade," he remarked, holding it out. -"The murder was done with it." - -"I see no marks." - -"There are none." - -"How do you know, then?" - -"The grass was growing under it. It had only lain there a few -days. There was no sign of a place whence it had been taken. It -corresponds with the injuries. There is no sign of any other -weapon." - -"And the murderer?" - -"Is a tall man, left-handed, limps with the right leg, wears -thick-soled shooting-boots and a grey cloak, smokes Indian -cigars, uses a cigar-holder, and carries a blunt pen-knife in his -pocket. There are several other indications, but these may be -enough to aid us in our search." - -Lestrade laughed. "I am afraid that I am still a sceptic," he -said. "Theories are all very well, but we have to deal with a -hard-headed British jury." - -"Nous verrons," answered Holmes calmly. "You work your own -method, and I shall work mine. I shall be busy this afternoon, -and shall probably return to London by the evening train." - -"And leave your case unfinished?" - -"No, finished." - -"But the mystery?" - -"It is solved." - -"Who was the criminal, then?" - -"The gentleman I describe." - -"But who is he?" - -"Surely it would not be difficult to find out. This is not such a -populous neighbourhood." - -Lestrade shrugged his shoulders. "I am a practical man," he said, -"and I really cannot undertake to go about the country looking -for a left-handed gentleman with a game leg. I should become the -laughing-stock of Scotland Yard." - -"All right," said Holmes quietly. "I have given you the chance. -Here are your lodgings. Good-bye. I shall drop you a line before -I leave." - -Having left Lestrade at his rooms, we drove to our hotel, where -we found lunch upon the table. Holmes was silent and buried in -thought with a pained expression upon his face, as one who finds -himself in a perplexing position. - -"Look here, Watson," he said when the cloth was cleared "just sit -down in this chair and let me preach to you for a little. I don't -know quite what to do, and I should value your advice. Light a -cigar and let me expound." - - "Pray do so." - -"Well, now, in considering this case there are two points about -young McCarthy's narrative which struck us both instantly, -although they impressed me in his favour and you against him. One -was the fact that his father should, according to his account, -cry 'Cooee!' before seeing him. The other was his singular dying -reference to a rat. He mumbled several words, you understand, but -that was all that caught the son's ear. Now from this double -point our research must commence, and we will begin it by -presuming that what the lad says is absolutely true." - -"What of this 'Cooee!' then?" - -"Well, obviously it could not have been meant for the son. The -son, as far as he knew, was in Bristol. It was mere chance that -he was within earshot. The 'Cooee!' was meant to attract the -attention of whoever it was that he had the appointment with. But -'Cooee' is a distinctly Australian cry, and one which is used -between Australians. There is a strong presumption that the -person whom McCarthy expected to meet him at Boscombe Pool was -someone who had been in Australia." - -"What of the rat, then?" - -Sherlock Holmes took a folded paper from his pocket and flattened -it out on the table. "This is a map of the Colony of Victoria," -he said. "I wired to Bristol for it last night." He put his hand -over part of the map. "What do you read?" - -"ARAT," I read. - -"And now?" He raised his hand. - -"BALLARAT." - -"Quite so. That was the word the man uttered, and of which his -son only caught the last two syllables. He was trying to utter -the name of his murderer. So and so, of Ballarat." - -"It is wonderful!" I exclaimed. - -"It is obvious. And now, you see, I had narrowed the field down -considerably. The possession of a grey garment was a third point -which, granting the son's statement to be correct, was a -certainty. We have come now out of mere vagueness to the definite -conception of an Australian from Ballarat with a grey cloak." - -"Certainly." - -"And one who was at home in the district, for the pool can only -be approached by the farm or by the estate, where strangers could -hardly wander." - -"Quite so." - -"Then comes our expedition of to-day. By an examination of the -ground I gained the trifling details which I gave to that -imbecile Lestrade, as to the personality of the criminal." - -"But how did you gain them?" - -"You know my method. It is founded upon the observation of -trifles." - -"His height I know that you might roughly judge from the length -of his stride. His boots, too, might be told from their traces." - -"Yes, they were peculiar boots." - -"But his lameness?" - -"The impression of his right foot was always less distinct than -his left. He put less weight upon it. Why? Because he limped--he -was lame." - -"But his left-handedness." - -"You were yourself struck by the nature of the injury as recorded -by the surgeon at the inquest. The blow was struck from -immediately behind, and yet was upon the left side. Now, how can -that be unless it were by a left-handed man? He had stood behind -that tree during the interview between the father and son. He had -even smoked there. I found the ash of a cigar, which my special -knowledge of tobacco ashes enables me to pronounce as an Indian -cigar. I have, as you know, devoted some attention to this, and -written a little monograph on the ashes of 140 different -varieties of pipe, cigar, and cigarette tobacco. Having found the -ash, I then looked round and discovered the stump among the moss -where he had tossed it. It was an Indian cigar, of the variety -which are rolled in Rotterdam." - -"And the cigar-holder?" - -"I could see that the end had not been in his mouth. Therefore he -used a holder. The tip had been cut off, not bitten off, but the -cut was not a clean one, so I deduced a blunt pen-knife." - -"Holmes," I said, "you have drawn a net round this man from which -he cannot escape, and you have saved an innocent human life as -truly as if you had cut the cord which was hanging him. I see the -direction in which all this points. The culprit is--" - -"Mr. John Turner," cried the hotel waiter, opening the door of -our sitting-room, and ushering in a visitor. - -The man who entered was a strange and impressive figure. His -slow, limping step and bowed shoulders gave the appearance of -decrepitude, and yet his hard, deep-lined, craggy features, and -his enormous limbs showed that he was possessed of unusual -strength of body and of character. His tangled beard, grizzled -hair, and outstanding, drooping eyebrows combined to give an air -of dignity and power to his appearance, but his face was of an -ashen white, while his lips and the corners of his nostrils were -tinged with a shade of blue. It was clear to me at a glance that -he was in the grip of some deadly and chronic disease. - -"Pray sit down on the sofa," said Holmes gently. "You had my -note?" - -"Yes, the lodge-keeper brought it up. You said that you wished to -see me here to avoid scandal." - -"I thought people would talk if I went to the Hall." - -"And why did you wish to see me?" He looked across at my -companion with despair in his weary eyes, as though his question -was already answered. - -"Yes," said Holmes, answering the look rather than the words. "It -is so. I know all about McCarthy." - -The old man sank his face in his hands. "God help me!" he cried. -"But I would not have let the young man come to harm. I give you -my word that I would have spoken out if it went against him at -the Assizes." - -"I am glad to hear you say so," said Holmes gravely. - -"I would have spoken now had it not been for my dear girl. It -would break her heart--it will break her heart when she hears -that I am arrested." - -"It may not come to that," said Holmes. - -"What?" - -"I am no official agent. I understand that it was your daughter -who required my presence here, and I am acting in her interests. -Young McCarthy must be got off, however." - -"I am a dying man," said old Turner. "I have had diabetes for -years. My doctor says it is a question whether I shall live a -month. Yet I would rather die under my own roof than in a gaol." - -Holmes rose and sat down at the table with his pen in his hand -and a bundle of paper before him. "Just tell us the truth," he -said. "I shall jot down the facts. You will sign it, and Watson -here can witness it. Then I could produce your confession at the -last extremity to save young McCarthy. I promise you that I shall -not use it unless it is absolutely needed." - -"It's as well," said the old man; "it's a question whether I -shall live to the Assizes, so it matters little to me, but I -should wish to spare Alice the shock. And now I will make the -thing clear to you; it has been a long time in the acting, but -will not take me long to tell. - -"You didn't know this dead man, McCarthy. He was a devil -incarnate. I tell you that. God keep you out of the clutches of -such a man as he. His grip has been upon me these twenty years, -and he has blasted my life. I'll tell you first how I came to be -in his power. - -"It was in the early '60's at the diggings. I was a young chap -then, hot-blooded and reckless, ready to turn my hand at -anything; I got among bad companions, took to drink, had no luck -with my claim, took to the bush, and in a word became what you -would call over here a highway robber. There were six of us, and -we had a wild, free life of it, sticking up a station from time -to time, or stopping the wagons on the road to the diggings. -Black Jack of Ballarat was the name I went under, and our party -is still remembered in the colony as the Ballarat Gang. - -"One day a gold convoy came down from Ballarat to Melbourne, and -we lay in wait for it and attacked it. There were six troopers -and six of us, so it was a close thing, but we emptied four of -their saddles at the first volley. Three of our boys were killed, -however, before we got the swag. I put my pistol to the head of -the wagon-driver, who was this very man McCarthy. I wish to the -Lord that I had shot him then, but I spared him, though I saw his -wicked little eyes fixed on my face, as though to remember every -feature. We got away with the gold, became wealthy men, and made -our way over to England without being suspected. There I parted -from my old pals and determined to settle down to a quiet and -respectable life. I bought this estate, which chanced to be in -the market, and I set myself to do a little good with my money, -to make up for the way in which I had earned it. I married, too, -and though my wife died young she left me my dear little Alice. -Even when she was just a baby her wee hand seemed to lead me down -the right path as nothing else had ever done. In a word, I turned -over a new leaf and did my best to make up for the past. All was -going well when McCarthy laid his grip upon me. - -"I had gone up to town about an investment, and I met him in -Regent Street with hardly a coat to his back or a boot to his -foot. - -"'Here we are, Jack,' says he, touching me on the arm; 'we'll be -as good as a family to you. There's two of us, me and my son, and -you can have the keeping of us. If you don't--it's a fine, -law-abiding country is England, and there's always a policeman -within hail.' - -"Well, down they came to the west country, there was no shaking -them off, and there they have lived rent free on my best land -ever since. There was no rest for me, no peace, no forgetfulness; -turn where I would, there was his cunning, grinning face at my -elbow. It grew worse as Alice grew up, for he soon saw I was more -afraid of her knowing my past than of the police. Whatever he -wanted he must have, and whatever it was I gave him without -question, land, money, houses, until at last he asked a thing -which I could not give. He asked for Alice. - -"His son, you see, had grown up, and so had my girl, and as I was -known to be in weak health, it seemed a fine stroke to him that -his lad should step into the whole property. But there I was -firm. I would not have his cursed stock mixed with mine; not that -I had any dislike to the lad, but his blood was in him, and that -was enough. I stood firm. McCarthy threatened. I braved him to do -his worst. We were to meet at the pool midway between our houses -to talk it over. - -"When I went down there I found him talking with his son, so I -smoked a cigar and waited behind a tree until he should be alone. -But as I listened to his talk all that was black and bitter in -me seemed to come uppermost. He was urging his son to marry my -daughter with as little regard for what she might think as if she -were a slut from off the streets. It drove me mad to think that I -and all that I held most dear should be in the power of such a -man as this. Could I not snap the bond? I was already a dying and -a desperate man. Though clear of mind and fairly strong of limb, -I knew that my own fate was sealed. But my memory and my girl! -Both could be saved if I could but silence that foul tongue. I -did it, Mr. Holmes. I would do it again. Deeply as I have sinned, -I have led a life of martyrdom to atone for it. But that my girl -should be entangled in the same meshes which held me was more -than I could suffer. I struck him down with no more compunction -than if he had been some foul and venomous beast. His cry brought -back his son; but I had gained the cover of the wood, though I -was forced to go back to fetch the cloak which I had dropped in -my flight. That is the true story, gentlemen, of all that -occurred." - -"Well, it is not for me to judge you," said Holmes as the old man -signed the statement which had been drawn out. "I pray that we -may never be exposed to such a temptation." - -"I pray not, sir. And what do you intend to do?" - -"In view of your health, nothing. You are yourself aware that you -will soon have to answer for your deed at a higher court than the -Assizes. I will keep your confession, and if McCarthy is -condemned I shall be forced to use it. If not, it shall never be -seen by mortal eye; and your secret, whether you be alive or -dead, shall be safe with us." - -"Farewell, then," said the old man solemnly. "Your own deathbeds, -when they come, will be the easier for the thought of the peace -which you have given to mine." Tottering and shaking in all his -giant frame, he stumbled slowly from the room. - -"God help us!" said Holmes after a long silence. "Why does fate -play such tricks with poor, helpless worms? I never hear of such -a case as this that I do not think of Baxter's words, and say, -'There, but for the grace of God, goes Sherlock Holmes.'" - -James McCarthy was acquitted at the Assizes on the strength of a -number of objections which had been drawn out by Holmes and -submitted to the defending counsel. Old Turner lived for seven -months after our interview, but he is now dead; and there is -every prospect that the son and daughter may come to live happily -together in ignorance of the black cloud which rests upon their -past. - - - -ADVENTURE V. THE FIVE ORANGE PIPS - -When I glance over my notes and records of the Sherlock Holmes -cases between the years '82 and '90, I am faced by so many which -present strange and interesting features that it is no easy -matter to know which to choose and which to leave. Some, however, -have already gained publicity through the papers, and others have -not offered a field for those peculiar qualities which my friend -possessed in so high a degree, and which it is the object of -these papers to illustrate. Some, too, have baffled his -analytical skill, and would be, as narratives, beginnings without -an ending, while others have been but partially cleared up, and -have their explanations founded rather upon conjecture and -surmise than on that absolute logical proof which was so dear to -him. There is, however, one of these last which was so remarkable -in its details and so startling in its results that I am tempted -to give some account of it in spite of the fact that there are -points in connection with it which never have been, and probably -never will be, entirely cleared up. - -The year '87 furnished us with a long series of cases of greater -or less interest, of which I retain the records. Among my -headings under this one twelve months I find an account of the -adventure of the Paradol Chamber, of the Amateur Mendicant -Society, who held a luxurious club in the lower vault of a -furniture warehouse, of the facts connected with the loss of the -British barque "Sophy Anderson", of the singular adventures of the -Grice Patersons in the island of Uffa, and finally of the -Camberwell poisoning case. In the latter, as may be remembered, -Sherlock Holmes was able, by winding up the dead man's watch, to -prove that it had been wound up two hours before, and that -therefore the deceased had gone to bed within that time--a -deduction which was of the greatest importance in clearing up the -case. All these I may sketch out at some future date, but none of -them present such singular features as the strange train of -circumstances which I have now taken up my pen to describe. - -It was in the latter days of September, and the equinoctial gales -had set in with exceptional violence. All day the wind had -screamed and the rain had beaten against the windows, so that -even here in the heart of great, hand-made London we were forced -to raise our minds for the instant from the routine of life and -to recognise the presence of those great elemental forces which -shriek at mankind through the bars of his civilisation, like -untamed beasts in a cage. As evening drew in, the storm grew -higher and louder, and the wind cried and sobbed like a child in -the chimney. Sherlock Holmes sat moodily at one side of the -fireplace cross-indexing his records of crime, while I at the -other was deep in one of Clark Russell's fine sea-stories until -the howl of the gale from without seemed to blend with the text, -and the splash of the rain to lengthen out into the long swash of -the sea waves. My wife was on a visit to her mother's, and for a -few days I was a dweller once more in my old quarters at Baker -Street. - -"Why," said I, glancing up at my companion, "that was surely the -bell. Who could come to-night? Some friend of yours, perhaps?" - -"Except yourself I have none," he answered. "I do not encourage -visitors." - -"A client, then?" - -"If so, it is a serious case. Nothing less would bring a man out -on such a day and at such an hour. But I take it that it is more -likely to be some crony of the landlady's." - -Sherlock Holmes was wrong in his conjecture, however, for there -came a step in the passage and a tapping at the door. He -stretched out his long arm to turn the lamp away from himself and -towards the vacant chair upon which a newcomer must sit. - -"Come in!" said he. - -The man who entered was young, some two-and-twenty at the -outside, well-groomed and trimly clad, with something of -refinement and delicacy in his bearing. The streaming umbrella -which he held in his hand, and his long shining waterproof told -of the fierce weather through which he had come. He looked about -him anxiously in the glare of the lamp, and I could see that his -face was pale and his eyes heavy, like those of a man who is -weighed down with some great anxiety. - -"I owe you an apology," he said, raising his golden pince-nez to -his eyes. "I trust that I am not intruding. I fear that I have -brought some traces of the storm and rain into your snug -chamber." - -"Give me your coat and umbrella," said Holmes. "They may rest -here on the hook and will be dry presently. You have come up from -the south-west, I see." - -"Yes, from Horsham." - -"That clay and chalk mixture which I see upon your toe caps is -quite distinctive." - -"I have come for advice." - -"That is easily got." - -"And help." - -"That is not always so easy." - -"I have heard of you, Mr. Holmes. I heard from Major Prendergast -how you saved him in the Tankerville Club scandal." - -"Ah, of course. He was wrongfully accused of cheating at cards." - -"He said that you could solve anything." - -"He said too much." - -"That you are never beaten." - -"I have been beaten four times--three times by men, and once by a -woman." - -"But what is that compared with the number of your successes?" - -"It is true that I have been generally successful." - -"Then you may be so with me." - -"I beg that you will draw your chair up to the fire and favour me -with some details as to your case." - -"It is no ordinary one." - -"None of those which come to me are. I am the last court of -appeal." - -"And yet I question, sir, whether, in all your experience, you -have ever listened to a more mysterious and inexplicable chain of -events than those which have happened in my own family." - -"You fill me with interest," said Holmes. "Pray give us the -essential facts from the commencement, and I can afterwards -question you as to those details which seem to me to be most -important." - -The young man pulled his chair up and pushed his wet feet out -towards the blaze. - -"My name," said he, "is John Openshaw, but my own affairs have, -as far as I can understand, little to do with this awful -business. It is a hereditary matter; so in order to give you an -idea of the facts, I must go back to the commencement of the -affair. - -"You must know that my grandfather had two sons--my uncle Elias -and my father Joseph. My father had a small factory at Coventry, -which he enlarged at the time of the invention of bicycling. He -was a patentee of the Openshaw unbreakable tire, and his business -met with such success that he was able to sell it and to retire -upon a handsome competence. - -"My uncle Elias emigrated to America when he was a young man and -became a planter in Florida, where he was reported to have done -very well. At the time of the war he fought in Jackson's army, -and afterwards under Hood, where he rose to be a colonel. When -Lee laid down his arms my uncle returned to his plantation, where -he remained for three or four years. About 1869 or 1870 he came -back to Europe and took a small estate in Sussex, near Horsham. -He had made a very considerable fortune in the States, and his -reason for leaving them was his aversion to the negroes, and his -dislike of the Republican policy in extending the franchise to -them. He was a singular man, fierce and quick-tempered, very -foul-mouthed when he was angry, and of a most retiring -disposition. During all the years that he lived at Horsham, I -doubt if ever he set foot in the town. He had a garden and two or -three fields round his house, and there he would take his -exercise, though very often for weeks on end he would never leave -his room. He drank a great deal of brandy and smoked very -heavily, but he would see no society and did not want any -friends, not even his own brother. - -"He didn't mind me; in fact, he took a fancy to me, for at the -time when he saw me first I was a youngster of twelve or so. This -would be in the year 1878, after he had been eight or nine years -in England. He begged my father to let me live with him and he -was very kind to me in his way. When he was sober he used to be -fond of playing backgammon and draughts with me, and he would -make me his representative both with the servants and with the -tradespeople, so that by the time that I was sixteen I was quite -master of the house. I kept all the keys and could go where I -liked and do what I liked, so long as I did not disturb him in -his privacy. There was one singular exception, however, for he -had a single room, a lumber-room up among the attics, which was -invariably locked, and which he would never permit either me or -anyone else to enter. With a boy's curiosity I have peeped -through the keyhole, but I was never able to see more than such a -collection of old trunks and bundles as would be expected in such -a room. - -"One day--it was in March, 1883--a letter with a foreign stamp -lay upon the table in front of the colonel's plate. It was not a -common thing for him to receive letters, for his bills were all -paid in ready money, and he had no friends of any sort. 'From -India!' said he as he took it up, 'Pondicherry postmark! What can -this be?' Opening it hurriedly, out there jumped five little -dried orange pips, which pattered down upon his plate. I began to -laugh at this, but the laugh was struck from my lips at the sight -of his face. His lip had fallen, his eyes were protruding, his -skin the colour of putty, and he glared at the envelope which he -still held in his trembling hand, 'K. K. K.!' he shrieked, and -then, 'My God, my God, my sins have overtaken me!' - -"'What is it, uncle?' I cried. - -"'Death,' said he, and rising from the table he retired to his -room, leaving me palpitating with horror. I took up the envelope -and saw scrawled in red ink upon the inner flap, just above the -gum, the letter K three times repeated. There was nothing else -save the five dried pips. What could be the reason of his -overpowering terror? I left the breakfast-table, and as I -ascended the stair I met him coming down with an old rusty key, -which must have belonged to the attic, in one hand, and a small -brass box, like a cashbox, in the other. - -"'They may do what they like, but I'll checkmate them still,' -said he with an oath. 'Tell Mary that I shall want a fire in my -room to-day, and send down to Fordham, the Horsham lawyer.' - -"I did as he ordered, and when the lawyer arrived I was asked to -step up to the room. The fire was burning brightly, and in the -grate there was a mass of black, fluffy ashes, as of burned -paper, while the brass box stood open and empty beside it. As I -glanced at the box I noticed, with a start, that upon the lid was -printed the treble K which I had read in the morning upon the -envelope. - -"'I wish you, John,' said my uncle, 'to witness my will. I leave -my estate, with all its advantages and all its disadvantages, to -my brother, your father, whence it will, no doubt, descend to -you. If you can enjoy it in peace, well and good! If you find you -cannot, take my advice, my boy, and leave it to your deadliest -enemy. I am sorry to give you such a two-edged thing, but I can't -say what turn things are going to take. Kindly sign the paper -where Mr. Fordham shows you.' - -"I signed the paper as directed, and the lawyer took it away with -him. The singular incident made, as you may think, the deepest -impression upon me, and I pondered over it and turned it every -way in my mind without being able to make anything of it. Yet I -could not shake off the vague feeling of dread which it left -behind, though the sensation grew less keen as the weeks passed -and nothing happened to disturb the usual routine of our lives. I -could see a change in my uncle, however. He drank more than ever, -and he was less inclined for any sort of society. Most of his -time he would spend in his room, with the door locked upon the -inside, but sometimes he would emerge in a sort of drunken frenzy -and would burst out of the house and tear about the garden with a -revolver in his hand, screaming out that he was afraid of no man, -and that he was not to be cooped up, like a sheep in a pen, by -man or devil. When these hot fits were over, however, he would -rush tumultuously in at the door and lock and bar it behind him, -like a man who can brazen it out no longer against the terror -which lies at the roots of his soul. At such times I have seen -his face, even on a cold day, glisten with moisture, as though it -were new raised from a basin. - -"Well, to come to an end of the matter, Mr. Holmes, and not to -abuse your patience, there came a night when he made one of those -drunken sallies from which he never came back. We found him, when -we went to search for him, face downward in a little -green-scummed pool, which lay at the foot of the garden. There -was no sign of any violence, and the water was but two feet deep, -so that the jury, having regard to his known eccentricity, -brought in a verdict of 'suicide.' But I, who knew how he winced -from the very thought of death, had much ado to persuade myself -that he had gone out of his way to meet it. The matter passed, -however, and my father entered into possession of the estate, and -of some 14,000 pounds, which lay to his credit at the bank." - -"One moment," Holmes interposed, "your statement is, I foresee, -one of the most remarkable to which I have ever listened. Let me -have the date of the reception by your uncle of the letter, and -the date of his supposed suicide." - -"The letter arrived on March 10, 1883. His death was seven weeks -later, upon the night of May 2nd." - -"Thank you. Pray proceed." - -"When my father took over the Horsham property, he, at my -request, made a careful examination of the attic, which had been -always locked up. We found the brass box there, although its -contents had been destroyed. On the inside of the cover was a -paper label, with the initials of K. K. K. repeated upon it, and -'Letters, memoranda, receipts, and a register' written beneath. -These, we presume, indicated the nature of the papers which had -been destroyed by Colonel Openshaw. For the rest, there was -nothing of much importance in the attic save a great many -scattered papers and note-books bearing upon my uncle's life in -America. Some of them were of the war time and showed that he had -done his duty well and had borne the repute of a brave soldier. -Others were of a date during the reconstruction of the Southern -states, and were mostly concerned with politics, for he had -evidently taken a strong part in opposing the carpet-bag -politicians who had been sent down from the North. - -"Well, it was the beginning of '84 when my father came to live at -Horsham, and all went as well as possible with us until the -January of '85. On the fourth day after the new year I heard my -father give a sharp cry of surprise as we sat together at the -breakfast-table. There he was, sitting with a newly opened -envelope in one hand and five dried orange pips in the -outstretched palm of the other one. He had always laughed at what -he called my cock-and-bull story about the colonel, but he looked -very scared and puzzled now that the same thing had come upon -himself. - -"'Why, what on earth does this mean, John?' he stammered. - -"My heart had turned to lead. 'It is K. K. K.,' said I. - -"He looked inside the envelope. 'So it is,' he cried. 'Here are -the very letters. But what is this written above them?' - -"'Put the papers on the sundial,' I read, peeping over his -shoulder. - -"'What papers? What sundial?' he asked. - -"'The sundial in the garden. There is no other,' said I; 'but the -papers must be those that are destroyed.' - -"'Pooh!' said he, gripping hard at his courage. 'We are in a -civilised land here, and we can't have tomfoolery of this kind. -Where does the thing come from?' - -"'From Dundee,' I answered, glancing at the postmark. - -"'Some preposterous practical joke,' said he. 'What have I to do -with sundials and papers? I shall take no notice of such -nonsense.' - -"'I should certainly speak to the police,' I said. - -"'And be laughed at for my pains. Nothing of the sort.' - -"'Then let me do so?' - -"'No, I forbid you. I won't have a fuss made about such -nonsense.' - -"It was in vain to argue with him, for he was a very obstinate -man. I went about, however, with a heart which was full of -forebodings. - -"On the third day after the coming of the letter my father went -from home to visit an old friend of his, Major Freebody, who is -in command of one of the forts upon Portsdown Hill. I was glad -that he should go, for it seemed to me that he was farther from -danger when he was away from home. In that, however, I was in -error. Upon the second day of his absence I received a telegram -from the major, imploring me to come at once. My father had -fallen over one of the deep chalk-pits which abound in the -neighbourhood, and was lying senseless, with a shattered skull. I -hurried to him, but he passed away without having ever recovered -his consciousness. He had, as it appears, been returning from -Fareham in the twilight, and as the country was unknown to him, -and the chalk-pit unfenced, the jury had no hesitation in -bringing in a verdict of 'death from accidental causes.' -Carefully as I examined every fact connected with his death, I -was unable to find anything which could suggest the idea of -murder. There were no signs of violence, no footmarks, no -robbery, no record of strangers having been seen upon the roads. -And yet I need not tell you that my mind was far from at ease, -and that I was well-nigh certain that some foul plot had been -woven round him. - -"In this sinister way I came into my inheritance. You will ask me -why I did not dispose of it? I answer, because I was well -convinced that our troubles were in some way dependent upon an -incident in my uncle's life, and that the danger would be as -pressing in one house as in another. - -"It was in January, '85, that my poor father met his end, and two -years and eight months have elapsed since then. During that time -I have lived happily at Horsham, and I had begun to hope that -this curse had passed away from the family, and that it had ended -with the last generation. I had begun to take comfort too soon, -however; yesterday morning the blow fell in the very shape in -which it had come upon my father." - -The young man took from his waistcoat a crumpled envelope, and -turning to the table he shook out upon it five little dried -orange pips. - -"This is the envelope," he continued. "The postmark is -London--eastern division. Within are the very words which were -upon my father's last message: 'K. K. K.'; and then 'Put the -papers on the sundial.'" - -"What have you done?" asked Holmes. - -"Nothing." - -"Nothing?" - -"To tell the truth"--he sank his face into his thin, white -hands--"I have felt helpless. I have felt like one of those poor -rabbits when the snake is writhing towards it. I seem to be in -the grasp of some resistless, inexorable evil, which no foresight -and no precautions can guard against." - -"Tut! tut!" cried Sherlock Holmes. "You must act, man, or you are -lost. Nothing but energy can save you. This is no time for -despair." - -"I have seen the police." - -"Ah!" - -"But they listened to my story with a smile. I am convinced that -the inspector has formed the opinion that the letters are all -practical jokes, and that the deaths of my relations were really -accidents, as the jury stated, and were not to be connected with -the warnings." - -Holmes shook his clenched hands in the air. "Incredible -imbecility!" he cried. - -"They have, however, allowed me a policeman, who may remain in -the house with me." - -"Has he come with you to-night?" - -"No. His orders were to stay in the house." - -Again Holmes raved in the air. - -"Why did you come to me," he cried, "and, above all, why did you -not come at once?" - -"I did not know. It was only to-day that I spoke to Major -Prendergast about my troubles and was advised by him to come to -you." - -"It is really two days since you had the letter. We should have -acted before this. You have no further evidence, I suppose, than -that which you have placed before us--no suggestive detail which -might help us?" - -"There is one thing," said John Openshaw. He rummaged in his coat -pocket, and, drawing out a piece of discoloured, blue-tinted -paper, he laid it out upon the table. "I have some remembrance," -said he, "that on the day when my uncle burned the papers I -observed that the small, unburned margins which lay amid the -ashes were of this particular colour. I found this single sheet -upon the floor of his room, and I am inclined to think that it -may be one of the papers which has, perhaps, fluttered out from -among the others, and in that way has escaped destruction. Beyond -the mention of pips, I do not see that it helps us much. I think -myself that it is a page from some private diary. The writing is -undoubtedly my uncle's." - -Holmes moved the lamp, and we both bent over the sheet of paper, -which showed by its ragged edge that it had indeed been torn from -a book. It was headed, "March, 1869," and beneath were the -following enigmatical notices: - -"4th. Hudson came. Same old platform. - -"7th. Set the pips on McCauley, Paramore, and - John Swain, of St. Augustine. - -"9th. McCauley cleared. - -"10th. John Swain cleared. - -"12th. Visited Paramore. All well." - -"Thank you!" said Holmes, folding up the paper and returning it -to our visitor. "And now you must on no account lose another -instant. We cannot spare time even to discuss what you have told -me. You must get home instantly and act." - -"What shall I do?" - -"There is but one thing to do. It must be done at once. You must -put this piece of paper which you have shown us into the brass -box which you have described. You must also put in a note to say -that all the other papers were burned by your uncle, and that -this is the only one which remains. You must assert that in such -words as will carry conviction with them. Having done this, you -must at once put the box out upon the sundial, as directed. Do -you understand?" - -"Entirely." - -"Do not think of revenge, or anything of the sort, at present. I -think that we may gain that by means of the law; but we have our -web to weave, while theirs is already woven. The first -consideration is to remove the pressing danger which threatens -you. The second is to clear up the mystery and to punish the -guilty parties." - -"I thank you," said the young man, rising and pulling on his -overcoat. "You have given me fresh life and hope. I shall -certainly do as you advise." - -"Do not lose an instant. And, above all, take care of yourself in -the meanwhile, for I do not think that there can be a doubt that -you are threatened by a very real and imminent danger. How do you -go back?" - -"By train from Waterloo." - -"It is not yet nine. The streets will be crowded, so I trust that -you may be in safety. And yet you cannot guard yourself too -closely." - -"I am armed." - -"That is well. To-morrow I shall set to work upon your case." - -"I shall see you at Horsham, then?" - -"No, your secret lies in London. It is there that I shall seek -it." - -"Then I shall call upon you in a day, or in two days, with news -as to the box and the papers. I shall take your advice in every -particular." He shook hands with us and took his leave. Outside -the wind still screamed and the rain splashed and pattered -against the windows. This strange, wild story seemed to have come -to us from amid the mad elements--blown in upon us like a sheet -of sea-weed in a gale--and now to have been reabsorbed by them -once more. - -Sherlock Holmes sat for some time in silence, with his head sunk -forward and his eyes bent upon the red glow of the fire. Then he -lit his pipe, and leaning back in his chair he watched the blue -smoke-rings as they chased each other up to the ceiling. - -"I think, Watson," he remarked at last, "that of all our cases we -have had none more fantastic than this." - -"Save, perhaps, the Sign of Four." - -"Well, yes. Save, perhaps, that. And yet this John Openshaw seems -to me to be walking amid even greater perils than did the -Sholtos." - -"But have you," I asked, "formed any definite conception as to -what these perils are?" - -"There can be no question as to their nature," he answered. - -"Then what are they? Who is this K. K. K., and why does he pursue -this unhappy family?" - -Sherlock Holmes closed his eyes and placed his elbows upon the -arms of his chair, with his finger-tips together. "The ideal -reasoner," he remarked, "would, when he had once been shown a -single fact in all its bearings, deduce from it not only all the -chain of events which led up to it but also all the results which -would follow from it. As Cuvier could correctly describe a whole -animal by the contemplation of a single bone, so the observer who -has thoroughly understood one link in a series of incidents -should be able to accurately state all the other ones, both -before and after. We have not yet grasped the results which the -reason alone can attain to. Problems may be solved in the study -which have baffled all those who have sought a solution by the -aid of their senses. To carry the art, however, to its highest -pitch, it is necessary that the reasoner should be able to -utilise all the facts which have come to his knowledge; and this -in itself implies, as you will readily see, a possession of all -knowledge, which, even in these days of free education and -encyclopaedias, is a somewhat rare accomplishment. It is not so -impossible, however, that a man should possess all knowledge -which is likely to be useful to him in his work, and this I have -endeavoured in my case to do. If I remember rightly, you on one -occasion, in the early days of our friendship, defined my limits -in a very precise fashion." - -"Yes," I answered, laughing. "It was a singular document. -Philosophy, astronomy, and politics were marked at zero, I -remember. Botany variable, geology profound as regards the -mud-stains from any region within fifty miles of town, chemistry -eccentric, anatomy unsystematic, sensational literature and crime -records unique, violin-player, boxer, swordsman, lawyer, and -self-poisoner by cocaine and tobacco. Those, I think, were the -main points of my analysis." - -Holmes grinned at the last item. "Well," he said, "I say now, as -I said then, that a man should keep his little brain-attic -stocked with all the furniture that he is likely to use, and the -rest he can put away in the lumber-room of his library, where he -can get it if he wants it. Now, for such a case as the one which -has been submitted to us to-night, we need certainly to muster -all our resources. Kindly hand me down the letter K of the -'American Encyclopaedia' which stands upon the shelf beside you. -Thank you. Now let us consider the situation and see what may be -deduced from it. In the first place, we may start with a strong -presumption that Colonel Openshaw had some very strong reason for -leaving America. Men at his time of life do not change all their -habits and exchange willingly the charming climate of Florida for -the lonely life of an English provincial town. His extreme love -of solitude in England suggests the idea that he was in fear of -someone or something, so we may assume as a working hypothesis -that it was fear of someone or something which drove him from -America. As to what it was he feared, we can only deduce that by -considering the formidable letters which were received by himself -and his successors. Did you remark the postmarks of those -letters?" - -"The first was from Pondicherry, the second from Dundee, and the -third from London." - -"From East London. What do you deduce from that?" - -"They are all seaports. That the writer was on board of a ship." - -"Excellent. We have already a clue. There can be no doubt that -the probability--the strong probability--is that the writer was -on board of a ship. And now let us consider another point. In the -case of Pondicherry, seven weeks elapsed between the threat and -its fulfilment, in Dundee it was only some three or four days. -Does that suggest anything?" - -"A greater distance to travel." - -"But the letter had also a greater distance to come." - -"Then I do not see the point." - -"There is at least a presumption that the vessel in which the man -or men are is a sailing-ship. It looks as if they always send -their singular warning or token before them when starting upon -their mission. You see how quickly the deed followed the sign -when it came from Dundee. If they had come from Pondicherry in a -steamer they would have arrived almost as soon as their letter. -But, as a matter of fact, seven weeks elapsed. I think that those -seven weeks represented the difference between the mail-boat which -brought the letter and the sailing vessel which brought the -writer." - -"It is possible." - -"More than that. It is probable. And now you see the deadly -urgency of this new case, and why I urged young Openshaw to -caution. The blow has always fallen at the end of the time which -it would take the senders to travel the distance. But this one -comes from London, and therefore we cannot count upon delay." - -"Good God!" I cried. "What can it mean, this relentless -persecution?" - -"The papers which Openshaw carried are obviously of vital -importance to the person or persons in the sailing-ship. I think -that it is quite clear that there must be more than one of them. -A single man could not have carried out two deaths in such a way -as to deceive a coroner's jury. There must have been several in -it, and they must have been men of resource and determination. -Their papers they mean to have, be the holder of them who it may. -In this way you see K. K. K. ceases to be the initials of an -individual and becomes the badge of a society." - -"But of what society?" - -"Have you never--" said Sherlock Holmes, bending forward and -sinking his voice--"have you never heard of the Ku Klux Klan?" - -"I never have." - -Holmes turned over the leaves of the book upon his knee. "Here it -is," said he presently: - -"'Ku Klux Klan. A name derived from the fanciful resemblance to -the sound produced by cocking a rifle. This terrible secret -society was formed by some ex-Confederate soldiers in the -Southern states after the Civil War, and it rapidly formed local -branches in different parts of the country, notably in Tennessee, -Louisiana, the Carolinas, Georgia, and Florida. Its power was -used for political purposes, principally for the terrorising of -the negro voters and the murdering and driving from the country -of those who were opposed to its views. Its outrages were usually -preceded by a warning sent to the marked man in some fantastic -but generally recognised shape--a sprig of oak-leaves in some -parts, melon seeds or orange pips in others. On receiving this -the victim might either openly abjure his former ways, or might -fly from the country. If he braved the matter out, death would -unfailingly come upon him, and usually in some strange and -unforeseen manner. So perfect was the organisation of the -society, and so systematic its methods, that there is hardly a -case upon record where any man succeeded in braving it with -impunity, or in which any of its outrages were traced home to the -perpetrators. For some years the organisation flourished in spite -of the efforts of the United States government and of the better -classes of the community in the South. Eventually, in the year -1869, the movement rather suddenly collapsed, although there have -been sporadic outbreaks of the same sort since that date.' - -"You will observe," said Holmes, laying down the volume, "that -the sudden breaking up of the society was coincident with the -disappearance of Openshaw from America with their papers. It may -well have been cause and effect. It is no wonder that he and his -family have some of the more implacable spirits upon their track. -You can understand that this register and diary may implicate -some of the first men in the South, and that there may be many -who will not sleep easy at night until it is recovered." - -"Then the page we have seen--" - -"Is such as we might expect. It ran, if I remember right, 'sent -the pips to A, B, and C'--that is, sent the society's warning to -them. Then there are successive entries that A and B cleared, or -left the country, and finally that C was visited, with, I fear, a -sinister result for C. Well, I think, Doctor, that we may let -some light into this dark place, and I believe that the only -chance young Openshaw has in the meantime is to do what I have -told him. There is nothing more to be said or to be done -to-night, so hand me over my violin and let us try to forget for -half an hour the miserable weather and the still more miserable -ways of our fellow-men." - - -It had cleared in the morning, and the sun was shining with a -subdued brightness through the dim veil which hangs over the -great city. Sherlock Holmes was already at breakfast when I came -down. - -"You will excuse me for not waiting for you," said he; "I have, I -foresee, a very busy day before me in looking into this case of -young Openshaw's." - -"What steps will you take?" I asked. - -"It will very much depend upon the results of my first inquiries. -I may have to go down to Horsham, after all." - -"You will not go there first?" - -"No, I shall commence with the City. Just ring the bell and the -maid will bring up your coffee." - -As I waited, I lifted the unopened newspaper from the table and -glanced my eye over it. It rested upon a heading which sent a -chill to my heart. - -"Holmes," I cried, "you are too late." - -"Ah!" said he, laying down his cup, "I feared as much. How was it -done?" He spoke calmly, but I could see that he was deeply moved. - -"My eye caught the name of Openshaw, and the heading 'Tragedy -Near Waterloo Bridge.' Here is the account: - -"Between nine and ten last night Police-Constable Cook, of the H -Division, on duty near Waterloo Bridge, heard a cry for help and -a splash in the water. The night, however, was extremely dark and -stormy, so that, in spite of the help of several passers-by, it -was quite impossible to effect a rescue. The alarm, however, was -given, and, by the aid of the water-police, the body was -eventually recovered. It proved to be that of a young gentleman -whose name, as it appears from an envelope which was found in his -pocket, was John Openshaw, and whose residence is near Horsham. -It is conjectured that he may have been hurrying down to catch -the last train from Waterloo Station, and that in his haste and -the extreme darkness he missed his path and walked over the edge -of one of the small landing-places for river steamboats. The body -exhibited no traces of violence, and there can be no doubt that -the deceased had been the victim of an unfortunate accident, -which should have the effect of calling the attention of the -authorities to the condition of the riverside landing-stages." - -We sat in silence for some minutes, Holmes more depressed and -shaken than I had ever seen him. - -"That hurts my pride, Watson," he said at last. "It is a petty -feeling, no doubt, but it hurts my pride. It becomes a personal -matter with me now, and, if God sends me health, I shall set my -hand upon this gang. That he should come to me for help, and that -I should send him away to his death--!" He sprang from his chair -and paced about the room in uncontrollable agitation, with a -flush upon his sallow cheeks and a nervous clasping and -unclasping of his long thin hands. - -"They must be cunning devils," he exclaimed at last. "How could -they have decoyed him down there? The Embankment is not on the -direct line to the station. The bridge, no doubt, was too -crowded, even on such a night, for their purpose. Well, Watson, -we shall see who will win in the long run. I am going out now!" - -"To the police?" - -"No; I shall be my own police. When I have spun the web they may -take the flies, but not before." - -All day I was engaged in my professional work, and it was late in -the evening before I returned to Baker Street. Sherlock Holmes -had not come back yet. It was nearly ten o'clock before he -entered, looking pale and worn. He walked up to the sideboard, -and tearing a piece from the loaf he devoured it voraciously, -washing it down with a long draught of water. - -"You are hungry," I remarked. - -"Starving. It had escaped my memory. I have had nothing since -breakfast." - -"Nothing?" - -"Not a bite. I had no time to think of it." - -"And how have you succeeded?" - -"Well." - -"You have a clue?" - -"I have them in the hollow of my hand. Young Openshaw shall not -long remain unavenged. Why, Watson, let us put their own devilish -trade-mark upon them. It is well thought of!" - -"What do you mean?" - -He took an orange from the cupboard, and tearing it to pieces he -squeezed out the pips upon the table. Of these he took five and -thrust them into an envelope. On the inside of the flap he wrote -"S. H. for J. O." Then he sealed it and addressed it to "Captain -James Calhoun, Barque 'Lone Star,' Savannah, Georgia." - -"That will await him when he enters port," said he, chuckling. -"It may give him a sleepless night. He will find it as sure a -precursor of his fate as Openshaw did before him." - -"And who is this Captain Calhoun?" - -"The leader of the gang. I shall have the others, but he first." - -"How did you trace it, then?" - -He took a large sheet of paper from his pocket, all covered with -dates and names. - -"I have spent the whole day," said he, "over Lloyd's registers -and files of the old papers, following the future career of every -vessel which touched at Pondicherry in January and February in -'83. There were thirty-six ships of fair tonnage which were -reported there during those months. Of these, one, the 'Lone Star,' -instantly attracted my attention, since, although it was reported -as having cleared from London, the name is that which is given to -one of the states of the Union." - -"Texas, I think." - -"I was not and am not sure which; but I knew that the ship must -have an American origin." - -"What then?" - -"I searched the Dundee records, and when I found that the barque -'Lone Star' was there in January, '85, my suspicion became a -certainty. I then inquired as to the vessels which lay at present -in the port of London." - -"Yes?" - -"The 'Lone Star' had arrived here last week. I went down to the -Albert Dock and found that she had been taken down the river by -the early tide this morning, homeward bound to Savannah. I wired -to Gravesend and learned that she had passed some time ago, and -as the wind is easterly I have no doubt that she is now past the -Goodwins and not very far from the Isle of Wight." - -"What will you do, then?" - -"Oh, I have my hand upon him. He and the two mates, are as I -learn, the only native-born Americans in the ship. The others are -Finns and Germans. I know, also, that they were all three away -from the ship last night. I had it from the stevedore who has -been loading their cargo. By the time that their sailing-ship -reaches Savannah the mail-boat will have carried this letter, and -the cable will have informed the police of Savannah that these -three gentlemen are badly wanted here upon a charge of murder." - -There is ever a flaw, however, in the best laid of human plans, -and the murderers of John Openshaw were never to receive the -orange pips which would show them that another, as cunning and as -resolute as themselves, was upon their track. Very long and very -severe were the equinoctial gales that year. We waited long for -news of the "Lone Star" of Savannah, but none ever reached us. We -did at last hear that somewhere far out in the Atlantic a -shattered stern-post of a boat was seen swinging in the trough -of a wave, with the letters "L. S." carved upon it, and that is -all which we shall ever know of the fate of the "Lone Star." - - - -ADVENTURE VI. THE MAN WITH THE TWISTED LIP - -Isa Whitney, brother of the late Elias Whitney, D.D., Principal -of the Theological College of St. George's, was much addicted to -opium. The habit grew upon him, as I understand, from some -foolish freak when he was at college; for having read De -Quincey's description of his dreams and sensations, he had -drenched his tobacco with laudanum in an attempt to produce the -same effects. He found, as so many more have done, that the -practice is easier to attain than to get rid of, and for many -years he continued to be a slave to the drug, an object of -mingled horror and pity to his friends and relatives. I can see -him now, with yellow, pasty face, drooping lids, and pin-point -pupils, all huddled in a chair, the wreck and ruin of a noble -man. - -One night--it was in June, '89--there came a ring to my bell, -about the hour when a man gives his first yawn and glances at the -clock. I sat up in my chair, and my wife laid her needle-work -down in her lap and made a little face of disappointment. - -"A patient!" said she. "You'll have to go out." - -I groaned, for I was newly come back from a weary day. - -We heard the door open, a few hurried words, and then quick steps -upon the linoleum. Our own door flew open, and a lady, clad in -some dark-coloured stuff, with a black veil, entered the room. - -"You will excuse my calling so late," she began, and then, -suddenly losing her self-control, she ran forward, threw her arms -about my wife's neck, and sobbed upon her shoulder. "Oh, I'm in -such trouble!" she cried; "I do so want a little help." - -"Why," said my wife, pulling up her veil, "it is Kate Whitney. -How you startled me, Kate! I had not an idea who you were when -you came in." - -"I didn't know what to do, so I came straight to you." That was -always the way. Folk who were in grief came to my wife like birds -to a light-house. - -"It was very sweet of you to come. Now, you must have some wine -and water, and sit here comfortably and tell us all about it. Or -should you rather that I sent James off to bed?" - -"Oh, no, no! I want the doctor's advice and help, too. It's about -Isa. He has not been home for two days. I am so frightened about -him!" - -It was not the first time that she had spoken to us of her -husband's trouble, to me as a doctor, to my wife as an old friend -and school companion. We soothed and comforted her by such words -as we could find. Did she know where her husband was? Was it -possible that we could bring him back to her? - -It seems that it was. She had the surest information that of late -he had, when the fit was on him, made use of an opium den in the -farthest east of the City. Hitherto his orgies had always been -confined to one day, and he had come back, twitching and -shattered, in the evening. But now the spell had been upon him -eight-and-forty hours, and he lay there, doubtless among the -dregs of the docks, breathing in the poison or sleeping off the -effects. There he was to be found, she was sure of it, at the Bar -of Gold, in Upper Swandam Lane. But what was she to do? How could -she, a young and timid woman, make her way into such a place and -pluck her husband out from among the ruffians who surrounded him? - -There was the case, and of course there was but one way out of -it. Might I not escort her to this place? And then, as a second -thought, why should she come at all? I was Isa Whitney's medical -adviser, and as such I had influence over him. I could manage it -better if I were alone. I promised her on my word that I would -send him home in a cab within two hours if he were indeed at the -address which she had given me. And so in ten minutes I had left -my armchair and cheery sitting-room behind me, and was speeding -eastward in a hansom on a strange errand, as it seemed to me at -the time, though the future only could show how strange it was to -be. - -But there was no great difficulty in the first stage of my -adventure. Upper Swandam Lane is a vile alley lurking behind the -high wharves which line the north side of the river to the east -of London Bridge. Between a slop-shop and a gin-shop, approached -by a steep flight of steps leading down to a black gap like the -mouth of a cave, I found the den of which I was in search. -Ordering my cab to wait, I passed down the steps, worn hollow in -the centre by the ceaseless tread of drunken feet; and by the -light of a flickering oil-lamp above the door I found the latch -and made my way into a long, low room, thick and heavy with the -brown opium smoke, and terraced with wooden berths, like the -forecastle of an emigrant ship. - -Through the gloom one could dimly catch a glimpse of bodies lying -in strange fantastic poses, bowed shoulders, bent knees, heads -thrown back, and chins pointing upward, with here and there a -dark, lack-lustre eye turned upon the newcomer. Out of the black -shadows there glimmered little red circles of light, now bright, -now faint, as the burning poison waxed or waned in the bowls of -the metal pipes. The most lay silent, but some muttered to -themselves, and others talked together in a strange, low, -monotonous voice, their conversation coming in gushes, and then -suddenly tailing off into silence, each mumbling out his own -thoughts and paying little heed to the words of his neighbour. At -the farther end was a small brazier of burning charcoal, beside -which on a three-legged wooden stool there sat a tall, thin old -man, with his jaw resting upon his two fists, and his elbows upon -his knees, staring into the fire. - -As I entered, a sallow Malay attendant had hurried up with a pipe -for me and a supply of the drug, beckoning me to an empty berth. - -"Thank you. I have not come to stay," said I. "There is a friend -of mine here, Mr. Isa Whitney, and I wish to speak with him." - -There was a movement and an exclamation from my right, and -peering through the gloom, I saw Whitney, pale, haggard, and -unkempt, staring out at me. - -"My God! It's Watson," said he. He was in a pitiable state of -reaction, with every nerve in a twitter. "I say, Watson, what -o'clock is it?" - -"Nearly eleven." - -"Of what day?" - -"Of Friday, June 19th." - -"Good heavens! I thought it was Wednesday. It is Wednesday. What -d'you want to frighten a chap for?" He sank his face onto his -arms and began to sob in a high treble key. - -"I tell you that it is Friday, man. Your wife has been waiting -this two days for you. You should be ashamed of yourself!" - -"So I am. But you've got mixed, Watson, for I have only been here -a few hours, three pipes, four pipes--I forget how many. But I'll -go home with you. I wouldn't frighten Kate--poor little Kate. -Give me your hand! Have you a cab?" - -"Yes, I have one waiting." - -"Then I shall go in it. But I must owe something. Find what I -owe, Watson. I am all off colour. I can do nothing for myself." - -I walked down the narrow passage between the double row of -sleepers, holding my breath to keep out the vile, stupefying -fumes of the drug, and looking about for the manager. As I passed -the tall man who sat by the brazier I felt a sudden pluck at my -skirt, and a low voice whispered, "Walk past me, and then look -back at me." The words fell quite distinctly upon my ear. I -glanced down. They could only have come from the old man at my -side, and yet he sat now as absorbed as ever, very thin, very -wrinkled, bent with age, an opium pipe dangling down from between -his knees, as though it had dropped in sheer lassitude from his -fingers. I took two steps forward and looked back. It took all my -self-control to prevent me from breaking out into a cry of -astonishment. He had turned his back so that none could see him -but I. His form had filled out, his wrinkles were gone, the dull -eyes had regained their fire, and there, sitting by the fire and -grinning at my surprise, was none other than Sherlock Holmes. He -made a slight motion to me to approach him, and instantly, as he -turned his face half round to the company once more, subsided -into a doddering, loose-lipped senility. - -"Holmes!" I whispered, "what on earth are you doing in this den?" - -"As low as you can," he answered; "I have excellent ears. If you -would have the great kindness to get rid of that sottish friend -of yours I should be exceedingly glad to have a little talk with -you." - -"I have a cab outside." - -"Then pray send him home in it. You may safely trust him, for he -appears to be too limp to get into any mischief. I should -recommend you also to send a note by the cabman to your wife to -say that you have thrown in your lot with me. If you will wait -outside, I shall be with you in five minutes." - -It was difficult to refuse any of Sherlock Holmes' requests, for -they were always so exceedingly definite, and put forward with -such a quiet air of mastery. I felt, however, that when Whitney -was once confined in the cab my mission was practically -accomplished; and for the rest, I could not wish anything better -than to be associated with my friend in one of those singular -adventures which were the normal condition of his existence. In a -few minutes I had written my note, paid Whitney's bill, led him -out to the cab, and seen him driven through the darkness. In a -very short time a decrepit figure had emerged from the opium den, -and I was walking down the street with Sherlock Holmes. For two -streets he shuffled along with a bent back and an uncertain foot. -Then, glancing quickly round, he straightened himself out and -burst into a hearty fit of laughter. - -"I suppose, Watson," said he, "that you imagine that I have added -opium-smoking to cocaine injections, and all the other little -weaknesses on which you have favoured me with your medical -views." - -"I was certainly surprised to find you there." - -"But not more so than I to find you." - -"I came to find a friend." - -"And I to find an enemy." - -"An enemy?" - -"Yes; one of my natural enemies, or, shall I say, my natural -prey. Briefly, Watson, I am in the midst of a very remarkable -inquiry, and I have hoped to find a clue in the incoherent -ramblings of these sots, as I have done before now. Had I been -recognised in that den my life would not have been worth an -hour's purchase; for I have used it before now for my own -purposes, and the rascally Lascar who runs it has sworn to have -vengeance upon me. There is a trap-door at the back of that -building, near the corner of Paul's Wharf, which could tell some -strange tales of what has passed through it upon the moonless -nights." - -"What! You do not mean bodies?" - -"Ay, bodies, Watson. We should be rich men if we had 1000 pounds -for every poor devil who has been done to death in that den. It -is the vilest murder-trap on the whole riverside, and I fear that -Neville St. Clair has entered it never to leave it more. But our -trap should be here." He put his two forefingers between his -teeth and whistled shrilly--a signal which was answered by a -similar whistle from the distance, followed shortly by the rattle -of wheels and the clink of horses' hoofs. - -"Now, Watson," said Holmes, as a tall dog-cart dashed up through -the gloom, throwing out two golden tunnels of yellow light from -its side lanterns. "You'll come with me, won't you?" - -"If I can be of use." - -"Oh, a trusty comrade is always of use; and a chronicler still -more so. My room at The Cedars is a double-bedded one." - -"The Cedars?" - -"Yes; that is Mr. St. Clair's house. I am staying there while I -conduct the inquiry." - -"Where is it, then?" - -"Near Lee, in Kent. We have a seven-mile drive before us." - -"But I am all in the dark." - -"Of course you are. You'll know all about it presently. Jump up -here. All right, John; we shall not need you. Here's half a -crown. Look out for me to-morrow, about eleven. Give her her -head. So long, then!" - -He flicked the horse with his whip, and we dashed away through -the endless succession of sombre and deserted streets, which -widened gradually, until we were flying across a broad -balustraded bridge, with the murky river flowing sluggishly -beneath us. Beyond lay another dull wilderness of bricks and -mortar, its silence broken only by the heavy, regular footfall of -the policeman, or the songs and shouts of some belated party of -revellers. A dull wrack was drifting slowly across the sky, and a -star or two twinkled dimly here and there through the rifts of -the clouds. Holmes drove in silence, with his head sunk upon his -breast, and the air of a man who is lost in thought, while I sat -beside him, curious to learn what this new quest might be which -seemed to tax his powers so sorely, and yet afraid to break in -upon the current of his thoughts. We had driven several miles, -and were beginning to get to the fringe of the belt of suburban -villas, when he shook himself, shrugged his shoulders, and lit up -his pipe with the air of a man who has satisfied himself that he -is acting for the best. - -"You have a grand gift of silence, Watson," said he. "It makes -you quite invaluable as a companion. 'Pon my word, it is a great -thing for me to have someone to talk to, for my own thoughts are -not over-pleasant. I was wondering what I should say to this dear -little woman to-night when she meets me at the door." - -"You forget that I know nothing about it." - -"I shall just have time to tell you the facts of the case before -we get to Lee. It seems absurdly simple, and yet, somehow I can -get nothing to go upon. There's plenty of thread, no doubt, but I -can't get the end of it into my hand. Now, I'll state the case -clearly and concisely to you, Watson, and maybe you can see a -spark where all is dark to me." - -"Proceed, then." - -"Some years ago--to be definite, in May, 1884--there came to Lee -a gentleman, Neville St. Clair by name, who appeared to have -plenty of money. He took a large villa, laid out the grounds very -nicely, and lived generally in good style. By degrees he made -friends in the neighbourhood, and in 1887 he married the daughter -of a local brewer, by whom he now has two children. He had no -occupation, but was interested in several companies and went into -town as a rule in the morning, returning by the 5:14 from Cannon -Street every night. Mr. St. Clair is now thirty-seven years of -age, is a man of temperate habits, a good husband, a very -affectionate father, and a man who is popular with all who know -him. I may add that his whole debts at the present moment, as far -as we have been able to ascertain, amount to 88 pounds 10s., while -he has 220 pounds standing to his credit in the Capital and -Counties Bank. There is no reason, therefore, to think that money -troubles have been weighing upon his mind. - -"Last Monday Mr. Neville St. Clair went into town rather earlier -than usual, remarking before he started that he had two important -commissions to perform, and that he would bring his little boy -home a box of bricks. Now, by the merest chance, his wife -received a telegram upon this same Monday, very shortly after his -departure, to the effect that a small parcel of considerable -value which she had been expecting was waiting for her at the -offices of the Aberdeen Shipping Company. Now, if you are well up -in your London, you will know that the office of the company is -in Fresno Street, which branches out of Upper Swandam Lane, where -you found me to-night. Mrs. St. Clair had her lunch, started for -the City, did some shopping, proceeded to the company's office, -got her packet, and found herself at exactly 4:35 walking through -Swandam Lane on her way back to the station. Have you followed me -so far?" - -"It is very clear." - -"If you remember, Monday was an exceedingly hot day, and Mrs. St. -Clair walked slowly, glancing about in the hope of seeing a cab, -as she did not like the neighbourhood in which she found herself. -While she was walking in this way down Swandam Lane, she suddenly -heard an ejaculation or cry, and was struck cold to see her -husband looking down at her and, as it seemed to her, beckoning -to her from a second-floor window. The window was open, and she -distinctly saw his face, which she describes as being terribly -agitated. He waved his hands frantically to her, and then -vanished from the window so suddenly that it seemed to her that -he had been plucked back by some irresistible force from behind. -One singular point which struck her quick feminine eye was that -although he wore some dark coat, such as he had started to town -in, he had on neither collar nor necktie. - -"Convinced that something was amiss with him, she rushed down the -steps--for the house was none other than the opium den in which -you found me to-night--and running through the front room she -attempted to ascend the stairs which led to the first floor. At -the foot of the stairs, however, she met this Lascar scoundrel of -whom I have spoken, who thrust her back and, aided by a Dane, who -acts as assistant there, pushed her out into the street. Filled -with the most maddening doubts and fears, she rushed down the -lane and, by rare good-fortune, met in Fresno Street a number of -constables with an inspector, all on their way to their beat. The -inspector and two men accompanied her back, and in spite of the -continued resistance of the proprietor, they made their way to -the room in which Mr. St. Clair had last been seen. There was no -sign of him there. In fact, in the whole of that floor there was -no one to be found save a crippled wretch of hideous aspect, who, -it seems, made his home there. Both he and the Lascar stoutly -swore that no one else had been in the front room during the -afternoon. So determined was their denial that the inspector was -staggered, and had almost come to believe that Mrs. St. Clair had -been deluded when, with a cry, she sprang at a small deal box -which lay upon the table and tore the lid from it. Out there fell -a cascade of children's bricks. It was the toy which he had -promised to bring home. - -"This discovery, and the evident confusion which the cripple -showed, made the inspector realise that the matter was serious. -The rooms were carefully examined, and results all pointed to an -abominable crime. The front room was plainly furnished as a -sitting-room and led into a small bedroom, which looked out upon -the back of one of the wharves. Between the wharf and the bedroom -window is a narrow strip, which is dry at low tide but is covered -at high tide with at least four and a half feet of water. The -bedroom window was a broad one and opened from below. On -examination traces of blood were to be seen upon the windowsill, -and several scattered drops were visible upon the wooden floor of -the bedroom. Thrust away behind a curtain in the front room were -all the clothes of Mr. Neville St. Clair, with the exception of -his coat. His boots, his socks, his hat, and his watch--all were -there. There were no signs of violence upon any of these -garments, and there were no other traces of Mr. Neville St. -Clair. Out of the window he must apparently have gone for no -other exit could be discovered, and the ominous bloodstains upon -the sill gave little promise that he could save himself by -swimming, for the tide was at its very highest at the moment of -the tragedy. - -"And now as to the villains who seemed to be immediately -implicated in the matter. The Lascar was known to be a man of the -vilest antecedents, but as, by Mrs. St. Clair's story, he was -known to have been at the foot of the stair within a very few -seconds of her husband's appearance at the window, he could -hardly have been more than an accessory to the crime. His defence -was one of absolute ignorance, and he protested that he had no -knowledge as to the doings of Hugh Boone, his lodger, and that he -could not account in any way for the presence of the missing -gentleman's clothes. - -"So much for the Lascar manager. Now for the sinister cripple who -lives upon the second floor of the opium den, and who was -certainly the last human being whose eyes rested upon Neville St. -Clair. His name is Hugh Boone, and his hideous face is one which -is familiar to every man who goes much to the City. He is a -professional beggar, though in order to avoid the police -regulations he pretends to a small trade in wax vestas. Some -little distance down Threadneedle Street, upon the left-hand -side, there is, as you may have remarked, a small angle in the -wall. Here it is that this creature takes his daily seat, -cross-legged with his tiny stock of matches on his lap, and as he -is a piteous spectacle a small rain of charity descends into the -greasy leather cap which lies upon the pavement beside him. I -have watched the fellow more than once before ever I thought of -making his professional acquaintance, and I have been surprised -at the harvest which he has reaped in a short time. His -appearance, you see, is so remarkable that no one can pass him -without observing him. A shock of orange hair, a pale face -disfigured by a horrible scar, which, by its contraction, has -turned up the outer edge of his upper lip, a bulldog chin, and a -pair of very penetrating dark eyes, which present a singular -contrast to the colour of his hair, all mark him out from amid -the common crowd of mendicants and so, too, does his wit, for he -is ever ready with a reply to any piece of chaff which may be -thrown at him by the passers-by. This is the man whom we now -learn to have been the lodger at the opium den, and to have been -the last man to see the gentleman of whom we are in quest." - -"But a cripple!" said I. "What could he have done single-handed -against a man in the prime of life?" - -"He is a cripple in the sense that he walks with a limp; but in -other respects he appears to be a powerful and well-nurtured man. -Surely your medical experience would tell you, Watson, that -weakness in one limb is often compensated for by exceptional -strength in the others." - -"Pray continue your narrative." - -"Mrs. St. Clair had fainted at the sight of the blood upon the -window, and she was escorted home in a cab by the police, as her -presence could be of no help to them in their investigations. -Inspector Barton, who had charge of the case, made a very careful -examination of the premises, but without finding anything which -threw any light upon the matter. One mistake had been made in not -arresting Boone instantly, as he was allowed some few minutes -during which he might have communicated with his friend the -Lascar, but this fault was soon remedied, and he was seized and -searched, without anything being found which could incriminate -him. There were, it is true, some blood-stains upon his right -shirt-sleeve, but he pointed to his ring-finger, which had been -cut near the nail, and explained that the bleeding came from -there, adding that he had been to the window not long before, and -that the stains which had been observed there came doubtless from -the same source. He denied strenuously having ever seen Mr. -Neville St. Clair and swore that the presence of the clothes in -his room was as much a mystery to him as to the police. As to -Mrs. St. Clair's assertion that she had actually seen her husband -at the window, he declared that she must have been either mad or -dreaming. He was removed, loudly protesting, to the -police-station, while the inspector remained upon the premises in -the hope that the ebbing tide might afford some fresh clue. - -"And it did, though they hardly found upon the mud-bank what they -had feared to find. It was Neville St. Clair's coat, and not -Neville St. Clair, which lay uncovered as the tide receded. And -what do you think they found in the pockets?" - -"I cannot imagine." - -"No, I don't think you would guess. Every pocket stuffed with -pennies and half-pennies--421 pennies and 270 half-pennies. It -was no wonder that it had not been swept away by the tide. But a -human body is a different matter. There is a fierce eddy between -the wharf and the house. It seemed likely enough that the -weighted coat had remained when the stripped body had been sucked -away into the river." - -"But I understand that all the other clothes were found in the -room. Would the body be dressed in a coat alone?" - -"No, sir, but the facts might be met speciously enough. Suppose -that this man Boone had thrust Neville St. Clair through the -window, there is no human eye which could have seen the deed. -What would he do then? It would of course instantly strike him -that he must get rid of the tell-tale garments. He would seize -the coat, then, and be in the act of throwing it out, when it -would occur to him that it would swim and not sink. He has little -time, for he has heard the scuffle downstairs when the wife tried -to force her way up, and perhaps he has already heard from his -Lascar confederate that the police are hurrying up the street. -There is not an instant to be lost. He rushes to some secret -hoard, where he has accumulated the fruits of his beggary, and he -stuffs all the coins upon which he can lay his hands into the -pockets to make sure of the coat's sinking. He throws it out, and -would have done the same with the other garments had not he heard -the rush of steps below, and only just had time to close the -window when the police appeared." - -"It certainly sounds feasible." - -"Well, we will take it as a working hypothesis for want of a -better. Boone, as I have told you, was arrested and taken to the -station, but it could not be shown that there had ever before -been anything against him. He had for years been known as a -professional beggar, but his life appeared to have been a very -quiet and innocent one. There the matter stands at present, and -the questions which have to be solved--what Neville St. Clair was -doing in the opium den, what happened to him when there, where is -he now, and what Hugh Boone had to do with his disappearance--are -all as far from a solution as ever. I confess that I cannot -recall any case within my experience which looked at the first -glance so simple and yet which presented such difficulties." - -While Sherlock Holmes had been detailing this singular series of -events, we had been whirling through the outskirts of the great -town until the last straggling houses had been left behind, and -we rattled along with a country hedge upon either side of us. -Just as he finished, however, we drove through two scattered -villages, where a few lights still glimmered in the windows. - -"We are on the outskirts of Lee," said my companion. "We have -touched on three English counties in our short drive, starting in -Middlesex, passing over an angle of Surrey, and ending in Kent. -See that light among the trees? That is The Cedars, and beside -that lamp sits a woman whose anxious ears have already, I have -little doubt, caught the clink of our horse's feet." - -"But why are you not conducting the case from Baker Street?" I -asked. - -"Because there are many inquiries which must be made out here. -Mrs. St. Clair has most kindly put two rooms at my disposal, and -you may rest assured that she will have nothing but a welcome for -my friend and colleague. I hate to meet her, Watson, when I have -no news of her husband. Here we are. Whoa, there, whoa!" - -We had pulled up in front of a large villa which stood within its -own grounds. A stable-boy had run out to the horse's head, and -springing down, I followed Holmes up the small, winding -gravel-drive which led to the house. As we approached, the door -flew open, and a little blonde woman stood in the opening, clad -in some sort of light mousseline de soie, with a touch of fluffy -pink chiffon at her neck and wrists. She stood with her figure -outlined against the flood of light, one hand upon the door, one -half-raised in her eagerness, her body slightly bent, her head -and face protruded, with eager eyes and parted lips, a standing -question. - -"Well?" she cried, "well?" And then, seeing that there were two -of us, she gave a cry of hope which sank into a groan as she saw -that my companion shook his head and shrugged his shoulders. - -"No good news?" - -"None." - -"No bad?" - -"No." - -"Thank God for that. But come in. You must be weary, for you have -had a long day." - -"This is my friend, Dr. Watson. He has been of most vital use to -me in several of my cases, and a lucky chance has made it -possible for me to bring him out and associate him with this -investigation." - -"I am delighted to see you," said she, pressing my hand warmly. -"You will, I am sure, forgive anything that may be wanting in our -arrangements, when you consider the blow which has come so -suddenly upon us." - -"My dear madam," said I, "I am an old campaigner, and if I were -not I can very well see that no apology is needed. If I can be of -any assistance, either to you or to my friend here, I shall be -indeed happy." - -"Now, Mr. Sherlock Holmes," said the lady as we entered a -well-lit dining-room, upon the table of which a cold supper had -been laid out, "I should very much like to ask you one or two -plain questions, to which I beg that you will give a plain -answer." - -"Certainly, madam." - -"Do not trouble about my feelings. I am not hysterical, nor given -to fainting. I simply wish to hear your real, real opinion." - -"Upon what point?" - -"In your heart of hearts, do you think that Neville is alive?" - -Sherlock Holmes seemed to be embarrassed by the question. -"Frankly, now!" she repeated, standing upon the rug and looking -keenly down at him as he leaned back in a basket-chair. - -"Frankly, then, madam, I do not." - -"You think that he is dead?" - -"I do." - -"Murdered?" - -"I don't say that. Perhaps." - -"And on what day did he meet his death?" - -"On Monday." - -"Then perhaps, Mr. Holmes, you will be good enough to explain how -it is that I have received a letter from him to-day." - -Sherlock Holmes sprang out of his chair as if he had been -galvanised. - -"What!" he roared. - -"Yes, to-day." She stood smiling, holding up a little slip of -paper in the air. - -"May I see it?" - -"Certainly." - -He snatched it from her in his eagerness, and smoothing it out -upon the table he drew over the lamp and examined it intently. I -had left my chair and was gazing at it over his shoulder. The -envelope was a very coarse one and was stamped with the Gravesend -postmark and with the date of that very day, or rather of the day -before, for it was considerably after midnight. - -"Coarse writing," murmured Holmes. "Surely this is not your -husband's writing, madam." - -"No, but the enclosure is." - -"I perceive also that whoever addressed the envelope had to go -and inquire as to the address." - -"How can you tell that?" - -"The name, you see, is in perfectly black ink, which has dried -itself. The rest is of the greyish colour, which shows that -blotting-paper has been used. If it had been written straight -off, and then blotted, none would be of a deep black shade. This -man has written the name, and there has then been a pause before -he wrote the address, which can only mean that he was not -familiar with it. It is, of course, a trifle, but there is -nothing so important as trifles. Let us now see the letter. Ha! -there has been an enclosure here!" - -"Yes, there was a ring. His signet-ring." - -"And you are sure that this is your husband's hand?" - -"One of his hands." - -"One?" - -"His hand when he wrote hurriedly. It is very unlike his usual -writing, and yet I know it well." - -"'Dearest do not be frightened. All will come well. There is a -huge error which it may take some little time to rectify. -Wait in patience.--NEVILLE.' Written in pencil upon the fly-leaf -of a book, octavo size, no water-mark. Hum! Posted to-day in -Gravesend by a man with a dirty thumb. Ha! And the flap has been -gummed, if I am not very much in error, by a person who had been -chewing tobacco. And you have no doubt that it is your husband's -hand, madam?" - -"None. Neville wrote those words." - -"And they were posted to-day at Gravesend. Well, Mrs. St. Clair, -the clouds lighten, though I should not venture to say that the -danger is over." - -"But he must be alive, Mr. Holmes." - -"Unless this is a clever forgery to put us on the wrong scent. -The ring, after all, proves nothing. It may have been taken from -him." - -"No, no; it is, it is his very own writing!" - -"Very well. It may, however, have been written on Monday and only -posted to-day." - -"That is possible." - -"If so, much may have happened between." - -"Oh, you must not discourage me, Mr. Holmes. I know that all is -well with him. There is so keen a sympathy between us that I -should know if evil came upon him. On the very day that I saw him -last he cut himself in the bedroom, and yet I in the dining-room -rushed upstairs instantly with the utmost certainty that -something had happened. Do you think that I would respond to such -a trifle and yet be ignorant of his death?" - -"I have seen too much not to know that the impression of a woman -may be more valuable than the conclusion of an analytical -reasoner. And in this letter you certainly have a very strong -piece of evidence to corroborate your view. But if your husband -is alive and able to write letters, why should he remain away -from you?" - -"I cannot imagine. It is unthinkable." - -"And on Monday he made no remarks before leaving you?" - -"No." - -"And you were surprised to see him in Swandam Lane?" - -"Very much so." - -"Was the window open?" - -"Yes." - -"Then he might have called to you?" - -"He might." - -"He only, as I understand, gave an inarticulate cry?" - -"Yes." - -"A call for help, you thought?" - -"Yes. He waved his hands." - -"But it might have been a cry of surprise. Astonishment at the -unexpected sight of you might cause him to throw up his hands?" - -"It is possible." - -"And you thought he was pulled back?" - -"He disappeared so suddenly." - -"He might have leaped back. You did not see anyone else in the -room?" - -"No, but this horrible man confessed to having been there, and -the Lascar was at the foot of the stairs." - -"Quite so. Your husband, as far as you could see, had his -ordinary clothes on?" - -"But without his collar or tie. I distinctly saw his bare -throat." - -"Had he ever spoken of Swandam Lane?" - -"Never." - -"Had he ever showed any signs of having taken opium?" - -"Never." - -"Thank you, Mrs. St. Clair. Those are the principal points about -which I wished to be absolutely clear. We shall now have a little -supper and then retire, for we may have a very busy day -to-morrow." - -A large and comfortable double-bedded room had been placed at our -disposal, and I was quickly between the sheets, for I was weary -after my night of adventure. Sherlock Holmes was a man, however, -who, when he had an unsolved problem upon his mind, would go for -days, and even for a week, without rest, turning it over, -rearranging his facts, looking at it from every point of view -until he had either fathomed it or convinced himself that his -data were insufficient. It was soon evident to me that he was now -preparing for an all-night sitting. He took off his coat and -waistcoat, put on a large blue dressing-gown, and then wandered -about the room collecting pillows from his bed and cushions from -the sofa and armchairs. With these he constructed a sort of -Eastern divan, upon which he perched himself cross-legged, with -an ounce of shag tobacco and a box of matches laid out in front -of him. In the dim light of the lamp I saw him sitting there, an -old briar pipe between his lips, his eyes fixed vacantly upon the -corner of the ceiling, the blue smoke curling up from him, -silent, motionless, with the light shining upon his strong-set -aquiline features. So he sat as I dropped off to sleep, and so he -sat when a sudden ejaculation caused me to wake up, and I found -the summer sun shining into the apartment. The pipe was still -between his lips, the smoke still curled upward, and the room was -full of a dense tobacco haze, but nothing remained of the heap of -shag which I had seen upon the previous night. - -"Awake, Watson?" he asked. - -"Yes." - -"Game for a morning drive?" - -"Certainly." - -"Then dress. No one is stirring yet, but I know where the -stable-boy sleeps, and we shall soon have the trap out." He -chuckled to himself as he spoke, his eyes twinkled, and he seemed -a different man to the sombre thinker of the previous night. - -As I dressed I glanced at my watch. It was no wonder that no one -was stirring. It was twenty-five minutes past four. I had hardly -finished when Holmes returned with the news that the boy was -putting in the horse. - -"I want to test a little theory of mine," said he, pulling on his -boots. "I think, Watson, that you are now standing in the -presence of one of the most absolute fools in Europe. I deserve -to be kicked from here to Charing Cross. But I think I have the -key of the affair now." - -"And where is it?" I asked, smiling. - -"In the bathroom," he answered. "Oh, yes, I am not joking," he -continued, seeing my look of incredulity. "I have just been -there, and I have taken it out, and I have got it in this -Gladstone bag. Come on, my boy, and we shall see whether it will -not fit the lock." - -We made our way downstairs as quietly as possible, and out into -the bright morning sunshine. In the road stood our horse and -trap, with the half-clad stable-boy waiting at the head. We both -sprang in, and away we dashed down the London Road. A few country -carts were stirring, bearing in vegetables to the metropolis, but -the lines of villas on either side were as silent and lifeless as -some city in a dream. - -"It has been in some points a singular case," said Holmes, -flicking the horse on into a gallop. "I confess that I have been -as blind as a mole, but it is better to learn wisdom late than -never to learn it at all." - -In town the earliest risers were just beginning to look sleepily -from their windows as we drove through the streets of the Surrey -side. Passing down the Waterloo Bridge Road we crossed over the -river, and dashing up Wellington Street wheeled sharply to the -right and found ourselves in Bow Street. Sherlock Holmes was well -known to the force, and the two constables at the door saluted -him. One of them held the horse's head while the other led us in. - -"Who is on duty?" asked Holmes. - -"Inspector Bradstreet, sir." - -"Ah, Bradstreet, how are you?" A tall, stout official had come -down the stone-flagged passage, in a peaked cap and frogged -jacket. "I wish to have a quiet word with you, Bradstreet." -"Certainly, Mr. Holmes. Step into my room here." It was a small, -office-like room, with a huge ledger upon the table, and a -telephone projecting from the wall. The inspector sat down at his -desk. - -"What can I do for you, Mr. Holmes?" - -"I called about that beggarman, Boone--the one who was charged -with being concerned in the disappearance of Mr. Neville St. -Clair, of Lee." - -"Yes. He was brought up and remanded for further inquiries." - -"So I heard. You have him here?" - -"In the cells." - -"Is he quiet?" - -"Oh, he gives no trouble. But he is a dirty scoundrel." - -"Dirty?" - -"Yes, it is all we can do to make him wash his hands, and his -face is as black as a tinker's. Well, when once his case has been -settled, he will have a regular prison bath; and I think, if you -saw him, you would agree with me that he needed it." - -"I should like to see him very much." - -"Would you? That is easily done. Come this way. You can leave -your bag." - -"No, I think that I'll take it." - -"Very good. Come this way, if you please." He led us down a -passage, opened a barred door, passed down a winding stair, and -brought us to a whitewashed corridor with a line of doors on each -side. - -"The third on the right is his," said the inspector. "Here it -is!" He quietly shot back a panel in the upper part of the door -and glanced through. - -"He is asleep," said he. "You can see him very well." - -We both put our eyes to the grating. The prisoner lay with his -face towards us, in a very deep sleep, breathing slowly and -heavily. He was a middle-sized man, coarsely clad as became his -calling, with a coloured shirt protruding through the rent in his -tattered coat. He was, as the inspector had said, extremely -dirty, but the grime which covered his face could not conceal its -repulsive ugliness. A broad wheal from an old scar ran right -across it from eye to chin, and by its contraction had turned up -one side of the upper lip, so that three teeth were exposed in a -perpetual snarl. A shock of very bright red hair grew low over -his eyes and forehead. - -"He's a beauty, isn't he?" said the inspector. - -"He certainly needs a wash," remarked Holmes. "I had an idea that -he might, and I took the liberty of bringing the tools with me." -He opened the Gladstone bag as he spoke, and took out, to my -astonishment, a very large bath-sponge. - -"He! he! You are a funny one," chuckled the inspector. - -"Now, if you will have the great goodness to open that door very -quietly, we will soon make him cut a much more respectable -figure." - -"Well, I don't know why not," said the inspector. "He doesn't -look a credit to the Bow Street cells, does he?" He slipped his -key into the lock, and we all very quietly entered the cell. The -sleeper half turned, and then settled down once more into a deep -slumber. Holmes stooped to the water-jug, moistened his sponge, -and then rubbed it twice vigorously across and down the -prisoner's face. - -"Let me introduce you," he shouted, "to Mr. Neville St. Clair, of -Lee, in the county of Kent." - -Never in my life have I seen such a sight. The man's face peeled -off under the sponge like the bark from a tree. Gone was the -coarse brown tint! Gone, too, was the horrid scar which had -seamed it across, and the twisted lip which had given the -repulsive sneer to the face! A twitch brought away the tangled -red hair, and there, sitting up in his bed, was a pale, -sad-faced, refined-looking man, black-haired and smooth-skinned, -rubbing his eyes and staring about him with sleepy bewilderment. -Then suddenly realising the exposure, he broke into a scream and -threw himself down with his face to the pillow. - -"Great heavens!" cried the inspector, "it is, indeed, the missing -man. I know him from the photograph." - -The prisoner turned with the reckless air of a man who abandons -himself to his destiny. "Be it so," said he. "And pray what am I -charged with?" - -"With making away with Mr. Neville St.-- Oh, come, you can't be -charged with that unless they make a case of attempted suicide of -it," said the inspector with a grin. "Well, I have been -twenty-seven years in the force, but this really takes the cake." - -"If I am Mr. Neville St. Clair, then it is obvious that no crime -has been committed, and that, therefore, I am illegally -detained." - -"No crime, but a very great error has been committed," said -Holmes. "You would have done better to have trusted your wife." - -"It was not the wife; it was the children," groaned the prisoner. -"God help me, I would not have them ashamed of their father. My -God! What an exposure! What can I do?" - -Sherlock Holmes sat down beside him on the couch and patted him -kindly on the shoulder. - -"If you leave it to a court of law to clear the matter up," said -he, "of course you can hardly avoid publicity. On the other hand, -if you convince the police authorities that there is no possible -case against you, I do not know that there is any reason that the -details should find their way into the papers. Inspector -Bradstreet would, I am sure, make notes upon anything which you -might tell us and submit it to the proper authorities. The case -would then never go into court at all." - -"God bless you!" cried the prisoner passionately. "I would have -endured imprisonment, ay, even execution, rather than have left -my miserable secret as a family blot to my children. - -"You are the first who have ever heard my story. My father was a -schoolmaster in Chesterfield, where I received an excellent -education. I travelled in my youth, took to the stage, and -finally became a reporter on an evening paper in London. One day -my editor wished to have a series of articles upon begging in the -metropolis, and I volunteered to supply them. There was the point -from which all my adventures started. It was only by trying -begging as an amateur that I could get the facts upon which to -base my articles. When an actor I had, of course, learned all the -secrets of making up, and had been famous in the green-room for -my skill. I took advantage now of my attainments. I painted my -face, and to make myself as pitiable as possible I made a good -scar and fixed one side of my lip in a twist by the aid of a -small slip of flesh-coloured plaster. Then with a red head of -hair, and an appropriate dress, I took my station in the business -part of the city, ostensibly as a match-seller but really as a -beggar. For seven hours I plied my trade, and when I returned -home in the evening I found to my surprise that I had received no -less than 26s. 4d. - -"I wrote my articles and thought little more of the matter until, -some time later, I backed a bill for a friend and had a writ -served upon me for 25 pounds. I was at my wit's end where to get -the money, but a sudden idea came to me. I begged a fortnight's -grace from the creditor, asked for a holiday from my employers, -and spent the time in begging in the City under my disguise. In -ten days I had the money and had paid the debt. - -"Well, you can imagine how hard it was to settle down to arduous -work at 2 pounds a week when I knew that I could earn as much in -a day by smearing my face with a little paint, laying my cap on -the ground, and sitting still. It was a long fight between my -pride and the money, but the dollars won at last, and I threw up -reporting and sat day after day in the corner which I had first -chosen, inspiring pity by my ghastly face and filling my pockets -with coppers. Only one man knew my secret. He was the keeper of a -low den in which I used to lodge in Swandam Lane, where I could -every morning emerge as a squalid beggar and in the evenings -transform myself into a well-dressed man about town. This fellow, -a Lascar, was well paid by me for his rooms, so that I knew that -my secret was safe in his possession. - -"Well, very soon I found that I was saving considerable sums of -money. I do not mean that any beggar in the streets of London -could earn 700 pounds a year--which is less than my average -takings--but I had exceptional advantages in my power of making -up, and also in a facility of repartee, which improved by -practice and made me quite a recognised character in the City. -All day a stream of pennies, varied by silver, poured in upon me, -and it was a very bad day in which I failed to take 2 pounds. - -"As I grew richer I grew more ambitious, took a house in the -country, and eventually married, without anyone having a -suspicion as to my real occupation. My dear wife knew that I had -business in the City. She little knew what. - -"Last Monday I had finished for the day and was dressing in my -room above the opium den when I looked out of my window and saw, -to my horror and astonishment, that my wife was standing in the -street, with her eyes fixed full upon me. I gave a cry of -surprise, threw up my arms to cover my face, and, rushing to my -confidant, the Lascar, entreated him to prevent anyone from -coming up to me. I heard her voice downstairs, but I knew that -she could not ascend. Swiftly I threw off my clothes, pulled on -those of a beggar, and put on my pigments and wig. Even a wife's -eyes could not pierce so complete a disguise. But then it -occurred to me that there might be a search in the room, and that -the clothes might betray me. I threw open the window, reopening -by my violence a small cut which I had inflicted upon myself in -the bedroom that morning. Then I seized my coat, which was -weighted by the coppers which I had just transferred to it from -the leather bag in which I carried my takings. I hurled it out of -the window, and it disappeared into the Thames. The other clothes -would have followed, but at that moment there was a rush of -constables up the stair, and a few minutes after I found, rather, -I confess, to my relief, that instead of being identified as Mr. -Neville St. Clair, I was arrested as his murderer. - -"I do not know that there is anything else for me to explain. I -was determined to preserve my disguise as long as possible, and -hence my preference for a dirty face. Knowing that my wife would -be terribly anxious, I slipped off my ring and confided it to the -Lascar at a moment when no constable was watching me, together -with a hurried scrawl, telling her that she had no cause to -fear." - -"That note only reached her yesterday," said Holmes. - -"Good God! What a week she must have spent!" - -"The police have watched this Lascar," said Inspector Bradstreet, -"and I can quite understand that he might find it difficult to -post a letter unobserved. Probably he handed it to some sailor -customer of his, who forgot all about it for some days." - -"That was it," said Holmes, nodding approvingly; "I have no doubt -of it. But have you never been prosecuted for begging?" - -"Many times; but what was a fine to me?" - -"It must stop here, however," said Bradstreet. "If the police are -to hush this thing up, there must be no more of Hugh Boone." - -"I have sworn it by the most solemn oaths which a man can take." - -"In that case I think that it is probable that no further steps -may be taken. But if you are found again, then all must come out. -I am sure, Mr. Holmes, that we are very much indebted to you for -having cleared the matter up. I wish I knew how you reach your -results." - -"I reached this one," said my friend, "by sitting upon five -pillows and consuming an ounce of shag. I think, Watson, that if -we drive to Baker Street we shall just be in time for breakfast." - - - -VII. THE ADVENTURE OF THE BLUE CARBUNCLE - -I had called upon my friend Sherlock Holmes upon the second -morning after Christmas, with the intention of wishing him the -compliments of the season. He was lounging upon the sofa in a -purple dressing-gown, a pipe-rack within his reach upon the -right, and a pile of crumpled morning papers, evidently newly -studied, near at hand. Beside the couch was a wooden chair, and -on the angle of the back hung a very seedy and disreputable -hard-felt hat, much the worse for wear, and cracked in several -places. A lens and a forceps lying upon the seat of the chair -suggested that the hat had been suspended in this manner for the -purpose of examination. - -"You are engaged," said I; "perhaps I interrupt you." - -"Not at all. I am glad to have a friend with whom I can discuss -my results. The matter is a perfectly trivial one"--he jerked his -thumb in the direction of the old hat--"but there are points in -connection with it which are not entirely devoid of interest and -even of instruction." - -I seated myself in his armchair and warmed my hands before his -crackling fire, for a sharp frost had set in, and the windows -were thick with the ice crystals. "I suppose," I remarked, "that, -homely as it looks, this thing has some deadly story linked on to -it--that it is the clue which will guide you in the solution of -some mystery and the punishment of some crime." - -"No, no. No crime," said Sherlock Holmes, laughing. "Only one of -those whimsical little incidents which will happen when you have -four million human beings all jostling each other within the -space of a few square miles. Amid the action and reaction of so -dense a swarm of humanity, every possible combination of events -may be expected to take place, and many a little problem will be -presented which may be striking and bizarre without being -criminal. We have already had experience of such." - -"So much so," I remarked, "that of the last six cases which I -have added to my notes, three have been entirely free of any -legal crime." - -"Precisely. You allude to my attempt to recover the Irene Adler -papers, to the singular case of Miss Mary Sutherland, and to the -adventure of the man with the twisted lip. Well, I have no doubt -that this small matter will fall into the same innocent category. -You know Peterson, the commissionaire?" - -"Yes." - -"It is to him that this trophy belongs." - -"It is his hat." - -"No, no, he found it. Its owner is unknown. I beg that you will -look upon it not as a battered billycock but as an intellectual -problem. And, first, as to how it came here. It arrived upon -Christmas morning, in company with a good fat goose, which is, I -have no doubt, roasting at this moment in front of Peterson's -fire. The facts are these: about four o'clock on Christmas -morning, Peterson, who, as you know, is a very honest fellow, was -returning from some small jollification and was making his way -homeward down Tottenham Court Road. In front of him he saw, in -the gaslight, a tallish man, walking with a slight stagger, and -carrying a white goose slung over his shoulder. As he reached the -corner of Goodge Street, a row broke out between this stranger -and a little knot of roughs. One of the latter knocked off the -man's hat, on which he raised his stick to defend himself and, -swinging it over his head, smashed the shop window behind him. -Peterson had rushed forward to protect the stranger from his -assailants; but the man, shocked at having broken the window, and -seeing an official-looking person in uniform rushing towards him, -dropped his goose, took to his heels, and vanished amid the -labyrinth of small streets which lie at the back of Tottenham -Court Road. The roughs had also fled at the appearance of -Peterson, so that he was left in possession of the field of -battle, and also of the spoils of victory in the shape of this -battered hat and a most unimpeachable Christmas goose." - -"Which surely he restored to their owner?" - -"My dear fellow, there lies the problem. It is true that 'For -Mrs. Henry Baker' was printed upon a small card which was tied to -the bird's left leg, and it is also true that the initials 'H. -B.' are legible upon the lining of this hat, but as there are -some thousands of Bakers, and some hundreds of Henry Bakers in -this city of ours, it is not easy to restore lost property to any -one of them." - -"What, then, did Peterson do?" - -"He brought round both hat and goose to me on Christmas morning, -knowing that even the smallest problems are of interest to me. -The goose we retained until this morning, when there were signs -that, in spite of the slight frost, it would be well that it -should be eaten without unnecessary delay. Its finder has carried -it off, therefore, to fulfil the ultimate destiny of a goose, -while I continue to retain the hat of the unknown gentleman who -lost his Christmas dinner." - -"Did he not advertise?" - -"No." - -"Then, what clue could you have as to his identity?" - -"Only as much as we can deduce." - -"From his hat?" - -"Precisely." - -"But you are joking. What can you gather from this old battered -felt?" - -"Here is my lens. You know my methods. What can you gather -yourself as to the individuality of the man who has worn this -article?" - -I took the tattered object in my hands and turned it over rather -ruefully. It was a very ordinary black hat of the usual round -shape, hard and much the worse for wear. The lining had been of -red silk, but was a good deal discoloured. There was no maker's -name; but, as Holmes had remarked, the initials "H. B." were -scrawled upon one side. It was pierced in the brim for a -hat-securer, but the elastic was missing. For the rest, it was -cracked, exceedingly dusty, and spotted in several places, -although there seemed to have been some attempt to hide the -discoloured patches by smearing them with ink. - -"I can see nothing," said I, handing it back to my friend. - -"On the contrary, Watson, you can see everything. You fail, -however, to reason from what you see. You are too timid in -drawing your inferences." - -"Then, pray tell me what it is that you can infer from this hat?" - -He picked it up and gazed at it in the peculiar introspective -fashion which was characteristic of him. "It is perhaps less -suggestive than it might have been," he remarked, "and yet there -are a few inferences which are very distinct, and a few others -which represent at least a strong balance of probability. That -the man was highly intellectual is of course obvious upon the -face of it, and also that he was fairly well-to-do within the -last three years, although he has now fallen upon evil days. He -had foresight, but has less now than formerly, pointing to a -moral retrogression, which, when taken with the decline of his -fortunes, seems to indicate some evil influence, probably drink, -at work upon him. This may account also for the obvious fact that -his wife has ceased to love him." - -"My dear Holmes!" - -"He has, however, retained some degree of self-respect," he -continued, disregarding my remonstrance. "He is a man who leads a -sedentary life, goes out little, is out of training entirely, is -middle-aged, has grizzled hair which he has had cut within the -last few days, and which he anoints with lime-cream. These are -the more patent facts which are to be deduced from his hat. Also, -by the way, that it is extremely improbable that he has gas laid -on in his house." - -"You are certainly joking, Holmes." - -"Not in the least. Is it possible that even now, when I give you -these results, you are unable to see how they are attained?" - -"I have no doubt that I am very stupid, but I must confess that I -am unable to follow you. For example, how did you deduce that -this man was intellectual?" - -For answer Holmes clapped the hat upon his head. It came right -over the forehead and settled upon the bridge of his nose. "It is -a question of cubic capacity," said he; "a man with so large a -brain must have something in it." - -"The decline of his fortunes, then?" - -"This hat is three years old. These flat brims curled at the edge -came in then. It is a hat of the very best quality. Look at the -band of ribbed silk and the excellent lining. If this man could -afford to buy so expensive a hat three years ago, and has had no -hat since, then he has assuredly gone down in the world." - -"Well, that is clear enough, certainly. But how about the -foresight and the moral retrogression?" - -Sherlock Holmes laughed. "Here is the foresight," said he putting -his finger upon the little disc and loop of the hat-securer. -"They are never sold upon hats. If this man ordered one, it is a -sign of a certain amount of foresight, since he went out of his -way to take this precaution against the wind. But since we see -that he has broken the elastic and has not troubled to replace -it, it is obvious that he has less foresight now than formerly, -which is a distinct proof of a weakening nature. On the other -hand, he has endeavoured to conceal some of these stains upon the -felt by daubing them with ink, which is a sign that he has not -entirely lost his self-respect." - -"Your reasoning is certainly plausible." - -"The further points, that he is middle-aged, that his hair is -grizzled, that it has been recently cut, and that he uses -lime-cream, are all to be gathered from a close examination of the -lower part of the lining. The lens discloses a large number of -hair-ends, clean cut by the scissors of the barber. They all -appear to be adhesive, and there is a distinct odour of -lime-cream. This dust, you will observe, is not the gritty, grey -dust of the street but the fluffy brown dust of the house, -showing that it has been hung up indoors most of the time, while -the marks of moisture upon the inside are proof positive that the -wearer perspired very freely, and could therefore, hardly be in -the best of training." - -"But his wife--you said that she had ceased to love him." - -"This hat has not been brushed for weeks. When I see you, my dear -Watson, with a week's accumulation of dust upon your hat, and -when your wife allows you to go out in such a state, I shall fear -that you also have been unfortunate enough to lose your wife's -affection." - -"But he might be a bachelor." - -"Nay, he was bringing home the goose as a peace-offering to his -wife. Remember the card upon the bird's leg." - -"You have an answer to everything. But how on earth do you deduce -that the gas is not laid on in his house?" - -"One tallow stain, or even two, might come by chance; but when I -see no less than five, I think that there can be little doubt -that the individual must be brought into frequent contact with -burning tallow--walks upstairs at night probably with his hat in -one hand and a guttering candle in the other. Anyhow, he never -got tallow-stains from a gas-jet. Are you satisfied?" - -"Well, it is very ingenious," said I, laughing; "but since, as -you said just now, there has been no crime committed, and no harm -done save the loss of a goose, all this seems to be rather a -waste of energy." - -Sherlock Holmes had opened his mouth to reply, when the door flew -open, and Peterson, the commissionaire, rushed into the apartment -with flushed cheeks and the face of a man who is dazed with -astonishment. - -"The goose, Mr. Holmes! The goose, sir!" he gasped. - -"Eh? What of it, then? Has it returned to life and flapped off -through the kitchen window?" Holmes twisted himself round upon -the sofa to get a fairer view of the man's excited face. - -"See here, sir! See what my wife found in its crop!" He held out -his hand and displayed upon the centre of the palm a brilliantly -scintillating blue stone, rather smaller than a bean in size, but -of such purity and radiance that it twinkled like an electric -point in the dark hollow of his hand. - -Sherlock Holmes sat up with a whistle. "By Jove, Peterson!" said -he, "this is treasure trove indeed. I suppose you know what you -have got?" - -"A diamond, sir? A precious stone. It cuts into glass as though -it were putty." - -"It's more than a precious stone. It is the precious stone." - -"Not the Countess of Morcar's blue carbuncle!" I ejaculated. - -"Precisely so. I ought to know its size and shape, seeing that I -have read the advertisement about it in The Times every day -lately. It is absolutely unique, and its value can only be -conjectured, but the reward offered of 1000 pounds is certainly -not within a twentieth part of the market price." - -"A thousand pounds! Great Lord of mercy!" The commissionaire -plumped down into a chair and stared from one to the other of us. - -"That is the reward, and I have reason to know that there are -sentimental considerations in the background which would induce -the Countess to part with half her fortune if she could but -recover the gem." - -"It was lost, if I remember aright, at the Hotel Cosmopolitan," I -remarked. - -"Precisely so, on December 22nd, just five days ago. John Horner, -a plumber, was accused of having abstracted it from the lady's -jewel-case. The evidence against him was so strong that the case -has been referred to the Assizes. I have some account of the -matter here, I believe." He rummaged amid his newspapers, -glancing over the dates, until at last he smoothed one out, -doubled it over, and read the following paragraph: - -"Hotel Cosmopolitan Jewel Robbery. John Horner, 26, plumber, was -brought up upon the charge of having upon the 22nd inst., -abstracted from the jewel-case of the Countess of Morcar the -valuable gem known as the blue carbuncle. James Ryder, -upper-attendant at the hotel, gave his evidence to the effect -that he had shown Horner up to the dressing-room of the Countess -of Morcar upon the day of the robbery in order that he might -solder the second bar of the grate, which was loose. He had -remained with Horner some little time, but had finally been -called away. On returning, he found that Horner had disappeared, -that the bureau had been forced open, and that the small morocco -casket in which, as it afterwards transpired, the Countess was -accustomed to keep her jewel, was lying empty upon the -dressing-table. Ryder instantly gave the alarm, and Horner was -arrested the same evening; but the stone could not be found -either upon his person or in his rooms. Catherine Cusack, maid to -the Countess, deposed to having heard Ryder's cry of dismay on -discovering the robbery, and to having rushed into the room, -where she found matters as described by the last witness. -Inspector Bradstreet, B division, gave evidence as to the arrest -of Horner, who struggled frantically, and protested his innocence -in the strongest terms. Evidence of a previous conviction for -robbery having been given against the prisoner, the magistrate -refused to deal summarily with the offence, but referred it to -the Assizes. Horner, who had shown signs of intense emotion -during the proceedings, fainted away at the conclusion and was -carried out of court." - -"Hum! So much for the police-court," said Holmes thoughtfully, -tossing aside the paper. "The question for us now to solve is the -sequence of events leading from a rifled jewel-case at one end to -the crop of a goose in Tottenham Court Road at the other. You -see, Watson, our little deductions have suddenly assumed a much -more important and less innocent aspect. Here is the stone; the -stone came from the goose, and the goose came from Mr. Henry -Baker, the gentleman with the bad hat and all the other -characteristics with which I have bored you. So now we must set -ourselves very seriously to finding this gentleman and -ascertaining what part he has played in this little mystery. To -do this, we must try the simplest means first, and these lie -undoubtedly in an advertisement in all the evening papers. If -this fail, I shall have recourse to other methods." - -"What will you say?" - -"Give me a pencil and that slip of paper. Now, then: 'Found at -the corner of Goodge Street, a goose and a black felt hat. Mr. -Henry Baker can have the same by applying at 6:30 this evening at -221B, Baker Street.' That is clear and concise." - -"Very. But will he see it?" - -"Well, he is sure to keep an eye on the papers, since, to a poor -man, the loss was a heavy one. He was clearly so scared by his -mischance in breaking the window and by the approach of Peterson -that he thought of nothing but flight, but since then he must -have bitterly regretted the impulse which caused him to drop his -bird. Then, again, the introduction of his name will cause him to -see it, for everyone who knows him will direct his attention to -it. Here you are, Peterson, run down to the advertising agency -and have this put in the evening papers." - -"In which, sir?" - -"Oh, in the Globe, Star, Pall Mall, St. James's, Evening News, -Standard, Echo, and any others that occur to you." - -"Very well, sir. And this stone?" - -"Ah, yes, I shall keep the stone. Thank you. And, I say, -Peterson, just buy a goose on your way back and leave it here -with me, for we must have one to give to this gentleman in place -of the one which your family is now devouring." - -When the commissionaire had gone, Holmes took up the stone and -held it against the light. "It's a bonny thing," said he. "Just -see how it glints and sparkles. Of course it is a nucleus and -focus of crime. Every good stone is. They are the devil's pet -baits. In the larger and older jewels every facet may stand for a -bloody deed. This stone is not yet twenty years old. It was found -in the banks of the Amoy River in southern China and is remarkable -in having every characteristic of the carbuncle, save that it is -blue in shade instead of ruby red. In spite of its youth, it has -already a sinister history. There have been two murders, a -vitriol-throwing, a suicide, and several robberies brought about -for the sake of this forty-grain weight of crystallised charcoal. -Who would think that so pretty a toy would be a purveyor to the -gallows and the prison? I'll lock it up in my strong box now and -drop a line to the Countess to say that we have it." - -"Do you think that this man Horner is innocent?" - -"I cannot tell." - -"Well, then, do you imagine that this other one, Henry Baker, had -anything to do with the matter?" - -"It is, I think, much more likely that Henry Baker is an -absolutely innocent man, who had no idea that the bird which he -was carrying was of considerably more value than if it were made -of solid gold. That, however, I shall determine by a very simple -test if we have an answer to our advertisement." - -"And you can do nothing until then?" - -"Nothing." - -"In that case I shall continue my professional round. But I shall -come back in the evening at the hour you have mentioned, for I -should like to see the solution of so tangled a business." - -"Very glad to see you. I dine at seven. There is a woodcock, I -believe. By the way, in view of recent occurrences, perhaps I -ought to ask Mrs. Hudson to examine its crop." - -I had been delayed at a case, and it was a little after half-past -six when I found myself in Baker Street once more. As I -approached the house I saw a tall man in a Scotch bonnet with a -coat which was buttoned up to his chin waiting outside in the -bright semicircle which was thrown from the fanlight. Just as I -arrived the door was opened, and we were shown up together to -Holmes' room. - -"Mr. Henry Baker, I believe," said he, rising from his armchair -and greeting his visitor with the easy air of geniality which he -could so readily assume. "Pray take this chair by the fire, Mr. -Baker. It is a cold night, and I observe that your circulation is -more adapted for summer than for winter. Ah, Watson, you have -just come at the right time. Is that your hat, Mr. Baker?" - -"Yes, sir, that is undoubtedly my hat." - -He was a large man with rounded shoulders, a massive head, and a -broad, intelligent face, sloping down to a pointed beard of -grizzled brown. A touch of red in nose and cheeks, with a slight -tremor of his extended hand, recalled Holmes' surmise as to his -habits. His rusty black frock-coat was buttoned right up in -front, with the collar turned up, and his lank wrists protruded -from his sleeves without a sign of cuff or shirt. He spoke in a -slow staccato fashion, choosing his words with care, and gave the -impression generally of a man of learning and letters who had had -ill-usage at the hands of fortune. - -"We have retained these things for some days," said Holmes, -"because we expected to see an advertisement from you giving your -address. I am at a loss to know now why you did not advertise." - -Our visitor gave a rather shamefaced laugh. "Shillings have not -been so plentiful with me as they once were," he remarked. "I had -no doubt that the gang of roughs who assaulted me had carried off -both my hat and the bird. I did not care to spend more money in a -hopeless attempt at recovering them." - -"Very naturally. By the way, about the bird, we were compelled to -eat it." - -"To eat it!" Our visitor half rose from his chair in his -excitement. - -"Yes, it would have been of no use to anyone had we not done so. -But I presume that this other goose upon the sideboard, which is -about the same weight and perfectly fresh, will answer your -purpose equally well?" - -"Oh, certainly, certainly," answered Mr. Baker with a sigh of -relief. - -"Of course, we still have the feathers, legs, crop, and so on of -your own bird, so if you wish--" - -The man burst into a hearty laugh. "They might be useful to me as -relics of my adventure," said he, "but beyond that I can hardly -see what use the disjecta membra of my late acquaintance are -going to be to me. No, sir, I think that, with your permission, I -will confine my attentions to the excellent bird which I perceive -upon the sideboard." - -Sherlock Holmes glanced sharply across at me with a slight shrug -of his shoulders. - -"There is your hat, then, and there your bird," said he. "By the -way, would it bore you to tell me where you got the other one -from? I am somewhat of a fowl fancier, and I have seldom seen a -better grown goose." - -"Certainly, sir," said Baker, who had risen and tucked his newly -gained property under his arm. "There are a few of us who -frequent the Alpha Inn, near the Museum--we are to be found in -the Museum itself during the day, you understand. This year our -good host, Windigate by name, instituted a goose club, by which, -on consideration of some few pence every week, we were each to -receive a bird at Christmas. My pence were duly paid, and the -rest is familiar to you. I am much indebted to you, sir, for a -Scotch bonnet is fitted neither to my years nor my gravity." With -a comical pomposity of manner he bowed solemnly to both of us and -strode off upon his way. - -"So much for Mr. Henry Baker," said Holmes when he had closed the -door behind him. "It is quite certain that he knows nothing -whatever about the matter. Are you hungry, Watson?" - -"Not particularly." - -"Then I suggest that we turn our dinner into a supper and follow -up this clue while it is still hot." - -"By all means." - -It was a bitter night, so we drew on our ulsters and wrapped -cravats about our throats. Outside, the stars were shining coldly -in a cloudless sky, and the breath of the passers-by blew out -into smoke like so many pistol shots. Our footfalls rang out -crisply and loudly as we swung through the doctors' quarter, -Wimpole Street, Harley Street, and so through Wigmore Street into -Oxford Street. In a quarter of an hour we were in Bloomsbury at -the Alpha Inn, which is a small public-house at the corner of one -of the streets which runs down into Holborn. Holmes pushed open -the door of the private bar and ordered two glasses of beer from -the ruddy-faced, white-aproned landlord. - -"Your beer should be excellent if it is as good as your geese," -said he. - -"My geese!" The man seemed surprised. - -"Yes. I was speaking only half an hour ago to Mr. Henry Baker, -who was a member of your goose club." - -"Ah! yes, I see. But you see, sir, them's not our geese." - -"Indeed! Whose, then?" - -"Well, I got the two dozen from a salesman in Covent Garden." - -"Indeed? I know some of them. Which was it?" - -"Breckinridge is his name." - -"Ah! I don't know him. Well, here's your good health landlord, -and prosperity to your house. Good-night." - -"Now for Mr. Breckinridge," he continued, buttoning up his coat -as we came out into the frosty air. "Remember, Watson that though -we have so homely a thing as a goose at one end of this chain, we -have at the other a man who will certainly get seven years' penal -servitude unless we can establish his innocence. It is possible -that our inquiry may but confirm his guilt; but, in any case, we -have a line of investigation which has been missed by the police, -and which a singular chance has placed in our hands. Let us -follow it out to the bitter end. Faces to the south, then, and -quick march!" - -We passed across Holborn, down Endell Street, and so through a -zigzag of slums to Covent Garden Market. One of the largest -stalls bore the name of Breckinridge upon it, and the proprietor -a horsey-looking man, with a sharp face and trim side-whiskers was -helping a boy to put up the shutters. - -"Good-evening. It's a cold night," said Holmes. - -The salesman nodded and shot a questioning glance at my -companion. - -"Sold out of geese, I see," continued Holmes, pointing at the -bare slabs of marble. - -"Let you have five hundred to-morrow morning." - -"That's no good." - -"Well, there are some on the stall with the gas-flare." - -"Ah, but I was recommended to you." - -"Who by?" - -"The landlord of the Alpha." - -"Oh, yes; I sent him a couple of dozen." - -"Fine birds they were, too. Now where did you get them from?" - -To my surprise the question provoked a burst of anger from the -salesman. - -"Now, then, mister," said he, with his head cocked and his arms -akimbo, "what are you driving at? Let's have it straight, now." - -"It is straight enough. I should like to know who sold you the -geese which you supplied to the Alpha." - -"Well then, I shan't tell you. So now!" - -"Oh, it is a matter of no importance; but I don't know why you -should be so warm over such a trifle." - -"Warm! You'd be as warm, maybe, if you were as pestered as I am. -When I pay good money for a good article there should be an end -of the business; but it's 'Where are the geese?' and 'Who did you -sell the geese to?' and 'What will you take for the geese?' One -would think they were the only geese in the world, to hear the -fuss that is made over them." - -"Well, I have no connection with any other people who have been -making inquiries," said Holmes carelessly. "If you won't tell us -the bet is off, that is all. But I'm always ready to back my -opinion on a matter of fowls, and I have a fiver on it that the -bird I ate is country bred." - -"Well, then, you've lost your fiver, for it's town bred," snapped -the salesman. - -"It's nothing of the kind." - -"I say it is." - -"I don't believe it." - -"D'you think you know more about fowls than I, who have handled -them ever since I was a nipper? I tell you, all those birds that -went to the Alpha were town bred." - -"You'll never persuade me to believe that." - -"Will you bet, then?" - -"It's merely taking your money, for I know that I am right. But -I'll have a sovereign on with you, just to teach you not to be -obstinate." - -The salesman chuckled grimly. "Bring me the books, Bill," said -he. - -The small boy brought round a small thin volume and a great -greasy-backed one, laying them out together beneath the hanging -lamp. - -"Now then, Mr. Cocksure," said the salesman, "I thought that I -was out of geese, but before I finish you'll find that there is -still one left in my shop. You see this little book?" - -"Well?" - -"That's the list of the folk from whom I buy. D'you see? Well, -then, here on this page are the country folk, and the numbers -after their names are where their accounts are in the big ledger. -Now, then! You see this other page in red ink? Well, that is a -list of my town suppliers. Now, look at that third name. Just -read it out to me." - -"Mrs. Oakshott, 117, Brixton Road--249," read Holmes. - -"Quite so. Now turn that up in the ledger." - -Holmes turned to the page indicated. "Here you are, 'Mrs. -Oakshott, 117, Brixton Road, egg and poultry supplier.'" - -"Now, then, what's the last entry?" - -"'December 22nd. Twenty-four geese at 7s. 6d.'" - -"Quite so. There you are. And underneath?" - -"'Sold to Mr. Windigate of the Alpha, at 12s.'" - -"What have you to say now?" - -Sherlock Holmes looked deeply chagrined. He drew a sovereign from -his pocket and threw it down upon the slab, turning away with the -air of a man whose disgust is too deep for words. A few yards off -he stopped under a lamp-post and laughed in the hearty, noiseless -fashion which was peculiar to him. - -"When you see a man with whiskers of that cut and the 'Pink 'un' -protruding out of his pocket, you can always draw him by a bet," -said he. "I daresay that if I had put 100 pounds down in front of -him, that man would not have given me such complete information -as was drawn from him by the idea that he was doing me on a -wager. Well, Watson, we are, I fancy, nearing the end of our -quest, and the only point which remains to be determined is -whether we should go on to this Mrs. Oakshott to-night, or -whether we should reserve it for to-morrow. It is clear from what -that surly fellow said that there are others besides ourselves -who are anxious about the matter, and I should--" - -His remarks were suddenly cut short by a loud hubbub which broke -out from the stall which we had just left. Turning round we saw a -little rat-faced fellow standing in the centre of the circle of -yellow light which was thrown by the swinging lamp, while -Breckinridge, the salesman, framed in the door of his stall, was -shaking his fists fiercely at the cringing figure. - -"I've had enough of you and your geese," he shouted. "I wish you -were all at the devil together. If you come pestering me any more -with your silly talk I'll set the dog at you. You bring Mrs. -Oakshott here and I'll answer her, but what have you to do with -it? Did I buy the geese off you?" - -"No; but one of them was mine all the same," whined the little -man. - -"Well, then, ask Mrs. Oakshott for it." - -"She told me to ask you." - -"Well, you can ask the King of Proosia, for all I care. I've had -enough of it. Get out of this!" He rushed fiercely forward, and -the inquirer flitted away into the darkness. - -"Ha! this may save us a visit to Brixton Road," whispered Holmes. -"Come with me, and we will see what is to be made of this -fellow." Striding through the scattered knots of people who -lounged round the flaring stalls, my companion speedily overtook -the little man and touched him upon the shoulder. He sprang -round, and I could see in the gas-light that every vestige of -colour had been driven from his face. - -"Who are you, then? What do you want?" he asked in a quavering -voice. - -"You will excuse me," said Holmes blandly, "but I could not help -overhearing the questions which you put to the salesman just now. -I think that I could be of assistance to you." - -"You? Who are you? How could you know anything of the matter?" - -"My name is Sherlock Holmes. It is my business to know what other -people don't know." - -"But you can know nothing of this?" - -"Excuse me, I know everything of it. You are endeavouring to -trace some geese which were sold by Mrs. Oakshott, of Brixton -Road, to a salesman named Breckinridge, by him in turn to Mr. -Windigate, of the Alpha, and by him to his club, of which Mr. -Henry Baker is a member." - -"Oh, sir, you are the very man whom I have longed to meet," cried -the little fellow with outstretched hands and quivering fingers. -"I can hardly explain to you how interested I am in this matter." - -Sherlock Holmes hailed a four-wheeler which was passing. "In that -case we had better discuss it in a cosy room rather than in this -wind-swept market-place," said he. "But pray tell me, before we -go farther, who it is that I have the pleasure of assisting." - -The man hesitated for an instant. "My name is John Robinson," he -answered with a sidelong glance. - -"No, no; the real name," said Holmes sweetly. "It is always -awkward doing business with an alias." - -A flush sprang to the white cheeks of the stranger. "Well then," -said he, "my real name is James Ryder." - -"Precisely so. Head attendant at the Hotel Cosmopolitan. Pray -step into the cab, and I shall soon be able to tell you -everything which you would wish to know." - -The little man stood glancing from one to the other of us with -half-frightened, half-hopeful eyes, as one who is not sure -whether he is on the verge of a windfall or of a catastrophe. -Then he stepped into the cab, and in half an hour we were back in -the sitting-room at Baker Street. Nothing had been said during -our drive, but the high, thin breathing of our new companion, and -the claspings and unclaspings of his hands, spoke of the nervous -tension within him. - -"Here we are!" said Holmes cheerily as we filed into the room. -"The fire looks very seasonable in this weather. You look cold, -Mr. Ryder. Pray take the basket-chair. I will just put on my -slippers before we settle this little matter of yours. Now, then! -You want to know what became of those geese?" - -"Yes, sir." - -"Or rather, I fancy, of that goose. It was one bird, I imagine in -which you were interested--white, with a black bar across the -tail." - -Ryder quivered with emotion. "Oh, sir," he cried, "can you tell -me where it went to?" - -"It came here." - -"Here?" - -"Yes, and a most remarkable bird it proved. I don't wonder that -you should take an interest in it. It laid an egg after it was -dead--the bonniest, brightest little blue egg that ever was seen. -I have it here in my museum." - -Our visitor staggered to his feet and clutched the mantelpiece -with his right hand. Holmes unlocked his strong-box and held up -the blue carbuncle, which shone out like a star, with a cold, -brilliant, many-pointed radiance. Ryder stood glaring with a -drawn face, uncertain whether to claim or to disown it. - -"The game's up, Ryder," said Holmes quietly. "Hold up, man, or -you'll be into the fire! Give him an arm back into his chair, -Watson. He's not got blood enough to go in for felony with -impunity. Give him a dash of brandy. So! Now he looks a little -more human. What a shrimp it is, to be sure!" - -For a moment he had staggered and nearly fallen, but the brandy -brought a tinge of colour into his cheeks, and he sat staring -with frightened eyes at his accuser. - -"I have almost every link in my hands, and all the proofs which I -could possibly need, so there is little which you need tell me. -Still, that little may as well be cleared up to make the case -complete. You had heard, Ryder, of this blue stone of the -Countess of Morcar's?" - -"It was Catherine Cusack who told me of it," said he in a -crackling voice. - -"I see--her ladyship's waiting-maid. Well, the temptation of -sudden wealth so easily acquired was too much for you, as it has -been for better men before you; but you were not very scrupulous -in the means you used. It seems to me, Ryder, that there is the -making of a very pretty villain in you. You knew that this man -Horner, the plumber, had been concerned in some such matter -before, and that suspicion would rest the more readily upon him. -What did you do, then? You made some small job in my lady's -room--you and your confederate Cusack--and you managed that he -should be the man sent for. Then, when he had left, you rifled -the jewel-case, raised the alarm, and had this unfortunate man -arrested. You then--" - -Ryder threw himself down suddenly upon the rug and clutched at my -companion's knees. "For God's sake, have mercy!" he shrieked. -"Think of my father! Of my mother! It would break their hearts. I -never went wrong before! I never will again. I swear it. I'll -swear it on a Bible. Oh, don't bring it into court! For Christ's -sake, don't!" - -"Get back into your chair!" said Holmes sternly. "It is very well -to cringe and crawl now, but you thought little enough of this -poor Horner in the dock for a crime of which he knew nothing." - -"I will fly, Mr. Holmes. I will leave the country, sir. Then the -charge against him will break down." - -"Hum! We will talk about that. And now let us hear a true account -of the next act. How came the stone into the goose, and how came -the goose into the open market? Tell us the truth, for there lies -your only hope of safety." - -Ryder passed his tongue over his parched lips. "I will tell you -it just as it happened, sir," said he. "When Horner had been -arrested, it seemed to me that it would be best for me to get -away with the stone at once, for I did not know at what moment -the police might not take it into their heads to search me and my -room. There was no place about the hotel where it would be safe. -I went out, as if on some commission, and I made for my sister's -house. She had married a man named Oakshott, and lived in Brixton -Road, where she fattened fowls for the market. All the way there -every man I met seemed to me to be a policeman or a detective; -and, for all that it was a cold night, the sweat was pouring down -my face before I came to the Brixton Road. My sister asked me -what was the matter, and why I was so pale; but I told her that I -had been upset by the jewel robbery at the hotel. Then I went -into the back yard and smoked a pipe and wondered what it would -be best to do. - -"I had a friend once called Maudsley, who went to the bad, and -has just been serving his time in Pentonville. One day he had met -me, and fell into talk about the ways of thieves, and how they -could get rid of what they stole. I knew that he would be true to -me, for I knew one or two things about him; so I made up my mind -to go right on to Kilburn, where he lived, and take him into my -confidence. He would show me how to turn the stone into money. -But how to get to him in safety? I thought of the agonies I had -gone through in coming from the hotel. I might at any moment be -seized and searched, and there would be the stone in my waistcoat -pocket. I was leaning against the wall at the time and looking at -the geese which were waddling about round my feet, and suddenly -an idea came into my head which showed me how I could beat the -best detective that ever lived. - -"My sister had told me some weeks before that I might have the -pick of her geese for a Christmas present, and I knew that she -was always as good as her word. I would take my goose now, and in -it I would carry my stone to Kilburn. There was a little shed in -the yard, and behind this I drove one of the birds--a fine big -one, white, with a barred tail. I caught it, and prying its bill -open, I thrust the stone down its throat as far as my finger -could reach. The bird gave a gulp, and I felt the stone pass -along its gullet and down into its crop. But the creature flapped -and struggled, and out came my sister to know what was the -matter. As I turned to speak to her the brute broke loose and -fluttered off among the others. - -"'Whatever were you doing with that bird, Jem?' says she. - -"'Well,' said I, 'you said you'd give me one for Christmas, and I -was feeling which was the fattest.' - -"'Oh,' says she, 'we've set yours aside for you--Jem's bird, we -call it. It's the big white one over yonder. There's twenty-six -of them, which makes one for you, and one for us, and two dozen -for the market.' - -"'Thank you, Maggie,' says I; 'but if it is all the same to you, -I'd rather have that one I was handling just now.' - -"'The other is a good three pound heavier,' said she, 'and we -fattened it expressly for you.' - -"'Never mind. I'll have the other, and I'll take it now,' said I. - -"'Oh, just as you like,' said she, a little huffed. 'Which is it -you want, then?' - -"'That white one with the barred tail, right in the middle of the -flock.' - -"'Oh, very well. Kill it and take it with you.' - -"Well, I did what she said, Mr. Holmes, and I carried the bird -all the way to Kilburn. I told my pal what I had done, for he was -a man that it was easy to tell a thing like that to. He laughed -until he choked, and we got a knife and opened the goose. My -heart turned to water, for there was no sign of the stone, and I -knew that some terrible mistake had occurred. I left the bird, -rushed back to my sister's, and hurried into the back yard. There -was not a bird to be seen there. - -"'Where are they all, Maggie?' I cried. - -"'Gone to the dealer's, Jem.' - -"'Which dealer's?' - -"'Breckinridge, of Covent Garden.' - -"'But was there another with a barred tail?' I asked, 'the same -as the one I chose?' - -"'Yes, Jem; there were two barred-tailed ones, and I could never -tell them apart.' - -"Well, then, of course I saw it all, and I ran off as hard as my -feet would carry me to this man Breckinridge; but he had sold the -lot at once, and not one word would he tell me as to where they -had gone. You heard him yourselves to-night. Well, he has always -answered me like that. My sister thinks that I am going mad. -Sometimes I think that I am myself. And now--and now I am myself -a branded thief, without ever having touched the wealth for which -I sold my character. God help me! God help me!" He burst into -convulsive sobbing, with his face buried in his hands. - -There was a long silence, broken only by his heavy breathing and -by the measured tapping of Sherlock Holmes' finger-tips upon the -edge of the table. Then my friend rose and threw open the door. - -"Get out!" said he. - -"What, sir! Oh, Heaven bless you!" - -"No more words. Get out!" - -And no more words were needed. There was a rush, a clatter upon -the stairs, the bang of a door, and the crisp rattle of running -footfalls from the street. - -"After all, Watson," said Holmes, reaching up his hand for his -clay pipe, "I am not retained by the police to supply their -deficiencies. If Horner were in danger it would be another thing; -but this fellow will not appear against him, and the case must -collapse. I suppose that I am commuting a felony, but it is just -possible that I am saving a soul. This fellow will not go wrong -again; he is too terribly frightened. Send him to gaol now, and -you make him a gaol-bird for life. Besides, it is the season of -forgiveness. Chance has put in our way a most singular and -whimsical problem, and its solution is its own reward. If you -will have the goodness to touch the bell, Doctor, we will begin -another investigation, in which, also a bird will be the chief -feature." - - - -VIII. THE ADVENTURE OF THE SPECKLED BAND - -On glancing over my notes of the seventy odd cases in which I -have during the last eight years studied the methods of my friend -Sherlock Holmes, I find many tragic, some comic, a large number -merely strange, but none commonplace; for, working as he did -rather for the love of his art than for the acquirement of -wealth, he refused to associate himself with any investigation -which did not tend towards the unusual, and even the fantastic. -Of all these varied cases, however, I cannot recall any which -presented more singular features than that which was associated -with the well-known Surrey family of the Roylotts of Stoke Moran. -The events in question occurred in the early days of my -association with Holmes, when we were sharing rooms as bachelors -in Baker Street. It is possible that I might have placed them -upon record before, but a promise of secrecy was made at the -time, from which I have only been freed during the last month by -the untimely death of the lady to whom the pledge was given. It -is perhaps as well that the facts should now come to light, for I -have reasons to know that there are widespread rumours as to the -death of Dr. Grimesby Roylott which tend to make the matter even -more terrible than the truth. - -It was early in April in the year '83 that I woke one morning to -find Sherlock Holmes standing, fully dressed, by the side of my -bed. He was a late riser, as a rule, and as the clock on the -mantelpiece showed me that it was only a quarter-past seven, I -blinked up at him in some surprise, and perhaps just a little -resentment, for I was myself regular in my habits. - -"Very sorry to knock you up, Watson," said he, "but it's the -common lot this morning. Mrs. Hudson has been knocked up, she -retorted upon me, and I on you." - -"What is it, then--a fire?" - -"No; a client. It seems that a young lady has arrived in a -considerable state of excitement, who insists upon seeing me. She -is waiting now in the sitting-room. Now, when young ladies wander -about the metropolis at this hour of the morning, and knock -sleepy people up out of their beds, I presume that it is -something very pressing which they have to communicate. Should it -prove to be an interesting case, you would, I am sure, wish to -follow it from the outset. I thought, at any rate, that I should -call you and give you the chance." - -"My dear fellow, I would not miss it for anything." - -I had no keener pleasure than in following Holmes in his -professional investigations, and in admiring the rapid -deductions, as swift as intuitions, and yet always founded on a -logical basis with which he unravelled the problems which were -submitted to him. I rapidly threw on my clothes and was ready in -a few minutes to accompany my friend down to the sitting-room. A -lady dressed in black and heavily veiled, who had been sitting in -the window, rose as we entered. - -"Good-morning, madam," said Holmes cheerily. "My name is Sherlock -Holmes. This is my intimate friend and associate, Dr. Watson, -before whom you can speak as freely as before myself. Ha! I am -glad to see that Mrs. Hudson has had the good sense to light the -fire. Pray draw up to it, and I shall order you a cup of hot -coffee, for I observe that you are shivering." - -"It is not cold which makes me shiver," said the woman in a low -voice, changing her seat as requested. - -"What, then?" - -"It is fear, Mr. Holmes. It is terror." She raised her veil as -she spoke, and we could see that she was indeed in a pitiable -state of agitation, her face all drawn and grey, with restless -frightened eyes, like those of some hunted animal. Her features -and figure were those of a woman of thirty, but her hair was shot -with premature grey, and her expression was weary and haggard. -Sherlock Holmes ran her over with one of his quick, -all-comprehensive glances. - -"You must not fear," said he soothingly, bending forward and -patting her forearm. "We shall soon set matters right, I have no -doubt. You have come in by train this morning, I see." - -"You know me, then?" - -"No, but I observe the second half of a return ticket in the palm -of your left glove. You must have started early, and yet you had -a good drive in a dog-cart, along heavy roads, before you reached -the station." - -The lady gave a violent start and stared in bewilderment at my -companion. - -"There is no mystery, my dear madam," said he, smiling. "The left -arm of your jacket is spattered with mud in no less than seven -places. The marks are perfectly fresh. There is no vehicle save a -dog-cart which throws up mud in that way, and then only when you -sit on the left-hand side of the driver." - -"Whatever your reasons may be, you are perfectly correct," said -she. "I started from home before six, reached Leatherhead at -twenty past, and came in by the first train to Waterloo. Sir, I -can stand this strain no longer; I shall go mad if it continues. -I have no one to turn to--none, save only one, who cares for me, -and he, poor fellow, can be of little aid. I have heard of you, -Mr. Holmes; I have heard of you from Mrs. Farintosh, whom you -helped in the hour of her sore need. It was from her that I had -your address. Oh, sir, do you not think that you could help me, -too, and at least throw a little light through the dense darkness -which surrounds me? At present it is out of my power to reward -you for your services, but in a month or six weeks I shall be -married, with the control of my own income, and then at least you -shall not find me ungrateful." - -Holmes turned to his desk and, unlocking it, drew out a small -case-book, which he consulted. - -"Farintosh," said he. "Ah yes, I recall the case; it was -concerned with an opal tiara. I think it was before your time, -Watson. I can only say, madam, that I shall be happy to devote -the same care to your case as I did to that of your friend. As to -reward, my profession is its own reward; but you are at liberty -to defray whatever expenses I may be put to, at the time which -suits you best. And now I beg that you will lay before us -everything that may help us in forming an opinion upon the -matter." - -"Alas!" replied our visitor, "the very horror of my situation -lies in the fact that my fears are so vague, and my suspicions -depend so entirely upon small points, which might seem trivial to -another, that even he to whom of all others I have a right to -look for help and advice looks upon all that I tell him about it -as the fancies of a nervous woman. He does not say so, but I can -read it from his soothing answers and averted eyes. But I have -heard, Mr. Holmes, that you can see deeply into the manifold -wickedness of the human heart. You may advise me how to walk amid -the dangers which encompass me." - -"I am all attention, madam." - -"My name is Helen Stoner, and I am living with my stepfather, who -is the last survivor of one of the oldest Saxon families in -England, the Roylotts of Stoke Moran, on the western border of -Surrey." - -Holmes nodded his head. "The name is familiar to me," said he. - -"The family was at one time among the richest in England, and the -estates extended over the borders into Berkshire in the north, -and Hampshire in the west. In the last century, however, four -successive heirs were of a dissolute and wasteful disposition, -and the family ruin was eventually completed by a gambler in the -days of the Regency. Nothing was left save a few acres of ground, -and the two-hundred-year-old house, which is itself crushed under -a heavy mortgage. The last squire dragged out his existence -there, living the horrible life of an aristocratic pauper; but -his only son, my stepfather, seeing that he must adapt himself to -the new conditions, obtained an advance from a relative, which -enabled him to take a medical degree and went out to Calcutta, -where, by his professional skill and his force of character, he -established a large practice. In a fit of anger, however, caused -by some robberies which had been perpetrated in the house, he -beat his native butler to death and narrowly escaped a capital -sentence. As it was, he suffered a long term of imprisonment and -afterwards returned to England a morose and disappointed man. - -"When Dr. Roylott was in India he married my mother, Mrs. Stoner, -the young widow of Major-General Stoner, of the Bengal Artillery. -My sister Julia and I were twins, and we were only two years old -at the time of my mother's re-marriage. She had a considerable -sum of money--not less than 1000 pounds a year--and this she -bequeathed to Dr. Roylott entirely while we resided with him, -with a provision that a certain annual sum should be allowed to -each of us in the event of our marriage. Shortly after our return -to England my mother died--she was killed eight years ago in a -railway accident near Crewe. Dr. Roylott then abandoned his -attempts to establish himself in practice in London and took us -to live with him in the old ancestral house at Stoke Moran. The -money which my mother had left was enough for all our wants, and -there seemed to be no obstacle to our happiness. - -"But a terrible change came over our stepfather about this time. -Instead of making friends and exchanging visits with our -neighbours, who had at first been overjoyed to see a Roylott of -Stoke Moran back in the old family seat, he shut himself up in -his house and seldom came out save to indulge in ferocious -quarrels with whoever might cross his path. Violence of temper -approaching to mania has been hereditary in the men of the -family, and in my stepfather's case it had, I believe, been -intensified by his long residence in the tropics. A series of -disgraceful brawls took place, two of which ended in the -police-court, until at last he became the terror of the village, -and the folks would fly at his approach, for he is a man of -immense strength, and absolutely uncontrollable in his anger. - -"Last week he hurled the local blacksmith over a parapet into a -stream, and it was only by paying over all the money which I -could gather together that I was able to avert another public -exposure. He had no friends at all save the wandering gipsies, -and he would give these vagabonds leave to encamp upon the few -acres of bramble-covered land which represent the family estate, -and would accept in return the hospitality of their tents, -wandering away with them sometimes for weeks on end. He has a -passion also for Indian animals, which are sent over to him by a -correspondent, and he has at this moment a cheetah and a baboon, -which wander freely over his grounds and are feared by the -villagers almost as much as their master. - -"You can imagine from what I say that my poor sister Julia and I -had no great pleasure in our lives. No servant would stay with -us, and for a long time we did all the work of the house. She was -but thirty at the time of her death, and yet her hair had already -begun to whiten, even as mine has." - -"Your sister is dead, then?" - -"She died just two years ago, and it is of her death that I wish -to speak to you. You can understand that, living the life which I -have described, we were little likely to see anyone of our own -age and position. We had, however, an aunt, my mother's maiden -sister, Miss Honoria Westphail, who lives near Harrow, and we -were occasionally allowed to pay short visits at this lady's -house. Julia went there at Christmas two years ago, and met there -a half-pay major of marines, to whom she became engaged. My -stepfather learned of the engagement when my sister returned and -offered no objection to the marriage; but within a fortnight of -the day which had been fixed for the wedding, the terrible event -occurred which has deprived me of my only companion." - -Sherlock Holmes had been leaning back in his chair with his eyes -closed and his head sunk in a cushion, but he half opened his -lids now and glanced across at his visitor. - -"Pray be precise as to details," said he. - -"It is easy for me to be so, for every event of that dreadful -time is seared into my memory. The manor-house is, as I have -already said, very old, and only one wing is now inhabited. The -bedrooms in this wing are on the ground floor, the sitting-rooms -being in the central block of the buildings. Of these bedrooms -the first is Dr. Roylott's, the second my sister's, and the third -my own. There is no communication between them, but they all open -out into the same corridor. Do I make myself plain?" - -"Perfectly so." - -"The windows of the three rooms open out upon the lawn. That -fatal night Dr. Roylott had gone to his room early, though we -knew that he had not retired to rest, for my sister was troubled -by the smell of the strong Indian cigars which it was his custom -to smoke. She left her room, therefore, and came into mine, where -she sat for some time, chatting about her approaching wedding. At -eleven o'clock she rose to leave me, but she paused at the door -and looked back. - -"'Tell me, Helen,' said she, 'have you ever heard anyone whistle -in the dead of the night?' - -"'Never,' said I. - -"'I suppose that you could not possibly whistle, yourself, in -your sleep?' - -"'Certainly not. But why?' - -"'Because during the last few nights I have always, about three -in the morning, heard a low, clear whistle. I am a light sleeper, -and it has awakened me. I cannot tell where it came from--perhaps -from the next room, perhaps from the lawn. I thought that I would -just ask you whether you had heard it.' - -"'No, I have not. It must be those wretched gipsies in the -plantation.' - -"'Very likely. And yet if it were on the lawn, I wonder that you -did not hear it also.' - -"'Ah, but I sleep more heavily than you.' - -"'Well, it is of no great consequence, at any rate.' She smiled -back at me, closed my door, and a few moments later I heard her -key turn in the lock." - -"Indeed," said Holmes. "Was it your custom always to lock -yourselves in at night?" - -"Always." - -"And why?" - -"I think that I mentioned to you that the doctor kept a cheetah -and a baboon. We had no feeling of security unless our doors were -locked." - -"Quite so. Pray proceed with your statement." - -"I could not sleep that night. A vague feeling of impending -misfortune impressed me. My sister and I, you will recollect, -were twins, and you know how subtle are the links which bind two -souls which are so closely allied. It was a wild night. The wind -was howling outside, and the rain was beating and splashing -against the windows. Suddenly, amid all the hubbub of the gale, -there burst forth the wild scream of a terrified woman. I knew -that it was my sister's voice. I sprang from my bed, wrapped a -shawl round me, and rushed into the corridor. As I opened my door -I seemed to hear a low whistle, such as my sister described, and -a few moments later a clanging sound, as if a mass of metal had -fallen. As I ran down the passage, my sister's door was unlocked, -and revolved slowly upon its hinges. I stared at it -horror-stricken, not knowing what was about to issue from it. By -the light of the corridor-lamp I saw my sister appear at the -opening, her face blanched with terror, her hands groping for -help, her whole figure swaying to and fro like that of a -drunkard. I ran to her and threw my arms round her, but at that -moment her knees seemed to give way and she fell to the ground. -She writhed as one who is in terrible pain, and her limbs were -dreadfully convulsed. At first I thought that she had not -recognised me, but as I bent over her she suddenly shrieked out -in a voice which I shall never forget, 'Oh, my God! Helen! It was -the band! The speckled band!' There was something else which she -would fain have said, and she stabbed with her finger into the -air in the direction of the doctor's room, but a fresh convulsion -seized her and choked her words. I rushed out, calling loudly for -my stepfather, and I met him hastening from his room in his -dressing-gown. When he reached my sister's side she was -unconscious, and though he poured brandy down her throat and sent -for medical aid from the village, all efforts were in vain, for -she slowly sank and died without having recovered her -consciousness. Such was the dreadful end of my beloved sister." - -"One moment," said Holmes, "are you sure about this whistle and -metallic sound? Could you swear to it?" - -"That was what the county coroner asked me at the inquiry. It is -my strong impression that I heard it, and yet, among the crash of -the gale and the creaking of an old house, I may possibly have -been deceived." - -"Was your sister dressed?" - -"No, she was in her night-dress. In her right hand was found the -charred stump of a match, and in her left a match-box." - -"Showing that she had struck a light and looked about her when -the alarm took place. That is important. And what conclusions did -the coroner come to?" - -"He investigated the case with great care, for Dr. Roylott's -conduct had long been notorious in the county, but he was unable -to find any satisfactory cause of death. My evidence showed that -the door had been fastened upon the inner side, and the windows -were blocked by old-fashioned shutters with broad iron bars, -which were secured every night. The walls were carefully sounded, -and were shown to be quite solid all round, and the flooring was -also thoroughly examined, with the same result. The chimney is -wide, but is barred up by four large staples. It is certain, -therefore, that my sister was quite alone when she met her end. -Besides, there were no marks of any violence upon her." - -"How about poison?" - -"The doctors examined her for it, but without success." - -"What do you think that this unfortunate lady died of, then?" - -"It is my belief that she died of pure fear and nervous shock, -though what it was that frightened her I cannot imagine." - -"Were there gipsies in the plantation at the time?" - -"Yes, there are nearly always some there." - -"Ah, and what did you gather from this allusion to a band--a -speckled band?" - -"Sometimes I have thought that it was merely the wild talk of -delirium, sometimes that it may have referred to some band of -people, perhaps to these very gipsies in the plantation. I do not -know whether the spotted handkerchiefs which so many of them wear -over their heads might have suggested the strange adjective which -she used." - -Holmes shook his head like a man who is far from being satisfied. - -"These are very deep waters," said he; "pray go on with your -narrative." - -"Two years have passed since then, and my life has been until -lately lonelier than ever. A month ago, however, a dear friend, -whom I have known for many years, has done me the honour to ask -my hand in marriage. His name is Armitage--Percy Armitage--the -second son of Mr. Armitage, of Crane Water, near Reading. My -stepfather has offered no opposition to the match, and we are to -be married in the course of the spring. Two days ago some repairs -were started in the west wing of the building, and my bedroom -wall has been pierced, so that I have had to move into the -chamber in which my sister died, and to sleep in the very bed in -which she slept. Imagine, then, my thrill of terror when last -night, as I lay awake, thinking over her terrible fate, I -suddenly heard in the silence of the night the low whistle which -had been the herald of her own death. I sprang up and lit the -lamp, but nothing was to be seen in the room. I was too shaken to -go to bed again, however, so I dressed, and as soon as it was -daylight I slipped down, got a dog-cart at the Crown Inn, which -is opposite, and drove to Leatherhead, from whence I have come on -this morning with the one object of seeing you and asking your -advice." - -"You have done wisely," said my friend. "But have you told me -all?" - -"Yes, all." - -"Miss Roylott, you have not. You are screening your stepfather." - -"Why, what do you mean?" - -For answer Holmes pushed back the frill of black lace which -fringed the hand that lay upon our visitor's knee. Five little -livid spots, the marks of four fingers and a thumb, were printed -upon the white wrist. - -"You have been cruelly used," said Holmes. - -The lady coloured deeply and covered over her injured wrist. "He -is a hard man," she said, "and perhaps he hardly knows his own -strength." - -There was a long silence, during which Holmes leaned his chin -upon his hands and stared into the crackling fire. - -"This is a very deep business," he said at last. "There are a -thousand details which I should desire to know before I decide -upon our course of action. Yet we have not a moment to lose. If -we were to come to Stoke Moran to-day, would it be possible for -us to see over these rooms without the knowledge of your -stepfather?" - -"As it happens, he spoke of coming into town to-day upon some -most important business. It is probable that he will be away all -day, and that there would be nothing to disturb you. We have a -housekeeper now, but she is old and foolish, and I could easily -get her out of the way." - -"Excellent. You are not averse to this trip, Watson?" - -"By no means." - -"Then we shall both come. What are you going to do yourself?" - -"I have one or two things which I would wish to do now that I am -in town. But I shall return by the twelve o'clock train, so as to -be there in time for your coming." - -"And you may expect us early in the afternoon. I have myself some -small business matters to attend to. Will you not wait and -breakfast?" - -"No, I must go. My heart is lightened already since I have -confided my trouble to you. I shall look forward to seeing you -again this afternoon." She dropped her thick black veil over her -face and glided from the room. - -"And what do you think of it all, Watson?" asked Sherlock Holmes, -leaning back in his chair. - -"It seems to me to be a most dark and sinister business." - -"Dark enough and sinister enough." - -"Yet if the lady is correct in saying that the flooring and walls -are sound, and that the door, window, and chimney are impassable, -then her sister must have been undoubtedly alone when she met her -mysterious end." - -"What becomes, then, of these nocturnal whistles, and what of the -very peculiar words of the dying woman?" - -"I cannot think." - -"When you combine the ideas of whistles at night, the presence of -a band of gipsies who are on intimate terms with this old doctor, -the fact that we have every reason to believe that the doctor has -an interest in preventing his stepdaughter's marriage, the dying -allusion to a band, and, finally, the fact that Miss Helen Stoner -heard a metallic clang, which might have been caused by one of -those metal bars that secured the shutters falling back into its -place, I think that there is good ground to think that the -mystery may be cleared along those lines." - -"But what, then, did the gipsies do?" - -"I cannot imagine." - -"I see many objections to any such theory." - -"And so do I. It is precisely for that reason that we are going -to Stoke Moran this day. I want to see whether the objections are -fatal, or if they may be explained away. But what in the name of -the devil!" - -The ejaculation had been drawn from my companion by the fact that -our door had been suddenly dashed open, and that a huge man had -framed himself in the aperture. His costume was a peculiar -mixture of the professional and of the agricultural, having a -black top-hat, a long frock-coat, and a pair of high gaiters, -with a hunting-crop swinging in his hand. So tall was he that his -hat actually brushed the cross bar of the doorway, and his -breadth seemed to span it across from side to side. A large face, -seared with a thousand wrinkles, burned yellow with the sun, and -marked with every evil passion, was turned from one to the other -of us, while his deep-set, bile-shot eyes, and his high, thin, -fleshless nose, gave him somewhat the resemblance to a fierce old -bird of prey. - -"Which of you is Holmes?" asked this apparition. - -"My name, sir; but you have the advantage of me," said my -companion quietly. - -"I am Dr. Grimesby Roylott, of Stoke Moran." - -"Indeed, Doctor," said Holmes blandly. "Pray take a seat." - -"I will do nothing of the kind. My stepdaughter has been here. I -have traced her. What has she been saying to you?" - -"It is a little cold for the time of the year," said Holmes. - -"What has she been saying to you?" screamed the old man -furiously. - -"But I have heard that the crocuses promise well," continued my -companion imperturbably. - -"Ha! You put me off, do you?" said our new visitor, taking a step -forward and shaking his hunting-crop. "I know you, you scoundrel! -I have heard of you before. You are Holmes, the meddler." - -My friend smiled. - -"Holmes, the busybody!" - -His smile broadened. - -"Holmes, the Scotland Yard Jack-in-office!" - -Holmes chuckled heartily. "Your conversation is most -entertaining," said he. "When you go out close the door, for -there is a decided draught." - -"I will go when I have said my say. Don't you dare to meddle with -my affairs. I know that Miss Stoner has been here. I traced her! -I am a dangerous man to fall foul of! See here." He stepped -swiftly forward, seized the poker, and bent it into a curve with -his huge brown hands. - -"See that you keep yourself out of my grip," he snarled, and -hurling the twisted poker into the fireplace he strode out of the -room. - -"He seems a very amiable person," said Holmes, laughing. "I am -not quite so bulky, but if he had remained I might have shown him -that my grip was not much more feeble than his own." As he spoke -he picked up the steel poker and, with a sudden effort, -straightened it out again. - -"Fancy his having the insolence to confound me with the official -detective force! This incident gives zest to our investigation, -however, and I only trust that our little friend will not suffer -from her imprudence in allowing this brute to trace her. And now, -Watson, we shall order breakfast, and afterwards I shall walk -down to Doctors' Commons, where I hope to get some data which may -help us in this matter." - - -It was nearly one o'clock when Sherlock Holmes returned from his -excursion. He held in his hand a sheet of blue paper, scrawled -over with notes and figures. - -"I have seen the will of the deceased wife," said he. "To -determine its exact meaning I have been obliged to work out the -present prices of the investments with which it is concerned. The -total income, which at the time of the wife's death was little -short of 1100 pounds, is now, through the fall in agricultural -prices, not more than 750 pounds. Each daughter can claim an -income of 250 pounds, in case of marriage. It is evident, -therefore, that if both girls had married, this beauty would have -had a mere pittance, while even one of them would cripple him to -a very serious extent. My morning's work has not been wasted, -since it has proved that he has the very strongest motives for -standing in the way of anything of the sort. And now, Watson, -this is too serious for dawdling, especially as the old man is -aware that we are interesting ourselves in his affairs; so if you -are ready, we shall call a cab and drive to Waterloo. I should be -very much obliged if you would slip your revolver into your -pocket. An Eley's No. 2 is an excellent argument with gentlemen -who can twist steel pokers into knots. That and a tooth-brush -are, I think, all that we need." - -At Waterloo we were fortunate in catching a train for -Leatherhead, where we hired a trap at the station inn and drove -for four or five miles through the lovely Surrey lanes. It was a -perfect day, with a bright sun and a few fleecy clouds in the -heavens. The trees and wayside hedges were just throwing out -their first green shoots, and the air was full of the pleasant -smell of the moist earth. To me at least there was a strange -contrast between the sweet promise of the spring and this -sinister quest upon which we were engaged. My companion sat in -the front of the trap, his arms folded, his hat pulled down over -his eyes, and his chin sunk upon his breast, buried in the -deepest thought. Suddenly, however, he started, tapped me on the -shoulder, and pointed over the meadows. - -"Look there!" said he. - -A heavily timbered park stretched up in a gentle slope, -thickening into a grove at the highest point. From amid the -branches there jutted out the grey gables and high roof-tree of a -very old mansion. - -"Stoke Moran?" said he. - -"Yes, sir, that be the house of Dr. Grimesby Roylott," remarked -the driver. - -"There is some building going on there," said Holmes; "that is -where we are going." - -"There's the village," said the driver, pointing to a cluster of -roofs some distance to the left; "but if you want to get to the -house, you'll find it shorter to get over this stile, and so by -the foot-path over the fields. There it is, where the lady is -walking." - -"And the lady, I fancy, is Miss Stoner," observed Holmes, shading -his eyes. "Yes, I think we had better do as you suggest." - -We got off, paid our fare, and the trap rattled back on its way -to Leatherhead. - -"I thought it as well," said Holmes as we climbed the stile, -"that this fellow should think we had come here as architects, or -on some definite business. It may stop his gossip. -Good-afternoon, Miss Stoner. You see that we have been as good as -our word." - -Our client of the morning had hurried forward to meet us with a -face which spoke her joy. "I have been waiting so eagerly for -you," she cried, shaking hands with us warmly. "All has turned -out splendidly. Dr. Roylott has gone to town, and it is unlikely -that he will be back before evening." - -"We have had the pleasure of making the doctor's acquaintance," -said Holmes, and in a few words he sketched out what had -occurred. Miss Stoner turned white to the lips as she listened. - -"Good heavens!" she cried, "he has followed me, then." - -"So it appears." - -"He is so cunning that I never know when I am safe from him. What -will he say when he returns?" - -"He must guard himself, for he may find that there is someone -more cunning than himself upon his track. You must lock yourself -up from him to-night. If he is violent, we shall take you away to -your aunt's at Harrow. Now, we must make the best use of our -time, so kindly take us at once to the rooms which we are to -examine." - -The building was of grey, lichen-blotched stone, with a high -central portion and two curving wings, like the claws of a crab, -thrown out on each side. In one of these wings the windows were -broken and blocked with wooden boards, while the roof was partly -caved in, a picture of ruin. The central portion was in little -better repair, but the right-hand block was comparatively modern, -and the blinds in the windows, with the blue smoke curling up -from the chimneys, showed that this was where the family resided. -Some scaffolding had been erected against the end wall, and the -stone-work had been broken into, but there were no signs of any -workmen at the moment of our visit. Holmes walked slowly up and -down the ill-trimmed lawn and examined with deep attention the -outsides of the windows. - -"This, I take it, belongs to the room in which you used to sleep, -the centre one to your sister's, and the one next to the main -building to Dr. Roylott's chamber?" - -"Exactly so. But I am now sleeping in the middle one." - -"Pending the alterations, as I understand. By the way, there does -not seem to be any very pressing need for repairs at that end -wall." - -"There were none. I believe that it was an excuse to move me from -my room." - -"Ah! that is suggestive. Now, on the other side of this narrow -wing runs the corridor from which these three rooms open. There -are windows in it, of course?" - -"Yes, but very small ones. Too narrow for anyone to pass -through." - -"As you both locked your doors at night, your rooms were -unapproachable from that side. Now, would you have the kindness -to go into your room and bar your shutters?" - -Miss Stoner did so, and Holmes, after a careful examination -through the open window, endeavoured in every way to force the -shutter open, but without success. There was no slit through -which a knife could be passed to raise the bar. Then with his -lens he tested the hinges, but they were of solid iron, built -firmly into the massive masonry. "Hum!" said he, scratching his -chin in some perplexity, "my theory certainly presents some -difficulties. No one could pass these shutters if they were -bolted. Well, we shall see if the inside throws any light upon -the matter." - -A small side door led into the whitewashed corridor from which -the three bedrooms opened. Holmes refused to examine the third -chamber, so we passed at once to the second, that in which Miss -Stoner was now sleeping, and in which her sister had met with her -fate. It was a homely little room, with a low ceiling and a -gaping fireplace, after the fashion of old country-houses. A -brown chest of drawers stood in one corner, a narrow -white-counterpaned bed in another, and a dressing-table on the -left-hand side of the window. These articles, with two small -wicker-work chairs, made up all the furniture in the room save -for a square of Wilton carpet in the centre. The boards round and -the panelling of the walls were of brown, worm-eaten oak, so old -and discoloured that it may have dated from the original building -of the house. Holmes drew one of the chairs into a corner and sat -silent, while his eyes travelled round and round and up and down, -taking in every detail of the apartment. - -"Where does that bell communicate with?" he asked at last -pointing to a thick bell-rope which hung down beside the bed, the -tassel actually lying upon the pillow. - -"It goes to the housekeeper's room." - -"It looks newer than the other things?" - -"Yes, it was only put there a couple of years ago." - -"Your sister asked for it, I suppose?" - -"No, I never heard of her using it. We used always to get what we -wanted for ourselves." - -"Indeed, it seemed unnecessary to put so nice a bell-pull there. -You will excuse me for a few minutes while I satisfy myself as to -this floor." He threw himself down upon his face with his lens in -his hand and crawled swiftly backward and forward, examining -minutely the cracks between the boards. Then he did the same with -the wood-work with which the chamber was panelled. Finally he -walked over to the bed and spent some time in staring at it and -in running his eye up and down the wall. Finally he took the -bell-rope in his hand and gave it a brisk tug. - -"Why, it's a dummy," said he. - -"Won't it ring?" - -"No, it is not even attached to a wire. This is very interesting. -You can see now that it is fastened to a hook just above where -the little opening for the ventilator is." - -"How very absurd! I never noticed that before." - -"Very strange!" muttered Holmes, pulling at the rope. "There are -one or two very singular points about this room. For example, -what a fool a builder must be to open a ventilator into another -room, when, with the same trouble, he might have communicated -with the outside air!" - -"That is also quite modern," said the lady. - -"Done about the same time as the bell-rope?" remarked Holmes. - -"Yes, there were several little changes carried out about that -time." - -"They seem to have been of a most interesting character--dummy -bell-ropes, and ventilators which do not ventilate. With your -permission, Miss Stoner, we shall now carry our researches into -the inner apartment." - -Dr. Grimesby Roylott's chamber was larger than that of his -step-daughter, but was as plainly furnished. A camp-bed, a small -wooden shelf full of books, mostly of a technical character, an -armchair beside the bed, a plain wooden chair against the wall, a -round table, and a large iron safe were the principal things -which met the eye. Holmes walked slowly round and examined each -and all of them with the keenest interest. - -"What's in here?" he asked, tapping the safe. - -"My stepfather's business papers." - -"Oh! you have seen inside, then?" - -"Only once, some years ago. I remember that it was full of -papers." - -"There isn't a cat in it, for example?" - -"No. What a strange idea!" - -"Well, look at this!" He took up a small saucer of milk which -stood on the top of it. - -"No; we don't keep a cat. But there is a cheetah and a baboon." - -"Ah, yes, of course! Well, a cheetah is just a big cat, and yet a -saucer of milk does not go very far in satisfying its wants, I -daresay. There is one point which I should wish to determine." He -squatted down in front of the wooden chair and examined the seat -of it with the greatest attention. - -"Thank you. That is quite settled," said he, rising and putting -his lens in his pocket. "Hullo! Here is something interesting!" - -The object which had caught his eye was a small dog lash hung on -one corner of the bed. The lash, however, was curled upon itself -and tied so as to make a loop of whipcord. - -"What do you make of that, Watson?" - -"It's a common enough lash. But I don't know why it should be -tied." - -"That is not quite so common, is it? Ah, me! it's a wicked world, -and when a clever man turns his brains to crime it is the worst -of all. I think that I have seen enough now, Miss Stoner, and -with your permission we shall walk out upon the lawn." - -I had never seen my friend's face so grim or his brow so dark as -it was when we turned from the scene of this investigation. We -had walked several times up and down the lawn, neither Miss -Stoner nor myself liking to break in upon his thoughts before he -roused himself from his reverie. - -"It is very essential, Miss Stoner," said he, "that you should -absolutely follow my advice in every respect." - -"I shall most certainly do so." - -"The matter is too serious for any hesitation. Your life may -depend upon your compliance." - -"I assure you that I am in your hands." - -"In the first place, both my friend and I must spend the night in -your room." - -Both Miss Stoner and I gazed at him in astonishment. - -"Yes, it must be so. Let me explain. I believe that that is the -village inn over there?" - -"Yes, that is the Crown." - -"Very good. Your windows would be visible from there?" - -"Certainly." - -"You must confine yourself to your room, on pretence of a -headache, when your stepfather comes back. Then when you hear him -retire for the night, you must open the shutters of your window, -undo the hasp, put your lamp there as a signal to us, and then -withdraw quietly with everything which you are likely to want -into the room which you used to occupy. I have no doubt that, in -spite of the repairs, you could manage there for one night." - -"Oh, yes, easily." - -"The rest you will leave in our hands." - -"But what will you do?" - -"We shall spend the night in your room, and we shall investigate -the cause of this noise which has disturbed you." - -"I believe, Mr. Holmes, that you have already made up your mind," -said Miss Stoner, laying her hand upon my companion's sleeve. - -"Perhaps I have." - -"Then, for pity's sake, tell me what was the cause of my sister's -death." - -"I should prefer to have clearer proofs before I speak." - -"You can at least tell me whether my own thought is correct, and -if she died from some sudden fright." - -"No, I do not think so. I think that there was probably some more -tangible cause. And now, Miss Stoner, we must leave you for if -Dr. Roylott returned and saw us our journey would be in vain. -Good-bye, and be brave, for if you will do what I have told you, -you may rest assured that we shall soon drive away the dangers -that threaten you." - -Sherlock Holmes and I had no difficulty in engaging a bedroom and -sitting-room at the Crown Inn. They were on the upper floor, and -from our window we could command a view of the avenue gate, and -of the inhabited wing of Stoke Moran Manor House. At dusk we saw -Dr. Grimesby Roylott drive past, his huge form looming up beside -the little figure of the lad who drove him. The boy had some -slight difficulty in undoing the heavy iron gates, and we heard -the hoarse roar of the doctor's voice and saw the fury with which -he shook his clinched fists at him. The trap drove on, and a few -minutes later we saw a sudden light spring up among the trees as -the lamp was lit in one of the sitting-rooms. - -"Do you know, Watson," said Holmes as we sat together in the -gathering darkness, "I have really some scruples as to taking you -to-night. There is a distinct element of danger." - -"Can I be of assistance?" - -"Your presence might be invaluable." - -"Then I shall certainly come." - -"It is very kind of you." - -"You speak of danger. You have evidently seen more in these rooms -than was visible to me." - -"No, but I fancy that I may have deduced a little more. I imagine -that you saw all that I did." - -"I saw nothing remarkable save the bell-rope, and what purpose -that could answer I confess is more than I can imagine." - -"You saw the ventilator, too?" - -"Yes, but I do not think that it is such a very unusual thing to -have a small opening between two rooms. It was so small that a -rat could hardly pass through." - -"I knew that we should find a ventilator before ever we came to -Stoke Moran." - -"My dear Holmes!" - -"Oh, yes, I did. You remember in her statement she said that her -sister could smell Dr. Roylott's cigar. Now, of course that -suggested at once that there must be a communication between the -two rooms. It could only be a small one, or it would have been -remarked upon at the coroner's inquiry. I deduced a ventilator." - -"But what harm can there be in that?" - -"Well, there is at least a curious coincidence of dates. A -ventilator is made, a cord is hung, and a lady who sleeps in the -bed dies. Does not that strike you?" - -"I cannot as yet see any connection." - -"Did you observe anything very peculiar about that bed?" - -"No." - -"It was clamped to the floor. Did you ever see a bed fastened -like that before?" - -"I cannot say that I have." - -"The lady could not move her bed. It must always be in the same -relative position to the ventilator and to the rope--or so we may -call it, since it was clearly never meant for a bell-pull." - -"Holmes," I cried, "I seem to see dimly what you are hinting at. -We are only just in time to prevent some subtle and horrible -crime." - -"Subtle enough and horrible enough. When a doctor does go wrong -he is the first of criminals. He has nerve and he has knowledge. -Palmer and Pritchard were among the heads of their profession. -This man strikes even deeper, but I think, Watson, that we shall -be able to strike deeper still. But we shall have horrors enough -before the night is over; for goodness' sake let us have a quiet -pipe and turn our minds for a few hours to something more -cheerful." - - -About nine o'clock the light among the trees was extinguished, -and all was dark in the direction of the Manor House. Two hours -passed slowly away, and then, suddenly, just at the stroke of -eleven, a single bright light shone out right in front of us. - -"That is our signal," said Holmes, springing to his feet; "it -comes from the middle window." - -As we passed out he exchanged a few words with the landlord, -explaining that we were going on a late visit to an acquaintance, -and that it was possible that we might spend the night there. A -moment later we were out on the dark road, a chill wind blowing -in our faces, and one yellow light twinkling in front of us -through the gloom to guide us on our sombre errand. - -There was little difficulty in entering the grounds, for -unrepaired breaches gaped in the old park wall. Making our way -among the trees, we reached the lawn, crossed it, and were about -to enter through the window when out from a clump of laurel -bushes there darted what seemed to be a hideous and distorted -child, who threw itself upon the grass with writhing limbs and -then ran swiftly across the lawn into the darkness. - -"My God!" I whispered; "did you see it?" - -Holmes was for the moment as startled as I. His hand closed like -a vice upon my wrist in his agitation. Then he broke into a low -laugh and put his lips to my ear. - -"It is a nice household," he murmured. "That is the baboon." - -I had forgotten the strange pets which the doctor affected. There -was a cheetah, too; perhaps we might find it upon our shoulders -at any moment. I confess that I felt easier in my mind when, -after following Holmes' example and slipping off my shoes, I -found myself inside the bedroom. My companion noiselessly closed -the shutters, moved the lamp onto the table, and cast his eyes -round the room. All was as we had seen it in the daytime. Then -creeping up to me and making a trumpet of his hand, he whispered -into my ear again so gently that it was all that I could do to -distinguish the words: - -"The least sound would be fatal to our plans." - -I nodded to show that I had heard. - -"We must sit without light. He would see it through the -ventilator." - -I nodded again. - -"Do not go asleep; your very life may depend upon it. Have your -pistol ready in case we should need it. I will sit on the side of -the bed, and you in that chair." - -I took out my revolver and laid it on the corner of the table. - -Holmes had brought up a long thin cane, and this he placed upon -the bed beside him. By it he laid the box of matches and the -stump of a candle. Then he turned down the lamp, and we were left -in darkness. - -How shall I ever forget that dreadful vigil? I could not hear a -sound, not even the drawing of a breath, and yet I knew that my -companion sat open-eyed, within a few feet of me, in the same -state of nervous tension in which I was myself. The shutters cut -off the least ray of light, and we waited in absolute darkness. - -From outside came the occasional cry of a night-bird, and once at -our very window a long drawn catlike whine, which told us that -the cheetah was indeed at liberty. Far away we could hear the -deep tones of the parish clock, which boomed out every quarter of -an hour. How long they seemed, those quarters! Twelve struck, and -one and two and three, and still we sat waiting silently for -whatever might befall. - -Suddenly there was the momentary gleam of a light up in the -direction of the ventilator, which vanished immediately, but was -succeeded by a strong smell of burning oil and heated metal. -Someone in the next room had lit a dark-lantern. I heard a gentle -sound of movement, and then all was silent once more, though the -smell grew stronger. For half an hour I sat with straining ears. -Then suddenly another sound became audible--a very gentle, -soothing sound, like that of a small jet of steam escaping -continually from a kettle. The instant that we heard it, Holmes -sprang from the bed, struck a match, and lashed furiously with -his cane at the bell-pull. - -"You see it, Watson?" he yelled. "You see it?" - -But I saw nothing. At the moment when Holmes struck the light I -heard a low, clear whistle, but the sudden glare flashing into my -weary eyes made it impossible for me to tell what it was at which -my friend lashed so savagely. I could, however, see that his face -was deadly pale and filled with horror and loathing. He had -ceased to strike and was gazing up at the ventilator when -suddenly there broke from the silence of the night the most -horrible cry to which I have ever listened. It swelled up louder -and louder, a hoarse yell of pain and fear and anger all mingled -in the one dreadful shriek. They say that away down in the -village, and even in the distant parsonage, that cry raised the -sleepers from their beds. It struck cold to our hearts, and I -stood gazing at Holmes, and he at me, until the last echoes of it -had died away into the silence from which it rose. - -"What can it mean?" I gasped. - -"It means that it is all over," Holmes answered. "And perhaps, -after all, it is for the best. Take your pistol, and we will -enter Dr. Roylott's room." - -With a grave face he lit the lamp and led the way down the -corridor. Twice he struck at the chamber door without any reply -from within. Then he turned the handle and entered, I at his -heels, with the cocked pistol in my hand. - -It was a singular sight which met our eyes. On the table stood a -dark-lantern with the shutter half open, throwing a brilliant -beam of light upon the iron safe, the door of which was ajar. -Beside this table, on the wooden chair, sat Dr. Grimesby Roylott -clad in a long grey dressing-gown, his bare ankles protruding -beneath, and his feet thrust into red heelless Turkish slippers. -Across his lap lay the short stock with the long lash which we -had noticed during the day. His chin was cocked upward and his -eyes were fixed in a dreadful, rigid stare at the corner of the -ceiling. Round his brow he had a peculiar yellow band, with -brownish speckles, which seemed to be bound tightly round his -head. As we entered he made neither sound nor motion. - -"The band! the speckled band!" whispered Holmes. - -I took a step forward. In an instant his strange headgear began -to move, and there reared itself from among his hair the squat -diamond-shaped head and puffed neck of a loathsome serpent. - -"It is a swamp adder!" cried Holmes; "the deadliest snake in -India. He has died within ten seconds of being bitten. Violence -does, in truth, recoil upon the violent, and the schemer falls -into the pit which he digs for another. Let us thrust this -creature back into its den, and we can then remove Miss Stoner to -some place of shelter and let the county police know what has -happened." - -As he spoke he drew the dog-whip swiftly from the dead man's lap, -and throwing the noose round the reptile's neck he drew it from -its horrid perch and, carrying it at arm's length, threw it into -the iron safe, which he closed upon it. - -Such are the true facts of the death of Dr. Grimesby Roylott, of -Stoke Moran. It is not necessary that I should prolong a -narrative which has already run to too great a length by telling -how we broke the sad news to the terrified girl, how we conveyed -her by the morning train to the care of her good aunt at Harrow, -of how the slow process of official inquiry came to the -conclusion that the doctor met his fate while indiscreetly -playing with a dangerous pet. The little which I had yet to learn -of the case was told me by Sherlock Holmes as we travelled back -next day. - -"I had," said he, "come to an entirely erroneous conclusion which -shows, my dear Watson, how dangerous it always is to reason from -insufficient data. The presence of the gipsies, and the use of -the word 'band,' which was used by the poor girl, no doubt, to -explain the appearance which she had caught a hurried glimpse of -by the light of her match, were sufficient to put me upon an -entirely wrong scent. I can only claim the merit that I instantly -reconsidered my position when, however, it became clear to me -that whatever danger threatened an occupant of the room could not -come either from the window or the door. My attention was -speedily drawn, as I have already remarked to you, to this -ventilator, and to the bell-rope which hung down to the bed. The -discovery that this was a dummy, and that the bed was clamped to -the floor, instantly gave rise to the suspicion that the rope was -there as a bridge for something passing through the hole and -coming to the bed. The idea of a snake instantly occurred to me, -and when I coupled it with my knowledge that the doctor was -furnished with a supply of creatures from India, I felt that I -was probably on the right track. The idea of using a form of -poison which could not possibly be discovered by any chemical -test was just such a one as would occur to a clever and ruthless -man who had had an Eastern training. The rapidity with which such -a poison would take effect would also, from his point of view, be -an advantage. It would be a sharp-eyed coroner, indeed, who could -distinguish the two little dark punctures which would show where -the poison fangs had done their work. Then I thought of the -whistle. Of course he must recall the snake before the morning -light revealed it to the victim. He had trained it, probably by -the use of the milk which we saw, to return to him when summoned. -He would put it through this ventilator at the hour that he -thought best, with the certainty that it would crawl down the -rope and land on the bed. It might or might not bite the -occupant, perhaps she might escape every night for a week, but -sooner or later she must fall a victim. - -"I had come to these conclusions before ever I had entered his -room. An inspection of his chair showed me that he had been in -the habit of standing on it, which of course would be necessary -in order that he should reach the ventilator. The sight of the -safe, the saucer of milk, and the loop of whipcord were enough to -finally dispel any doubts which may have remained. The metallic -clang heard by Miss Stoner was obviously caused by her stepfather -hastily closing the door of his safe upon its terrible occupant. -Having once made up my mind, you know the steps which I took in -order to put the matter to the proof. I heard the creature hiss -as I have no doubt that you did also, and I instantly lit the -light and attacked it." - -"With the result of driving it through the ventilator." - -"And also with the result of causing it to turn upon its master -at the other side. Some of the blows of my cane came home and -roused its snakish temper, so that it flew upon the first person -it saw. In this way I am no doubt indirectly responsible for Dr. -Grimesby Roylott's death, and I cannot say that it is likely to -weigh very heavily upon my conscience." - - - -IX. THE ADVENTURE OF THE ENGINEER'S THUMB - -Of all the problems which have been submitted to my friend, Mr. -Sherlock Holmes, for solution during the years of our intimacy, -there were only two which I was the means of introducing to his -notice--that of Mr. Hatherley's thumb, and that of Colonel -Warburton's madness. Of these the latter may have afforded a -finer field for an acute and original observer, but the other was -so strange in its inception and so dramatic in its details that -it may be the more worthy of being placed upon record, even if it -gave my friend fewer openings for those deductive methods of -reasoning by which he achieved such remarkable results. The story -has, I believe, been told more than once in the newspapers, but, -like all such narratives, its effect is much less striking when -set forth en bloc in a single half-column of print than when the -facts slowly evolve before your own eyes, and the mystery clears -gradually away as each new discovery furnishes a step which leads -on to the complete truth. At the time the circumstances made a -deep impression upon me, and the lapse of two years has hardly -served to weaken the effect. - -It was in the summer of '89, not long after my marriage, that the -events occurred which I am now about to summarise. I had returned -to civil practice and had finally abandoned Holmes in his Baker -Street rooms, although I continually visited him and occasionally -even persuaded him to forgo his Bohemian habits so far as to come -and visit us. My practice had steadily increased, and as I -happened to live at no very great distance from Paddington -Station, I got a few patients from among the officials. One of -these, whom I had cured of a painful and lingering disease, was -never weary of advertising my virtues and of endeavouring to send -me on every sufferer over whom he might have any influence. - -One morning, at a little before seven o'clock, I was awakened by -the maid tapping at the door to announce that two men had come -from Paddington and were waiting in the consulting-room. I -dressed hurriedly, for I knew by experience that railway cases -were seldom trivial, and hastened downstairs. As I descended, my -old ally, the guard, came out of the room and closed the door -tightly behind him. - -"I've got him here," he whispered, jerking his thumb over his -shoulder; "he's all right." - -"What is it, then?" I asked, for his manner suggested that it was -some strange creature which he had caged up in my room. - -"It's a new patient," he whispered. "I thought I'd bring him -round myself; then he couldn't slip away. There he is, all safe -and sound. I must go now, Doctor; I have my dooties, just the -same as you." And off he went, this trusty tout, without even -giving me time to thank him. - -I entered my consulting-room and found a gentleman seated by the -table. He was quietly dressed in a suit of heather tweed with a -soft cloth cap which he had laid down upon my books. Round one of -his hands he had a handkerchief wrapped, which was mottled all -over with bloodstains. He was young, not more than -five-and-twenty, I should say, with a strong, masculine face; but -he was exceedingly pale and gave me the impression of a man who -was suffering from some strong agitation, which it took all his -strength of mind to control. - -"I am sorry to knock you up so early, Doctor," said he, "but I -have had a very serious accident during the night. I came in by -train this morning, and on inquiring at Paddington as to where I -might find a doctor, a worthy fellow very kindly escorted me -here. I gave the maid a card, but I see that she has left it upon -the side-table." - -I took it up and glanced at it. "Mr. Victor Hatherley, hydraulic -engineer, 16A, Victoria Street (3rd floor)." That was the name, -style, and abode of my morning visitor. "I regret that I have -kept you waiting," said I, sitting down in my library-chair. "You -are fresh from a night journey, I understand, which is in itself -a monotonous occupation." - -"Oh, my night could not be called monotonous," said he, and -laughed. He laughed very heartily, with a high, ringing note, -leaning back in his chair and shaking his sides. All my medical -instincts rose up against that laugh. - -"Stop it!" I cried; "pull yourself together!" and I poured out -some water from a caraffe. - -It was useless, however. He was off in one of those hysterical -outbursts which come upon a strong nature when some great crisis -is over and gone. Presently he came to himself once more, very -weary and pale-looking. - -"I have been making a fool of myself," he gasped. - -"Not at all. Drink this." I dashed some brandy into the water, -and the colour began to come back to his bloodless cheeks. - -"That's better!" said he. "And now, Doctor, perhaps you would -kindly attend to my thumb, or rather to the place where my thumb -used to be." - -He unwound the handkerchief and held out his hand. It gave even -my hardened nerves a shudder to look at it. There were four -protruding fingers and a horrid red, spongy surface where the -thumb should have been. It had been hacked or torn right out from -the roots. - -"Good heavens!" I cried, "this is a terrible injury. It must have -bled considerably." - -"Yes, it did. I fainted when it was done, and I think that I must -have been senseless for a long time. When I came to I found that -it was still bleeding, so I tied one end of my handkerchief very -tightly round the wrist and braced it up with a twig." - -"Excellent! You should have been a surgeon." - -"It is a question of hydraulics, you see, and came within my own -province." - -"This has been done," said I, examining the wound, "by a very -heavy and sharp instrument." - -"A thing like a cleaver," said he. - -"An accident, I presume?" - -"By no means." - -"What! a murderous attack?" - -"Very murderous indeed." - -"You horrify me." - -I sponged the wound, cleaned it, dressed it, and finally covered -it over with cotton wadding and carbolised bandages. He lay back -without wincing, though he bit his lip from time to time. - -"How is that?" I asked when I had finished. - -"Capital! Between your brandy and your bandage, I feel a new man. -I was very weak, but I have had a good deal to go through." - -"Perhaps you had better not speak of the matter. It is evidently -trying to your nerves." - -"Oh, no, not now. I shall have to tell my tale to the police; -but, between ourselves, if it were not for the convincing -evidence of this wound of mine, I should be surprised if they -believed my statement, for it is a very extraordinary one, and I -have not much in the way of proof with which to back it up; and, -even if they believe me, the clues which I can give them are so -vague that it is a question whether justice will be done." - -"Ha!" cried I, "if it is anything in the nature of a problem -which you desire to see solved, I should strongly recommend you -to come to my friend, Mr. Sherlock Holmes, before you go to the -official police." - -"Oh, I have heard of that fellow," answered my visitor, "and I -should be very glad if he would take the matter up, though of -course I must use the official police as well. Would you give me -an introduction to him?" - -"I'll do better. I'll take you round to him myself." - -"I should be immensely obliged to you." - -"We'll call a cab and go together. We shall just be in time to -have a little breakfast with him. Do you feel equal to it?" - -"Yes; I shall not feel easy until I have told my story." - -"Then my servant will call a cab, and I shall be with you in an -instant." I rushed upstairs, explained the matter shortly to my -wife, and in five minutes was inside a hansom, driving with my -new acquaintance to Baker Street. - -Sherlock Holmes was, as I expected, lounging about his -sitting-room in his dressing-gown, reading the agony column of The -Times and smoking his before-breakfast pipe, which was composed -of all the plugs and dottles left from his smokes of the day -before, all carefully dried and collected on the corner of the -mantelpiece. He received us in his quietly genial fashion, -ordered fresh rashers and eggs, and joined us in a hearty meal. -When it was concluded he settled our new acquaintance upon the -sofa, placed a pillow beneath his head, and laid a glass of -brandy and water within his reach. - -"It is easy to see that your experience has been no common one, -Mr. Hatherley," said he. "Pray, lie down there and make yourself -absolutely at home. Tell us what you can, but stop when you are -tired and keep up your strength with a little stimulant." - -"Thank you," said my patient, "but I have felt another man since -the doctor bandaged me, and I think that your breakfast has -completed the cure. I shall take up as little of your valuable -time as possible, so I shall start at once upon my peculiar -experiences." - -Holmes sat in his big armchair with the weary, heavy-lidded -expression which veiled his keen and eager nature, while I sat -opposite to him, and we listened in silence to the strange story -which our visitor detailed to us. - -"You must know," said he, "that I am an orphan and a bachelor, -residing alone in lodgings in London. By profession I am a -hydraulic engineer, and I have had considerable experience of my -work during the seven years that I was apprenticed to Venner & -Matheson, the well-known firm, of Greenwich. Two years ago, -having served my time, and having also come into a fair sum of -money through my poor father's death, I determined to start in -business for myself and took professional chambers in Victoria -Street. - -"I suppose that everyone finds his first independent start in -business a dreary experience. To me it has been exceptionally so. -During two years I have had three consultations and one small -job, and that is absolutely all that my profession has brought -me. My gross takings amount to 27 pounds 10s. Every day, from -nine in the morning until four in the afternoon, I waited in my -little den, until at last my heart began to sink, and I came to -believe that I should never have any practice at all. - -"Yesterday, however, just as I was thinking of leaving the -office, my clerk entered to say there was a gentleman waiting who -wished to see me upon business. He brought up a card, too, with -the name of 'Colonel Lysander Stark' engraved upon it. Close at -his heels came the colonel himself, a man rather over the middle -size, but of an exceeding thinness. I do not think that I have -ever seen so thin a man. His whole face sharpened away into nose -and chin, and the skin of his cheeks was drawn quite tense over -his outstanding bones. Yet this emaciation seemed to be his -natural habit, and due to no disease, for his eye was bright, his -step brisk, and his bearing assured. He was plainly but neatly -dressed, and his age, I should judge, would be nearer forty than -thirty. - -"'Mr. Hatherley?' said he, with something of a German accent. -'You have been recommended to me, Mr. Hatherley, as being a man -who is not only proficient in his profession but is also discreet -and capable of preserving a secret.' - -"I bowed, feeling as flattered as any young man would at such an -address. 'May I ask who it was who gave me so good a character?' - -"'Well, perhaps it is better that I should not tell you that just -at this moment. I have it from the same source that you are both -an orphan and a bachelor and are residing alone in London.' - -"'That is quite correct,' I answered; 'but you will excuse me if -I say that I cannot see how all this bears upon my professional -qualifications. I understand that it was on a professional matter -that you wished to speak to me?' - -"'Undoubtedly so. But you will find that all I say is really to -the point. I have a professional commission for you, but absolute -secrecy is quite essential--absolute secrecy, you understand, and -of course we may expect that more from a man who is alone than -from one who lives in the bosom of his family.' - -"'If I promise to keep a secret,' said I, 'you may absolutely -depend upon my doing so.' - -"He looked very hard at me as I spoke, and it seemed to me that I -had never seen so suspicious and questioning an eye. - -"'Do you promise, then?' said he at last. - -"'Yes, I promise.' - -"'Absolute and complete silence before, during, and after? No -reference to the matter at all, either in word or writing?' - -"'I have already given you my word.' - -"'Very good.' He suddenly sprang up, and darting like lightning -across the room he flung open the door. The passage outside was -empty. - -"'That's all right,' said he, coming back. 'I know that clerks are -sometimes curious as to their master's affairs. Now we can talk -in safety.' He drew up his chair very close to mine and began to -stare at me again with the same questioning and thoughtful look. - -"A feeling of repulsion, and of something akin to fear had begun -to rise within me at the strange antics of this fleshless man. -Even my dread of losing a client could not restrain me from -showing my impatience. - -"'I beg that you will state your business, sir,' said I; 'my time -is of value.' Heaven forgive me for that last sentence, but the -words came to my lips. - -"'How would fifty guineas for a night's work suit you?' he asked. - -"'Most admirably.' - -"'I say a night's work, but an hour's would be nearer the mark. I -simply want your opinion about a hydraulic stamping machine which -has got out of gear. If you show us what is wrong we shall soon -set it right ourselves. What do you think of such a commission as -that?' - -"'The work appears to be light and the pay munificent.' - -"'Precisely so. We shall want you to come to-night by the last -train.' - -"'Where to?' - -"'To Eyford, in Berkshire. It is a little place near the borders -of Oxfordshire, and within seven miles of Reading. There is a -train from Paddington which would bring you there at about -11:15.' - -"'Very good.' - -"'I shall come down in a carriage to meet you.' - -"'There is a drive, then?' - -"'Yes, our little place is quite out in the country. It is a good -seven miles from Eyford Station.' - -"'Then we can hardly get there before midnight. I suppose there -would be no chance of a train back. I should be compelled to stop -the night.' - -"'Yes, we could easily give you a shake-down.' - -"'That is very awkward. Could I not come at some more convenient -hour?' - -"'We have judged it best that you should come late. It is to -recompense you for any inconvenience that we are paying to you, a -young and unknown man, a fee which would buy an opinion from the -very heads of your profession. Still, of course, if you would -like to draw out of the business, there is plenty of time to do -so.' - -"I thought of the fifty guineas, and of how very useful they -would be to me. 'Not at all,' said I, 'I shall be very happy to -accommodate myself to your wishes. I should like, however, to -understand a little more clearly what it is that you wish me to -do.' - -"'Quite so. It is very natural that the pledge of secrecy which -we have exacted from you should have aroused your curiosity. I -have no wish to commit you to anything without your having it all -laid before you. I suppose that we are absolutely safe from -eavesdroppers?' - -"'Entirely.' - -"'Then the matter stands thus. You are probably aware that -fuller's-earth is a valuable product, and that it is only found -in one or two places in England?' - -"'I have heard so.' - -"'Some little time ago I bought a small place--a very small -place--within ten miles of Reading. I was fortunate enough to -discover that there was a deposit of fuller's-earth in one of my -fields. On examining it, however, I found that this deposit was a -comparatively small one, and that it formed a link between two -very much larger ones upon the right and left--both of them, -however, in the grounds of my neighbours. These good people were -absolutely ignorant that their land contained that which was -quite as valuable as a gold-mine. Naturally, it was to my -interest to buy their land before they discovered its true value, -but unfortunately I had no capital by which I could do this. I -took a few of my friends into the secret, however, and they -suggested that we should quietly and secretly work our own little -deposit and that in this way we should earn the money which would -enable us to buy the neighbouring fields. This we have now been -doing for some time, and in order to help us in our operations we -erected a hydraulic press. This press, as I have already -explained, has got out of order, and we wish your advice upon the -subject. We guard our secret very jealously, however, and if it -once became known that we had hydraulic engineers coming to our -little house, it would soon rouse inquiry, and then, if the facts -came out, it would be good-bye to any chance of getting these -fields and carrying out our plans. That is why I have made you -promise me that you will not tell a human being that you are -going to Eyford to-night. I hope that I make it all plain?' - -"'I quite follow you,' said I. 'The only point which I could not -quite understand was what use you could make of a hydraulic press -in excavating fuller's-earth, which, as I understand, is dug out -like gravel from a pit.' - -"'Ah!' said he carelessly, 'we have our own process. We compress -the earth into bricks, so as to remove them without revealing -what they are. But that is a mere detail. I have taken you fully -into my confidence now, Mr. Hatherley, and I have shown you how I -trust you.' He rose as he spoke. 'I shall expect you, then, at -Eyford at 11:15.' - -"'I shall certainly be there.' - -"'And not a word to a soul.' He looked at me with a last long, -questioning gaze, and then, pressing my hand in a cold, dank -grasp, he hurried from the room. - -"Well, when I came to think it all over in cool blood I was very -much astonished, as you may both think, at this sudden commission -which had been intrusted to me. On the one hand, of course, I was -glad, for the fee was at least tenfold what I should have asked -had I set a price upon my own services, and it was possible that -this order might lead to other ones. On the other hand, the face -and manner of my patron had made an unpleasant impression upon -me, and I could not think that his explanation of the -fuller's-earth was sufficient to explain the necessity for my -coming at midnight, and his extreme anxiety lest I should tell -anyone of my errand. However, I threw all fears to the winds, ate -a hearty supper, drove to Paddington, and started off, having -obeyed to the letter the injunction as to holding my tongue. - -"At Reading I had to change not only my carriage but my station. -However, I was in time for the last train to Eyford, and I -reached the little dim-lit station after eleven o'clock. I was the -only passenger who got out there, and there was no one upon the -platform save a single sleepy porter with a lantern. As I passed -out through the wicket gate, however, I found my acquaintance of -the morning waiting in the shadow upon the other side. Without a -word he grasped my arm and hurried me into a carriage, the door -of which was standing open. He drew up the windows on either -side, tapped on the wood-work, and away we went as fast as the -horse could go." - -"One horse?" interjected Holmes. - -"Yes, only one." - -"Did you observe the colour?" - -"Yes, I saw it by the side-lights when I was stepping into the -carriage. It was a chestnut." - -"Tired-looking or fresh?" - -"Oh, fresh and glossy." - -"Thank you. I am sorry to have interrupted you. Pray continue -your most interesting statement." - -"Away we went then, and we drove for at least an hour. Colonel -Lysander Stark had said that it was only seven miles, but I -should think, from the rate that we seemed to go, and from the -time that we took, that it must have been nearer twelve. He sat -at my side in silence all the time, and I was aware, more than -once when I glanced in his direction, that he was looking at me -with great intensity. The country roads seem to be not very good -in that part of the world, for we lurched and jolted terribly. I -tried to look out of the windows to see something of where we -were, but they were made of frosted glass, and I could make out -nothing save the occasional bright blur of a passing light. Now -and then I hazarded some remark to break the monotony of the -journey, but the colonel answered only in monosyllables, and the -conversation soon flagged. At last, however, the bumping of the -road was exchanged for the crisp smoothness of a gravel-drive, -and the carriage came to a stand. Colonel Lysander Stark sprang -out, and, as I followed after him, pulled me swiftly into a porch -which gaped in front of us. We stepped, as it were, right out of -the carriage and into the hall, so that I failed to catch the -most fleeting glance of the front of the house. The instant that -I had crossed the threshold the door slammed heavily behind us, -and I heard faintly the rattle of the wheels as the carriage -drove away. - -"It was pitch dark inside the house, and the colonel fumbled -about looking for matches and muttering under his breath. -Suddenly a door opened at the other end of the passage, and a -long, golden bar of light shot out in our direction. It grew -broader, and a woman appeared with a lamp in her hand, which she -held above her head, pushing her face forward and peering at us. -I could see that she was pretty, and from the gloss with which -the light shone upon her dark dress I knew that it was a rich -material. She spoke a few words in a foreign tongue in a tone as -though asking a question, and when my companion answered in a -gruff monosyllable she gave such a start that the lamp nearly -fell from her hand. Colonel Stark went up to her, whispered -something in her ear, and then, pushing her back into the room -from whence she had come, he walked towards me again with the -lamp in his hand. - -"'Perhaps you will have the kindness to wait in this room for a -few minutes,' said he, throwing open another door. It was a -quiet, little, plainly furnished room, with a round table in the -centre, on which several German books were scattered. Colonel -Stark laid down the lamp on the top of a harmonium beside the -door. 'I shall not keep you waiting an instant,' said he, and -vanished into the darkness. - -"I glanced at the books upon the table, and in spite of my -ignorance of German I could see that two of them were treatises -on science, the others being volumes of poetry. Then I walked -across to the window, hoping that I might catch some glimpse of -the country-side, but an oak shutter, heavily barred, was folded -across it. It was a wonderfully silent house. There was an old -clock ticking loudly somewhere in the passage, but otherwise -everything was deadly still. A vague feeling of uneasiness began -to steal over me. Who were these German people, and what were -they doing living in this strange, out-of-the-way place? And -where was the place? I was ten miles or so from Eyford, that was -all I knew, but whether north, south, east, or west I had no -idea. For that matter, Reading, and possibly other large towns, -were within that radius, so the place might not be so secluded, -after all. Yet it was quite certain, from the absolute stillness, -that we were in the country. I paced up and down the room, -humming a tune under my breath to keep up my spirits and feeling -that I was thoroughly earning my fifty-guinea fee. - -"Suddenly, without any preliminary sound in the midst of the -utter stillness, the door of my room swung slowly open. The woman -was standing in the aperture, the darkness of the hall behind -her, the yellow light from my lamp beating upon her eager and -beautiful face. I could see at a glance that she was sick with -fear, and the sight sent a chill to my own heart. She held up one -shaking finger to warn me to be silent, and she shot a few -whispered words of broken English at me, her eyes glancing back, -like those of a frightened horse, into the gloom behind her. - -"'I would go,' said she, trying hard, as it seemed to me, to -speak calmly; 'I would go. I should not stay here. There is no -good for you to do.' - -"'But, madam,' said I, 'I have not yet done what I came for. I -cannot possibly leave until I have seen the machine.' - -"'It is not worth your while to wait,' she went on. 'You can pass -through the door; no one hinders.' And then, seeing that I smiled -and shook my head, she suddenly threw aside her constraint and -made a step forward, with her hands wrung together. 'For the love -of Heaven!' she whispered, 'get away from here before it is too -late!' - -"But I am somewhat headstrong by nature, and the more ready to -engage in an affair when there is some obstacle in the way. I -thought of my fifty-guinea fee, of my wearisome journey, and of -the unpleasant night which seemed to be before me. Was it all to -go for nothing? Why should I slink away without having carried -out my commission, and without the payment which was my due? This -woman might, for all I knew, be a monomaniac. With a stout -bearing, therefore, though her manner had shaken me more than I -cared to confess, I still shook my head and declared my intention -of remaining where I was. She was about to renew her entreaties -when a door slammed overhead, and the sound of several footsteps -was heard upon the stairs. She listened for an instant, threw up -her hands with a despairing gesture, and vanished as suddenly and -as noiselessly as she had come. - -"The newcomers were Colonel Lysander Stark and a short thick man -with a chinchilla beard growing out of the creases of his double -chin, who was introduced to me as Mr. Ferguson. - -"'This is my secretary and manager,' said the colonel. 'By the -way, I was under the impression that I left this door shut just -now. I fear that you have felt the draught.' - -"'On the contrary,' said I, 'I opened the door myself because I -felt the room to be a little close.' - -"He shot one of his suspicious looks at me. 'Perhaps we had -better proceed to business, then,' said he. 'Mr. Ferguson and I -will take you up to see the machine.' - -"'I had better put my hat on, I suppose.' - -"'Oh, no, it is in the house.' - -"'What, you dig fuller's-earth in the house?' - -"'No, no. This is only where we compress it. But never mind that. -All we wish you to do is to examine the machine and to let us -know what is wrong with it.' - -"We went upstairs together, the colonel first with the lamp, the -fat manager and I behind him. It was a labyrinth of an old house, -with corridors, passages, narrow winding staircases, and little -low doors, the thresholds of which were hollowed out by the -generations who had crossed them. There were no carpets and no -signs of any furniture above the ground floor, while the plaster -was peeling off the walls, and the damp was breaking through in -green, unhealthy blotches. I tried to put on as unconcerned an -air as possible, but I had not forgotten the warnings of the -lady, even though I disregarded them, and I kept a keen eye upon -my two companions. Ferguson appeared to be a morose and silent -man, but I could see from the little that he said that he was at -least a fellow-countryman. - -"Colonel Lysander Stark stopped at last before a low door, which -he unlocked. Within was a small, square room, in which the three -of us could hardly get at one time. Ferguson remained outside, -and the colonel ushered me in. - -"'We are now,' said he, 'actually within the hydraulic press, and -it would be a particularly unpleasant thing for us if anyone were -to turn it on. The ceiling of this small chamber is really the -end of the descending piston, and it comes down with the force of -many tons upon this metal floor. There are small lateral columns -of water outside which receive the force, and which transmit and -multiply it in the manner which is familiar to you. The machine -goes readily enough, but there is some stiffness in the working -of it, and it has lost a little of its force. Perhaps you will -have the goodness to look it over and to show us how we can set -it right.' - -"I took the lamp from him, and I examined the machine very -thoroughly. It was indeed a gigantic one, and capable of -exercising enormous pressure. When I passed outside, however, and -pressed down the levers which controlled it, I knew at once by -the whishing sound that there was a slight leakage, which allowed -a regurgitation of water through one of the side cylinders. An -examination showed that one of the india-rubber bands which was -round the head of a driving-rod had shrunk so as not quite to -fill the socket along which it worked. This was clearly the cause -of the loss of power, and I pointed it out to my companions, who -followed my remarks very carefully and asked several practical -questions as to how they should proceed to set it right. When I -had made it clear to them, I returned to the main chamber of the -machine and took a good look at it to satisfy my own curiosity. -It was obvious at a glance that the story of the fuller's-earth -was the merest fabrication, for it would be absurd to suppose -that so powerful an engine could be designed for so inadequate a -purpose. The walls were of wood, but the floor consisted of a -large iron trough, and when I came to examine it I could see a -crust of metallic deposit all over it. I had stooped and was -scraping at this to see exactly what it was when I heard a -muttered exclamation in German and saw the cadaverous face of the -colonel looking down at me. - -"'What are you doing there?' he asked. - -"I felt angry at having been tricked by so elaborate a story as -that which he had told me. 'I was admiring your fuller's-earth,' -said I; 'I think that I should be better able to advise you as to -your machine if I knew what the exact purpose was for which it -was used.' - -"The instant that I uttered the words I regretted the rashness of -my speech. His face set hard, and a baleful light sprang up in -his grey eyes. - -"'Very well,' said he, 'you shall know all about the machine.' He -took a step backward, slammed the little door, and turned the key -in the lock. I rushed towards it and pulled at the handle, but it -was quite secure, and did not give in the least to my kicks and -shoves. 'Hullo!' I yelled. 'Hullo! Colonel! Let me out!' - -"And then suddenly in the silence I heard a sound which sent my -heart into my mouth. It was the clank of the levers and the swish -of the leaking cylinder. He had set the engine at work. The lamp -still stood upon the floor where I had placed it when examining -the trough. By its light I saw that the black ceiling was coming -down upon me, slowly, jerkily, but, as none knew better than -myself, with a force which must within a minute grind me to a -shapeless pulp. I threw myself, screaming, against the door, and -dragged with my nails at the lock. I implored the colonel to let -me out, but the remorseless clanking of the levers drowned my -cries. The ceiling was only a foot or two above my head, and with -my hand upraised I could feel its hard, rough surface. Then it -flashed through my mind that the pain of my death would depend -very much upon the position in which I met it. If I lay on my -face the weight would come upon my spine, and I shuddered to -think of that dreadful snap. Easier the other way, perhaps; and -yet, had I the nerve to lie and look up at that deadly black -shadow wavering down upon me? Already I was unable to stand -erect, when my eye caught something which brought a gush of hope -back to my heart. - -"I have said that though the floor and ceiling were of iron, the -walls were of wood. As I gave a last hurried glance around, I saw -a thin line of yellow light between two of the boards, which -broadened and broadened as a small panel was pushed backward. For -an instant I could hardly believe that here was indeed a door -which led away from death. The next instant I threw myself -through, and lay half-fainting upon the other side. The panel had -closed again behind me, but the crash of the lamp, and a few -moments afterwards the clang of the two slabs of metal, told me -how narrow had been my escape. - -"I was recalled to myself by a frantic plucking at my wrist, and -I found myself lying upon the stone floor of a narrow corridor, -while a woman bent over me and tugged at me with her left hand, -while she held a candle in her right. It was the same good friend -whose warning I had so foolishly rejected. - -"'Come! come!' she cried breathlessly. 'They will be here in a -moment. They will see that you are not there. Oh, do not waste -the so-precious time, but come!' - -"This time, at least, I did not scorn her advice. I staggered to -my feet and ran with her along the corridor and down a winding -stair. The latter led to another broad passage, and just as we -reached it we heard the sound of running feet and the shouting of -two voices, one answering the other from the floor on which we -were and from the one beneath. My guide stopped and looked about -her like one who is at her wit's end. Then she threw open a door -which led into a bedroom, through the window of which the moon -was shining brightly. - -"'It is your only chance,' said she. 'It is high, but it may be -that you can jump it.' - -"As she spoke a light sprang into view at the further end of the -passage, and I saw the lean figure of Colonel Lysander Stark -rushing forward with a lantern in one hand and a weapon like a -butcher's cleaver in the other. I rushed across the bedroom, -flung open the window, and looked out. How quiet and sweet and -wholesome the garden looked in the moonlight, and it could not be -more than thirty feet down. I clambered out upon the sill, but I -hesitated to jump until I should have heard what passed between -my saviour and the ruffian who pursued me. If she were ill-used, -then at any risks I was determined to go back to her assistance. -The thought had hardly flashed through my mind before he was at -the door, pushing his way past her; but she threw her arms round -him and tried to hold him back. - -"'Fritz! Fritz!' she cried in English, 'remember your promise -after the last time. You said it should not be again. He will be -silent! Oh, he will be silent!' - -"'You are mad, Elise!' he shouted, struggling to break away from -her. 'You will be the ruin of us. He has seen too much. Let me -pass, I say!' He dashed her to one side, and, rushing to the -window, cut at me with his heavy weapon. I had let myself go, and -was hanging by the hands to the sill, when his blow fell. I was -conscious of a dull pain, my grip loosened, and I fell into the -garden below. - -"I was shaken but not hurt by the fall; so I picked myself up and -rushed off among the bushes as hard as I could run, for I -understood that I was far from being out of danger yet. Suddenly, -however, as I ran, a deadly dizziness and sickness came over me. -I glanced down at my hand, which was throbbing painfully, and -then, for the first time, saw that my thumb had been cut off and -that the blood was pouring from my wound. I endeavoured to tie my -handkerchief round it, but there came a sudden buzzing in my -ears, and next moment I fell in a dead faint among the -rose-bushes. - -"How long I remained unconscious I cannot tell. It must have been -a very long time, for the moon had sunk, and a bright morning was -breaking when I came to myself. My clothes were all sodden with -dew, and my coat-sleeve was drenched with blood from my wounded -thumb. The smarting of it recalled in an instant all the -particulars of my night's adventure, and I sprang to my feet with -the feeling that I might hardly yet be safe from my pursuers. But -to my astonishment, when I came to look round me, neither house -nor garden were to be seen. I had been lying in an angle of the -hedge close by the highroad, and just a little lower down was a -long building, which proved, upon my approaching it, to be the -very station at which I had arrived upon the previous night. Were -it not for the ugly wound upon my hand, all that had passed -during those dreadful hours might have been an evil dream. - -"Half dazed, I went into the station and asked about the morning -train. There would be one to Reading in less than an hour. The -same porter was on duty, I found, as had been there when I -arrived. I inquired of him whether he had ever heard of Colonel -Lysander Stark. The name was strange to him. Had he observed a -carriage the night before waiting for me? No, he had not. Was -there a police-station anywhere near? There was one about three -miles off. - -"It was too far for me to go, weak and ill as I was. I determined -to wait until I got back to town before telling my story to the -police. It was a little past six when I arrived, so I went first -to have my wound dressed, and then the doctor was kind enough to -bring me along here. I put the case into your hands and shall do -exactly what you advise." - -We both sat in silence for some little time after listening to -this extraordinary narrative. Then Sherlock Holmes pulled down -from the shelf one of the ponderous commonplace books in which he -placed his cuttings. - -"Here is an advertisement which will interest you," said he. "It -appeared in all the papers about a year ago. Listen to this: -'Lost, on the 9th inst., Mr. Jeremiah Hayling, aged -twenty-six, a hydraulic engineer. Left his lodgings at ten -o'clock at night, and has not been heard of since. Was -dressed in,' etc., etc. Ha! That represents the last time that -the colonel needed to have his machine overhauled, I fancy." - -"Good heavens!" cried my patient. "Then that explains what the -girl said." - -"Undoubtedly. It is quite clear that the colonel was a cool and -desperate man, who was absolutely determined that nothing should -stand in the way of his little game, like those out-and-out -pirates who will leave no survivor from a captured ship. Well, -every moment now is precious, so if you feel equal to it we shall -go down to Scotland Yard at once as a preliminary to starting for -Eyford." - -Some three hours or so afterwards we were all in the train -together, bound from Reading to the little Berkshire village. -There were Sherlock Holmes, the hydraulic engineer, Inspector -Bradstreet, of Scotland Yard, a plain-clothes man, and myself. -Bradstreet had spread an ordnance map of the county out upon the -seat and was busy with his compasses drawing a circle with Eyford -for its centre. - -"There you are," said he. "That circle is drawn at a radius of -ten miles from the village. The place we want must be somewhere -near that line. You said ten miles, I think, sir." - -"It was an hour's good drive." - -"And you think that they brought you back all that way when you -were unconscious?" - -"They must have done so. I have a confused memory, too, of having -been lifted and conveyed somewhere." - -"What I cannot understand," said I, "is why they should have -spared you when they found you lying fainting in the garden. -Perhaps the villain was softened by the woman's entreaties." - -"I hardly think that likely. I never saw a more inexorable face -in my life." - -"Oh, we shall soon clear up all that," said Bradstreet. "Well, I -have drawn my circle, and I only wish I knew at what point upon -it the folk that we are in search of are to be found." - -"I think I could lay my finger on it," said Holmes quietly. - -"Really, now!" cried the inspector, "you have formed your -opinion! Come, now, we shall see who agrees with you. I say it is -south, for the country is more deserted there." - -"And I say east," said my patient. - -"I am for west," remarked the plain-clothes man. "There are -several quiet little villages up there." - -"And I am for north," said I, "because there are no hills there, -and our friend says that he did not notice the carriage go up -any." - -"Come," cried the inspector, laughing; "it's a very pretty -diversity of opinion. We have boxed the compass among us. Who do -you give your casting vote to?" - -"You are all wrong." - -"But we can't all be." - -"Oh, yes, you can. This is my point." He placed his finger in the -centre of the circle. "This is where we shall find them." - -"But the twelve-mile drive?" gasped Hatherley. - -"Six out and six back. Nothing simpler. You say yourself that the -horse was fresh and glossy when you got in. How could it be that -if it had gone twelve miles over heavy roads?" - -"Indeed, it is a likely ruse enough," observed Bradstreet -thoughtfully. "Of course there can be no doubt as to the nature -of this gang." - -"None at all," said Holmes. "They are coiners on a large scale, -and have used the machine to form the amalgam which has taken the -place of silver." - -"We have known for some time that a clever gang was at work," -said the inspector. "They have been turning out half-crowns by -the thousand. We even traced them as far as Reading, but could -get no farther, for they had covered their traces in a way that -showed that they were very old hands. But now, thanks to this -lucky chance, I think that we have got them right enough." - -But the inspector was mistaken, for those criminals were not -destined to fall into the hands of justice. As we rolled into -Eyford Station we saw a gigantic column of smoke which streamed -up from behind a small clump of trees in the neighbourhood and -hung like an immense ostrich feather over the landscape. - -"A house on fire?" asked Bradstreet as the train steamed off -again on its way. - -"Yes, sir!" said the station-master. - -"When did it break out?" - -"I hear that it was during the night, sir, but it has got worse, -and the whole place is in a blaze." - -"Whose house is it?" - -"Dr. Becher's." - -"Tell me," broke in the engineer, "is Dr. Becher a German, very -thin, with a long, sharp nose?" - -The station-master laughed heartily. "No, sir, Dr. Becher is an -Englishman, and there isn't a man in the parish who has a -better-lined waistcoat. But he has a gentleman staying with him, -a patient, as I understand, who is a foreigner, and he looks as -if a little good Berkshire beef would do him no harm." - -The station-master had not finished his speech before we were all -hastening in the direction of the fire. The road topped a low -hill, and there was a great widespread whitewashed building in -front of us, spouting fire at every chink and window, while in -the garden in front three fire-engines were vainly striving to -keep the flames under. - -"That's it!" cried Hatherley, in intense excitement. "There is -the gravel-drive, and there are the rose-bushes where I lay. That -second window is the one that I jumped from." - -"Well, at least," said Holmes, "you have had your revenge upon -them. There can be no question that it was your oil-lamp which, -when it was crushed in the press, set fire to the wooden walls, -though no doubt they were too excited in the chase after you to -observe it at the time. Now keep your eyes open in this crowd for -your friends of last night, though I very much fear that they are -a good hundred miles off by now." - -And Holmes' fears came to be realised, for from that day to this -no word has ever been heard either of the beautiful woman, the -sinister German, or the morose Englishman. Early that morning a -peasant had met a cart containing several people and some very -bulky boxes driving rapidly in the direction of Reading, but -there all traces of the fugitives disappeared, and even Holmes' -ingenuity failed ever to discover the least clue as to their -whereabouts. - -The firemen had been much perturbed at the strange arrangements -which they had found within, and still more so by discovering a -newly severed human thumb upon a window-sill of the second floor. -About sunset, however, their efforts were at last successful, and -they subdued the flames, but not before the roof had fallen in, -and the whole place been reduced to such absolute ruin that, save -some twisted cylinders and iron piping, not a trace remained of -the machinery which had cost our unfortunate acquaintance so -dearly. Large masses of nickel and of tin were discovered stored -in an out-house, but no coins were to be found, which may have -explained the presence of those bulky boxes which have been -already referred to. - -How our hydraulic engineer had been conveyed from the garden to -the spot where he recovered his senses might have remained -forever a mystery were it not for the soft mould, which told us a -very plain tale. He had evidently been carried down by two -persons, one of whom had remarkably small feet and the other -unusually large ones. On the whole, it was most probable that the -silent Englishman, being less bold or less murderous than his -companion, had assisted the woman to bear the unconscious man out -of the way of danger. - -"Well," said our engineer ruefully as we took our seats to return -once more to London, "it has been a pretty business for me! I -have lost my thumb and I have lost a fifty-guinea fee, and what -have I gained?" - -"Experience," said Holmes, laughing. "Indirectly it may be of -value, you know; you have only to put it into words to gain the -reputation of being excellent company for the remainder of your -existence." - - - -X. THE ADVENTURE OF THE NOBLE BACHELOR - -The Lord St. Simon marriage, and its curious termination, have -long ceased to be a subject of interest in those exalted circles -in which the unfortunate bridegroom moves. Fresh scandals have -eclipsed it, and their more piquant details have drawn the -gossips away from this four-year-old drama. As I have reason to -believe, however, that the full facts have never been revealed to -the general public, and as my friend Sherlock Holmes had a -considerable share in clearing the matter up, I feel that no -memoir of him would be complete without some little sketch of -this remarkable episode. - -It was a few weeks before my own marriage, during the days when I -was still sharing rooms with Holmes in Baker Street, that he came -home from an afternoon stroll to find a letter on the table -waiting for him. I had remained indoors all day, for the weather -had taken a sudden turn to rain, with high autumnal winds, and -the Jezail bullet which I had brought back in one of my limbs as -a relic of my Afghan campaign throbbed with dull persistence. -With my body in one easy-chair and my legs upon another, I had -surrounded myself with a cloud of newspapers until at last, -saturated with the news of the day, I tossed them all aside and -lay listless, watching the huge crest and monogram upon the -envelope upon the table and wondering lazily who my friend's -noble correspondent could be. - -"Here is a very fashionable epistle," I remarked as he entered. -"Your morning letters, if I remember right, were from a -fish-monger and a tide-waiter." - -"Yes, my correspondence has certainly the charm of variety," he -answered, smiling, "and the humbler are usually the more -interesting. This looks like one of those unwelcome social -summonses which call upon a man either to be bored or to lie." - -He broke the seal and glanced over the contents. - -"Oh, come, it may prove to be something of interest, after all." - -"Not social, then?" - -"No, distinctly professional." - -"And from a noble client?" - -"One of the highest in England." - -"My dear fellow, I congratulate you." - -"I assure you, Watson, without affectation, that the status of my -client is a matter of less moment to me than the interest of his -case. It is just possible, however, that that also may not be -wanting in this new investigation. You have been reading the -papers diligently of late, have you not?" - -"It looks like it," said I ruefully, pointing to a huge bundle in -the corner. "I have had nothing else to do." - -"It is fortunate, for you will perhaps be able to post me up. I -read nothing except the criminal news and the agony column. The -latter is always instructive. But if you have followed recent -events so closely you must have read about Lord St. Simon and his -wedding?" - -"Oh, yes, with the deepest interest." - -"That is well. The letter which I hold in my hand is from Lord -St. Simon. I will read it to you, and in return you must turn -over these papers and let me have whatever bears upon the matter. -This is what he says: - -"'MY DEAR MR. SHERLOCK HOLMES:--Lord Backwater tells me that I -may place implicit reliance upon your judgment and discretion. I -have determined, therefore, to call upon you and to consult you -in reference to the very painful event which has occurred in -connection with my wedding. Mr. Lestrade, of Scotland Yard, is -acting already in the matter, but he assures me that he sees no -objection to your co-operation, and that he even thinks that -it might be of some assistance. I will call at four o'clock in -the afternoon, and, should you have any other engagement at that -time, I hope that you will postpone it, as this matter is of -paramount importance. Yours faithfully, ST. SIMON.' - -"It is dated from Grosvenor Mansions, written with a quill pen, -and the noble lord has had the misfortune to get a smear of ink -upon the outer side of his right little finger," remarked Holmes -as he folded up the epistle. - -"He says four o'clock. It is three now. He will be here in an -hour." - -"Then I have just time, with your assistance, to get clear upon -the subject. Turn over those papers and arrange the extracts in -their order of time, while I take a glance as to who our client -is." He picked a red-covered volume from a line of books of -reference beside the mantelpiece. "Here he is," said he, sitting -down and flattening it out upon his knee. "'Lord Robert Walsingham -de Vere St. Simon, second son of the Duke of Balmoral.' Hum! 'Arms: -Azure, three caltrops in chief over a fess sable. Born in 1846.' -He's forty-one years of age, which is mature for marriage. Was -Under-Secretary for the colonies in a late administration. The -Duke, his father, was at one time Secretary for Foreign Affairs. -They inherit Plantagenet blood by direct descent, and Tudor on -the distaff side. Ha! Well, there is nothing very instructive in -all this. I think that I must turn to you Watson, for something -more solid." - -"I have very little difficulty in finding what I want," said I, -"for the facts are quite recent, and the matter struck me as -remarkable. I feared to refer them to you, however, as I knew -that you had an inquiry on hand and that you disliked the -intrusion of other matters." - -"Oh, you mean the little problem of the Grosvenor Square -furniture van. That is quite cleared up now--though, indeed, it -was obvious from the first. Pray give me the results of your -newspaper selections." - -"Here is the first notice which I can find. It is in the personal -column of the Morning Post, and dates, as you see, some weeks -back: 'A marriage has been arranged,' it says, 'and will, if -rumour is correct, very shortly take place, between Lord Robert -St. Simon, second son of the Duke of Balmoral, and Miss Hatty -Doran, the only daughter of Aloysius Doran. Esq., of San -Francisco, Cal., U.S.A.' That is all." - -"Terse and to the point," remarked Holmes, stretching his long, -thin legs towards the fire. - -"There was a paragraph amplifying this in one of the society -papers of the same week. Ah, here it is: 'There will soon be a -call for protection in the marriage market, for the present -free-trade principle appears to tell heavily against our home -product. One by one the management of the noble houses of Great -Britain is passing into the hands of our fair cousins from across -the Atlantic. An important addition has been made during the last -week to the list of the prizes which have been borne away by -these charming invaders. Lord St. Simon, who has shown himself -for over twenty years proof against the little god's arrows, has -now definitely announced his approaching marriage with Miss Hatty -Doran, the fascinating daughter of a California millionaire. Miss -Doran, whose graceful figure and striking face attracted much -attention at the Westbury House festivities, is an only child, -and it is currently reported that her dowry will run to -considerably over the six figures, with expectancies for the -future. As it is an open secret that the Duke of Balmoral has -been compelled to sell his pictures within the last few years, -and as Lord St. Simon has no property of his own save the small -estate of Birchmoor, it is obvious that the Californian heiress -is not the only gainer by an alliance which will enable her to -make the easy and common transition from a Republican lady to a -British peeress.'" - -"Anything else?" asked Holmes, yawning. - -"Oh, yes; plenty. Then there is another note in the Morning Post -to say that the marriage would be an absolutely quiet one, that it -would be at St. George's, Hanover Square, that only half a dozen -intimate friends would be invited, and that the party would -return to the furnished house at Lancaster Gate which has been -taken by Mr. Aloysius Doran. Two days later--that is, on -Wednesday last--there is a curt announcement that the wedding had -taken place, and that the honeymoon would be passed at Lord -Backwater's place, near Petersfield. Those are all the notices -which appeared before the disappearance of the bride." - -"Before the what?" asked Holmes with a start. - -"The vanishing of the lady." - -"When did she vanish, then?" - -"At the wedding breakfast." - -"Indeed. This is more interesting than it promised to be; quite -dramatic, in fact." - -"Yes; it struck me as being a little out of the common." - -"They often vanish before the ceremony, and occasionally during -the honeymoon; but I cannot call to mind anything quite so prompt -as this. Pray let me have the details." - -"I warn you that they are very incomplete." - -"Perhaps we may make them less so." - -"Such as they are, they are set forth in a single article of a -morning paper of yesterday, which I will read to you. It is -headed, 'Singular Occurrence at a Fashionable Wedding': - -"'The family of Lord Robert St. Simon has been thrown into the -greatest consternation by the strange and painful episodes which -have taken place in connection with his wedding. The ceremony, as -shortly announced in the papers of yesterday, occurred on the -previous morning; but it is only now that it has been possible to -confirm the strange rumours which have been so persistently -floating about. In spite of the attempts of the friends to hush -the matter up, so much public attention has now been drawn to it -that no good purpose can be served by affecting to disregard what -is a common subject for conversation. - -"'The ceremony, which was performed at St. George's, Hanover -Square, was a very quiet one, no one being present save the -father of the bride, Mr. Aloysius Doran, the Duchess of Balmoral, -Lord Backwater, Lord Eustace and Lady Clara St. Simon (the -younger brother and sister of the bridegroom), and Lady Alicia -Whittington. The whole party proceeded afterwards to the house of -Mr. Aloysius Doran, at Lancaster Gate, where breakfast had been -prepared. It appears that some little trouble was caused by a -woman, whose name has not been ascertained, who endeavoured to -force her way into the house after the bridal party, alleging -that she had some claim upon Lord St. Simon. It was only after a -painful and prolonged scene that she was ejected by the butler -and the footman. The bride, who had fortunately entered the house -before this unpleasant interruption, had sat down to breakfast -with the rest, when she complained of a sudden indisposition and -retired to her room. Her prolonged absence having caused some -comment, her father followed her, but learned from her maid that -she had only come up to her chamber for an instant, caught up an -ulster and bonnet, and hurried down to the passage. One of the -footmen declared that he had seen a lady leave the house thus -apparelled, but had refused to credit that it was his mistress, -believing her to be with the company. On ascertaining that his -daughter had disappeared, Mr. Aloysius Doran, in conjunction with -the bridegroom, instantly put themselves in communication with -the police, and very energetic inquiries are being made, which -will probably result in a speedy clearing up of this very -singular business. Up to a late hour last night, however, nothing -had transpired as to the whereabouts of the missing lady. There -are rumours of foul play in the matter, and it is said that the -police have caused the arrest of the woman who had caused the -original disturbance, in the belief that, from jealousy or some -other motive, she may have been concerned in the strange -disappearance of the bride.'" - -"And is that all?" - -"Only one little item in another of the morning papers, but it is -a suggestive one." - -"And it is--" - -"That Miss Flora Millar, the lady who had caused the disturbance, -has actually been arrested. It appears that she was formerly a -danseuse at the Allegro, and that she has known the bridegroom -for some years. There are no further particulars, and the whole -case is in your hands now--so far as it has been set forth in the -public press." - -"And an exceedingly interesting case it appears to be. I would -not have missed it for worlds. But there is a ring at the bell, -Watson, and as the clock makes it a few minutes after four, I -have no doubt that this will prove to be our noble client. Do not -dream of going, Watson, for I very much prefer having a witness, -if only as a check to my own memory." - -"Lord Robert St. Simon," announced our page-boy, throwing open -the door. A gentleman entered, with a pleasant, cultured face, -high-nosed and pale, with something perhaps of petulance about -the mouth, and with the steady, well-opened eye of a man whose -pleasant lot it had ever been to command and to be obeyed. His -manner was brisk, and yet his general appearance gave an undue -impression of age, for he had a slight forward stoop and a little -bend of the knees as he walked. His hair, too, as he swept off -his very curly-brimmed hat, was grizzled round the edges and thin -upon the top. As to his dress, it was careful to the verge of -foppishness, with high collar, black frock-coat, white waistcoat, -yellow gloves, patent-leather shoes, and light-coloured gaiters. -He advanced slowly into the room, turning his head from left to -right, and swinging in his right hand the cord which held his -golden eyeglasses. - -"Good-day, Lord St. Simon," said Holmes, rising and bowing. "Pray -take the basket-chair. This is my friend and colleague, Dr. -Watson. Draw up a little to the fire, and we will talk this -matter over." - -"A most painful matter to me, as you can most readily imagine, -Mr. Holmes. I have been cut to the quick. I understand that you -have already managed several delicate cases of this sort, sir, -though I presume that they were hardly from the same class of -society." - -"No, I am descending." - -"I beg pardon." - -"My last client of the sort was a king." - -"Oh, really! I had no idea. And which king?" - -"The King of Scandinavia." - -"What! Had he lost his wife?" - -"You can understand," said Holmes suavely, "that I extend to the -affairs of my other clients the same secrecy which I promise to -you in yours." - -"Of course! Very right! very right! I'm sure I beg pardon. As to -my own case, I am ready to give you any information which may -assist you in forming an opinion." - -"Thank you. I have already learned all that is in the public -prints, nothing more. I presume that I may take it as correct--this -article, for example, as to the disappearance of the bride." - -Lord St. Simon glanced over it. "Yes, it is correct, as far as it -goes." - -"But it needs a great deal of supplementing before anyone could -offer an opinion. I think that I may arrive at my facts most -directly by questioning you." - -"Pray do so." - -"When did you first meet Miss Hatty Doran?" - -"In San Francisco, a year ago." - -"You were travelling in the States?" - -"Yes." - -"Did you become engaged then?" - -"No." - -"But you were on a friendly footing?" - -"I was amused by her society, and she could see that I was -amused." - -"Her father is very rich?" - -"He is said to be the richest man on the Pacific slope." - -"And how did he make his money?" - -"In mining. He had nothing a few years ago. Then he struck gold, -invested it, and came up by leaps and bounds." - -"Now, what is your own impression as to the young lady's--your -wife's character?" - -The nobleman swung his glasses a little faster and stared down -into the fire. "You see, Mr. Holmes," said he, "my wife was -twenty before her father became a rich man. During that time she -ran free in a mining camp and wandered through woods or -mountains, so that her education has come from Nature rather than -from the schoolmaster. She is what we call in England a tomboy, -with a strong nature, wild and free, unfettered by any sort of -traditions. She is impetuous--volcanic, I was about to say. She -is swift in making up her mind and fearless in carrying out her -resolutions. On the other hand, I would not have given her the -name which I have the honour to bear"--he gave a little stately -cough--"had not I thought her to be at bottom a noble woman. I -believe that she is capable of heroic self-sacrifice and that -anything dishonourable would be repugnant to her." - -"Have you her photograph?" - -"I brought this with me." He opened a locket and showed us the -full face of a very lovely woman. It was not a photograph but an -ivory miniature, and the artist had brought out the full effect -of the lustrous black hair, the large dark eyes, and the -exquisite mouth. Holmes gazed long and earnestly at it. Then he -closed the locket and handed it back to Lord St. Simon. - -"The young lady came to London, then, and you renewed your -acquaintance?" - -"Yes, her father brought her over for this last London season. I -met her several times, became engaged to her, and have now -married her." - -"She brought, I understand, a considerable dowry?" - -"A fair dowry. Not more than is usual in my family." - -"And this, of course, remains to you, since the marriage is a -fait accompli?" - -"I really have made no inquiries on the subject." - -"Very naturally not. Did you see Miss Doran on the day before the -wedding?" - -"Yes." - -"Was she in good spirits?" - -"Never better. She kept talking of what we should do in our -future lives." - -"Indeed! That is very interesting. And on the morning of the -wedding?" - -"She was as bright as possible--at least until after the -ceremony." - -"And did you observe any change in her then?" - -"Well, to tell the truth, I saw then the first signs that I had -ever seen that her temper was just a little sharp. The incident -however, was too trivial to relate and can have no possible -bearing upon the case." - -"Pray let us have it, for all that." - -"Oh, it is childish. She dropped her bouquet as we went towards -the vestry. She was passing the front pew at the time, and it -fell over into the pew. There was a moment's delay, but the -gentleman in the pew handed it up to her again, and it did not -appear to be the worse for the fall. Yet when I spoke to her of -the matter, she answered me abruptly; and in the carriage, on our -way home, she seemed absurdly agitated over this trifling cause." - -"Indeed! You say that there was a gentleman in the pew. Some of -the general public were present, then?" - -"Oh, yes. It is impossible to exclude them when the church is -open." - -"This gentleman was not one of your wife's friends?" - -"No, no; I call him a gentleman by courtesy, but he was quite a -common-looking person. I hardly noticed his appearance. But -really I think that we are wandering rather far from the point." - -"Lady St. Simon, then, returned from the wedding in a less -cheerful frame of mind than she had gone to it. What did she do -on re-entering her father's house?" - -"I saw her in conversation with her maid." - -"And who is her maid?" - -"Alice is her name. She is an American and came from California -with her." - -"A confidential servant?" - -"A little too much so. It seemed to me that her mistress allowed -her to take great liberties. Still, of course, in America they -look upon these things in a different way." - -"How long did she speak to this Alice?" - -"Oh, a few minutes. I had something else to think of." - -"You did not overhear what they said?" - -"Lady St. Simon said something about 'jumping a claim.' She was -accustomed to use slang of the kind. I have no idea what she -meant." - -"American slang is very expressive sometimes. And what did your -wife do when she finished speaking to her maid?" - -"She walked into the breakfast-room." - -"On your arm?" - -"No, alone. She was very independent in little matters like that. -Then, after we had sat down for ten minutes or so, she rose -hurriedly, muttered some words of apology, and left the room. She -never came back." - -"But this maid, Alice, as I understand, deposes that she went to -her room, covered her bride's dress with a long ulster, put on a -bonnet, and went out." - -"Quite so. And she was afterwards seen walking into Hyde Park in -company with Flora Millar, a woman who is now in custody, and who -had already made a disturbance at Mr. Doran's house that -morning." - -"Ah, yes. I should like a few particulars as to this young lady, -and your relations to her." - -Lord St. Simon shrugged his shoulders and raised his eyebrows. -"We have been on a friendly footing for some years--I may say on -a very friendly footing. She used to be at the Allegro. I have -not treated her ungenerously, and she had no just cause of -complaint against me, but you know what women are, Mr. Holmes. -Flora was a dear little thing, but exceedingly hot-headed and -devotedly attached to me. She wrote me dreadful letters when she -heard that I was about to be married, and, to tell the truth, the -reason why I had the marriage celebrated so quietly was that I -feared lest there might be a scandal in the church. She came to -Mr. Doran's door just after we returned, and she endeavoured to -push her way in, uttering very abusive expressions towards my -wife, and even threatening her, but I had foreseen the -possibility of something of the sort, and I had two police -fellows there in private clothes, who soon pushed her out again. -She was quiet when she saw that there was no good in making a -row." - -"Did your wife hear all this?" - -"No, thank goodness, she did not." - -"And she was seen walking with this very woman afterwards?" - -"Yes. That is what Mr. Lestrade, of Scotland Yard, looks upon as -so serious. It is thought that Flora decoyed my wife out and laid -some terrible trap for her." - -"Well, it is a possible supposition." - -"You think so, too?" - -"I did not say a probable one. But you do not yourself look upon -this as likely?" - -"I do not think Flora would hurt a fly." - -"Still, jealousy is a strange transformer of characters. Pray -what is your own theory as to what took place?" - -"Well, really, I came to seek a theory, not to propound one. I -have given you all the facts. Since you ask me, however, I may -say that it has occurred to me as possible that the excitement of -this affair, the consciousness that she had made so immense a -social stride, had the effect of causing some little nervous -disturbance in my wife." - -"In short, that she had become suddenly deranged?" - -"Well, really, when I consider that she has turned her back--I -will not say upon me, but upon so much that many have aspired to -without success--I can hardly explain it in any other fashion." - -"Well, certainly that is also a conceivable hypothesis," said -Holmes, smiling. "And now, Lord St. Simon, I think that I have -nearly all my data. May I ask whether you were seated at the -breakfast-table so that you could see out of the window?" - -"We could see the other side of the road and the Park." - -"Quite so. Then I do not think that I need to detain you longer. -I shall communicate with you." - -"Should you be fortunate enough to solve this problem," said our -client, rising. - -"I have solved it." - -"Eh? What was that?" - -"I say that I have solved it." - -"Where, then, is my wife?" - -"That is a detail which I shall speedily supply." - -Lord St. Simon shook his head. "I am afraid that it will take -wiser heads than yours or mine," he remarked, and bowing in a -stately, old-fashioned manner he departed. - -"It is very good of Lord St. Simon to honour my head by putting -it on a level with his own," said Sherlock Holmes, laughing. "I -think that I shall have a whisky and soda and a cigar after all -this cross-questioning. I had formed my conclusions as to the -case before our client came into the room." - -"My dear Holmes!" - -"I have notes of several similar cases, though none, as I -remarked before, which were quite as prompt. My whole examination -served to turn my conjecture into a certainty. Circumstantial -evidence is occasionally very convincing, as when you find a -trout in the milk, to quote Thoreau's example." - -"But I have heard all that you have heard." - -"Without, however, the knowledge of pre-existing cases which -serves me so well. There was a parallel instance in Aberdeen some -years back, and something on very much the same lines at Munich -the year after the Franco-Prussian War. It is one of these -cases--but, hullo, here is Lestrade! Good-afternoon, Lestrade! -You will find an extra tumbler upon the sideboard, and there are -cigars in the box." - -The official detective was attired in a pea-jacket and cravat, -which gave him a decidedly nautical appearance, and he carried a -black canvas bag in his hand. With a short greeting he seated -himself and lit the cigar which had been offered to him. - -"What's up, then?" asked Holmes with a twinkle in his eye. "You -look dissatisfied." - -"And I feel dissatisfied. It is this infernal St. Simon marriage -case. I can make neither head nor tail of the business." - -"Really! You surprise me." - -"Who ever heard of such a mixed affair? Every clue seems to slip -through my fingers. I have been at work upon it all day." - -"And very wet it seems to have made you," said Holmes laying his -hand upon the arm of the pea-jacket. - -"Yes, I have been dragging the Serpentine." - -"In heaven's name, what for?" - -"In search of the body of Lady St. Simon." - -Sherlock Holmes leaned back in his chair and laughed heartily. - -"Have you dragged the basin of Trafalgar Square fountain?" he -asked. - -"Why? What do you mean?" - -"Because you have just as good a chance of finding this lady in -the one as in the other." - -Lestrade shot an angry glance at my companion. "I suppose you -know all about it," he snarled. - -"Well, I have only just heard the facts, but my mind is made up." - -"Oh, indeed! Then you think that the Serpentine plays no part in -the matter?" - -"I think it very unlikely." - -"Then perhaps you will kindly explain how it is that we found -this in it?" He opened his bag as he spoke, and tumbled onto the -floor a wedding-dress of watered silk, a pair of white satin -shoes and a bride's wreath and veil, all discoloured and soaked -in water. "There," said he, putting a new wedding-ring upon the -top of the pile. "There is a little nut for you to crack, Master -Holmes." - -"Oh, indeed!" said my friend, blowing blue rings into the air. -"You dragged them from the Serpentine?" - -"No. They were found floating near the margin by a park-keeper. -They have been identified as her clothes, and it seemed to me -that if the clothes were there the body would not be far off." - -"By the same brilliant reasoning, every man's body is to be found -in the neighbourhood of his wardrobe. And pray what did you hope -to arrive at through this?" - -"At some evidence implicating Flora Millar in the disappearance." - -"I am afraid that you will find it difficult." - -"Are you, indeed, now?" cried Lestrade with some bitterness. "I -am afraid, Holmes, that you are not very practical with your -deductions and your inferences. You have made two blunders in as -many minutes. This dress does implicate Miss Flora Millar." - -"And how?" - -"In the dress is a pocket. In the pocket is a card-case. In the -card-case is a note. And here is the very note." He slapped it -down upon the table in front of him. "Listen to this: 'You will -see me when all is ready. Come at once. F.H.M.' Now my theory all -along has been that Lady St. Simon was decoyed away by Flora -Millar, and that she, with confederates, no doubt, was -responsible for her disappearance. Here, signed with her -initials, is the very note which was no doubt quietly slipped -into her hand at the door and which lured her within their -reach." - -"Very good, Lestrade," said Holmes, laughing. "You really are -very fine indeed. Let me see it." He took up the paper in a -listless way, but his attention instantly became riveted, and he -gave a little cry of satisfaction. "This is indeed important," -said he. - -"Ha! you find it so?" - -"Extremely so. I congratulate you warmly." - -Lestrade rose in his triumph and bent his head to look. "Why," he -shrieked, "you're looking at the wrong side!" - -"On the contrary, this is the right side." - -"The right side? You're mad! Here is the note written in pencil -over here." - -"And over here is what appears to be the fragment of a hotel -bill, which interests me deeply." - -"There's nothing in it. I looked at it before," said Lestrade. -"'Oct. 4th, rooms 8s., breakfast 2s. 6d., cocktail 1s., lunch 2s. -6d., glass sherry, 8d.' I see nothing in that." - -"Very likely not. It is most important, all the same. As to the -note, it is important also, or at least the initials are, so I -congratulate you again." - -"I've wasted time enough," said Lestrade, rising. "I believe in -hard work and not in sitting by the fire spinning fine theories. -Good-day, Mr. Holmes, and we shall see which gets to the bottom -of the matter first." He gathered up the garments, thrust them -into the bag, and made for the door. - -"Just one hint to you, Lestrade," drawled Holmes before his rival -vanished; "I will tell you the true solution of the matter. Lady -St. Simon is a myth. There is not, and there never has been, any -such person." - -Lestrade looked sadly at my companion. Then he turned to me, -tapped his forehead three times, shook his head solemnly, and -hurried away. - -He had hardly shut the door behind him when Holmes rose to put on -his overcoat. "There is something in what the fellow says about -outdoor work," he remarked, "so I think, Watson, that I must -leave you to your papers for a little." - -It was after five o'clock when Sherlock Holmes left me, but I had -no time to be lonely, for within an hour there arrived a -confectioner's man with a very large flat box. This he unpacked -with the help of a youth whom he had brought with him, and -presently, to my very great astonishment, a quite epicurean -little cold supper began to be laid out upon our humble -lodging-house mahogany. There were a couple of brace of cold -woodcock, a pheasant, a pt de foie gras pie with a group of -ancient and cobwebby bottles. Having laid out all these luxuries, -my two visitors vanished away, like the genii of the Arabian -Nights, with no explanation save that the things had been paid -for and were ordered to this address. - -Just before nine o'clock Sherlock Holmes stepped briskly into the -room. His features were gravely set, but there was a light in his -eye which made me think that he had not been disappointed in his -conclusions. - -"They have laid the supper, then," he said, rubbing his hands. - -"You seem to expect company. They have laid for five." - -"Yes, I fancy we may have some company dropping in," said he. "I -am surprised that Lord St. Simon has not already arrived. Ha! I -fancy that I hear his step now upon the stairs." - -It was indeed our visitor of the afternoon who came bustling in, -dangling his glasses more vigorously than ever, and with a very -perturbed expression upon his aristocratic features. - -"My messenger reached you, then?" asked Holmes. - -"Yes, and I confess that the contents startled me beyond measure. -Have you good authority for what you say?" - -"The best possible." - -Lord St. Simon sank into a chair and passed his hand over his -forehead. - -"What will the Duke say," he murmured, "when he hears that one of -the family has been subjected to such humiliation?" - -"It is the purest accident. I cannot allow that there is any -humiliation." - -"Ah, you look on these things from another standpoint." - -"I fail to see that anyone is to blame. I can hardly see how the -lady could have acted otherwise, though her abrupt method of -doing it was undoubtedly to be regretted. Having no mother, she -had no one to advise her at such a crisis." - -"It was a slight, sir, a public slight," said Lord St. Simon, -tapping his fingers upon the table. - -"You must make allowance for this poor girl, placed in so -unprecedented a position." - -"I will make no allowance. I am very angry indeed, and I have -been shamefully used." - -"I think that I heard a ring," said Holmes. "Yes, there are steps -on the landing. If I cannot persuade you to take a lenient view -of the matter, Lord St. Simon, I have brought an advocate here -who may be more successful." He opened the door and ushered in a -lady and gentleman. "Lord St. Simon," said he "allow me to -introduce you to Mr. and Mrs. Francis Hay Moulton. The lady, I -think, you have already met." - -At the sight of these newcomers our client had sprung from his -seat and stood very erect, with his eyes cast down and his hand -thrust into the breast of his frock-coat, a picture of offended -dignity. The lady had taken a quick step forward and had held out -her hand to him, but he still refused to raise his eyes. It was -as well for his resolution, perhaps, for her pleading face was -one which it was hard to resist. - -"You're angry, Robert," said she. "Well, I guess you have every -cause to be." - -"Pray make no apology to me," said Lord St. Simon bitterly. - -"Oh, yes, I know that I have treated you real bad and that I -should have spoken to you before I went; but I was kind of -rattled, and from the time when I saw Frank here again I just -didn't know what I was doing or saying. I only wonder I didn't -fall down and do a faint right there before the altar." - -"Perhaps, Mrs. Moulton, you would like my friend and me to leave -the room while you explain this matter?" - -"If I may give an opinion," remarked the strange gentleman, -"we've had just a little too much secrecy over this business -already. For my part, I should like all Europe and America to -hear the rights of it." He was a small, wiry, sunburnt man, -clean-shaven, with a sharp face and alert manner. - -"Then I'll tell our story right away," said the lady. "Frank here -and I met in '84, in McQuire's camp, near the Rockies, where pa -was working a claim. We were engaged to each other, Frank and I; -but then one day father struck a rich pocket and made a pile, -while poor Frank here had a claim that petered out and came to -nothing. The richer pa grew the poorer was Frank; so at last pa -wouldn't hear of our engagement lasting any longer, and he took -me away to 'Frisco. Frank wouldn't throw up his hand, though; so -he followed me there, and he saw me without pa knowing anything -about it. It would only have made him mad to know, so we just -fixed it all up for ourselves. Frank said that he would go and -make his pile, too, and never come back to claim me until he had -as much as pa. So then I promised to wait for him to the end of -time and pledged myself not to marry anyone else while he lived. -'Why shouldn't we be married right away, then,' said he, 'and -then I will feel sure of you; and I won't claim to be your -husband until I come back?' Well, we talked it over, and he had -fixed it all up so nicely, with a clergyman all ready in waiting, -that we just did it right there; and then Frank went off to seek -his fortune, and I went back to pa. - -"The next I heard of Frank was that he was in Montana, and then -he went prospecting in Arizona, and then I heard of him from New -Mexico. After that came a long newspaper story about how a -miners' camp had been attacked by Apache Indians, and there was -my Frank's name among the killed. I fainted dead away, and I was -very sick for months after. Pa thought I had a decline and took -me to half the doctors in 'Frisco. Not a word of news came for a -year and more, so that I never doubted that Frank was really -dead. Then Lord St. Simon came to 'Frisco, and we came to London, -and a marriage was arranged, and pa was very pleased, but I felt -all the time that no man on this earth would ever take the place -in my heart that had been given to my poor Frank. - -"Still, if I had married Lord St. Simon, of course I'd have done -my duty by him. We can't command our love, but we can our -actions. I went to the altar with him with the intention to make -him just as good a wife as it was in me to be. But you may -imagine what I felt when, just as I came to the altar rails, I -glanced back and saw Frank standing and looking at me out of the -first pew. I thought it was his ghost at first; but when I looked -again there he was still, with a kind of question in his eyes, as -if to ask me whether I were glad or sorry to see him. I wonder I -didn't drop. I know that everything was turning round, and the -words of the clergyman were just like the buzz of a bee in my -ear. I didn't know what to do. Should I stop the service and make -a scene in the church? I glanced at him again, and he seemed to -know what I was thinking, for he raised his finger to his lips to -tell me to be still. Then I saw him scribble on a piece of paper, -and I knew that he was writing me a note. As I passed his pew on -the way out I dropped my bouquet over to him, and he slipped the -note into my hand when he returned me the flowers. It was only a -line asking me to join him when he made the sign to me to do so. -Of course I never doubted for a moment that my first duty was now -to him, and I determined to do just whatever he might direct. - -"When I got back I told my maid, who had known him in California, -and had always been his friend. I ordered her to say nothing, but -to get a few things packed and my ulster ready. I know I ought to -have spoken to Lord St. Simon, but it was dreadful hard before -his mother and all those great people. I just made up my mind to -run away and explain afterwards. I hadn't been at the table ten -minutes before I saw Frank out of the window at the other side of -the road. He beckoned to me and then began walking into the Park. -I slipped out, put on my things, and followed him. Some woman -came talking something or other about Lord St. Simon to -me--seemed to me from the little I heard as if he had a little -secret of his own before marriage also--but I managed to get away -from her and soon overtook Frank. We got into a cab together, and -away we drove to some lodgings he had taken in Gordon Square, and -that was my true wedding after all those years of waiting. Frank -had been a prisoner among the Apaches, had escaped, came on to -'Frisco, found that I had given him up for dead and had gone to -England, followed me there, and had come upon me at last on the -very morning of my second wedding." - -"I saw it in a paper," explained the American. "It gave the name -and the church but not where the lady lived." - -"Then we had a talk as to what we should do, and Frank was all -for openness, but I was so ashamed of it all that I felt as if I -should like to vanish away and never see any of them again--just -sending a line to pa, perhaps, to show him that I was alive. It -was awful to me to think of all those lords and ladies sitting -round that breakfast-table and waiting for me to come back. So -Frank took my wedding-clothes and things and made a bundle of -them, so that I should not be traced, and dropped them away -somewhere where no one could find them. It is likely that we -should have gone on to Paris to-morrow, only that this good -gentleman, Mr. Holmes, came round to us this evening, though how -he found us is more than I can think, and he showed us very -clearly and kindly that I was wrong and that Frank was right, and -that we should be putting ourselves in the wrong if we were so -secret. Then he offered to give us a chance of talking to Lord -St. Simon alone, and so we came right away round to his rooms at -once. Now, Robert, you have heard it all, and I am very sorry if -I have given you pain, and I hope that you do not think very -meanly of me." - -Lord St. Simon had by no means relaxed his rigid attitude, but -had listened with a frowning brow and a compressed lip to this -long narrative. - -"Excuse me," he said, "but it is not my custom to discuss my most -intimate personal affairs in this public manner." - -"Then you won't forgive me? You won't shake hands before I go?" - -"Oh, certainly, if it would give you any pleasure." He put out -his hand and coldly grasped that which she extended to him. - -"I had hoped," suggested Holmes, "that you would have joined us -in a friendly supper." - -"I think that there you ask a little too much," responded his -Lordship. "I may be forced to acquiesce in these recent -developments, but I can hardly be expected to make merry over -them. I think that with your permission I will now wish you all a -very good-night." He included us all in a sweeping bow and -stalked out of the room. - -"Then I trust that you at least will honour me with your -company," said Sherlock Holmes. "It is always a joy to meet an -American, Mr. Moulton, for I am one of those who believe that the -folly of a monarch and the blundering of a minister in far-gone -years will not prevent our children from being some day citizens -of the same world-wide country under a flag which shall be a -quartering of the Union Jack with the Stars and Stripes." - -"The case has been an interesting one," remarked Holmes when our -visitors had left us, "because it serves to show very clearly how -simple the explanation may be of an affair which at first sight -seems to be almost inexplicable. Nothing could be more natural -than the sequence of events as narrated by this lady, and nothing -stranger than the result when viewed, for instance, by Mr. -Lestrade of Scotland Yard." - -"You were not yourself at fault at all, then?" - -"From the first, two facts were very obvious to me, the one that -the lady had been quite willing to undergo the wedding ceremony, -the other that she had repented of it within a few minutes of -returning home. Obviously something had occurred during the -morning, then, to cause her to change her mind. What could that -something be? She could not have spoken to anyone when she was -out, for she had been in the company of the bridegroom. Had she -seen someone, then? If she had, it must be someone from America -because she had spent so short a time in this country that she -could hardly have allowed anyone to acquire so deep an influence -over her that the mere sight of him would induce her to change -her plans so completely. You see we have already arrived, by a -process of exclusion, at the idea that she might have seen an -American. Then who could this American be, and why should he -possess so much influence over her? It might be a lover; it might -be a husband. Her young womanhood had, I knew, been spent in -rough scenes and under strange conditions. So far I had got -before I ever heard Lord St. Simon's narrative. When he told us -of a man in a pew, of the change in the bride's manner, of so -transparent a device for obtaining a note as the dropping of a -bouquet, of her resort to her confidential maid, and of her very -significant allusion to claim-jumping--which in miners' parlance -means taking possession of that which another person has a prior -claim to--the whole situation became absolutely clear. She had -gone off with a man, and the man was either a lover or was a -previous husband--the chances being in favour of the latter." - -"And how in the world did you find them?" - -"It might have been difficult, but friend Lestrade held -information in his hands the value of which he did not himself -know. The initials were, of course, of the highest importance, -but more valuable still was it to know that within a week he had -settled his bill at one of the most select London hotels." - -"How did you deduce the select?" - -"By the select prices. Eight shillings for a bed and eightpence -for a glass of sherry pointed to one of the most expensive -hotels. There are not many in London which charge at that rate. -In the second one which I visited in Northumberland Avenue, I -learned by an inspection of the book that Francis H. Moulton, an -American gentleman, had left only the day before, and on looking -over the entries against him, I came upon the very items which I -had seen in the duplicate bill. His letters were to be forwarded -to 226 Gordon Square; so thither I travelled, and being fortunate -enough to find the loving couple at home, I ventured to give them -some paternal advice and to point out to them that it would be -better in every way that they should make their position a little -clearer both to the general public and to Lord St. Simon in -particular. I invited them to meet him here, and, as you see, I -made him keep the appointment." - -"But with no very good result," I remarked. "His conduct was -certainly not very gracious." - -"Ah, Watson," said Holmes, smiling, "perhaps you would not be -very gracious either, if, after all the trouble of wooing and -wedding, you found yourself deprived in an instant of wife and of -fortune. I think that we may judge Lord St. Simon very mercifully -and thank our stars that we are never likely to find ourselves in -the same position. Draw your chair up and hand me my violin, for -the only problem we have still to solve is how to while away -these bleak autumnal evenings." - - - -XI. THE ADVENTURE OF THE BERYL CORONET - -"Holmes," said I as I stood one morning in our bow-window looking -down the street, "here is a madman coming along. It seems rather -sad that his relatives should allow him to come out alone." - -My friend rose lazily from his armchair and stood with his hands -in the pockets of his dressing-gown, looking over my shoulder. It -was a bright, crisp February morning, and the snow of the day -before still lay deep upon the ground, shimmering brightly in the -wintry sun. Down the centre of Baker Street it had been ploughed -into a brown crumbly band by the traffic, but at either side and -on the heaped-up edges of the foot-paths it still lay as white as -when it fell. The grey pavement had been cleaned and scraped, but -was still dangerously slippery, so that there were fewer -passengers than usual. Indeed, from the direction of the -Metropolitan Station no one was coming save the single gentleman -whose eccentric conduct had drawn my attention. - -He was a man of about fifty, tall, portly, and imposing, with a -massive, strongly marked face and a commanding figure. He was -dressed in a sombre yet rich style, in black frock-coat, shining -hat, neat brown gaiters, and well-cut pearl-grey trousers. Yet -his actions were in absurd contrast to the dignity of his dress -and features, for he was running hard, with occasional little -springs, such as a weary man gives who is little accustomed to -set any tax upon his legs. As he ran he jerked his hands up and -down, waggled his head, and writhed his face into the most -extraordinary contortions. - -"What on earth can be the matter with him?" I asked. "He is -looking up at the numbers of the houses." - -"I believe that he is coming here," said Holmes, rubbing his -hands. - -"Here?" - -"Yes; I rather think he is coming to consult me professionally. I -think that I recognise the symptoms. Ha! did I not tell you?" As -he spoke, the man, puffing and blowing, rushed at our door and -pulled at our bell until the whole house resounded with the -clanging. - -A few moments later he was in our room, still puffing, still -gesticulating, but with so fixed a look of grief and despair in -his eyes that our smiles were turned in an instant to horror and -pity. For a while he could not get his words out, but swayed his -body and plucked at his hair like one who has been driven to the -extreme limits of his reason. Then, suddenly springing to his -feet, he beat his head against the wall with such force that we -both rushed upon him and tore him away to the centre of the room. -Sherlock Holmes pushed him down into the easy-chair and, sitting -beside him, patted his hand and chatted with him in the easy, -soothing tones which he knew so well how to employ. - -"You have come to me to tell your story, have you not?" said he. -"You are fatigued with your haste. Pray wait until you have -recovered yourself, and then I shall be most happy to look into -any little problem which you may submit to me." - -The man sat for a minute or more with a heaving chest, fighting -against his emotion. Then he passed his handkerchief over his -brow, set his lips tight, and turned his face towards us. - -"No doubt you think me mad?" said he. - -"I see that you have had some great trouble," responded Holmes. - -"God knows I have!--a trouble which is enough to unseat my -reason, so sudden and so terrible is it. Public disgrace I might -have faced, although I am a man whose character has never yet -borne a stain. Private affliction also is the lot of every man; -but the two coming together, and in so frightful a form, have -been enough to shake my very soul. Besides, it is not I alone. -The very noblest in the land may suffer unless some way be found -out of this horrible affair." - -"Pray compose yourself, sir," said Holmes, "and let me have a -clear account of who you are and what it is that has befallen -you." - -"My name," answered our visitor, "is probably familiar to your -ears. I am Alexander Holder, of the banking firm of Holder & -Stevenson, of Threadneedle Street." - -The name was indeed well known to us as belonging to the senior -partner in the second largest private banking concern in the City -of London. What could have happened, then, to bring one of the -foremost citizens of London to this most pitiable pass? We -waited, all curiosity, until with another effort he braced -himself to tell his story. - -"I feel that time is of value," said he; "that is why I hastened -here when the police inspector suggested that I should secure -your co-operation. I came to Baker Street by the Underground and -hurried from there on foot, for the cabs go slowly through this -snow. That is why I was so out of breath, for I am a man who -takes very little exercise. I feel better now, and I will put the -facts before you as shortly and yet as clearly as I can. - -"It is, of course, well known to you that in a successful banking -business as much depends upon our being able to find remunerative -investments for our funds as upon our increasing our connection -and the number of our depositors. One of our most lucrative means -of laying out money is in the shape of loans, where the security -is unimpeachable. We have done a good deal in this direction -during the last few years, and there are many noble families to -whom we have advanced large sums upon the security of their -pictures, libraries, or plate. - -"Yesterday morning I was seated in my office at the bank when a -card was brought in to me by one of the clerks. I started when I -saw the name, for it was that of none other than--well, perhaps -even to you I had better say no more than that it was a name -which is a household word all over the earth--one of the highest, -noblest, most exalted names in England. I was overwhelmed by the -honour and attempted, when he entered, to say so, but he plunged -at once into business with the air of a man who wishes to hurry -quickly through a disagreeable task. - -"'Mr. Holder,' said he, 'I have been informed that you are in the -habit of advancing money.' - -"'The firm does so when the security is good.' I answered. - -"'It is absolutely essential to me,' said he, 'that I should have -50,000 pounds at once. I could, of course, borrow so trifling a -sum ten times over from my friends, but I much prefer to make it -a matter of business and to carry out that business myself. In my -position you can readily understand that it is unwise to place -one's self under obligations.' - -"'For how long, may I ask, do you want this sum?' I asked. - -"'Next Monday I have a large sum due to me, and I shall then most -certainly repay what you advance, with whatever interest you -think it right to charge. But it is very essential to me that the -money should be paid at once.' - -"'I should be happy to advance it without further parley from my -own private purse,' said I, 'were it not that the strain would be -rather more than it could bear. If, on the other hand, I am to do -it in the name of the firm, then in justice to my partner I must -insist that, even in your case, every businesslike precaution -should be taken.' - -"'I should much prefer to have it so,' said he, raising up a -square, black morocco case which he had laid beside his chair. -'You have doubtless heard of the Beryl Coronet?' - -"'One of the most precious public possessions of the empire,' -said I. - -"'Precisely.' He opened the case, and there, imbedded in soft, -flesh-coloured velvet, lay the magnificent piece of jewellery -which he had named. 'There are thirty-nine enormous beryls,' said -he, 'and the price of the gold chasing is incalculable. The -lowest estimate would put the worth of the coronet at double the -sum which I have asked. I am prepared to leave it with you as my -security.' - -"I took the precious case into my hands and looked in some -perplexity from it to my illustrious client. - -"'You doubt its value?' he asked. - -"'Not at all. I only doubt--' - -"'The propriety of my leaving it. You may set your mind at rest -about that. I should not dream of doing so were it not absolutely -certain that I should be able in four days to reclaim it. It is a -pure matter of form. Is the security sufficient?' - -"'Ample.' - -"'You understand, Mr. Holder, that I am giving you a strong proof -of the confidence which I have in you, founded upon all that I -have heard of you. I rely upon you not only to be discreet and to -refrain from all gossip upon the matter but, above all, to -preserve this coronet with every possible precaution because I -need not say that a great public scandal would be caused if any -harm were to befall it. Any injury to it would be almost as -serious as its complete loss, for there are no beryls in the -world to match these, and it would be impossible to replace them. -I leave it with you, however, with every confidence, and I shall -call for it in person on Monday morning.' - -"Seeing that my client was anxious to leave, I said no more but, -calling for my cashier, I ordered him to pay over fifty 1000 -pound notes. When I was alone once more, however, with the -precious case lying upon the table in front of me, I could not -but think with some misgivings of the immense responsibility -which it entailed upon me. There could be no doubt that, as it -was a national possession, a horrible scandal would ensue if any -misfortune should occur to it. I already regretted having ever -consented to take charge of it. However, it was too late to alter -the matter now, so I locked it up in my private safe and turned -once more to my work. - -"When evening came I felt that it would be an imprudence to leave -so precious a thing in the office behind me. Bankers' safes had -been forced before now, and why should not mine be? If so, how -terrible would be the position in which I should find myself! I -determined, therefore, that for the next few days I would always -carry the case backward and forward with me, so that it might -never be really out of my reach. With this intention, I called a -cab and drove out to my house at Streatham, carrying the jewel -with me. I did not breathe freely until I had taken it upstairs -and locked it in the bureau of my dressing-room. - -"And now a word as to my household, Mr. Holmes, for I wish you to -thoroughly understand the situation. My groom and my page sleep -out of the house, and may be set aside altogether. I have three -maid-servants who have been with me a number of years and whose -absolute reliability is quite above suspicion. Another, Lucy -Parr, the second waiting-maid, has only been in my service a few -months. She came with an excellent character, however, and has -always given me satisfaction. She is a very pretty girl and has -attracted admirers who have occasionally hung about the place. -That is the only drawback which we have found to her, but we -believe her to be a thoroughly good girl in every way. - -"So much for the servants. My family itself is so small that it -will not take me long to describe it. I am a widower and have an -only son, Arthur. He has been a disappointment to me, Mr. -Holmes--a grievous disappointment. I have no doubt that I am -myself to blame. People tell me that I have spoiled him. Very -likely I have. When my dear wife died I felt that he was all I -had to love. I could not bear to see the smile fade even for a -moment from his face. I have never denied him a wish. Perhaps it -would have been better for both of us had I been sterner, but I -meant it for the best. - -"It was naturally my intention that he should succeed me in my -business, but he was not of a business turn. He was wild, -wayward, and, to speak the truth, I could not trust him in the -handling of large sums of money. When he was young he became a -member of an aristocratic club, and there, having charming -manners, he was soon the intimate of a number of men with long -purses and expensive habits. He learned to play heavily at cards -and to squander money on the turf, until he had again and again -to come to me and implore me to give him an advance upon his -allowance, that he might settle his debts of honour. He tried -more than once to break away from the dangerous company which he -was keeping, but each time the influence of his friend, Sir -George Burnwell, was enough to draw him back again. - -"And, indeed, I could not wonder that such a man as Sir George -Burnwell should gain an influence over him, for he has frequently -brought him to my house, and I have found myself that I could -hardly resist the fascination of his manner. He is older than -Arthur, a man of the world to his finger-tips, one who had been -everywhere, seen everything, a brilliant talker, and a man of -great personal beauty. Yet when I think of him in cold blood, far -away from the glamour of his presence, I am convinced from his -cynical speech and the look which I have caught in his eyes that -he is one who should be deeply distrusted. So I think, and so, -too, thinks my little Mary, who has a woman's quick insight into -character. - -"And now there is only she to be described. She is my niece; but -when my brother died five years ago and left her alone in the -world I adopted her, and have looked upon her ever since as my -daughter. She is a sunbeam in my house--sweet, loving, beautiful, -a wonderful manager and housekeeper, yet as tender and quiet and -gentle as a woman could be. She is my right hand. I do not know -what I could do without her. In only one matter has she ever gone -against my wishes. Twice my boy has asked her to marry him, for -he loves her devotedly, but each time she has refused him. I -think that if anyone could have drawn him into the right path it -would have been she, and that his marriage might have changed his -whole life; but now, alas! it is too late--forever too late! - -"Now, Mr. Holmes, you know the people who live under my roof, and -I shall continue with my miserable story. - -"When we were taking coffee in the drawing-room that night after -dinner, I told Arthur and Mary my experience, and of the precious -treasure which we had under our roof, suppressing only the name -of my client. Lucy Parr, who had brought in the coffee, had, I am -sure, left the room; but I cannot swear that the door was closed. -Mary and Arthur were much interested and wished to see the famous -coronet, but I thought it better not to disturb it. - -"'Where have you put it?' asked Arthur. - -"'In my own bureau.' - -"'Well, I hope to goodness the house won't be burgled during the -night.' said he. - -"'It is locked up,' I answered. - -"'Oh, any old key will fit that bureau. When I was a youngster I -have opened it myself with the key of the box-room cupboard.' - -"He often had a wild way of talking, so that I thought little of -what he said. He followed me to my room, however, that night with -a very grave face. - -"'Look here, dad,' said he with his eyes cast down, 'can you let -me have 200 pounds?' - -"'No, I cannot!' I answered sharply. 'I have been far too -generous with you in money matters.' - -"'You have been very kind,' said he, 'but I must have this money, -or else I can never show my face inside the club again.' - -"'And a very good thing, too!' I cried. - -"'Yes, but you would not have me leave it a dishonoured man,' -said he. 'I could not bear the disgrace. I must raise the money -in some way, and if you will not let me have it, then I must try -other means.' - -"I was very angry, for this was the third demand during the -month. 'You shall not have a farthing from me,' I cried, on which -he bowed and left the room without another word. - -"When he was gone I unlocked my bureau, made sure that my -treasure was safe, and locked it again. Then I started to go -round the house to see that all was secure--a duty which I -usually leave to Mary but which I thought it well to perform -myself that night. As I came down the stairs I saw Mary herself -at the side window of the hall, which she closed and fastened as -I approached. - -"'Tell me, dad,' said she, looking, I thought, a little -disturbed, 'did you give Lucy, the maid, leave to go out -to-night?' - -"'Certainly not.' - -"'She came in just now by the back door. I have no doubt that she -has only been to the side gate to see someone, but I think that -it is hardly safe and should be stopped.' - -"'You must speak to her in the morning, or I will if you prefer -it. Are you sure that everything is fastened?' - -"'Quite sure, dad.' - -"'Then, good-night.' I kissed her and went up to my bedroom -again, where I was soon asleep. - -"I am endeavouring to tell you everything, Mr. Holmes, which may -have any bearing upon the case, but I beg that you will question -me upon any point which I do not make clear." - -"On the contrary, your statement is singularly lucid." - -"I come to a part of my story now in which I should wish to be -particularly so. I am not a very heavy sleeper, and the anxiety -in my mind tended, no doubt, to make me even less so than usual. -About two in the morning, then, I was awakened by some sound in -the house. It had ceased ere I was wide awake, but it had left an -impression behind it as though a window had gently closed -somewhere. I lay listening with all my ears. Suddenly, to my -horror, there was a distinct sound of footsteps moving softly in -the next room. I slipped out of bed, all palpitating with fear, -and peeped round the corner of my dressing-room door. - -"'Arthur!' I screamed, 'you villain! you thief! How dare you -touch that coronet?' - -"The gas was half up, as I had left it, and my unhappy boy, -dressed only in his shirt and trousers, was standing beside the -light, holding the coronet in his hands. He appeared to be -wrenching at it, or bending it with all his strength. At my cry -he dropped it from his grasp and turned as pale as death. I -snatched it up and examined it. One of the gold corners, with -three of the beryls in it, was missing. - -"'You blackguard!' I shouted, beside myself with rage. 'You have -destroyed it! You have dishonoured me forever! Where are the -jewels which you have stolen?' - -"'Stolen!' he cried. - -"'Yes, thief!' I roared, shaking him by the shoulder. - -"'There are none missing. There cannot be any missing,' said he. - -"'There are three missing. And you know where they are. Must I -call you a liar as well as a thief? Did I not see you trying to -tear off another piece?' - -"'You have called me names enough,' said he, 'I will not stand it -any longer. I shall not say another word about this business, -since you have chosen to insult me. I will leave your house in -the morning and make my own way in the world.' - -"'You shall leave it in the hands of the police!' I cried -half-mad with grief and rage. 'I shall have this matter probed to -the bottom.' - -"'You shall learn nothing from me,' said he with a passion such -as I should not have thought was in his nature. 'If you choose to -call the police, let the police find what they can.' - -"By this time the whole house was astir, for I had raised my -voice in my anger. Mary was the first to rush into my room, and, -at the sight of the coronet and of Arthur's face, she read the -whole story and, with a scream, fell down senseless on the -ground. I sent the house-maid for the police and put the -investigation into their hands at once. When the inspector and a -constable entered the house, Arthur, who had stood sullenly with -his arms folded, asked me whether it was my intention to charge -him with theft. I answered that it had ceased to be a private -matter, but had become a public one, since the ruined coronet was -national property. I was determined that the law should have its -way in everything. - -"'At least,' said he, 'you will not have me arrested at once. It -would be to your advantage as well as mine if I might leave the -house for five minutes.' - -"'That you may get away, or perhaps that you may conceal what you -have stolen,' said I. And then, realising the dreadful position -in which I was placed, I implored him to remember that not only -my honour but that of one who was far greater than I was at -stake; and that he threatened to raise a scandal which would -convulse the nation. He might avert it all if he would but tell -me what he had done with the three missing stones. - -"'You may as well face the matter,' said I; 'you have been caught -in the act, and no confession could make your guilt more heinous. -If you but make such reparation as is in your power, by telling -us where the beryls are, all shall be forgiven and forgotten.' - -"'Keep your forgiveness for those who ask for it,' he answered, -turning away from me with a sneer. I saw that he was too hardened -for any words of mine to influence him. There was but one way for -it. I called in the inspector and gave him into custody. A search -was made at once not only of his person but of his room and of -every portion of the house where he could possibly have concealed -the gems; but no trace of them could be found, nor would the -wretched boy open his mouth for all our persuasions and our -threats. This morning he was removed to a cell, and I, after -going through all the police formalities, have hurried round to -you to implore you to use your skill in unravelling the matter. -The police have openly confessed that they can at present make -nothing of it. You may go to any expense which you think -necessary. I have already offered a reward of 1000 pounds. My -God, what shall I do! I have lost my honour, my gems, and my son -in one night. Oh, what shall I do!" - -He put a hand on either side of his head and rocked himself to -and fro, droning to himself like a child whose grief has got -beyond words. - -Sherlock Holmes sat silent for some few minutes, with his brows -knitted and his eyes fixed upon the fire. - -"Do you receive much company?" he asked. - -"None save my partner with his family and an occasional friend of -Arthur's. Sir George Burnwell has been several times lately. No -one else, I think." - -"Do you go out much in society?" - -"Arthur does. Mary and I stay at home. We neither of us care for -it." - -"That is unusual in a young girl." - -"She is of a quiet nature. Besides, she is not so very young. She -is four-and-twenty." - -"This matter, from what you say, seems to have been a shock to -her also." - -"Terrible! She is even more affected than I." - -"You have neither of you any doubt as to your son's guilt?" - -"How can we have when I saw him with my own eyes with the coronet -in his hands." - -"I hardly consider that a conclusive proof. Was the remainder of -the coronet at all injured?" - -"Yes, it was twisted." - -"Do you not think, then, that he might have been trying to -straighten it?" - -"God bless you! You are doing what you can for him and for me. -But it is too heavy a task. What was he doing there at all? If -his purpose were innocent, why did he not say so?" - -"Precisely. And if it were guilty, why did he not invent a lie? -His silence appears to me to cut both ways. There are several -singular points about the case. What did the police think of the -noise which awoke you from your sleep?" - -"They considered that it might be caused by Arthur's closing his -bedroom door." - -"A likely story! As if a man bent on felony would slam his door -so as to wake a household. What did they say, then, of the -disappearance of these gems?" - -"They are still sounding the planking and probing the furniture -in the hope of finding them." - -"Have they thought of looking outside the house?" - -"Yes, they have shown extraordinary energy. The whole garden has -already been minutely examined." - -"Now, my dear sir," said Holmes, "is it not obvious to you now -that this matter really strikes very much deeper than either you -or the police were at first inclined to think? It appeared to you -to be a simple case; to me it seems exceedingly complex. Consider -what is involved by your theory. You suppose that your son came -down from his bed, went, at great risk, to your dressing-room, -opened your bureau, took out your coronet, broke off by main -force a small portion of it, went off to some other place, -concealed three gems out of the thirty-nine, with such skill that -nobody can find them, and then returned with the other thirty-six -into the room in which he exposed himself to the greatest danger -of being discovered. I ask you now, is such a theory tenable?" - -"But what other is there?" cried the banker with a gesture of -despair. "If his motives were innocent, why does he not explain -them?" - -"It is our task to find that out," replied Holmes; "so now, if -you please, Mr. Holder, we will set off for Streatham together, -and devote an hour to glancing a little more closely into -details." - -My friend insisted upon my accompanying them in their expedition, -which I was eager enough to do, for my curiosity and sympathy -were deeply stirred by the story to which we had listened. I -confess that the guilt of the banker's son appeared to me to be -as obvious as it did to his unhappy father, but still I had such -faith in Holmes' judgment that I felt that there must be some -grounds for hope as long as he was dissatisfied with the accepted -explanation. He hardly spoke a word the whole way out to the -southern suburb, but sat with his chin upon his breast and his -hat drawn over his eyes, sunk in the deepest thought. Our client -appeared to have taken fresh heart at the little glimpse of hope -which had been presented to him, and he even broke into a -desultory chat with me over his business affairs. A short railway -journey and a shorter walk brought us to Fairbank, the modest -residence of the great financier. - -Fairbank was a good-sized square house of white stone, standing -back a little from the road. A double carriage-sweep, with a -snow-clad lawn, stretched down in front to two large iron gates -which closed the entrance. On the right side was a small wooden -thicket, which led into a narrow path between two neat hedges -stretching from the road to the kitchen door, and forming the -tradesmen's entrance. On the left ran a lane which led to the -stables, and was not itself within the grounds at all, being a -public, though little used, thoroughfare. Holmes left us standing -at the door and walked slowly all round the house, across the -front, down the tradesmen's path, and so round by the garden -behind into the stable lane. So long was he that Mr. Holder and I -went into the dining-room and waited by the fire until he should -return. We were sitting there in silence when the door opened and -a young lady came in. She was rather above the middle height, -slim, with dark hair and eyes, which seemed the darker against -the absolute pallor of her skin. I do not think that I have ever -seen such deadly paleness in a woman's face. Her lips, too, were -bloodless, but her eyes were flushed with crying. As she swept -silently into the room she impressed me with a greater sense of -grief than the banker had done in the morning, and it was the -more striking in her as she was evidently a woman of strong -character, with immense capacity for self-restraint. Disregarding -my presence, she went straight to her uncle and passed her hand -over his head with a sweet womanly caress. - -"You have given orders that Arthur should be liberated, have you -not, dad?" she asked. - -"No, no, my girl, the matter must be probed to the bottom." - -"But I am so sure that he is innocent. You know what woman's -instincts are. I know that he has done no harm and that you will -be sorry for having acted so harshly." - -"Why is he silent, then, if he is innocent?" - -"Who knows? Perhaps because he was so angry that you should -suspect him." - -"How could I help suspecting him, when I actually saw him with -the coronet in his hand?" - -"Oh, but he had only picked it up to look at it. Oh, do, do take -my word for it that he is innocent. Let the matter drop and say -no more. It is so dreadful to think of our dear Arthur in -prison!" - -"I shall never let it drop until the gems are found--never, Mary! -Your affection for Arthur blinds you as to the awful consequences -to me. Far from hushing the thing up, I have brought a gentleman -down from London to inquire more deeply into it." - -"This gentleman?" she asked, facing round to me. - -"No, his friend. He wished us to leave him alone. He is round in -the stable lane now." - -"The stable lane?" She raised her dark eyebrows. "What can he -hope to find there? Ah! this, I suppose, is he. I trust, sir, -that you will succeed in proving, what I feel sure is the truth, -that my cousin Arthur is innocent of this crime." - -"I fully share your opinion, and I trust, with you, that we may -prove it," returned Holmes, going back to the mat to knock the -snow from his shoes. "I believe I have the honour of addressing -Miss Mary Holder. Might I ask you a question or two?" - -"Pray do, sir, if it may help to clear this horrible affair up." - -"You heard nothing yourself last night?" - -"Nothing, until my uncle here began to speak loudly. I heard -that, and I came down." - -"You shut up the windows and doors the night before. Did you -fasten all the windows?" - -"Yes." - -"Were they all fastened this morning?" - -"Yes." - -"You have a maid who has a sweetheart? I think that you remarked -to your uncle last night that she had been out to see him?" - -"Yes, and she was the girl who waited in the drawing-room, and -who may have heard uncle's remarks about the coronet." - -"I see. You infer that she may have gone out to tell her -sweetheart, and that the two may have planned the robbery." - -"But what is the good of all these vague theories," cried the -banker impatiently, "when I have told you that I saw Arthur with -the coronet in his hands?" - -"Wait a little, Mr. Holder. We must come back to that. About this -girl, Miss Holder. You saw her return by the kitchen door, I -presume?" - -"Yes; when I went to see if the door was fastened for the night I -met her slipping in. I saw the man, too, in the gloom." - -"Do you know him?" - -"Oh, yes! he is the green-grocer who brings our vegetables round. -His name is Francis Prosper." - -"He stood," said Holmes, "to the left of the door--that is to -say, farther up the path than is necessary to reach the door?" - -"Yes, he did." - -"And he is a man with a wooden leg?" - -Something like fear sprang up in the young lady's expressive -black eyes. "Why, you are like a magician," said she. "How do you -know that?" She smiled, but there was no answering smile in -Holmes' thin, eager face. - -"I should be very glad now to go upstairs," said he. "I shall -probably wish to go over the outside of the house again. Perhaps -I had better take a look at the lower windows before I go up." - -He walked swiftly round from one to the other, pausing only at -the large one which looked from the hall onto the stable lane. -This he opened and made a very careful examination of the sill -with his powerful magnifying lens. "Now we shall go upstairs," -said he at last. - -The banker's dressing-room was a plainly furnished little -chamber, with a grey carpet, a large bureau, and a long mirror. -Holmes went to the bureau first and looked hard at the lock. - -"Which key was used to open it?" he asked. - -"That which my son himself indicated--that of the cupboard of the -lumber-room." - -"Have you it here?" - -"That is it on the dressing-table." - -Sherlock Holmes took it up and opened the bureau. - -"It is a noiseless lock," said he. "It is no wonder that it did -not wake you. This case, I presume, contains the coronet. We must -have a look at it." He opened the case, and taking out the diadem -he laid it upon the table. It was a magnificent specimen of the -jeweller's art, and the thirty-six stones were the finest that I -have ever seen. At one side of the coronet was a cracked edge, -where a corner holding three gems had been torn away. - -"Now, Mr. Holder," said Holmes, "here is the corner which -corresponds to that which has been so unfortunately lost. Might I -beg that you will break it off." - -The banker recoiled in horror. "I should not dream of trying," -said he. - -"Then I will." Holmes suddenly bent his strength upon it, but -without result. "I feel it give a little," said he; "but, though -I am exceptionally strong in the fingers, it would take me all my -time to break it. An ordinary man could not do it. Now, what do -you think would happen if I did break it, Mr. Holder? There would -be a noise like a pistol shot. Do you tell me that all this -happened within a few yards of your bed and that you heard -nothing of it?" - -"I do not know what to think. It is all dark to me." - -"But perhaps it may grow lighter as we go. What do you think, -Miss Holder?" - -"I confess that I still share my uncle's perplexity." - -"Your son had no shoes or slippers on when you saw him?" - -"He had nothing on save only his trousers and shirt." - -"Thank you. We have certainly been favoured with extraordinary -luck during this inquiry, and it will be entirely our own fault -if we do not succeed in clearing the matter up. With your -permission, Mr. Holder, I shall now continue my investigations -outside." - -He went alone, at his own request, for he explained that any -unnecessary footmarks might make his task more difficult. For an -hour or more he was at work, returning at last with his feet -heavy with snow and his features as inscrutable as ever. - -"I think that I have seen now all that there is to see, Mr. -Holder," said he; "I can serve you best by returning to my -rooms." - -"But the gems, Mr. Holmes. Where are they?" - -"I cannot tell." - -The banker wrung his hands. "I shall never see them again!" he -cried. "And my son? You give me hopes?" - -"My opinion is in no way altered." - -"Then, for God's sake, what was this dark business which was -acted in my house last night?" - -"If you can call upon me at my Baker Street rooms to-morrow -morning between nine and ten I shall be happy to do what I can to -make it clearer. I understand that you give me carte blanche to -act for you, provided only that I get back the gems, and that you -place no limit on the sum I may draw." - -"I would give my fortune to have them back." - -"Very good. I shall look into the matter between this and then. -Good-bye; it is just possible that I may have to come over here -again before evening." - -It was obvious to me that my companion's mind was now made up -about the case, although what his conclusions were was more than -I could even dimly imagine. Several times during our homeward -journey I endeavoured to sound him upon the point, but he always -glided away to some other topic, until at last I gave it over in -despair. It was not yet three when we found ourselves in our -rooms once more. He hurried to his chamber and was down again in -a few minutes dressed as a common loafer. With his collar turned -up, his shiny, seedy coat, his red cravat, and his worn boots, he -was a perfect sample of the class. - -"I think that this should do," said he, glancing into the glass -above the fireplace. "I only wish that you could come with me, -Watson, but I fear that it won't do. I may be on the trail in -this matter, or I may be following a will-o'-the-wisp, but I -shall soon know which it is. I hope that I may be back in a few -hours." He cut a slice of beef from the joint upon the sideboard, -sandwiched it between two rounds of bread, and thrusting this -rude meal into his pocket he started off upon his expedition. - -I had just finished my tea when he returned, evidently in -excellent spirits, swinging an old elastic-sided boot in his -hand. He chucked it down into a corner and helped himself to a -cup of tea. - -"I only looked in as I passed," said he. "I am going right on." - -"Where to?" - -"Oh, to the other side of the West End. It may be some time -before I get back. Don't wait up for me in case I should be -late." - -"How are you getting on?" - -"Oh, so so. Nothing to complain of. I have been out to Streatham -since I saw you last, but I did not call at the house. It is a -very sweet little problem, and I would not have missed it for a -good deal. However, I must not sit gossiping here, but must get -these disreputable clothes off and return to my highly -respectable self." - -I could see by his manner that he had stronger reasons for -satisfaction than his words alone would imply. His eyes twinkled, -and there was even a touch of colour upon his sallow cheeks. He -hastened upstairs, and a few minutes later I heard the slam of -the hall door, which told me that he was off once more upon his -congenial hunt. - -I waited until midnight, but there was no sign of his return, so -I retired to my room. It was no uncommon thing for him to be away -for days and nights on end when he was hot upon a scent, so that -his lateness caused me no surprise. I do not know at what hour he -came in, but when I came down to breakfast in the morning there -he was with a cup of coffee in one hand and the paper in the -other, as fresh and trim as possible. - -"You will excuse my beginning without you, Watson," said he, "but -you remember that our client has rather an early appointment this -morning." - -"Why, it is after nine now," I answered. "I should not be -surprised if that were he. I thought I heard a ring." - -It was, indeed, our friend the financier. I was shocked by the -change which had come over him, for his face which was naturally -of a broad and massive mould, was now pinched and fallen in, -while his hair seemed to me at least a shade whiter. He entered -with a weariness and lethargy which was even more painful than -his violence of the morning before, and he dropped heavily into -the armchair which I pushed forward for him. - -"I do not know what I have done to be so severely tried," said -he. "Only two days ago I was a happy and prosperous man, without -a care in the world. Now I am left to a lonely and dishonoured -age. One sorrow comes close upon the heels of another. My niece, -Mary, has deserted me." - -"Deserted you?" - -"Yes. Her bed this morning had not been slept in, her room was -empty, and a note for me lay upon the hall table. I had said to -her last night, in sorrow and not in anger, that if she had -married my boy all might have been well with him. Perhaps it was -thoughtless of me to say so. It is to that remark that she refers -in this note: - -"'MY DEAREST UNCLE:--I feel that I have brought trouble upon you, -and that if I had acted differently this terrible misfortune -might never have occurred. I cannot, with this thought in my -mind, ever again be happy under your roof, and I feel that I must -leave you forever. Do not worry about my future, for that is -provided for; and, above all, do not search for me, for it will -be fruitless labour and an ill-service to me. In life or in -death, I am ever your loving,--MARY.' - -"What could she mean by that note, Mr. Holmes? Do you think it -points to suicide?" - -"No, no, nothing of the kind. It is perhaps the best possible -solution. I trust, Mr. Holder, that you are nearing the end of -your troubles." - -"Ha! You say so! You have heard something, Mr. Holmes; you have -learned something! Where are the gems?" - -"You would not think 1000 pounds apiece an excessive sum for -them?" - -"I would pay ten." - -"That would be unnecessary. Three thousand will cover the matter. -And there is a little reward, I fancy. Have you your check-book? -Here is a pen. Better make it out for 4000 pounds." - -With a dazed face the banker made out the required check. Holmes -walked over to his desk, took out a little triangular piece of -gold with three gems in it, and threw it down upon the table. - -With a shriek of joy our client clutched it up. - -"You have it!" he gasped. "I am saved! I am saved!" - -The reaction of joy was as passionate as his grief had been, and -he hugged his recovered gems to his bosom. - -"There is one other thing you owe, Mr. Holder," said Sherlock -Holmes rather sternly. - -"Owe!" He caught up a pen. "Name the sum, and I will pay it." - -"No, the debt is not to me. You owe a very humble apology to that -noble lad, your son, who has carried himself in this matter as I -should be proud to see my own son do, should I ever chance to -have one." - -"Then it was not Arthur who took them?" - -"I told you yesterday, and I repeat to-day, that it was not." - -"You are sure of it! Then let us hurry to him at once to let him -know that the truth is known." - -"He knows it already. When I had cleared it all up I had an -interview with him, and finding that he would not tell me the -story, I told it to him, on which he had to confess that I was -right and to add the very few details which were not yet quite -clear to me. Your news of this morning, however, may open his -lips." - -"For heaven's sake, tell me, then, what is this extraordinary -mystery!" - -"I will do so, and I will show you the steps by which I reached -it. And let me say to you, first, that which it is hardest for me -to say and for you to hear: there has been an understanding -between Sir George Burnwell and your niece Mary. They have now -fled together." - -"My Mary? Impossible!" - -"It is unfortunately more than possible; it is certain. Neither -you nor your son knew the true character of this man when you -admitted him into your family circle. He is one of the most -dangerous men in England--a ruined gambler, an absolutely -desperate villain, a man without heart or conscience. Your niece -knew nothing of such men. When he breathed his vows to her, as he -had done to a hundred before her, she flattered herself that she -alone had touched his heart. The devil knows best what he said, -but at least she became his tool and was in the habit of seeing -him nearly every evening." - -"I cannot, and I will not, believe it!" cried the banker with an -ashen face. - -"I will tell you, then, what occurred in your house last night. -Your niece, when you had, as she thought, gone to your room, -slipped down and talked to her lover through the window which -leads into the stable lane. His footmarks had pressed right -through the snow, so long had he stood there. She told him of the -coronet. His wicked lust for gold kindled at the news, and he -bent her to his will. I have no doubt that she loved you, but -there are women in whom the love of a lover extinguishes all -other loves, and I think that she must have been one. She had -hardly listened to his instructions when she saw you coming -downstairs, on which she closed the window rapidly and told you -about one of the servants' escapade with her wooden-legged lover, -which was all perfectly true. - -"Your boy, Arthur, went to bed after his interview with you but -he slept badly on account of his uneasiness about his club debts. -In the middle of the night he heard a soft tread pass his door, -so he rose and, looking out, was surprised to see his cousin -walking very stealthily along the passage until she disappeared -into your dressing-room. Petrified with astonishment, the lad -slipped on some clothes and waited there in the dark to see what -would come of this strange affair. Presently she emerged from the -room again, and in the light of the passage-lamp your son saw -that she carried the precious coronet in her hands. She passed -down the stairs, and he, thrilling with horror, ran along and -slipped behind the curtain near your door, whence he could see -what passed in the hall beneath. He saw her stealthily open the -window, hand out the coronet to someone in the gloom, and then -closing it once more hurry back to her room, passing quite close -to where he stood hid behind the curtain. - -"As long as she was on the scene he could not take any action -without a horrible exposure of the woman whom he loved. But the -instant that she was gone he realised how crushing a misfortune -this would be for you, and how all-important it was to set it -right. He rushed down, just as he was, in his bare feet, opened -the window, sprang out into the snow, and ran down the lane, -where he could see a dark figure in the moonlight. Sir George -Burnwell tried to get away, but Arthur caught him, and there was -a struggle between them, your lad tugging at one side of the -coronet, and his opponent at the other. In the scuffle, your son -struck Sir George and cut him over the eye. Then something -suddenly snapped, and your son, finding that he had the coronet -in his hands, rushed back, closed the window, ascended to your -room, and had just observed that the coronet had been twisted in -the struggle and was endeavouring to straighten it when you -appeared upon the scene." - -"Is it possible?" gasped the banker. - -"You then roused his anger by calling him names at a moment when -he felt that he had deserved your warmest thanks. He could not -explain the true state of affairs without betraying one who -certainly deserved little enough consideration at his hands. He -took the more chivalrous view, however, and preserved her -secret." - -"And that was why she shrieked and fainted when she saw the -coronet," cried Mr. Holder. "Oh, my God! what a blind fool I have -been! And his asking to be allowed to go out for five minutes! -The dear fellow wanted to see if the missing piece were at the -scene of the struggle. How cruelly I have misjudged him!" - -"When I arrived at the house," continued Holmes, "I at once went -very carefully round it to observe if there were any traces in -the snow which might help me. I knew that none had fallen since -the evening before, and also that there had been a strong frost -to preserve impressions. I passed along the tradesmen's path, but -found it all trampled down and indistinguishable. Just beyond it, -however, at the far side of the kitchen door, a woman had stood -and talked with a man, whose round impressions on one side showed -that he had a wooden leg. I could even tell that they had been -disturbed, for the woman had run back swiftly to the door, as was -shown by the deep toe and light heel marks, while Wooden-leg had -waited a little, and then had gone away. I thought at the time -that this might be the maid and her sweetheart, of whom you had -already spoken to me, and inquiry showed it was so. I passed -round the garden without seeing anything more than random tracks, -which I took to be the police; but when I got into the stable -lane a very long and complex story was written in the snow in -front of me. - -"There was a double line of tracks of a booted man, and a second -double line which I saw with delight belonged to a man with naked -feet. I was at once convinced from what you had told me that the -latter was your son. The first had walked both ways, but the -other had run swiftly, and as his tread was marked in places over -the depression of the boot, it was obvious that he had passed -after the other. I followed them up and found they led to the -hall window, where Boots had worn all the snow away while -waiting. Then I walked to the other end, which was a hundred -yards or more down the lane. I saw where Boots had faced round, -where the snow was cut up as though there had been a struggle, -and, finally, where a few drops of blood had fallen, to show me -that I was not mistaken. Boots had then run down the lane, and -another little smudge of blood showed that it was he who had been -hurt. When he came to the highroad at the other end, I found that -the pavement had been cleared, so there was an end to that clue. - -"On entering the house, however, I examined, as you remember, the -sill and framework of the hall window with my lens, and I could -at once see that someone had passed out. I could distinguish the -outline of an instep where the wet foot had been placed in coming -in. I was then beginning to be able to form an opinion as to what -had occurred. A man had waited outside the window; someone had -brought the gems; the deed had been overseen by your son; he had -pursued the thief; had struggled with him; they had each tugged -at the coronet, their united strength causing injuries which -neither alone could have effected. He had returned with the -prize, but had left a fragment in the grasp of his opponent. So -far I was clear. The question now was, who was the man and who -was it brought him the coronet? - -"It is an old maxim of mine that when you have excluded the -impossible, whatever remains, however improbable, must be the -truth. Now, I knew that it was not you who had brought it down, -so there only remained your niece and the maids. But if it were -the maids, why should your son allow himself to be accused in -their place? There could be no possible reason. As he loved his -cousin, however, there was an excellent explanation why he should -retain her secret--the more so as the secret was a disgraceful -one. When I remembered that you had seen her at that window, and -how she had fainted on seeing the coronet again, my conjecture -became a certainty. - -"And who could it be who was her confederate? A lover evidently, -for who else could outweigh the love and gratitude which she must -feel to you? I knew that you went out little, and that your -circle of friends was a very limited one. But among them was Sir -George Burnwell. I had heard of him before as being a man of evil -reputation among women. It must have been he who wore those boots -and retained the missing gems. Even though he knew that Arthur -had discovered him, he might still flatter himself that he was -safe, for the lad could not say a word without compromising his -own family. - -"Well, your own good sense will suggest what measures I took -next. I went in the shape of a loafer to Sir George's house, -managed to pick up an acquaintance with his valet, learned that -his master had cut his head the night before, and, finally, at -the expense of six shillings, made all sure by buying a pair of -his cast-off shoes. With these I journeyed down to Streatham and -saw that they exactly fitted the tracks." - -"I saw an ill-dressed vagabond in the lane yesterday evening," -said Mr. Holder. - -"Precisely. It was I. I found that I had my man, so I came home -and changed my clothes. It was a delicate part which I had to -play then, for I saw that a prosecution must be avoided to avert -scandal, and I knew that so astute a villain would see that our -hands were tied in the matter. I went and saw him. At first, of -course, he denied everything. But when I gave him every -particular that had occurred, he tried to bluster and took down a -life-preserver from the wall. I knew my man, however, and I -clapped a pistol to his head before he could strike. Then he -became a little more reasonable. I told him that we would give -him a price for the stones he held--1000 pounds apiece. That -brought out the first signs of grief that he had shown. 'Why, -dash it all!' said he, 'I've let them go at six hundred for the -three!' I soon managed to get the address of the receiver who had -them, on promising him that there would be no prosecution. Off I -set to him, and after much chaffering I got our stones at 1000 -pounds apiece. Then I looked in upon your son, told him that all -was right, and eventually got to my bed about two o'clock, after -what I may call a really hard day's work." - -"A day which has saved England from a great public scandal," said -the banker, rising. "Sir, I cannot find words to thank you, but -you shall not find me ungrateful for what you have done. Your -skill has indeed exceeded all that I have heard of it. And now I -must fly to my dear boy to apologise to him for the wrong which I -have done him. As to what you tell me of poor Mary, it goes to my -very heart. Not even your skill can inform me where she is now." - -"I think that we may safely say," returned Holmes, "that she is -wherever Sir George Burnwell is. It is equally certain, too, that -whatever her sins are, they will soon receive a more than -sufficient punishment." - - - -XII. THE ADVENTURE OF THE COPPER BEECHES - -"To the man who loves art for its own sake," remarked Sherlock -Holmes, tossing aside the advertisement sheet of the Daily -Telegraph, "it is frequently in its least important and lowliest -manifestations that the keenest pleasure is to be derived. It is -pleasant to me to observe, Watson, that you have so far grasped -this truth that in these little records of our cases which you -have been good enough to draw up, and, I am bound to say, -occasionally to embellish, you have given prominence not so much -to the many causes clbres and sensational trials in which I -have figured but rather to those incidents which may have been -trivial in themselves, but which have given room for those -faculties of deduction and of logical synthesis which I have made -my special province." - -"And yet," said I, smiling, "I cannot quite hold myself absolved -from the charge of sensationalism which has been urged against my -records." - -"You have erred, perhaps," he observed, taking up a glowing -cinder with the tongs and lighting with it the long cherry-wood -pipe which was wont to replace his clay when he was in a -disputatious rather than a meditative mood--"you have erred -perhaps in attempting to put colour and life into each of your -statements instead of confining yourself to the task of placing -upon record that severe reasoning from cause to effect which is -really the only notable feature about the thing." - -"It seems to me that I have done you full justice in the matter," -I remarked with some coldness, for I was repelled by the egotism -which I had more than once observed to be a strong factor in my -friend's singular character. - -"No, it is not selfishness or conceit," said he, answering, as -was his wont, my thoughts rather than my words. "If I claim full -justice for my art, it is because it is an impersonal thing--a -thing beyond myself. Crime is common. Logic is rare. Therefore it -is upon the logic rather than upon the crime that you should -dwell. You have degraded what should have been a course of -lectures into a series of tales." - -It was a cold morning of the early spring, and we sat after -breakfast on either side of a cheery fire in the old room at -Baker Street. A thick fog rolled down between the lines of -dun-coloured houses, and the opposing windows loomed like dark, -shapeless blurs through the heavy yellow wreaths. Our gas was lit -and shone on the white cloth and glimmer of china and metal, for -the table had not been cleared yet. Sherlock Holmes had been -silent all the morning, dipping continuously into the -advertisement columns of a succession of papers until at last, -having apparently given up his search, he had emerged in no very -sweet temper to lecture me upon my literary shortcomings. - -"At the same time," he remarked after a pause, during which he -had sat puffing at his long pipe and gazing down into the fire, -"you can hardly be open to a charge of sensationalism, for out of -these cases which you have been so kind as to interest yourself -in, a fair proportion do not treat of crime, in its legal sense, -at all. The small matter in which I endeavoured to help the King -of Bohemia, the singular experience of Miss Mary Sutherland, the -problem connected with the man with the twisted lip, and the -incident of the noble bachelor, were all matters which are -outside the pale of the law. But in avoiding the sensational, I -fear that you may have bordered on the trivial." - -"The end may have been so," I answered, "but the methods I hold -to have been novel and of interest." - -"Pshaw, my dear fellow, what do the public, the great unobservant -public, who could hardly tell a weaver by his tooth or a -compositor by his left thumb, care about the finer shades of -analysis and deduction! But, indeed, if you are trivial, I cannot -blame you, for the days of the great cases are past. Man, or at -least criminal man, has lost all enterprise and originality. As -to my own little practice, it seems to be degenerating into an -agency for recovering lost lead pencils and giving advice to -young ladies from boarding-schools. I think that I have touched -bottom at last, however. This note I had this morning marks my -zero-point, I fancy. Read it!" He tossed a crumpled letter across -to me. - -It was dated from Montague Place upon the preceding evening, and -ran thus: - -"DEAR MR. HOLMES:--I am very anxious to consult you as to whether -I should or should not accept a situation which has been offered -to me as governess. I shall call at half-past ten to-morrow if I -do not inconvenience you. Yours faithfully, - "VIOLET HUNTER." - -"Do you know the young lady?" I asked. - -"Not I." - -"It is half-past ten now." - -"Yes, and I have no doubt that is her ring." - -"It may turn out to be of more interest than you think. You -remember that the affair of the blue carbuncle, which appeared to -be a mere whim at first, developed into a serious investigation. -It may be so in this case, also." - -"Well, let us hope so. But our doubts will very soon be solved, -for here, unless I am much mistaken, is the person in question." - -As he spoke the door opened and a young lady entered the room. -She was plainly but neatly dressed, with a bright, quick face, -freckled like a plover's egg, and with the brisk manner of a -woman who has had her own way to make in the world. - -"You will excuse my troubling you, I am sure," said she, as my -companion rose to greet her, "but I have had a very strange -experience, and as I have no parents or relations of any sort -from whom I could ask advice, I thought that perhaps you would be -kind enough to tell me what I should do." - -"Pray take a seat, Miss Hunter. I shall be happy to do anything -that I can to serve you." - -I could see that Holmes was favourably impressed by the manner -and speech of his new client. He looked her over in his searching -fashion, and then composed himself, with his lids drooping and -his finger-tips together, to listen to her story. - -"I have been a governess for five years," said she, "in the -family of Colonel Spence Munro, but two months ago the colonel -received an appointment at Halifax, in Nova Scotia, and took his -children over to America with him, so that I found myself without -a situation. I advertised, and I answered advertisements, but -without success. At last the little money which I had saved began -to run short, and I was at my wit's end as to what I should do. - -"There is a well-known agency for governesses in the West End -called Westaway's, and there I used to call about once a week in -order to see whether anything had turned up which might suit me. -Westaway was the name of the founder of the business, but it is -really managed by Miss Stoper. She sits in her own little office, -and the ladies who are seeking employment wait in an anteroom, -and are then shown in one by one, when she consults her ledgers -and sees whether she has anything which would suit them. - -"Well, when I called last week I was shown into the little office -as usual, but I found that Miss Stoper was not alone. A -prodigiously stout man with a very smiling face and a great heavy -chin which rolled down in fold upon fold over his throat sat at -her elbow with a pair of glasses on his nose, looking very -earnestly at the ladies who entered. As I came in he gave quite a -jump in his chair and turned quickly to Miss Stoper. - -"'That will do,' said he; 'I could not ask for anything better. -Capital! capital!' He seemed quite enthusiastic and rubbed his -hands together in the most genial fashion. He was such a -comfortable-looking man that it was quite a pleasure to look at -him. - -"'You are looking for a situation, miss?' he asked. - -"'Yes, sir.' - -"'As governess?' - -"'Yes, sir.' - -"'And what salary do you ask?' - -"'I had 4 pounds a month in my last place with Colonel Spence -Munro.' - -"'Oh, tut, tut! sweating--rank sweating!' he cried, throwing his -fat hands out into the air like a man who is in a boiling -passion. 'How could anyone offer so pitiful a sum to a lady with -such attractions and accomplishments?' - -"'My accomplishments, sir, may be less than you imagine,' said I. -'A little French, a little German, music, and drawing--' - -"'Tut, tut!' he cried. 'This is all quite beside the question. -The point is, have you or have you not the bearing and deportment -of a lady? There it is in a nutshell. If you have not, you are -not fitted for the rearing of a child who may some day play a -considerable part in the history of the country. But if you have -why, then, how could any gentleman ask you to condescend to -accept anything under the three figures? Your salary with me, -madam, would commence at 100 pounds a year.' - -"You may imagine, Mr. Holmes, that to me, destitute as I was, -such an offer seemed almost too good to be true. The gentleman, -however, seeing perhaps the look of incredulity upon my face, -opened a pocket-book and took out a note. - -"'It is also my custom,' said he, smiling in the most pleasant -fashion until his eyes were just two little shining slits amid -the white creases of his face, 'to advance to my young ladies -half their salary beforehand, so that they may meet any little -expenses of their journey and their wardrobe.' - -"It seemed to me that I had never met so fascinating and so -thoughtful a man. As I was already in debt to my tradesmen, the -advance was a great convenience, and yet there was something -unnatural about the whole transaction which made me wish to know -a little more before I quite committed myself. - -"'May I ask where you live, sir?' said I. - -"'Hampshire. Charming rural place. The Copper Beeches, five miles -on the far side of Winchester. It is the most lovely country, my -dear young lady, and the dearest old country-house.' - -"'And my duties, sir? I should be glad to know what they would -be.' - -"'One child--one dear little romper just six years old. Oh, if -you could see him killing cockroaches with a slipper! Smack! -smack! smack! Three gone before you could wink!' He leaned back -in his chair and laughed his eyes into his head again. - -"I was a little startled at the nature of the child's amusement, -but the father's laughter made me think that perhaps he was -joking. - -"'My sole duties, then,' I asked, 'are to take charge of a single -child?' - -"'No, no, not the sole, not the sole, my dear young lady,' he -cried. 'Your duty would be, as I am sure your good sense would -suggest, to obey any little commands my wife might give, provided -always that they were such commands as a lady might with -propriety obey. You see no difficulty, heh?' - -"'I should be happy to make myself useful.' - -"'Quite so. In dress now, for example. We are faddy people, you -know--faddy but kind-hearted. If you were asked to wear any dress -which we might give you, you would not object to our little whim. -Heh?' - -"'No,' said I, considerably astonished at his words. - -"'Or to sit here, or sit there, that would not be offensive to -you?' - -"'Oh, no.' - -"'Or to cut your hair quite short before you come to us?' - -"I could hardly believe my ears. As you may observe, Mr. Holmes, -my hair is somewhat luxuriant, and of a rather peculiar tint of -chestnut. It has been considered artistic. I could not dream of -sacrificing it in this offhand fashion. - -"'I am afraid that that is quite impossible,' said I. He had been -watching me eagerly out of his small eyes, and I could see a -shadow pass over his face as I spoke. - -"'I am afraid that it is quite essential,' said he. 'It is a -little fancy of my wife's, and ladies' fancies, you know, madam, -ladies' fancies must be consulted. And so you won't cut your -hair?' - -"'No, sir, I really could not,' I answered firmly. - -"'Ah, very well; then that quite settles the matter. It is a -pity, because in other respects you would really have done very -nicely. In that case, Miss Stoper, I had best inspect a few more -of your young ladies.' - -"The manageress had sat all this while busy with her papers -without a word to either of us, but she glanced at me now with so -much annoyance upon her face that I could not help suspecting -that she had lost a handsome commission through my refusal. - -"'Do you desire your name to be kept upon the books?' she asked. - -"'If you please, Miss Stoper.' - -"'Well, really, it seems rather useless, since you refuse the -most excellent offers in this fashion,' said she sharply. 'You -can hardly expect us to exert ourselves to find another such -opening for you. Good-day to you, Miss Hunter.' She struck a gong -upon the table, and I was shown out by the page. - -"Well, Mr. Holmes, when I got back to my lodgings and found -little enough in the cupboard, and two or three bills upon the -table, I began to ask myself whether I had not done a very -foolish thing. After all, if these people had strange fads and -expected obedience on the most extraordinary matters, they were -at least ready to pay for their eccentricity. Very few -governesses in England are getting 100 pounds a year. Besides, -what use was my hair to me? Many people are improved by wearing -it short and perhaps I should be among the number. Next day I was -inclined to think that I had made a mistake, and by the day after -I was sure of it. I had almost overcome my pride so far as to go -back to the agency and inquire whether the place was still open -when I received this letter from the gentleman himself. I have it -here and I will read it to you: - - "'The Copper Beeches, near Winchester. -"'DEAR MISS HUNTER:--Miss Stoper has very kindly given me your -address, and I write from here to ask you whether you have -reconsidered your decision. My wife is very anxious that you -should come, for she has been much attracted by my description of -you. We are willing to give 30 pounds a quarter, or 120 pounds a -year, so as to recompense you for any little inconvenience which -our fads may cause you. They are not very exacting, after all. My -wife is fond of a particular shade of electric blue and would -like you to wear such a dress indoors in the morning. You need -not, however, go to the expense of purchasing one, as we have one -belonging to my dear daughter Alice (now in Philadelphia), which -would, I should think, fit you very well. Then, as to sitting -here or there, or amusing yourself in any manner indicated, that -need cause you no inconvenience. As regards your hair, it is no -doubt a pity, especially as I could not help remarking its beauty -during our short interview, but I am afraid that I must remain -firm upon this point, and I only hope that the increased salary -may recompense you for the loss. Your duties, as far as the child -is concerned, are very light. Now do try to come, and I shall -meet you with the dog-cart at Winchester. Let me know your train. -Yours faithfully, JEPHRO RUCASTLE.' - -"That is the letter which I have just received, Mr. Holmes, and -my mind is made up that I will accept it. I thought, however, -that before taking the final step I should like to submit the -whole matter to your consideration." - -"Well, Miss Hunter, if your mind is made up, that settles the -question," said Holmes, smiling. - -"But you would not advise me to refuse?" - -"I confess that it is not the situation which I should like to -see a sister of mine apply for." - -"What is the meaning of it all, Mr. Holmes?" - -"Ah, I have no data. I cannot tell. Perhaps you have yourself -formed some opinion?" - -"Well, there seems to me to be only one possible solution. Mr. -Rucastle seemed to be a very kind, good-natured man. Is it not -possible that his wife is a lunatic, that he desires to keep the -matter quiet for fear she should be taken to an asylum, and that -he humours her fancies in every way in order to prevent an -outbreak?" - -"That is a possible solution--in fact, as matters stand, it is -the most probable one. But in any case it does not seem to be a -nice household for a young lady." - -"But the money, Mr. Holmes, the money!" - -"Well, yes, of course the pay is good--too good. That is what -makes me uneasy. Why should they give you 120 pounds a year, when -they could have their pick for 40 pounds? There must be some -strong reason behind." - -"I thought that if I told you the circumstances you would -understand afterwards if I wanted your help. I should feel so -much stronger if I felt that you were at the back of me." - -"Oh, you may carry that feeling away with you. I assure you that -your little problem promises to be the most interesting which has -come my way for some months. There is something distinctly novel -about some of the features. If you should find yourself in doubt -or in danger--" - -"Danger! What danger do you foresee?" - -Holmes shook his head gravely. "It would cease to be a danger if -we could define it," said he. "But at any time, day or night, a -telegram would bring me down to your help." - -"That is enough." She rose briskly from her chair with the -anxiety all swept from her face. "I shall go down to Hampshire -quite easy in my mind now. I shall write to Mr. Rucastle at once, -sacrifice my poor hair to-night, and start for Winchester -to-morrow." With a few grateful words to Holmes she bade us both -good-night and bustled off upon her way. - -"At least," said I as we heard her quick, firm steps descending -the stairs, "she seems to be a young lady who is very well able -to take care of herself." - -"And she would need to be," said Holmes gravely. "I am much -mistaken if we do not hear from her before many days are past." - -It was not very long before my friend's prediction was fulfilled. -A fortnight went by, during which I frequently found my thoughts -turning in her direction and wondering what strange side-alley of -human experience this lonely woman had strayed into. The unusual -salary, the curious conditions, the light duties, all pointed to -something abnormal, though whether a fad or a plot, or whether -the man were a philanthropist or a villain, it was quite beyond -my powers to determine. As to Holmes, I observed that he sat -frequently for half an hour on end, with knitted brows and an -abstracted air, but he swept the matter away with a wave of his -hand when I mentioned it. "Data! data! data!" he cried -impatiently. "I can't make bricks without clay." And yet he would -always wind up by muttering that no sister of his should ever -have accepted such a situation. - -The telegram which we eventually received came late one night -just as I was thinking of turning in and Holmes was settling down -to one of those all-night chemical researches which he frequently -indulged in, when I would leave him stooping over a retort and a -test-tube at night and find him in the same position when I came -down to breakfast in the morning. He opened the yellow envelope, -and then, glancing at the message, threw it across to me. - -"Just look up the trains in Bradshaw," said he, and turned back -to his chemical studies. - -The summons was a brief and urgent one. - -"Please be at the Black Swan Hotel at Winchester at midday -to-morrow," it said. "Do come! I am at my wit's end. HUNTER." - -"Will you come with me?" asked Holmes, glancing up. - -"I should wish to." - -"Just look it up, then." - -"There is a train at half-past nine," said I, glancing over my -Bradshaw. "It is due at Winchester at 11:30." - -"That will do very nicely. Then perhaps I had better postpone my -analysis of the acetones, as we may need to be at our best in the -morning." - -By eleven o'clock the next day we were well upon our way to the -old English capital. Holmes had been buried in the morning papers -all the way down, but after we had passed the Hampshire border he -threw them down and began to admire the scenery. It was an ideal -spring day, a light blue sky, flecked with little fleecy white -clouds drifting across from west to east. The sun was shining -very brightly, and yet there was an exhilarating nip in the air, -which set an edge to a man's energy. All over the countryside, -away to the rolling hills around Aldershot, the little red and -grey roofs of the farm-steadings peeped out from amid the light -green of the new foliage. - -"Are they not fresh and beautiful?" I cried with all the -enthusiasm of a man fresh from the fogs of Baker Street. - -But Holmes shook his head gravely. - -"Do you know, Watson," said he, "that it is one of the curses of -a mind with a turn like mine that I must look at everything with -reference to my own special subject. You look at these scattered -houses, and you are impressed by their beauty. I look at them, -and the only thought which comes to me is a feeling of their -isolation and of the impunity with which crime may be committed -there." - -"Good heavens!" I cried. "Who would associate crime with these -dear old homesteads?" - -"They always fill me with a certain horror. It is my belief, -Watson, founded upon my experience, that the lowest and vilest -alleys in London do not present a more dreadful record of sin -than does the smiling and beautiful countryside." - -"You horrify me!" - -"But the reason is very obvious. The pressure of public opinion -can do in the town what the law cannot accomplish. There is no -lane so vile that the scream of a tortured child, or the thud of -a drunkard's blow, does not beget sympathy and indignation among -the neighbours, and then the whole machinery of justice is ever -so close that a word of complaint can set it going, and there is -but a step between the crime and the dock. But look at these -lonely houses, each in its own fields, filled for the most part -with poor ignorant folk who know little of the law. Think of the -deeds of hellish cruelty, the hidden wickedness which may go on, -year in, year out, in such places, and none the wiser. Had this -lady who appeals to us for help gone to live in Winchester, I -should never have had a fear for her. It is the five miles of -country which makes the danger. Still, it is clear that she is -not personally threatened." - -"No. If she can come to Winchester to meet us she can get away." - -"Quite so. She has her freedom." - -"What CAN be the matter, then? Can you suggest no explanation?" - -"I have devised seven separate explanations, each of which would -cover the facts as far as we know them. But which of these is -correct can only be determined by the fresh information which we -shall no doubt find waiting for us. Well, there is the tower of -the cathedral, and we shall soon learn all that Miss Hunter has -to tell." - -The Black Swan is an inn of repute in the High Street, at no -distance from the station, and there we found the young lady -waiting for us. She had engaged a sitting-room, and our lunch -awaited us upon the table. - -"I am so delighted that you have come," she said earnestly. "It -is so very kind of you both; but indeed I do not know what I -should do. Your advice will be altogether invaluable to me." - -"Pray tell us what has happened to you." - -"I will do so, and I must be quick, for I have promised Mr. -Rucastle to be back before three. I got his leave to come into -town this morning, though he little knew for what purpose." - -"Let us have everything in its due order." Holmes thrust his long -thin legs out towards the fire and composed himself to listen. - -"In the first place, I may say that I have met, on the whole, -with no actual ill-treatment from Mr. and Mrs. Rucastle. It is -only fair to them to say that. But I cannot understand them, and -I am not easy in my mind about them." - -"What can you not understand?" - -"Their reasons for their conduct. But you shall have it all just -as it occurred. When I came down, Mr. Rucastle met me here and -drove me in his dog-cart to the Copper Beeches. It is, as he -said, beautifully situated, but it is not beautiful in itself, -for it is a large square block of a house, whitewashed, but all -stained and streaked with damp and bad weather. There are grounds -round it, woods on three sides, and on the fourth a field which -slopes down to the Southampton highroad, which curves past about -a hundred yards from the front door. This ground in front belongs -to the house, but the woods all round are part of Lord -Southerton's preserves. A clump of copper beeches immediately in -front of the hall door has given its name to the place. - -"I was driven over by my employer, who was as amiable as ever, -and was introduced by him that evening to his wife and the child. -There was no truth, Mr. Holmes, in the conjecture which seemed to -us to be probable in your rooms at Baker Street. Mrs. Rucastle is -not mad. I found her to be a silent, pale-faced woman, much -younger than her husband, not more than thirty, I should think, -while he can hardly be less than forty-five. From their -conversation I have gathered that they have been married about -seven years, that he was a widower, and that his only child by -the first wife was the daughter who has gone to Philadelphia. Mr. -Rucastle told me in private that the reason why she had left them -was that she had an unreasoning aversion to her stepmother. As -the daughter could not have been less than twenty, I can quite -imagine that her position must have been uncomfortable with her -father's young wife. - -"Mrs. Rucastle seemed to me to be colourless in mind as well as -in feature. She impressed me neither favourably nor the reverse. -She was a nonentity. It was easy to see that she was passionately -devoted both to her husband and to her little son. Her light grey -eyes wandered continually from one to the other, noting every -little want and forestalling it if possible. He was kind to her -also in his bluff, boisterous fashion, and on the whole they -seemed to be a happy couple. And yet she had some secret sorrow, -this woman. She would often be lost in deep thought, with the -saddest look upon her face. More than once I have surprised her -in tears. I have thought sometimes that it was the disposition of -her child which weighed upon her mind, for I have never met so -utterly spoiled and so ill-natured a little creature. He is small -for his age, with a head which is quite disproportionately large. -His whole life appears to be spent in an alternation between -savage fits of passion and gloomy intervals of sulking. Giving -pain to any creature weaker than himself seems to be his one idea -of amusement, and he shows quite remarkable talent in planning -the capture of mice, little birds, and insects. But I would -rather not talk about the creature, Mr. Holmes, and, indeed, he -has little to do with my story." - -"I am glad of all details," remarked my friend, "whether they -seem to you to be relevant or not." - -"I shall try not to miss anything of importance. The one -unpleasant thing about the house, which struck me at once, was -the appearance and conduct of the servants. There are only two, a -man and his wife. Toller, for that is his name, is a rough, -uncouth man, with grizzled hair and whiskers, and a perpetual -smell of drink. Twice since I have been with them he has been -quite drunk, and yet Mr. Rucastle seemed to take no notice of it. -His wife is a very tall and strong woman with a sour face, as -silent as Mrs. Rucastle and much less amiable. They are a most -unpleasant couple, but fortunately I spend most of my time in the -nursery and my own room, which are next to each other in one -corner of the building. - -"For two days after my arrival at the Copper Beeches my life was -very quiet; on the third, Mrs. Rucastle came down just after -breakfast and whispered something to her husband. - -"'Oh, yes,' said he, turning to me, 'we are very much obliged to -you, Miss Hunter, for falling in with our whims so far as to cut -your hair. I assure you that it has not detracted in the tiniest -iota from your appearance. We shall now see how the electric-blue -dress will become you. You will find it laid out upon the bed in -your room, and if you would be so good as to put it on we should -both be extremely obliged.' - -"The dress which I found waiting for me was of a peculiar shade -of blue. It was of excellent material, a sort of beige, but it -bore unmistakable signs of having been worn before. It could not -have been a better fit if I had been measured for it. Both Mr. -and Mrs. Rucastle expressed a delight at the look of it, which -seemed quite exaggerated in its vehemence. They were waiting for -me in the drawing-room, which is a very large room, stretching -along the entire front of the house, with three long windows -reaching down to the floor. A chair had been placed close to the -central window, with its back turned towards it. In this I was -asked to sit, and then Mr. Rucastle, walking up and down on the -other side of the room, began to tell me a series of the funniest -stories that I have ever listened to. You cannot imagine how -comical he was, and I laughed until I was quite weary. Mrs. -Rucastle, however, who has evidently no sense of humour, never so -much as smiled, but sat with her hands in her lap, and a sad, -anxious look upon her face. After an hour or so, Mr. Rucastle -suddenly remarked that it was time to commence the duties of the -day, and that I might change my dress and go to little Edward in -the nursery. - -"Two days later this same performance was gone through under -exactly similar circumstances. Again I changed my dress, again I -sat in the window, and again I laughed very heartily at the funny -stories of which my employer had an immense rpertoire, and which -he told inimitably. Then he handed me a yellow-backed novel, and -moving my chair a little sideways, that my own shadow might not -fall upon the page, he begged me to read aloud to him. I read for -about ten minutes, beginning in the heart of a chapter, and then -suddenly, in the middle of a sentence, he ordered me to cease and -to change my dress. - -"You can easily imagine, Mr. Holmes, how curious I became as to -what the meaning of this extraordinary performance could possibly -be. They were always very careful, I observed, to turn my face -away from the window, so that I became consumed with the desire -to see what was going on behind my back. At first it seemed to be -impossible, but I soon devised a means. My hand-mirror had been -broken, so a happy thought seized me, and I concealed a piece of -the glass in my handkerchief. On the next occasion, in the midst -of my laughter, I put my handkerchief up to my eyes, and was able -with a little management to see all that there was behind me. I -confess that I was disappointed. There was nothing. At least that -was my first impression. At the second glance, however, I -perceived that there was a man standing in the Southampton Road, -a small bearded man in a grey suit, who seemed to be looking in -my direction. The road is an important highway, and there are -usually people there. This man, however, was leaning against the -railings which bordered our field and was looking earnestly up. I -lowered my handkerchief and glanced at Mrs. Rucastle to find her -eyes fixed upon me with a most searching gaze. She said nothing, -but I am convinced that she had divined that I had a mirror in my -hand and had seen what was behind me. She rose at once. - -"'Jephro,' said she, 'there is an impertinent fellow upon the -road there who stares up at Miss Hunter.' - -"'No friend of yours, Miss Hunter?' he asked. - -"'No, I know no one in these parts.' - -"'Dear me! How very impertinent! Kindly turn round and motion to -him to go away.' - -"'Surely it would be better to take no notice.' - -"'No, no, we should have him loitering here always. Kindly turn -round and wave him away like that.' - -"I did as I was told, and at the same instant Mrs. Rucastle drew -down the blind. That was a week ago, and from that time I have -not sat again in the window, nor have I worn the blue dress, nor -seen the man in the road." - -"Pray continue," said Holmes. "Your narrative promises to be a -most interesting one." - -"You will find it rather disconnected, I fear, and there may -prove to be little relation between the different incidents of -which I speak. On the very first day that I was at the Copper -Beeches, Mr. Rucastle took me to a small outhouse which stands -near the kitchen door. As we approached it I heard the sharp -rattling of a chain, and the sound as of a large animal moving -about. - -"'Look in here!' said Mr. Rucastle, showing me a slit between two -planks. 'Is he not a beauty?' - -"I looked through and was conscious of two glowing eyes, and of a -vague figure huddled up in the darkness. - -"'Don't be frightened,' said my employer, laughing at the start -which I had given. 'It's only Carlo, my mastiff. I call him mine, -but really old Toller, my groom, is the only man who can do -anything with him. We feed him once a day, and not too much then, -so that he is always as keen as mustard. Toller lets him loose -every night, and God help the trespasser whom he lays his fangs -upon. For goodness' sake don't you ever on any pretext set your -foot over the threshold at night, for it's as much as your life -is worth.' - -"The warning was no idle one, for two nights later I happened to -look out of my bedroom window about two o'clock in the morning. -It was a beautiful moonlight night, and the lawn in front of the -house was silvered over and almost as bright as day. I was -standing, rapt in the peaceful beauty of the scene, when I was -aware that something was moving under the shadow of the copper -beeches. As it emerged into the moonshine I saw what it was. It -was a giant dog, as large as a calf, tawny tinted, with hanging -jowl, black muzzle, and huge projecting bones. It walked slowly -across the lawn and vanished into the shadow upon the other side. -That dreadful sentinel sent a chill to my heart which I do not -think that any burglar could have done. - -"And now I have a very strange experience to tell you. I had, as -you know, cut off my hair in London, and I had placed it in a -great coil at the bottom of my trunk. One evening, after the -child was in bed, I began to amuse myself by examining the -furniture of my room and by rearranging my own little things. -There was an old chest of drawers in the room, the two upper ones -empty and open, the lower one locked. I had filled the first two -with my linen, and as I had still much to pack away I was -naturally annoyed at not having the use of the third drawer. It -struck me that it might have been fastened by a mere oversight, -so I took out my bunch of keys and tried to open it. The very -first key fitted to perfection, and I drew the drawer open. There -was only one thing in it, but I am sure that you would never -guess what it was. It was my coil of hair. - -"I took it up and examined it. It was of the same peculiar tint, -and the same thickness. But then the impossibility of the thing -obtruded itself upon me. How could my hair have been locked in -the drawer? With trembling hands I undid my trunk, turned out the -contents, and drew from the bottom my own hair. I laid the two -tresses together, and I assure you that they were identical. Was -it not extraordinary? Puzzle as I would, I could make nothing at -all of what it meant. I returned the strange hair to the drawer, -and I said nothing of the matter to the Rucastles as I felt that -I had put myself in the wrong by opening a drawer which they had -locked. - -"I am naturally observant, as you may have remarked, Mr. Holmes, -and I soon had a pretty good plan of the whole house in my head. -There was one wing, however, which appeared not to be inhabited -at all. A door which faced that which led into the quarters of -the Tollers opened into this suite, but it was invariably locked. -One day, however, as I ascended the stair, I met Mr. Rucastle -coming out through this door, his keys in his hand, and a look on -his face which made him a very different person to the round, -jovial man to whom I was accustomed. His cheeks were red, his -brow was all crinkled with anger, and the veins stood out at his -temples with passion. He locked the door and hurried past me -without a word or a look. - -"This aroused my curiosity, so when I went out for a walk in the -grounds with my charge, I strolled round to the side from which I -could see the windows of this part of the house. There were four -of them in a row, three of which were simply dirty, while the -fourth was shuttered up. They were evidently all deserted. As I -strolled up and down, glancing at them occasionally, Mr. Rucastle -came out to me, looking as merry and jovial as ever. - -"'Ah!' said he, 'you must not think me rude if I passed you -without a word, my dear young lady. I was preoccupied with -business matters.' - -"I assured him that I was not offended. 'By the way,' said I, -'you seem to have quite a suite of spare rooms up there, and one -of them has the shutters up.' - -"He looked surprised and, as it seemed to me, a little startled -at my remark. - -"'Photography is one of my hobbies,' said he. 'I have made my -dark room up there. But, dear me! what an observant young lady we -have come upon. Who would have believed it? Who would have ever -believed it?' He spoke in a jesting tone, but there was no jest -in his eyes as he looked at me. I read suspicion there and -annoyance, but no jest. - -"Well, Mr. Holmes, from the moment that I understood that there -was something about that suite of rooms which I was not to know, -I was all on fire to go over them. It was not mere curiosity, -though I have my share of that. It was more a feeling of duty--a -feeling that some good might come from my penetrating to this -place. They talk of woman's instinct; perhaps it was woman's -instinct which gave me that feeling. At any rate, it was there, -and I was keenly on the lookout for any chance to pass the -forbidden door. - -"It was only yesterday that the chance came. I may tell you that, -besides Mr. Rucastle, both Toller and his wife find something to -do in these deserted rooms, and I once saw him carrying a large -black linen bag with him through the door. Recently he has been -drinking hard, and yesterday evening he was very drunk; and when -I came upstairs there was the key in the door. I have no doubt at -all that he had left it there. Mr. and Mrs. Rucastle were both -downstairs, and the child was with them, so that I had an -admirable opportunity. I turned the key gently in the lock, -opened the door, and slipped through. - -"There was a little passage in front of me, unpapered and -uncarpeted, which turned at a right angle at the farther end. -Round this corner were three doors in a line, the first and third -of which were open. They each led into an empty room, dusty and -cheerless, with two windows in the one and one in the other, so -thick with dirt that the evening light glimmered dimly through -them. The centre door was closed, and across the outside of it -had been fastened one of the broad bars of an iron bed, padlocked -at one end to a ring in the wall, and fastened at the other with -stout cord. The door itself was locked as well, and the key was -not there. This barricaded door corresponded clearly with the -shuttered window outside, and yet I could see by the glimmer from -beneath it that the room was not in darkness. Evidently there was -a skylight which let in light from above. As I stood in the -passage gazing at the sinister door and wondering what secret it -might veil, I suddenly heard the sound of steps within the room -and saw a shadow pass backward and forward against the little -slit of dim light which shone out from under the door. A mad, -unreasoning terror rose up in me at the sight, Mr. Holmes. My -overstrung nerves failed me suddenly, and I turned and ran--ran -as though some dreadful hand were behind me clutching at the -skirt of my dress. I rushed down the passage, through the door, -and straight into the arms of Mr. Rucastle, who was waiting -outside. - -"'So,' said he, smiling, 'it was you, then. I thought that it -must be when I saw the door open.' - -"'Oh, I am so frightened!' I panted. - -"'My dear young lady! my dear young lady!'--you cannot think how -caressing and soothing his manner was--'and what has frightened -you, my dear young lady?' - -"But his voice was just a little too coaxing. He overdid it. I -was keenly on my guard against him. - -"'I was foolish enough to go into the empty wing,' I answered. -'But it is so lonely and eerie in this dim light that I was -frightened and ran out again. Oh, it is so dreadfully still in -there!' - -"'Only that?' said he, looking at me keenly. - -"'Why, what did you think?' I asked. - -"'Why do you think that I lock this door?' - -"'I am sure that I do not know.' - -"'It is to keep people out who have no business there. Do you -see?' He was still smiling in the most amiable manner. - -"'I am sure if I had known--' - -"'Well, then, you know now. And if you ever put your foot over -that threshold again'--here in an instant the smile hardened into -a grin of rage, and he glared down at me with the face of a -demon--'I'll throw you to the mastiff.' - -"I was so terrified that I do not know what I did. I suppose that -I must have rushed past him into my room. I remember nothing -until I found myself lying on my bed trembling all over. Then I -thought of you, Mr. Holmes. I could not live there longer without -some advice. I was frightened of the house, of the man, of the -woman, of the servants, even of the child. They were all horrible -to me. If I could only bring you down all would be well. Of -course I might have fled from the house, but my curiosity was -almost as strong as my fears. My mind was soon made up. I would -send you a wire. I put on my hat and cloak, went down to the -office, which is about half a mile from the house, and then -returned, feeling very much easier. A horrible doubt came into my -mind as I approached the door lest the dog might be loose, but I -remembered that Toller had drunk himself into a state of -insensibility that evening, and I knew that he was the only one -in the household who had any influence with the savage creature, -or who would venture to set him free. I slipped in in safety and -lay awake half the night in my joy at the thought of seeing you. -I had no difficulty in getting leave to come into Winchester this -morning, but I must be back before three o'clock, for Mr. and -Mrs. Rucastle are going on a visit, and will be away all the -evening, so that I must look after the child. Now I have told you -all my adventures, Mr. Holmes, and I should be very glad if you -could tell me what it all means, and, above all, what I should -do." - -Holmes and I had listened spellbound to this extraordinary story. -My friend rose now and paced up and down the room, his hands in -his pockets, and an expression of the most profound gravity upon -his face. - -"Is Toller still drunk?" he asked. - -"Yes. I heard his wife tell Mrs. Rucastle that she could do -nothing with him." - -"That is well. And the Rucastles go out to-night?" - -"Yes." - -"Is there a cellar with a good strong lock?" - -"Yes, the wine-cellar." - -"You seem to me to have acted all through this matter like a very -brave and sensible girl, Miss Hunter. Do you think that you could -perform one more feat? I should not ask it of you if I did not -think you a quite exceptional woman." - -"I will try. What is it?" - -"We shall be at the Copper Beeches by seven o'clock, my friend -and I. The Rucastles will be gone by that time, and Toller will, -we hope, be incapable. There only remains Mrs. Toller, who might -give the alarm. If you could send her into the cellar on some -errand, and then turn the key upon her, you would facilitate -matters immensely." - -"I will do it." - -"Excellent! We shall then look thoroughly into the affair. Of -course there is only one feasible explanation. You have been -brought there to personate someone, and the real person is -imprisoned in this chamber. That is obvious. As to who this -prisoner is, I have no doubt that it is the daughter, Miss Alice -Rucastle, if I remember right, who was said to have gone to -America. You were chosen, doubtless, as resembling her in height, -figure, and the colour of your hair. Hers had been cut off, very -possibly in some illness through which she has passed, and so, of -course, yours had to be sacrificed also. By a curious chance you -came upon her tresses. The man in the road was undoubtedly some -friend of hers--possibly her fianc--and no doubt, as you wore -the girl's dress and were so like her, he was convinced from your -laughter, whenever he saw you, and afterwards from your gesture, -that Miss Rucastle was perfectly happy, and that she no longer -desired his attentions. The dog is let loose at night to prevent -him from endeavouring to communicate with her. So much is fairly -clear. The most serious point in the case is the disposition of -the child." - -"What on earth has that to do with it?" I ejaculated. - -"My dear Watson, you as a medical man are continually gaining -light as to the tendencies of a child by the study of the -parents. Don't you see that the converse is equally valid. I have -frequently gained my first real insight into the character of -parents by studying their children. This child's disposition is -abnormally cruel, merely for cruelty's sake, and whether he -derives this from his smiling father, as I should suspect, or -from his mother, it bodes evil for the poor girl who is in their -power." - -"I am sure that you are right, Mr. Holmes," cried our client. "A -thousand things come back to me which make me certain that you -have hit it. Oh, let us lose not an instant in bringing help to -this poor creature." - -"We must be circumspect, for we are dealing with a very cunning -man. We can do nothing until seven o'clock. At that hour we shall -be with you, and it will not be long before we solve the -mystery." - -We were as good as our word, for it was just seven when we -reached the Copper Beeches, having put up our trap at a wayside -public-house. The group of trees, with their dark leaves shining -like burnished metal in the light of the setting sun, were -sufficient to mark the house even had Miss Hunter not been -standing smiling on the door-step. - -"Have you managed it?" asked Holmes. - -A loud thudding noise came from somewhere downstairs. "That is -Mrs. Toller in the cellar," said she. "Her husband lies snoring -on the kitchen rug. Here are his keys, which are the duplicates -of Mr. Rucastle's." - -"You have done well indeed!" cried Holmes with enthusiasm. "Now -lead the way, and we shall soon see the end of this black -business." - -We passed up the stair, unlocked the door, followed on down a -passage, and found ourselves in front of the barricade which Miss -Hunter had described. Holmes cut the cord and removed the -transverse bar. Then he tried the various keys in the lock, but -without success. No sound came from within, and at the silence -Holmes' face clouded over. - -"I trust that we are not too late," said he. "I think, Miss -Hunter, that we had better go in without you. Now, Watson, put -your shoulder to it, and we shall see whether we cannot make our -way in." - -It was an old rickety door and gave at once before our united -strength. Together we rushed into the room. It was empty. There -was no furniture save a little pallet bed, a small table, and a -basketful of linen. The skylight above was open, and the prisoner -gone. - -"There has been some villainy here," said Holmes; "this beauty -has guessed Miss Hunter's intentions and has carried his victim -off." - -"But how?" - -"Through the skylight. We shall soon see how he managed it." He -swung himself up onto the roof. "Ah, yes," he cried, "here's the -end of a long light ladder against the eaves. That is how he did -it." - -"But it is impossible," said Miss Hunter; "the ladder was not -there when the Rucastles went away." - -"He has come back and done it. I tell you that he is a clever and -dangerous man. I should not be very much surprised if this were -he whose step I hear now upon the stair. I think, Watson, that it -would be as well for you to have your pistol ready." - -The words were hardly out of his mouth before a man appeared at -the door of the room, a very fat and burly man, with a heavy -stick in his hand. Miss Hunter screamed and shrunk against the -wall at the sight of him, but Sherlock Holmes sprang forward and -confronted him. - -"You villain!" said he, "where's your daughter?" - -The fat man cast his eyes round, and then up at the open -skylight. - -"It is for me to ask you that," he shrieked, "you thieves! Spies -and thieves! I have caught you, have I? You are in my power. I'll -serve you!" He turned and clattered down the stairs as hard as he -could go. - -"He's gone for the dog!" cried Miss Hunter. - -"I have my revolver," said I. - -"Better close the front door," cried Holmes, and we all rushed -down the stairs together. We had hardly reached the hall when we -heard the baying of a hound, and then a scream of agony, with a -horrible worrying sound which it was dreadful to listen to. An -elderly man with a red face and shaking limbs came staggering out -at a side door. - -"My God!" he cried. "Someone has loosed the dog. It's not been -fed for two days. Quick, quick, or it'll be too late!" - -Holmes and I rushed out and round the angle of the house, with -Toller hurrying behind us. There was the huge famished brute, its -black muzzle buried in Rucastle's throat, while he writhed and -screamed upon the ground. Running up, I blew its brains out, and -it fell over with its keen white teeth still meeting in the great -creases of his neck. With much labour we separated them and -carried him, living but horribly mangled, into the house. We laid -him upon the drawing-room sofa, and having dispatched the sobered -Toller to bear the news to his wife, I did what I could to -relieve his pain. We were all assembled round him when the door -opened, and a tall, gaunt woman entered the room. - -"Mrs. Toller!" cried Miss Hunter. - -"Yes, miss. Mr. Rucastle let me out when he came back before he -went up to you. Ah, miss, it is a pity you didn't let me know -what you were planning, for I would have told you that your pains -were wasted." - -"Ha!" said Holmes, looking keenly at her. "It is clear that Mrs. -Toller knows more about this matter than anyone else." - -"Yes, sir, I do, and I am ready enough to tell what I know." - -"Then, pray, sit down, and let us hear it for there are several -points on which I must confess that I am still in the dark." - -"I will soon make it clear to you," said she; "and I'd have done -so before now if I could ha' got out from the cellar. If there's -police-court business over this, you'll remember that I was the -one that stood your friend, and that I was Miss Alice's friend -too. - -"She was never happy at home, Miss Alice wasn't, from the time -that her father married again. She was slighted like and had no -say in anything, but it never really became bad for her until -after she met Mr. Fowler at a friend's house. As well as I could -learn, Miss Alice had rights of her own by will, but she was so -quiet and patient, she was, that she never said a word about them -but just left everything in Mr. Rucastle's hands. He knew he was -safe with her; but when there was a chance of a husband coming -forward, who would ask for all that the law would give him, then -her father thought it time to put a stop on it. He wanted her to -sign a paper, so that whether she married or not, he could use -her money. When she wouldn't do it, he kept on worrying her until -she got brain-fever, and for six weeks was at death's door. Then -she got better at last, all worn to a shadow, and with her -beautiful hair cut off; but that didn't make no change in her -young man, and he stuck to her as true as man could be." - -"Ah," said Holmes, "I think that what you have been good enough -to tell us makes the matter fairly clear, and that I can deduce -all that remains. Mr. Rucastle then, I presume, took to this -system of imprisonment?" - -"Yes, sir." - -"And brought Miss Hunter down from London in order to get rid of -the disagreeable persistence of Mr. Fowler." - -"That was it, sir." - -"But Mr. Fowler being a persevering man, as a good seaman should -be, blockaded the house, and having met you succeeded by certain -arguments, metallic or otherwise, in convincing you that your -interests were the same as his." - -"Mr. Fowler was a very kind-spoken, free-handed gentleman," said -Mrs. Toller serenely. - -"And in this way he managed that your good man should have no -want of drink, and that a ladder should be ready at the moment -when your master had gone out." - -"You have it, sir, just as it happened." - -"I am sure we owe you an apology, Mrs. Toller," said Holmes, "for -you have certainly cleared up everything which puzzled us. And -here comes the country surgeon and Mrs. Rucastle, so I think, -Watson, that we had best escort Miss Hunter back to Winchester, -as it seems to me that our locus standi now is rather a -questionable one." - -And thus was solved the mystery of the sinister house with the -copper beeches in front of the door. Mr. Rucastle survived, but -was always a broken man, kept alive solely through the care of -his devoted wife. They still live with their old servants, who -probably know so much of Rucastle's past life that he finds it -difficult to part from them. Mr. Fowler and Miss Rucastle were -married, by special license, in Southampton the day after their -flight, and he is now the holder of a government appointment in -the island of Mauritius. As to Miss Violet Hunter, my friend -Holmes, rather to my disappointment, manifested no further -interest in her when once she had ceased to be the centre of one -of his problems, and she is now the head of a private school at -Walsall, where I believe that she has met with considerable success. - - - - - - - - - -End of the Project Gutenberg EBook of The Adventures of Sherlock Holmes, by -Arthur Conan Doyle - -*** END OF THIS PROJECT GUTENBERG EBOOK THE ADVENTURES OF SHERLOCK HOLMES *** - -***** This file should be named 1661-8.txt or 1661-8.zip ***** -This and all associated files of various formats will be found in: - http://www.gutenberg.org/1/6/6/1661/ - -Produced by an anonymous Project Gutenberg volunteer and Jose Menendez - -Updated editions will replace the previous one--the old editions -will be renamed. - -Creating the works from public domain print editions means that no -one owns a United States copyright in these works, so the Foundation -(and you!) can copy and distribute it in the United States without -permission and without paying copyright royalties. Special rules, -set forth in the General Terms of Use part of this license, apply to -copying and distributing Project Gutenberg-tm electronic works to -protect the PROJECT GUTENBERG-tm concept and trademark. Project -Gutenberg is a registered trademark, and may not be used if you -charge for the eBooks, unless you receive specific permission. If you -do not charge anything for copies of this eBook, complying with the -rules is very easy. You may use this eBook for nearly any purpose -such as creation of derivative works, reports, performances and -research. They may be modified and printed and given away--you may do -practically ANYTHING with public domain eBooks. Redistribution is -subject to the trademark license, especially commercial -redistribution. - - - -*** START: FULL LICENSE *** - -THE FULL PROJECT GUTENBERG LICENSE -PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK - -To protect the Project Gutenberg-tm mission of promoting the free -distribution of electronic works, by using or distributing this work -(or any other work associated in any way with the phrase "Project -Gutenberg"), you agree to comply with all the terms of the Full Project -Gutenberg-tm License (available with this file or online at -http://gutenberg.net/license). - - -Section 1. General Terms of Use and Redistributing Project Gutenberg-tm -electronic works - -1.A. By reading or using any part of this Project Gutenberg-tm -electronic work, you indicate that you have read, understand, agree to -and accept all the terms of this license and intellectual property -(trademark/copyright) agreement. If you do not agree to abide by all -the terms of this agreement, you must cease using and return or destroy -all copies of Project Gutenberg-tm electronic works in your possession. -If you paid a fee for obtaining a copy of or access to a Project -Gutenberg-tm electronic work and you do not agree to be bound by the -terms of this agreement, you may obtain a refund from the person or -entity to whom you paid the fee as set forth in paragraph 1.E.8. - -1.B. "Project Gutenberg" is a registered trademark. It may only be -used on or associated in any way with an electronic work by people who -agree to be bound by the terms of this agreement. There are a few -things that you can do with most Project Gutenberg-tm electronic works -even without complying with the full terms of this agreement. See -paragraph 1.C below. There are a lot of things you can do with Project -Gutenberg-tm electronic works if you follow the terms of this agreement -and help preserve free future access to Project Gutenberg-tm electronic -works. See paragraph 1.E below. - -1.C. The Project Gutenberg Literary Archive Foundation ("the Foundation" -or PGLAF), owns a compilation copyright in the collection of Project -Gutenberg-tm electronic works. Nearly all the individual works in the -collection are in the public domain in the United States. If an -individual work is in the public domain in the United States and you are -located in the United States, we do not claim a right to prevent you from -copying, distributing, performing, displaying or creating derivative -works based on the work as long as all references to Project Gutenberg -are removed. Of course, we hope that you will support the Project -Gutenberg-tm mission of promoting free access to electronic works by -freely sharing Project Gutenberg-tm works in compliance with the terms of -this agreement for keeping the Project Gutenberg-tm name associated with -the work. You can easily comply with the terms of this agreement by -keeping this work in the same format with its attached full Project -Gutenberg-tm License when you share it without charge with others. - -1.D. The copyright laws of the place where you are located also govern -what you can do with this work. Copyright laws in most countries are in -a constant state of change. If you are outside the United States, check -the laws of your country in addition to the terms of this agreement -before downloading, copying, displaying, performing, distributing or -creating derivative works based on this work or any other Project -Gutenberg-tm work. The Foundation makes no representations concerning -the copyright status of any work in any country outside the United -States. - -1.E. Unless you have removed all references to Project Gutenberg: - -1.E.1. The following sentence, with active links to, or other immediate -access to, the full Project Gutenberg-tm License must appear prominently -whenever any copy of a Project Gutenberg-tm work (any work on which the -phrase "Project Gutenberg" appears, or with which the phrase "Project -Gutenberg" is associated) is accessed, displayed, performed, viewed, -copied or distributed: - -This eBook is for the use of anyone anywhere at no cost and with -almost no restrictions whatsoever. You may copy it, give it away or -re-use it under the terms of the Project Gutenberg License included -with this eBook or online at www.gutenberg.net - -1.E.2. If an individual Project Gutenberg-tm electronic work is derived -from the public domain (does not contain a notice indicating that it is -posted with permission of the copyright holder), the work can be copied -and distributed to anyone in the United States without paying any fees -or charges. If you are redistributing or providing access to a work -with the phrase "Project Gutenberg" associated with or appearing on the -work, you must comply either with the requirements of paragraphs 1.E.1 -through 1.E.7 or obtain permission for the use of the work and the -Project Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or -1.E.9. - -1.E.3. If an individual Project Gutenberg-tm electronic work is posted -with the permission of the copyright holder, your use and distribution -must comply with both paragraphs 1.E.1 through 1.E.7 and any additional -terms imposed by the copyright holder. Additional terms will be linked -to the Project Gutenberg-tm License for all works posted with the -permission of the copyright holder found at the beginning of this work. - -1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm -License terms from this work, or any files containing a part of this -work or any other work associated with Project Gutenberg-tm. - -1.E.5. Do not copy, display, perform, distribute or redistribute this -electronic work, or any part of this electronic work, without -prominently displaying the sentence set forth in paragraph 1.E.1 with -active links or immediate access to the full terms of the Project -Gutenberg-tm License. - -1.E.6. You may convert to and distribute this work in any binary, -compressed, marked up, nonproprietary or proprietary form, including any -word processing or hypertext form. However, if you provide access to or -distribute copies of a Project Gutenberg-tm work in a format other than -"Plain Vanilla ASCII" or other format used in the official version -posted on the official Project Gutenberg-tm web site (www.gutenberg.net), -you must, at no additional cost, fee or expense to the user, provide a -copy, a means of exporting a copy, or a means of obtaining a copy upon -request, of the work in its original "Plain Vanilla ASCII" or other -form. Any alternate format must include the full Project Gutenberg-tm -License as specified in paragraph 1.E.1. - -1.E.7. Do not charge a fee for access to, viewing, displaying, -performing, copying or distributing any Project Gutenberg-tm works -unless you comply with paragraph 1.E.8 or 1.E.9. - -1.E.8. You may charge a reasonable fee for copies of or providing -access to or distributing Project Gutenberg-tm electronic works provided -that - -- You pay a royalty fee of 20% of the gross profits you derive from - the use of Project Gutenberg-tm works calculated using the method - you already use to calculate your applicable taxes. The fee is - owed to the owner of the Project Gutenberg-tm trademark, but he - has agreed to donate royalties under this paragraph to the - Project Gutenberg Literary Archive Foundation. Royalty payments - must be paid within 60 days following each date on which you - prepare (or are legally required to prepare) your periodic tax - returns. Royalty payments should be clearly marked as such and - sent to the Project Gutenberg Literary Archive Foundation at the - address specified in Section 4, "Information about donations to - the Project Gutenberg Literary Archive Foundation." - -- You provide a full refund of any money paid by a user who notifies - you in writing (or by e-mail) within 30 days of receipt that s/he - does not agree to the terms of the full Project Gutenberg-tm - License. You must require such a user to return or - destroy all copies of the works possessed in a physical medium - and discontinue all use of and all access to other copies of - Project Gutenberg-tm works. - -- You provide, in accordance with paragraph 1.F.3, a full refund of any - money paid for a work or a replacement copy, if a defect in the - electronic work is discovered and reported to you within 90 days - of receipt of the work. - -- You comply with all other terms of this agreement for free - distribution of Project Gutenberg-tm works. - -1.E.9. If you wish to charge a fee or distribute a Project Gutenberg-tm -electronic work or group of works on different terms than are set -forth in this agreement, you must obtain permission in writing from -both the Project Gutenberg Literary Archive Foundation and Michael -Hart, the owner of the Project Gutenberg-tm trademark. Contact the -Foundation as set forth in Section 3 below. - -1.F. - -1.F.1. Project Gutenberg volunteers and employees expend considerable -effort to identify, do copyright research on, transcribe and proofread -public domain works in creating the Project Gutenberg-tm -collection. Despite these efforts, Project Gutenberg-tm electronic -works, and the medium on which they may be stored, may contain -"Defects," such as, but not limited to, incomplete, inaccurate or -corrupt data, transcription errors, a copyright or other intellectual -property infringement, a defective or damaged disk or other medium, a -computer virus, or computer codes that damage or cannot be read by -your equipment. - -1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the "Right -of Replacement or Refund" described in paragraph 1.F.3, the Project -Gutenberg Literary Archive Foundation, the owner of the Project -Gutenberg-tm trademark, and any other party distributing a Project -Gutenberg-tm electronic work under this agreement, disclaim all -liability to you for damages, costs and expenses, including legal -fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT -LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE -PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE -TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE -LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR -INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH -DAMAGE. - -1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a -defect in this electronic work within 90 days of receiving it, you can -receive a refund of the money (if any) you paid for it by sending a -written explanation to the person you received the work from. If you -received the work on a physical medium, you must return the medium with -your written explanation. The person or entity that provided you with -the defective work may elect to provide a replacement copy in lieu of a -refund. If you received the work electronically, the person or entity -providing it to you may choose to give you a second opportunity to -receive the work electronically in lieu of a refund. If the second copy -is also defective, you may demand a refund in writing without further -opportunities to fix the problem. - -1.F.4. Except for the limited right of replacement or refund set forth -in paragraph 1.F.3, this work is provided to you 'AS-IS' WITH NO OTHER -WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO -WARRANTIES OF MERCHANTIBILITY OR FITNESS FOR ANY PURPOSE. - -1.F.5. Some states do not allow disclaimers of certain implied -warranties or the exclusion or limitation of certain types of damages. -If any disclaimer or limitation set forth in this agreement violates the -law of the state applicable to this agreement, the agreement shall be -interpreted to make the maximum disclaimer or limitation permitted by -the applicable state law. The invalidity or unenforceability of any -provision of this agreement shall not void the remaining provisions. - -1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the -trademark owner, any agent or employee of the Foundation, anyone -providing copies of Project Gutenberg-tm electronic works in accordance -with this agreement, and any volunteers associated with the production, -promotion and distribution of Project Gutenberg-tm electronic works, -harmless from all liability, costs and expenses, including legal fees, -that arise directly or indirectly from any of the following which you do -or cause to occur: (a) distribution of this or any Project Gutenberg-tm -work, (b) alteration, modification, or additions or deletions to any -Project Gutenberg-tm work, and (c) any Defect you cause. - - -Section 2. Information about the Mission of Project Gutenberg-tm - -Project Gutenberg-tm is synonymous with the free distribution of -electronic works in formats readable by the widest variety of computers -including obsolete, old, middle-aged and new computers. It exists -because of the efforts of hundreds of volunteers and donations from -people in all walks of life. - -Volunteers and financial support to provide volunteers with the -assistance they need are critical to reaching Project Gutenberg-tm's -goals and ensuring that the Project Gutenberg-tm collection will -remain freely available for generations to come. In 2001, the Project -Gutenberg Literary Archive Foundation was created to provide a secure -and permanent future for Project Gutenberg-tm and future generations. -To learn more about the Project Gutenberg Literary Archive Foundation -and how your efforts and donations can help, see Sections 3 and 4 -and the Foundation web page at http://www.pglaf.org. - - -Section 3. Information about the Project Gutenberg Literary Archive -Foundation - -The Project Gutenberg Literary Archive Foundation is a non profit -501(c)(3) educational corporation organized under the laws of the -state of Mississippi and granted tax exempt status by the Internal -Revenue Service. The Foundation's EIN or federal tax identification -number is 64-6221541. Its 501(c)(3) letter is posted at -http://pglaf.org/fundraising. Contributions to the Project Gutenberg -Literary Archive Foundation are tax deductible to the full extent -permitted by U.S. federal laws and your state's laws. - -The Foundation's principal office is located at 4557 Melan Dr. S. -Fairbanks, AK, 99712., but its volunteers and employees are scattered -throughout numerous locations. Its business office is located at -809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887, email -business@pglaf.org. Email contact links and up to date contact -information can be found at the Foundation's web site and official -page at http://pglaf.org - -For additional contact information: - Dr. Gregory B. Newby - Chief Executive and Director - gbnewby@pglaf.org - - -Section 4. Information about Donations to the Project Gutenberg -Literary Archive Foundation - -Project Gutenberg-tm depends upon and cannot survive without wide -spread public support and donations to carry out its mission of -increasing the number of public domain and licensed works that can be -freely distributed in machine readable form accessible by the widest -array of equipment including outdated equipment. Many small donations -($1 to $5,000) are particularly important to maintaining tax exempt -status with the IRS. - -The Foundation is committed to complying with the laws regulating -charities and charitable donations in all 50 states of the United -States. Compliance requirements are not uniform and it takes a -considerable effort, much paperwork and many fees to meet and keep up -with these requirements. We do not solicit donations in locations -where we have not received written confirmation of compliance. To -SEND DONATIONS or determine the status of compliance for any -particular state visit http://pglaf.org - -While we cannot and do not solicit contributions from states where we -have not met the solicitation requirements, we know of no prohibition -against accepting unsolicited donations from donors in such states who -approach us with offers to donate. - -International donations are gratefully accepted, but we cannot make -any statements concerning tax treatment of donations received from -outside the United States. U.S. laws alone swamp our small staff. - -Please check the Project Gutenberg Web pages for current donation -methods and addresses. Donations are accepted in a number of other -ways including including checks, online payments and credit card -donations. To donate, please visit: http://pglaf.org/donate - - -Section 5. General Information About Project Gutenberg-tm electronic -works. - -Professor Michael S. Hart is the originator of the Project Gutenberg-tm -concept of a library of electronic works that could be freely shared -with anyone. For thirty years, he produced and distributed Project -Gutenberg-tm eBooks with only a loose network of volunteer support. - - -Project Gutenberg-tm eBooks are often created from several printed -editions, all of which are confirmed as Public Domain in the U.S. -unless a copyright notice is included. Thus, we do not necessarily -keep eBooks in compliance with any particular paper edition. - - -Most people start at our Web site which has the main PG search facility: - - http://www.gutenberg.net - -This Web site includes information about Project Gutenberg-tm, -including how to make donations to the Project Gutenberg Literary -Archive Foundation, how to help produce our new eBooks, and how to -subscribe to our email newsletter to hear about new eBooks. diff --git a/Students/michel/Session05/sherlock_medium.txt b/Students/michel/Session05/sherlock_medium.txt deleted file mode 100644 index 560ce666..00000000 --- a/Students/michel/Session05/sherlock_medium.txt +++ /dev/null @@ -1,863 +0,0 @@ -To Sherlock Holmes she is always THE woman. I have seldom heard -him mention her under any other name. In his eyes she eclipses -and predominates the whole of her sex. It was not that he felt -any emotion akin to love for Irene Adler. All emotions, and that -one particularly, were abhorrent to his cold, precise but -admirably balanced mind. He was, I take it, the most perfect -reasoning and observing machine that the world has seen, but as a -lover he would have placed himself in a false position. He never -spoke of the softer passions, save with a gibe and a sneer. They -were admirable things for the observer--excellent for drawing the -veil from men's motives and actions. But for the trained reasoner -to admit such intrusions into his own delicate and finely -adjusted temperament was to introduce a distracting factor which -might throw a doubt upon all his mental results. Grit in a -sensitive instrument, or a crack in one of his own high-power -lenses, would not be more disturbing than a strong emotion in a -nature such as his. And yet there was but one woman to him, and -that woman was the late Irene Adler, of dubious and questionable -memory. - -I had seen little of Holmes lately. My marriage had drifted us -away from each other. My own complete happiness, and the -home-centred interests which rise up around the man who first -finds himself master of his own establishment, were sufficient to -absorb all my attention, while Holmes, who loathed every form of -society with his whole Bohemian soul, remained in our lodgings in -Baker Street, buried among his old books, and alternating from -week to week between cocaine and ambition, the drowsiness of the -drug, and the fierce energy of his own keen nature. He was still, -as ever, deeply attracted by the study of crime, and occupied his -immense faculties and extraordinary powers of observation in -following out those clues, and clearing up those mysteries which -had been abandoned as hopeless by the official police. From time -to time I heard some vague account of his doings: of his summons -to Odessa in the case of the Trepoff murder, of his clearing up -of the singular tragedy of the Atkinson brothers at Trincomalee, -and finally of the mission which he had accomplished so -delicately and successfully for the reigning family of Holland. -Beyond these signs of his activity, however, which I merely -shared with all the readers of the daily press, I knew little of -my former friend and companion. - -One night--it was on the twentieth of March, 1888--I was -returning from a journey to a patient (for I had now returned to -civil practice), when my way led me through Baker Street. As I -passed the well-remembered door, which must always be associated -in my mind with my wooing, and with the dark incidents of the -Study in Scarlet, I was seized with a keen desire to see Holmes -again, and to know how he was employing his extraordinary powers. -His rooms were brilliantly lit, and, even as I looked up, I saw -his tall, spare figure pass twice in a dark silhouette against -the blind. He was pacing the room swiftly, eagerly, with his head -sunk upon his chest and his hands clasped behind him. To me, who -knew his every mood and habit, his attitude and manner told their -own story. He was at work again. He had risen out of his -drug-created dreams and was hot upon the scent of some new -problem. I rang the bell and was shown up to the chamber which -had formerly been in part my own. - -His manner was not effusive. It seldom was; but he was glad, I -think, to see me. With hardly a word spoken, but with a kindly -eye, he waved me to an armchair, threw across his case of cigars, -and indicated a spirit case and a gasogene in the corner. Then he -stood before the fire and looked me over in his singular -introspective fashion. - -"Wedlock suits you," he remarked. "I think, Watson, that you have -put on seven and a half pounds since I saw you." - -"Seven!" I answered. - -"Indeed, I should have thought a little more. Just a trifle more, -I fancy, Watson. And in practice again, I observe. You did not -tell me that you intended to go into harness." - -"Then, how do you know?" - -"I see it, I deduce it. How do I know that you have been getting -yourself very wet lately, and that you have a most clumsy and -careless servant girl?" - -"My dear Holmes," said I, "this is too much. You would certainly -have been burned, had you lived a few centuries ago. It is true -that I had a country walk on Thursday and came home in a dreadful -mess, but as I have changed my clothes I can't imagine how you -deduce it. As to Mary Jane, she is incorrigible, and my wife has -given her notice, but there, again, I fail to see how you work it -out." - -He chuckled to himself and rubbed his long, nervous hands -together. - -"It is simplicity itself," said he; "my eyes tell me that on the -inside of your left shoe, just where the firelight strikes it, -the leather is scored by six almost parallel cuts. Obviously they -have been caused by someone who has very carelessly scraped round -the edges of the sole in order to remove crusted mud from it. -Hence, you see, my double deduction that you had been out in vile -weather, and that you had a particularly malignant boot-slitting -specimen of the London slavey. As to your practice, if a -gentleman walks into my rooms smelling of iodoform, with a black -mark of nitrate of silver upon his right forefinger, and a bulge -on the right side of his top-hat to show where he has secreted -his stethoscope, I must be dull, indeed, if I do not pronounce -him to be an active member of the medical profession." - -I could not help laughing at the ease with which he explained his -process of deduction. "When I hear you give your reasons," I -remarked, "the thing always appears to me to be so ridiculously -simple that I could easily do it myself, though at each -successive instance of your reasoning I am baffled until you -explain your process. And yet I believe that my eyes are as good -as yours." - -"Quite so," he answered, lighting a cigarette, and throwing -himself down into an armchair. "You see, but you do not observe. -The distinction is clear. For example, you have frequently seen -the steps which lead up from the hall to this room." - -"Frequently." - -"How often?" - -"Well, some hundreds of times." - -"Then how many are there?" - -"How many? I don't know." - -"Quite so! You have not observed. And yet you have seen. That is -just my point. Now, I know that there are seventeen steps, -because I have both seen and observed. By-the-way, since you are -interested in these little problems, and since you are good -enough to chronicle one or two of my trifling experiences, you -may be interested in this." He threw over a sheet of thick, -pink-tinted note-paper which had been lying open upon the table. -"It came by the last post," said he. "Read it aloud." - -The note was undated, and without either signature or address. - -"There will call upon you to-night, at a quarter to eight -o'clock," it said, "a gentleman who desires to consult you upon a -matter of the very deepest moment. Your recent services to one of -the royal houses of Europe have shown that you are one who may -safely be trusted with matters which are of an importance which -can hardly be exaggerated. This account of you we have from all -quarters received. Be in your chamber then at that hour, and do -not take it amiss if your visitor wear a mask." - -"This is indeed a mystery," I remarked. "What do you imagine that -it means?" - -"I have no data yet. It is a capital mistake to theorize before -one has data. Insensibly one begins to twist facts to suit -theories, instead of theories to suit facts. But the note itself. -What do you deduce from it?" - -I carefully examined the writing, and the paper upon which it was -written. - -"The man who wrote it was presumably well to do," I remarked, -endeavouring to imitate my companion's processes. "Such paper -could not be bought under half a crown a packet. It is peculiarly -strong and stiff." - -"Peculiar--that is the very word," said Holmes. "It is not an -English paper at all. Hold it up to the light." - -I did so, and saw a large "E" with a small "g," a "P," and a -large "G" with a small "t" woven into the texture of the paper. - -"What do you make of that?" asked Holmes. - -"The name of the maker, no doubt; or his monogram, rather." - -"Not at all. The 'G' with the small 't' stands for -'Gesellschaft,' which is the German for 'Company.' It is a -customary contraction like our 'Co.' 'P,' of course, stands for -'Papier.' Now for the 'Eg.' Let us glance at our Continental -Gazetteer." He took down a heavy brown volume from his shelves. -"Eglow, Eglonitz--here we are, Egria. It is in a German-speaking -country--in Bohemia, not far from Carlsbad. 'Remarkable as being -the scene of the death of Wallenstein, and for its numerous -glass-factories and paper-mills.' Ha, ha, my boy, what do you -make of that?" His eyes sparkled, and he sent up a great blue -triumphant cloud from his cigarette. - -"The paper was made in Bohemia," I said. - -"Precisely. And the man who wrote the note is a German. Do you -note the peculiar construction of the sentence--'This account of -you we have from all quarters received.' A Frenchman or Russian -could not have written that. It is the German who is so -uncourteous to his verbs. It only remains, therefore, to discover -what is wanted by this German who writes upon Bohemian paper and -prefers wearing a mask to showing his face. And here he comes, if -I am not mistaken, to resolve all our doubts." - -As he spoke there was the sharp sound of horses' hoofs and -grating wheels against the curb, followed by a sharp pull at the -bell. Holmes whistled. - -"A pair, by the sound," said he. "Yes," he continued, glancing -out of the window. "A nice little brougham and a pair of -beauties. A hundred and fifty guineas apiece. There's money in -this case, Watson, if there is nothing else." - -"I think that I had better go, Holmes." - -"Not a bit, Doctor. Stay where you are. I am lost without my -Boswell. And this promises to be interesting. It would be a pity -to miss it." - -"But your client--" - -"Never mind him. I may want your help, and so may he. Here he -comes. Sit down in that armchair, Doctor, and give us your best -attention." - -A slow and heavy step, which had been heard upon the stairs and -in the passage, paused immediately outside the door. Then there -was a loud and authoritative tap. - -"Come in!" said Holmes. - -A man entered who could hardly have been less than six feet six -inches in height, with the chest and limbs of a Hercules. His -dress was rich with a richness which would, in England, be looked -upon as akin to bad taste. Heavy bands of astrakhan were slashed -across the sleeves and fronts of his double-breasted coat, while -the deep blue cloak which was thrown over his shoulders was lined -with flame-coloured silk and secured at the neck with a brooch -which consisted of a single flaming beryl. Boots which extended -halfway up his calves, and which were trimmed at the tops with -rich brown fur, completed the impression of barbaric opulence -which was suggested by his whole appearance. He carried a -broad-brimmed hat in his hand, while he wore across the upper -part of his face, extending down past the cheekbones, a black -vizard mask, which he had apparently adjusted that very moment, -for his hand was still raised to it as he entered. From the lower -part of the face he appeared to be a man of strong character, -with a thick, hanging lip, and a long, straight chin suggestive -of resolution pushed to the length of obstinacy. - -"You had my note?" he asked with a deep harsh voice and a -strongly marked German accent. "I told you that I would call." He -looked from one to the other of us, as if uncertain which to -address. - -"Pray take a seat," said Holmes. "This is my friend and -colleague, Dr. Watson, who is occasionally good enough to help me -in my cases. Whom have I the honour to address?" - -"You may address me as the Count Von Kramm, a Bohemian nobleman. -I understand that this gentleman, your friend, is a man of honour -and discretion, whom I may trust with a matter of the most -extreme importance. If not, I should much prefer to communicate -with you alone." - -I rose to go, but Holmes caught me by the wrist and pushed me -back into my chair. "It is both, or none," said he. "You may say -before this gentleman anything which you may say to me." - -The Count shrugged his broad shoulders. "Then I must begin," said -he, "by binding you both to absolute secrecy for two years; at -the end of that time the matter will be of no importance. At -present it is not too much to say that it is of such weight it -may have an influence upon European history." - -"I promise," said Holmes. - -"And I." - -"You will excuse this mask," continued our strange visitor. "The -august person who employs me wishes his agent to be unknown to -you, and I may confess at once that the title by which I have -just called myself is not exactly my own." - -"I was aware of it," said Holmes dryly. - -"The circumstances are of great delicacy, and every precaution -has to be taken to quench what might grow to be an immense -scandal and seriously compromise one of the reigning families of -Europe. To speak plainly, the matter implicates the great House -of Ormstein, hereditary kings of Bohemia." - -"I was also aware of that," murmured Holmes, settling himself -down in his armchair and closing his eyes. - -Our visitor glanced with some apparent surprise at the languid, -lounging figure of the man who had been no doubt depicted to him -as the most incisive reasoner and most energetic agent in Europe. -Holmes slowly reopened his eyes and looked impatiently at his -gigantic client. - -"If your Majesty would condescend to state your case," he -remarked, "I should be better able to advise you." - -The man sprang from his chair and paced up and down the room in -uncontrollable agitation. Then, with a gesture of desperation, he -tore the mask from his face and hurled it upon the ground. "You -are right," he cried; "I am the King. Why should I attempt to -conceal it?" - -"Why, indeed?" murmured Holmes. "Your Majesty had not spoken -before I was aware that I was addressing Wilhelm Gottsreich -Sigismond von Ormstein, Grand Duke of Cassel-Felstein, and -hereditary King of Bohemia." - -"But you can understand," said our strange visitor, sitting down -once more and passing his hand over his high white forehead, "you -can understand that I am not accustomed to doing such business in -my own person. Yet the matter was so delicate that I could not -confide it to an agent without putting myself in his power. I -have come incognito from Prague for the purpose of consulting -you." - -"Then, pray consult," said Holmes, shutting his eyes once more. - -"The facts are briefly these: Some five years ago, during a -lengthy visit to Warsaw, I made the acquaintance of the well-known -adventuress, Irene Adler. The name is no doubt familiar to you." - -"Kindly look her up in my index, Doctor," murmured Holmes without -opening his eyes. For many years he had adopted a system of -docketing all paragraphs concerning men and things, so that it -was difficult to name a subject or a person on which he could not -at once furnish information. In this case I found her biography -sandwiched in between that of a Hebrew rabbi and that of a -staff-commander who had written a monograph upon the deep-sea -fishes. - -"Let me see!" said Holmes. "Hum! Born in New Jersey in the year -1858. Contralto--hum! La Scala, hum! Prima donna Imperial Opera -of Warsaw--yes! Retired from operatic stage--ha! Living in -London--quite so! Your Majesty, as I understand, became entangled -with this young person, wrote her some compromising letters, and -is now desirous of getting those letters back." - -"Precisely so. But how--" - -"Was there a secret marriage?" - -"None." - -"No legal papers or certificates?" - -"None." - -"Then I fail to follow your Majesty. If this young person should -produce her letters for blackmailing or other purposes, how is -she to prove their authenticity?" - -"There is the writing." - -"Pooh, pooh! Forgery." - -"My private note-paper." - -"Stolen." - -"My own seal." - -"Imitated." - -"My photograph." - -"Bought." - -"We were both in the photograph." - -"Oh, dear! That is very bad! Your Majesty has indeed committed an -indiscretion." - -"I was mad--insane." - -"You have compromised yourself seriously." - -"I was only Crown Prince then. I was young. I am but thirty now." - -"It must be recovered." - -"We have tried and failed." - -"Your Majesty must pay. It must be bought." - -"She will not sell." - -"Stolen, then." - -"Five attempts have been made. Twice burglars in my pay ransacked -her house. Once we diverted her luggage when she travelled. Twice -she has been waylaid. There has been no result." - -"No sign of it?" - -"Absolutely none." - -Holmes laughed. "It is quite a pretty little problem," said he. - -"But a very serious one to me," returned the King reproachfully. - -"Very, indeed. And what does she propose to do with the -photograph?" - -"To ruin me." - -"But how?" - -"I am about to be married." - -"So I have heard." - -"To Clotilde Lothman von Saxe-Meningen, second daughter of the -King of Scandinavia. You may know the strict principles of her -family. She is herself the very soul of delicacy. A shadow of a -doubt as to my conduct would bring the matter to an end." - -"And Irene Adler?" - -"Threatens to send them the photograph. And she will do it. I -know that she will do it. You do not know her, but she has a soul -of steel. She has the face of the most beautiful of women, and -the mind of the most resolute of men. Rather than I should marry -another woman, there are no lengths to which she would not -go--none." - -"You are sure that she has not sent it yet?" - -"I am sure." - -"And why?" - -"Because she has said that she would send it on the day when the -betrothal was publicly proclaimed. That will be next Monday." - -"Oh, then we have three days yet," said Holmes with a yawn. "That -is very fortunate, as I have one or two matters of importance to -look into just at present. Your Majesty will, of course, stay in -London for the present?" - -"Certainly. You will find me at the Langham under the name of the -Count Von Kramm." - -"Then I shall drop you a line to let you know how we progress." - -"Pray do so. I shall be all anxiety." - -"Then, as to money?" - -"You have carte blanche." - -"Absolutely?" - -"I tell you that I would give one of the provinces of my kingdom -to have that photograph." - -"And for present expenses?" - -The King took a heavy chamois leather bag from under his cloak -and laid it on the table. - -"There are three hundred pounds in gold and seven hundred in -notes," he said. - -Holmes scribbled a receipt upon a sheet of his note-book and -handed it to him. - -"And Mademoiselle's address?" he asked. - -"Is Briony Lodge, Serpentine Avenue, St. John's Wood." - -Holmes took a note of it. "One other question," said he. "Was the -photograph a cabinet?" - -"It was." - -"Then, good-night, your Majesty, and I trust that we shall soon -have some good news for you. And good-night, Watson," he added, -as the wheels of the royal brougham rolled down the street. "If -you will be good enough to call to-morrow afternoon at three -o'clock I should like to chat this little matter over with you." - - -II. - -At three o'clock precisely I was at Baker Street, but Holmes had -not yet returned. The landlady informed me that he had left the -house shortly after eight o'clock in the morning. I sat down -beside the fire, however, with the intention of awaiting him, -however long he might be. I was already deeply interested in his -inquiry, for, though it was surrounded by none of the grim and -strange features which were associated with the two crimes which -I have already recorded, still, the nature of the case and the -exalted station of his client gave it a character of its own. -Indeed, apart from the nature of the investigation which my -friend had on hand, there was something in his masterly grasp of -a situation, and his keen, incisive reasoning, which made it a -pleasure to me to study his system of work, and to follow the -quick, subtle methods by which he disentangled the most -inextricable mysteries. So accustomed was I to his invariable -success that the very possibility of his failing had ceased to -enter into my head. - -It was close upon four before the door opened, and a -drunken-looking groom, ill-kempt and side-whiskered, with an -inflamed face and disreputable clothes, walked into the room. -Accustomed as I was to my friend's amazing powers in the use of -disguises, I had to look three times before I was certain that it -was indeed he. With a nod he vanished into the bedroom, whence he -emerged in five minutes tweed-suited and respectable, as of old. -Putting his hands into his pockets, he stretched out his legs in -front of the fire and laughed heartily for some minutes. - -"Well, really!" he cried, and then he choked and laughed again -until he was obliged to lie back, limp and helpless, in the -chair. - -"What is it?" - -"It's quite too funny. I am sure you could never guess how I -employed my morning, or what I ended by doing." - -"I can't imagine. I suppose that you have been watching the -habits, and perhaps the house, of Miss Irene Adler." - -"Quite so; but the sequel was rather unusual. I will tell you, -however. I left the house a little after eight o'clock this -morning in the character of a groom out of work. There is a -wonderful sympathy and freemasonry among horsey men. Be one of -them, and you will know all that there is to know. I soon found -Briony Lodge. It is a bijou villa, with a garden at the back, but -built out in front right up to the road, two stories. Chubb lock -to the door. Large sitting-room on the right side, well -furnished, with long windows almost to the floor, and those -preposterous English window fasteners which a child could open. -Behind there was nothing remarkable, save that the passage window -could be reached from the top of the coach-house. I walked round -it and examined it closely from every point of view, but without -noting anything else of interest. - -"I then lounged down the street and found, as I expected, that -there was a mews in a lane which runs down by one wall of the -garden. I lent the ostlers a hand in rubbing down their horses, -and received in exchange twopence, a glass of half and half, two -fills of shag tobacco, and as much information as I could desire -about Miss Adler, to say nothing of half a dozen other people in -the neighbourhood in whom I was not in the least interested, but -whose biographies I was compelled to listen to." - -"And what of Irene Adler?" I asked. - -"Oh, she has turned all the men's heads down in that part. She is -the daintiest thing under a bonnet on this planet. So say the -Serpentine-mews, to a man. She lives quietly, sings at concerts, -drives out at five every day, and returns at seven sharp for -dinner. Seldom goes out at other times, except when she sings. -Has only one male visitor, but a good deal of him. He is dark, -handsome, and dashing, never calls less than once a day, and -often twice. He is a Mr. Godfrey Norton, of the Inner Temple. See -the advantages of a cabman as a confidant. They had driven him -home a dozen times from Serpentine-mews, and knew all about him. -When I had listened to all they had to tell, I began to walk up -and down near Briony Lodge once more, and to think over my plan -of campaign. - -"This Godfrey Norton was evidently an important factor in the -matter. He was a lawyer. That sounded ominous. What was the -relation between them, and what the object of his repeated -visits? Was she his client, his friend, or his mistress? If the -former, she had probably transferred the photograph to his -keeping. If the latter, it was less likely. On the issue of this -question depended whether I should continue my work at Briony -Lodge, or turn my attention to the gentleman's chambers in the -Temple. It was a delicate point, and it widened the field of my -inquiry. I fear that I bore you with these details, but I have to -let you see my little difficulties, if you are to understand the -situation." - -"I am following you closely," I answered. - -"I was still balancing the matter in my mind when a hansom cab -drove up to Briony Lodge, and a gentleman sprang out. He was a -remarkably handsome man, dark, aquiline, and moustached--evidently -the man of whom I had heard. He appeared to be in a -great hurry, shouted to the cabman to wait, and brushed past the -maid who opened the door with the air of a man who was thoroughly -at home. - -"He was in the house about half an hour, and I could catch -glimpses of him in the windows of the sitting-room, pacing up and -down, talking excitedly, and waving his arms. Of her I could see -nothing. Presently he emerged, looking even more flurried than -before. As he stepped up to the cab, he pulled a gold watch from -his pocket and looked at it earnestly, 'Drive like the devil,' he -shouted, 'first to Gross & Hankey's in Regent Street, and then to -the Church of St. Monica in the Edgeware Road. Half a guinea if -you do it in twenty minutes!' - -"Away they went, and I was just wondering whether I should not do -well to follow them when up the lane came a neat little landau, -the coachman with his coat only half-buttoned, and his tie under -his ear, while all the tags of his harness were sticking out of -the buckles. It hadn't pulled up before she shot out of the hall -door and into it. I only caught a glimpse of her at the moment, -but she was a lovely woman, with a face that a man might die for. - -"'The Church of St. Monica, John,' she cried, 'and half a -sovereign if you reach it in twenty minutes.' - -"This was quite too good to lose, Watson. I was just balancing -whether I should run for it, or whether I should perch behind her -landau when a cab came through the street. The driver looked -twice at such a shabby fare, but I jumped in before he could -object. 'The Church of St. Monica,' said I, 'and half a sovereign -if you reach it in twenty minutes.' It was twenty-five minutes to -twelve, and of course it was clear enough what was in the wind. - -"My cabby drove fast. I don't think I ever drove faster, but the -others were there before us. The cab and the landau with their -steaming horses were in front of the door when I arrived. I paid -the man and hurried into the church. There was not a soul there -save the two whom I had followed and a surpliced clergyman, who -seemed to be expostulating with them. They were all three -standing in a knot in front of the altar. I lounged up the side -aisle like any other idler who has dropped into a church. -Suddenly, to my surprise, the three at the altar faced round to -me, and Godfrey Norton came running as hard as he could towards -me. - -"'Thank God,' he cried. 'You'll do. Come! Come!' - -"'What then?' I asked. - -"'Come, man, come, only three minutes, or it won't be legal.' - -"I was half-dragged up to the altar, and before I knew where I was -I found myself mumbling responses which were whispered in my ear, -and vouching for things of which I knew nothing, and generally -assisting in the secure tying up of Irene Adler, spinster, to -Godfrey Norton, bachelor. It was all done in an instant, and -there was the gentleman thanking me on the one side and the lady -on the other, while the clergyman beamed on me in front. It was -the most preposterous position in which I ever found myself in my -life, and it was the thought of it that started me laughing just -now. It seems that there had been some informality about their -license, that the clergyman absolutely refused to marry them -without a witness of some sort, and that my lucky appearance -saved the bridegroom from having to sally out into the streets in -search of a best man. The bride gave me a sovereign, and I mean -to wear it on my watch-chain in memory of the occasion." - -"This is a very unexpected turn of affairs," said I; "and what -then?" - -"Well, I found my plans very seriously menaced. It looked as if -the pair might take an immediate departure, and so necessitate -very prompt and energetic measures on my part. At the church -door, however, they separated, he driving back to the Temple, and -she to her own house. 'I shall drive out in the park at five as -usual,' she said as she left him. I heard no more. They drove -away in different directions, and I went off to make my own -arrangements." - -"Which are?" - -"Some cold beef and a glass of beer," he answered, ringing the -bell. "I have been too busy to think of food, and I am likely to -be busier still this evening. By the way, Doctor, I shall want -your co-operation." - -"I shall be delighted." - -"You don't mind breaking the law?" - -"Not in the least." - -"Nor running a chance of arrest?" - -"Not in a good cause." - -"Oh, the cause is excellent!" - -"Then I am your man." - -"I was sure that I might rely on you." - -"But what is it you wish?" - -"When Mrs. Turner has brought in the tray I will make it clear to -you. Now," he said as he turned hungrily on the simple fare that -our landlady had provided, "I must discuss it while I eat, for I -have not much time. It is nearly five now. In two hours we must -be on the scene of action. Miss Irene, or Madame, rather, returns -from her drive at seven. We must be at Briony Lodge to meet her." - -"And what then?" - -"You must leave that to me. I have already arranged what is to -occur. There is only one point on which I must insist. You must -not interfere, come what may. You understand?" - -"I am to be neutral?" - -"To do nothing whatever. There will probably be some small -unpleasantness. Do not join in it. It will end in my being -conveyed into the house. Four or five minutes afterwards the -sitting-room window will open. You are to station yourself close -to that open window." - -"Yes." - -"You are to watch me, for I will be visible to you." - -"Yes." - -"And when I raise my hand--so--you will throw into the room what -I give you to throw, and will, at the same time, raise the cry of -fire. You quite follow me?" - -"Entirely." - -"It is nothing very formidable," he said, taking a long cigar-shaped -roll from his pocket. "It is an ordinary plumber's smoke-rocket, -fitted with a cap at either end to make it self-lighting. -Your task is confined to that. When you raise your cry of fire, -it will be taken up by quite a number of people. You may then -walk to the end of the street, and I will rejoin you in ten -minutes. I hope that I have made myself clear?" - -"I am to remain neutral, to get near the window, to watch you, -and at the signal to throw in this object, then to raise the cry -of fire, and to wait you at the corner of the street." - -"Precisely." - -"Then you may entirely rely on me." - -"That is excellent. I think, perhaps, it is almost time that I -prepare for the new role I have to play." - -He disappeared into his bedroom and returned in a few minutes in -the character of an amiable and simple-minded Nonconformist -clergyman. His broad black hat, his baggy trousers, his white -tie, his sympathetic smile, and general look of peering and -benevolent curiosity were such as Mr. John Hare alone could have -equalled. It was not merely that Holmes changed his costume. His -expression, his manner, his very soul seemed to vary with every -fresh part that he assumed. The stage lost a fine actor, even as -science lost an acute reasoner, when he became a specialist in -crime. - -It was a quarter past six when we left Baker Street, and it still -wanted ten minutes to the hour when we found ourselves in -Serpentine Avenue. It was already dusk, and the lamps were just -being lighted as we paced up and down in front of Briony Lodge, -waiting for the coming of its occupant. The house was just such -as I had pictured it from Sherlock Holmes' succinct description, -but the locality appeared to be less private than I expected. On -the contrary, for a small street in a quiet neighbourhood, it was -remarkably animated. There was a group of shabbily dressed men -smoking and laughing in a corner, a scissors-grinder with his -wheel, two guardsmen who were flirting with a nurse-girl, and -several well-dressed young men who were lounging up and down with -cigars in their mouths. - -"You see," remarked Holmes, as we paced to and fro in front of -the house, "this marriage rather simplifies matters. The -photograph becomes a double-edged weapon now. The chances are -that she would be as averse to its being seen by Mr. Godfrey -Norton, as our client is to its coming to the eyes of his -princess. Now the question is, Where are we to find the -photograph?" - -"Where, indeed?" - -"It is most unlikely that she carries it about with her. It is -cabinet size. Too large for easy concealment about a woman's -dress. She knows that the King is capable of having her waylaid -and searched. Two attempts of the sort have already been made. We -may take it, then, that she does not carry it about with her." - -"Where, then?" - -"Her banker or her lawyer. There is that double possibility. But -I am inclined to think neither. Women are naturally secretive, -and they like to do their own secreting. Why should she hand it -over to anyone else? She could trust her own guardianship, but -she could not tell what indirect or political influence might be -brought to bear upon a business man. Besides, remember that she -had resolved to use it within a few days. It must be where she -can lay her hands upon it. It must be in her own house." - -"But it has twice been burgled." - -"Pshaw! They did not know how to look." - -"But how will you look?" - -"I will not look." - -"What then?" - -"I will get her to show me." - -"But she will refuse." - -"She will not be able to. But I hear the rumble of wheels. It is -her carriage. Now carry out my orders to the letter." - -As he spoke the gleam of the side-lights of a carriage came round -the curve of the avenue. It was a smart little landau which -rattled up to the door of Briony Lodge. As it pulled up, one of -the loafing men at the corner dashed forward to open the door in -the hope of earning a copper, but was elbowed away by another -loafer, who had rushed up with the same intention. A fierce -quarrel broke out, which was increased by the two guardsmen, who -took sides with one of the loungers, and by the scissors-grinder, -who was equally hot upon the other side. A blow was struck, and -in an instant the lady, who had stepped from her carriage, was -the centre of a little knot of flushed and struggling men, who -struck savagely at each other with their fists and sticks. Holmes -dashed into the crowd to protect the lady; but just as he reached -her he gave a cry and dropped to the ground, with the blood -running freely down his face. At his fall the guardsmen took to -their heels in one direction and the loungers in the other, while -a number of better-dressed people, who had watched the scuffle -without taking part in it, crowded in to help the lady and to -attend to the injured man. Irene Adler, as I will still call her, -had hurried up the steps; but she stood at the top with her -superb figure outlined against the lights of the hall, looking -back into the street. - -"Is the poor gentleman much hurt?" she asked. - -"He is dead," cried several voices. - -"No, no, there's life in him!" shouted another. "But he'll be -gone before you can get him to hospital." - -"He's a brave fellow," said a woman. "They would have had the -lady's purse and watch if it hadn't been for him. They were a -gang, and a rough one, too. Ah, he's breathing now." - -"He can't lie in the street. May we bring him in, marm?" - -"Surely. Bring him into the sitting-room. There is a comfortable -sofa. This way, please!" - -Slowly and solemnly he was borne into Briony Lodge and laid out -in the principal room, while I still observed the proceedings -from my post by the window. The lamps had been lit, but the -blinds had not been drawn, so that I could see Holmes as he lay -upon the couch. I do not know whether he was seized with -compunction at that moment for the part he was playing, but I -know that I never felt more heartily ashamed of myself in my life -than when I saw the beautiful creature against whom I was -conspiring, or the grace and kindliness with which she waited -upon the injured man. And yet it would be the blackest treachery -to Holmes to draw back now from the part which he had intrusted -to me. I hardened my heart, and took the smoke-rocket from under -my ulster. After all, I thought, we are not injuring her. We are -but preventing her from injuring another. \ No newline at end of file diff --git a/Students/michel/Session05/sherlock_small.txt b/Students/michel/Session05/sherlock_small.txt deleted file mode 100644 index dad12e21..00000000 --- a/Students/michel/Session05/sherlock_small.txt +++ /dev/null @@ -1,16 +0,0 @@ -One night--it was on the twentieth of March, 1888--I was -returning from a journey to a patient (for I had now returned to -civil practice), when my way led me through Baker Street. As I -passed the well-remembered door, which must always be associated -in my mind with my wooing, and with the dark incidents of the -Study in Scarlet, I was seized with a keen desire to see Holmes -again, and to know how he was employing his extraordinary powers. -His rooms were brilliantly lit, and, even as I looked up, I saw -his tall, spare figure pass twice in a dark silhouette against -the blind. He was pacing the room swiftly, eagerly, with his head -sunk upon his chest and his hands clasped behind him. To me, who -knew his every mood and habit, his attitude and manner told their -own story. He was at work again. He had risen out of his -drug-created dreams and was hot upon the scent of some new -problem. I rang the bell and was shown up to the chamber which -had formerly been in part my own. diff --git a/Students/michel/Session05/trigrams.py b/Students/michel/Session05/trigrams.py deleted file mode 100644 index e223e9d7..00000000 --- a/Students/michel/Session05/trigrams.py +++ /dev/null @@ -1,131 +0,0 @@ -# -*- coding: utf-8 -*- -""" -Created on Sun Nov 02 16:48:08 2014 - -@author: Michel -""" - -def readText(fileName): - ''' - Reads the raw text from a text file - fileName is a string with path and file name - Returns a string with the text read in it - ''' - sourceText = open(fileName, 'r') - text = sourceText.read() - sourceText.close() - return text - - -def cleanText(text): - ''' - Cleans the text by transforming it into lower cases - removing all punctuation except period - Returns a clean text ready for processing - ''' - text = string.lower(text) - text = string.replace(text, '\n', ' ') - text = string.replace(text, '--', ' ') - charList = '''!"#$%&()*+,-/:;<=>?@[\]^_`{|}~0123456789''' - for i in charList: - text = string.replace(text, i, ' ') - text = ' '.join(text.split()) - return text - - -def buildDict(text): - ''' - Splits the text in sentences and builts pairs of words for each sentence - Returns a dictionary of trigrams with all pairs of words and their - list of following words - ''' - sentenceList = [] - pairsDict = {} - wordCount = 0 - sentenceList = text.split('.') - - for sentence in sentenceList: - wordList = [] - sentence = string.strip(sentence, ' ') - sentence = string.replace(sentence, '.', '') - wordList = string.split(sentence, ' ') - wordCount = len(wordList) - - for i in range(wordCount): - if (wordCount < 2) or (i > wordCount - 3): - break - else: - wordTuple = () - wordTuple = (wordList[i], wordList[i+1]) - pairsDict.setdefault(wordTuple, []) - if wordList[i+2] not in pairsDict[wordTuple]: - pairsDict[wordTuple].append(wordList[i+2]) - - return pairsDict - - -def createSentence(pairsDict): - ''' - Creates one trigram sentence - If a pair of words is not found in the dictionary, the sentence ends - Returns a string sentence - ''' - sentenceLength = random.randint(5, 15) - startKey = () - sentence = [] - textSentence = '' - - keyList = pairsDict.keys() - - # Starts a sentence - startKey = keyList[random.randint(0, len(pairsDict)-1)] - sentence = [startKey[n] for n in range(2)] - word = pairsDict[startKey][random.randint(0, len(pairsDict[startKey])-1)] - if word == 'i': - word = 'I' - sentence.append(word) - ending =(':', '!', '?', '.', '...') - - # Continues a sentence - for j in range(sentenceLength-2): - tempKey = (sentence[-2], sentence[-1]) - if pairsDict.has_key(tempKey): - word = pairsDict[tempKey][random.randint(0, len(pairsDict[tempKey])-1)] - sentence.append(word) - else: - break - - textSentence = ' '.join(sentence) - textSentence = string.capitalize(textSentence) + \ - ending[random.randint(0, len(ending)-1)] - - return textSentence - - -def createText(pairsDict): - ''' - Creates a random text based on the dictionary of trigrams - Text is made of 40 to 50 random sentences of variable length. - Returns a string text - ''' - textLength = random.randint(40, 50) - text = '' - - # Creates a text made of sentences - for i in range(textLength): - textSentence = '' - textSentence = createSentence(pairsDict) - text = text + ' ' + textSentence - - return text - - -if __name__ == '__main__': - import string - import random - text = readText('sherlock.txt') - text1 = cleanText(text) - dico = buildDict(text1) - paragraph = createText(dico) - print paragraph - \ No newline at end of file diff --git a/Students/michel/session01/grid.py b/Students/michel/session01/grid.py deleted file mode 100644 index 8fbd3dc3..00000000 --- a/Students/michel/session01/grid.py +++ /dev/null @@ -1,29 +0,0 @@ -# -*- coding: utf-8 -*- -""" -Spyder Editor - -This is a temporary script file. -""" - -def grid(nbCol, nbRow, size): - - ''' Draws a grid nbCol wide and nbRow tall - nbCol and nbRow are integers > 0 and < 10 - size is the width of a cell - size is an integer > 2 - the function returns nothing''' - - horLine = '' - verLine = '' - - horLine = '+' + '-' * (size - 2) + '+' - verLine = '|' + ' ' * (size - 2) + '|' - - for i in range(nbRow): - print horLine + (nbCol - 1) * horLine[1:] - for j in range(size - 2): - print verLine + (nbCol - 1) * verLine[1:] - - print horLine + (nbCol - 1) * horLine[1:] - return - diff --git a/Students/michel/session02/ackermannFunct.py b/Students/michel/session02/ackermannFunct.py deleted file mode 100644 index 6f3aef28..00000000 --- a/Students/michel/session02/ackermannFunct.py +++ /dev/null @@ -1,52 +0,0 @@ -# -*- coding: utf-8 -*- -""" -Created on Mon Oct 13 19:43:16 2014 - -@author: Michel -""" - -def ackermann (m, n): - """ - computes ackerman recursive function - - returns a positive integer value - m and n are nonnegative integers - """ - if m < 0 or n < 0: - return None - elif m == 0: - return n + 1 - - elif n == 0: - return ackermann(m - 1, 1) - else: - return ackermann(m - 1, ackermann(m, n - 1)) - -if __name__ == '__main__': - assert ackermann(-1,-1) == None - assert ackermann(-1,0) == None - assert ackermann(0,-1) == None - assert ackermann(0,0) == 1 - assert ackermann(0,1) == 2 - assert ackermann(1,0) == 2 - assert ackermann(0,2) == 3 - assert ackermann(0,3) == 4 - assert ackermann(0,4) == 5 - assert ackermann(1,2) == 4 - assert ackermann(1,3) == 5 - assert ackermann(1,4) == 6 - assert ackermann(2,1) == 5 - assert ackermann(2,2) == 7 - assert ackermann(2,3) == 9 - assert ackermann(2,4) == 11 - assert ackermann(3,0) == 5 - assert ackermann(3,1) == 13 - assert ackermann(3,2) == 29 - assert ackermann(3,3) == 61 - assert ackermann(3,4) == 125 - assert ackermann(4,0) == 13 - assert ackermann(4,1) == 65533 -# assert ackermann(4,2) == 61 -# assert ackermann(4,3) == 61 -# assert ackermann(4,4) == 61 - print 'All tests passed' \ No newline at end of file diff --git a/Students/michel/session02/distanceFunction.py b/Students/michel/session02/distanceFunction.py deleted file mode 100644 index 00336ca3..00000000 --- a/Students/michel/session02/distanceFunction.py +++ /dev/null @@ -1,16 +0,0 @@ -# -*- coding: utf-8 -*- -""" -Created on Tue Oct 07 20:25:04 2014 - -@author: Michel -""" - -def distance(x1, y1, x2, y2): - """ Return distance between 2 points in 2D cartesian coordinates - x1, y1, x2, y2 are float - """ - - distance = ((x2 - x1)**2 + (y2 - y1)**2)**0.5 - - return distance - diff --git a/Students/michel/session02/fizzBuzz.py b/Students/michel/session02/fizzBuzz.py deleted file mode 100644 index f0cdeaf7..00000000 --- a/Students/michel/session02/fizzBuzz.py +++ /dev/null @@ -1,22 +0,0 @@ -# -*- coding: utf-8 -*- -""" -Created on Tue Oct 07 20:33:17 2014 - -@author: Michel -""" - -for number in range(100): - - if not number % 3 == 0 and not number % 5 == 0: - print number - - elif number % 3 == 0 and not number % 5 == 0: - print 'Fizz' - - elif not number % 3 == 0 and number % 5 == 0: - print 'Buzz' - - else: - print 'FizzBuzz' - - \ No newline at end of file diff --git a/Students/michel/session02/series.py b/Students/michel/session02/series.py deleted file mode 100644 index e7685d8d..00000000 --- a/Students/michel/session02/series.py +++ /dev/null @@ -1,79 +0,0 @@ -# -*- coding: utf-8 -*- -""" -Created on Mon Oct 13 21:10:43 2014 - -@author: Michel -""" - -def fibonacci(n): - """ - Computes Fibonacci series - - Returns Fibonacci of n - n is a positive integer > 0 - """ - if n < 0: - return None - elif n == 0 or n == 1: - return 1 - else: - return fibonacci(n-1) + fibonacci(n-2) - - -def lucas(n): - """ - Computes Lucas series - - Returns Lucas of n - n is a positive integer > 0 - """ - if n < 0: - return None - elif n == 0: - return 2 - elif n == 1: - return 1 - else: - return lucas(n-1) + lucas(n-2) - - -def sum_series(n, val1 = 0, val2 = 1): - """ - Computes Fibonacci, Lucas or other series depending on val1 and val2 - - - n is a positve integer - val1 and val2 are optional parameters and are positve integers - Returns Lucas of n if val1 ==2 and val2 == 1 - Returns Fibonacci of n if no optional parameter val1 and val2 specified - Otherwise returns other series - """ - if n < 0: - return None - elif val1 == 0 and val2 == 1: - return fibonacci(n) - elif val1 == 2 and val2 == 1: - return lucas(n) - else: - return n - - -if __name__ == '__main__': - # test all functions for n < 0 - assert fibonacci(-1) == None - assert lucas(-1) == None - assert sum_series(-1) == None - # test fibonacci and lucas functions for base cases - assert fibonacci(0) == 1 - assert fibonacci(1) == 1 - assert lucas(0) == 2 - assert lucas(1) == 1 - # test fibonacci and lucas functions for one general case - assert fibonacci(5) == 8 - assert lucas(5) == 11 - # test sum_series function for parameter values - assert sum_series(5) == fibonacci(5) - assert sum_series(5, 0, 1) == fibonacci(5) - assert sum_series(5, 2, 1) == lucas(5) - assert sum_series(5, 23, 12) == 5 - print 'All tests passed' \ No newline at end of file diff --git a/Students/michel/session03/ListLab.py b/Students/michel/session03/ListLab.py deleted file mode 100644 index 97eefa26..00000000 --- a/Students/michel/session03/ListLab.py +++ /dev/null @@ -1,22 +0,0 @@ -# -*- coding: utf-8 -*- -""" -Created on Tue Oct 14 20:03:39 2014 - -@author: Michel -""" - -fruit = ['Apples', 'Pears', 'Oranges', 'Peaches'] -print fruit -otherFruit = raw_input('Other fruit? ') -fruit.append(otherFruit) -print fruit -number = raw_input('Enter a number: ') -number = int(number) -print number, fruit[number] -# fruit = 'Cherries' + fruit -print fruit -fruit.insert(0, 'Lemons') -print fruit -print for i in fruit: - -# adding a comment for test purposes diff --git a/Students/michel/session03/PyLab.pptx b/Students/michel/session03/PyLab.pptx deleted file mode 100644 index 64afd107..00000000 Binary files a/Students/michel/session03/PyLab.pptx and /dev/null differ diff --git a/Students/michel/session03/lab03.py b/Students/michel/session03/lab03.py deleted file mode 100644 index 3780f864..00000000 --- a/Students/michel/session03/lab03.py +++ /dev/null @@ -1,30 +0,0 @@ -# -*- coding: utf-8 -*- -""" -Created on Tue Oct 14 18:36:14 2014 - -@author: Michel -""" - - -# return string with first and last character exchanged -def exchange(a_string): - return a_string[-1] + a_string[1:-1] + a_string[0] - - -# return string with every other character removed -def removeChar(a_string): - return a_string[::2] - - -# return a string with the first and last 4 characters removed and every other character in between -def removeFour(a_string): - return a_string[4:-4] - - -# return a string reversed with slicing -def reverseSlicing(a_string): - return a_string[::-1] - -#return a string with thirds in different order: middle, last, first -def mixedString(a): - return a[len(a)/3:2*len(a)/3] + a[2*len(a)/3:] + a[:len(a)/3] \ No newline at end of file diff --git a/Students/michel/session03/mailroom.py b/Students/michel/session03/mailroom.py deleted file mode 100644 index c62e49f4..00000000 --- a/Students/michel/session03/mailroom.py +++ /dev/null @@ -1,197 +0,0 @@ -# -*- coding: utf-8 -*- -""" -Created on Sat Oct 18 15:38:30 2014 - -@author: Michel -""" - -def initList(donorList): - """ - Initiatilize list of donors with names and respective donation history - returns pre-populated list with 5 donors and their donation activity - donorList is a list of donors with donors names, list of amounts donated - and the total amount given so far - """ - Andrew = [['Andrew'], [25, 35, 15], [75]] - Martha = [['Martha'], [15, 10], [25]] - Johnny = [['Johnny'], [45, 50, 25], [120]] - Emma = [['Emma' ], [20], [20]] - George = [['George'], [30, 35], [65]] - - donorList = [Andrew, Martha, Johnny, Emma, George] - - return donorList - - -def updateTotals(donorList): - """ - Compute and update total amount given by each donor in the donor list - returns list of donor with updated total donation - donorList is the list of donors with donations to be updated - """ - for i in range(len(donorList)): - total = 0 - for j in (donorList[i][1]): - total += j - donorList[i][2][0] = total - return donorList - -def thankYouMail(name, amount): - """ - Write thank you email to donor name for amount given - returns email body with inserted name and amount in a string - name is a string with valid name of a donor - amount is integer with donation - """ - emailBody = name + ", we wanted to thank you for your generous donation of " - emailBody = emailBody + "$" + str(amount) + "\rThank you \rThe Team" - return emailBody - - -def checkName(donorList, name): - """ - Checks whether a name entered is in the list already - returns True if name is found else returns False - """ - for i in range(len(donorList)): - if donorList[i][0][0] == name: - return True - return False - - -def listDonors(donorList): - """ - Prints list of all donors in database - returns None - """ - for i in range(len(donorList)): - print donorList[i][0][0] - return None - - -def addDonor(donorList, name): - """ - Add donor name to donorList - returns updated donorList - assumes name does not exist already in the list - name is a string - """ - newDonor = [[name], [], [0]] - donorList = donorList.append(newDonor) - return donorList - - -def addDonation(donorList, name, amount): - """ - Add donation amount to list of donations for a given name - returns updated donorList - assumes name already exists in the list - name is a string and amount is an integer - """ - for i in range(len(donorList)): - if donorList[i][0][0] == name: - donorList[i][1].append(amount) - updateTotals(donorList) - break - return donorList - - -def thankYouPath(donorList, choice): - """ - Handles production of thank you emails to donors - returns choice of path and donorList - choice is an interger - if user wants to exit, returns choice = 3 for quit option - """ - while choice == 1: - print 'Enter "list" to get the list of donors' - print 'Enter "9" to exit this activity' - name = str(raw_input('Otherwise, please enter a name: ')) - if name == 'list': - listDonors(donorList) - elif name == '9': - choice = 9 - break - else: - if not checkName(donorList, name): - addDonor(donorList, name) - while True: - amount = str(raw_input('Please, enter donation amount as a dollar number (no pennies): ')) - try: - amount = int(amount) - addDonation(donorList, name, amount) - print thankYouMail(name, amount) - break - except: - print 'This is not a Dollar number' - return donorList, choice - - -def sortDonorList(donorList): - """ - Sorts donor list by decreasing amount of donations - returns sorted list of donors - """ - donorList = sorted(donorList, key=lambda donorList: donorList[2], reverse=True) - return donorList - - -def createReport(donorList): - """ - Computes the number of donations and average donation per donor - Displays the results of the computations in a report - returns list of donors - """ - donorList = sortDonorList(donorList) - print 'Name', ' ' * 26, - print 'Total', ' ' * 5, - print 'Donations', ' ' * 7, - print 'Average' - print '-' * 69 - for i in range(len(donorList)): - name = donorList[i][0][0] - total = str(donorList[i][2][0]) - nbDonation = str(len(donorList[i][1])) - average = str(round((float(total) / float(nbDonation)),2)) - print name, ' ' * (20-len(donorList[i][0][0])), - print total.rjust(15), - print nbDonation.rjust(15), - print average.rjust(15) - return donorList - - -def selectPath(): - """ - Offers user 3 choices: Write a thank you email, create a report, or quit - returns choice - choice is an integer between 1-3 - """ - choice = '' - print 'Please, select an option: ' - print '1- Send a thank you email' - print '2- Create a donation report' - print '3- Quit the application' - while True: - choice = str(raw_input('Your Selection: ')) - if choice not in ['1','2','3']: - print 'Please enter 1, 2, or 3' - else: - break - return int(choice) - - -if __name__ == '__main__': - currentList = [] - choice = 0 - currentList = initList(currentList) - while choice != 3: - choice = selectPath() - if choice == 1: - currentList, choice = thankYouPath(currentList, choice) - elif choice == 2: - currentList = createReport(currentList) - elif choice == 3: - print 'Bye!' - break - - diff --git a/Students/salim/notes/class_notes.py b/Students/salim/notes/class_notes.py deleted file mode 100644 index 9ad3fb39..00000000 --- a/Students/salim/notes/class_notes.py +++ /dev/null @@ -1,902 +0,0 @@ -############################## SESSION01 ############################## - -#IPYTHON: -""" --typing "?" after any object gives you more information --supports tap completion -""" - - -#VALUES AND TYPES: -""" -values: pieces of unanmed data - -all values are objects - -dir(42) shows you all the different things the object can do - -types: every value belongs to a type. - -numbers - -floating point - -intergers - -text - -boolean - -none - -string - -dict - -list - -tuple -""" - - -#STATEMENTS VS. EXPRESSIONS -""" -statements: statments do not return a value, but may contain an experssion -""" -#exmaples -line_count = 42 # 42 is actually and expression, but this line is a statment -print "this" # print doesn't return a value - -""" -expressions: evaluating an expression results in a value - - expressions are made up of values and operators -""" -#examples: -3 + 7 # result is 7 - - -#PRINT STATEMENT -""" -using the comma in a print statement allows you to suppress the newline -""" -#example -print "the vaue is", 45 - - -#SYMBOLS -""" -symbols: how we give names to values - -symbols can contain any number of sundersores, letters, nd numbers - -a symbol is bound to a value with the assignment operator - -in most languages, symbols are called variables - -in most languages, a symbol is a place in memory that can store values - -this is NOT what a symbol in python is - -a symbol can be bound to a value, but doesn't have anything to do with the - location in memory -""" -#example -a = 5 -a = b # both a and b are referring to the same 5 - -# you can assign multilple symbols at the same time -i,j = 5,4 -i,j = j,i # this switches the value of j and i - - -#TEXT SLICING: -""" - +---+---+---+---+---+---+ - | P | y | t | h | o | n | - +---+---+---+---+---+---+ - 0 1 2 3 4 5 6 --6 -5 -4 -3 -2 -1 -""" - -############################## SESSION02 ############################## - - -#FUNCTIONS: -""" --begins with "def". this means everything folloiwng is the definiton of the function. --when you execute a fucntion, it creates a fuction object --the name of the fucntion is now the symbol for the name -""" -#example -def name (x, y): - return x * y - - -#OPERATORS: -""" -// <-- this will always ignore the interger -""" - - -#GIT -""" --git is a graph. A graph is something with "states" and "places" with paths between them. -For example your code will have many versions ("states") with points between them. --each place in the history of git has a name that identifies it (called a "hash") --there are labels that can point to the different places in time. - - "Head" is the label at the current point in time that you're looking at. - - "master" is the name that git auomatically gives to the first branch in a repository - - "branch" is a different version of the original master branch --creating branches allows you to submit just the specific homework you changed in - your pull request --when you create your pull request, you want to make sure you're comparing your - branch to the master to PCE's repository --you start with a local database and then pull to the web --you always start locally; this creates a ".git" folder - --git setup: - -have gui - -have command line - -have github account - --git settings: - -system: settings for your system - -global: settings for your user account - -local: highest prescedence; settings specific for your local project - --initalizing a repository: - -this can happen locally or in the cloud at github.com - -locally: - -"git init" turns an existing project into a git project - -"git init creates a new project as a git project - -in the cloud: - -look for "New Repository" and create a repository - -README: this tell others about the project - -.gitignore: this tells git which projects to ignore - --committing: - -changes are commits - -local commits: - -"git status" tells you with files should be committed - -"git add" adds files to the staging area; the purpose of the staging - area is to give users the ability to choose which changes are part of - which commit. - -"git commit -m " will commit the changes; each commit should - be part of a story - -github.com commits: - -use the edit button on the website - -this is good for making simple changes to text files - --diff: - -what changes have you made to your code that hasn't been staged? - -"git diff": this tells you how your working tree (i.e., files) differs - from the staging area - -"git diff --staged" this tells you how your staging area is different - from the lastest commit in history - -"git diff HEAD" how your working tree compares to the HEAD commit - -"git diff --word-diff" easier to read diffs - -"git diff --color-words" easier to read diffs - -"git diff --stat" just tells you the files that have changed - --log: - -"git log" shows all the commits to the repository; new on top, oldest at - the bottom - -"git log --oneline" shows a summary of all the commits - -"git log --stat" shows the commit message with the files for each commit - -"git log --patch" shows the diff between all the commits - -"git log --graph --all --decorate --oneline" - -you can use all of these options together - --removing files: - -"git rm" removes the file from the directory and stages the removal - -"git add -u ." goes through the working tree and stages all deleted files; - the "." means that git will look at all directories in the working tree - -"git rm --cahced " removes from the git repository but not the - file system - --moved files: - -"git mv " this will move a file; if you don't use this - command and do the move using the file system, git will think you deleted - then added a file. you can fix this by deleted the old file "git rm " - and adding the new file "git add " - -you can put file names, directories, or wildcard character (i.e., "*") - -you can also have a .gitignore file in a sub directory, which takes presedence - -"git ls-files --others --ignored --exclude-standard" shows all the excluded - files - --branch: - -new features and bug fixes should be done on a new branch - -why use branches? - -the master branch should be a representation of "production" - -"git branch " creates a new branch - -"git branch -d " deletes a branch - -you cannot delete the branch you are currently on - -"git checkout " - -this moves changes in staging area and working directory to new branch - -can't switch to a new branch when moving to that branch affects staging - files or working tree files - -you might see different files when you are on different branches; this - is fine and how git works - -"git branch": lists all the current branches (* is the branch you're on) - -"git branch -v": lists all the current branches with last commit - -"git branch --merged": lists the branches that are already merged into the - branch you're on. branches without a "*" in front are generally fine to delete - -"git branch --no-merged": lists the branches that contain work that hasn't - been merged in - --more branching notes: - -a branch is a movable pointer to one of your commits - -when you first start a git repository, the default branch is named master - and it points to the last commit you made - -creating a new branch creates a new pointer for you to move around; the - default location when you create a new branch is the commit you're currently - on - -how does git know what branch you're on? It keeps a special pointer named - HEAD. HEAD is a pointer to the local branch you're currently on. - -"git checkout" lets you switch to a new branch. This moves HEAD to to point - to the testing branch - -when you make another commit after switching to a new branch, the master - pointer stays where it is and HEAD and the branch pointer move forward - -when switching branches, it's best practice to commit all your changes. - this is because git won't let you switch branches if your working tree has - uncommitted changes the conflict with the branch you're checking out - -when there are conflicts, git will pause the merge. run "git status" to see - which files were not merged. you'll have to manually change the file with - issues. to reslove the conflicts, add the file to the staging area. finally, - commit to finalize the merge - --remote braches: - -remote branches: references to the state of brances on your remote repositories. - they are local branches that can't be moved. instead, they're moved automatically - when you do any network communication. remote branches act as bookmaks to - remind you where the branches on your remote repositories were the last time - you connected to them - -/: this is the form of remote branches. for example, the "master" - branch on the "origin" remote would be "origin/master" - -when you clone a git repository from github, git automatically names it "orgin" - and creates a pointer to the master branch named "origin/master" locally. - -git also gives you your own master branch starting at the same place as - "origin/master" - -the "origin/master" pointer doesn't move as long as you stay out of contact - with the github server - -"git fetch origin": this command will sync your work with the server by fetching - data from the server that you don't have and updates your local working - directory. this will also move "origin/master" to a new location. note, - this does not merge any changes to "origin/master" and your local branches. - -when your fetch brings down new branches, you don't automattically have local, - editable copies of them. you can either: - -"git merge " to merge the remote branch into your current - working branch - -"git checkout -b ": to create and checkout - a new branch based on the remote branch. - -the second method creates a "tracking" branch: - -tracking branches are local branches that have a direct relationship to - a remote branch. therefore, if you're on a tracking branch and you - type "git push", git automattically knows which branch to push to. - -running "git pull" on a "tracking" branch fetches all the remote references - and automatically merges to the corresponding remote branch - -after cloning a repository, a master branch is created that tracks - origin/master, so "git push" and "git pull" automattically work - -"git checkout --track " will set up the branch you're on - to track a remote branch - -delete a remote branch with "git push :". - -"git push ": this will push a branch to the github server - --git homework workflow: - "git checkout master" # checkout the local master branch - "git pull upstream master" # fetch/merge class repository into local master - "git push" # push changes from class repository to personal repository - [do work] - "git commit -a" # commit local changes - [add a message] - "git push" # push local changes to personal repository - [make a pull request] # request that changes are merged with class repository - -""" - - -#LOCAL VS. GLOBAL SYMBOLS -""" --global variables: can be used everywhere --local variables: are only referenced in the function -""" - - -#PARAMETERS -""" -- positional parameters; they must be entered in the right -- optional parameters --> fun(x=1) -- once you've provided a keyword argument, you can no longer provide any positional aruguments -""" - - - -# if statments -if a: - print 'a' -elif b: # you don't need elif - print 'b' -elif c: - print 'c' -else: #you don't need else - print 'that was unexpected' - -# lists -a_list = [2, 3, 5, 9] -a_list_of_strings = ['this', 'that', 'the', 'other'] - -# tuples -a_tuple = (1, 2, 3, 4) - -# loops -a_list = [2, 3, 5, 9] - -for item in a_list: - print item - -for item in range(6): # range allows you to loop as much as you want - print '*', - -def print_multi(x): - - print locals() - - for i in range(x): - i += 1 - if (i % 3 == 0) and (i % 5 ==0): - print 'FizzBuzz' - elif i % 3 == 0: - print 'Fuzz' - elif i % 5 == 0: - print 'Buzz' - else: - print i - -import math - -def distance(cor1, cor2): - print locals() - return math.sqrt( (cor1[0]-cor2[0])**2 + (cor1[0]-cor2[1])**2 ) - - -#DOC STRINGS -""" -if a string literal is the first thing in the fuction block following the -header, then it's a doc string -""" -# example: - -def complex_function(arg1, arg2, kwarg1=u'bannana'): - """Return a value resulting from a complex calculation.""" - # code block here - -""" -doc strings can be read in the interpreter as the "__doc__" attribute of the -function object - -a doc string should be: - -a complete sentence in the form of a command describing the function - -e.g., "Return a list of values based on blah blah..." - -fit into a signle line - -if more lines are needed, make the first line a complete sentence, - then add more information later - -be enclosed with triple quotes -""" - - -#RECURSION -""" -recursion: if a function calls itself - -like other functions, a call within a call establishes a call stack -""" - -#BOOLEAN EXPRESSIONS -""" -"bool(something)" returns either true or false - --and, or, and not - -"and": returns the first operand that evaluates to False, or the last operand - if non are True - -"or": returns the first operand that evaluates to True, or the last operand - if none are True - -"not" inverts the boolean value of its operand - --boolean types are subclasses of integer -""" - -# this is common in programming -if something: - x = a_value -else: - x = b_value - -# in python -y = 5 if x > 2 else 3 # clased a "ternary" expression - - -#CODE STRUCTURE, MODULES, AND NAMESPACES - -""" --you can put a one-liner after the colon; however this should only be done if - it makes your code more readable -""" -#example -x = 12 -if x > 4: print x - -""" --namespaces: these are the dots - -e.g., "name.another_name" - -the "." indicates that you're looking for a name in the "namespace" of a - given object - -the namespace of an object could be - -name in the module - -module in a package - -attribute of an object - -method of an object --a "module" is simply a namespace - -it could be a single file or a collection of files - -you can think of files with ".py" as modules --a "package" is a module with other modules in it - -on a filesystem, this is a directory that contains one or more .py files, - one of which must be called "__init__.py" - -see the example below for how to import packages and modules inside -""" -#example of importing packages and modules in packages -import modulename -from modulename import this, that -import modulename as a_new_name -from modulename import this as that - -""" --importing modules complies the python code to "bytecode" - -this creates a module.pyc file --this process executes all code at the module scope - -this is why it's important to avoid module-scope statments because they have - global side-effects --code in a module is not rerun when you import again --you can also run modules -""" - -#ways to run a python module -python hello.py # must be in current working directory -./hello.py #!/usr/env/python at top of module (Unix). -""" -The "./" is an abbreviated way to inform the shell that the absolute path of that -file is the current directory (i.e., the directory in which the user is currently -working). This allows you to execute a script. -""" - -""" --when you import a module, the value of the symbol "__name__" is the same as the -filename. --when you run a module, the value of the symbol "__name__" is "__main__" --this allows you to create blocks of code that are executed only when you - run a module - """ - -#this code will only execute if you run the module, not import it -if __name__ == '__main__': - # Do something interesting here - # It will only happen when the module is run - - -############################## SESSION03 ############################## - -""" -making a python file an executable: - - change the mode of the file to executable: chmod +x myscript.py - - add the path to python at the top with '#!' before -""" - -""" -git question: - - create a pull request for the branch itself -""" - -#SEQUENCE -""" -sequence types: - -srings - -unicode strings - -lists - -tuples - -bytearrays - -buffers - -array.arrays - -xrange objects (almost) - -indexing: - -items in a sequence my be looked up with an index using the subscription - operator "[]" - -slicing: - -returning multiple elements of a sequence - -indexing vs. slicing: - -a slice always returns a sequence - -slicing does not return an error when you're out of bounds in a sequence - -membership: - -you can use "in" or "not in" - -similar features with sequences: - -min() - -max() - -.index() - -.count() - -all support iteration - -lists: - -you can build lists with "list()" (e.g. list("salim")) - -lists can contain all different object types - -ways to make a list bigger - -append() <-- adds a single item to the end - -insert() <-- adds a single item - -extend() <-- add multiple items to the end - -shrinking the list - -pop() - -remove() - -use "del" with a slice - -misc methods: - -.reverse() - -.sort() - -generally, methods that change a mutable object return None. As opposed - to methods on immuatble objects return a copy of the changed object. - -list performance: - -indexing is fast (i.e., Order 1) - -x in s is slow (i.e., Order n) - -looping is slow (i.e., Order n) - -operating on the end of the list if fast (i.e., Order 1) - -operating on the front or middle is slow (i.e., Order n) - -this is because you need to move all the elements to the front -tuples: - -you don't actually need the "(" and ")"; tuples rely on the commas - -therefore a tuple with one element is (1,); i.e., you need the comma - - -lists vs. tuples - -the difference between each is mutability - -mutable: it can be changed in place - -immutable: cannot be changed in place - -immutable objects (that we know so far): - -unicode - -string - -integer - -float - -tuple - -mutable objects (that we know so far): - -list - -loops in python: - -no indexing is required - -you can use "enumerate()" if you want both the index and the elements of - the object - -to stop a loop early: - -break: this stops and exits the loop - -continue: this moves the loop back to the start - -loops can have an "else" statement - -else executes when you didn't break out of the loop early - -"while" loops - -these will execute until something is true - -more string features: - -split(): allows you to break a string into a list based on a delimiter - -join(): concatenates strings in a list - -upper(): uppercase - -lower(): lowercase - -isnumeric(): - -isalnum(): - -isalpha(): - -ordinal values - -chr(): takes a number and converts to character - -ord(): takes a string and coverts to a number -""" -#example of indexing with strings -s = "this is a string" -s[0] - -#example of indexing with lists -list = [1, 2, 3, 5, 6] -list[-1] # will return 6 - -#example of slicing -s[:5] -s[5:] -s[:-4] - -""" -slicing lab --return a string with the first and last characters exchanged. --return a string with every other character removed --return a string with the first and last 4 characters removed, and every other char in between --return a string reversed (just with slicing) --return a string with the middle, then last, then first third in the new order -""" - -#slicing lab -s = "this is a string" - -#return a string with the first and last characters exchanged. -def first_last(s): - return s[-1] + s[1:-1] + s[0] - -#return a string with every other character removed -def every_other(s): - return s[::2] - -#return a string with the first and last 4 characters removed, and every other char in between -def random(s): - return s[1:-4:2] - -#return a string reversed (just with slicing) -def reversed(s): - return s[::-1] - -#return a string with the middle, then last, then first third in the new order -def thirds(s): - s_len = len(s) / 3 - first = s[:s_len] - last = s[-s_len:] - middle = s[s_len:-s_len] - return middle + last + first - -#making a copy of a list -original = [1, 2, 3] -new = original[:] -""" -this creates a "shallow" copy. therefore, if you have nested lists, the sub lists -will not be copies. to make a "deep" copy you can use a library or use loops. -""" - -#this does not make a new list -original = [1, 2, 3] -new = original - -#do not us a mutable object as the default object in a function -def func(c, list=[]): # this is wrong because it dones't create a function level list - return list.append(c) - - -############################## SESSION04 ############################## -""" -you almost never have to loop through sequences using range() -- zip() will zip lists together -- unpack embedded squences using this construct -""" - -a_list = [(1,2), (3,4), (5,6)] - -for i, j in a_list: - print i - print j - -""" -enumerate allows you to get the indix while you are looping through a sequence -""" - -for i, item in enumerate(a_list): - print i - print item - -""" -buidling up a long string: - - one option is to continue to keep += to the string. however, this is - an inefficent process - - a better way is to build a list, then use " ".join(list) - -sorting data: - - when you - -""" - -fruits = ['Apples', 'Pears', 'Grapes'] -numbers = [1, 2, 3] -combine = zip(fruits, numbers) - -def sort_key(item): - return item[1] - -combine.sort(key=sort_key) - -""" -you can build up strings for formatting before you subistiute values in -""" - -s = 'Hello ' + '%d' * 4 -print s % (1,2,3,4) - -""" -dictionaries: - - create a dict with d = {} - - keys don't have to be the same type and values don't have to be the same - type - - keys can be any immutable object (technically "hash" objects): - - number - - string - - tuple - - dictionaries are unordered (due to the way they are built using hasing) - - dictionaries are very effecicent - -dictionary methods - - dict.setdefault() <-- will use this in the homework - - dict.iteritems() <-- will not return a list - -hashing: - - missed this so read the class notes -""" - -""" -Exceptions: - - you can use "finally" at the end of an exception, which will always get - run - - they also have an "else" which will run if there is no exception -""" -# never do this! this doesn't give you information about the exception -try: - do_something() -except: - print "something went wrong." - -""" -reading and writing files: - -text files: - - f -""" - -f = open('secrets.txt') -secret_data = f.read() -f.close() - - - -############################## SESSION05 ############################## - -""" dealing with "ordered" / "sorted" dicts """ - -# option #1 -import collections # package with tools for dealing with dicts -o_dict = collections.OrderedDict() # this will create an ordered dict - -# option #2 -sorted() # built in function that sorts iterables - -""" Advanced argument passing """ - -# keyword arguments -def fun(a, b = True, c = False): - return - -# functional arguments - -def func(x, y, w=0, h=0): # positional arguments are tuples - # keywork arguments are dictionaries - print "%s %s %s %s" % (x, y, x, h) - -a_tuple = (1, 2) -a_dict = {'w':1, 'h': 2} -func(*a_tuple, **a_dict) # you can pass the tuple and dict in directly - -def func(*args, **kwargs): # you can recieve an undefined number of args - print args - print kwargs - -"""mutablility""" - -import copy # for making copies of objects - -copy.deepcopy() # this is how you make a deep copy - - -"""list comprehensions""" -l = [1, 2, 3] -[i * 2 for i in l] -[i * 2 for i in l if i > 1] # you can have an if statement here - -# searching 'in' a sequence is faster with sets because they are hash tables - -"""set comprehension""" - -"""dict comprehensions""" - - -"""testing in python""" - - - - -############################## SESSION06 ############################## - -"""Singletons should be tested using 'is'""" - -"""Anonymous functions""" - -lambda x, y: x + y - -"""Functional Programming""" - -""" -'self' means the new instance of the class that you just created -""" - - -############################## SESSION07 ############################## -""" -Personal Project: - - Make sure to use Pep 8 - - Make sure to have unit tests - - Make sure to user version control - - Due the Friday after the last class (Due on December 12th) - - Send proposal by next week -""" - -""" -What are subclasses for? - - Subclassing is not for specialization - - Subclassing is for reusing code - - Bear in mind that the subclass is in charge. This means keep in mind - that the subclass can change -""" - -""" -Multiple Inheritance: - - You can create subclasses from multiple -""" - -""" -New-Style Classes: - - when you subclass a class from "object", this is a new style class - - you should always inherit from object -""" - -""" -super() - - allows you to call super classes when you are inheriting -""" - -""" -properties: - - property - - setters - - deleters -""" - -""" -Static Methods: - - a method that doesn't need self to be passed - - however, these are not very useful -""" - -""" -Class Methods: - - a method that gets the class object, rather than an instance object, as - the first argument -""" - -""" -Special Methods: - - all of the special methods are in the format __methodname__ -""" - - -############################## SESSION08 ############################## - -""" -Callable classes: - - a "callable" is anything that you can call like a function (i.e., a class - is a "callable") - - __call__ is the special method that you use to make your call callable - -Writing your own sequence type: - - __len__ - - __getitem__ - - __setitem__ - - __delitem__ - - __contains__ -""" - -""" -Iterators: - - every iterator has an __iter__ method (e.g., list.__iter__()) - - in order to make your Class an interator (i.e., so you can use it in a - loop), you need the following methods - - __iter__() - - next() -""" - -""" -Generators: - - generators give you the iterator immediately -""" diff --git a/Students/salim/notes/vim_demo.py b/Students/salim/notes/vim_demo.py deleted file mode 100644 index e69de29b..00000000 diff --git a/Students/salim/notes/vim_notes.txt b/Students/salim/notes/vim_notes.txt deleted file mode 100644 index 5e9ca42e..00000000 --- a/Students/salim/notes/vim_notes.txt +++ /dev/null @@ -1,133 +0,0 @@ -e""MODES""" -ESC "Normal Mode -i "insert mode (see more on insert mode below) -v "visual mode (allows you to select text) -V "visual mode lines (allows you to select lines) - "block visual mode - - -"""BUFFERS""" -:bn "next buffer -:bp "previous buffer -:bd "delete buffer -Crtl-^ "switch to last buffer -:ls "show all buffers - - -"""WINDOWS""" -:sp "new window horizontal split -:vsp "new window virtical split - -:30winc > "increase widow size 30 -:30winc < "decrease widow size 30 -Crtl-w = "makes the windows the same size -Crtl-w > "increase window size 1 column -Crtl-w < "decrease window size 1 column - -Crtl-w "moves to window -Crtl-w L "moves window to the far right -Crtl-w H "moves window to the far left - - -"""TABS""" -:tabnew "creates a new tab -:tab close "close tab -gt "switch between tabs - -:tabn "next tab -:tabp "previous tab - -:tabfirst "go to first tab -:tablast "go to last tab - - -"""SWITCH CASE""" -gu "lowercase text operated on by motion -gU "uppercase text operated on by motion -g~m "switch case operated on by motion - - -"""PLUG-INS""" - "uses vim-flake8 to run syntax and style checker - - -"""UNDO/REDO""" -u "undo -Crtl-r "redo - - -"""SEARCHING""" -/ "allows you to search for text -n "goes to next occurance of the word - -:nohl "removes the highlight after search - - -"""MOVING AROUND""" -gg "go to top of document -G "go to end of document - -w "move forward one word -b "move backwards one word -e "move to end of word - -0 "go to end of line -$ "go to the start of line - -( "go forward one setence -) "go back one setence - -{ "go forward on paragraph -} " go backward one paragraph - -Ctrl-d "move half-page down -Ctrl-u "move half-page up -Ctrl-b "page up -Ctrl-f "page down - -Ctrl-o "jump to last cursor position -Ctrl-i "jump to next cursor position - - -"""SCROLLING""" -zz "move current line to the middle of the screen -zt "move current line to the top of the screen -zb "move current line to the bottom of the screen - - -"""DELETING TEXT""" -dd "delete entire line -dw "delete word -x "delete character -r "replace a character -R "enter replace mode - -dis "delete inside sentence -di{ "delete inside { -di( "delete inside ( -di< "delete inside < -di" "delete inside /" - - -"""FONT SETTINGS""" - -:set guifont=* "change the font settings using GUI -:set guifont= "change the font settings without the window -:set guifont? "find out current font settings - - -"""SHELL COMMANDS""" -"start the shell -:shell - - -"""INSERTS""" -"different types of inserts -i "insert before cursor -a "insert after cursor - -I "insert at the begining of the line -A "insert at end of line - -o "insert a new line below cursor -O "insert a new line above cursor diff --git a/Students/salim/session01/draw_box.py b/Students/salim/session01/draw_box.py deleted file mode 100644 index 1ca1d70c..00000000 --- a/Students/salim/session01/draw_box.py +++ /dev/null @@ -1,74 +0,0 @@ -def print_grid(size, boxes): - - # adjust wrong inputs - size, boxes = adjust_inputs(size, boxes) - - # rows of grid - row_count = 0 - for i in range(size): - - # if row is a solid line - if row_count % (size / boxes) == 0: - - print_row(width=size, row_type='solid', boxes=boxes) - - # if row is a non-solid line - else: - - print_row(width=size, row_type='non-solid', boxes=boxes) - - # increment row_count - row_count += 1 - - -def print_row(width, row_type, boxes): - - # set row type - if row_type == 'solid': - outside = '+' - inside = '-' - elif row_type == 'non-solid': - outside = '|' - inside = ' ' - - # columns of row - col_count = 0 - for ii in range(width): - - # if middle of row - if col_count < (width - 1): - - if col_count % (width / boxes) == 0: - print outside, # include commas to keep text on same line - else: - print inside, # include commas to keep text on same line - - # if end of row - else: - - if col_count % (width / boxes) == 0 or boxes == 1: - print outside - else: - print inside - - # increment col_count - col_count += 1 - - -def adjust_inputs(size, boxes): - - # if size input is even, change to next biggest odd number - if size % 2 == 0: - size_result = size + 1 - else: - size_result = size - - # min of boxes value 1 and boxes value not greater than size_result - if boxes <= 1: - boxes_result = 1 - elif boxes > size_result: - boxes_result = size_result - else: - boxes_result = boxes - - return size_result, boxes_result diff --git a/Students/salim/session02/ack.py b/Students/salim/session02/ack.py deleted file mode 100644 index 4e3054ca..00000000 --- a/Students/salim/session02/ack.py +++ /dev/null @@ -1,39 +0,0 @@ -#!/usr/env/python - - -def ack(m, n): - """Returns the result of the Ackermann function.""" - if m < 0 or n < 0: - return False # ackermann function not defined for negitive inputs - elif m == 0: - return n + 1 - elif m > 0 and n == 0: - return ack(m-1, 1) - elif m > 0 and n > 0: - return ack(m-1, ack(m, n-1)) - - -if __name__ == '__main__': - assert ack(0, 0) == 1 - assert ack(0, 1) == 2 - assert ack(0, 2) == 3 - assert ack(0, 3) == 4 - assert ack(0, 4) == 5 - assert ack(1, 0) == 2 - assert ack(1, 1) == 3 - assert ack(1, 2) == 4 - assert ack(1, 3) == 5 - assert ack(1, 4) == 6 - assert ack(2, 0) == 3 - assert ack(2, 1) == 5 - assert ack(2, 2) == 7 - assert ack(2, 3) == 9 - assert ack(2, 4) == 11 - assert ack(3, 0) == 5 - assert ack(3, 1) == 13 - assert ack(3, 2) == 29 - assert ack(3, 3) == 61 - assert ack(3, 4) == 125 - assert ack(4, 0) == 13 - assert not ack(-3, 3) - print 'All Tests Pass' diff --git a/Students/salim/session02/series.py b/Students/salim/session02/series.py deleted file mode 100644 index 715c8940..00000000 --- a/Students/salim/session02/series.py +++ /dev/null @@ -1,65 +0,0 @@ -#!/usr/env/python - - -def fibonacci(n): - """Returns the nth number of the Fibonacci series.""" - if n == 0: - return 0 - elif n == 1: - return 1 - else: - return fibonacci(n - 1) + fibonacci(n - 2) - - -def lucas(n): - """Returns the nth number of the Lucas series.""" - if n == 0: - return 2 - elif n == 1: - return 1 - else: - return lucas(n - 1) + lucas(n - 2) - - -def sum_series(n, first=0, second=1): - """Returns the nth number in the Fibonacci or Lucas seris.""" - if n == 0: - return first - elif n == 1: - return second - else: - return sum_series(n - 1, first, second) + sum_series(n - 2, first, second) - - -if __name__ == '__main__': - assert fibonacci(0) == 0 - assert fibonacci(1) == 1 - assert fibonacci(2) == 1 - assert fibonacci(3) == 2 - assert fibonacci(4) == 3 - assert fibonacci(5) == 5 - assert fibonacci(6) == 8 - assert fibonacci(7) == 13 - assert lucas(0) == 2 - assert lucas(1) == 1 - assert lucas(2) == 3 - assert lucas(3) == 4 - assert lucas(4) == 7 - assert lucas(5) == 11 - assert lucas(6) == 18 - - assert sum_series(0) == 0 - assert sum_series(1) == 1 - assert sum_series(2) == 1 - assert sum_series(3) == 2 - assert sum_series(4) == 3 - assert sum_series(5) == 5 - assert sum_series(6) == 8 - assert sum_series(7) == 13 - assert sum_series(0, first=2, second=1) == 2 - assert sum_series(1, first=2, second=1) == 1 - assert sum_series(2, first=2, second=1) == 3 - assert sum_series(3, first=2, second=1) == 4 - assert sum_series(4, first=2, second=1) == 7 - assert sum_series(5, first=2, second=1) == 11 - assert sum_series(6, first=2, second=1) == 18 diff --git a/Students/salim/session03/.mailroom.py.swp b/Students/salim/session03/.mailroom.py.swp deleted file mode 100644 index 06352d29..00000000 Binary files a/Students/salim/session03/.mailroom.py.swp and /dev/null differ diff --git a/Students/salim/session03/list_lab.py b/Students/salim/session03/list_lab.py deleted file mode 100644 index fe3dbc16..00000000 --- a/Students/salim/session03/list_lab.py +++ /dev/null @@ -1,68 +0,0 @@ -#!/usr/bin/env python - - -# print original list -a_list = ['Apples', 'Pears', 'Oranges', 'Peaches'] -print a_list - -# ask user to add a fruit -user_input = raw_input('Please provide another fruit: ') - -# add the fruit to the list and print the new list -a_list.append(user_input) -print a_list - -# ask user for a number and print the corresponding fruit -user_number = int(raw_input('Please provide a number: ')) -print 'This number is %d, which matches fruit %s.' % (user_number, a_list[user_number - 1]) - -# add another fruit to the start of list using "+" -a_list = ['Bananna'] + a_list -print a_list - -# add another fruit to the start of list using "insert" -a_list.insert(0, 'Avacado') -print a_list - -# display all fruits that start with "P" -p_list = [] -for fruit in a_list: - if fruit[0].lower() == 'p': - p_list.append(fruit) -print p_list - -# remove last fruit from list -del a_list[-1] -print a_list - -# ask user for fruit to delete, then delete -user_delete = raw_input('Type a Fruit to delete: ') -a_list.remove(user_delete) - -# loop through and ask the user if they like each fruit -for fruit in a_list: - user_delete = raw_input('Do you like %s? ' % fruit.lower()) - - # correct the entry if it's not yes or no - while not (user_delete.lower() == 'yes' or user_delete.lower() == 'no'): - user_delete = raw_input('Please enter "Yes" or "No". Try again.') - - # delete the fruit from the list if answered "No" - if user_delete.lower() == 'no': - a_list.remove(fruit) - -print a_list - -# make a copy of the list -copy_list = a_list[:] - -# reverse letters -for idx, fruit in enumerate(copy_list): - copy_list[idx] = fruit[::-1] - -# delete last item of original list -del a_list[-1] - -# print both lists -print 'Original List: %s' % a_list -print 'Copy List: %s' % copy_list diff --git a/Students/salim/session03/mailroom.py b/Students/salim/session03/mailroom.py deleted file mode 100644 index d5c6b19a..00000000 --- a/Students/salim/session03/mailroom.py +++ /dev/null @@ -1,136 +0,0 @@ -#!/usr/bin/env python - - -def create_donation_list(): - d_list = [['Salim Hamed', [100, 900, 1500]], - ['Iris Marlin', [300]], - ['John Doe', [200, 1904343]], - ['Terry Smith', [850]], - ['Bill Williams', [450, 894]], - ['Richard Sherman', [500, 900, 50000]]] - return d_list - - -def list_doners(d_list): - s = '' - for doner in d_list: - s += (doner[0] + '\n') - return s.rstrip() - - -def in_list(name, d_list): - return_bool = False - for item in d_list: - if type(item[0]) == str: - if item[0].lower() == name.lower(): - return_bool = True - return return_bool - - -def add_to_list(name, amount, d_list): - for item in d_list: - if item[0].lower() == name: - item[1].append(amount) - return d_list - - -def display_report(d_list): - report = 'Name\t\t\tTotal Donation\n' - for item in d_list: - report += item[0] - report += '\t\t\t' - report += '${:2,.0f}\n'.format(sum(item[1])) - return report.rstrip() - - -def send_mail(name, amount): - email = ( - "Dear {:s},\nThank you for your generous donation of ${:2,.0f}. " - "We appreciate your thoughtfullness and we will make sure your " - "dontation goes to the right cause.\nKind Regards,\nDontation Team" - ).format(name, amount) - return email - - -if __name__ == '__main__': - # get original donation list - donation_list = create_donation_list() - response = '' - response_level = 1 - - # level 1 - while response_level >= 1: - - if response_level == 0: - break - - elif response_level == 1: - - # prompt user for inital response - response = raw_input( - 'What would you like to do? Enter "TY" for ' - '"Send a Thank You", "CR" for "Create a Report", ' - '"back" to go back, or "quit" to quit: ' - ) - response = response.lower() - - # prompt user to correct entry - while response not in ['ty', 'cr', 'quit', 'back']: - response = raw_input('Invalid Entry. Try again: ') - response = response.lower() - - # set response level - if response == 'quit': - response_level = 0 - elif response == 'back': - response_level = max([response_level - 1, 1]) - else: - response_level = 2 - - elif response_level == 2: - - if response == 'ty': - response = raw_input('Please enter full name: ') - response = response.lower() - - if response == 'quit': - response_level = 0 - elif response == 'back': - response_level = max([response_level - 1, 1]) - elif response == 'list': - print list_doners(donation_list) - response_level = 2 - response = 'ty' # change response to enter if statement - elif in_list(response, donation_list): - response_level = 3 - donation_name = response - else: - donation_list.append([response, []]) - response_level = 3 - donation_name = response - - elif response == 'cr': - print display_report(donation_list) - response_level = 1 - response = '' - - elif response_level == 3: - - response = raw_input('Enter donation amount: ') - - # prompt user for correct entry - while (not response.isdigit()) and (response not in ['quit', 'back']): - response = raw_input('Invalid Entry. Try Again: ') - - if response == 'quit': - response_level = 0 - continue - elif response == 'back': - response_level = max([response_level - 1, 1]) - response = 'ty' # change response to enter if statement - continue - - donation_list = add_to_list(donation_name, int(response), donation_list) - print send_mail(donation_name, int(response)) - response_level = 1 - response = '' diff --git a/Students/salim/session03/rot13.py b/Students/salim/session03/rot13.py deleted file mode 100644 index 35c1fc21..00000000 --- a/Students/salim/session03/rot13.py +++ /dev/null @@ -1,36 +0,0 @@ -#!/usr/bin/env python - - -def rot13(s): - return_s = '' - - # loop through letters in text and encrypt - for letter in s: - - # encrpyt alphabet characters - if letter.isalpha(): - if letter.islower(): - return_s += encrypt(letter, 97) - else: - return_s += encrypt(letter, 65) - - # do not encrypt non-alphabet characters - else: - return_s += str(letter) - - return return_s - - -def encrypt(letter, start): - # if letter is in the first 1/2 of the alphabet - if ord(letter) <= (start + 12): - return chr(ord(letter) + 13) - # if letter is in the second 1/2 of the alphabet - else: - return chr(ord(letter) - 13) - - -if __name__ == '__main__': - assert rot13('Hello') == 'Uryyb' - assert rot13('HELLO') == 'URYYB' - assert rot13('hello') == 'uryyb' diff --git a/Students/salim/session03/string_lab.py b/Students/salim/session03/string_lab.py deleted file mode 100644 index 52d27ccc..00000000 --- a/Students/salim/session03/string_lab.py +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/env python - -# print numbers -numbers = [1, 4, 83, 321, -56, 88] -print 'The first 3 numbers are: %i, %i, %i' % tuple(numbers[:3]) - -# use format() - -# automatic field numbering -print 'file_{:=03} : {:10.2f}, {:10.0e}'.format(2, 123.4567, 10000) - -# positional field numbering -print 'file_{0:=03} : {1:10.2f}, {2:10.0e}'.format(2, 123.4567, 10000) - - -# use % notation - -# automatic field numbering -print 'file_%03d: %10.2f, %10.0e' % (2, 123.4567, 10000) diff --git a/Students/salim/session04/cp_dict_set_lab.py b/Students/salim/session04/cp_dict_set_lab.py deleted file mode 100644 index 81abd531..00000000 --- a/Students/salim/session04/cp_dict_set_lab.py +++ /dev/null @@ -1,81 +0,0 @@ -#!/usr/bin/env python - - -# #############################Lesson 1############################## - -# create dict -d1 = {'name': 'Chris', 'city': 'Seattle', 'cake': 'Chocolate'} -print d1 - -# delete entry for cake -del d1['cake'] -print d1 - -# add an entry to the dict -d1['fruit'] = 'Mango' -print d1 - -# display the values -d1.values() - -# display the keys -d1.keys() - -# is 'cake' a key in the dict? -'cake' in d1 - -# is 'Mango' a value in the dict? -'Mango' in d1.values() - - -# #############################Lesson 2############################## - -# create list from 0 to 15 -l2 = range(16) - -# create list with hex representation -s2 = [] -for item in l2: - s2.append(hex(item)) - -# zip lists into dict -d2 = dict(zip(l2, s2)) - - -# #############################Lesson 3############################## - -# use d1 to create a new dict with same keys but number of 't's in values -d3 = {} -for key, value in d1.iteritems(): - d3[key] = value.count('t') - - -# #############################Lesson 4############################## - -# make three sets -s2 = set(range(0, 20, 2)) -s3 = set(range(0, 20, 3)) -s4 = set(range(0, 20, 4)) - -# print the sets -print s2 -print s3 -print s4 - -# check sets -s3.issubset(s2) -s4.issubset(s2) - - -# #############################Lesson 4############################## - -a_set = set('Python') -a_set.add('i') - -b_set = frozenset('marathon') - -u_set = a_set.union(b_set) -i_set = a_set.intersection(b_set) - -print u_set -print i_set diff --git a/Students/salim/session04/dict_set_lab.py b/Students/salim/session04/dict_set_lab.py deleted file mode 100644 index 81abd531..00000000 --- a/Students/salim/session04/dict_set_lab.py +++ /dev/null @@ -1,81 +0,0 @@ -#!/usr/bin/env python - - -# #############################Lesson 1############################## - -# create dict -d1 = {'name': 'Chris', 'city': 'Seattle', 'cake': 'Chocolate'} -print d1 - -# delete entry for cake -del d1['cake'] -print d1 - -# add an entry to the dict -d1['fruit'] = 'Mango' -print d1 - -# display the values -d1.values() - -# display the keys -d1.keys() - -# is 'cake' a key in the dict? -'cake' in d1 - -# is 'Mango' a value in the dict? -'Mango' in d1.values() - - -# #############################Lesson 2############################## - -# create list from 0 to 15 -l2 = range(16) - -# create list with hex representation -s2 = [] -for item in l2: - s2.append(hex(item)) - -# zip lists into dict -d2 = dict(zip(l2, s2)) - - -# #############################Lesson 3############################## - -# use d1 to create a new dict with same keys but number of 't's in values -d3 = {} -for key, value in d1.iteritems(): - d3[key] = value.count('t') - - -# #############################Lesson 4############################## - -# make three sets -s2 = set(range(0, 20, 2)) -s3 = set(range(0, 20, 3)) -s4 = set(range(0, 20, 4)) - -# print the sets -print s2 -print s3 -print s4 - -# check sets -s3.issubset(s2) -s4.issubset(s2) - - -# #############################Lesson 4############################## - -a_set = set('Python') -a_set.add('i') - -b_set = frozenset('marathon') - -u_set = a_set.union(b_set) -i_set = a_set.intersection(b_set) - -print u_set -print i_set diff --git a/Students/salim/session04/exception_lab.py b/Students/salim/session04/exception_lab.py deleted file mode 100644 index 233e4806..00000000 --- a/Students/salim/session04/exception_lab.py +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env python - - -def safe_input(): - try: - return raw_input('Type ^c or ^d to raise an error.') - except (KeyboardInterrupt, EOFError): - return None - -if __name__ == '__main__': - safe_input() diff --git a/Students/salim/session04/files_lab.py b/Students/salim/session04/files_lab.py deleted file mode 100644 index 35c2d75b..00000000 --- a/Students/salim/session04/files_lab.py +++ /dev/null @@ -1,48 +0,0 @@ -#!/Library/Frameworks/Python.framework/Versions/2.7/bin/python - - -def read_file_to_list(a_file): - """Return a list of the lines in a file with newlines removed""" - # move file to begining - a_file.seek(0) - - # add lines to list - a_list = [] - for line in a_file: - a_list.append(line.strip()) - - return a_list - - -def parse_languages(a_list): - """Return a list of distinct languages.""" - a_set = set() - - # parse text file - for item in a_list: - # split students and languages - student_lang = item.split(':') - - # split languages - lang = student_lang[1].split(',') - - # add languages to set - for l in lang: - if len(l.strip()) > 0: - a_set.add(l.strip()) - - # convert to list - b_list = [] - for language in a_set: - b_list.append(language) - - # sort list - b_list.sort() - - return b_list - - -path_students = '../../../Examples/Session01/students.txt' -file_students = open(path_students, 'r') -list_students = read_file_to_list(file_students) -list_languages = parse_languages(list_students) diff --git a/Students/salim/session04/kata_14.py b/Students/salim/session04/kata_14.py deleted file mode 100644 index 80099e43..00000000 --- a/Students/salim/session04/kata_14.py +++ /dev/null @@ -1,143 +0,0 @@ -#!/Library/Frameworks/Python.framework/Versions/2.7/bin/python - -import string - - -def file_to_list(a_file, start_line=0, end_line=0): - """Read lines of file into a list. Ignore blank and all cap lines.""" - - a_list = [] - - ignore_list = ['I.', 'II.', 'III.', 'IV.', 'V.', 'VI.', 'VII.', 'VIII.', - 'IX.', 'X.', 'XI.', 'XII.'] - - for idx, line in enumerate(a_file, start_line): - - # strip whitespace out of line - line = line.strip() - - # stop reading if reached end_line parameter - if end_line and idx >= end_line: - break - - else: - # check if line starts with text in ignore list - start_with_ignore = False - for word in ignore_list: - if line.startswith(word): - start_with_ignore = True - break - - # only add line to list if it's non-blank and non-uppercase - if line and not line.isupper() and not start_with_ignore: - a_list.append(line) - - return a_list - - -def build_trigram(all_words): - """Return a trigram dictionary.""" - trigram_dict = dict() - for idx, word in enumerate(all_words): - - # only add words to dict if there are three words left - if idx < len(all_words) - 3: - - # build keys and values for dict - key = '{:s} {:s}'.format(word, all_words[idx + 1]) - value = all_words[idx + 2] - - # get or set the current_set for the given key - current_set = trigram_dict.setdefault(key, set([value])) - - # add new value to the current set - current_set.add(value) - - return trigram_dict - - -def get_trigram_output(trigram, start_words, num_of_words): - """Print trigram.""" - trigram_output = start_words.split() - key_string = '{:s} ' * 2 - key_string = key_string.strip() - - for i in range(num_of_words): - # build the key to lookup the set of next words from dictionary - key = key_string.format(*trigram_output[i:i+2]) - - # get the set of next words - try: - return_set = trigram[key] - except KeyError: - break - - # randomly choose and remove a word from the set - next_word = return_set.pop() - - # add the new work to the output list - trigram_output.append(next_word) - - return trigram_output - - -def clean_string(s, lowercase = False, punctuation = False): - s = s.strip() # strip whitespce - - if lowercase: - s = s.lower() # convert to lowercase - - if punctuation: - # create list with all punctuation - delete_characters = list(string.punctuation) - - # exclude some punctuation from being removed - delete_characters.remove('!') - delete_characters.remove('.') - delete_characters.remove('?') - delete_characters.remove(',') - delete_characters.remove("'") - - s = s.translate(None, ''.join(delete_characters)) - - return s - -if __name__ == '__main__': - - path_book = ('/Users/salimhamed/Documents/Documents/School/' - 'Python (2014)/downloads/sherlock.txt') - - # path_book = ('/Users/salimhamed/Documents/Documents/School/' - # 'Python (2014)/downloads/sherlock_small.txt') - - start_line = 0 # starting line of the file - end_line = 0 # ending line of the file - - num_of_words_to_print = 200 - start_words = 'But we' - - # read file to list - f = open(path_book) - f_list = file_to_list(f, start_line, end_line) - - # condense list to a single string - f_string = ' '.join(f_list) - - # strip white space and remove quotes - f_string = clean_string(f_string, lowercase = False, punctuation = False) - - # split single string into list of words - words_list = f_string.split() - - # build a trigram - trigram_dict = build_trigram(words_list) - - # get trigram list - trigram_list = get_trigram_output(trigram_dict, - start_words, - num_of_words_to_print) - - # print trigram list - print_string = ('{:s} ' * len(trigram_list))[:-1] - print 'Trigram of {:d} words:'.format(len(trigram_list)) - print print_string.format(*trigram_list) diff --git a/Students/salim/session04/mailroom2.py b/Students/salim/session04/mailroom2.py deleted file mode 100755 index 05169abc..00000000 --- a/Students/salim/session04/mailroom2.py +++ /dev/null @@ -1,161 +0,0 @@ -#!/Library/Frameworks/Python.framework/Versions/2.7/bin/python - -from textwrap import dedent - - -def create_donation_list(): - """Build inital list of donors.""" - d_list = [['Salim Hamed', [100, 900, 1500]], - ['Iris Marlin', [300]], - ['John Doe', [200, 1904343]], - ['Terry Smith', [850]], - ['Bill Williams', [450, 894]], - ['Richard Sherman', [500, 900, 50000]]] - return d_list - - -def inital_prompt(): - """Display inital prompt and return user response.""" - prompt = dedent(""" - Hello, what would you like to do? - - 1 <- Send a Thank You Letter - 2 <- Create a Donation Report - q <- Quit - - """) - return raw_input(prompt) - - -def thank_you(donor_list): - """Prompt for name and add donation amount to history.""" - - # prompt user for donor name - name_prompt = dedent(""" - Enter donor's name. - ('b' to go back or 'l' for donor list) - """) - response = raw_input(name_prompt) - - # remember if donor is in list - donor_in_list = in_list(response, donor_list) - - # evaluate user responses - if response.lower() == 'b': - return - - elif response.lower() == 'l': - list_doners(donor_list) - - else: - # ask user for donation amount - while True: - amount_prompt = dedent(""" - How much money was donated? - ('b' to go back) - """) - amount = raw_input(amount_prompt) - - # exit function if user wants to go back - if amount.lower() == 'b': - return - - # convert entry to float - try: - amount = float(amount) - except ValueError: - print '\nInvalid Entry! Please Try Again.' - else: - break - - # add donation to history - if donor_in_list: - send_mail(response, amount) - add_existing_donor_to_list(response, amount, donor_list) - return - else: - send_mail(response, amount) - add_new_donor_to_list(response, amount, donor_list) - return - - -def send_mail(name, amount): - """Print thank you letter for donation.""" - email = dedent(""" - Dear {:s}, - - Thank you very much for your generous donation of ${:,.2f}. We - appreciate your thoughtfullness and we will make sure your donation - goes to the right cause. - - Kind Regards, - Donation Team - """) - print email.format(name, amount) - - -def list_doners(d_list): - """Print the current list of donors.""" - for doner in d_list: - print doner[0] - - -def in_list(name, d_list): - """Return True if donor is in donation list.""" - for item in d_list: - if str(item[0]).lower() == name.lower(): - return True - return False - - -def add_existing_donor_to_list(name, amount, donor_list): - """Add donation amount to list of historical dontations.""" - for donor, donations in donor_list: - if donor.lower() == name.lower(): - donations.append(amount) - return donor_list - - -def add_new_donor_to_list(name, amount, donor_list): - """Add new donor and donation amount to list of historical dontations.""" - return donor_list.append([name, [amount]]) - - -def display_report(d_list): - """Print Donation Report.""" - # create report header - header = '\n| {:<30s} | {:>21s} |'.format('Donor Name', 'Total Donation') - border = '=' * 58 - - # print header - print header - print border - - # print lines - for name, donations in d_list: - line = '| {:<30s} | ${:20,.2f} |'.format(name, sum(donations)) - print line - - # print final board below lines - print border - - -if __name__ == '__main__': - # get donation list - donation_list = create_donation_list() - - while True: - # capture user response from inital prompt - response = inital_prompt() - - # exit program if user enters 'q' - if response.lower() == 'q': - break - # send thank you letter - elif response == '1': - thank_you(donation_list) - # create a donation report - elif response == '2': - display_report(donation_list) - else: - print 'Invalid Entry! Please Try Again.' diff --git a/Students/salim/session04/paths_files.py b/Students/salim/session04/paths_files.py deleted file mode 100644 index 1297e761..00000000 --- a/Students/salim/session04/paths_files.py +++ /dev/null @@ -1,31 +0,0 @@ -#!/usr/local/bin/python - -import pathlib - - -def copy_file(source, destination): - # read cotents of source file - file_to_copy = open(source, 'r').read() - - # open new file and write contents of source file - file_to_write = open(destination, 'w') - file_to_write.write(file_to_copy) - - # close file - file_to_write.close() - - -# find file directory -file_path = pathlib.Path(__file__) -parent_path = file_path.parent - -# print files in directory -for f in parent_path.iterdir(): - print f - -# copy file -source = ("/Users/salimhamed/Documents/Documents/School/Python (2014)/" - "IntroToPython/Students/salim/session04/dict_set_lab.py") -destination = ("/Users/salimhamed/Documents/Documents/School/Python (2014)/" - "IntroToPython/Students/salim/session04/cp_dict_set_lab.py") -copy_file(source, destination) diff --git a/Students/salim/session05/__pycache__/test_count_evens.cpython-27-PYTEST.pyc b/Students/salim/session05/__pycache__/test_count_evens.cpython-27-PYTEST.pyc deleted file mode 100644 index 24130a08..00000000 Binary files a/Students/salim/session05/__pycache__/test_count_evens.cpython-27-PYTEST.pyc and /dev/null differ diff --git a/Students/salim/session05/__pycache__/test_mailroom.cpython-27-PYTEST.pyc b/Students/salim/session05/__pycache__/test_mailroom.cpython-27-PYTEST.pyc deleted file mode 100644 index 7c00ff14..00000000 Binary files a/Students/salim/session05/__pycache__/test_mailroom.cpython-27-PYTEST.pyc and /dev/null differ diff --git a/Students/salim/session05/count_evens.py b/Students/salim/session05/count_evens.py deleted file mode 100644 index 43599c6c..00000000 --- a/Students/salim/session05/count_evens.py +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/local/bin/python - - -def count_evens(a_list): - even_list = [x for x in a_list if x % 2 == 0] - return len(even_list) diff --git a/Students/salim/session05/count_evens.pyc b/Students/salim/session05/count_evens.pyc deleted file mode 100644 index 06933e26..00000000 Binary files a/Students/salim/session05/count_evens.pyc and /dev/null differ diff --git a/Students/salim/session05/dict_set_comprehensions_lab.py b/Students/salim/session05/dict_set_comprehensions_lab.py deleted file mode 100644 index c004178c..00000000 --- a/Students/salim/session05/dict_set_comprehensions_lab.py +++ /dev/null @@ -1,59 +0,0 @@ -#!/usr/local/bin/python - - -def print_dict(a_dict): - """Returns the printed version of food_prefs dict.""" - s = ('{name} is from {city}, and he likes {cake} cake, {fruit} fruit, ' - '{salad} salad, and {pasta} pasta.') - print s.format(**a_dict) - - -def build_dict_list_comp(n): - """Return a dict with hexadecimal representation range of numbers.""" - a_list = [[k, '{:x}'.format(k)] for k in range(n)] - return dict(a_list) - - -def build_dict_dict_comp(n): - """Return a dict with hexadecimal representation range of numbers.""" - return {k: '{:x}'.format(k) for k in range(n)} - - -def dict_number_a(a_dict): - """Return a dict with the number of 'a's.""" - return {k: v.count('a') for k, v in a_dict.iteritems()} - - -def create_sets(): - s2 = {i for i in range(21) if i % 2 == 0} - s3 = {i for i in range(21) if i % 3 == 0} - s4 = {i for i in range(21) if i % 4 == 0} - print s2 - print s3 - print s4 - - -def create_sets_better(): - l = [] - for x in range(2, 5): - l.append({i for i in range(21) if i % x == 0}) - return l - - -def print_sets_better(): - l = [] - for x in range(2, 5): - l.append({i for i in range(21) if i % x == 0}) - print str('{}\n' * 3).format(*l) - - -def create_sets_better_comprehension(): - return [{i for i in range(21) if i % x == 0} for x in range(2, 5)] - - -food_prefs = {"name": u"Chris", - u"city": u"Seattle", - u"cake": u"chocolate", - u"fruit": u"mango", - u"salad": u"greek", - u"pasta": u"lasagna"} diff --git a/Students/salim/session05/email/Salim Sr.txt b/Students/salim/session05/email/Salim Sr.txt deleted file mode 100644 index 02d6b444..00000000 --- a/Students/salim/session05/email/Salim Sr.txt +++ /dev/null @@ -1,9 +0,0 @@ - -Dear Salim Sr, - -Thank you very much for your generous donation of $101.00. We -appreciate your thoughtfullness and we will make sure your donation -goes to the right cause. - -Kind Regards, -Donation Team diff --git a/Students/salim/session05/email/Zeina.txt b/Students/salim/session05/email/Zeina.txt deleted file mode 100644 index 4c451a20..00000000 --- a/Students/salim/session05/email/Zeina.txt +++ /dev/null @@ -1,9 +0,0 @@ - -Dear Zeina, - -Thank you very much for your generous donation of $500.00. We -appreciate your thoughtfullness and we will make sure your donation -goes to the right cause. - -Kind Regards, -Donation Team diff --git a/Students/salim/session05/email/joanna hamed.txt b/Students/salim/session05/email/joanna hamed.txt deleted file mode 100644 index d7d040ba..00000000 --- a/Students/salim/session05/email/joanna hamed.txt +++ /dev/null @@ -1,9 +0,0 @@ - -Dear Joanna Hamed, - -Thank you very much for your generous donation of $100.00. We -appreciate your thoughtfullness and we will make sure your donation -goes to the right cause. - -Kind Regards, -Donation Team diff --git a/Students/salim/session05/email/salim.txt b/Students/salim/session05/email/salim.txt deleted file mode 100644 index c18e549e..00000000 --- a/Students/salim/session05/email/salim.txt +++ /dev/null @@ -1,9 +0,0 @@ - -Dear salim, - -Thank you very much for your generous donation of $100.00. We -appreciate your thoughtfullness and we will make sure your donation -goes to the right cause. - -Kind Regards, -Donation Team diff --git a/Students/salim/session05/keywords_lab.py b/Students/salim/session05/keywords_lab.py deleted file mode 100644 index 2fe64c29..00000000 --- a/Students/salim/session05/keywords_lab.py +++ /dev/null @@ -1,33 +0,0 @@ -#!/usr/local/bin/python - - -def func(fore_color='White', - back_color='Black', - link_color='Blue', - visited_color='Green'): - """Print colors.""" - s = ('{} ' * 4).strip() - - print s.format(fore_color, back_color, link_color, visited_color) - - -def func_args(**kwargs): - """Print colors.""" - s = '{fore_color}, {back_color}, {link_color}, {visited_color}' - - print s.format(**kwargs) - - -# call the function with various parameters -func((1, 2, 3, 4)) # prints the tuple in the first argument - -func(*(1, 2, 3, 4)) - -args = (1, 2, 3, 4) -func(*args) - -kwargs = {'fore_color':'hey', - 'back_color':'there', - 'link_color':'how', - 'visited_color':'you'} -func_args(**kwargs) diff --git a/Students/salim/session05/mailroom3.py b/Students/salim/session05/mailroom3.py deleted file mode 100755 index 419e1d27..00000000 --- a/Students/salim/session05/mailroom3.py +++ /dev/null @@ -1,150 +0,0 @@ -#!/usr/local/bin/python - -from textwrap import dedent -import pathlib - - -def create_donation_list(): - """Build inital list of donors.""" - d_list = {'salim hamed': [100, 900, 1500], - 'iris marlin': [300], - 'john doe': [200, 1904343], - 'terry smith': [850], - 'bill williams': [450, 894], - 'richard sherman': [500, 900, 50000]} - return d_list - - -def inital_prompt(): - """Display inital prompt and return user response.""" - prompt = dedent(""" - Hello, what would you like to do? - - 1 <- Send a Thank You Letter - 2 <- Create a Donation Report - q <- Quit - - """) - return raw_input(prompt) - - -def thank_you(donor_list): - """Prompt for name and add donation amount to history.""" - # prompt user for donor name - name_prompt = dedent(""" - Enter donor's name. - ('b' to go back or 'l' for donor list) - """) - response = raw_input(name_prompt) - - # evaluate user responses - if response.lower() == 'b': - return - - elif response.lower() == 'l': - print list_doners(donor_list) - - else: - # ask user for donation amount - while True: - amount_prompt = dedent(""" - How much money was donated? - ('b' to go back) - """) - amount = raw_input(amount_prompt) - - # exit function if user wants to go back - if amount.lower() == 'b': - return - - # convert entry to float - try: - amount = float(amount) - except ValueError: - print '\nInvalid Entry! Please Try Again.' - else: - break - - # send thank you letter - print send_mail(response, amount) - - # add donation to history - donor_list.setdefault(response.lower(), []).append(amount) - return - - -def send_mail(name, amount): - """Print thank you letter for donation.""" - # create email pretext - pretext = dedent(""" - The folowing email has been saved to the "email/" sub directory - ===================================================================== - """) - - # create email - email = dedent(""" - Dear {:s}, - - Thank you very much for your generous donation of ${:,.2f}. We - appreciate your thoughtfullness and we will make sure your donation - goes to the right cause. - - Kind Regards, - Donation Team - """) - - # write email to file - parent_path = pathlib.Path(__file__).parent - email_file = open(str(parent_path) + '/email/' + name + '.txt', 'w') - email_file.write(email.format(name, amount)) - email_file.close() - - return (pretext + email).format(name, amount) - - -def list_doners(d_list): - """Return print read string with the current list of donors.""" - s = ('\n' + '{}\n' * len(d_list))[:-1] - return s.format(*d_list.keys()).title() - - -def display_report(d_list): - """Print Donation Report.""" - l_report = [] - - # create report header and boder - header = '| {:<30s} | {:>21s} |'.format('Donor Name', 'Total Donation') - border = '=' * 58 - - # create report rows - s = '| {:<30s} | ${:20,.2f} |' - rows = [s.format(k.title(), sum(v)) for k, v in d_list.iteritems()] - - # build report list - l_report.append(header) - l_report.append(border) - l_report.extend(rows) - l_report.append(border) - - return ('\n{}' * len(l_report)).format(*l_report) - - -if __name__ == '__main__': - # get donation list - donation_list = create_donation_list() - - while True: - # capture user response from inital prompt - response = inital_prompt() - - # exit program if user enters 'q' - if response.lower() == 'q': - break - # send thank you letter - elif response == '1': - thank_you(donation_list) - # create a donation report - elif response == '2': - print display_report(donation_list) - else: - print 'Invalid Entry! Please Try Again.' diff --git a/Students/salim/session05/mailroom3.pyc b/Students/salim/session05/mailroom3.pyc deleted file mode 100644 index cbacc161..00000000 Binary files a/Students/salim/session05/mailroom3.pyc and /dev/null differ diff --git a/Students/salim/session05/test_count_evens.py b/Students/salim/session05/test_count_evens.py deleted file mode 100644 index dd3a9b16..00000000 --- a/Students/salim/session05/test_count_evens.py +++ /dev/null @@ -1,39 +0,0 @@ -#!/usr/local/bin/python - -from count_evens import count_evens - - -def test_count_evens_1(): - assert count_evens([2, 1, 2, 3, 4]) == 3 - - -def test_count_evens_2(): - assert count_evens([2, 1, 2, 3, 4]) == 3 - - -def test_count_evens_3(): - assert count_evens([2, 2, 0]) == 3 - - -def test_count_evens_4(): - assert count_evens([1, 3, 5]) == 0 - - -def test_count_evens_5(): - assert count_evens([]) == 0 - - -def test_count_evens_6(): - assert count_evens([11, 9, 0, 1]) == 1 - - -def test_count_evens_7(): - assert count_evens([2, 11, 9, 0]) == 2 - - -def test_count_evens_8(): - assert count_evens([2]) == 1 - - -def test_count_evens_9(): - assert count_evens([2, 5, 12]) == 2 diff --git a/Students/salim/session05/test_mailroom.py b/Students/salim/session05/test_mailroom.py deleted file mode 100644 index b03537c5..00000000 --- a/Students/salim/session05/test_mailroom.py +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/local/bin/python - - -import mailroom3 as mail - - -def test_create_donation_list(): - assert type(mail.create_donation_list()) == dict - - -def test_send_mail(): - assert type(mail.send_mail('Salim Hamed', 100)) == str - assert mail.send_mail('Salim Hamed', 100).count('Salim Hamed') == 1 - assert mail.send_mail('Salim Hamed', 100).count('100') == 1 - - -def test_list_doners(): - assert type(mail.list_doners(mail.create_donation_list())) == str - assert (mail.list_doners(mail.create_donation_list()).count('\n') == - len(mail.create_donation_list())) - assert mail.list_doners(mail.create_donation_list()).count('Salim') == 1 - - -def test_display_report(): - assert type(mail.display_report(mail.create_donation_list())) == str - assert mail.display_report(mail.create_donation_list()).count('Salim') == 1 diff --git a/Students/salim/session06/html_render.py b/Students/salim/session06/html_render.py deleted file mode 100644 index d8c44398..00000000 --- a/Students/salim/session06/html_render.py +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/local/bin/python - -class Element(object): - - def __init__(self, content=None): - self.content = content - def append(self, new_content): - self.content += new_content - def render(self, file_out, ind=""): - pass diff --git a/Students/salim/session06/lambda_keyword_lab.py b/Students/salim/session06/lambda_keyword_lab.py deleted file mode 100644 index c33ac5d5..00000000 --- a/Students/salim/session06/lambda_keyword_lab.py +++ /dev/null @@ -1,5 +0,0 @@ -def incremental(n): - l = [] - for i in range(n): - l.append(lambda x, e=i: x + e) - return l diff --git a/Students/salim/session07/circle.py b/Students/salim/session07/circle.py deleted file mode 100644 index 7bca4715..00000000 --- a/Students/salim/session07/circle.py +++ /dev/null @@ -1,45 +0,0 @@ -#!usr/local/bin/python - -from math import pi - - -class Circle(object): - """Generic Circle class.""" - - def __init__(self, radius): - self.radius = radius - - @property - def diameter(self): - return self.radius * 2.0 - - @diameter.setter - def diameter(self, value): - self.radius = value / 2.0 - - @property - def area(self): - return pi * self.radius ** 2 - - @classmethod - def from_diameter(cls, diameter): - return cls(diameter / 2.0) - - def __str__(self): - return 'Circle with radius: {:.2f}'.format(self.radius) - - def __repr__(self): - return 'Circle({})'.format(self.radius) - - def __add__(self, other): - return Circle(self.radius + other.radius) - - def __mul__(self, other): - return Circle(self.radius * other) - - def __rmul__(self, other): - return Circle(self.radius * other) - - def __cmp__(self, other): - result = float(self.radius) - float(other.radius) - return -1 if result < 0 else 1 if result > 0 else 0 diff --git a/Students/salim/session07/circle_test.py b/Students/salim/session07/circle_test.py deleted file mode 100644 index b0a0468c..00000000 --- a/Students/salim/session07/circle_test.py +++ /dev/null @@ -1,102 +0,0 @@ -#!usr/local/bin/python -from circle import Circle -from math import pi - - -def test_circle_class(): - c = Circle(2) - assert isinstance(c, Circle) - - -def test_radius(): - c = Circle(2.0) - assert c.radius == 2.0 - - -def test_get_diameter(): - c = Circle(2.5) - assert c.diameter == 5.0 - - -def test_set_diameter(): - c = Circle(4.3) - c.diameter = 3.0 - assert c.radius == 1.5 - assert c.diameter == 3.0 - - -def test_area(): - c = Circle(10) - assert c.area == pi * 10 ** 2 - - -def test_set_area(): - c = Circle(4) - try: - c.area = 10 - except AttributeError as error: - assert error.message == "can't set attribute" - else: - assert False - - -def test_from_diameter(): - c = Circle.from_diameter(10) - assert isinstance(c, Circle) - assert c.radius == 5.0 - - -def test_print_circle(): - c_int = Circle(3) - c_float = Circle(3.50) - assert str(c_int) == 'Circle with radius: 3.00' - assert str(c_float) == 'Circle with radius: 3.50' - - -def test_repr(): - c = Circle(3) - assert repr(c) == 'Circle(3)' - - -def test_add(): - a = Circle(10) - b = Circle(15) - assert isinstance(a + b, Circle) - assert (a + b).radius == Circle(25).radius - - -def test_multiply(): - a = Circle(10) - c_mult = a * 3 - assert isinstance(c_mult, Circle) - assert c_mult.radius == 30 - - c2_mult = 4 * a - assert isinstance(c2_mult, Circle) - assert c2_mult.radius == 40 - - -def test_compare_circle(): - a3 = Circle(3) - b3 = Circle(3) - c5 = Circle(5) - d10 = Circle(10) - e3f = Circle(3.0) - assert not a3 > b3 - assert c5 > b3 - assert not c5 < b3 - assert a3 < d10 - assert a3 == b3 - assert not d10 == c5 - - -def test_sort(): - c_list = [Circle(6), Circle(7), Circle(15), Circle(1), Circle(6.5)] - c_list.sort() - - sorted_list = [Circle(1), Circle(6), Circle(6.5), Circle(7), Circle(15)] - assert c_list[0].radius == sorted_list[0].radius - assert c_list[1].radius == sorted_list[1].radius - assert c_list[2].radius == sorted_list[2].radius - assert c_list[3].radius == sorted_list[3].radius - assert c_list[4].radius == sorted_list[4].radius diff --git a/Students/salim/session07/subclassing_notes.py b/Students/salim/session07/subclassing_notes.py deleted file mode 100644 index c608c046..00000000 --- a/Students/salim/session07/subclassing_notes.py +++ /dev/null @@ -1,14 +0,0 @@ -class Animal(object): - """Generic animal class""" - - def __init__(self, name): - self.name = name - - def walk(self): - print ('{} is Walking'.format(self.name)) - -class Dog(Animal): - """Man's best friend""" - - def bark(self): - print('Woof!') diff --git a/Students/salim/session08/generator_lab.py b/Students/salim/session08/generator_lab.py deleted file mode 100644 index 4e605fc5..00000000 --- a/Students/salim/session08/generator_lab.py +++ /dev/null @@ -1,42 +0,0 @@ -#!usr/local/bin/python - - -def intsum(): - args = [0, 1, 2, 3, 4, 5, 6, 7] - x = 0 - for i in args: - yield x + i - x = x + i - - -def doubler(): - args = range(1, 100) - x = 0 - for i in args: - yield max([x * 2, 1]) - x = max([x * 2, 1]) - - -def fib(): - l = [0, 0] - while True: - if sum(l) == 0: - yield 1 - l.append(1) - else: - yield sum(l) - l.append(sum(l)) - del l[0] - - -def prime(): - num = 1 - while True: - num += 1 - prime = True - for i in xrange(2, num + 1): - if num % i == 0 and i != num: - prime = False - break - if prime: - yield num diff --git a/Students/salim/session08/iterator.py b/Students/salim/session08/iterator.py deleted file mode 100644 index fdc2750e..00000000 --- a/Students/salim/session08/iterator.py +++ /dev/null @@ -1,42 +0,0 @@ -#!/usr/bin/env python - -""" -Simple iterator examples -""" - - -class IterateMe_1(object): - """ - About as simple an iterator as you can get: - - returns the sequence of numbers from zero to 4 - ( like xrange(4) ) - """ - def __init__(self, stop, *args): - self.step = 1 - if not args: - self.start = -1 - self.stop = stop - else: - self.start = stop - 1 - self.stop = args[0] - if len(args) == 2: - self.step = args[1] - self.start = stop - self.step - - def __iter__(self): - self.current = self.start - return self - - def next(self): - self.current += self.step - if self.current < self.stop: - return self.current - else: - raise StopIteration - -if __name__ == "__main__": - - print "Testing the iterator" - for i in IterateMe_1(): - print i diff --git a/Students/salim/session08/quadratic.py b/Students/salim/session08/quadratic.py deleted file mode 100644 index 9ff0e542..00000000 --- a/Students/salim/session08/quadratic.py +++ /dev/null @@ -1,17 +0,0 @@ -#!usr/local/bin/python - - -class Quadratic(object): - """ - Class for the quardratic equation. - """ - def __init__(self, a, b, c): - self.a = a - self.b = b - self.c = c - - def __call__(self, x): - """ - Return the y value of the quadratic formula. - """ - return (self.a * x ** 2) + (self.b * x) + self.c diff --git a/Students/salim/session08/sparse_array.py b/Students/salim/session08/sparse_array.py deleted file mode 100644 index 66d6ff48..00000000 --- a/Students/salim/session08/sparse_array.py +++ /dev/null @@ -1,76 +0,0 @@ -#!usr/local/bin/python - - -class SparseArray(object): - """ - Use a dictionary to store the location of the values. Then, if the user - asks for a key that isn't in the dictionary, but it should exist, then - return zero. - """ - def __init__(self, sequence): - self.data = {k: v for k, v in enumerate(sequence) if v != 0} - self.mylen = len(sequence) - self.current = -1 - - def get_value(self, idx): - try: - return self.data[idx] - except KeyError: - if idx < self.mylen: - return 0 - else: - raise IndexError - - def __len__(self): - return self.mylen - - def __getitem__(self, idx): - if isinstance(idx, slice): - l = [] - start, stop, stride = idx.indices(len(self)) - for i in xrange(start, stop): - l.append(self.get_value(i)) - return l - else: - return self.get_value(idx) - - def __setitem__(self, idx, value): - if idx < self.mylen: - try: - del self.data[idx] - except KeyError: - pass - finally: - if value != 0: - self.data[idx] = value - else: - raise IndexError - - def __delitem__(self, idx): - if idx < self.mylen: - self.mylen -= 1 - try: - del self.data[idx] - except KeyError: - pass - finally: - d = {} - for k, v in self.data.iteritems(): - if k > idx: - d[k - 1] = v - else: - d[k] = v - self.data = d - else: - raise IndexError - - def __iter__(self): - self.current = -1 - return self - - def next(self): - if self.current + 1 < self.mylen: - self.current += 1 - return self.get_value(self.current) - else: - raise StopIteration diff --git a/Students/salim/session08/test_generator_lab.py b/Students/salim/session08/test_generator_lab.py deleted file mode 100644 index 517f8a35..00000000 --- a/Students/salim/session08/test_generator_lab.py +++ /dev/null @@ -1,57 +0,0 @@ -#!usr/local/bin/python - -import generator_lab as gen - - -def test_intsum(): - g = gen.intsum() - - assert g.next() == 0 - assert g.next() == 1 - assert g.next() == 3 - assert g.next() == 6 - assert g.next() == 10 - assert g.next() == 15 - - -def test_doubler(): - g = gen.doubler() - - assert g.next() == 1 - assert g.next() == 2 - assert g.next() == 4 - assert g.next() == 8 - assert g.next() == 16 - assert g.next() == 32 - - for i in range(10): - j = g.next() - - assert j == 2**15 - - -def test_fib(): - g = gen.fib() - - assert g.next() == 1 - assert g.next() == 1 - assert g.next() == 2 - assert g.next() == 3 - assert g.next() == 5 - assert g.next() == 8 - assert g.next() == 13 - assert g.next() == 21 - - -def test_prime(): - g = gen.prime() - - assert g.next() == 2 - assert g.next() == 3 - assert g.next() == 5 - assert g.next() == 7 - assert g.next() == 11 - assert g.next() == 13 - assert g.next() == 17 - assert g.next() == 19 - assert g.next() == 23 diff --git a/Students/salim/session08/test_sparse_array.py b/Students/salim/session08/test_sparse_array.py deleted file mode 100644 index 593a6c65..00000000 --- a/Students/salim/session08/test_sparse_array.py +++ /dev/null @@ -1,119 +0,0 @@ -#!usr/local/bin/python - -import sparse_array - - -def test_len(): - sa = sparse_array.SparseArray([0, 1, 0, 3, 4, 0, 9, 0]) - assert len(sa) == 8 - - sa2 = sparse_array.SparseArray([]) - assert len(sa2) == 0 - - sa3 = sparse_array.SparseArray((3, 4, 0, 9, 0)) - assert len(sa3) == 5 - - sa4 = sparse_array.SparseArray((0, 0, 0, 0, 0)) - assert len(sa4) == 5 - - -def test_get_item(): - sa = sparse_array.SparseArray([0, 1, 0, 3, 4, 0, 9, 0]) - assert sa[0] == 0 - assert sa[1] == 1 - assert sa[2] == 0 - assert sa[3] == 3 - assert sa[4] == 4 - assert sa[5] == 0 - assert sa[6] == 9 - assert sa[7] == 0 - - try: - sa[8] - except IndexError: - assert True - else: - assert False - - -def test_set_item(): - sa = sparse_array.SparseArray([0, 0, 4, 100, 0, 3, 9]) - sa[0] = 1 - sa[1] = 0 - sa[2] = 0 - sa[3] = 8 - - assert sa[0] == 1 - assert sa[1] == 0 - assert sa[2] == 0 - assert sa[3] == 8 - assert sa[4] == 0 - assert sa[5] == 3 - assert sa[6] == 9 - - try: - sa[8] - except IndexError: - assert True - else: - assert False - - -def test_del_item(): - sa = sparse_array.SparseArray([0, 1, 0, 100, 0, 3, 9]) - - del sa[0] - # ([1, 0, 100, 0, 3, 9]) - assert len(sa) == 6 - assert sa[0] == 1 - assert sa[1] == 0 - assert sa[2] == 100 - assert sa[3] == 0 - assert sa[4] == 3 - assert sa[5] == 9 - - del sa[4] - # ([1, 0, 100, 0, 9]) - assert len(sa) == 5 - assert sa[0] == 1 - assert sa[1] == 0 - assert sa[2] == 100 - assert sa[3] == 0 - assert sa[4] == 9 - - del sa[1] - # ([1, 100, 0, 9]) - assert len(sa) == 4 - assert sa[0] == 1 - assert sa[1] == 100 - assert sa[2] == 0 - assert sa[3] == 9 - - try: - del sa[8] - except IndexError: - assert True - else: - assert False - - -def test_contains(): - sa = sparse_array.SparseArray([0, 1, 0, 100, 0, 3, 9]) - - assert 0 in sa - assert 1 in sa - assert 100 in sa - assert 3 in sa - assert 9 in sa - assert not 10 in sa - assert not 99 in sa - - -def test_slice(): - sa = sparse_array.SparseArray([0, 1, 0, 100, 0, 3, 9]) - - assert sa[0:1] == [0] - assert sa[1:3] == [1, 0] - assert sa[1:4] == [1, 0, 100] - assert sa[2:] == [0, 100, 0, 3, 9] - assert sa[:4] == [0, 1, 0, 100] diff --git a/Students/salim/session09/.context_manager_lab.py.swp b/Students/salim/session09/.context_manager_lab.py.swp deleted file mode 100644 index 6ff09d8f..00000000 Binary files a/Students/salim/session09/.context_manager_lab.py.swp and /dev/null differ diff --git a/Students/salim/session09/context_manager_lab.py b/Students/salim/session09/context_manager_lab.py deleted file mode 100644 index 780cb4a8..00000000 --- a/Students/salim/session09/context_manager_lab.py +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/env python -from datetime import datetime -import sys - - -class Timer(object): - - def __init__(self, file_object=sys.stdout): - self.file_object = file_object - - def __enter__(self): - self.start = datetime.now() - return self - - def __exit__(self, e_type, e_value, e_tb): - elasped = datetime.now() - self.start - output = "This took {:f} seconds.".format(elasped.total_seconds()) - try: - self.file_object.write(output) - except AttributeError as e: - raise e - - return False diff --git a/Students/salim/session09/decorator_lab.py b/Students/salim/session09/decorator_lab.py deleted file mode 100644 index 6754e6c4..00000000 --- a/Students/salim/session09/decorator_lab.py +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/env python - - -def p_wrapper(func): - def wrap(*args, **kwargs): - tag = kwargs.get('tag', 'p') # default tag value is

    - return '<{}>{}'.format(tag, args[0].strip(), tag) - return wrap - -@p_wrapper -def return_a_string(string): - return string - -return_a_string('this is my string') diff --git a/Students/salim/session10/.unicode_lab.py.swp b/Students/salim/session10/.unicode_lab.py.swp deleted file mode 100644 index e356bfeb..00000000 Binary files a/Students/salim/session10/.unicode_lab.py.swp and /dev/null differ diff --git a/Students/salim/session10/ICanEatGlass.utf161.txt b/Students/salim/session10/ICanEatGlass.utf161.txt deleted file mode 100644 index 24a0858d..00000000 Binary files a/Students/salim/session10/ICanEatGlass.utf161.txt and /dev/null differ diff --git a/Students/salim/session10/ICanEatGlass.utf81.txt b/Students/salim/session10/ICanEatGlass.utf81.txt deleted file mode 100644 index 9ecba2b9..00000000 --- a/Students/salim/session10/ICanEatGlass.utf81.txt +++ /dev/null @@ -1,23 +0,0 @@ -I Can Eat Glass: - -And from the sublime to the ridiculous, here is a certain phrase in an assortment of languages: - -Sanskrit: काचं शक्नोम्यत्तुम् । नोपहिनस्ति माम् ॥ - -Sanskrit (standard transcription): kācaṃ śaknomyattum; nopahinasti mām. - -Classical Greek: ὕαλον ϕαγεῖν δύναμαι· τοῦτο οὔ με βλάπτει. - -Greek (monotonic): Μπορώ να φάω σπασμένα γυαλιά χωρίς να πάθω τίποτα. - -Greek (polytonic): Μπορῶ νὰ φάω σπασμένα γυαλιὰ χωρὶς νὰ πάθω τίποτα. - -Latin: Vitrum edere possum; mihi non nocet. - -Old French: Je puis mangier del voirre. Ne me nuit. - -French: Je peux manger du verre, ça ne me fait pas mal. - -Provençal / Occitan: Pòdi manjar de veire, me nafrariá pas. - -Québécois: J'peux manger d'la vitre, ça m'fa pas mal. \ No newline at end of file diff --git a/Students/salim/session10/example.db b/Students/salim/session10/example.db deleted file mode 100644 index ab33aa2e..00000000 Binary files a/Students/salim/session10/example.db and /dev/null differ diff --git a/Students/salim/session10/output_test.txt b/Students/salim/session10/output_test.txt deleted file mode 100644 index 4001cb5a..00000000 --- a/Students/salim/session10/output_test.txt +++ /dev/null @@ -1,7 +0,0 @@ - -This is a unicode object. You can tell because I have a bunch of unicode -characters. Here are some examples: - ڴ - ࢩ - ੴ -Isn't that cool! diff --git a/Students/salim/session10/output_test_2.txt b/Students/salim/session10/output_test_2.txt deleted file mode 100644 index 4001cb5a..00000000 --- a/Students/salim/session10/output_test_2.txt +++ /dev/null @@ -1,7 +0,0 @@ - -This is a unicode object. You can tell because I have a bunch of unicode -characters. Here are some examples: - ڴ - ࢩ - ੴ -Isn't that cool! diff --git a/Students/salim/session10/output_test_3.txt b/Students/salim/session10/output_test_3.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Students/salim/session10/text1.utf16 b/Students/salim/session10/text1.utf16 deleted file mode 100644 index b80b2efc..00000000 Binary files a/Students/salim/session10/text1.utf16 and /dev/null differ diff --git a/Students/salim/session10/text1.utf32 b/Students/salim/session10/text1.utf32 deleted file mode 100644 index c5295310..00000000 Binary files a/Students/salim/session10/text1.utf32 and /dev/null differ diff --git a/Students/salim/session10/text1.utf8 b/Students/salim/session10/text1.utf8 deleted file mode 100644 index 9de18890..00000000 --- a/Students/salim/session10/text1.utf8 +++ /dev/null @@ -1,17 +0,0 @@ -Origin (in native language) Name (in native language) -Հայաստան Արամ Խաչատրյան - Australia Nicole Kidman - Österreich Johann Strauß - Azərbaycan Vaqif Səmədoğlu - Азәрбајҹан Вагиф Сәмәдоғлу - Azərbaycan Heydər Əliyev - Азәрбајҹан Һејдәр Әлијев - België René Magritte - Belgique René Magritte - Belgien René Magritte - বাংলা সুকুমার রায় - འབྲུག་ཡུལ། མགོན་པོ་རྡོ་རྗེ། - ប្រទេស​​​កម្ពុជា ព្រះ​ពុទ្ឋឃោសាចារ‌្យ​ជួន​ណាត -Canada Céline Dion - ᓄᓇᕗᒻᒥᐅᑦ ᓱᓴᓐ ᐊᒡᓗᒃᑲᖅ - \ No newline at end of file diff --git a/Students/salim/session10/unicode_lab.py b/Students/salim/session10/unicode_lab.py deleted file mode 100644 index 93eab739..00000000 --- a/Students/salim/session10/unicode_lab.py +++ /dev/null @@ -1,49 +0,0 @@ -#!/usr/bin/env python - -import io -import os - - -# test printing unicode -print u'this is a snowman: \u2603' -print u'this is a snowflake: \u2744' -print u'this is a theta symbol: \u0398' - - -# test reading unicode -eat_glass_utf16 = io.open('ICanEatGlass.utf161.txt', encoding='utf-16') -print eat_glass_utf16.read() - -eat_glass_utf8 = io.open('ICanEatGlass.utf81.txt', encoding='utf-8') -print eat_glass_utf8.read() - -text1_utf32 = io.open('text1.utf32' ,encoding='utf-32') -print text1_utf32.read() - -text1_utf16 = io.open('text1.utf16' ,encoding='utf-16') -print text1_utf16.read() - -text1_utf8 = io.open('text1.utf8' ,encoding='utf-8') -print text1_utf8.read() - - -# test writing/reading unicode to files -try: - pwd = os.path.dirname(__file__) -except NameError: - pwd = os.getcwd() - -s = u""" -This is a unicode object. You can tell because I have a bunch of unicode -characters. Here are some examples: -\t\u06B4 -\t\u08A9 -\t\u0A74 -Isn't that cool! -""" - -with io.open(os.path.join(pwd, 'output_test.txt'), 'w') as f: # io packagge - f.write(s) - -with open(os.path.join(pwd, 'output_test_2.txt'), 'w') as f: # built in open - f.write(s.encode('utf-8')) # must encode before writing diff --git a/Syllabus.rst b/Syllabus.rst index 86a93e0d..86a9b6ef 100644 --- a/Syllabus.rst +++ b/Syllabus.rst @@ -5,25 +5,32 @@ Syllabus: Introduction to Python UW Adult and Continuing Education Program ============================================ -Certification in Python Programming ---------------------------------------------------- +Certification in Python Programming: Program Description +--------------------------------------------------------- -Tuesdays 6-9 pm: Sept 30 - Dec 9, 2014 (10 Sessions) -..................................................... +Program ID #5149 +The Python Certificate program is a 9-month curriculum divided into three courses. By the end of the program students will have gained a fundamental understanding of programming in Python by creating a variety of scripts and applications for the Web and for systems development. Python is a versatile programming language, suitable for projects ranging from small scripts to large systems. The certificate program emphasizes best practices such as version control, unit testing and recommended styles and idioms. Students will explore the large standard library of Python 3.0, which supports many common programming tasks. -NOTE: in the spirit of the dynamic nature of Python, the Syllabus (and the class) will be a dynamic document -- evolving as the class progresses. The general structure is fixed, but the details will change. +First Course: Introduction to Python +===================================== +Tuesdays 6-9 pm: Sept 27 - Dec 6, 2016 (10 Sessions) +--------------------------------------------------- -Instructor: -=============== -Christopher Barker, PhD. (``PythonCHB@gmail.com``) is an oceanographer and software developer currently working for NOAA in Seattle. He first began programming over 30 years ago, and has been using programming to solve problems in science and engineering ever since. He has been using Python as his primary language since 1998. Chris gives numerous presentations on his work at professional conferences, and teaches oceanography and oil spill modeling at regular workshops. He has been involved with the Seattle Python Interest Group (www.seapig.org) for many years, and has given a number of talks and tutorials at SEAPIG meetings, as well as the PyCon and Scipy conferences. He is an active participant in a number Python-related open source communities, and has served as a Google Summer of Code mentor for the wxPython project. +NOTE: in the spirit of the dynamic nature of Python, this Syllabus (and the class) will be a dynamic document -- evolving as the class progresses. The general structure is fixed, but the details will change to meet the evolving needs of the class. -Python Version: + +Learning Goals =============== -There are two main supported versions of Python: the 2.* series and the 3.* series (py3k). In this class we will be using "cPython" version 2.7, the version distributed by ``_. Each student is expected to have access to a computer with python 2.7 and a decent programmers text editor installed, both during class and for homework assignments. Any modern Operating sytem is fine: OS-X, Linux, or Windows. +By the end of this course, students will be able to “do something useful with Python”. + * Identify/characterize/define a problem + * Design a program to solve the problem + * Create executable code + * Read most Python code + * Write basic unit tests Approach: ========= @@ -31,31 +38,81 @@ This class assumes a basic knowledge of programming. Thus I will try to emphasiz One learns programming by doing -- I'll be demonstrating as I talk about concepts, and I will pause frequently to give you a chance to try things out, so plan on having a laptop up and running with python and your text editor of choice during each class. -Homework: +We will be using a combination of traditional lectore format at "reverse classroom" approach -- We will generally have reading (or video) assignements that cover a topic, and then in class, we will work through excercises as a group to cement your understanding. We will also be doing frequent "pair programming" -- teaming the students up in pairs to work through excercises together. + +Logistics ========= -There will generally be weekly homework assignments. They will usually be flexible to allow for students' varying time constraints. However, you learn by doing, so I do encourage you to put some time in to the homework. I will review your work if you ask me to, and do a mini code-review of selected assignments during class. +Location: Puget Sound Plaza, 4th and Union, Seattle +Dates, times: Tuesday nights, 6 - 9pm; Oct 6 - Dec 8, 2015 +Instructor: Chris Barker, PhD [PythonCHB@gmail.com] +Course assistant: Maria McKinley [parody@uw.edu] +Course website: https://github.com/UWPCE-PythonCert/IntroToPython + +Instructor: +=========== +Christopher Barker, PhD. (``PythonCHB@gmail.com``) is an oceanographer and software developer currently working for NOAA in Seattle. He first began programming over 30 years ago, and has been using programming to solve problems in science and engineering ever since. He has been using Python as his primary language since 1998. Chris gives numerous presentations on his work at professional conferences, and teaches oceanography and oil spill modeling at regular workshops. He has been involved with the Seattle Python Interest Group (www.seapig.org) for many years, and has given a number of talks and tutorials at SEAPIG meetings, as well as the PyCon and SciPy conferences. He is an active participant in a number Python-related open source communities, and has served as a Google Summer of Code mentor for the wxPython project. + + +Python Version: +=============== + +There are two main supported versions of Python: the 2.* series and the 3.* series (py3k). In this class we will be using "cPython" version 3.5, the version distributed by ``_. Each student is expected to have access to a computer with python 3.5 and a decent programmers text editor installed, both during class and for homework assignments. Any modern Operating sytem is fine: OS-X, Linux, or Windows. + +Note that python3 and Python2 have some slightly different syntax and symantics. Much (or most), of the examples you find on the web are in Python2 syntax. We will cover the differences early in class so you will know how to translate. + +Assignments And Assessment +=========================== + +Homework: +--------- +There will generally be weekly homework assignments. They will include both reading and video watching and programming excercises. You are not required to turn in the assignments to pass the course, however, we learn by doing, so I do encourage you to put some time in to the homework. I will review your work if you ask me to, and do mini code-reviews of selected assignments during class. `Teach Yourself Programming in Ten Years `_ -In addition, I will ask each student to identify a small project, ideally related to your work, that you can develop as a class project -- that project will be the primary homework for the last few classes. +In addition, each student will identify a small project, ideally related to your work, that can be developed as a class project -- that project will be the primary homework for the last few classes. Lightning Talks: ----------------- Each student is expected to give one "lightning talk" during the class -- this is a simple 5-minute talk on something related to Python -- totally up to you. We will randomly assign the talks schedule (using Python, of course) during the first class. +Grading And Attendance +---------------------- + +This course is graded pass/fail, based on attendance and completion of projects. Students are required to attend at least 8 of the 10 classes. + +Policies And Values +------------------- + +Active learning requires students to participate in the class, as opposed to sitting and listening quietly. In class students will follow the instructor in creating demonstrative examples. Outside of class, students are expected to read the assignments, perform the homework, and post questions (about recent session topics) that they have on the class mailing list before the next class session. Other students are strongly encouraged to answer these questions if possible. Answers to common and unanswered questions will be reviewed in the next class session. + +Your feedback on the course and instruction +------------------------------------------- + +After the 3rd class session, we solicit anonymous feedback from all students regarding the pacing and instruction of the course. Students will also be invited to provide comments at the end of the course. + +Accomodations +------------- + +The University of Washington is committed to providing access and reasonable accommodation in its services, programs, activities, education and employment for individuals with disabilities. For information or to request disability accommodation contact: Disability Services Office: 206.543.6450/V, 206.543.6452/TTY, 206.685.7264 (FAX), or e-mail at dso@u.washington.edu. + +Student Handbook +----------------- + +The student handbook can be found online http://www.pce.uw.edu/resources/certificates/ + Class format: ============== Each class will be broken down something like this: -- 30 minutes talk -- 25 minutes lab time +- 20 minutes talk +- 35 minutes lab time - 5 minute lightning talk - 5 minute lightning talk - 20 minutes talk -- 30 minutes lab time +- 35 minutes lab time - 5 minute lightning talk - 5 minute lightning talk @@ -68,73 +125,105 @@ Each class will be broken down something like this: gitHub: ======= -All class materials will be up on gitHub (where you probably found this). This allows me to update things at the last minute, and the students can all have easy access to the latest versions. It also familiarizes you with a very useful tool for software development. We'll spend a bit of time during the first class getting everyone up and running with git.... +All class materials will be up on gitHub (where you probably found this). This allows me to update things at the last minute, and the students can all have easy access to the latest versions. It also familiarizes you with a very useful tool for software development. + +We will also be using gitHub to communicate during the class -- turn in assignments, post questions, etc. + +We'll spend a bit of time during the first couple classes getting everyone up and running with git and gitHub. https://github.com/UWPCE-PythonCert/IntroToPython -for rendered and ready to read version: +for rendered and ready to read version of the class lecture notes: http://UWPCE-PythonCert.github.io/IntroToPython Reading: ======== -There is no assigned text book. However, you may find it beneficial to read other discussions of topics in addition to what I present in class: either to explore a topic more deeply, or to simple get another viewpoint. There are many good books on Python, and many more excellent discussions of individual topics on the web. A few you may want to consider: +There is no assigned text book. However, you may find it beneficial to read other discussions of topics in addition to what I present in class or assign as reading: either to explore a topic more deeply, or to simple get another viewpoint. There are many good books on Python, and many more excellent discussions of individual topics on the web. +Note that many books still cover primarily (or only) Python 2. THey can still be very, very useful, the syntax is only a little different, and the concepts the same. + +A few you may want to consider: References for getting started ------------------------------- * **The Python Tutorial** - (https://docs.python.org/2/tutorial/): This is the + (https://docs.python.org/3/tutorial/): This is the official tutorial from the Python website. No more authoritative source is available. * **Code Academy Python Track** (http://www.codecademy.com/tracks/python): Often cited as a great resource, this site offers an entertaining and engaging - approach and in-browser work. + approach and in-browser work. Python2, as far as I can tell, but most of the lessons will work fine with python3 syntax. * **Learn Python the Hard Way** (http://learnpythonthehardway.org/book/): Solid and gradual. This course offers a great foundation for folks who have never - programmed in any language before. + programmed in any language before. [Python 2] + +* **Core Python Programming** + (http://corepython.com/): Only available as a dead + trees version, but if you like to have book to hold in your hands anyway, this is the best textbook style introduction out there. It starts from the + beginning, but gets into the full language. Published in 2009, but still in + print, with updated appendixes available for new language features. IN teh thord edtion, "the contents have been cleaned up and retrofitted w/Python 3 examples paired w/their 2.x friends."" * **Dive Into Python 3** (http://www.diveinto.org/python3/): The updated version - of a classic. This book offers an introduction to Python aimed at the student - who has experience programming in another language. + of a classic. This book offers an introduction to Python aimed at the student who has experience programming in another language. Updated for Python 3. * **Python for You and Me** (http://pymbook.readthedocs.org/en/latest/): Simple - and clear. This is a great book for absolute newcomers, or to keep as a quick - reference as you get used to the language. + and clear. This is a great book for absolute newcomers, or to keep as a quick reference as you get used to the language. The latest version is Python 3 * **Think Python** - (http://greenteapress.com/thinkpython/): Methodical and - complete. This book offers a very "computer science"-style introduction to - Python. It is really an intro to Python *in the service of* Computer Science, - though, so while helpful for the absolute newcomer, it isn't quite as - "pythonic" as it might be. - -* **Core Python Programming** - (http://corepython.com/): Only available as a dead - trees version, but if you like to have book to hold in your hands anyway, this - is the best textbook style introduction out there. It starts from the - beginning, but gets into the full language. Published in 2009, but still in - print, with updated appendixes available for new language features. + (http://greenteapress.com/thinkpython/): Methodical and complete. + This book offers a very "computer science"-style introduction to + Python. It is really an intro to Python *in the service of* Computer + Science, though, so while helpful for the absolute newcomer, it isn't + quite as "pythonic" as it might be. * **Python 101** (http://www.blog.pythonlibrary.org/2014/06/03/python-101-book-published-today/) - Available as a reasonably priced ebook. This is a new one from a popular Blogger - about Python. Lots of practical examples. Also avaiable as a Kindle book: + Available as a reasonably priced ebook. This is a new one from a popular + Blogger about Python. Lots of practical examples. Python3, with some references to differences to Python 2. Also avaiable as a Kindle book: http://www.amazon.com/Python-101-Michael-Driscoll-ebook/dp/B00KQTFHNK +* **Problem Solving with Algorithms and Data Stuctures** + +http://interactivepython.org/runestone/static/pythonds/index.html + +* **Python Course** + +http://www.python-course.eu/python3_course.php + + + +References for getting better, once you know the basics +-------------------------------------------------------- + * **Python Essential Reference** (http://www.dabeaz.com/per.html) The definitive reference for both Python and much of the standard library. +* **Hitchhikers Guide to Python** + (http://docs.python-guide.org/en/latest) + Under active development, and still somewhat incomplete, but what is there is good stuff. + +* **Writing Idiomatic Python** + (https://www.jeffknupp.com/writing-idiomatic-python-ebook) + Focused on not just getting the code to work, but how to write it in a really "Pythonic" way. + +* **Fluent Python** + (http://shop.oreilly.com/product/0636920032519.do) + All python3, and focused on getting the advanced details right. Good place to go once you've got the basics down. + +* **Python 3 Object Oriented Programming** * + https://www.packtpub.com/application-development/python-3-object-oriented-programming + Nice book specifically about Object Oriented programming stucture, and how to do it in Python. From local Author and founder of the Puget Sound Programming Python (PuPPy) meetup group, Dusty Phillips. ... and many others @@ -144,89 +233,99 @@ Class Schedule: Topics of each week -------------------- -Week 1: Sept 30 +Week 1: September 27 ................ General Introduction to Python and the class. Using the command interpreter and development environment. -Finding and using the documentation. Getting help. Class github project. Basic data types, functions. +Kick-off tutorial -Week 2: Oct 7 +Finding and using the documentation. Getting help. + +Python 2/3 differences. + + +Week 2: October 4 ................ -More on functions: definition and use, arguments, block structure, scope, recursion +Introduction to git and gitHub + +Basic data types. + +Functions: definition and use, arguments, block structure, scope, recursion Modules and import Conditionals and Boolean expressions -Week 3: Oct 14 +Week 3: October 11 ................. Sequences: Strings, Tuples, Lists -Iteration, Looping and control flow. +Iteration, looping and control flow. String methods and formatting -Week 4: Oct 21 +Week 4: October 18 ................ Dictionaries, Sets and Mutability. -Exceptions. - Files and Text Processing -Week 5: Oct 28 +Week 5: October 25 ........................ -Advanced Argument passing - -Testing +Exceptions List and Dict Comprehensions -Week 6: November 4 -.................... +Week 6: November 1 +.................. -Lambda and Functional programming. +Testing -Object Oriented Programming: classes, instances, and methods +Advanced Argument passing -Week 7: November 18 -....................... -More OO -- Multiple inheritance, Properties, special methods +**No class Nov 8th for election night** +Week 7: November 15 +................... -Week 8: November 24 -.................... +Object Oriented Programming: -More OO -- Emulating built-in types +classes, instances, methods, inheritance -Iterators and Generators + +Week 8: November 22 +................... +More OO: Multiple inheritance, Properties, Special methods. + +Emulating built-in types -Week 9: December 2 +Week 9: November 29 ................... +Lambda -Decorators +Functions as Objects -Context Managers +Iterators and Generators -Packages and packaging +Week 10: December 6 +................... -Week 10: December 9 -.................... +Decorators -Unicode +Context Managers -Persistence / Serialization +Wrap Up / Students Code review diff --git a/lightning_schedule.txt b/lightning_schedule.txt deleted file mode 100644 index 3af8174c..00000000 --- a/lightning_schedule.txt +++ /dev/null @@ -1,36 +0,0 @@ -week 2: Chantal Huynh -week 2: David Fugelso -week 2: Ian M Davis -week 2: Schuyler Alan Schwafel -week 3: James Brent Nunn -week 3: Lauren Fries -week 3: Lesley D Reece -week 3: Michel Claessens -week 4: Benjamin C Mier -week 4: Robert W Perkins -week 4: Vinay Gupta -week 4: Wayne R Fukuhara -week 5: Darcy Balcarce -week 5: Eric Buer -week 5: Henry B Fischer -week 5: Kyle R Hart -week 6: Aleksey Kramer -week 6: Alexander R Galvin -week 6: Gideon I Sylvan -week 6: Hui Zhang -week 7: Andrew P Klock -week 7: Danielle G Marcos ** still needs to do it ** -week 7: Ousmane Conde -week 7: Salim Hassan Hamed -week 8: Alireza Hashemloo -week 8: Arielle R Simmons -week 8: Eric W Westman -week 8: Ryan J Albright -week 9: Carolyn J Evans -week 9: Danielle G Marcos -week 9: Louis John Ascoli -week 9: Ralph P Brand -week 10: Bryan L Davis -week 10: -week 10: Changqing Zhu -week 10: Alexandra N Kazakova diff --git a/slides_sources/ToDo.txt b/slides_sources/ToDo.txt index 0d9e8636..e51851c8 100644 --- a/slides_sources/ToDo.txt +++ b/slides_sources/ToDo.txt @@ -1,8 +1,15 @@ Things to do for the UWPCE Intro to Python class: +Notes about homework: + +" ".join(dict.keys()) + +no need to make a list first. + +NEED to do more with iterators vs iterables vs sequences. + Future Sessions: -Sorting! add pathlib examples diff --git a/slides_sources/build_gh_pages.sh b/slides_sources/build_gh_pages.sh index 44ec84ac..6eccd8fb 100755 --- a/slides_sources/build_gh_pages.sh +++ b/slides_sources/build_gh_pages.sh @@ -3,13 +3,26 @@ # simple script to build and push to gh-pages # designed to be run from master +# To use this script you need another copy of the repo, right next this +# one, but named "IntroToPython.gh-pages" +# this script builds the docs, then copies them to the other repo +# then pushes that to gitHub + +GHPAGESDIR=../../IntroToPython.gh-pages/ + +# make sure the Gh pages repo is there and in the right branch +pushd $GHPAGESDIR +git checkout gh-pages +popd + # make the docs make html - # copy to other repo (on the gh-pages branch) -cp -R build/html/ ../../IntroToPython.gh-pages +cp -R build/html/ $GHPAGESDIR -cd ../../IntroToPython.gh-pages +pushd $GHPAGESDIR git add * # in case there are new files added git commit -a -m "updating presentation materials" +git pull -s ours --no-edit git push + diff --git a/slides_sources/requirements.txt b/slides_sources/requirements.txt index 4666c460..6f1e540f 100644 --- a/slides_sources/requirements.txt +++ b/slides_sources/requirements.txt @@ -1,11 +1,11 @@ -Jinja2==2.7.2 -MarkupSafe==0.19 -Pygments==1.6 -Sphinx==1.2.2 -docutils==0.11 -sphinx-rtd-theme==0.1.6 -gnureadline==6.2.5 -# hieroglyph==0.7.dev --e git+https://github.com/nyergler/hieroglyph.git#egg=hieroglyph -ipython==2.3.0 -libsass==0.5.1 +Jinja2 +MarkupSafe +Pygments +Sphinx +docutils +sphinx-rtd-theme +hieroglyph +#-e git+https://github.com/nyergler/hieroglyph.git#egg=hieroglyph +libsass +ipython + diff --git a/slides_sources/source/_static/phd101212s.gif b/slides_sources/source/_static/phd101212s.gif new file mode 100644 index 00000000..721323e9 Binary files /dev/null and b/slides_sources/source/_static/phd101212s.gif differ diff --git a/slides_sources/source/conf.py b/slides_sources/source/conf.py index e27c1a5c..ace14544 100644 --- a/slides_sources/source/conf.py +++ b/slides_sources/source/conf.py @@ -19,12 +19,12 @@ # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. -#sys.path.insert(0, os.path.abspath('.')) +# sys.path.insert(0, os.path.abspath('.')) # -- General configuration ------------------------------------------------ # If your documentation needs a minimal Sphinx version, state it here. -#needs_sphinx = '1.0' +# needs_sphinx = '1.0' # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom @@ -34,13 +34,17 @@ 'sphinx.ext.intersphinx', 'sphinx.ext.todo', 'sphinx.ext.coverage', - #'sphinx.ext.pngmath', + # 'sphinx.ext.pngmath', 'sphinx.ext.mathjax', + #'sphinx.ext.jsmath', 'sphinx.ext.ifconfig', 'IPython.sphinxext.ipython_console_highlighting', 'IPython.sphinxext.ipython_directive', ] +# this doesn't work. +jsmath_path = "../../../jsMath-3.6e/easy/load.js" # needed for jsmath + # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] @@ -48,7 +52,7 @@ source_suffix = '.rst' # The encoding of source files. -#source_encoding = 'utf-8-sig' +# source_encoding = 'utf-8-sig' # The master toctree document. master_doc = 'index' @@ -68,13 +72,13 @@ # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. -#language = None +# language = None # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: -#today = '' +# today = '' # Else, today_fmt is used as the format for a strftime call. -#today_fmt = '%B %d, %Y' +# today_fmt = '%B %d, %Y' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. @@ -82,27 +86,27 @@ # The reST default role (used for this markup: `text`) to use for all # documents. -#default_role = None +# default_role = None # If true, '()' will be appended to :func: etc. cross-reference text. -#add_function_parentheses = True +# add_function_parentheses = True # If true, the current module name will be prepended to all description # unit titles (such as .. function::). -#add_module_names = True +# add_module_names = True # If true, sectionauthor and moduleauthor directives will be shown in the # output. They are ignored by default. -#show_authors = False +# show_authors = False # The name of the Pygments (syntax highlighting) style to use. pygments_style = 'colorful' # A list of ignored prefixes for module index sorting. -#modindex_common_prefix = [] +# modindex_common_prefix = [] # If true, keep warnings as "system message" paragraphs in the built documents. -#keep_warnings = False +# keep_warnings = False # -- Options for HTML output ---------------------------------------------- @@ -114,27 +118,27 @@ # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the # documentation. -#html_theme_options = {} +# html_theme_options = {} # Add any paths that contain custom themes here, relative to this directory. -#html_theme_path = [] +# html_theme_path = [] html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] # The name for this set of Sphinx documents. If None, it defaults to # " v documentation". -#html_title = None +# html_title = None # A shorter title for the navigation bar. Default is the same as html_title. -#html_short_title = None +# html_short_title = None # The name of an image file (relative to this directory) to place at the top # of the sidebar. -#html_logo = None +# html_logo = None # The name of an image file (within the static path) to use as favicon of the # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 # pixels large. -#html_favicon = None +# html_favicon = None # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, @@ -144,48 +148,48 @@ # Add any extra paths that contain custom files (such as robots.txt or # .htaccess) here, relative to this directory. These files are copied # directly to the root of the documentation. -#html_extra_path = [] +# html_extra_path = [] # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. -#html_last_updated_fmt = '%b %d, %Y' +# html_last_updated_fmt = '%b %d, %Y' # If true, SmartyPants will be used to convert quotes and dashes to # typographically correct entities. -#html_use_smartypants = True +# html_use_smartypants = True # Custom sidebar templates, maps document names to template names. -#html_sidebars = {} +# html_sidebars = {} # Additional templates that should be rendered to pages, maps page names to # template names. -#html_additional_pages = {} +# html_additional_pages = {} # If false, no module index is generated. -#html_domain_indices = True +# html_domain_indices = True # If false, no index is generated. -#html_use_index = True +# html_use_index = True # If true, the index is split into individual pages for each letter. -#html_split_index = False +# html_split_index = False # If true, links to the reST sources are added to the pages. -#html_show_sourcelink = True +# html_show_sourcelink = True # If true, "Created using Sphinx" is shown in the HTML footer. Default is True. -#html_show_sphinx = True +# html_show_sphinx = True # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. -#html_show_copyright = True +# html_show_copyright = True # If true, an OpenSearch description file will be output, and all pages will # contain a tag referring to it. The value of this option must be the # base URL from which the finished HTML is served. -#html_use_opensearch = '' +# html_use_opensearch = '' # This is the file name suffix for HTML files (e.g. ".xhtml"). -#html_file_suffix = None +# html_file_suffix = None # Output file base name for HTML help builder. htmlhelp_basename = 'IntroToPythonDoc' @@ -195,13 +199,13 @@ latex_elements = { # The paper size ('letterpaper' or 'a4paper'). -#'papersize': 'letterpaper', +# 'papersize': 'letterpaper', # The font size ('10pt', '11pt' or '12pt'). -#'pointsize': '10pt', +# 'pointsize': '10pt', # Additional stuff for the LaTeX preamble. -#'preamble': '', +# 'preamble': '', } # Grouping the document tree into LaTeX files. List of tuples @@ -214,23 +218,23 @@ # The name of an image file (relative to this directory) to place at the top of # the title page. -#latex_logo = None +# latex_logo = None # For "manual" documents, if this is true, then toplevel headings are parts, # not chapters. -#latex_use_parts = False +# latex_use_parts = False # If true, show page references after internal links. -#latex_show_pagerefs = False +# latex_show_pagerefs = False # If true, show URL addresses after external links. -#latex_show_urls = False +# latex_show_urls = False # Documents to append as an appendix to all manuals. -#latex_appendices = [] +# latex_appendices = [] # If false, no module index is generated. -#latex_domain_indices = True +# latex_domain_indices = True # -- Options for manual page output --------------------------------------- @@ -243,7 +247,7 @@ ] # If true, show URL addresses after external links. -#man_show_urls = False +# man_show_urls = False # -- Options for Texinfo output ------------------------------------------- @@ -279,6 +283,8 @@ slide_title = "Intro to Python" slide_theme = 'slides2' slide_levels = 3 +slide_numbers = False + # Place custom static assets in the _static directory and uncomment # the following lines to include them diff --git a/slides_sources/source/exercises/args_kwargs_lab.rst b/slides_sources/source/exercises/args_kwargs_lab.rst new file mode 100644 index 00000000..2adffc00 --- /dev/null +++ b/slides_sources/source/exercises/args_kwargs_lab.rst @@ -0,0 +1,71 @@ +.. _exercise_args_kwargs_lab: + +******************* +args and kwargs Lab +******************* + +Learning about ``args`` and ``kwargs`` +====================================== + +Goal: +----- + +Develop an understanding of using advanced argument passing and parameter definitons. + +If this is all confusing -- you may want to review this: + +http://stupidpythonideas.blogspot.com/2013/08/arguments-and-parameters.html + +Procedure +--------- + +**Keyword arguments:** + +* Write a function that has four optional parameters (with defaults): + + - `fore_color` + - `back_color` + - `link_color` + - `visited_color` + +* Have it print the colors (use strings for the colors) + +* Call it with a couple different parameters set + + - using just positional arguments: + + - ``func('red', 'blue', 'yellow', 'chartreuse')`` + + - using just keyword arguments: + + - ``func(link_color='red', back_color='blue')`` + + - using a combination of positional and keyword + + - ````func('purple', link_color='red', back_color='blue')`` + + - using ``*some_tuple`` and/or ``**some_dict`` + + - ``regular = ('red', 'blue')`` + + - ``links = {'link_color': 'chartreuse'}`` + + - ``func(*regular, *links)`` + +.. nextslide:: + +**Generic parameters:** + +* Write a the same function with the parameters as: + +``*args`` and ``**kwags`` + +* Have it print the colors (use strings for the colors) + +* Call it with the same various combinations of arguments used above. + +* Also have it print `args` and `kwargs` directly, so you can be sure you understand what's going on. + +* Note that in general, you can't know what will get passed into ``**kwargs`` So maybe adapt your function to be able to do something reasonable with any keywords. + + diff --git a/slides_sources/source/homework/circle_class.rst b/slides_sources/source/exercises/circle_class.rst similarity index 90% rename from slides_sources/source/homework/circle_class.rst rename to slides_sources/source/exercises/circle_class.rst index 65293e70..51a3f8ee 100644 --- a/slides_sources/source/homework/circle_class.rst +++ b/slides_sources/source/exercises/circle_class.rst @@ -1,8 +1,8 @@ -.. _homework_circle_class: +.. _exercise_circle_class: -================================== -Circle Class Homework Assignment -================================== +====================== +Circle Class Excercise +====================== Circle Class ============ @@ -26,9 +26,7 @@ Other abilities of a Circle instance: .. nextslide:: -This exercise should use "new style classes" i.e. inherit from ``object`` - -You will also use: +You will use: - properties - a classmethod diff --git a/slides_sources/source/exercises/comprehensions_lab.rst b/slides_sources/source/exercises/comprehensions_lab.rst new file mode 100644 index 00000000..fb9152e5 --- /dev/null +++ b/slides_sources/source/exercises/comprehensions_lab.rst @@ -0,0 +1,250 @@ +.. _exercise_comprehensions: + +****************** +Comprehensions Lab +****************** + +Playing with Comprehensions +============================ + + +.. rst-class:: large left + + Goal: + +.. rst-class:: medium left + + Getting Familiar with list, set and dict comprehensions + + +List comprehensions +-------------------- + +Note: this is a bit of a "backwards" exercise -- +we show you code, you figure out what it does. + +As a result, not much to submit -- don't worry about it -- you'll have +a chance to use these in other exercises. + +.. code-block:: python + + >>> feast = ['lambs', 'sloths', 'orangutans', + 'breakfast cereals', 'fruit bats'] + + >>> comprehension = [delicacy.capitalize() for delicacy in feast] + +What is the output of: + +.. code-block:: python + + >>> comprehension[0] + ??? + + >>> comprehension[2] + ??? + +(figure it out before you try it) + +Filtering lists with list comprehensions +---------------------------------------- + +.. code-block:: python + + >>> feast = ['spam', 'sloths', 'orangutans', 'breakfast cereals', + 'fruit bats'] + + >>> comp = [delicacy for delicacy in feast if len(delicacy) > 6] + +What is the output of: + +.. code-block:: python + + >>> len(feast) + ??? + + >>> len(comp) + ??? + +(figure it out first!) + + +Unpacking tuples in list comprehensions +--------------------------------------- + +.. code-block:: python + + >>> list_of_tuples = [(1, 'lumberjack'), (2, 'inquisition'), (4, 'spam')] + + >>> comprehension = [ skit * number for number, skit in list_of_tuples ] + +What is the output of: + +.. code-block:: python + + >>> comprehension[0] + ??? + + >>> len(comprehension[2]) + ??? + +Double list comprehensions +--------------------------- +.. code-block:: python + + >>> eggs = ['poached egg', 'fried egg'] + + >>> meats = ['lite spam', 'ham spam', 'fried spam'] + + >>> comprehension = \ + [ '{0} and {1}'.format(egg, meat) for egg in eggs for meat in meats] + +What is the output of: + +.. code-block:: python + + >>> len(comprehension) + ??? + + >>> comprehension[0] + ??? + +Set comprehensions +------------------ + +.. code-block:: python + + >>> comprehension = { x for x in 'aabbbcccc'} + +What is the output of: + +.. code-block:: python + + >>> comprehension + ??? + +Dictionary comprehensions +------------------------- + +.. code-block:: python + + >>> dict_of_weapons = {'first': 'fear', + 'second': 'surprise', + 'third':'ruthless efficiency', + 'forth':'fanatical devotion', + 'fifth': None} + >>> dict_comprehension = \ + { k.upper(): weapon for k, weapon in dict_of_weapons.items() if weapon} + +What is the output of: + +.. code-block:: python + + >>> 'first' in dict_comprehension + ??? + >>> 'FIRST' in dict_comprehension + ??? + >>> len(dict_of_weapons) + ??? + >>> len(dict_comprehension) + ??? + +Other resources +--------------- + + +See also: + +https://github.com/gregmalcolm/python_koans + +Specifically (for comprehensions): + +https://github.com/gregmalcolm/python_koans/blob/master/python3/koans/about_comprehension.py + + +Count Even Numbers +------------------ + +This is from CodingBat "count_evens" (http://codingbat.com/prob/p189616) + +*Using a list comprehension*, return the number of even integers in the given array. + +Note: the % "mod" operator computes the remainder, e.g. ``5 % 2`` is 1. + +.. code-block:: python + + count_evens([2, 1, 2, 3, 4]) == 3 + + count_evens([2, 2, 0]) == 3 + + count_evens([1, 3, 5]) == 0 + + +.. code-block:: python + + def count_evens(nums): + one_line_comprehension_here + + +``dict`` and ``set`` comprehensions +------------------------------------ + +Revisiting the dict/set lab -- see how much you can do with +comprehensions instead. + +(:ref:`exercise_dict_lab`) + +Specifically, look at these: + +First a slightly bigger, more interesting (or at least bigger..) dict: + +.. code-block:: python + + food_prefs = {"name": "Chris", + "city": "Seattle", + "cake": "chocolate", + "fruit": "mango", + "salad": "greek", + "pasta": "lasagna"} + +.. nextslide:: Working with this dict: + +1. Print the dict by passing it to a string format method, so that you +get something like: + + "Chris is from Seattle, and he likes chocolate cake, mango fruit, + greek salad, and lasagna pasta" + +2. Using a list comprehension, build a dictionary of numbers from zero +to fifteen and the hexadecimal equivalent (string is fine). +(the ``hex()`` function gives you the hexidecimal representation of a number.) + +3. Do the previous entirely with a dict comprehension -- should be a one-liner + +4. Using the dictionary from item 1: Make a dictionary using the same +keys but with the number of 'a's in each value. You can do this either +by editing the dict in place, or making a new one. If you edit in place, +make a copy first! + +.. nextslide:: + +5. Create sets s2, s3 and s4 that contain numbers from zero through twenty, +divisible 2, 3 and 4. + + a. Do this with one set comprehension for each set. + + b. What if you had a lot more than 3? -- Don't Repeat Yourself (DRY). + + - create a sequence that holds all the divisors you might want -- + could be 2,3,4, or could be any other arbitrary divisors. + + - loop through that sequence to build the sets up -- so no repeated code. + you will end up with a list of sets -- one set for each divisor in your + sequence. + + - The idea here is that when you see three (Or more!) lines of code that + are almost identical, then you you want to find a way to generalize + that code and have it act on a set of inputs, so the actual code is + only written once. + + c. Extra credit: do it all as a one-liner by nesting a set comprehension + inside a list comprehension. (OK, that may be getting carried away!) diff --git a/slides_sources/source/exercises/dict_lab.rst b/slides_sources/source/exercises/dict_lab.rst new file mode 100644 index 00000000..fe4ce49c --- /dev/null +++ b/slides_sources/source/exercises/dict_lab.rst @@ -0,0 +1,89 @@ +.. _exercise_dict_lab: + +********************** +Dictionary and Set Lab +********************** + +Learning about dictionaries and sets +==================================== + +Goal: +----- + +Learn the basic ins and outs of Python dictionaries and sets. + +Procedure +--------- + +In your student dir in the IntroPython2015 repo, create a ``session04`` dir and put in a new ``dict_lab.py`` file. + +The file should be an executable python script. That is to say that one +should be able to run the script directly like so: + +.. code-block:: bash + + $ ./dict_lab.py + +(At least on OS-X and Linux) + +-- you do that with this command: + +.. code-block:: bash + + $ chmod +x dict_lab.py + +(The +x means make this executable) + +.. nextslide:: + +Add the file to your clone of the repository and commit changes frequently +while working on the following tasks. When you are done, push your changes to +GitHub and issue a pull request. + +(if you are struggling with git -- just write the code for now) + +When the script is run, it should accomplish the following four series of +actions: + +.. nextslide:: Dictionaries 1 + +* Create a dictionary containing "name", "city", and "cake" for "Chris" from "Seattle" who likes "Chocolate". + +* Display the dictionary. + +* Delete the entry for "cake". + +* Display the dictionary. + +* Add an entry for "fruit" with "Mango" and display the dictionary. + + - Display the dictionary keys. + - Display the dictionary values. + - Display whether or not "cake" is a key in the dictionary (i.e. False) (now). + - Display whether or not "Mango" is a value in the dictionary (i.e. True). + + +.. nextslide:: Dictionaries 2 + + +* Using the dictionary from item 1: Make a dictionary using the same keys but + with the number of 't's in each value as the value. (upper and lower case?). + +.. nextslide:: Sets + +* Create sets s2, s3 and s4 that contain numbers from zero through twenty, + divisible 2, 3 and 4. + +* Display the sets. + +* Display if s3 is a subset of s2 (False) + +* and if s4 is a subset of s2 (True). + +.. nextslide:: Sets 2 + +* Create a set with the letters in 'Python' and add 'i' to the set. + +* Create a frozenset with the letters in 'marathon' + +* display the union and intersection of the two sets. diff --git a/slides_sources/source/exercises/exceptions_lab.rst b/slides_sources/source/exercises/exceptions_lab.rst new file mode 100644 index 00000000..5ff5b16b --- /dev/null +++ b/slides_sources/source/exercises/exceptions_lab.rst @@ -0,0 +1,25 @@ +.. _exercise_exceptions_lab: + +************** +Exceptions Lab +************** + +Learning Exceptions +=================== + +Just a little bit for the basics. + +Exceptions Lab +--------------- + +Improving ``input`` + +* The ``input()`` function can generate two exceptions: ``EOFError`` + or ``KeyboardInterrupt`` on end-of-file(EOF) or canceled input. + +* Create a wrapper function, perhaps ``safe_input()`` that returns ``None`` + rather rather than raising these exceptions, when the user enters ``^C`` for Keyboard Interrupt, or ``^D`` (``^Z`` on Windows) for End Of File. + +* Update your mailroom program to use exceptions (and IBAFP) to handle + malformed numeric input + diff --git a/slides_sources/source/exercises/fib_and_lucas.rst b/slides_sources/source/exercises/fib_and_lucas.rst new file mode 100644 index 00000000..86343f60 --- /dev/null +++ b/slides_sources/source/exercises/fib_and_lucas.rst @@ -0,0 +1,101 @@ +.. _exercise_fibonacci: + +************************* +Fibonacci Series Exercise +************************* + +Computing the Fibonacci and Lucas Series +======================================== + +Goal: +----- + +The `Fibonacci Series`_ is a numeric series starting with the integers 0 and 1. + +In this series, the next integer is determined by summing the previous two. + +This gives us:: + + 0, 1, 1, 2, 3, 5, 8, 13, ... + +We will write a function that computes this series -- then generalize it. + +.. _Fibonacci Series: http://en.wikipedia.org/wiki/Fibbonaci_Series + +Step 1 +------ + +* Create a new module ``series.py`` in the ``session02`` folder in your student folder. + + - In it, add a function called ``fibonacci``. + + - The function should have one parameter ``n``. + + - The function should return the ``nth`` value in the fibonacci series. + +* Ensure that your function has a well-formed ``docstring`` + +Note that the fibinacci series is naturally recusive -- the value is +defined by previous values: + +fib(n) = fib(n-2) + fib(n-1) + + +Lucas Numbers +-------------- + +The `Lucas Numbers`_ are a related series of integers that start with the +values 2 and 1 rather than 0 and 1. The resulting series looks like this:: + + 2, 1, 3, 4, 7, 11, 18, 29, ... + +.. _Lucas Numbers: http://en.wikipedia.org/wiki/Lucas_number + + +In your ``series.py`` module, add a new function ``lucas`` that returns the +``nth`` value in the *lucas numbers* series. + +Ensure that your function has a well-formed ``docstring`` + +Generalizing +------------ + +Both the *fibonacci series* and the *lucas numbers* are based on an identical +formula. + +Add a third function called ``sum_series`` with one required parameter and two +optional parameters. The required parameter will determine which element in the +series to print. The two optional parameters will have default values of 0 and +1 and will determine the first two values for the series to be produced. + +Calling this function with no optional parameters will produce numbers from the +*fibonacci series*. Calling it with the optional arguments 2 and 1 will +produce values from the *lucas numbers*. Other values for the optional +parameters will produce other series. + +**Note:** While you *could* check the input arguments, and then call one +of the functions you wrote, the idea of this exercise is to make a general +function, rather than one specialized. So you should re-impliment the code +in this function. + +In fact, you could go back and re-impliment your fibonacci and lucas +functions to call this one with particular arguments. + +Ensure that your function has a well-formed ``docstring`` + +Tests... +-------- + +Add a block of code to the end of your ``series.py`` +module. Use the block to write a series of ``assert`` statements that +demonstrate that your three functions work properly. + +Use comments in this block to inform the observer what your tests do. + +Add your new module to your git clone and commit frequently while working on +your implementation. Include good commit messages that explain concisely both +*what* you are doing and *why*. + +When you are finished, push your changes to your fork of the class repository +in GitHub and make a pull request. + diff --git a/slides_sources/source/exercises/file_lab.rst b/slides_sources/source/exercises/file_lab.rst new file mode 100644 index 00000000..44b3f656 --- /dev/null +++ b/slides_sources/source/exercises/file_lab.rst @@ -0,0 +1,55 @@ +.. _exercise_file_lab: + +******** +File LAB +******** + +A bit of practice with files +============================ + +Goal: +----- + +Get a little bit of practice with handling files and parsing simple text. + + +Paths and File Processing +-------------------------- + +* write a program which prints the full path to all files in the current + directory, one per line + +* write a program which copies a file from a source, to a destination + (without using shutil, or the OS copy command) + + - advanced: make it work for any size file: i.e. don't read the entire + contents of the file into memory at once. + + - This should work for any kind of file, so you need to open + the files in binary mode: ``open(filename, 'rb')`` (or ``'wb'`` for + writing). Note that for binary files, you can't use ``readline()`` -- + lines don't have any meaning for binary files. + + - Test it with both text and binrary files (maybe jpeg or??) + + +File reading and parsing +------------------------ + + +In the class repo, in: + +``Examples/Session01/students.txt`` + +You will find the list I generated in the first class of all the students in the class, and what programming languages they have used in the past. + +Write a little script that reads that file, and generates a list of all +the languages that have been used. + +Extra credit: keep track of how many students specified each language. + +If you've got git set up right, ``git pull upstream master`` should update +your repo. Otherwise, you can get it from gitHub: + +https://github.com/UWPCE-PythonCert/IntroPython2016/blob/master/Examples/Session01/students.txt + diff --git a/slides_sources/source/exercises/fizz_buzz.rst b/slides_sources/source/exercises/fizz_buzz.rst new file mode 100644 index 00000000..d6f19fe1 --- /dev/null +++ b/slides_sources/source/exercises/fizz_buzz.rst @@ -0,0 +1,69 @@ +.. _exercise_fizz_buzz: + +****************** +Fizz Buzz Exercise +****************** + +The Classic Fizz Buzz Problem +============================== + +.. rst-class:: left + + Fizz Buzz is a classic simple problem in computer science. + + Often used as an exercise in interviews for programmers. + + Apparently a LOT of people applying for jobs as profesional developers can't do this in an interview: + + (http://c2.com/cgi/wiki?FizzBuzzTest) + + Now that I've psyched you out -- it's really pretty straightforward. + +Goal: +----- + +* Write a program that prints the numbers from 1 to 100 inclusive. + +* But for multiples of three print "Fizz" instead of the number + +* For the multiples of five print "Buzz". + +* For numbers which are multiples of both three and five print "FizzBuzz" instead. + +Hint: +----- + +* Look up the ``%`` operator. What do these do? + + * ``10 % 7`` + * ``14 % 7`` + +(try that in iPython) + +* **Do** try to write a solution *before* looking it up -- there are a million nifty solutions posted on the web, but you'll learn a lot more if you figure it out on your own first. + +Results: +-------- + +Running your code should result in something like:: + + 1 + 2 + Fizz + 4 + Buzz + Fizz + 7 + 8 + Fizz + Buzz + 11 + Fizz + 13 + 14 + FizzBuzz + 16 + .... + + + diff --git a/slides_sources/source/exercises/grid_printer.rst b/slides_sources/source/exercises/grid_printer.rst new file mode 100644 index 00000000..41e43f57 --- /dev/null +++ b/slides_sources/source/exercises/grid_printer.rst @@ -0,0 +1,222 @@ +.. _exercise_grid_printer: + +********************* +Grid Printer Exercise +********************* + +Printing a Grid +================ + +(adapted from Downey, "Think Python", ex. 3.5) + +Goal: +----- + +Write a function that draws a grid like the following:: + + + - - - - + - - - - + + | | | + | | | + | | | + | | | + + - - - - + - - - - + + | | | + | | | + | | | + | | | + + - - - - + - - - - + + +hints +----- + +.. rst-class:: center medium + + A couple features to get you started... + +printing +-------- + +To print more than one value on a line, you can pass multiple names into the print function: + +.. code-block:: python + + print('+', '-') + +If you don't want a newline after something is printed, you tell python what you want the print to end with like so: + +.. code-block:: python + + print('+', end=' ') + print('-') + +The output of these statements is ``'+ -'``. + +(that end parameter defaults to a newline...) + +.. nextslide:: no arguments... + +A print function with no arguments ends the current line and goes to the next line: + +.. code-block:: python + + print() + + +Simple string manipulation: +--------------------------- + +You can put two strings together with the plus operator: + +.. code-block:: ipython + + In [20]: "this" + "that" + Out[20]: 'thisthat + +Particularly useful if they have been assigned names: + +.. code-block:: ipython + + In [21]: plus = '+' + + In [22]: minus = '-' + + In [23]: plus+minus+plus + Out[23]: '+-+' + +Note that you can string any number of operations together in an expression. + +.. nextslide:: multiplication of strings + +You can also multiply strings: + +.. code-block:: ipython + + In [24]: '+' * 10 + Out[24]: '++++++++++' + +And combine that with plus in a complex expression: + +.. code-block:: ipython + + In [29]: first_name = 'Chris' + + In [30]: last_name = 'Barker' + + In [31]: 5 * '*' + first_name +' ' + last_name + 5 * '*' + Out[31]: '*****Chris Barker*****' + +Note that there are better ways to build up complex strings -- we'll get to that later. + +Now you've got what you need to print that grid... + +Part 2 +======= + +.. rst-class:: center medium + + Making it more general + +Make it a function +------------------ + +One of the points of writing functions is so you can write code that does similar things, but customized to input parameters. So what if we want to be able to print that grid at an arbitrary size? + +Write a function ``print_grid(n)`` that takes one integer argument +and prints a grid just like before, BUT the size of the +grid is given by the argument. + +For example, ``print_grid(11)`` prints the grid in the above picture. + +``print_grid(3)`` would print a smaller grid:: + + + - + - + + | | | + + - + - + + | | | + + - + - + + +.. nextslide:: + +``print_grid(15)`` prints a larger grid:: + + + - - - - - - - + - - - - - - - + + | | | + | | | + | | | + | | | + | | | + | | | + | | | + + - - - - - - - + - - - - - - - + + | | | + | | | + | | | + | | | + | | | + | | | + | | | + + - - - - - - - + - - - - - - - + + +.. nextslide:: + +This problem is underspecified. Do something reasonable. + +Part 3: +======= + +Even more general... + +A function with two parameters +------------------------------- + +Write a function that draws a similar grid with a specified number of rows and columns, and each cell a given size. + +for example, ``print_grid2(3,4)`` results in:: + + + - - - - + - - - - + - - - - + + | | | | + | | | | + | | | | + | | | | + + - - - - + - - - - + - - - - + + | | | | + | | | | + | | | | + | | | | + + - - - - + - - - - + - - - - + + | | | | + | | | | + | | | | + | | | | + + - - - - + - - - - + - - - - + + +.. nextslide:: + +What to do about rounding? -- you decide. + +Another example: ``print_grid2(5,3)``:: + + + - - - + - - - + - - - + - - - + - - - + + | | | | | | + | | | | | | + | | | | | | + + - - - + - - - + - - - + - - - + - - - + + | | | | | | + | | | | | | + | | | | | | + + - - - + - - - + - - - + - - - + - - - + + | | | | | | + | | | | | | + | | | | | | + + - - - + - - - + - - - + - - - + - - - + + | | | | | | + | | | | | | + | | | | | | + + - - - + - - - + - - - + - - - + - - - + + | | | | | | + | | | | | | + | | | | | | + + - - - + - - - + - - - + - - - + - - - + + + + diff --git a/slides_sources/source/exercises/html_renderer.rst b/slides_sources/source/exercises/html_renderer.rst new file mode 100644 index 00000000..d38dc6e0 --- /dev/null +++ b/slides_sources/source/exercises/html_renderer.rst @@ -0,0 +1,566 @@ +.. _exercise_html_renderer: + +====================== +HTML Renderer Exercise +====================== + +HTML Renderer +============= + +Ever need to generate some HTML? + +And not want to write all those tags yourself? + +Goal: +------ + +The goal is to create a set of classes to render html pages -- in a "pretty printed" way. + +i.e. nicely indented and human readable. + +We'll try to get to all the features required to render: + +:download:`sample_html.html <./sample_html.html>` + +Take a look at it with "view source" in your browser -- or open in a text editor -- it's also in the Examples dir. + +If you don't know html -- just look at the example and copy that.... + +The exercise is broken down into a number of steps -- each requiring a few more OO concepts in Python. + +General Instructions: +--------------------- + +For each step, add the required functionality. There is example code to run your code for each step in: ``Examples\session07\run_html_render.py`` + +Name your file: ``html_render.py`` -- so it can be imported by ``run_html_render.py`` + +You should be able to run that code at each step, uncommenting each new step in ``run_html_render.py`` as you go. + +It builds up an html tree, and then calls the ``render()`` method of your element to render the page. + +It uses a ``StringIO`` object (like a file, but in memory) to render to memory, then dumps it to the console, and writes a file. Take a look at the code at the end to make sure you understand it. + +The html generated at each step will be in the files: ``test_html_ouput?.html`` + +At each step, your results should look similar that those (maybe not identical...) + +Unit tests +------------ + +Use "test driven development": + +In addition to checking if the output is what you expect with the running script -- you should also write unit tests as you go. + +Each new line of code should have a test that will run it -- *before* you write that code. + +That is: + + 1. write a test that exercises the next step in your process + 2. run the tests -- the new test will fail + 3. write your code... + 4. run the tests. If it still fails, go back to step 3... + + +Step 1: +------- + +Create an ``Element`` class for rendering an html element (xml element). + +It should have class attributes for the tag name ("html" first) and the indentation (spaces to indent for pretty printing) + +The initializer signature should look like + +.. code-block:: python + + Element(content=None) + +where ``content`` is expected to be a string + +It should have an ``append`` method that can add another string to the content. + +So your class will need a way to store the content in a way that you can keep adding more to it. + +.. nextslide:: + +It should have a ``render(file_out, ind = "")`` method that renders the tag and the strings in the content. + +``file_out`` could be any file-like object ( i.e. have a ``write()`` method ). + +``ind`` is a string with the indentation level in it: the amount that the tag should be indented for pretty printing. + + - This is a little tricky: ``ind`` will be the amount that this element should be indented already. It will be from zero (an empty string) to a lot of spaces, depending on how deep it is in the tree. + +The amount of each level of indentation should be set by the class attribute: ``indent`` + +NOTE: don't worry too much about indentation at this stage -- the primary goal is to get proper, compliant html. i.e. the opening and closing tags rendered correctly. Worry about cleaning up the indentation once you've got that working. See "Note on indentation" below for more explaination. + +.. nextslide:: + +So this ``render()`` method takes a file-like object, and calls its ``write()`` method, writing the html for a tag. Something like:: + + + Some content. Some more content. + <\html> + +You should now be able to render an html tag with text in it as contents. + +See: step 1. in ``run_html_render.py`` + +Step 2: +-------- + +Create a couple subclasses of ``Element``, for each of ````, ````, and ``

    `` tags. All you should have to do is override the ``tag`` class attribute (you may need to add a ``tag`` class attribute to the ``Element`` class first, if you haven't already). + +Now you can render a few different types of element. + +Extend the ``Element.render()`` method so that it can render other elements inside the tag in addition to strings. Simple recursion should do it. i.e. it can call the ``render()`` method of the elements it contains. You'll need to be smart about setting the ``ind`` optional parameter -- so that the nested elements get indented correctly. (again, this is a secondary concern...) + +Figure out a way to deal with the fact that the contained elements could be either simple strings or ``Element`` s with render methods (there are a few ways to handle that...). Think about "Duck Typing" and EAFP. See the section 'Notes on handling "duck typing"' and the end of the Exercise for more. + +.. nextslide:: + +You should now be able to render a basic web page with an ```` tag around the whole thing, a ```` tag inside, and multiple ``

    `` tags inside that, with text inside that. And all indented nicely. + +See ``test_html_output2.html`` + +NOTE: when you run step 2 in ``run_html_render.py``, you will want to comment out step 1 -- that way you'll only get one set of output. + +Step 3: +-------- + +Create a ```` element -- a simple subclass. + +Create a ``OneLineTag`` subclass of ``Element``: + +* It should override the render method, to render everything on one line -- for the simple tags, like:: + + PythonClass - Session 6 example + +Create a ``Title`` subclass of ``OneLineTag`` class for the title. + +You should now be able to render an html doc with a head element, with a +title element in that, and a body element with some ``

    `` elements and some text. + +See ``test_html_output3.html`` + +Step 4: +-------- + +Extend the ``Element`` class to accept a set of attributes as keywords to the +constructor, e.g. ``run_html_render.py`` + +.. code-block:: python + + Element("some text content", id="TheList", style="line-height:200%") + +html elements can take essentially any attributes -- so you can't hard-code these particular ones. ( remember ``**kwargs``? ) + +The render method will need to be extended to render the attributes properly. + +You can now render some ``

    `` tags (and others) with attributes + +See ``test_html_output4.html`` + +.. nextslide:: the "class" attribute. + +NOTE: if you do "proper" CSS+html, then you wouldn't specify style directly in element attributes. + +Rather you would set the "class" attribute:: + +

    + This is my recipe for making curry purely with chocolate +

    + +However, if you try this as a keywork argument in Python: + +.. code-block:: ipython + + In [1]: P("some content", class="intro") + File "", line 1 + P("some content", class="intro") + ^ + SyntaxError: invalid syntax + +Huh? + +"class" is a reserved work in Python -- for making classes. +So it can't be used as a keywork argument. + +But it's a fine key in a dict, so you can put it in a dict, and pass it in with ``**``: + +.. code-block:: python + + attrs = {'class': 'intro'} + P("some content", **attrs) + +You could also special-case this in your code -- so your users could use "clas" +with one s, and you could tranlate it in the generated html. + + +Step 5: +-------- + +Create a ``SelfClosingTag`` subclass of Element, to render tags like:: + +
    and
    (horizontal rule and line break). + +You will need to override the render method to render just the one tag and +attributes, if any. + +Create a couple subclasses of ``SelfClosingTag`` for and
    and
    + +Note that you now have a couple render methods -- is there repeated code in them? + +Can you refactor the common parts into a separate method that all the render methods can call? And do all your tests still pass (you do have tests for everything, don't you?) after refactoring? + +See ``test_html_output5.html`` + +Step 6: +------- + +Create an ``A`` class for an anchor (link) element. Its constructor should look like:: + + A(self, link, content) + +where ``link`` is the link, and ``content`` is what you see. It can be called like so:: + + A("http://google.com/", "link to google") + +You should be able to subclass from ``Element``, and only override the ``__init__`` --- calling the ``Element`` ``__init__`` from the ``A __init__`` + +You can now add a link to your web page. + +See ``test_html_output6.html`` + +Step 7: +-------- + +Create ``Ul`` class for an unordered list (really simple subclass of ``Element``) + +Create ``Li`` class for an element in a list (also really simple) + +Add a list to your web page. + +Create a ``Header`` class -- this one should take an integer argument for the +header level. i.e

    ,

    ,

    , called like + +.. code-block:: python + + H(2, "The text of the header") + +for an

    header + +It can subclass from ``OneLineTag`` -- overriding the ``__init__``, then calling the superclass ``__init__`` + +See ``test_html_output7.html`` + +Step 8: +-------- + +Update the ``Html`` element class to render the "" tag at the head of the page, before the html element. + +You can do this by subclassing ``Element``, overriding ``render()``, but then calling the ``Element`` render from the new render. + +Create a subclass of ``SelfClosingTag`` for ```` (like for ``
    `` and ``
    `` and add the meta element to the beginning of the head element to give your document an encoding. + +The doctype and encoding are HTML 5 and you can check this at: http://validator.w3.org. + +You now have a pretty full-featured html renderer -- play with it, add some +new tags, etc.... + +See ``test_html_output8.html`` + +Note on indentation +=================== + +Indentation is not stricly required for html -- html ignores most whitespace. + +But it can make it much easier to read for humans, and it's a nice excercise to see how one might make it nice. + +There is also more than one way to indent html -- so you have a bit of flexibility here. + +So: + +* You probably ``ind`` to be an optional argument to render -- so it will not indent if nothing is passed in. And that lets you write the code without indentation first if you like. + +* But ultimately, you want your code to USE the ind parameter -- it is supposed to indicate how much this entire tag is already indented. + +* When this one gets rendered, you don't know where it is in a potentially deeply nested hierarchy -- it could be at the top level or ten levels deep. passing ``ind`` into the render method is how this is communicated. + +* You have (at least) two options for how to indicate level of indentation: + + - It could be a integer indicating number of levels of indentation + - It could, more simply, be a bunch of spaces. + +* You want to have the amount of spaces per indentation defined as a class attribute of the base class (the ``Element`` class). That way, you could change it in one place, and it would change everywhere an remain consistent. + + + +Notes on handling "duck typing" +=============================== + +.. rst-class:: left + + In this exercise, we need to deal with the fact that XML (and thus HTML) allows *either* plain text *or* other tags to be the content of a tag. Our code also needs to handle the fact that there are two possible types that we need to be able to render. + + There are two primary ways to address this (and multiple ways to actually write the code for each of these). + + 1) Make sure that the content only has renderable objects in it. + + 2) Make sure the render() method can handle either type on the fly + + The difference is where you handle the multiple types -- in the render method itself, or ahead of time. + +The ahead of time option: +------------------------- + +You can handle it ahead of time by creating a simple object that wraps a string and gives it a render method. As simple as: + +.. code-block:: python + + class TextWrapper: + """ + A simple wrapper that creates a class with a render method + for simple text + """ + def __init__(self, text): + self.text = text + + def render(self, file_out, current_ind=""): + file_out.write(current_ind) + file_out.write(self.text) + +.. nextslide:: + +You could require your users to use the wrapper, so instead of just appending a string, they would do: + +.. code-block:: python + + an_element.append(TextWRapper("the string they want to add")) + +But this is not very Pythonic style -- it's OO heavy. Strings for text are so common you want to be able to simply use them: + +.. code-block:: python + + an_element.append("the string they want to add") + +So much easier. + +To accomplish this, you can update the ``append()`` method to put this wrapper around plain strings when something new is added. + + +Checking if it's the right type +------------------------------- + +How do you decide if the wrapper is required? + +**Checking it it's an instance of Element:** + +You could check and see if the object being appended is an Element: + +.. code-block:: python + + if isinstance(content, Element): + self.content.append(content) + else: + self.content.append(TextWrapper(content)) + +This would work well, but closes the door to using any other type that may not be a strict subclsss of Element, but can render itself. Not too bad in this case, but in general, frowned upon in Python. + +.. nextslide:: + +Alternatively, you could check for the string type: + +.. code-block:: python + + if isinstance(content, str): + self.content.append(TextWrapper(content)) + else: + self.content.append(content) + +I think this is a little better -- strings are a pretty core type in python, it's not likely that anyone is going to need to use a "string-like" object. + +Duck Typing +----------- + +The Python model of duck typing is: If quacks like a duck, then treat it like a duck. + +But in this case, we're not actually rendering the object at this stage, so calling the method isn't appropriate. + +**Checking for an attribute** + +Instead of calling the method, see if it's there. You can do that with ``hasattr()`` + +check if the passed-in object has a ``render()`` attribute: + +.. code-block:: python + + if hasattr(content, 'render'): + self.content.append(content) + else: + self.content.append(TextWrapper(str(content)) + + +Note that I added a ``str()`` call too -- so you can pass in anything -- it will get stringified -- this will be ugly for many objects, but will work fine for numbers and other simple objects. + +This is my favorite. ``html_render_wrap.py`` in Solutions demonstrates some core bits of this approach. + + +Duck Typing on the Fly +---------------------- + +The other option is to simply put both elements and text in the content list, and figure out what to do in the ``render()`` method. + +Again, you could type check -- but I prefer the duck typing approach, and EAFP: + +.. code-block:: python + + try: + content.render(out_file) + except AttributeError: + outfile.write(content) + +If content is a simple string then it won't have a render method, and an ``AttributeError`` will be raised. + +You can catch that, and simply write the content directly instead. + +.. nextslide:: + +You may want to turn it into a string, first:: + + outfile.write(str(content)) + +Then you could write just about anything -- numbers, etc. + + +Where did the Exception come from? +---------------------------------- + +**Caution** + +If the object doesn't have a ``render`` method, then an AttributeError will be raised. But what if it does have a render method, but that method is broken? + +Depending on what's broken, it could raise any number of exceptions. Most will not get caught by the except clause, and will halt the program. + +But if, just by bad luck, it has an bug that raises an ``AttributeError`` -- then this could catch it, and try to simply write it out instead. So you may get something like: ```` in the middle of your html. + +**The beauty of testing** + +If you have a unit test that calls every render method in your code -- then it should catch that error, and in the unit test it will be clear where it is coming from. + + +HTML Primer +============ + +.. rst-class:: medium + + The very least you need to know about html to do this assignment. + +.. rst-class:: left + + If you are familiar with html, then this will all make sense to you. If you have never seen html before, this might be a bit intimidating, but you really don't need to know much to do this assignment. + + First of all, sample output from each step is provided. So all you really need to do is look at that, and make your code do the same thing. But it does help understand a little bit about what you trying to do. + +HTML +---- + +HTML is "Hyper Text Markup Language". Hypertext, because it can contain links +to other pages, and markup language means that text is "marked up" with +instructions about how to format the text, etc. + +Here is a good basic intro: + +http://www.w3schools.com/html/html_basic.asp + +And there are countless others online. + +As html is XML -- the XML intro is a good source of the XML syntax, too: + +http://www.w3schools.com/xml/default.asp + +But here is a tiny intro of just what you need to know for this project. + +Elements +-------- + +Modern HTML is a particular dialect of XML (eXtensible Markup Language), +which is itself a special case of SGML (Standard Generalized Markup Language) + +It inherits from SGML a basic structure: each piece of the document is an element. Each element is described by a "tag". Each tag has a different meaning, but they all have the same structure:: + + some content + +That is, the tag name is surrounded by < and >, which marks the beginning of +the element, and the end of the element is indicated by the same tag with a slash. + +The real power is that these elements can be nested arbitrarily deep. In order to keep that all readable, we often want to indent the content inside the tags, so it's clear what belongs with what. That is one of the tricky bits of this assignment. + + +Basic tags +---------- + +.. code-block:: html + + is the core tag indicating the entire document + +

    is a single paragraph of text

    + + is the tag that indicated the text of the document + + defines the header of the document -- a place for metadata + +Attributes: +------------ + +In addition to the tag name and the content, extra attributes can be attached to a tag. These are added to the "opening tag", with name="something", another_name="somethign else" format: + +.. code-block:: html + +

    + +There can be all sorts of stuff stored in attributes -- some required for specific tags, some extra, like font sizes and colors. Note that since tags can essentially have any attributes, your code will need to support that -- doesn't it kind of look like a dict? And keyword arguments? + +Special Elements +---------------- + +The general structure is everything in between the opening and closing tag. But some elements don't really have content -- just attributes. So the slash goes at the end of the tag, after the attributes. We can call these self-closing tags: + +.. code-block:: html + + + +To make a link, you use an "anchor" tag: ````. It requires attributes to indicate what the link is: + +.. code-block:: html + + link + +The ``href`` attribute is the link (hyper reference). + +lists +----- + +To make a bulleted list, you use a

      tag (unordered list), and inside that, you put individual list items
    • : + +.. code-block:: html + +
        +
      • + The first item in a list +
      • +
      • + This is the second item +
      • +
      + +Note that the list itself *and* the list items can both take various attributes (all tags can...) + +Section Headers are created with "h" tags:

      is the biggest (highest level), and there is

      ,

      , etc. for sections, sub sections, subsub sections... + +.. code-block:: html + +

      PythonClass - Class 7 example

      + +I think that's all you need to know! diff --git a/slides_sources/source/exercises/index.rst b/slides_sources/source/exercises/index.rst new file mode 100644 index 00000000..78ac470e --- /dev/null +++ b/slides_sources/source/exercises/index.rst @@ -0,0 +1,77 @@ +========= +Exercises +========= + +Contents: +========= + +.. rst-class:: left + + +Session 2: +---------- +.. toctree:: + :maxdepth: 1 + + grid_printer + fizz_buzz + fib_and_lucas + +Session 3: +---------- +.. toctree:: + :maxdepth: 1 + + slicing + list_lab + string_formatting + rot13 + mailroom + +Session 4: +---------- +.. toctree:: + :maxdepth: 1 + + dict_lab + file_lab + kata_fourteen + +Session 5: +---------- +.. toctree:: + :maxdepth: 1 + + exceptions_lab + comprehensions_lab + +Session 6: +---------- +.. toctree:: + :maxdepth: 1 + + args_kwargs_lab + + +Session 7: +---------- +.. toctree:: + :maxdepth: 1 + + html_renderer + +Session 8: +----------- +.. toctree:: + :maxdepth: 1 + + circle_class + sparse_array + +Session 9: +---------- +.. toctree:: + :maxdepth: 1 + + lambda_magic + trapezoid \ No newline at end of file diff --git a/slides_sources/source/homework/kata_fourteen.rst b/slides_sources/source/exercises/kata_fourteen.rst similarity index 99% rename from slides_sources/source/homework/kata_fourteen.rst rename to slides_sources/source/exercises/kata_fourteen.rst index dba1be4d..b7552bcf 100644 --- a/slides_sources/source/homework/kata_fourteen.rst +++ b/slides_sources/source/exercises/kata_fourteen.rst @@ -1,3 +1,5 @@ +.. _exercise_trigrams: + ========================================= Kata Fourteen: Tom Swift Under Milk Wood ========================================= diff --git a/slides_sources/source/exercises/lambda_magic.rst b/slides_sources/source/exercises/lambda_magic.rst new file mode 100644 index 00000000..edcde112 --- /dev/null +++ b/slides_sources/source/exercises/lambda_magic.rst @@ -0,0 +1,61 @@ +.. _exercise_lambda_magic: + +************************ +lambda and keyword Magic +************************ + +Goals +===== + +.. rst-class:: left + + * A bit of lambda + * functions as objects + * keyword evaluation + + +Task +---- + +Write a function that returns a list of n functions, +such that each one, when called, will return the input value, +incremented by an increasing number. + +Use a for loop, ``lambda``, and a keyword argument + +**Extra credit:** + +Do it with a list comprehension, instead of a for loop + +Not clear? here's what you should get... + +Example calling code +--------------------- + +.. code-block:: ipython + + In [96]: the_list = function_builder(4) + ### so the_list should contain n functions (callables) + In [97]: the_list[0](2) + Out[97]: 2 + ## the zeroth element of the list is a function that add 0 + ## to the input, hence called with 2, returns 2 + In [98]: the_list[1](2) + Out[98]: 3 + ## the 1st element of the list is a function that adds 1 + ## to the input value, thus called with 2, returns 3 + In [100]: for f in the_list: + print(f(5)) + .....: + 5 + 6 + 7 + 8 + ### If you loop through them all, and call them, each one adds one more + to the input, 5... i.e. the nth function in the list adds n to the input. + +.. nextslide:: + +See the test code in Examples/Session09 + + diff --git a/slides_sources/source/exercises/list_lab.rst b/slides_sources/source/exercises/list_lab.rst new file mode 100644 index 00000000..36943bfb --- /dev/null +++ b/slides_sources/source/exercises/list_lab.rst @@ -0,0 +1,113 @@ +.. _exercise_list_lab: + +******** +List Lab +******** + +Learning about lists +==================== + +After: + +http://www.upriss.org.uk/python/session5.html + +Goal: +----- + +Learn the basic ins and outs of Python lists. + +hint +---- + +to query the user for info at the command line, you use: + +.. code-block:: python + + response = input("a prompt for the user > ") + +``response`` will be a string of whatever the user types (until a ). + + +Procedure +--------- + +In your student dir in the IntroPython2015 repo, create a ``session03`` dir and put in a new ``list_lab.py`` file. + +The file should be an executable python script. That is to say that one +should be able to run the script directly like so: + +.. code-block:: bash + + $ ./list_lab.py + +(At least on OS-X and Linux) + +-- you do that with this command: + +.. code-block:: bash + + $ chmod +x list_lab.py + +(The +x means make this executable) + +The file will also need this on the first line:: + + #!/usr/bin/env python3 + +This is known as the "she-bang" line -- it tells the shell how to execute that file -- in this case, with ``python3`` + +NOTE: on Windows, there is a python launcher which, if everything is configured correctly look at that line to know you want python3 if there is more than one python on your system. + +.. nextslide:: + +Add the file to your clone of the repository and commit changes frequently +while working on the following tasks. When you are done, push your changes to +GitHub and issue a pull request. + +(if you are struggling with git -- just write the code for now) + +When the script is run, it should accomplish the following four series of +actions: + +.. nextslide:: Series 1 + +- Create a list that contains "Apples", "Pears", "Oranges" and "Peaches". +- Display the list. +- Ask the user for another fruit and add it to the end of the list. +- Display the list. +- Ask the user for a number and display the number back to the user and the + fruit corresponding to that number (on a 1-is-first basis). +- Add another fruit to the beginning of the list using "+" and display the + list. +- Add another fruit to the beginning of the list using insert() and display the list. +- Display all the fruits that begin with "P", using a for loop. + + +.. nextslide:: Series 2 + +Using the list created in series 1 above: + +- Display the list. +- Remove the last fruit from the list. +- Display the list. +- Ask the user for a fruit to delete and find it and delete it. +- (Bonus: Multiply the list times two. Keep asking until a match is found. Once found, delete all occurrences.) + +.. nextslide:: Series 3 + +Again, using the list from series 1: + +- Ask the user for input displaying a line like "Do you like apples?" +- for each fruit in the list (making the fruit all lowercase). +- For each "no", delete that fruit from the list. +- For any answer that is not "yes" or "no", prompt the user to answer with one + of those two values (a while loop is good here): +- Display the list. + +.. nextslide:: Series 4 + +Once more, using the list from series 1: + +- Make a copy of the list and reverse the letters in each fruit in the copy. +- Delete the last item of the original list. Display the original list and the + copy. diff --git a/slides_sources/source/exercises/mailroom-oo.rst b/slides_sources/source/exercises/mailroom-oo.rst new file mode 100644 index 00000000..17f0dacb --- /dev/null +++ b/slides_sources/source/exercises/mailroom-oo.rst @@ -0,0 +1,167 @@ +.. _exercise_mailroom_oo: + +******** +Mailroom +******** + +Making Mailroom Object Oriented + +A complete program +================== + +It was quite resonable to build the simple MailRoom program using a +single module, a simple data structure, and functions that manipulate +that data structure. + +But if one were to expand the program with additional functionality, it +would start to get a bit unwieldy and hard to maintain. + +So it's a pretty good candidate for an object-oriented approach. + +Goal: +----- + +Refactor the mailroom program usined a couple classes to help organise the code. + + + + +The program +----------- + +Write a small command-line script called ``mailroom.py``. This script should be executable. The script should accomplish the following goals: + +* It should have a data structure that holds a list of your donors and a + history of the amounts they have donated. This structure should be populated + at first with at least five donors, with between 1 and 3 donations each + +* The script should prompt the user (you) to choose from a menu of 3 actions: + 'Send a Thank You' or 'Create a Report' or 'quit') + +Sending a Thank You +------------------- + +* If the user (you) selects 'Send a Thank You', prompt for a Full Name. + + * If the user types 'list', show them a list of the donor names and re-prompt + * If the user types a name not in the list, add that name to the data structure and use it. + * If the user types a name in the list, use it. + * Once a name has been selected, prompt for a donation amount. + * Turn the amount into a number -- it is OK at this point for the program to crash if someone types a bogus amount. + * Once an amount has been given, add that amount to the donation history of + the selected user. + * Finally, use string formatting to compose an email thanking the donor for + their generous donation. Print the email to the terminal and return to the + original prompt. + +**It is fine to forget new donors once the script quits running.** + +Creating a Report +------------------ + +* If the user (you) selected 'Create a Report' print a list of your donors, + sorted by total historical donation amount. + + - Include Donor Name, total donated, number of donations and average donation amount as values in each row. You do not need to print out all their donations, just the summary info. + - Using string formatting, format the output rows as nicely as possible. The end result should be tabular (values in each column should align with those above and below) + - After printing this report, return to the original prompt. + +* At any point, the user should be able to quit their current task and return + to the original prompt. + +* From the original prompt, the user should be able to quit the script cleanly + + +Your report should look something like this:: + + Donor Name | Total Given | Num Gifts | Average Gift + ------------------------------------------------------------------ + William Gates, III $ 653784.49 2 $ 326892.24 + Mark Zuckerberg $ 16396.10 3 $ 5465.37 + Jeff Bezos $ 877.33 1 $ 877.33 + Paul Allen $ 708.42 3 $ 236.14 + +Guidelines +---------- + +First, factor your script into separate functions. Each of the above +tasks can be accomplished by a series of steps. Write discreet functions +that accomplish individual steps and call them. + +Second, use loops to control the logical flow of your program. Interactive +programs are a classic use-case for the ``while`` loop. + +Of course, ``input()`` will be useful here. + +Put the functions you write into the script at the top. + +Put your main interaction into an ``if __name__ == '__main__'`` block. + +Finally, use only functions and the basic Python data types you've learned +about so far. There is no need to go any farther than that for this assignment. + +Submission +---------- + +As always, put the new file in your student directory in a ``session03`` +directory, and add it to your clone early. Make frequent commits with +good, clear messages about what you are doing and why. + +When you are done, push your changes and make a pull request. + +.. _exercise_mailroom_plus: + +Adding dicts... +--------------- + + +For the next week (after Session04) + +You should have been able to do all that with the basic data types: + +numbers, strings, lists and tuples. + +But once you've learned about dictionaries (Session04) you may be able to re-write it a bit more simply and efficiently. + + * Update mailroom from last week to: + + - Use dicts where appropriate + - Write a full set of letters to everyone to individual files on disk + - See if you can use a dict to switch between the users selections + - Try to use a dict and the .format() method to do the letter as one + big template -- rather than building up a big string in parts. + +Example: + +.. code-block:: ipython + + In [3]: d + Out[3]: {'first_name': 'Chris', 'last_name': 'Barker'} + + + In [5]: "My name is {first_name} {last_name}".format(**d) + Out[5]: 'My name is Chris Barker' + +Don't worry too much about the "**" -- we'll get into the details later, but for now, it means, more or less -- pass this whole dict in as a bunch of keyword arguments. + + +.. _exercise_mailroom_exeptions: + +Adding Exceptions +----------------- + +**After Session05:** + +* Exceptions: + +Now that you've learned about Exception handling, you can update your code to handle errors better -- like when a user inputs bad data. + +* Comprehensions: + +Can you use comprehensions to clean up your code a bit? + +* Tests + +Add some tests.. + + diff --git a/slides_sources/source/exercises/mailroom.rst b/slides_sources/source/exercises/mailroom.rst new file mode 100644 index 00000000..656e5c19 --- /dev/null +++ b/slides_sources/source/exercises/mailroom.rst @@ -0,0 +1,158 @@ +.. _exercise_mailroom: + +******** +Mailroom +******** + +A complete program +================== + +Using basic data types and logic for a full program + +Goal: +----- + +You work in the mail room at a local charity. Part of your job is to write +incredibly boring, repetitive emails thanking your donors for their generous +gifts. You are tired of doing this over an over again, so you've decided to +let Python help you out of a jam. + +The program +----------- + +Write a small command-line script called ``mailroom.py``. This script should be executable. The script should accomplish the following goals: + +* It should have a data structure that holds a list of your donors and a + history of the amounts they have donated. This structure should be populated + at first with at least five donors, with between 1 and 3 donations each + +* The script should prompt the user (you) to choose from a menu of 3 actions: + 'Send a Thank You' or 'Create a Report' or 'quit') + +Sending a Thank You +------------------- + +* If the user (you) selects 'Send a Thank You', prompt for a Full Name. + + * If the user types 'list', show them a list of the donor names and re-prompt + * If the user types a name not in the list, add that name to the data structure and use it. + * If the user types a name in the list, use it. + * Once a name has been selected, prompt for a donation amount. + * Turn the amount into a number -- it is OK at this point for the program to crash if someone types a bogus amount. + * Once an amount has been given, add that amount to the donation history of + the selected user. + * Finally, use string formatting to compose an email thanking the donor for + their generous donation. Print the email to the terminal and return to the + original prompt. + +**It is fine to forget new donors once the script quits running.** + +Creating a Report +------------------ + +* If the user (you) selected 'Create a Report' print a list of your donors, + sorted by total historical donation amount. + + - Include Donor Name, total donated, number of donations and average donation amount as values in each row. You do not need to print out all their donations, just the summary info. + - Using string formatting, format the output rows as nicely as possible. The end result should be tabular (values in each column should align with those above and below) + - After printing this report, return to the original prompt. + +* At any point, the user should be able to quit their current task and return + to the original prompt. + +* From the original prompt, the user should be able to quit the script cleanly + + +Your report should look something like this:: + + Donor Name | Total Given | Num Gifts | Average Gift + ------------------------------------------------------------------ + William Gates, III $ 653784.49 2 $ 326892.24 + Mark Zuckerberg $ 16396.10 3 $ 5465.37 + Jeff Bezos $ 877.33 1 $ 877.33 + Paul Allen $ 708.42 3 $ 236.14 + +Guidelines +---------- + +First, factor your script into separate functions. Each of the above +tasks can be accomplished by a series of steps. Write discreet functions +that accomplish individual steps and call them. + +Second, use loops to control the logical flow of your program. Interactive +programs are a classic use-case for the ``while`` loop. + +Of course, ``input()`` will be useful here. + +Put the functions you write into the script at the top. + +Put your main interaction into an ``if __name__ == '__main__'`` block. + +Finally, use only functions and the basic Python data types you've learned +about so far. There is no need to go any farther than that for this assignment. + +Submission +---------- + +As always, put the new file in your student directory in a ``session03`` +directory, and add it to your clone early. Make frequent commits with +good, clear messages about what you are doing and why. + +When you are done, push your changes and make a pull request. + +.. _exercise_mailroom_plus: + +Adding dicts... +--------------- + + +For the next week (after Session04) + +You should have been able to do all that with the basic data types: + +numbers, strings, lists and tuples. + +But once you've learned about dictionaries (Session04) you may be able to re-write it a bit more simply and efficiently. + + * Update mailroom from last week to: + + - Use dicts where appropriate + - Write a full set of letters to everyone to individual files on disk + - See if you can use a dict to switch between the users selections + - Try to use a dict and the .format() method to do the letter as one + big template -- rather than building up a big string in parts. + +Example: + +.. code-block:: ipython + + In [3]: d + Out[3]: {'first_name': 'Chris', 'last_name': 'Barker'} + + + In [5]: "My name is {first_name} {last_name}".format(**d) + Out[5]: 'My name is Chris Barker' + +Don't worry too much about the "**" -- we'll get into the details later, but for now, it means, more or less -- pass this whole dict in as a bunch of keyword arguments. + + +.. _exercise_mailroom_exeptions: + +Adding Exceptions +----------------- + +**After Session05:** + +* Exceptions: + +Now that you've learned about Exception handling, you can update your code to handle errors better -- like when a user inputs bad data. + +* Comprehensions: + +Can you use comprehensions to clean up your code a bit? + +* Tests + +Add some tests.. + + diff --git a/slides_sources/source/exercises/rot13.rst b/slides_sources/source/exercises/rot13.rst new file mode 100644 index 00000000..0763adf4 --- /dev/null +++ b/slides_sources/source/exercises/rot13.rst @@ -0,0 +1,48 @@ +.. _exercise_rot13: + +***** +ROT13 +***** + +Goal +---- + +Get used to working with the number values for characters + +Get a bit of practice with string methods and string processing + + +ROT13 encryption +----------------- + +The ROT13 encryption scheme is a simple substitution cypher where each letter +in a text is replace by the letter 13 away from it (imagine the alphabet as a +circle, so it wraps around). + +The task +-------- + +Add a python module named ``rot13.py`` to the session03 dir in your student dir. This module should provide at least one function called ``rot13`` that takes any amount of text and returns that same text encrypted by ROT13. + +This function should preserve whitespace, punctuation and capitalization. + +Your module should include an ``if __name__ == '__main__':`` block with tests (asserts) that demonstrate that your ``rot13`` function and any helper functions you add work properly. + + +.. nextslide:: A bit more + +There is a "short-cut" available that will help you accomplish this task. Some +spelunking in `the documentation for strings`_ should help you to find it. If +you do find it, using it is completely fair game. + +As usual, add your new file to your local clone right away. Make commits +early and often and include commit messages that are descriptive and concise. + +When you are done, if you want me to review it, push your changes to github +and issue a pull request. + +try decrypting this: + +"Zntargvp sebz bhgfvqr arne pbeare" + +.. _the documentation for strings: https://docs.python.org/3/library/stdtypes.html#string-methods diff --git a/Students/Dave Fugelso/Session 6/sample_html.html b/slides_sources/source/exercises/sample_html.html similarity index 100% rename from Students/Dave Fugelso/Session 6/sample_html.html rename to slides_sources/source/exercises/sample_html.html diff --git a/Solutions/Session04/sherlock.txt b/slides_sources/source/exercises/sherlock.txt similarity index 100% rename from Solutions/Session04/sherlock.txt rename to slides_sources/source/exercises/sherlock.txt diff --git a/slides_sources/source/homework/sherlock_small.txt b/slides_sources/source/exercises/sherlock_small.txt similarity index 100% rename from slides_sources/source/homework/sherlock_small.txt rename to slides_sources/source/exercises/sherlock_small.txt diff --git a/slides_sources/source/exercises/slicing.rst b/slides_sources/source/exercises/slicing.rst new file mode 100644 index 00000000..61747eb8 --- /dev/null +++ b/slides_sources/source/exercises/slicing.rst @@ -0,0 +1,25 @@ +.. _exercise_slicing: + +*********** +Slicing Lab +*********** + +Goal +==== + +Get the basics of sequence slicing down + +Tasks +----- + +Write some functions that: + +* return a sequence with the first and last items exchanged. +* return a sequence with every other item removed +* return a sequence with the first and last 4 items removed, and every other item in between +* return a sequence reversed (just with slicing) +* return a sequence with the middle third, then last third, then the first third in the new order + +NOTE: +these should work with ANY sequence -- but you can use strings to test, if you like. + diff --git a/slides_sources/source/exercises/sparse_array.rst b/slides_sources/source/exercises/sparse_array.rst new file mode 100644 index 00000000..f627c82a --- /dev/null +++ b/slides_sources/source/exercises/sparse_array.rst @@ -0,0 +1,86 @@ +.. _exercise_sparse_array: + +====================== +Sparse Array Exercise +====================== + +Sparse Array +============ + +.. rst-class:: medium + + Goal: + +Learn how to emulate a built-in class. + +Sparse Array: +------------- + +Oftentimes, at least in computation programming, we have large arrays of data that hold mostly zeros. + +These are referred to as "sparse" as the information in them is widely scattered, or sparse. + +Since they are mostly zeros, it can be memory and computationally efficient to store only the value that are non-zero. + +But you want it to look like a regular array in user code. + +In the real world, these are usually 2 dimensional arrays. But to keep it a bit simpler, we'll make a 1 dimensional sparse array in this class. + +(feel free to make it 2d for an extra challenge!) + +A Sparse array class +-------------------- + +A spare array class should present to the user the same interface as a regular list. + +Some ideas of how to do that: + +* Internally, it can store the values in a dict, with the index as the keys. So that only the indexes with non-zero values will be stored. + +* It should take a sequence of values as an initializer: + +.. code-block:: python + + sa = SparseArray([1,2,0,0,0,0,3,0,0,4]) + +* you should be able to tell how long it is: + +.. code-block:: python + + len(my_array) + + This will give its "virtual" length -- with the zeros + +.. nextslide:: + +* It should support getting and setting particular elements via indexing: + +.. code-block:: python + + sa[5] = 12 + sa[3] = 0 # the zero won't get stored! + val = sa[13] # it should get a zero if not set + +* It should support deleting an element by index: + +.. code-block:: python + + del sa[4] + +* It should raise an ``IndexError`` if you try to access an index beyond the end. + +* it should have an append() method + +.. nextslide:: + +* Can you make it support slicing? + +* How else can you make it like a list? + +.. code-block:: ipython + + In [10]: my_array = SparseArray( (1,0,0,0,2,0,0,0,5) ) + In [11]: my_array[4] + Out[11]: 2 + In [12]: my_array[2] + Out[12]: 0 diff --git a/slides_sources/source/exercises/string_formatting.rst b/slides_sources/source/exercises/string_formatting.rst new file mode 100644 index 00000000..f01556d9 --- /dev/null +++ b/slides_sources/source/exercises/string_formatting.rst @@ -0,0 +1,111 @@ +.. _exercise_string_formatting: + +********************* +String Formatting Lab +********************* + +Building up strings +=================== + +.. rst-class:: left + +For reference: + +The official reference docs: + +https://docs.python.org/3/library/string.html#string-formatting + +And a more human-readable intro: + +https://pyformat.info/ + +And a nice "Cookbook": + +https://mkaz.tech/python-string-format.html + + +A Couple Exercises +------------------ + +* Write a format string that will take: + + ``( 2, 123.4567, 10000)`` + + and produce: + + ``'file_002 : 123.46, 1.00e+04'`` + +**Note:** the idea behind the "file_002" is that if you have a bunch of files that you want to name with numbers that can be sorted, you need to "pad" the numbers with zeros to get the right sort order. + +.. nextslide:: + +For example: + +.. code-block:: ipython + + In [10]: fnames = ['file1', 'file2', 'file10', 'file11'] + In [11]: fnames.sort() + In [12]: fnames + Out[12]: ['file1', 'file10', 'file11', 'file2'] + +That is probably not what you want. However: + +.. code-block:: ipython + + In [1]: fnames = ['file001', 'file002', 'file010', 'file011'] + In [3]: sorted(fnames) + Out[3]: ['file001', 'file002', 'file010', 'file011'] + +That works! + +So you want to find a string formatting operator that will "pad" the number with zeros for you. + +Dynamically Building up format strings +-------------------------------------- + +* Rewrite: + +``"the 3 numbers are: {:d}, {:d}, {:d}".format(1,2,3)`` + +to take an arbitrary number of values. + +Trick: You can pass in a tuple of values to a function with a ``*``: + +.. code-block:: ipython + + In [52]: t = (1,2,3) + + In [53]: "the 3 numbers are: {:d}, {:d}, {:d}".format(*t) + Out[53]: 'the 3 numbers are: 1, 2, 3' + +.. nextslide:: + +The idea here is that you may have a tuple of three numbers, but might also have 4 or 5 or.... + +So you can dynamically build up the format string to accommodate the length of the tuple. + +The string object has the ``format()`` method, so you can call it with a string that is bound to a name, not just a string literal. For example: + +.. code-block:: ipython + + In [16]: fstring = "{:d}, {:d}" + + In [17]: nums = (34, 56) + + In [18]: fstring.format(*nums) + Out[18]: '34, 56' + +So how would you make an fstring that was the right length for an arbitrary tuple? + +.. nextslide:: + +Put your code in a function that will return the formatted string like so: + +.. code-block:: ipython + + In [20]: formatter((2,3,5)) + Out[20]: 'the 3 numbers are: 2, 3, 5' + + In [21]: formatter((2,3,5,7,9)) + Out[21]: 'the 5 numbers are: 2, 3, 5, 7, 9' + diff --git a/slides_sources/source/exercises/trapezoid.rst b/slides_sources/source/exercises/trapezoid.rst new file mode 100644 index 00000000..bf6c97ef --- /dev/null +++ b/slides_sources/source/exercises/trapezoid.rst @@ -0,0 +1,295 @@ +.. _exercise_trapezoidal_rule: + +***************** +Trapezoidal Rule +***************** + +Passing functions around +========================= + + +.. rst-class:: medium left + + Goal: + +.. rst-class:: left + + Making use of functions as objects -- functions that act on functions. + + +Trapezoidal rule +---------------- + +The "trapezoidal rule": + +https://en.wikipedia.org/wiki/Trapezoidal_rule + +Is one of the easiest "quadrature" methods. + +Otherwise known as computing a definite integral, or, simply, + +Computing the area under a curve. + +The task +-------- + +Your task is to write a ``trapz()`` function that will compute the area under an arbitrary function, using the trapezoidal rule. + +The function will take another function as an argument, as well as the start and end points to compute, and return the area under the curve. + +Example: +-------- + +.. code-block:: python + + def line(x): + '''a very simple straight horizontal line at y = 5''' + return 5 + + area = trapz(line, 0, 10) + + area + 50 + +About the simplest "curve" you can have is a horizontal straight line, in this case, at y = 5. The area under that line from 0 to 10 is a rectangle that is 10 wide and 5 high, so with an area of 50. + +Of course in this case, it's easiest to simply multiply the height times the width, but we want a function that will work for **Any** curve. + +HINT: this simple example could be a good test case! + +The Solution: +------------- + +Your function definition should look like: + +.. code-block:: python + + def trapz(fun, a, b): + """ + Compute the area under the curve defined by + y = fun(x), for x between a and b + + :param fun: the function to evaluate + :type fun: a function that takes a single parameter + + :param a: the start point for teh integration + :type a: a numeric value + + :param b: the end point for the integration + :type b: a numeric value + """ + pass + +.. nextslide:: + +In the function, you want to compute the following equation: + +.. math:: + + area = \frac{b-a}{2N}(f(x_0) + 2f(x_1) + 2f(x_2) + \dotsb + 2f(x_{N-1}) + f(x_N)) + +So you will need to: + + - create a list of x values from a to b (maybe 100 or so values to start) + + - compute the function for each of those values and double them + + - add them all up + + - multiply by the half of the difference between a and b divided by the number of steps. + +.. nextslide:: + +Note that the first and last values are not doubled, so it may be more efficient to rearrange it like this: + +.. math:: + + area = \frac{b-a}{N} \left( \frac{f(x_0) + f(x_{N})}{2} + \sum_{i=1}^{N-1} f(x_i) \right) + +Can you use comprehensions for this? + +NOTE: ``range()`` only works for integers -- how can you deal with that? + +.. nextslide:: + +Once you have that, it should work for any function that can be evaluated between a and b. + +Try it for some built-in math functions, like ``math.sin`` + +tests +----- + +Do this using test-drive development. + +A few examples of analytical solutions you can use for tests: + +A simple horizontal line -- see above. + +.. nextslide:: + +A sloped straight line: + +.. math:: + + \int_a^b y = mx + B = \frac{1}{2} m (b^2-a^2) + B (b-a) + +The quadratic: + +.. math:: + + \int_a^b y = Ax^2 + Bx + C = \frac{A}{3} (b^3-a^3) + \frac{B}{2} (b^2-a^2) + C (b-a) + + +The sine function: + +.. math:: + + \int_a^b \sin(x) = \cos(a) - \cos(b) + +Computational Accuracy +---------------------- + +In the case of the linear functions, the result should theoretically be exact. But with the vagaries of floating point math may not be. + +And for non-linear functions, the result will certainly not be exact. + +So you want to check if the answer is *close* to what you expect. + +In py3.5 -- there is an ``isclose()`` function (PEP485) + +https://www.python.org/dev/peps/pep-0485/ + +In earlier pythons -- you'll need your own. There is one in: + +``Examples/Session09/test_trapz.py`` + + + +Stage two: +---------- + +Some functions need extra parameters to do their thing. But the above will only handle a single parameter. For example, a quadratic function: + +.. math:: + + y = A x^2 + Bx + C + +Requires values for A, B, and C in order to compute y from an given x. + +You could write a specialized version of this function for each A, B, and C: + +.. code-block:: python + + def quad1(x): + return 3 * x**2 + 2*x + 4 + +But then you need to write a new function for any value of these parameters you might need. + +.. nextslide:: + +Instead, you can pass in A, B and C each time: + +.. code-block:: python + + def quadratic(x, A=0, B=0, C=0): + return A * x**2 + B * x + C + +Nice and general purpose. + +But how would we compute the area under this function? + +The function we wrote above only passes x in to the function it is integrating. + +Passing arguments through: +-------------------------- + +Update your trapz() function so that you can give it a function that takes arbitrary extra arguments, either positional or keyword, after the x. + +So you can do: + +.. code-block:: python + + trapz(quadratic, 2, 20, A=1, B=3, C=2) + +or + +.. code-block:: python + + trapz(quadratic, 2, 20, 1, 3, C=2) + +or + +.. code-block:: python + + coef = {'A':1, 'B':3, 'C': 2} + trapz(quadratic, 2, 20, **coef) + +.. nextslide:: + +**NOTE:** Make sure this will work with ANY function, with **ANY** additional positional or keyword arguments -- not just this particular function. + +This is pretty conceptually challenging -- but it's very little code! + +If you are totally lost -- look at the lecture notes from previous classes -- how can you both accept and pass arbitrary arguments to/from a function? + +.. nextslide:: + +You want your trapz function to take ANY function that can take ANY arbitrary extra arguments -- not just the quadratic function, and not just ``A,B, and C``. So good to test with another example. + +The generalized sine function is: + +.. math:: + + A \sin(\omega t) + +where :math:`A` is the amplitude, and :math:`\omega` is the frequency of the function. In this case, the area under the curve from a to b is: + +.. math:: + + \frac{A}{\omega} \left( \cos(\omega a) - \cos(\omega b) \right) + +The test code has a test for this one, too. + +Currying +-------- + +Another way to solve the above problem is to use the original ``trapz``, and create a custom version of the quadratic() function instead. + +Write a function that takes ``A, B, and C`` as arguments, and returns a function that evaluates the quadratic for those particular coefficients. + +Try passing the results of this into your ``trapz()`` and see if you get the same answer. + +partial +------- + +Do the above with ``functools.partial`` as well. + +Extra credit +------------ + +This isn't really the point of the exercise, but see if you can make it dynamically accurate. + +How accurate it is depends on how small the chunks are that you break the function up into. + +See if you can think of a way to dynamically determine how small a step you should use. + +This is one for the math and computational programming geeks! + + + + + + + + + + + + + + + + + + + diff --git a/slides_sources/source/extra_topics.rst b/slides_sources/source/extra_topics.rst new file mode 100644 index 00000000..39062e0a --- /dev/null +++ b/slides_sources/source/extra_topics.rst @@ -0,0 +1,131 @@ +.. _extra_topics: + +************ +Extra Topics +************ + +Here are some extra topics that we didn't have time for in the regular class sessions: + +============================== +Closures and function Currying +============================== + +Defining specialized functions on the fly + +Closures +-------- + +"Closures" and "Currying" are cool CS terms for what is really just defining functions on the fly. + +you can find a "proper" definition here: + +https://en.wikipedia.org/wiki/Closure_(computer_programming) + +but I even have trouble following that. + +So let's go straight to an example: + +.. nextslide:: + +.. code-block:: python + + def counter(start_at=0): + count = [start_at] + def incr(): + count[0] += 1 + return count[0] + return incr + +What's going on here? + +We have stored the ``start_at`` value in a list. + +Then defined a function, ``incr`` that adds one to the value in the list, and returns that value. + +[ Quiz: why is it: ``count = [start_at]``, rather than just ``count=start_at`` ] + +.. nextslide:: + +So what type of object do you get when you call ``counter()``? + +.. code-block:: ipython + + In [37]: c = counter(start_at=5) + + In [38]: type(c) + Out[38]: function + +So we get a function back -- makes sense. The ``def`` defines a function, and that function is what's getting returned. + +Being a function, we can, of course, call it: + +.. code-block:: ipython + + In [39]: c() + Out[39]: 6 + + In [40]: c() + Out[40]: 7 + +Each time is it called, it increments the value by one. + +.. nextslide:: + +But what happens if we call ``counter()`` multiple times? + +.. code-block:: ipython + + In [41]: c1 = counter(5) + + In [42]: c2 = counter(10) + + In [43]: c1() + Out[43]: 6 + + In [44]: c2() + Out[44]: 11 + +So each time ``counter()`` is called, a new function is created. And that function has its own copy of the ``count`` object. This is what makes in a "closure" -- it carries with it the scope in which is was created. + +the returned ``incr`` function is a "curried" function -- a function with some parameters pre-specified. + +``functools.partial`` +--------------------- + +The ``functools`` module in the standard library provides utilities for working with functions: + +https://docs.python.org/3.5/library/functools.html + +Creating a curried function turns out to be common enough that the ``functools.partial`` function provides an optimized way to do it: + +What functools.partial does is: + + * Makes a new version of a function with one or more arguments already filled in. + * The new version of a function documents itself. + +Example: + +.. code-block:: python + + def power(base, exponent): + """returns based raised to the give exponent""" + return base ** exponent + +Simple enough. but what if we wanted a specialized ``square`` and ``cube`` function? + +We can use ``functools.partial`` to *partially* evaluate the function, giving us a specialized version: + +square = partial(power, exponent=2) +cube = partial(power, exponent=3) + +Reading: +-------- + +http://www.pydanny.com/python-partials-are-fun.html + +https://pymotw.com/3/functools/ + +http://www.programiz.com/python-programming/closure + +https://www.clear.rice.edu/comp130/12spring/curry/ + diff --git a/slides_sources/source/homework/html_builder.rst b/slides_sources/source/homework/html_builder.rst deleted file mode 100644 index d1345998..00000000 --- a/slides_sources/source/homework/html_builder.rst +++ /dev/null @@ -1,308 +0,0 @@ -.. _homework_html_renderer: - -================================== -HTML Renderer Homework Assignment -================================== - -HTML Render -============ - -Goal: ------- - -The goal is to create a set of classes to render html pages -- in a "pretty printed" way. i.e nicely indented and human readable. We'll try to get to all the features required to render: - -:download:`sample_html.html <./sample_html.html>` - -The exercise is broken down into a number of steps -- each requiring a few more OO concepts in Python. - -General Instructions: ---------------------- - -For each step, add the required functionality. There is example code to run your code for each step in: ``code\session06\run_html_render.py`` - -name your file: ``html_render.py`` -- so it can be imported by ``run_html_render.py`` - -You should be able to run that code at each step, uncommenting each new step in ``run_html_render.py`` as you go. - -It builds up a html tree, and then calls the ``render()`` method of your element to render the page. - -It uses a ``cStringIO`` object (like a file, but in memory) to render to memory, then dumps it to the console, and writes a file. Take a look at the code at the end to make sure you understand it. - -The html generated at each step is in the files: ``test_html_ouput?.html`` - -At each step, your results should look similar that those (maybe not identical...) - - -Step 1: -------- - -Create an ``Element`` class for rendering an html element (xml element). - -It should have class attributes for the tag name ("html" first) and the indentation (spaces to indent for pretty printing) - -The constructor signature should look like - -.. code-block:: python - - Element(content=None) - -where ``content`` is a string - -It should have an ``append`` method that can add another string to the content. - -It should have a ``render(file_out, ind = "")`` method that renders the tag and the strings in the content. - -``file_out`` could be any file-like object ( i.e. have a ``write()`` method ). - -.. nextslide:: - -``ind`` is a string with the indentation level in it: the amount that the tag should be indented for pretty printing. - - - This is a little tricky: ``ind`` will be the amount that this element should be indented already. It will be from zero (an empty string) to a lot of spaces, depending on how deep it is in the tree. - -The amount of indentation should be set by the class attribute: ``indent`` - -NOTE: don't worry too much about indentation at this stage -- the primary goal is to get proper, compliant html. i.e. the opening and closing tags rendered correctly. Worry about cleaning up the indentation once you've got that working. - -You should now be able to render an html tag with text in it as contents. - -See: step 1. in ``run_html_render.py`` - -Step 2: --------- - -Create a couple subclasses of ``Element``, for a ``html``, ````, and ``

      `` tag. All you should have to do is override the ``tag`` class attribute (you may need to add a ``tag`` class attribute to the Element class first...). - -Now you can render a few different types of element. - -Extend the ``Element.render()`` method so that it can render other elements inside the tag in addition to strings. Simple recursion should do it. i.e. it can call the ``render()`` method of the elements it contains. You'll need to be smart about setting the ``ind`` optional parameter -- so that the nested elements get indented correctly. - -Figure out a way to deal with the fact that the contained elements could be either simple strings or ``Element`` s with render methods (there are a few ways to handle that...). - -You should now be able to render a basic web page with an html tag around -the whole thing, a ```` tag inside, and multiple ``

      `` tags inside that, with text inside that. And all indented nicely. - -See ``test_html_output2.html`` - -NOTE: when you run step 2 in ``run_html_render.py``, you will want o comment out step 1 -- that way you'll only get one set of output. - -Step 3: --------- - -Create a ```` element -- simple subclass. - -Create a ``OneLineTag`` subclass of ``Element``: - -* It should override the render method, to render everything on one line -- for the simple tags, like:: - - PythonClass - Session 6 example - -Create a ``Title`` subclass of ``OneLineTag`` class for the title. - -You should now be able to render an html doc with a head element, with a -title element in that, and a body element with some ``

      `` elements and some text. - -See ``test_html_output3.html`` - -Step 4: --------- - -Extend the ``Element`` class to accept a set of attributes as keywords to the -constructor, ie. (``run_html_render.py``) - -.. code-block:: python - - Element("some text content", id="TheList", style="line-height:200%") - -( remember ``**kwargs``? ) - -The render method will need to be extended to render the attributes properly. - -You can now render some ``

      `` tags (and others) with attributes - -See ``test_html_output4.html`` - -Step 5: --------- - -Create a ``SelfClosingTag`` subclass of Element, to render tags like:: - -


      and
      (horizontal rule and line break). - -You will need to override the render method to render just the one tag and -attributes, if any. - -Create a couple subclasses of ``SelfClosingTag`` for and
      and
      - -See ``test_html_output5.html`` - -Step 6: -------- - -Create a ``A`` class for an anchor (link) element. Its constructor should look like:: - - A(self, link, content) - -where link is the link, and content is what you see. It can be called like so:: - - A(u"http://google.com/", u"link to google") - -You should be able to subclass from ``Element``, and only override the ``__init__`` --- Calling the ``Element`` ``__init__`` from the ``A __init__`` - -You can now add a link to your web page. - -See ``test_html_output6.html`` - -Step 7: --------- - -Create ``Ul`` class for an unordered list (really simple subclass of ``Element``) - -Create ``Li`` class for an element in a list (also really simple) - -Add a list to your web page. - -Create a ``Header`` class -- this one should take an integer argument for the -header level. i.e

      ,

      ,

      , called like - -.. code-block:: python - - H(2, "The text of the header") - -for an

      header - -It can subclass from ``OneLineTag`` -- overriding the ``__init__``, then calling the superclass ``__init__`` - -See ``test_html_output7.html`` - -Step 8: --------- - -Update the ``Html`` element class to render the "" tag at the head of the page, before the html element. - -You can do this by subclassing ``Element``, overriding ``render()``, but then calling the ``Element`` render from the new render. - -Create a subclass of ``SelfClosingTag`` for ```` (like for ``
      `` and ``
      `` and add the meta element to the beginning of the head element to give your document an encoding. - -The doctype and encoding are HTML 5 and you can check this at: http://validator.w3.org. - -You now have a pretty full-featured html renderer -- play with it, add some -new tags, etc.... - -See ``test_html_output8.html`` - - -HTML Primer -============ - -.. rst-class:: medium - - The very least you need to know about html to do this assigment. - -If you are familar with html, then this will all make sense to you. If you have -never seen html before, this might be a bit intimidating, but you really don't -need to know much to do this assignment. - -First of all, sample output from each step is provided. So all you really need -to do is look at that, and make your code do the same thing. But it does help to -know a little bit about what you are doing. - -HTML ----- - -HTML is "Hyper Text Markup Language". Hypertext, because it can contain links -to other pages, and markup language means that text is "marked up" with -instructions about how to format the text, etc. - -Here is a good basic intro: - -http://www.w3schools.com/html/html_basic.asp - -And there are countless others online. - -But here is a tiny intro of just what you need to know for this project. - -Elements --------- - -Modern HTML is a particular dialect of XML (eXrensible Markup Language), -which is itself a special case of SGML (Standard Generalized Markup Language) - -It inherits from SGML a basic structure: each piece of the document is an element. each element is described by a "tag". each tag has a different meaning, but they all have the same structure:: - - some content - -that is, the tag name is surrounded by < and >, which marks the beginning of -the element, and the end of the element is indicated by the same tag with a slash. - -The real power is that these elements can be nested arbitrarily deep. In order to keep that all readable, we often want to indent the content inside the tags, so it's clear what belongs with what. That is one of the tricky bits of this assignment. - -Basic tags ----------- - -.. code-block:: html - - is the core tag indicating the entire document - -

      is a single paragraph of text

      - - is the tag that indicated the text of the document - - defines the header of the document -- a place for metadata - -Attributes: ------------- - -In addition to the tag name and the content, extra attributes can be attached to a tag. These are added to the "opening tag", with name="something", another_name="somethign else" format: - -.. code-block:: html - -

      - -There can be all sorts of stuff stored in attributes -- some required for specific tags, some extra, like font sizes and colors. Note that since tags can essentially have any attributes, your code will need to support that -- doesn't it kind of look like a dict? And keyword arguments? - -Special Elements ----------------- - -The general structure is everything is between and opening and closing tag. But some elements don't really have content -- just attributes. So the slash goes at the end of the tag, after the attributes. We can call these self-closing tags: - -.. code-block:: html - - - -To make a link, you use an "anchor" tag: ````. It required attributes to indicate what the link is: - -.. code-block:: html - - link - -the ``href`` attribute is the link (hyper reference). - -To make a bulleted list, you use a

        tag (unordered list), and inside that, you put individual list elements
      • : - -.. code-block:: html - -
          -
        • - The first item in a list -
        • -
        • - This is the second item -
        • -
        - -Note that the list itself, and the list items can both take various attributes (all tags can...) - -Section Headers are created with "h" tags:

        is the biggest (highest level), and there is

        ,

        , etc. for sections, sub sections, subsub sections. - -.. code-block:: html - -

        PythonClass - Class 6 example

        - -I think that's all you need to know! - - - - - diff --git a/slides_sources/source/homework/index.rst b/slides_sources/source/homework/index.rst deleted file mode 100644 index 2996c733..00000000 --- a/slides_sources/source/homework/index.rst +++ /dev/null @@ -1,10 +0,0 @@ -Homework Materials -====================== - -.. toctree:: - :maxdepth: 1 - - kata_fourteen - html_builder - circle_class - diff --git a/slides_sources/source/homework/sample_html.html b/slides_sources/source/homework/sample_html.html deleted file mode 100644 index f2687e95..00000000 --- a/slides_sources/source/homework/sample_html.html +++ /dev/null @@ -1,27 +0,0 @@ - - - - - PythonClass = Revision 1087: - - -

        PythonClass - Class 6 example

        -

        - Here is a paragraph of text -- there could be more of them, but this is enough to show that we can do some text -

        -
        -
          -
        • - The first item in a list -
        • -
        • - This is the second item -
        • -
        • - And this is a - link - to google -
        • -
        - - \ No newline at end of file diff --git a/slides_sources/source/homework/sherlock.txt b/slides_sources/source/homework/sherlock.txt deleted file mode 100644 index 4dec2015..00000000 --- a/slides_sources/source/homework/sherlock.txt +++ /dev/null @@ -1,13052 +0,0 @@ -Project Gutenberg's The Adventures of Sherlock Holmes, by Arthur Conan Doyle - -This eBook is for the use of anyone anywhere at no cost and with -almost no restrictions whatsoever. You may copy it, give it away or -re-use it under the terms of the Project Gutenberg License included -with this eBook or online at www.gutenberg.net - - -Title: The Adventures of Sherlock Holmes - -Author: Arthur Conan Doyle - -Posting Date: April 18, 2011 [EBook #1661] -First Posted: November 29, 2002 - -Language: English - - -*** START OF THIS PROJECT GUTENBERG EBOOK THE ADVENTURES OF SHERLOCK HOLMES *** - - - - -Produced by an anonymous Project Gutenberg volunteer and Jose Menendez - - - - - - - - - -THE ADVENTURES OF SHERLOCK HOLMES - -by - -SIR ARTHUR CONAN DOYLE - - - - I. A Scandal in Bohemia - II. The Red-headed League - III. A Case of Identity - IV. The Boscombe Valley Mystery - V. The Five Orange Pips - VI. The Man with the Twisted Lip - VII. The Adventure of the Blue Carbuncle -VIII. The Adventure of the Speckled Band - IX. The Adventure of the Engineer's Thumb - X. The Adventure of the Noble Bachelor - XI. The Adventure of the Beryl Coronet - XII. The Adventure of the Copper Beeches - - - - -ADVENTURE I. A SCANDAL IN BOHEMIA - -I. - -To Sherlock Holmes she is always THE woman. I have seldom heard -him mention her under any other name. In his eyes she eclipses -and predominates the whole of her sex. It was not that he felt -any emotion akin to love for Irene Adler. All emotions, and that -one particularly, were abhorrent to his cold, precise but -admirably balanced mind. He was, I take it, the most perfect -reasoning and observing machine that the world has seen, but as a -lover he would have placed himself in a false position. He never -spoke of the softer passions, save with a gibe and a sneer. They -were admirable things for the observer--excellent for drawing the -veil from men's motives and actions. But for the trained reasoner -to admit such intrusions into his own delicate and finely -adjusted temperament was to introduce a distracting factor which -might throw a doubt upon all his mental results. Grit in a -sensitive instrument, or a crack in one of his own high-power -lenses, would not be more disturbing than a strong emotion in a -nature such as his. And yet there was but one woman to him, and -that woman was the late Irene Adler, of dubious and questionable -memory. - -I had seen little of Holmes lately. My marriage had drifted us -away from each other. My own complete happiness, and the -home-centred interests which rise up around the man who first -finds himself master of his own establishment, were sufficient to -absorb all my attention, while Holmes, who loathed every form of -society with his whole Bohemian soul, remained in our lodgings in -Baker Street, buried among his old books, and alternating from -week to week between cocaine and ambition, the drowsiness of the -drug, and the fierce energy of his own keen nature. He was still, -as ever, deeply attracted by the study of crime, and occupied his -immense faculties and extraordinary powers of observation in -following out those clues, and clearing up those mysteries which -had been abandoned as hopeless by the official police. From time -to time I heard some vague account of his doings: of his summons -to Odessa in the case of the Trepoff murder, of his clearing up -of the singular tragedy of the Atkinson brothers at Trincomalee, -and finally of the mission which he had accomplished so -delicately and successfully for the reigning family of Holland. -Beyond these signs of his activity, however, which I merely -shared with all the readers of the daily press, I knew little of -my former friend and companion. - -One night--it was on the twentieth of March, 1888--I was -returning from a journey to a patient (for I had now returned to -civil practice), when my way led me through Baker Street. As I -passed the well-remembered door, which must always be associated -in my mind with my wooing, and with the dark incidents of the -Study in Scarlet, I was seized with a keen desire to see Holmes -again, and to know how he was employing his extraordinary powers. -His rooms were brilliantly lit, and, even as I looked up, I saw -his tall, spare figure pass twice in a dark silhouette against -the blind. He was pacing the room swiftly, eagerly, with his head -sunk upon his chest and his hands clasped behind him. To me, who -knew his every mood and habit, his attitude and manner told their -own story. He was at work again. He had risen out of his -drug-created dreams and was hot upon the scent of some new -problem. I rang the bell and was shown up to the chamber which -had formerly been in part my own. - -His manner was not effusive. It seldom was; but he was glad, I -think, to see me. With hardly a word spoken, but with a kindly -eye, he waved me to an armchair, threw across his case of cigars, -and indicated a spirit case and a gasogene in the corner. Then he -stood before the fire and looked me over in his singular -introspective fashion. - -"Wedlock suits you," he remarked. "I think, Watson, that you have -put on seven and a half pounds since I saw you." - -"Seven!" I answered. - -"Indeed, I should have thought a little more. Just a trifle more, -I fancy, Watson. And in practice again, I observe. You did not -tell me that you intended to go into harness." - -"Then, how do you know?" - -"I see it, I deduce it. How do I know that you have been getting -yourself very wet lately, and that you have a most clumsy and -careless servant girl?" - -"My dear Holmes," said I, "this is too much. You would certainly -have been burned, had you lived a few centuries ago. It is true -that I had a country walk on Thursday and came home in a dreadful -mess, but as I have changed my clothes I can't imagine how you -deduce it. As to Mary Jane, she is incorrigible, and my wife has -given her notice, but there, again, I fail to see how you work it -out." - -He chuckled to himself and rubbed his long, nervous hands -together. - -"It is simplicity itself," said he; "my eyes tell me that on the -inside of your left shoe, just where the firelight strikes it, -the leather is scored by six almost parallel cuts. Obviously they -have been caused by someone who has very carelessly scraped round -the edges of the sole in order to remove crusted mud from it. -Hence, you see, my double deduction that you had been out in vile -weather, and that you had a particularly malignant boot-slitting -specimen of the London slavey. As to your practice, if a -gentleman walks into my rooms smelling of iodoform, with a black -mark of nitrate of silver upon his right forefinger, and a bulge -on the right side of his top-hat to show where he has secreted -his stethoscope, I must be dull, indeed, if I do not pronounce -him to be an active member of the medical profession." - -I could not help laughing at the ease with which he explained his -process of deduction. "When I hear you give your reasons," I -remarked, "the thing always appears to me to be so ridiculously -simple that I could easily do it myself, though at each -successive instance of your reasoning I am baffled until you -explain your process. And yet I believe that my eyes are as good -as yours." - -"Quite so," he answered, lighting a cigarette, and throwing -himself down into an armchair. "You see, but you do not observe. -The distinction is clear. For example, you have frequently seen -the steps which lead up from the hall to this room." - -"Frequently." - -"How often?" - -"Well, some hundreds of times." - -"Then how many are there?" - -"How many? I don't know." - -"Quite so! You have not observed. And yet you have seen. That is -just my point. Now, I know that there are seventeen steps, -because I have both seen and observed. By-the-way, since you are -interested in these little problems, and since you are good -enough to chronicle one or two of my trifling experiences, you -may be interested in this." He threw over a sheet of thick, -pink-tinted note-paper which had been lying open upon the table. -"It came by the last post," said he. "Read it aloud." - -The note was undated, and without either signature or address. - -"There will call upon you to-night, at a quarter to eight -o'clock," it said, "a gentleman who desires to consult you upon a -matter of the very deepest moment. Your recent services to one of -the royal houses of Europe have shown that you are one who may -safely be trusted with matters which are of an importance which -can hardly be exaggerated. This account of you we have from all -quarters received. Be in your chamber then at that hour, and do -not take it amiss if your visitor wear a mask." - -"This is indeed a mystery," I remarked. "What do you imagine that -it means?" - -"I have no data yet. It is a capital mistake to theorize before -one has data. Insensibly one begins to twist facts to suit -theories, instead of theories to suit facts. But the note itself. -What do you deduce from it?" - -I carefully examined the writing, and the paper upon which it was -written. - -"The man who wrote it was presumably well to do," I remarked, -endeavouring to imitate my companion's processes. "Such paper -could not be bought under half a crown a packet. It is peculiarly -strong and stiff." - -"Peculiar--that is the very word," said Holmes. "It is not an -English paper at all. Hold it up to the light." - -I did so, and saw a large "E" with a small "g," a "P," and a -large "G" with a small "t" woven into the texture of the paper. - -"What do you make of that?" asked Holmes. - -"The name of the maker, no doubt; or his monogram, rather." - -"Not at all. The 'G' with the small 't' stands for -'Gesellschaft,' which is the German for 'Company.' It is a -customary contraction like our 'Co.' 'P,' of course, stands for -'Papier.' Now for the 'Eg.' Let us glance at our Continental -Gazetteer." He took down a heavy brown volume from his shelves. -"Eglow, Eglonitz--here we are, Egria. It is in a German-speaking -country--in Bohemia, not far from Carlsbad. 'Remarkable as being -the scene of the death of Wallenstein, and for its numerous -glass-factories and paper-mills.' Ha, ha, my boy, what do you -make of that?" His eyes sparkled, and he sent up a great blue -triumphant cloud from his cigarette. - -"The paper was made in Bohemia," I said. - -"Precisely. And the man who wrote the note is a German. Do you -note the peculiar construction of the sentence--'This account of -you we have from all quarters received.' A Frenchman or Russian -could not have written that. It is the German who is so -uncourteous to his verbs. It only remains, therefore, to discover -what is wanted by this German who writes upon Bohemian paper and -prefers wearing a mask to showing his face. And here he comes, if -I am not mistaken, to resolve all our doubts." - -As he spoke there was the sharp sound of horses' hoofs and -grating wheels against the curb, followed by a sharp pull at the -bell. Holmes whistled. - -"A pair, by the sound," said he. "Yes," he continued, glancing -out of the window. "A nice little brougham and a pair of -beauties. A hundred and fifty guineas apiece. There's money in -this case, Watson, if there is nothing else." - -"I think that I had better go, Holmes." - -"Not a bit, Doctor. Stay where you are. I am lost without my -Boswell. And this promises to be interesting. It would be a pity -to miss it." - -"But your client--" - -"Never mind him. I may want your help, and so may he. Here he -comes. Sit down in that armchair, Doctor, and give us your best -attention." - -A slow and heavy step, which had been heard upon the stairs and -in the passage, paused immediately outside the door. Then there -was a loud and authoritative tap. - -"Come in!" said Holmes. - -A man entered who could hardly have been less than six feet six -inches in height, with the chest and limbs of a Hercules. His -dress was rich with a richness which would, in England, be looked -upon as akin to bad taste. Heavy bands of astrakhan were slashed -across the sleeves and fronts of his double-breasted coat, while -the deep blue cloak which was thrown over his shoulders was lined -with flame-coloured silk and secured at the neck with a brooch -which consisted of a single flaming beryl. Boots which extended -halfway up his calves, and which were trimmed at the tops with -rich brown fur, completed the impression of barbaric opulence -which was suggested by his whole appearance. He carried a -broad-brimmed hat in his hand, while he wore across the upper -part of his face, extending down past the cheekbones, a black -vizard mask, which he had apparently adjusted that very moment, -for his hand was still raised to it as he entered. From the lower -part of the face he appeared to be a man of strong character, -with a thick, hanging lip, and a long, straight chin suggestive -of resolution pushed to the length of obstinacy. - -"You had my note?" he asked with a deep harsh voice and a -strongly marked German accent. "I told you that I would call." He -looked from one to the other of us, as if uncertain which to -address. - -"Pray take a seat," said Holmes. "This is my friend and -colleague, Dr. Watson, who is occasionally good enough to help me -in my cases. Whom have I the honour to address?" - -"You may address me as the Count Von Kramm, a Bohemian nobleman. -I understand that this gentleman, your friend, is a man of honour -and discretion, whom I may trust with a matter of the most -extreme importance. If not, I should much prefer to communicate -with you alone." - -I rose to go, but Holmes caught me by the wrist and pushed me -back into my chair. "It is both, or none," said he. "You may say -before this gentleman anything which you may say to me." - -The Count shrugged his broad shoulders. "Then I must begin," said -he, "by binding you both to absolute secrecy for two years; at -the end of that time the matter will be of no importance. At -present it is not too much to say that it is of such weight it -may have an influence upon European history." - -"I promise," said Holmes. - -"And I." - -"You will excuse this mask," continued our strange visitor. "The -august person who employs me wishes his agent to be unknown to -you, and I may confess at once that the title by which I have -just called myself is not exactly my own." - -"I was aware of it," said Holmes dryly. - -"The circumstances are of great delicacy, and every precaution -has to be taken to quench what might grow to be an immense -scandal and seriously compromise one of the reigning families of -Europe. To speak plainly, the matter implicates the great House -of Ormstein, hereditary kings of Bohemia." - -"I was also aware of that," murmured Holmes, settling himself -down in his armchair and closing his eyes. - -Our visitor glanced with some apparent surprise at the languid, -lounging figure of the man who had been no doubt depicted to him -as the most incisive reasoner and most energetic agent in Europe. -Holmes slowly reopened his eyes and looked impatiently at his -gigantic client. - -"If your Majesty would condescend to state your case," he -remarked, "I should be better able to advise you." - -The man sprang from his chair and paced up and down the room in -uncontrollable agitation. Then, with a gesture of desperation, he -tore the mask from his face and hurled it upon the ground. "You -are right," he cried; "I am the King. Why should I attempt to -conceal it?" - -"Why, indeed?" murmured Holmes. "Your Majesty had not spoken -before I was aware that I was addressing Wilhelm Gottsreich -Sigismond von Ormstein, Grand Duke of Cassel-Felstein, and -hereditary King of Bohemia." - -"But you can understand," said our strange visitor, sitting down -once more and passing his hand over his high white forehead, "you -can understand that I am not accustomed to doing such business in -my own person. Yet the matter was so delicate that I could not -confide it to an agent without putting myself in his power. I -have come incognito from Prague for the purpose of consulting -you." - -"Then, pray consult," said Holmes, shutting his eyes once more. - -"The facts are briefly these: Some five years ago, during a -lengthy visit to Warsaw, I made the acquaintance of the well-known -adventuress, Irene Adler. The name is no doubt familiar to you." - -"Kindly look her up in my index, Doctor," murmured Holmes without -opening his eyes. For many years he had adopted a system of -docketing all paragraphs concerning men and things, so that it -was difficult to name a subject or a person on which he could not -at once furnish information. In this case I found her biography -sandwiched in between that of a Hebrew rabbi and that of a -staff-commander who had written a monograph upon the deep-sea -fishes. - -"Let me see!" said Holmes. "Hum! Born in New Jersey in the year -1858. Contralto--hum! La Scala, hum! Prima donna Imperial Opera -of Warsaw--yes! Retired from operatic stage--ha! Living in -London--quite so! Your Majesty, as I understand, became entangled -with this young person, wrote her some compromising letters, and -is now desirous of getting those letters back." - -"Precisely so. But how--" - -"Was there a secret marriage?" - -"None." - -"No legal papers or certificates?" - -"None." - -"Then I fail to follow your Majesty. If this young person should -produce her letters for blackmailing or other purposes, how is -she to prove their authenticity?" - -"There is the writing." - -"Pooh, pooh! Forgery." - -"My private note-paper." - -"Stolen." - -"My own seal." - -"Imitated." - -"My photograph." - -"Bought." - -"We were both in the photograph." - -"Oh, dear! That is very bad! Your Majesty has indeed committed an -indiscretion." - -"I was mad--insane." - -"You have compromised yourself seriously." - -"I was only Crown Prince then. I was young. I am but thirty now." - -"It must be recovered." - -"We have tried and failed." - -"Your Majesty must pay. It must be bought." - -"She will not sell." - -"Stolen, then." - -"Five attempts have been made. Twice burglars in my pay ransacked -her house. Once we diverted her luggage when she travelled. Twice -she has been waylaid. There has been no result." - -"No sign of it?" - -"Absolutely none." - -Holmes laughed. "It is quite a pretty little problem," said he. - -"But a very serious one to me," returned the King reproachfully. - -"Very, indeed. And what does she propose to do with the -photograph?" - -"To ruin me." - -"But how?" - -"I am about to be married." - -"So I have heard." - -"To Clotilde Lothman von Saxe-Meningen, second daughter of the -King of Scandinavia. You may know the strict principles of her -family. She is herself the very soul of delicacy. A shadow of a -doubt as to my conduct would bring the matter to an end." - -"And Irene Adler?" - -"Threatens to send them the photograph. And she will do it. I -know that she will do it. You do not know her, but she has a soul -of steel. She has the face of the most beautiful of women, and -the mind of the most resolute of men. Rather than I should marry -another woman, there are no lengths to which she would not -go--none." - -"You are sure that she has not sent it yet?" - -"I am sure." - -"And why?" - -"Because she has said that she would send it on the day when the -betrothal was publicly proclaimed. That will be next Monday." - -"Oh, then we have three days yet," said Holmes with a yawn. "That -is very fortunate, as I have one or two matters of importance to -look into just at present. Your Majesty will, of course, stay in -London for the present?" - -"Certainly. You will find me at the Langham under the name of the -Count Von Kramm." - -"Then I shall drop you a line to let you know how we progress." - -"Pray do so. I shall be all anxiety." - -"Then, as to money?" - -"You have carte blanche." - -"Absolutely?" - -"I tell you that I would give one of the provinces of my kingdom -to have that photograph." - -"And for present expenses?" - -The King took a heavy chamois leather bag from under his cloak -and laid it on the table. - -"There are three hundred pounds in gold and seven hundred in -notes," he said. - -Holmes scribbled a receipt upon a sheet of his note-book and -handed it to him. - -"And Mademoiselle's address?" he asked. - -"Is Briony Lodge, Serpentine Avenue, St. John's Wood." - -Holmes took a note of it. "One other question," said he. "Was the -photograph a cabinet?" - -"It was." - -"Then, good-night, your Majesty, and I trust that we shall soon -have some good news for you. And good-night, Watson," he added, -as the wheels of the royal brougham rolled down the street. "If -you will be good enough to call to-morrow afternoon at three -o'clock I should like to chat this little matter over with you." - - -II. - -At three o'clock precisely I was at Baker Street, but Holmes had -not yet returned. The landlady informed me that he had left the -house shortly after eight o'clock in the morning. I sat down -beside the fire, however, with the intention of awaiting him, -however long he might be. I was already deeply interested in his -inquiry, for, though it was surrounded by none of the grim and -strange features which were associated with the two crimes which -I have already recorded, still, the nature of the case and the -exalted station of his client gave it a character of its own. -Indeed, apart from the nature of the investigation which my -friend had on hand, there was something in his masterly grasp of -a situation, and his keen, incisive reasoning, which made it a -pleasure to me to study his system of work, and to follow the -quick, subtle methods by which he disentangled the most -inextricable mysteries. So accustomed was I to his invariable -success that the very possibility of his failing had ceased to -enter into my head. - -It was close upon four before the door opened, and a -drunken-looking groom, ill-kempt and side-whiskered, with an -inflamed face and disreputable clothes, walked into the room. -Accustomed as I was to my friend's amazing powers in the use of -disguises, I had to look three times before I was certain that it -was indeed he. With a nod he vanished into the bedroom, whence he -emerged in five minutes tweed-suited and respectable, as of old. -Putting his hands into his pockets, he stretched out his legs in -front of the fire and laughed heartily for some minutes. - -"Well, really!" he cried, and then he choked and laughed again -until he was obliged to lie back, limp and helpless, in the -chair. - -"What is it?" - -"It's quite too funny. I am sure you could never guess how I -employed my morning, or what I ended by doing." - -"I can't imagine. I suppose that you have been watching the -habits, and perhaps the house, of Miss Irene Adler." - -"Quite so; but the sequel was rather unusual. I will tell you, -however. I left the house a little after eight o'clock this -morning in the character of a groom out of work. There is a -wonderful sympathy and freemasonry among horsey men. Be one of -them, and you will know all that there is to know. I soon found -Briony Lodge. It is a bijou villa, with a garden at the back, but -built out in front right up to the road, two stories. Chubb lock -to the door. Large sitting-room on the right side, well -furnished, with long windows almost to the floor, and those -preposterous English window fasteners which a child could open. -Behind there was nothing remarkable, save that the passage window -could be reached from the top of the coach-house. I walked round -it and examined it closely from every point of view, but without -noting anything else of interest. - -"I then lounged down the street and found, as I expected, that -there was a mews in a lane which runs down by one wall of the -garden. I lent the ostlers a hand in rubbing down their horses, -and received in exchange twopence, a glass of half and half, two -fills of shag tobacco, and as much information as I could desire -about Miss Adler, to say nothing of half a dozen other people in -the neighbourhood in whom I was not in the least interested, but -whose biographies I was compelled to listen to." - -"And what of Irene Adler?" I asked. - -"Oh, she has turned all the men's heads down in that part. She is -the daintiest thing under a bonnet on this planet. So say the -Serpentine-mews, to a man. She lives quietly, sings at concerts, -drives out at five every day, and returns at seven sharp for -dinner. Seldom goes out at other times, except when she sings. -Has only one male visitor, but a good deal of him. He is dark, -handsome, and dashing, never calls less than once a day, and -often twice. He is a Mr. Godfrey Norton, of the Inner Temple. See -the advantages of a cabman as a confidant. They had driven him -home a dozen times from Serpentine-mews, and knew all about him. -When I had listened to all they had to tell, I began to walk up -and down near Briony Lodge once more, and to think over my plan -of campaign. - -"This Godfrey Norton was evidently an important factor in the -matter. He was a lawyer. That sounded ominous. What was the -relation between them, and what the object of his repeated -visits? Was she his client, his friend, or his mistress? If the -former, she had probably transferred the photograph to his -keeping. If the latter, it was less likely. On the issue of this -question depended whether I should continue my work at Briony -Lodge, or turn my attention to the gentleman's chambers in the -Temple. It was a delicate point, and it widened the field of my -inquiry. I fear that I bore you with these details, but I have to -let you see my little difficulties, if you are to understand the -situation." - -"I am following you closely," I answered. - -"I was still balancing the matter in my mind when a hansom cab -drove up to Briony Lodge, and a gentleman sprang out. He was a -remarkably handsome man, dark, aquiline, and moustached--evidently -the man of whom I had heard. He appeared to be in a -great hurry, shouted to the cabman to wait, and brushed past the -maid who opened the door with the air of a man who was thoroughly -at home. - -"He was in the house about half an hour, and I could catch -glimpses of him in the windows of the sitting-room, pacing up and -down, talking excitedly, and waving his arms. Of her I could see -nothing. Presently he emerged, looking even more flurried than -before. As he stepped up to the cab, he pulled a gold watch from -his pocket and looked at it earnestly, 'Drive like the devil,' he -shouted, 'first to Gross & Hankey's in Regent Street, and then to -the Church of St. Monica in the Edgeware Road. Half a guinea if -you do it in twenty minutes!' - -"Away they went, and I was just wondering whether I should not do -well to follow them when up the lane came a neat little landau, -the coachman with his coat only half-buttoned, and his tie under -his ear, while all the tags of his harness were sticking out of -the buckles. It hadn't pulled up before she shot out of the hall -door and into it. I only caught a glimpse of her at the moment, -but she was a lovely woman, with a face that a man might die for. - -"'The Church of St. Monica, John,' she cried, 'and half a -sovereign if you reach it in twenty minutes.' - -"This was quite too good to lose, Watson. I was just balancing -whether I should run for it, or whether I should perch behind her -landau when a cab came through the street. The driver looked -twice at such a shabby fare, but I jumped in before he could -object. 'The Church of St. Monica,' said I, 'and half a sovereign -if you reach it in twenty minutes.' It was twenty-five minutes to -twelve, and of course it was clear enough what was in the wind. - -"My cabby drove fast. I don't think I ever drove faster, but the -others were there before us. The cab and the landau with their -steaming horses were in front of the door when I arrived. I paid -the man and hurried into the church. There was not a soul there -save the two whom I had followed and a surpliced clergyman, who -seemed to be expostulating with them. They were all three -standing in a knot in front of the altar. I lounged up the side -aisle like any other idler who has dropped into a church. -Suddenly, to my surprise, the three at the altar faced round to -me, and Godfrey Norton came running as hard as he could towards -me. - -"'Thank God,' he cried. 'You'll do. Come! Come!' - -"'What then?' I asked. - -"'Come, man, come, only three minutes, or it won't be legal.' - -"I was half-dragged up to the altar, and before I knew where I was -I found myself mumbling responses which were whispered in my ear, -and vouching for things of which I knew nothing, and generally -assisting in the secure tying up of Irene Adler, spinster, to -Godfrey Norton, bachelor. It was all done in an instant, and -there was the gentleman thanking me on the one side and the lady -on the other, while the clergyman beamed on me in front. It was -the most preposterous position in which I ever found myself in my -life, and it was the thought of it that started me laughing just -now. It seems that there had been some informality about their -license, that the clergyman absolutely refused to marry them -without a witness of some sort, and that my lucky appearance -saved the bridegroom from having to sally out into the streets in -search of a best man. The bride gave me a sovereign, and I mean -to wear it on my watch-chain in memory of the occasion." - -"This is a very unexpected turn of affairs," said I; "and what -then?" - -"Well, I found my plans very seriously menaced. It looked as if -the pair might take an immediate departure, and so necessitate -very prompt and energetic measures on my part. At the church -door, however, they separated, he driving back to the Temple, and -she to her own house. 'I shall drive out in the park at five as -usual,' she said as she left him. I heard no more. They drove -away in different directions, and I went off to make my own -arrangements." - -"Which are?" - -"Some cold beef and a glass of beer," he answered, ringing the -bell. "I have been too busy to think of food, and I am likely to -be busier still this evening. By the way, Doctor, I shall want -your co-operation." - -"I shall be delighted." - -"You don't mind breaking the law?" - -"Not in the least." - -"Nor running a chance of arrest?" - -"Not in a good cause." - -"Oh, the cause is excellent!" - -"Then I am your man." - -"I was sure that I might rely on you." - -"But what is it you wish?" - -"When Mrs. Turner has brought in the tray I will make it clear to -you. Now," he said as he turned hungrily on the simple fare that -our landlady had provided, "I must discuss it while I eat, for I -have not much time. It is nearly five now. In two hours we must -be on the scene of action. Miss Irene, or Madame, rather, returns -from her drive at seven. We must be at Briony Lodge to meet her." - -"And what then?" - -"You must leave that to me. I have already arranged what is to -occur. There is only one point on which I must insist. You must -not interfere, come what may. You understand?" - -"I am to be neutral?" - -"To do nothing whatever. There will probably be some small -unpleasantness. Do not join in it. It will end in my being -conveyed into the house. Four or five minutes afterwards the -sitting-room window will open. You are to station yourself close -to that open window." - -"Yes." - -"You are to watch me, for I will be visible to you." - -"Yes." - -"And when I raise my hand--so--you will throw into the room what -I give you to throw, and will, at the same time, raise the cry of -fire. You quite follow me?" - -"Entirely." - -"It is nothing very formidable," he said, taking a long cigar-shaped -roll from his pocket. "It is an ordinary plumber's smoke-rocket, -fitted with a cap at either end to make it self-lighting. -Your task is confined to that. When you raise your cry of fire, -it will be taken up by quite a number of people. You may then -walk to the end of the street, and I will rejoin you in ten -minutes. I hope that I have made myself clear?" - -"I am to remain neutral, to get near the window, to watch you, -and at the signal to throw in this object, then to raise the cry -of fire, and to wait you at the corner of the street." - -"Precisely." - -"Then you may entirely rely on me." - -"That is excellent. I think, perhaps, it is almost time that I -prepare for the new role I have to play." - -He disappeared into his bedroom and returned in a few minutes in -the character of an amiable and simple-minded Nonconformist -clergyman. His broad black hat, his baggy trousers, his white -tie, his sympathetic smile, and general look of peering and -benevolent curiosity were such as Mr. John Hare alone could have -equalled. It was not merely that Holmes changed his costume. His -expression, his manner, his very soul seemed to vary with every -fresh part that he assumed. The stage lost a fine actor, even as -science lost an acute reasoner, when he became a specialist in -crime. - -It was a quarter past six when we left Baker Street, and it still -wanted ten minutes to the hour when we found ourselves in -Serpentine Avenue. It was already dusk, and the lamps were just -being lighted as we paced up and down in front of Briony Lodge, -waiting for the coming of its occupant. The house was just such -as I had pictured it from Sherlock Holmes' succinct description, -but the locality appeared to be less private than I expected. On -the contrary, for a small street in a quiet neighbourhood, it was -remarkably animated. There was a group of shabbily dressed men -smoking and laughing in a corner, a scissors-grinder with his -wheel, two guardsmen who were flirting with a nurse-girl, and -several well-dressed young men who were lounging up and down with -cigars in their mouths. - -"You see," remarked Holmes, as we paced to and fro in front of -the house, "this marriage rather simplifies matters. The -photograph becomes a double-edged weapon now. The chances are -that she would be as averse to its being seen by Mr. Godfrey -Norton, as our client is to its coming to the eyes of his -princess. Now the question is, Where are we to find the -photograph?" - -"Where, indeed?" - -"It is most unlikely that she carries it about with her. It is -cabinet size. Too large for easy concealment about a woman's -dress. She knows that the King is capable of having her waylaid -and searched. Two attempts of the sort have already been made. We -may take it, then, that she does not carry it about with her." - -"Where, then?" - -"Her banker or her lawyer. There is that double possibility. But -I am inclined to think neither. Women are naturally secretive, -and they like to do their own secreting. Why should she hand it -over to anyone else? She could trust her own guardianship, but -she could not tell what indirect or political influence might be -brought to bear upon a business man. Besides, remember that she -had resolved to use it within a few days. It must be where she -can lay her hands upon it. It must be in her own house." - -"But it has twice been burgled." - -"Pshaw! They did not know how to look." - -"But how will you look?" - -"I will not look." - -"What then?" - -"I will get her to show me." - -"But she will refuse." - -"She will not be able to. But I hear the rumble of wheels. It is -her carriage. Now carry out my orders to the letter." - -As he spoke the gleam of the side-lights of a carriage came round -the curve of the avenue. It was a smart little landau which -rattled up to the door of Briony Lodge. As it pulled up, one of -the loafing men at the corner dashed forward to open the door in -the hope of earning a copper, but was elbowed away by another -loafer, who had rushed up with the same intention. A fierce -quarrel broke out, which was increased by the two guardsmen, who -took sides with one of the loungers, and by the scissors-grinder, -who was equally hot upon the other side. A blow was struck, and -in an instant the lady, who had stepped from her carriage, was -the centre of a little knot of flushed and struggling men, who -struck savagely at each other with their fists and sticks. Holmes -dashed into the crowd to protect the lady; but just as he reached -her he gave a cry and dropped to the ground, with the blood -running freely down his face. At his fall the guardsmen took to -their heels in one direction and the loungers in the other, while -a number of better-dressed people, who had watched the scuffle -without taking part in it, crowded in to help the lady and to -attend to the injured man. Irene Adler, as I will still call her, -had hurried up the steps; but she stood at the top with her -superb figure outlined against the lights of the hall, looking -back into the street. - -"Is the poor gentleman much hurt?" she asked. - -"He is dead," cried several voices. - -"No, no, there's life in him!" shouted another. "But he'll be -gone before you can get him to hospital." - -"He's a brave fellow," said a woman. "They would have had the -lady's purse and watch if it hadn't been for him. They were a -gang, and a rough one, too. Ah, he's breathing now." - -"He can't lie in the street. May we bring him in, marm?" - -"Surely. Bring him into the sitting-room. There is a comfortable -sofa. This way, please!" - -Slowly and solemnly he was borne into Briony Lodge and laid out -in the principal room, while I still observed the proceedings -from my post by the window. The lamps had been lit, but the -blinds had not been drawn, so that I could see Holmes as he lay -upon the couch. I do not know whether he was seized with -compunction at that moment for the part he was playing, but I -know that I never felt more heartily ashamed of myself in my life -than when I saw the beautiful creature against whom I was -conspiring, or the grace and kindliness with which she waited -upon the injured man. And yet it would be the blackest treachery -to Holmes to draw back now from the part which he had intrusted -to me. I hardened my heart, and took the smoke-rocket from under -my ulster. After all, I thought, we are not injuring her. We are -but preventing her from injuring another. - -Holmes had sat up upon the couch, and I saw him motion like a man -who is in need of air. A maid rushed across and threw open the -window. At the same instant I saw him raise his hand and at the -signal I tossed my rocket into the room with a cry of "Fire!" The -word was no sooner out of my mouth than the whole crowd of -spectators, well dressed and ill--gentlemen, ostlers, and -servant-maids--joined in a general shriek of "Fire!" Thick clouds -of smoke curled through the room and out at the open window. I -caught a glimpse of rushing figures, and a moment later the voice -of Holmes from within assuring them that it was a false alarm. -Slipping through the shouting crowd I made my way to the corner -of the street, and in ten minutes was rejoiced to find my -friend's arm in mine, and to get away from the scene of uproar. -He walked swiftly and in silence for some few minutes until we -had turned down one of the quiet streets which lead towards the -Edgeware Road. - -"You did it very nicely, Doctor," he remarked. "Nothing could -have been better. It is all right." - -"You have the photograph?" - -"I know where it is." - -"And how did you find out?" - -"She showed me, as I told you she would." - -"I am still in the dark." - -"I do not wish to make a mystery," said he, laughing. "The matter -was perfectly simple. You, of course, saw that everyone in the -street was an accomplice. They were all engaged for the evening." - -"I guessed as much." - -"Then, when the row broke out, I had a little moist red paint in -the palm of my hand. I rushed forward, fell down, clapped my hand -to my face, and became a piteous spectacle. It is an old trick." - -"That also I could fathom." - -"Then they carried me in. She was bound to have me in. What else -could she do? And into her sitting-room, which was the very room -which I suspected. It lay between that and her bedroom, and I was -determined to see which. They laid me on a couch, I motioned for -air, they were compelled to open the window, and you had your -chance." - -"How did that help you?" - -"It was all-important. When a woman thinks that her house is on -fire, her instinct is at once to rush to the thing which she -values most. It is a perfectly overpowering impulse, and I have -more than once taken advantage of it. In the case of the -Darlington substitution scandal it was of use to me, and also in -the Arnsworth Castle business. A married woman grabs at her baby; -an unmarried one reaches for her jewel-box. Now it was clear to -me that our lady of to-day had nothing in the house more precious -to her than what we are in quest of. She would rush to secure it. -The alarm of fire was admirably done. The smoke and shouting were -enough to shake nerves of steel. She responded beautifully. The -photograph is in a recess behind a sliding panel just above the -right bell-pull. She was there in an instant, and I caught a -glimpse of it as she half-drew it out. When I cried out that it -was a false alarm, she replaced it, glanced at the rocket, rushed -from the room, and I have not seen her since. I rose, and, making -my excuses, escaped from the house. I hesitated whether to -attempt to secure the photograph at once; but the coachman had -come in, and as he was watching me narrowly it seemed safer to -wait. A little over-precipitance may ruin all." - -"And now?" I asked. - -"Our quest is practically finished. I shall call with the King -to-morrow, and with you, if you care to come with us. We will be -shown into the sitting-room to wait for the lady, but it is -probable that when she comes she may find neither us nor the -photograph. It might be a satisfaction to his Majesty to regain -it with his own hands." - -"And when will you call?" - -"At eight in the morning. She will not be up, so that we shall -have a clear field. Besides, we must be prompt, for this marriage -may mean a complete change in her life and habits. I must wire to -the King without delay." - -We had reached Baker Street and had stopped at the door. He was -searching his pockets for the key when someone passing said: - -"Good-night, Mister Sherlock Holmes." - -There were several people on the pavement at the time, but the -greeting appeared to come from a slim youth in an ulster who had -hurried by. - -"I've heard that voice before," said Holmes, staring down the -dimly lit street. "Now, I wonder who the deuce that could have -been." - - -III. - -I slept at Baker Street that night, and we were engaged upon our -toast and coffee in the morning when the King of Bohemia rushed -into the room. - -"You have really got it!" he cried, grasping Sherlock Holmes by -either shoulder and looking eagerly into his face. - -"Not yet." - -"But you have hopes?" - -"I have hopes." - -"Then, come. I am all impatience to be gone." - -"We must have a cab." - -"No, my brougham is waiting." - -"Then that will simplify matters." We descended and started off -once more for Briony Lodge. - -"Irene Adler is married," remarked Holmes. - -"Married! When?" - -"Yesterday." - -"But to whom?" - -"To an English lawyer named Norton." - -"But she could not love him." - -"I am in hopes that she does." - -"And why in hopes?" - -"Because it would spare your Majesty all fear of future -annoyance. If the lady loves her husband, she does not love your -Majesty. If she does not love your Majesty, there is no reason -why she should interfere with your Majesty's plan." - -"It is true. And yet--Well! I wish she had been of my own -station! What a queen she would have made!" He relapsed into a -moody silence, which was not broken until we drew up in -Serpentine Avenue. - -The door of Briony Lodge was open, and an elderly woman stood -upon the steps. She watched us with a sardonic eye as we stepped -from the brougham. - -"Mr. Sherlock Holmes, I believe?" said she. - -"I am Mr. Holmes," answered my companion, looking at her with a -questioning and rather startled gaze. - -"Indeed! My mistress told me that you were likely to call. She -left this morning with her husband by the 5:15 train from Charing -Cross for the Continent." - -"What!" Sherlock Holmes staggered back, white with chagrin and -surprise. "Do you mean that she has left England?" - -"Never to return." - -"And the papers?" asked the King hoarsely. "All is lost." - -"We shall see." He pushed past the servant and rushed into the -drawing-room, followed by the King and myself. The furniture was -scattered about in every direction, with dismantled shelves and -open drawers, as if the lady had hurriedly ransacked them before -her flight. Holmes rushed at the bell-pull, tore back a small -sliding shutter, and, plunging in his hand, pulled out a -photograph and a letter. The photograph was of Irene Adler -herself in evening dress, the letter was superscribed to -"Sherlock Holmes, Esq. To be left till called for." My friend -tore it open and we all three read it together. It was dated at -midnight of the preceding night and ran in this way: - -"MY DEAR MR. SHERLOCK HOLMES,--You really did it very well. You -took me in completely. Until after the alarm of fire, I had not a -suspicion. But then, when I found how I had betrayed myself, I -began to think. I had been warned against you months ago. I had -been told that if the King employed an agent it would certainly -be you. And your address had been given me. Yet, with all this, -you made me reveal what you wanted to know. Even after I became -suspicious, I found it hard to think evil of such a dear, kind -old clergyman. But, you know, I have been trained as an actress -myself. Male costume is nothing new to me. I often take advantage -of the freedom which it gives. I sent John, the coachman, to -watch you, ran up stairs, got into my walking-clothes, as I call -them, and came down just as you departed. - -"Well, I followed you to your door, and so made sure that I was -really an object of interest to the celebrated Mr. Sherlock -Holmes. Then I, rather imprudently, wished you good-night, and -started for the Temple to see my husband. - -"We both thought the best resource was flight, when pursued by -so formidable an antagonist; so you will find the nest empty when -you call to-morrow. As to the photograph, your client may rest in -peace. I love and am loved by a better man than he. The King may -do what he will without hindrance from one whom he has cruelly -wronged. I keep it only to safeguard myself, and to preserve a -weapon which will always secure me from any steps which he might -take in the future. I leave a photograph which he might care to -possess; and I remain, dear Mr. Sherlock Holmes, - - "Very truly yours, - "IRENE NORTON, ne ADLER." - -"What a woman--oh, what a woman!" cried the King of Bohemia, when -we had all three read this epistle. "Did I not tell you how quick -and resolute she was? Would she not have made an admirable queen? -Is it not a pity that she was not on my level?" - -"From what I have seen of the lady she seems indeed to be on a -very different level to your Majesty," said Holmes coldly. "I am -sorry that I have not been able to bring your Majesty's business -to a more successful conclusion." - -"On the contrary, my dear sir," cried the King; "nothing could be -more successful. I know that her word is inviolate. The -photograph is now as safe as if it were in the fire." - -"I am glad to hear your Majesty say so." - -"I am immensely indebted to you. Pray tell me in what way I can -reward you. This ring--" He slipped an emerald snake ring from -his finger and held it out upon the palm of his hand. - -"Your Majesty has something which I should value even more -highly," said Holmes. - -"You have but to name it." - -"This photograph!" - -The King stared at him in amazement. - -"Irene's photograph!" he cried. "Certainly, if you wish it." - -"I thank your Majesty. Then there is no more to be done in the -matter. I have the honour to wish you a very good-morning." He -bowed, and, turning away without observing the hand which the -King had stretched out to him, he set off in my company for his -chambers. - -And that was how a great scandal threatened to affect the kingdom -of Bohemia, and how the best plans of Mr. Sherlock Holmes were -beaten by a woman's wit. He used to make merry over the -cleverness of women, but I have not heard him do it of late. And -when he speaks of Irene Adler, or when he refers to her -photograph, it is always under the honourable title of the woman. - - - -ADVENTURE II. THE RED-HEADED LEAGUE - -I had called upon my friend, Mr. Sherlock Holmes, one day in the -autumn of last year and found him in deep conversation with a -very stout, florid-faced, elderly gentleman with fiery red hair. -With an apology for my intrusion, I was about to withdraw when -Holmes pulled me abruptly into the room and closed the door -behind me. - -"You could not possibly have come at a better time, my dear -Watson," he said cordially. - -"I was afraid that you were engaged." - -"So I am. Very much so." - -"Then I can wait in the next room." - -"Not at all. This gentleman, Mr. Wilson, has been my partner and -helper in many of my most successful cases, and I have no -doubt that he will be of the utmost use to me in yours also." - -The stout gentleman half rose from his chair and gave a bob of -greeting, with a quick little questioning glance from his small -fat-encircled eyes. - -"Try the settee," said Holmes, relapsing into his armchair and -putting his fingertips together, as was his custom when in -judicial moods. "I know, my dear Watson, that you share my love -of all that is bizarre and outside the conventions and humdrum -routine of everyday life. You have shown your relish for it by -the enthusiasm which has prompted you to chronicle, and, if you -will excuse my saying so, somewhat to embellish so many of my own -little adventures." - -"Your cases have indeed been of the greatest interest to me," I -observed. - -"You will remember that I remarked the other day, just before we -went into the very simple problem presented by Miss Mary -Sutherland, that for strange effects and extraordinary -combinations we must go to life itself, which is always far more -daring than any effort of the imagination." - -"A proposition which I took the liberty of doubting." - -"You did, Doctor, but none the less you must come round to my -view, for otherwise I shall keep on piling fact upon fact on you -until your reason breaks down under them and acknowledges me to -be right. Now, Mr. Jabez Wilson here has been good enough to call -upon me this morning, and to begin a narrative which promises to -be one of the most singular which I have listened to for some -time. You have heard me remark that the strangest and most unique -things are very often connected not with the larger but with the -smaller crimes, and occasionally, indeed, where there is room for -doubt whether any positive crime has been committed. As far as I -have heard it is impossible for me to say whether the present -case is an instance of crime or not, but the course of events is -certainly among the most singular that I have ever listened to. -Perhaps, Mr. Wilson, you would have the great kindness to -recommence your narrative. I ask you not merely because my friend -Dr. Watson has not heard the opening part but also because the -peculiar nature of the story makes me anxious to have every -possible detail from your lips. As a rule, when I have heard some -slight indication of the course of events, I am able to guide -myself by the thousands of other similar cases which occur to my -memory. In the present instance I am forced to admit that the -facts are, to the best of my belief, unique." - -The portly client puffed out his chest with an appearance of some -little pride and pulled a dirty and wrinkled newspaper from the -inside pocket of his greatcoat. As he glanced down the -advertisement column, with his head thrust forward and the paper -flattened out upon his knee, I took a good look at the man and -endeavoured, after the fashion of my companion, to read the -indications which might be presented by his dress or appearance. - -I did not gain very much, however, by my inspection. Our visitor -bore every mark of being an average commonplace British -tradesman, obese, pompous, and slow. He wore rather baggy grey -shepherd's check trousers, a not over-clean black frock-coat, -unbuttoned in the front, and a drab waistcoat with a heavy brassy -Albert chain, and a square pierced bit of metal dangling down as -an ornament. A frayed top-hat and a faded brown overcoat with a -wrinkled velvet collar lay upon a chair beside him. Altogether, -look as I would, there was nothing remarkable about the man save -his blazing red head, and the expression of extreme chagrin and -discontent upon his features. - -Sherlock Holmes' quick eye took in my occupation, and he shook -his head with a smile as he noticed my questioning glances. -"Beyond the obvious facts that he has at some time done manual -labour, that he takes snuff, that he is a Freemason, that he has -been in China, and that he has done a considerable amount of -writing lately, I can deduce nothing else." - -Mr. Jabez Wilson started up in his chair, with his forefinger -upon the paper, but his eyes upon my companion. - -"How, in the name of good-fortune, did you know all that, Mr. -Holmes?" he asked. "How did you know, for example, that I did -manual labour. It's as true as gospel, for I began as a ship's -carpenter." - -"Your hands, my dear sir. Your right hand is quite a size larger -than your left. You have worked with it, and the muscles are more -developed." - -"Well, the snuff, then, and the Freemasonry?" - -"I won't insult your intelligence by telling you how I read that, -especially as, rather against the strict rules of your order, you -use an arc-and-compass breastpin." - -"Ah, of course, I forgot that. But the writing?" - -"What else can be indicated by that right cuff so very shiny for -five inches, and the left one with the smooth patch near the -elbow where you rest it upon the desk?" - -"Well, but China?" - -"The fish that you have tattooed immediately above your right -wrist could only have been done in China. I have made a small -study of tattoo marks and have even contributed to the literature -of the subject. That trick of staining the fishes' scales of a -delicate pink is quite peculiar to China. When, in addition, I -see a Chinese coin hanging from your watch-chain, the matter -becomes even more simple." - -Mr. Jabez Wilson laughed heavily. "Well, I never!" said he. "I -thought at first that you had done something clever, but I see -that there was nothing in it, after all." - -"I begin to think, Watson," said Holmes, "that I make a mistake -in explaining. 'Omne ignotum pro magnifico,' you know, and my -poor little reputation, such as it is, will suffer shipwreck if I -am so candid. Can you not find the advertisement, Mr. Wilson?" - -"Yes, I have got it now," he answered with his thick red finger -planted halfway down the column. "Here it is. This is what began -it all. You just read it for yourself, sir." - -I took the paper from him and read as follows: - -"TO THE RED-HEADED LEAGUE: On account of the bequest of the late -Ezekiah Hopkins, of Lebanon, Pennsylvania, U. S. A., there is now -another vacancy open which entitles a member of the League to a -salary of 4 pounds a week for purely nominal services. All -red-headed men who are sound in body and mind and above the age -of twenty-one years, are eligible. Apply in person on Monday, at -eleven o'clock, to Duncan Ross, at the offices of the League, 7 -Pope's Court, Fleet Street." - -"What on earth does this mean?" I ejaculated after I had twice -read over the extraordinary announcement. - -Holmes chuckled and wriggled in his chair, as was his habit when -in high spirits. "It is a little off the beaten track, isn't it?" -said he. "And now, Mr. Wilson, off you go at scratch and tell us -all about yourself, your household, and the effect which this -advertisement had upon your fortunes. You will first make a note, -Doctor, of the paper and the date." - -"It is The Morning Chronicle of April 27, 1890. Just two months -ago." - -"Very good. Now, Mr. Wilson?" - -"Well, it is just as I have been telling you, Mr. Sherlock -Holmes," said Jabez Wilson, mopping his forehead; "I have a small -pawnbroker's business at Coburg Square, near the City. It's not a -very large affair, and of late years it has not done more than -just give me a living. I used to be able to keep two assistants, -but now I only keep one; and I would have a job to pay him but -that he is willing to come for half wages so as to learn the -business." - -"What is the name of this obliging youth?" asked Sherlock Holmes. - -"His name is Vincent Spaulding, and he's not such a youth, -either. It's hard to say his age. I should not wish a smarter -assistant, Mr. Holmes; and I know very well that he could better -himself and earn twice what I am able to give him. But, after -all, if he is satisfied, why should I put ideas in his head?" - -"Why, indeed? You seem most fortunate in having an employ who -comes under the full market price. It is not a common experience -among employers in this age. I don't know that your assistant is -not as remarkable as your advertisement." - -"Oh, he has his faults, too," said Mr. Wilson. "Never was such a -fellow for photography. Snapping away with a camera when he ought -to be improving his mind, and then diving down into the cellar -like a rabbit into its hole to develop his pictures. That is his -main fault, but on the whole he's a good worker. There's no vice -in him." - -"He is still with you, I presume?" - -"Yes, sir. He and a girl of fourteen, who does a bit of simple -cooking and keeps the place clean--that's all I have in the -house, for I am a widower and never had any family. We live very -quietly, sir, the three of us; and we keep a roof over our heads -and pay our debts, if we do nothing more. - -"The first thing that put us out was that advertisement. -Spaulding, he came down into the office just this day eight -weeks, with this very paper in his hand, and he says: - -"'I wish to the Lord, Mr. Wilson, that I was a red-headed man.' - -"'Why that?' I asks. - -"'Why,' says he, 'here's another vacancy on the League of the -Red-headed Men. It's worth quite a little fortune to any man who -gets it, and I understand that there are more vacancies than -there are men, so that the trustees are at their wits' end what -to do with the money. If my hair would only change colour, here's -a nice little crib all ready for me to step into.' - -"'Why, what is it, then?' I asked. You see, Mr. Holmes, I am a -very stay-at-home man, and as my business came to me instead of -my having to go to it, I was often weeks on end without putting -my foot over the door-mat. In that way I didn't know much of what -was going on outside, and I was always glad of a bit of news. - -"'Have you never heard of the League of the Red-headed Men?' he -asked with his eyes open. - -"'Never.' - -"'Why, I wonder at that, for you are eligible yourself for one -of the vacancies.' - -"'And what are they worth?' I asked. - -"'Oh, merely a couple of hundred a year, but the work is slight, -and it need not interfere very much with one's other -occupations.' - -"Well, you can easily think that that made me prick up my ears, -for the business has not been over-good for some years, and an -extra couple of hundred would have been very handy. - -"'Tell me all about it,' said I. - -"'Well,' said he, showing me the advertisement, 'you can see for -yourself that the League has a vacancy, and there is the address -where you should apply for particulars. As far as I can make out, -the League was founded by an American millionaire, Ezekiah -Hopkins, who was very peculiar in his ways. He was himself -red-headed, and he had a great sympathy for all red-headed men; -so when he died it was found that he had left his enormous -fortune in the hands of trustees, with instructions to apply the -interest to the providing of easy berths to men whose hair is of -that colour. From all I hear it is splendid pay and very little to -do.' - -"'But,' said I, 'there would be millions of red-headed men who -would apply.' - -"'Not so many as you might think,' he answered. 'You see it is -really confined to Londoners, and to grown men. This American had -started from London when he was young, and he wanted to do the -old town a good turn. Then, again, I have heard it is no use your -applying if your hair is light red, or dark red, or anything but -real bright, blazing, fiery red. Now, if you cared to apply, Mr. -Wilson, you would just walk in; but perhaps it would hardly be -worth your while to put yourself out of the way for the sake of a -few hundred pounds.' - -"Now, it is a fact, gentlemen, as you may see for yourselves, -that my hair is of a very full and rich tint, so that it seemed -to me that if there was to be any competition in the matter I -stood as good a chance as any man that I had ever met. Vincent -Spaulding seemed to know so much about it that I thought he might -prove useful, so I just ordered him to put up the shutters for -the day and to come right away with me. He was very willing to -have a holiday, so we shut the business up and started off for -the address that was given us in the advertisement. - -"I never hope to see such a sight as that again, Mr. Holmes. From -north, south, east, and west every man who had a shade of red in -his hair had tramped into the city to answer the advertisement. -Fleet Street was choked with red-headed folk, and Pope's Court -looked like a coster's orange barrow. I should not have thought -there were so many in the whole country as were brought together -by that single advertisement. Every shade of colour they -were--straw, lemon, orange, brick, Irish-setter, liver, clay; -but, as Spaulding said, there were not many who had the real -vivid flame-coloured tint. When I saw how many were waiting, I -would have given it up in despair; but Spaulding would not hear -of it. How he did it I could not imagine, but he pushed and -pulled and butted until he got me through the crowd, and right up -to the steps which led to the office. There was a double stream -upon the stair, some going up in hope, and some coming back -dejected; but we wedged in as well as we could and soon found -ourselves in the office." - -"Your experience has been a most entertaining one," remarked -Holmes as his client paused and refreshed his memory with a huge -pinch of snuff. "Pray continue your very interesting statement." - -"There was nothing in the office but a couple of wooden chairs -and a deal table, behind which sat a small man with a head that -was even redder than mine. He said a few words to each candidate -as he came up, and then he always managed to find some fault in -them which would disqualify them. Getting a vacancy did not seem -to be such a very easy matter, after all. However, when our turn -came the little man was much more favourable to me than to any of -the others, and he closed the door as we entered, so that he -might have a private word with us. - -"'This is Mr. Jabez Wilson,' said my assistant, 'and he is -willing to fill a vacancy in the League.' - -"'And he is admirably suited for it,' the other answered. 'He has -every requirement. I cannot recall when I have seen anything so -fine.' He took a step backward, cocked his head on one side, and -gazed at my hair until I felt quite bashful. Then suddenly he -plunged forward, wrung my hand, and congratulated me warmly on my -success. - -"'It would be injustice to hesitate,' said he. 'You will, -however, I am sure, excuse me for taking an obvious precaution.' -With that he seized my hair in both his hands, and tugged until I -yelled with the pain. 'There is water in your eyes,' said he as -he released me. 'I perceive that all is as it should be. But we -have to be careful, for we have twice been deceived by wigs and -once by paint. I could tell you tales of cobbler's wax which -would disgust you with human nature.' He stepped over to the -window and shouted through it at the top of his voice that the -vacancy was filled. A groan of disappointment came up from below, -and the folk all trooped away in different directions until there -was not a red-head to be seen except my own and that of the -manager. - -"'My name,' said he, 'is Mr. Duncan Ross, and I am myself one of -the pensioners upon the fund left by our noble benefactor. Are -you a married man, Mr. Wilson? Have you a family?' - -"I answered that I had not. - -"His face fell immediately. - -"'Dear me!' he said gravely, 'that is very serious indeed! I am -sorry to hear you say that. The fund was, of course, for the -propagation and spread of the red-heads as well as for their -maintenance. It is exceedingly unfortunate that you should be a -bachelor.' - -"My face lengthened at this, Mr. Holmes, for I thought that I was -not to have the vacancy after all; but after thinking it over for -a few minutes he said that it would be all right. - -"'In the case of another,' said he, 'the objection might be -fatal, but we must stretch a point in favour of a man with such a -head of hair as yours. When shall you be able to enter upon your -new duties?' - -"'Well, it is a little awkward, for I have a business already,' -said I. - -"'Oh, never mind about that, Mr. Wilson!' said Vincent Spaulding. -'I should be able to look after that for you.' - -"'What would be the hours?' I asked. - -"'Ten to two.' - -"Now a pawnbroker's business is mostly done of an evening, Mr. -Holmes, especially Thursday and Friday evening, which is just -before pay-day; so it would suit me very well to earn a little in -the mornings. Besides, I knew that my assistant was a good man, -and that he would see to anything that turned up. - -"'That would suit me very well,' said I. 'And the pay?' - -"'Is 4 pounds a week.' - -"'And the work?' - -"'Is purely nominal.' - -"'What do you call purely nominal?' - -"'Well, you have to be in the office, or at least in the -building, the whole time. If you leave, you forfeit your whole -position forever. The will is very clear upon that point. You -don't comply with the conditions if you budge from the office -during that time.' - -"'It's only four hours a day, and I should not think of leaving,' -said I. - -"'No excuse will avail,' said Mr. Duncan Ross; 'neither sickness -nor business nor anything else. There you must stay, or you lose -your billet.' - -"'And the work?' - -"'Is to copy out the "Encyclopaedia Britannica." There is the first -volume of it in that press. You must find your own ink, pens, and -blotting-paper, but we provide this table and chair. Will you be -ready to-morrow?' - -"'Certainly,' I answered. - -"'Then, good-bye, Mr. Jabez Wilson, and let me congratulate you -once more on the important position which you have been fortunate -enough to gain.' He bowed me out of the room and I went home with -my assistant, hardly knowing what to say or do, I was so pleased -at my own good fortune. - -"Well, I thought over the matter all day, and by evening I was in -low spirits again; for I had quite persuaded myself that the -whole affair must be some great hoax or fraud, though what its -object might be I could not imagine. It seemed altogether past -belief that anyone could make such a will, or that they would pay -such a sum for doing anything so simple as copying out the -'Encyclopaedia Britannica.' Vincent Spaulding did what he could to -cheer me up, but by bedtime I had reasoned myself out of the -whole thing. However, in the morning I determined to have a look -at it anyhow, so I bought a penny bottle of ink, and with a -quill-pen, and seven sheets of foolscap paper, I started off for -Pope's Court. - -"Well, to my surprise and delight, everything was as right as -possible. The table was set out ready for me, and Mr. Duncan Ross -was there to see that I got fairly to work. He started me off -upon the letter A, and then he left me; but he would drop in from -time to time to see that all was right with me. At two o'clock he -bade me good-day, complimented me upon the amount that I had -written, and locked the door of the office after me. - -"This went on day after day, Mr. Holmes, and on Saturday the -manager came in and planked down four golden sovereigns for my -week's work. It was the same next week, and the same the week -after. Every morning I was there at ten, and every afternoon I -left at two. By degrees Mr. Duncan Ross took to coming in only -once of a morning, and then, after a time, he did not come in at -all. Still, of course, I never dared to leave the room for an -instant, for I was not sure when he might come, and the billet -was such a good one, and suited me so well, that I would not risk -the loss of it. - -"Eight weeks passed away like this, and I had written about -Abbots and Archery and Armour and Architecture and Attica, and -hoped with diligence that I might get on to the B's before very -long. It cost me something in foolscap, and I had pretty nearly -filled a shelf with my writings. And then suddenly the whole -business came to an end." - -"To an end?" - -"Yes, sir. And no later than this morning. I went to my work as -usual at ten o'clock, but the door was shut and locked, with a -little square of cardboard hammered on to the middle of the -panel with a tack. Here it is, and you can read for yourself." - -He held up a piece of white cardboard about the size of a sheet -of note-paper. It read in this fashion: - - THE RED-HEADED LEAGUE - - IS - - DISSOLVED. - - October 9, 1890. - -Sherlock Holmes and I surveyed this curt announcement and the -rueful face behind it, until the comical side of the affair so -completely overtopped every other consideration that we both -burst out into a roar of laughter. - -"I cannot see that there is anything very funny," cried our -client, flushing up to the roots of his flaming head. "If you can -do nothing better than laugh at me, I can go elsewhere." - -"No, no," cried Holmes, shoving him back into the chair from -which he had half risen. "I really wouldn't miss your case for -the world. It is most refreshingly unusual. But there is, if you -will excuse my saying so, something just a little funny about it. -Pray what steps did you take when you found the card upon the -door?" - -"I was staggered, sir. I did not know what to do. Then I called -at the offices round, but none of them seemed to know anything -about it. Finally, I went to the landlord, who is an accountant -living on the ground-floor, and I asked him if he could tell me -what had become of the Red-headed League. He said that he had -never heard of any such body. Then I asked him who Mr. Duncan -Ross was. He answered that the name was new to him. - -"'Well,' said I, 'the gentleman at No. 4.' - -"'What, the red-headed man?' - -"'Yes.' - -"'Oh,' said he, 'his name was William Morris. He was a solicitor -and was using my room as a temporary convenience until his new -premises were ready. He moved out yesterday.' - -"'Where could I find him?' - -"'Oh, at his new offices. He did tell me the address. Yes, 17 -King Edward Street, near St. Paul's.' - -"I started off, Mr. Holmes, but when I got to that address it was -a manufactory of artificial knee-caps, and no one in it had ever -heard of either Mr. William Morris or Mr. Duncan Ross." - -"And what did you do then?" asked Holmes. - -"I went home to Saxe-Coburg Square, and I took the advice of my -assistant. But he could not help me in any way. He could only say -that if I waited I should hear by post. But that was not quite -good enough, Mr. Holmes. I did not wish to lose such a place -without a struggle, so, as I had heard that you were good enough -to give advice to poor folk who were in need of it, I came right -away to you." - -"And you did very wisely," said Holmes. "Your case is an -exceedingly remarkable one, and I shall be happy to look into it. -From what you have told me I think that it is possible that -graver issues hang from it than might at first sight appear." - -"Grave enough!" said Mr. Jabez Wilson. "Why, I have lost four -pound a week." - -"As far as you are personally concerned," remarked Holmes, "I do -not see that you have any grievance against this extraordinary -league. On the contrary, you are, as I understand, richer by some -30 pounds, to say nothing of the minute knowledge which you have -gained on every subject which comes under the letter A. You have -lost nothing by them." - -"No, sir. But I want to find out about them, and who they are, -and what their object was in playing this prank--if it was a -prank--upon me. It was a pretty expensive joke for them, for it -cost them two and thirty pounds." - -"We shall endeavour to clear up these points for you. And, first, -one or two questions, Mr. Wilson. This assistant of yours who -first called your attention to the advertisement--how long had he -been with you?" - -"About a month then." - -"How did he come?" - -"In answer to an advertisement." - -"Was he the only applicant?" - -"No, I had a dozen." - -"Why did you pick him?" - -"Because he was handy and would come cheap." - -"At half-wages, in fact." - -"Yes." - -"What is he like, this Vincent Spaulding?" - -"Small, stout-built, very quick in his ways, no hair on his face, -though he's not short of thirty. Has a white splash of acid upon -his forehead." - -Holmes sat up in his chair in considerable excitement. "I thought -as much," said he. "Have you ever observed that his ears are -pierced for earrings?" - -"Yes, sir. He told me that a gipsy had done it for him when he -was a lad." - -"Hum!" said Holmes, sinking back in deep thought. "He is still -with you?" - -"Oh, yes, sir; I have only just left him." - -"And has your business been attended to in your absence?" - -"Nothing to complain of, sir. There's never very much to do of a -morning." - -"That will do, Mr. Wilson. I shall be happy to give you an -opinion upon the subject in the course of a day or two. To-day is -Saturday, and I hope that by Monday we may come to a conclusion." - -"Well, Watson," said Holmes when our visitor had left us, "what -do you make of it all?" - -"I make nothing of it," I answered frankly. "It is a most -mysterious business." - -"As a rule," said Holmes, "the more bizarre a thing is the less -mysterious it proves to be. It is your commonplace, featureless -crimes which are really puzzling, just as a commonplace face is -the most difficult to identify. But I must be prompt over this -matter." - -"What are you going to do, then?" I asked. - -"To smoke," he answered. "It is quite a three pipe problem, and I -beg that you won't speak to me for fifty minutes." He curled -himself up in his chair, with his thin knees drawn up to his -hawk-like nose, and there he sat with his eyes closed and his -black clay pipe thrusting out like the bill of some strange bird. -I had come to the conclusion that he had dropped asleep, and -indeed was nodding myself, when he suddenly sprang out of his -chair with the gesture of a man who has made up his mind and put -his pipe down upon the mantelpiece. - -"Sarasate plays at the St. James's Hall this afternoon," he -remarked. "What do you think, Watson? Could your patients spare -you for a few hours?" - -"I have nothing to do to-day. My practice is never very -absorbing." - -"Then put on your hat and come. I am going through the City -first, and we can have some lunch on the way. I observe that -there is a good deal of German music on the programme, which is -rather more to my taste than Italian or French. It is -introspective, and I want to introspect. Come along!" - -We travelled by the Underground as far as Aldersgate; and a short -walk took us to Saxe-Coburg Square, the scene of the singular -story which we had listened to in the morning. It was a poky, -little, shabby-genteel place, where four lines of dingy -two-storied brick houses looked out into a small railed-in -enclosure, where a lawn of weedy grass and a few clumps of faded -laurel-bushes made a hard fight against a smoke-laden and -uncongenial atmosphere. Three gilt balls and a brown board with -"JABEZ WILSON" in white letters, upon a corner house, announced -the place where our red-headed client carried on his business. -Sherlock Holmes stopped in front of it with his head on one side -and looked it all over, with his eyes shining brightly between -puckered lids. Then he walked slowly up the street, and then down -again to the corner, still looking keenly at the houses. Finally -he returned to the pawnbroker's, and, having thumped vigorously -upon the pavement with his stick two or three times, he went up -to the door and knocked. It was instantly opened by a -bright-looking, clean-shaven young fellow, who asked him to step -in. - -"Thank you," said Holmes, "I only wished to ask you how you would -go from here to the Strand." - -"Third right, fourth left," answered the assistant promptly, -closing the door. - -"Smart fellow, that," observed Holmes as we walked away. "He is, -in my judgment, the fourth smartest man in London, and for daring -I am not sure that he has not a claim to be third. I have known -something of him before." - -"Evidently," said I, "Mr. Wilson's assistant counts for a good -deal in this mystery of the Red-headed League. I am sure that you -inquired your way merely in order that you might see him." - -"Not him." - -"What then?" - -"The knees of his trousers." - -"And what did you see?" - -"What I expected to see." - -"Why did you beat the pavement?" - -"My dear doctor, this is a time for observation, not for talk. We -are spies in an enemy's country. We know something of Saxe-Coburg -Square. Let us now explore the parts which lie behind it." - -The road in which we found ourselves as we turned round the -corner from the retired Saxe-Coburg Square presented as great a -contrast to it as the front of a picture does to the back. It was -one of the main arteries which conveyed the traffic of the City -to the north and west. The roadway was blocked with the immense -stream of commerce flowing in a double tide inward and outward, -while the footpaths were black with the hurrying swarm of -pedestrians. It was difficult to realise as we looked at the line -of fine shops and stately business premises that they really -abutted on the other side upon the faded and stagnant square -which we had just quitted. - -"Let me see," said Holmes, standing at the corner and glancing -along the line, "I should like just to remember the order of the -houses here. It is a hobby of mine to have an exact knowledge of -London. There is Mortimer's, the tobacconist, the little -newspaper shop, the Coburg branch of the City and Suburban Bank, -the Vegetarian Restaurant, and McFarlane's carriage-building -depot. That carries us right on to the other block. And now, -Doctor, we've done our work, so it's time we had some play. A -sandwich and a cup of coffee, and then off to violin-land, where -all is sweetness and delicacy and harmony, and there are no -red-headed clients to vex us with their conundrums." - -My friend was an enthusiastic musician, being himself not only a -very capable performer but a composer of no ordinary merit. All -the afternoon he sat in the stalls wrapped in the most perfect -happiness, gently waving his long, thin fingers in time to the -music, while his gently smiling face and his languid, dreamy eyes -were as unlike those of Holmes the sleuth-hound, Holmes the -relentless, keen-witted, ready-handed criminal agent, as it was -possible to conceive. In his singular character the dual nature -alternately asserted itself, and his extreme exactness and -astuteness represented, as I have often thought, the reaction -against the poetic and contemplative mood which occasionally -predominated in him. The swing of his nature took him from -extreme languor to devouring energy; and, as I knew well, he was -never so truly formidable as when, for days on end, he had been -lounging in his armchair amid his improvisations and his -black-letter editions. Then it was that the lust of the chase -would suddenly come upon him, and that his brilliant reasoning -power would rise to the level of intuition, until those who were -unacquainted with his methods would look askance at him as on a -man whose knowledge was not that of other mortals. When I saw him -that afternoon so enwrapped in the music at St. James's Hall I -felt that an evil time might be coming upon those whom he had set -himself to hunt down. - -"You want to go home, no doubt, Doctor," he remarked as we -emerged. - -"Yes, it would be as well." - -"And I have some business to do which will take some hours. This -business at Coburg Square is serious." - -"Why serious?" - -"A considerable crime is in contemplation. I have every reason to -believe that we shall be in time to stop it. But to-day being -Saturday rather complicates matters. I shall want your help -to-night." - -"At what time?" - -"Ten will be early enough." - -"I shall be at Baker Street at ten." - -"Very well. And, I say, Doctor, there may be some little danger, -so kindly put your army revolver in your pocket." He waved his -hand, turned on his heel, and disappeared in an instant among the -crowd. - -I trust that I am not more dense than my neighbours, but I was -always oppressed with a sense of my own stupidity in my dealings -with Sherlock Holmes. Here I had heard what he had heard, I had -seen what he had seen, and yet from his words it was evident that -he saw clearly not only what had happened but what was about to -happen, while to me the whole business was still confused and -grotesque. As I drove home to my house in Kensington I thought -over it all, from the extraordinary story of the red-headed -copier of the "Encyclopaedia" down to the visit to Saxe-Coburg -Square, and the ominous words with which he had parted from me. -What was this nocturnal expedition, and why should I go armed? -Where were we going, and what were we to do? I had the hint from -Holmes that this smooth-faced pawnbroker's assistant was a -formidable man--a man who might play a deep game. I tried to -puzzle it out, but gave it up in despair and set the matter aside -until night should bring an explanation. - -It was a quarter-past nine when I started from home and made my -way across the Park, and so through Oxford Street to Baker -Street. Two hansoms were standing at the door, and as I entered -the passage I heard the sound of voices from above. On entering -his room I found Holmes in animated conversation with two men, -one of whom I recognised as Peter Jones, the official police -agent, while the other was a long, thin, sad-faced man, with a -very shiny hat and oppressively respectable frock-coat. - -"Ha! Our party is complete," said Holmes, buttoning up his -pea-jacket and taking his heavy hunting crop from the rack. -"Watson, I think you know Mr. Jones, of Scotland Yard? Let me -introduce you to Mr. Merryweather, who is to be our companion in -to-night's adventure." - -"We're hunting in couples again, Doctor, you see," said Jones in -his consequential way. "Our friend here is a wonderful man for -starting a chase. All he wants is an old dog to help him to do -the running down." - -"I hope a wild goose may not prove to be the end of our chase," -observed Mr. Merryweather gloomily. - -"You may place considerable confidence in Mr. Holmes, sir," said -the police agent loftily. "He has his own little methods, which -are, if he won't mind my saying so, just a little too theoretical -and fantastic, but he has the makings of a detective in him. It -is not too much to say that once or twice, as in that business of -the Sholto murder and the Agra treasure, he has been more nearly -correct than the official force." - -"Oh, if you say so, Mr. Jones, it is all right," said the -stranger with deference. "Still, I confess that I miss my rubber. -It is the first Saturday night for seven-and-twenty years that I -have not had my rubber." - -"I think you will find," said Sherlock Holmes, "that you will -play for a higher stake to-night than you have ever done yet, and -that the play will be more exciting. For you, Mr. Merryweather, -the stake will be some 30,000 pounds; and for you, Jones, it will -be the man upon whom you wish to lay your hands." - -"John Clay, the murderer, thief, smasher, and forger. He's a -young man, Mr. Merryweather, but he is at the head of his -profession, and I would rather have my bracelets on him than on -any criminal in London. He's a remarkable man, is young John -Clay. His grandfather was a royal duke, and he himself has been -to Eton and Oxford. His brain is as cunning as his fingers, and -though we meet signs of him at every turn, we never know where to -find the man himself. He'll crack a crib in Scotland one week, -and be raising money to build an orphanage in Cornwall the next. -I've been on his track for years and have never set eyes on him -yet." - -"I hope that I may have the pleasure of introducing you to-night. -I've had one or two little turns also with Mr. John Clay, and I -agree with you that he is at the head of his profession. It is -past ten, however, and quite time that we started. If you two -will take the first hansom, Watson and I will follow in the -second." - -Sherlock Holmes was not very communicative during the long drive -and lay back in the cab humming the tunes which he had heard in -the afternoon. We rattled through an endless labyrinth of gas-lit -streets until we emerged into Farrington Street. - -"We are close there now," my friend remarked. "This fellow -Merryweather is a bank director, and personally interested in the -matter. I thought it as well to have Jones with us also. He is -not a bad fellow, though an absolute imbecile in his profession. -He has one positive virtue. He is as brave as a bulldog and as -tenacious as a lobster if he gets his claws upon anyone. Here we -are, and they are waiting for us." - -We had reached the same crowded thoroughfare in which we had -found ourselves in the morning. Our cabs were dismissed, and, -following the guidance of Mr. Merryweather, we passed down a -narrow passage and through a side door, which he opened for us. -Within there was a small corridor, which ended in a very massive -iron gate. This also was opened, and led down a flight of winding -stone steps, which terminated at another formidable gate. Mr. -Merryweather stopped to light a lantern, and then conducted us -down a dark, earth-smelling passage, and so, after opening a -third door, into a huge vault or cellar, which was piled all -round with crates and massive boxes. - -"You are not very vulnerable from above," Holmes remarked as he -held up the lantern and gazed about him. - -"Nor from below," said Mr. Merryweather, striking his stick upon -the flags which lined the floor. "Why, dear me, it sounds quite -hollow!" he remarked, looking up in surprise. - -"I must really ask you to be a little more quiet!" said Holmes -severely. "You have already imperilled the whole success of our -expedition. Might I beg that you would have the goodness to sit -down upon one of those boxes, and not to interfere?" - -The solemn Mr. Merryweather perched himself upon a crate, with a -very injured expression upon his face, while Holmes fell upon his -knees upon the floor and, with the lantern and a magnifying lens, -began to examine minutely the cracks between the stones. A few -seconds sufficed to satisfy him, for he sprang to his feet again -and put his glass in his pocket. - -"We have at least an hour before us," he remarked, "for they can -hardly take any steps until the good pawnbroker is safely in bed. -Then they will not lose a minute, for the sooner they do their -work the longer time they will have for their escape. We are at -present, Doctor--as no doubt you have divined--in the cellar of -the City branch of one of the principal London banks. Mr. -Merryweather is the chairman of directors, and he will explain to -you that there are reasons why the more daring criminals of -London should take a considerable interest in this cellar at -present." - -"It is our French gold," whispered the director. "We have had -several warnings that an attempt might be made upon it." - -"Your French gold?" - -"Yes. We had occasion some months ago to strengthen our resources -and borrowed for that purpose 30,000 napoleons from the Bank of -France. It has become known that we have never had occasion to -unpack the money, and that it is still lying in our cellar. The -crate upon which I sit contains 2,000 napoleons packed between -layers of lead foil. Our reserve of bullion is much larger at -present than is usually kept in a single branch office, and the -directors have had misgivings upon the subject." - -"Which were very well justified," observed Holmes. "And now it is -time that we arranged our little plans. I expect that within an -hour matters will come to a head. In the meantime Mr. -Merryweather, we must put the screen over that dark lantern." - -"And sit in the dark?" - -"I am afraid so. I had brought a pack of cards in my pocket, and -I thought that, as we were a partie carre, you might have your -rubber after all. But I see that the enemy's preparations have -gone so far that we cannot risk the presence of a light. And, -first of all, we must choose our positions. These are daring men, -and though we shall take them at a disadvantage, they may do us -some harm unless we are careful. I shall stand behind this crate, -and do you conceal yourselves behind those. Then, when I flash a -light upon them, close in swiftly. If they fire, Watson, have no -compunction about shooting them down." - -I placed my revolver, cocked, upon the top of the wooden case -behind which I crouched. Holmes shot the slide across the front -of his lantern and left us in pitch darkness--such an absolute -darkness as I have never before experienced. The smell of hot -metal remained to assure us that the light was still there, ready -to flash out at a moment's notice. To me, with my nerves worked -up to a pitch of expectancy, there was something depressing and -subduing in the sudden gloom, and in the cold dank air of the -vault. - -"They have but one retreat," whispered Holmes. "That is back -through the house into Saxe-Coburg Square. I hope that you have -done what I asked you, Jones?" - -"I have an inspector and two officers waiting at the front door." - -"Then we have stopped all the holes. And now we must be silent -and wait." - -What a time it seemed! From comparing notes afterwards it was but -an hour and a quarter, yet it appeared to me that the night must -have almost gone and the dawn be breaking above us. My limbs -were weary and stiff, for I feared to change my position; yet my -nerves were worked up to the highest pitch of tension, and my -hearing was so acute that I could not only hear the gentle -breathing of my companions, but I could distinguish the deeper, -heavier in-breath of the bulky Jones from the thin, sighing note -of the bank director. From my position I could look over the case -in the direction of the floor. Suddenly my eyes caught the glint -of a light. - -At first it was but a lurid spark upon the stone pavement. Then -it lengthened out until it became a yellow line, and then, -without any warning or sound, a gash seemed to open and a hand -appeared, a white, almost womanly hand, which felt about in the -centre of the little area of light. For a minute or more the -hand, with its writhing fingers, protruded out of the floor. Then -it was withdrawn as suddenly as it appeared, and all was dark -again save the single lurid spark which marked a chink between -the stones. - -Its disappearance, however, was but momentary. With a rending, -tearing sound, one of the broad, white stones turned over upon -its side and left a square, gaping hole, through which streamed -the light of a lantern. Over the edge there peeped a clean-cut, -boyish face, which looked keenly about it, and then, with a hand -on either side of the aperture, drew itself shoulder-high and -waist-high, until one knee rested upon the edge. In another -instant he stood at the side of the hole and was hauling after -him a companion, lithe and small like himself, with a pale face -and a shock of very red hair. - -"It's all clear," he whispered. "Have you the chisel and the -bags? Great Scott! Jump, Archie, jump, and I'll swing for it!" - -Sherlock Holmes had sprung out and seized the intruder by the -collar. The other dived down the hole, and I heard the sound of -rending cloth as Jones clutched at his skirts. The light flashed -upon the barrel of a revolver, but Holmes' hunting crop came -down on the man's wrist, and the pistol clinked upon the stone -floor. - -"It's no use, John Clay," said Holmes blandly. "You have no -chance at all." - -"So I see," the other answered with the utmost coolness. "I fancy -that my pal is all right, though I see you have got his -coat-tails." - -"There are three men waiting for him at the door," said Holmes. - -"Oh, indeed! You seem to have done the thing very completely. I -must compliment you." - -"And I you," Holmes answered. "Your red-headed idea was very new -and effective." - -"You'll see your pal again presently," said Jones. "He's quicker -at climbing down holes than I am. Just hold out while I fix the -derbies." - -"I beg that you will not touch me with your filthy hands," -remarked our prisoner as the handcuffs clattered upon his wrists. -"You may not be aware that I have royal blood in my veins. Have -the goodness, also, when you address me always to say 'sir' and -'please.'" - -"All right," said Jones with a stare and a snigger. "Well, would -you please, sir, march upstairs, where we can get a cab to carry -your Highness to the police-station?" - -"That is better," said John Clay serenely. He made a sweeping bow -to the three of us and walked quietly off in the custody of the -detective. - -"Really, Mr. Holmes," said Mr. Merryweather as we followed them -from the cellar, "I do not know how the bank can thank you or -repay you. There is no doubt that you have detected and defeated -in the most complete manner one of the most determined attempts -at bank robbery that have ever come within my experience." - -"I have had one or two little scores of my own to settle with Mr. -John Clay," said Holmes. "I have been at some small expense over -this matter, which I shall expect the bank to refund, but beyond -that I am amply repaid by having had an experience which is in -many ways unique, and by hearing the very remarkable narrative of -the Red-headed League." - - -"You see, Watson," he explained in the early hours of the morning -as we sat over a glass of whisky and soda in Baker Street, "it -was perfectly obvious from the first that the only possible -object of this rather fantastic business of the advertisement of -the League, and the copying of the 'Encyclopaedia,' must be to get -this not over-bright pawnbroker out of the way for a number of -hours every day. It was a curious way of managing it, but, -really, it would be difficult to suggest a better. The method was -no doubt suggested to Clay's ingenious mind by the colour of his -accomplice's hair. The 4 pounds a week was a lure which must draw -him, and what was it to them, who were playing for thousands? -They put in the advertisement, one rogue has the temporary -office, the other rogue incites the man to apply for it, and -together they manage to secure his absence every morning in the -week. From the time that I heard of the assistant having come for -half wages, it was obvious to me that he had some strong motive -for securing the situation." - -"But how could you guess what the motive was?" - -"Had there been women in the house, I should have suspected a -mere vulgar intrigue. That, however, was out of the question. The -man's business was a small one, and there was nothing in his -house which could account for such elaborate preparations, and -such an expenditure as they were at. It must, then, be something -out of the house. What could it be? I thought of the assistant's -fondness for photography, and his trick of vanishing into the -cellar. The cellar! There was the end of this tangled clue. Then -I made inquiries as to this mysterious assistant and found that I -had to deal with one of the coolest and most daring criminals in -London. He was doing something in the cellar--something which -took many hours a day for months on end. What could it be, once -more? I could think of nothing save that he was running a tunnel -to some other building. - -"So far I had got when we went to visit the scene of action. I -surprised you by beating upon the pavement with my stick. I was -ascertaining whether the cellar stretched out in front or behind. -It was not in front. Then I rang the bell, and, as I hoped, the -assistant answered it. We have had some skirmishes, but we had -never set eyes upon each other before. I hardly looked at his -face. His knees were what I wished to see. You must yourself have -remarked how worn, wrinkled, and stained they were. They spoke of -those hours of burrowing. The only remaining point was what they -were burrowing for. I walked round the corner, saw the City and -Suburban Bank abutted on our friend's premises, and felt that I -had solved my problem. When you drove home after the concert I -called upon Scotland Yard and upon the chairman of the bank -directors, with the result that you have seen." - -"And how could you tell that they would make their attempt -to-night?" I asked. - -"Well, when they closed their League offices that was a sign that -they cared no longer about Mr. Jabez Wilson's presence--in other -words, that they had completed their tunnel. But it was essential -that they should use it soon, as it might be discovered, or the -bullion might be removed. Saturday would suit them better than -any other day, as it would give them two days for their escape. -For all these reasons I expected them to come to-night." - -"You reasoned it out beautifully," I exclaimed in unfeigned -admiration. "It is so long a chain, and yet every link rings -true." - -"It saved me from ennui," he answered, yawning. "Alas! I already -feel it closing in upon me. My life is spent in one long effort -to escape from the commonplaces of existence. These little -problems help me to do so." - -"And you are a benefactor of the race," said I. - -He shrugged his shoulders. "Well, perhaps, after all, it is of -some little use," he remarked. "'L'homme c'est rien--l'oeuvre -c'est tout,' as Gustave Flaubert wrote to George Sand." - - - -ADVENTURE III. A CASE OF IDENTITY - -"My dear fellow," said Sherlock Holmes as we sat on either side -of the fire in his lodgings at Baker Street, "life is infinitely -stranger than anything which the mind of man could invent. We -would not dare to conceive the things which are really mere -commonplaces of existence. If we could fly out of that window -hand in hand, hover over this great city, gently remove the -roofs, and peep in at the queer things which are going on, the -strange coincidences, the plannings, the cross-purposes, the -wonderful chains of events, working through generations, and -leading to the most outr results, it would make all fiction with -its conventionalities and foreseen conclusions most stale and -unprofitable." - -"And yet I am not convinced of it," I answered. "The cases which -come to light in the papers are, as a rule, bald enough, and -vulgar enough. We have in our police reports realism pushed to -its extreme limits, and yet the result is, it must be confessed, -neither fascinating nor artistic." - -"A certain selection and discretion must be used in producing a -realistic effect," remarked Holmes. "This is wanting in the -police report, where more stress is laid, perhaps, upon the -platitudes of the magistrate than upon the details, which to an -observer contain the vital essence of the whole matter. Depend -upon it, there is nothing so unnatural as the commonplace." - -I smiled and shook my head. "I can quite understand your thinking -so," I said. "Of course, in your position of unofficial adviser -and helper to everybody who is absolutely puzzled, throughout -three continents, you are brought in contact with all that is -strange and bizarre. But here"--I picked up the morning paper -from the ground--"let us put it to a practical test. Here is the -first heading upon which I come. 'A husband's cruelty to his -wife.' There is half a column of print, but I know without -reading it that it is all perfectly familiar to me. There is, of -course, the other woman, the drink, the push, the blow, the -bruise, the sympathetic sister or landlady. The crudest of -writers could invent nothing more crude." - -"Indeed, your example is an unfortunate one for your argument," -said Holmes, taking the paper and glancing his eye down it. "This -is the Dundas separation case, and, as it happens, I was engaged -in clearing up some small points in connection with it. The -husband was a teetotaler, there was no other woman, and the -conduct complained of was that he had drifted into the habit of -winding up every meal by taking out his false teeth and hurling -them at his wife, which, you will allow, is not an action likely -to occur to the imagination of the average story-teller. Take a -pinch of snuff, Doctor, and acknowledge that I have scored over -you in your example." - -He held out his snuffbox of old gold, with a great amethyst in -the centre of the lid. Its splendour was in such contrast to his -homely ways and simple life that I could not help commenting upon -it. - -"Ah," said he, "I forgot that I had not seen you for some weeks. -It is a little souvenir from the King of Bohemia in return for my -assistance in the case of the Irene Adler papers." - -"And the ring?" I asked, glancing at a remarkable brilliant which -sparkled upon his finger. - -"It was from the reigning family of Holland, though the matter in -which I served them was of such delicacy that I cannot confide it -even to you, who have been good enough to chronicle one or two of -my little problems." - -"And have you any on hand just now?" I asked with interest. - -"Some ten or twelve, but none which present any feature of -interest. They are important, you understand, without being -interesting. Indeed, I have found that it is usually in -unimportant matters that there is a field for the observation, -and for the quick analysis of cause and effect which gives the -charm to an investigation. The larger crimes are apt to be the -simpler, for the bigger the crime the more obvious, as a rule, is -the motive. In these cases, save for one rather intricate matter -which has been referred to me from Marseilles, there is nothing -which presents any features of interest. It is possible, however, -that I may have something better before very many minutes are -over, for this is one of my clients, or I am much mistaken." - -He had risen from his chair and was standing between the parted -blinds gazing down into the dull neutral-tinted London street. -Looking over his shoulder, I saw that on the pavement opposite -there stood a large woman with a heavy fur boa round her neck, -and a large curling red feather in a broad-brimmed hat which was -tilted in a coquettish Duchess of Devonshire fashion over her -ear. From under this great panoply she peeped up in a nervous, -hesitating fashion at our windows, while her body oscillated -backward and forward, and her fingers fidgeted with her glove -buttons. Suddenly, with a plunge, as of the swimmer who leaves -the bank, she hurried across the road, and we heard the sharp -clang of the bell. - -"I have seen those symptoms before," said Holmes, throwing his -cigarette into the fire. "Oscillation upon the pavement always -means an affaire de coeur. She would like advice, but is not sure -that the matter is not too delicate for communication. And yet -even here we may discriminate. When a woman has been seriously -wronged by a man she no longer oscillates, and the usual symptom -is a broken bell wire. Here we may take it that there is a love -matter, but that the maiden is not so much angry as perplexed, or -grieved. But here she comes in person to resolve our doubts." - -As he spoke there was a tap at the door, and the boy in buttons -entered to announce Miss Mary Sutherland, while the lady herself -loomed behind his small black figure like a full-sailed -merchant-man behind a tiny pilot boat. Sherlock Holmes welcomed -her with the easy courtesy for which he was remarkable, and, -having closed the door and bowed her into an armchair, he looked -her over in the minute and yet abstracted fashion which was -peculiar to him. - -"Do you not find," he said, "that with your short sight it is a -little trying to do so much typewriting?" - -"I did at first," she answered, "but now I know where the letters -are without looking." Then, suddenly realising the full purport -of his words, she gave a violent start and looked up, with fear -and astonishment upon her broad, good-humoured face. "You've -heard about me, Mr. Holmes," she cried, "else how could you know -all that?" - -"Never mind," said Holmes, laughing; "it is my business to know -things. Perhaps I have trained myself to see what others -overlook. If not, why should you come to consult me?" - -"I came to you, sir, because I heard of you from Mrs. Etherege, -whose husband you found so easy when the police and everyone had -given him up for dead. Oh, Mr. Holmes, I wish you would do as -much for me. I'm not rich, but still I have a hundred a year in -my own right, besides the little that I make by the machine, and -I would give it all to know what has become of Mr. Hosmer Angel." - -"Why did you come away to consult me in such a hurry?" asked -Sherlock Holmes, with his finger-tips together and his eyes to -the ceiling. - -Again a startled look came over the somewhat vacuous face of Miss -Mary Sutherland. "Yes, I did bang out of the house," she said, -"for it made me angry to see the easy way in which Mr. -Windibank--that is, my father--took it all. He would not go to -the police, and he would not go to you, and so at last, as he -would do nothing and kept on saying that there was no harm done, -it made me mad, and I just on with my things and came right away -to you." - -"Your father," said Holmes, "your stepfather, surely, since the -name is different." - -"Yes, my stepfather. I call him father, though it sounds funny, -too, for he is only five years and two months older than myself." - -"And your mother is alive?" - -"Oh, yes, mother is alive and well. I wasn't best pleased, Mr. -Holmes, when she married again so soon after father's death, and -a man who was nearly fifteen years younger than herself. Father -was a plumber in the Tottenham Court Road, and he left a tidy -business behind him, which mother carried on with Mr. Hardy, the -foreman; but when Mr. Windibank came he made her sell the -business, for he was very superior, being a traveller in wines. -They got 4700 pounds for the goodwill and interest, which wasn't -near as much as father could have got if he had been alive." - -I had expected to see Sherlock Holmes impatient under this -rambling and inconsequential narrative, but, on the contrary, he -had listened with the greatest concentration of attention. - -"Your own little income," he asked, "does it come out of the -business?" - -"Oh, no, sir. It is quite separate and was left me by my uncle -Ned in Auckland. It is in New Zealand stock, paying 4 1/2 per -cent. Two thousand five hundred pounds was the amount, but I can -only touch the interest." - -"You interest me extremely," said Holmes. "And since you draw so -large a sum as a hundred a year, with what you earn into the -bargain, you no doubt travel a little and indulge yourself in -every way. I believe that a single lady can get on very nicely -upon an income of about 60 pounds." - -"I could do with much less than that, Mr. Holmes, but you -understand that as long as I live at home I don't wish to be a -burden to them, and so they have the use of the money just while -I am staying with them. Of course, that is only just for the -time. Mr. Windibank draws my interest every quarter and pays it -over to mother, and I find that I can do pretty well with what I -earn at typewriting. It brings me twopence a sheet, and I can -often do from fifteen to twenty sheets in a day." - -"You have made your position very clear to me," said Holmes. -"This is my friend, Dr. Watson, before whom you can speak as -freely as before myself. Kindly tell us now all about your -connection with Mr. Hosmer Angel." - -A flush stole over Miss Sutherland's face, and she picked -nervously at the fringe of her jacket. "I met him first at the -gasfitters' ball," she said. "They used to send father tickets -when he was alive, and then afterwards they remembered us, and -sent them to mother. Mr. Windibank did not wish us to go. He -never did wish us to go anywhere. He would get quite mad if I -wanted so much as to join a Sunday-school treat. But this time I -was set on going, and I would go; for what right had he to -prevent? He said the folk were not fit for us to know, when all -father's friends were to be there. And he said that I had nothing -fit to wear, when I had my purple plush that I had never so much -as taken out of the drawer. At last, when nothing else would do, -he went off to France upon the business of the firm, but we went, -mother and I, with Mr. Hardy, who used to be our foreman, and it -was there I met Mr. Hosmer Angel." - -"I suppose," said Holmes, "that when Mr. Windibank came back from -France he was very annoyed at your having gone to the ball." - -"Oh, well, he was very good about it. He laughed, I remember, and -shrugged his shoulders, and said there was no use denying -anything to a woman, for she would have her way." - -"I see. Then at the gasfitters' ball you met, as I understand, a -gentleman called Mr. Hosmer Angel." - -"Yes, sir. I met him that night, and he called next day to ask if -we had got home all safe, and after that we met him--that is to -say, Mr. Holmes, I met him twice for walks, but after that father -came back again, and Mr. Hosmer Angel could not come to the house -any more." - -"No?" - -"Well, you know father didn't like anything of the sort. He -wouldn't have any visitors if he could help it, and he used to -say that a woman should be happy in her own family circle. But -then, as I used to say to mother, a woman wants her own circle to -begin with, and I had not got mine yet." - -"But how about Mr. Hosmer Angel? Did he make no attempt to see -you?" - -"Well, father was going off to France again in a week, and Hosmer -wrote and said that it would be safer and better not to see each -other until he had gone. We could write in the meantime, and he -used to write every day. I took the letters in in the morning, so -there was no need for father to know." - -"Were you engaged to the gentleman at this time?" - -"Oh, yes, Mr. Holmes. We were engaged after the first walk that -we took. Hosmer--Mr. Angel--was a cashier in an office in -Leadenhall Street--and--" - -"What office?" - -"That's the worst of it, Mr. Holmes, I don't know." - -"Where did he live, then?" - -"He slept on the premises." - -"And you don't know his address?" - -"No--except that it was Leadenhall Street." - -"Where did you address your letters, then?" - -"To the Leadenhall Street Post Office, to be left till called -for. He said that if they were sent to the office he would be -chaffed by all the other clerks about having letters from a lady, -so I offered to typewrite them, like he did his, but he wouldn't -have that, for he said that when I wrote them they seemed to come -from me, but when they were typewritten he always felt that the -machine had come between us. That will just show you how fond he -was of me, Mr. Holmes, and the little things that he would think -of." - -"It was most suggestive," said Holmes. "It has long been an axiom -of mine that the little things are infinitely the most important. -Can you remember any other little things about Mr. Hosmer Angel?" - -"He was a very shy man, Mr. Holmes. He would rather walk with me -in the evening than in the daylight, for he said that he hated to -be conspicuous. Very retiring and gentlemanly he was. Even his -voice was gentle. He'd had the quinsy and swollen glands when he -was young, he told me, and it had left him with a weak throat, -and a hesitating, whispering fashion of speech. He was always -well dressed, very neat and plain, but his eyes were weak, just -as mine are, and he wore tinted glasses against the glare." - -"Well, and what happened when Mr. Windibank, your stepfather, -returned to France?" - -"Mr. Hosmer Angel came to the house again and proposed that we -should marry before father came back. He was in dreadful earnest -and made me swear, with my hands on the Testament, that whatever -happened I would always be true to him. Mother said he was quite -right to make me swear, and that it was a sign of his passion. -Mother was all in his favour from the first and was even fonder -of him than I was. Then, when they talked of marrying within the -week, I began to ask about father; but they both said never to -mind about father, but just to tell him afterwards, and mother -said she would make it all right with him. I didn't quite like -that, Mr. Holmes. It seemed funny that I should ask his leave, as -he was only a few years older than me; but I didn't want to do -anything on the sly, so I wrote to father at Bordeaux, where the -company has its French offices, but the letter came back to me on -the very morning of the wedding." - -"It missed him, then?" - -"Yes, sir; for he had started to England just before it arrived." - -"Ha! that was unfortunate. Your wedding was arranged, then, for -the Friday. Was it to be in church?" - -"Yes, sir, but very quietly. It was to be at St. Saviour's, near -King's Cross, and we were to have breakfast afterwards at the St. -Pancras Hotel. Hosmer came for us in a hansom, but as there were -two of us he put us both into it and stepped himself into a -four-wheeler, which happened to be the only other cab in the -street. We got to the church first, and when the four-wheeler -drove up we waited for him to step out, but he never did, and -when the cabman got down from the box and looked there was no one -there! The cabman said that he could not imagine what had become -of him, for he had seen him get in with his own eyes. That was -last Friday, Mr. Holmes, and I have never seen or heard anything -since then to throw any light upon what became of him." - -"It seems to me that you have been very shamefully treated," said -Holmes. - -"Oh, no, sir! He was too good and kind to leave me so. Why, all -the morning he was saying to me that, whatever happened, I was to -be true; and that even if something quite unforeseen occurred to -separate us, I was always to remember that I was pledged to him, -and that he would claim his pledge sooner or later. It seemed -strange talk for a wedding-morning, but what has happened since -gives a meaning to it." - -"Most certainly it does. Your own opinion is, then, that some -unforeseen catastrophe has occurred to him?" - -"Yes, sir. I believe that he foresaw some danger, or else he -would not have talked so. And then I think that what he foresaw -happened." - -"But you have no notion as to what it could have been?" - -"None." - -"One more question. How did your mother take the matter?" - -"She was angry, and said that I was never to speak of the matter -again." - -"And your father? Did you tell him?" - -"Yes; and he seemed to think, with me, that something had -happened, and that I should hear of Hosmer again. As he said, -what interest could anyone have in bringing me to the doors of -the church, and then leaving me? Now, if he had borrowed my -money, or if he had married me and got my money settled on him, -there might be some reason, but Hosmer was very independent about -money and never would look at a shilling of mine. And yet, what -could have happened? And why could he not write? Oh, it drives me -half-mad to think of it, and I can't sleep a wink at night." She -pulled a little handkerchief out of her muff and began to sob -heavily into it. - -"I shall glance into the case for you," said Holmes, rising, "and -I have no doubt that we shall reach some definite result. Let the -weight of the matter rest upon me now, and do not let your mind -dwell upon it further. Above all, try to let Mr. Hosmer Angel -vanish from your memory, as he has done from your life." - -"Then you don't think I'll see him again?" - -"I fear not." - -"Then what has happened to him?" - -"You will leave that question in my hands. I should like an -accurate description of him and any letters of his which you can -spare." - -"I advertised for him in last Saturday's Chronicle," said she. -"Here is the slip and here are four letters from him." - -"Thank you. And your address?" - -"No. 31 Lyon Place, Camberwell." - -"Mr. Angel's address you never had, I understand. Where is your -father's place of business?" - -"He travels for Westhouse & Marbank, the great claret importers -of Fenchurch Street." - -"Thank you. You have made your statement very clearly. You will -leave the papers here, and remember the advice which I have given -you. Let the whole incident be a sealed book, and do not allow it -to affect your life." - -"You are very kind, Mr. Holmes, but I cannot do that. I shall be -true to Hosmer. He shall find me ready when he comes back." - -For all the preposterous hat and the vacuous face, there was -something noble in the simple faith of our visitor which -compelled our respect. She laid her little bundle of papers upon -the table and went her way, with a promise to come again whenever -she might be summoned. - -Sherlock Holmes sat silent for a few minutes with his fingertips -still pressed together, his legs stretched out in front of him, -and his gaze directed upward to the ceiling. Then he took down -from the rack the old and oily clay pipe, which was to him as a -counsellor, and, having lit it, he leaned back in his chair, with -the thick blue cloud-wreaths spinning up from him, and a look of -infinite languor in his face. - -"Quite an interesting study, that maiden," he observed. "I found -her more interesting than her little problem, which, by the way, -is rather a trite one. You will find parallel cases, if you -consult my index, in Andover in '77, and there was something of -the sort at The Hague last year. Old as is the idea, however, -there were one or two details which were new to me. But the -maiden herself was most instructive." - -"You appeared to read a good deal upon her which was quite -invisible to me," I remarked. - -"Not invisible but unnoticed, Watson. You did not know where to -look, and so you missed all that was important. I can never bring -you to realise the importance of sleeves, the suggestiveness of -thumb-nails, or the great issues that may hang from a boot-lace. -Now, what did you gather from that woman's appearance? Describe -it." - -"Well, she had a slate-coloured, broad-brimmed straw hat, with a -feather of a brickish red. Her jacket was black, with black beads -sewn upon it, and a fringe of little black jet ornaments. Her -dress was brown, rather darker than coffee colour, with a little -purple plush at the neck and sleeves. Her gloves were greyish and -were worn through at the right forefinger. Her boots I didn't -observe. She had small round, hanging gold earrings, and a -general air of being fairly well-to-do in a vulgar, comfortable, -easy-going way." - -Sherlock Holmes clapped his hands softly together and chuckled. - -"'Pon my word, Watson, you are coming along wonderfully. You have -really done very well indeed. It is true that you have missed -everything of importance, but you have hit upon the method, and -you have a quick eye for colour. Never trust to general -impressions, my boy, but concentrate yourself upon details. My -first glance is always at a woman's sleeve. In a man it is -perhaps better first to take the knee of the trouser. As you -observe, this woman had plush upon her sleeves, which is a most -useful material for showing traces. The double line a little -above the wrist, where the typewritist presses against the table, -was beautifully defined. The sewing-machine, of the hand type, -leaves a similar mark, but only on the left arm, and on the side -of it farthest from the thumb, instead of being right across the -broadest part, as this was. I then glanced at her face, and, -observing the dint of a pince-nez at either side of her nose, I -ventured a remark upon short sight and typewriting, which seemed -to surprise her." - -"It surprised me." - -"But, surely, it was obvious. I was then much surprised and -interested on glancing down to observe that, though the boots -which she was wearing were not unlike each other, they were -really odd ones; the one having a slightly decorated toe-cap, and -the other a plain one. One was buttoned only in the two lower -buttons out of five, and the other at the first, third, and -fifth. Now, when you see that a young lady, otherwise neatly -dressed, has come away from home with odd boots, half-buttoned, -it is no great deduction to say that she came away in a hurry." - -"And what else?" I asked, keenly interested, as I always was, by -my friend's incisive reasoning. - -"I noted, in passing, that she had written a note before leaving -home but after being fully dressed. You observed that her right -glove was torn at the forefinger, but you did not apparently see -that both glove and finger were stained with violet ink. She had -written in a hurry and dipped her pen too deep. It must have been -this morning, or the mark would not remain clear upon the finger. -All this is amusing, though rather elementary, but I must go back -to business, Watson. Would you mind reading me the advertised -description of Mr. Hosmer Angel?" - -I held the little printed slip to the light. - -"Missing," it said, "on the morning of the fourteenth, a gentleman -named Hosmer Angel. About five ft. seven in. in height; -strongly built, sallow complexion, black hair, a little bald in -the centre, bushy, black side-whiskers and moustache; tinted -glasses, slight infirmity of speech. Was dressed, when last seen, -in black frock-coat faced with silk, black waistcoat, gold Albert -chain, and grey Harris tweed trousers, with brown gaiters over -elastic-sided boots. Known to have been employed in an office in -Leadenhall Street. Anybody bringing--" - -"That will do," said Holmes. "As to the letters," he continued, -glancing over them, "they are very commonplace. Absolutely no -clue in them to Mr. Angel, save that he quotes Balzac once. There -is one remarkable point, however, which will no doubt strike -you." - -"They are typewritten," I remarked. - -"Not only that, but the signature is typewritten. Look at the -neat little 'Hosmer Angel' at the bottom. There is a date, you -see, but no superscription except Leadenhall Street, which is -rather vague. The point about the signature is very suggestive--in -fact, we may call it conclusive." - -"Of what?" - -"My dear fellow, is it possible you do not see how strongly it -bears upon the case?" - -"I cannot say that I do unless it were that he wished to be able -to deny his signature if an action for breach of promise were -instituted." - -"No, that was not the point. However, I shall write two letters, -which should settle the matter. One is to a firm in the City, the -other is to the young lady's stepfather, Mr. Windibank, asking -him whether he could meet us here at six o'clock tomorrow -evening. It is just as well that we should do business with the -male relatives. And now, Doctor, we can do nothing until the -answers to those letters come, so we may put our little problem -upon the shelf for the interim." - -I had had so many reasons to believe in my friend's subtle powers -of reasoning and extraordinary energy in action that I felt that -he must have some solid grounds for the assured and easy -demeanour with which he treated the singular mystery which he had -been called upon to fathom. Once only had I known him to fail, in -the case of the King of Bohemia and of the Irene Adler -photograph; but when I looked back to the weird business of the -Sign of Four, and the extraordinary circumstances connected with -the Study in Scarlet, I felt that it would be a strange tangle -indeed which he could not unravel. - -I left him then, still puffing at his black clay pipe, with the -conviction that when I came again on the next evening I would -find that he held in his hands all the clues which would lead up -to the identity of the disappearing bridegroom of Miss Mary -Sutherland. - -A professional case of great gravity was engaging my own -attention at the time, and the whole of next day I was busy at -the bedside of the sufferer. It was not until close upon six -o'clock that I found myself free and was able to spring into a -hansom and drive to Baker Street, half afraid that I might be too -late to assist at the dnouement of the little mystery. I found -Sherlock Holmes alone, however, half asleep, with his long, thin -form curled up in the recesses of his armchair. A formidable -array of bottles and test-tubes, with the pungent cleanly smell -of hydrochloric acid, told me that he had spent his day in the -chemical work which was so dear to him. - -"Well, have you solved it?" I asked as I entered. - -"Yes. It was the bisulphate of baryta." - -"No, no, the mystery!" I cried. - -"Oh, that! I thought of the salt that I have been working upon. -There was never any mystery in the matter, though, as I said -yesterday, some of the details are of interest. The only drawback -is that there is no law, I fear, that can touch the scoundrel." - -"Who was he, then, and what was his object in deserting Miss -Sutherland?" - -The question was hardly out of my mouth, and Holmes had not yet -opened his lips to reply, when we heard a heavy footfall in the -passage and a tap at the door. - -"This is the girl's stepfather, Mr. James Windibank," said -Holmes. "He has written to me to say that he would be here at -six. Come in!" - -The man who entered was a sturdy, middle-sized fellow, some -thirty years of age, clean-shaven, and sallow-skinned, with a -bland, insinuating manner, and a pair of wonderfully sharp and -penetrating grey eyes. He shot a questioning glance at each of -us, placed his shiny top-hat upon the sideboard, and with a -slight bow sidled down into the nearest chair. - -"Good-evening, Mr. James Windibank," said Holmes. "I think that -this typewritten letter is from you, in which you made an -appointment with me for six o'clock?" - -"Yes, sir. I am afraid that I am a little late, but I am not -quite my own master, you know. I am sorry that Miss Sutherland -has troubled you about this little matter, for I think it is far -better not to wash linen of the sort in public. It was quite -against my wishes that she came, but she is a very excitable, -impulsive girl, as you may have noticed, and she is not easily -controlled when she has made up her mind on a point. Of course, I -did not mind you so much, as you are not connected with the -official police, but it is not pleasant to have a family -misfortune like this noised abroad. Besides, it is a useless -expense, for how could you possibly find this Hosmer Angel?" - -"On the contrary," said Holmes quietly; "I have every reason to -believe that I will succeed in discovering Mr. Hosmer Angel." - -Mr. Windibank gave a violent start and dropped his gloves. "I am -delighted to hear it," he said. - -"It is a curious thing," remarked Holmes, "that a typewriter has -really quite as much individuality as a man's handwriting. Unless -they are quite new, no two of them write exactly alike. Some -letters get more worn than others, and some wear only on one -side. Now, you remark in this note of yours, Mr. Windibank, that -in every case there is some little slurring over of the 'e,' and -a slight defect in the tail of the 'r.' There are fourteen other -characteristics, but those are the more obvious." - -"We do all our correspondence with this machine at the office, -and no doubt it is a little worn," our visitor answered, glancing -keenly at Holmes with his bright little eyes. - -"And now I will show you what is really a very interesting study, -Mr. Windibank," Holmes continued. "I think of writing another -little monograph some of these days on the typewriter and its -relation to crime. It is a subject to which I have devoted some -little attention. I have here four letters which purport to come -from the missing man. They are all typewritten. In each case, not -only are the 'e's' slurred and the 'r's' tailless, but you will -observe, if you care to use my magnifying lens, that the fourteen -other characteristics to which I have alluded are there as well." - -Mr. Windibank sprang out of his chair and picked up his hat. "I -cannot waste time over this sort of fantastic talk, Mr. Holmes," -he said. "If you can catch the man, catch him, and let me know -when you have done it." - -"Certainly," said Holmes, stepping over and turning the key in -the door. "I let you know, then, that I have caught him!" - -"What! where?" shouted Mr. Windibank, turning white to his lips -and glancing about him like a rat in a trap. - -"Oh, it won't do--really it won't," said Holmes suavely. "There -is no possible getting out of it, Mr. Windibank. It is quite too -transparent, and it was a very bad compliment when you said that -it was impossible for me to solve so simple a question. That's -right! Sit down and let us talk it over." - -Our visitor collapsed into a chair, with a ghastly face and a -glitter of moisture on his brow. "It--it's not actionable," he -stammered. - -"I am very much afraid that it is not. But between ourselves, -Windibank, it was as cruel and selfish and heartless a trick in a -petty way as ever came before me. Now, let me just run over the -course of events, and you will contradict me if I go wrong." - -The man sat huddled up in his chair, with his head sunk upon his -breast, like one who is utterly crushed. Holmes stuck his feet up -on the corner of the mantelpiece and, leaning back with his hands -in his pockets, began talking, rather to himself, as it seemed, -than to us. - -"The man married a woman very much older than himself for her -money," said he, "and he enjoyed the use of the money of the -daughter as long as she lived with them. It was a considerable -sum, for people in their position, and the loss of it would have -made a serious difference. It was worth an effort to preserve it. -The daughter was of a good, amiable disposition, but affectionate -and warm-hearted in her ways, so that it was evident that with -her fair personal advantages, and her little income, she would -not be allowed to remain single long. Now her marriage would -mean, of course, the loss of a hundred a year, so what does her -stepfather do to prevent it? He takes the obvious course of -keeping her at home and forbidding her to seek the company of -people of her own age. But soon he found that that would not -answer forever. She became restive, insisted upon her rights, and -finally announced her positive intention of going to a certain -ball. What does her clever stepfather do then? He conceives an -idea more creditable to his head than to his heart. With the -connivance and assistance of his wife he disguised himself, -covered those keen eyes with tinted glasses, masked the face with -a moustache and a pair of bushy whiskers, sunk that clear voice -into an insinuating whisper, and doubly secure on account of the -girl's short sight, he appears as Mr. Hosmer Angel, and keeps off -other lovers by making love himself." - -"It was only a joke at first," groaned our visitor. "We never -thought that she would have been so carried away." - -"Very likely not. However that may be, the young lady was very -decidedly carried away, and, having quite made up her mind that -her stepfather was in France, the suspicion of treachery never -for an instant entered her mind. She was flattered by the -gentleman's attentions, and the effect was increased by the -loudly expressed admiration of her mother. Then Mr. Angel began -to call, for it was obvious that the matter should be pushed as -far as it would go if a real effect were to be produced. There -were meetings, and an engagement, which would finally secure the -girl's affections from turning towards anyone else. But the -deception could not be kept up forever. These pretended journeys -to France were rather cumbrous. The thing to do was clearly to -bring the business to an end in such a dramatic manner that it -would leave a permanent impression upon the young lady's mind and -prevent her from looking upon any other suitor for some time to -come. Hence those vows of fidelity exacted upon a Testament, and -hence also the allusions to a possibility of something happening -on the very morning of the wedding. James Windibank wished Miss -Sutherland to be so bound to Hosmer Angel, and so uncertain as to -his fate, that for ten years to come, at any rate, she would not -listen to another man. As far as the church door he brought her, -and then, as he could go no farther, he conveniently vanished -away by the old trick of stepping in at one door of a -four-wheeler and out at the other. I think that was the chain of -events, Mr. Windibank!" - -Our visitor had recovered something of his assurance while Holmes -had been talking, and he rose from his chair now with a cold -sneer upon his pale face. - -"It may be so, or it may not, Mr. Holmes," said he, "but if you -are so very sharp you ought to be sharp enough to know that it is -you who are breaking the law now, and not me. I have done nothing -actionable from the first, but as long as you keep that door -locked you lay yourself open to an action for assault and illegal -constraint." - -"The law cannot, as you say, touch you," said Holmes, unlocking -and throwing open the door, "yet there never was a man who -deserved punishment more. If the young lady has a brother or a -friend, he ought to lay a whip across your shoulders. By Jove!" -he continued, flushing up at the sight of the bitter sneer upon -the man's face, "it is not part of my duties to my client, but -here's a hunting crop handy, and I think I shall just treat -myself to--" He took two swift steps to the whip, but before he -could grasp it there was a wild clatter of steps upon the stairs, -the heavy hall door banged, and from the window we could see Mr. -James Windibank running at the top of his speed down the road. - -"There's a cold-blooded scoundrel!" said Holmes, laughing, as he -threw himself down into his chair once more. "That fellow will -rise from crime to crime until he does something very bad, and -ends on a gallows. The case has, in some respects, been not -entirely devoid of interest." - -"I cannot now entirely see all the steps of your reasoning," I -remarked. - -"Well, of course it was obvious from the first that this Mr. -Hosmer Angel must have some strong object for his curious -conduct, and it was equally clear that the only man who really -profited by the incident, as far as we could see, was the -stepfather. Then the fact that the two men were never together, -but that the one always appeared when the other was away, was -suggestive. So were the tinted spectacles and the curious voice, -which both hinted at a disguise, as did the bushy whiskers. My -suspicions were all confirmed by his peculiar action in -typewriting his signature, which, of course, inferred that his -handwriting was so familiar to her that she would recognise even -the smallest sample of it. You see all these isolated facts, -together with many minor ones, all pointed in the same -direction." - -"And how did you verify them?" - -"Having once spotted my man, it was easy to get corroboration. I -knew the firm for which this man worked. Having taken the printed -description. I eliminated everything from it which could be the -result of a disguise--the whiskers, the glasses, the voice, and I -sent it to the firm, with a request that they would inform me -whether it answered to the description of any of their -travellers. I had already noticed the peculiarities of the -typewriter, and I wrote to the man himself at his business -address asking him if he would come here. As I expected, his -reply was typewritten and revealed the same trivial but -characteristic defects. The same post brought me a letter from -Westhouse & Marbank, of Fenchurch Street, to say that the -description tallied in every respect with that of their employ, -James Windibank. Voil tout!" - -"And Miss Sutherland?" - -"If I tell her she will not believe me. You may remember the old -Persian saying, 'There is danger for him who taketh the tiger -cub, and danger also for whoso snatches a delusion from a woman.' -There is as much sense in Hafiz as in Horace, and as much -knowledge of the world." - - - -ADVENTURE IV. THE BOSCOMBE VALLEY MYSTERY - -We were seated at breakfast one morning, my wife and I, when the -maid brought in a telegram. It was from Sherlock Holmes and ran -in this way: - -"Have you a couple of days to spare? Have just been wired for from -the west of England in connection with Boscombe Valley tragedy. -Shall be glad if you will come with me. Air and scenery perfect. -Leave Paddington by the 11:15." - -"What do you say, dear?" said my wife, looking across at me. -"Will you go?" - -"I really don't know what to say. I have a fairly long list at -present." - -"Oh, Anstruther would do your work for you. You have been looking -a little pale lately. I think that the change would do you good, -and you are always so interested in Mr. Sherlock Holmes' cases." - -"I should be ungrateful if I were not, seeing what I gained -through one of them," I answered. "But if I am to go, I must pack -at once, for I have only half an hour." - -My experience of camp life in Afghanistan had at least had the -effect of making me a prompt and ready traveller. My wants were -few and simple, so that in less than the time stated I was in a -cab with my valise, rattling away to Paddington Station. Sherlock -Holmes was pacing up and down the platform, his tall, gaunt -figure made even gaunter and taller by his long grey -travelling-cloak and close-fitting cloth cap. - -"It is really very good of you to come, Watson," said he. "It -makes a considerable difference to me, having someone with me on -whom I can thoroughly rely. Local aid is always either worthless -or else biassed. If you will keep the two corner seats I shall -get the tickets." - -We had the carriage to ourselves save for an immense litter of -papers which Holmes had brought with him. Among these he rummaged -and read, with intervals of note-taking and of meditation, until -we were past Reading. Then he suddenly rolled them all into a -gigantic ball and tossed them up onto the rack. - -"Have you heard anything of the case?" he asked. - -"Not a word. I have not seen a paper for some days." - -"The London press has not had very full accounts. I have just -been looking through all the recent papers in order to master the -particulars. It seems, from what I gather, to be one of those -simple cases which are so extremely difficult." - -"That sounds a little paradoxical." - -"But it is profoundly true. Singularity is almost invariably a -clue. The more featureless and commonplace a crime is, the more -difficult it is to bring it home. In this case, however, they -have established a very serious case against the son of the -murdered man." - -"It is a murder, then?" - -"Well, it is conjectured to be so. I shall take nothing for -granted until I have the opportunity of looking personally into -it. I will explain the state of things to you, as far as I have -been able to understand it, in a very few words. - -"Boscombe Valley is a country district not very far from Ross, in -Herefordshire. The largest landed proprietor in that part is a -Mr. John Turner, who made his money in Australia and returned -some years ago to the old country. One of the farms which he -held, that of Hatherley, was let to Mr. Charles McCarthy, who was -also an ex-Australian. The men had known each other in the -colonies, so that it was not unnatural that when they came to -settle down they should do so as near each other as possible. -Turner was apparently the richer man, so McCarthy became his -tenant but still remained, it seems, upon terms of perfect -equality, as they were frequently together. McCarthy had one son, -a lad of eighteen, and Turner had an only daughter of the same -age, but neither of them had wives living. They appear to have -avoided the society of the neighbouring English families and to -have led retired lives, though both the McCarthys were fond of -sport and were frequently seen at the race-meetings of the -neighbourhood. McCarthy kept two servants--a man and a girl. -Turner had a considerable household, some half-dozen at the -least. That is as much as I have been able to gather about the -families. Now for the facts. - -"On June 3rd, that is, on Monday last, McCarthy left his house at -Hatherley about three in the afternoon and walked down to the -Boscombe Pool, which is a small lake formed by the spreading out -of the stream which runs down the Boscombe Valley. He had been -out with his serving-man in the morning at Ross, and he had told -the man that he must hurry, as he had an appointment of -importance to keep at three. From that appointment he never came -back alive. - -"From Hatherley Farm-house to the Boscombe Pool is a quarter of a -mile, and two people saw him as he passed over this ground. One -was an old woman, whose name is not mentioned, and the other was -William Crowder, a game-keeper in the employ of Mr. Turner. Both -these witnesses depose that Mr. McCarthy was walking alone. The -game-keeper adds that within a few minutes of his seeing Mr. -McCarthy pass he had seen his son, Mr. James McCarthy, going the -same way with a gun under his arm. To the best of his belief, the -father was actually in sight at the time, and the son was -following him. He thought no more of the matter until he heard in -the evening of the tragedy that had occurred. - -"The two McCarthys were seen after the time when William Crowder, -the game-keeper, lost sight of them. The Boscombe Pool is thickly -wooded round, with just a fringe of grass and of reeds round the -edge. A girl of fourteen, Patience Moran, who is the daughter of -the lodge-keeper of the Boscombe Valley estate, was in one of the -woods picking flowers. She states that while she was there she -saw, at the border of the wood and close by the lake, Mr. -McCarthy and his son, and that they appeared to be having a -violent quarrel. She heard Mr. McCarthy the elder using very -strong language to his son, and she saw the latter raise up his -hand as if to strike his father. She was so frightened by their -violence that she ran away and told her mother when she reached -home that she had left the two McCarthys quarrelling near -Boscombe Pool, and that she was afraid that they were going to -fight. She had hardly said the words when young Mr. McCarthy came -running up to the lodge to say that he had found his father dead -in the wood, and to ask for the help of the lodge-keeper. He was -much excited, without either his gun or his hat, and his right -hand and sleeve were observed to be stained with fresh blood. On -following him they found the dead body stretched out upon the -grass beside the pool. The head had been beaten in by repeated -blows of some heavy and blunt weapon. The injuries were such as -might very well have been inflicted by the butt-end of his son's -gun, which was found lying on the grass within a few paces of the -body. Under these circumstances the young man was instantly -arrested, and a verdict of 'wilful murder' having been returned -at the inquest on Tuesday, he was on Wednesday brought before the -magistrates at Ross, who have referred the case to the next -Assizes. Those are the main facts of the case as they came out -before the coroner and the police-court." - -"I could hardly imagine a more damning case," I remarked. "If -ever circumstantial evidence pointed to a criminal it does so -here." - -"Circumstantial evidence is a very tricky thing," answered Holmes -thoughtfully. "It may seem to point very straight to one thing, -but if you shift your own point of view a little, you may find it -pointing in an equally uncompromising manner to something -entirely different. It must be confessed, however, that the case -looks exceedingly grave against the young man, and it is very -possible that he is indeed the culprit. There are several people -in the neighbourhood, however, and among them Miss Turner, the -daughter of the neighbouring landowner, who believe in his -innocence, and who have retained Lestrade, whom you may recollect -in connection with the Study in Scarlet, to work out the case in -his interest. Lestrade, being rather puzzled, has referred the -case to me, and hence it is that two middle-aged gentlemen are -flying westward at fifty miles an hour instead of quietly -digesting their breakfasts at home." - -"I am afraid," said I, "that the facts are so obvious that you -will find little credit to be gained out of this case." - -"There is nothing more deceptive than an obvious fact," he -answered, laughing. "Besides, we may chance to hit upon some -other obvious facts which may have been by no means obvious to -Mr. Lestrade. You know me too well to think that I am boasting -when I say that I shall either confirm or destroy his theory by -means which he is quite incapable of employing, or even of -understanding. To take the first example to hand, I very clearly -perceive that in your bedroom the window is upon the right-hand -side, and yet I question whether Mr. Lestrade would have noted -even so self-evident a thing as that." - -"How on earth--" - -"My dear fellow, I know you well. I know the military neatness -which characterises you. You shave every morning, and in this -season you shave by the sunlight; but since your shaving is less -and less complete as we get farther back on the left side, until -it becomes positively slovenly as we get round the angle of the -jaw, it is surely very clear that that side is less illuminated -than the other. I could not imagine a man of your habits looking -at himself in an equal light and being satisfied with such a -result. I only quote this as a trivial example of observation and -inference. Therein lies my mtier, and it is just possible that -it may be of some service in the investigation which lies before -us. There are one or two minor points which were brought out in -the inquest, and which are worth considering." - -"What are they?" - -"It appears that his arrest did not take place at once, but after -the return to Hatherley Farm. On the inspector of constabulary -informing him that he was a prisoner, he remarked that he was not -surprised to hear it, and that it was no more than his deserts. -This observation of his had the natural effect of removing any -traces of doubt which might have remained in the minds of the -coroner's jury." - -"It was a confession," I ejaculated. - -"No, for it was followed by a protestation of innocence." - -"Coming on the top of such a damning series of events, it was at -least a most suspicious remark." - -"On the contrary," said Holmes, "it is the brightest rift which I -can at present see in the clouds. However innocent he might be, -he could not be such an absolute imbecile as not to see that the -circumstances were very black against him. Had he appeared -surprised at his own arrest, or feigned indignation at it, I -should have looked upon it as highly suspicious, because such -surprise or anger would not be natural under the circumstances, -and yet might appear to be the best policy to a scheming man. His -frank acceptance of the situation marks him as either an innocent -man, or else as a man of considerable self-restraint and -firmness. As to his remark about his deserts, it was also not -unnatural if you consider that he stood beside the dead body of -his father, and that there is no doubt that he had that very day -so far forgotten his filial duty as to bandy words with him, and -even, according to the little girl whose evidence is so -important, to raise his hand as if to strike him. The -self-reproach and contrition which are displayed in his remark -appear to me to be the signs of a healthy mind rather than of a -guilty one." - -I shook my head. "Many men have been hanged on far slighter -evidence," I remarked. - -"So they have. And many men have been wrongfully hanged." - -"What is the young man's own account of the matter?" - -"It is, I am afraid, not very encouraging to his supporters, -though there are one or two points in it which are suggestive. -You will find it here, and may read it for yourself." - -He picked out from his bundle a copy of the local Herefordshire -paper, and having turned down the sheet he pointed out the -paragraph in which the unfortunate young man had given his own -statement of what had occurred. I settled myself down in the -corner of the carriage and read it very carefully. It ran in this -way: - -"Mr. James McCarthy, the only son of the deceased, was then called -and gave evidence as follows: 'I had been away from home for -three days at Bristol, and had only just returned upon the -morning of last Monday, the 3rd. My father was absent from home at -the time of my arrival, and I was informed by the maid that he -had driven over to Ross with John Cobb, the groom. Shortly after -my return I heard the wheels of his trap in the yard, and, -looking out of my window, I saw him get out and walk rapidly out -of the yard, though I was not aware in which direction he was -going. I then took my gun and strolled out in the direction of -the Boscombe Pool, with the intention of visiting the rabbit -warren which is upon the other side. On my way I saw William -Crowder, the game-keeper, as he had stated in his evidence; but -he is mistaken in thinking that I was following my father. I had -no idea that he was in front of me. When about a hundred yards -from the pool I heard a cry of "Cooee!" which was a usual signal -between my father and myself. I then hurried forward, and found -him standing by the pool. He appeared to be much surprised at -seeing me and asked me rather roughly what I was doing there. A -conversation ensued which led to high words and almost to blows, -for my father was a man of a very violent temper. Seeing that his -passion was becoming ungovernable, I left him and returned -towards Hatherley Farm. I had not gone more than 150 yards, -however, when I heard a hideous outcry behind me, which caused me -to run back again. I found my father expiring upon the ground, -with his head terribly injured. I dropped my gun and held him in -my arms, but he almost instantly expired. I knelt beside him for -some minutes, and then made my way to Mr. Turner's lodge-keeper, -his house being the nearest, to ask for assistance. I saw no one -near my father when I returned, and I have no idea how he came by -his injuries. He was not a popular man, being somewhat cold and -forbidding in his manners, but he had, as far as I know, no -active enemies. I know nothing further of the matter.' - -"The Coroner: Did your father make any statement to you before -he died? - -"Witness: He mumbled a few words, but I could only catch some -allusion to a rat. - -"The Coroner: What did you understand by that? - -"Witness: It conveyed no meaning to me. I thought that he was -delirious. - -"The Coroner: What was the point upon which you and your father -had this final quarrel? - -"Witness: I should prefer not to answer. - -"The Coroner: I am afraid that I must press it. - -"Witness: It is really impossible for me to tell you. I can -assure you that it has nothing to do with the sad tragedy which -followed. - -"The Coroner: That is for the court to decide. I need not point -out to you that your refusal to answer will prejudice your case -considerably in any future proceedings which may arise. - -"Witness: I must still refuse. - -"The Coroner: I understand that the cry of 'Cooee' was a common -signal between you and your father? - -"Witness: It was. - -"The Coroner: How was it, then, that he uttered it before he saw -you, and before he even knew that you had returned from Bristol? - -"Witness (with considerable confusion): I do not know. - -"A Juryman: Did you see nothing which aroused your suspicions -when you returned on hearing the cry and found your father -fatally injured? - -"Witness: Nothing definite. - -"The Coroner: What do you mean? - -"Witness: I was so disturbed and excited as I rushed out into -the open, that I could think of nothing except of my father. Yet -I have a vague impression that as I ran forward something lay -upon the ground to the left of me. It seemed to me to be -something grey in colour, a coat of some sort, or a plaid perhaps. -When I rose from my father I looked round for it, but it was -gone. - -"'Do you mean that it disappeared before you went for help?' - -"'Yes, it was gone.' - -"'You cannot say what it was?' - -"'No, I had a feeling something was there.' - -"'How far from the body?' - -"'A dozen yards or so.' - -"'And how far from the edge of the wood?' - -"'About the same.' - -"'Then if it was removed it was while you were within a dozen -yards of it?' - -"'Yes, but with my back towards it.' - -"This concluded the examination of the witness." - -"I see," said I as I glanced down the column, "that the coroner -in his concluding remarks was rather severe upon young McCarthy. -He calls attention, and with reason, to the discrepancy about his -father having signalled to him before seeing him, also to his -refusal to give details of his conversation with his father, and -his singular account of his father's dying words. They are all, -as he remarks, very much against the son." - -Holmes laughed softly to himself and stretched himself out upon -the cushioned seat. "Both you and the coroner have been at some -pains," said he, "to single out the very strongest points in the -young man's favour. Don't you see that you alternately give him -credit for having too much imagination and too little? Too -little, if he could not invent a cause of quarrel which would -give him the sympathy of the jury; too much, if he evolved from -his own inner consciousness anything so outr as a dying -reference to a rat, and the incident of the vanishing cloth. No, -sir, I shall approach this case from the point of view that what -this young man says is true, and we shall see whither that -hypothesis will lead us. And now here is my pocket Petrarch, and -not another word shall I say of this case until we are on the -scene of action. We lunch at Swindon, and I see that we shall be -there in twenty minutes." - -It was nearly four o'clock when we at last, after passing through -the beautiful Stroud Valley, and over the broad gleaming Severn, -found ourselves at the pretty little country-town of Ross. A -lean, ferret-like man, furtive and sly-looking, was waiting for -us upon the platform. In spite of the light brown dustcoat and -leather-leggings which he wore in deference to his rustic -surroundings, I had no difficulty in recognising Lestrade, of -Scotland Yard. With him we drove to the Hereford Arms where a -room had already been engaged for us. - -"I have ordered a carriage," said Lestrade as we sat over a cup -of tea. "I knew your energetic nature, and that you would not be -happy until you had been on the scene of the crime." - -"It was very nice and complimentary of you," Holmes answered. "It -is entirely a question of barometric pressure." - -Lestrade looked startled. "I do not quite follow," he said. - -"How is the glass? Twenty-nine, I see. No wind, and not a cloud -in the sky. I have a caseful of cigarettes here which need -smoking, and the sofa is very much superior to the usual country -hotel abomination. I do not think that it is probable that I -shall use the carriage to-night." - -Lestrade laughed indulgently. "You have, no doubt, already formed -your conclusions from the newspapers," he said. "The case is as -plain as a pikestaff, and the more one goes into it the plainer -it becomes. Still, of course, one can't refuse a lady, and such a -very positive one, too. She has heard of you, and would have your -opinion, though I repeatedly told her that there was nothing -which you could do which I had not already done. Why, bless my -soul! here is her carriage at the door." - -He had hardly spoken before there rushed into the room one of the -most lovely young women that I have ever seen in my life. Her -violet eyes shining, her lips parted, a pink flush upon her -cheeks, all thought of her natural reserve lost in her -overpowering excitement and concern. - -"Oh, Mr. Sherlock Holmes!" she cried, glancing from one to the -other of us, and finally, with a woman's quick intuition, -fastening upon my companion, "I am so glad that you have come. I -have driven down to tell you so. I know that James didn't do it. -I know it, and I want you to start upon your work knowing it, -too. Never let yourself doubt upon that point. We have known each -other since we were little children, and I know his faults as no -one else does; but he is too tender-hearted to hurt a fly. Such a -charge is absurd to anyone who really knows him." - -"I hope we may clear him, Miss Turner," said Sherlock Holmes. -"You may rely upon my doing all that I can." - -"But you have read the evidence. You have formed some conclusion? -Do you not see some loophole, some flaw? Do you not yourself -think that he is innocent?" - -"I think that it is very probable." - -"There, now!" she cried, throwing back her head and looking -defiantly at Lestrade. "You hear! He gives me hopes." - -Lestrade shrugged his shoulders. "I am afraid that my colleague -has been a little quick in forming his conclusions," he said. - -"But he is right. Oh! I know that he is right. James never did -it. And about his quarrel with his father, I am sure that the -reason why he would not speak about it to the coroner was because -I was concerned in it." - -"In what way?" asked Holmes. - -"It is no time for me to hide anything. James and his father had -many disagreements about me. Mr. McCarthy was very anxious that -there should be a marriage between us. James and I have always -loved each other as brother and sister; but of course he is young -and has seen very little of life yet, and--and--well, he -naturally did not wish to do anything like that yet. So there -were quarrels, and this, I am sure, was one of them." - -"And your father?" asked Holmes. "Was he in favour of such a -union?" - -"No, he was averse to it also. No one but Mr. McCarthy was in -favour of it." A quick blush passed over her fresh young face as -Holmes shot one of his keen, questioning glances at her. - -"Thank you for this information," said he. "May I see your father -if I call to-morrow?" - -"I am afraid the doctor won't allow it." - -"The doctor?" - -"Yes, have you not heard? Poor father has never been strong for -years back, but this has broken him down completely. He has taken -to his bed, and Dr. Willows says that he is a wreck and that his -nervous system is shattered. Mr. McCarthy was the only man alive -who had known dad in the old days in Victoria." - -"Ha! In Victoria! That is important." - -"Yes, at the mines." - -"Quite so; at the gold-mines, where, as I understand, Mr. Turner -made his money." - -"Yes, certainly." - -"Thank you, Miss Turner. You have been of material assistance to -me." - -"You will tell me if you have any news to-morrow. No doubt you -will go to the prison to see James. Oh, if you do, Mr. Holmes, do -tell him that I know him to be innocent." - -"I will, Miss Turner." - -"I must go home now, for dad is very ill, and he misses me so if -I leave him. Good-bye, and God help you in your undertaking." She -hurried from the room as impulsively as she had entered, and we -heard the wheels of her carriage rattle off down the street. - -"I am ashamed of you, Holmes," said Lestrade with dignity after a -few minutes' silence. "Why should you raise up hopes which you -are bound to disappoint? I am not over-tender of heart, but I -call it cruel." - -"I think that I see my way to clearing James McCarthy," said -Holmes. "Have you an order to see him in prison?" - -"Yes, but only for you and me." - -"Then I shall reconsider my resolution about going out. We have -still time to take a train to Hereford and see him to-night?" - -"Ample." - -"Then let us do so. Watson, I fear that you will find it very -slow, but I shall only be away a couple of hours." - -I walked down to the station with them, and then wandered through -the streets of the little town, finally returning to the hotel, -where I lay upon the sofa and tried to interest myself in a -yellow-backed novel. The puny plot of the story was so thin, -however, when compared to the deep mystery through which we were -groping, and I found my attention wander so continually from the -action to the fact, that I at last flung it across the room and -gave myself up entirely to a consideration of the events of the -day. Supposing that this unhappy young man's story were -absolutely true, then what hellish thing, what absolutely -unforeseen and extraordinary calamity could have occurred between -the time when he parted from his father, and the moment when, -drawn back by his screams, he rushed into the glade? It was -something terrible and deadly. What could it be? Might not the -nature of the injuries reveal something to my medical instincts? -I rang the bell and called for the weekly county paper, which -contained a verbatim account of the inquest. In the surgeon's -deposition it was stated that the posterior third of the left -parietal bone and the left half of the occipital bone had been -shattered by a heavy blow from a blunt weapon. I marked the spot -upon my own head. Clearly such a blow must have been struck from -behind. That was to some extent in favour of the accused, as when -seen quarrelling he was face to face with his father. Still, it -did not go for very much, for the older man might have turned his -back before the blow fell. Still, it might be worth while to call -Holmes' attention to it. Then there was the peculiar dying -reference to a rat. What could that mean? It could not be -delirium. A man dying from a sudden blow does not commonly become -delirious. No, it was more likely to be an attempt to explain how -he met his fate. But what could it indicate? I cudgelled my -brains to find some possible explanation. And then the incident -of the grey cloth seen by young McCarthy. If that were true the -murderer must have dropped some part of his dress, presumably his -overcoat, in his flight, and must have had the hardihood to -return and to carry it away at the instant when the son was -kneeling with his back turned not a dozen paces off. What a -tissue of mysteries and improbabilities the whole thing was! I -did not wonder at Lestrade's opinion, and yet I had so much faith -in Sherlock Holmes' insight that I could not lose hope as long -as every fresh fact seemed to strengthen his conviction of young -McCarthy's innocence. - -It was late before Sherlock Holmes returned. He came back alone, -for Lestrade was staying in lodgings in the town. - -"The glass still keeps very high," he remarked as he sat down. -"It is of importance that it should not rain before we are able -to go over the ground. On the other hand, a man should be at his -very best and keenest for such nice work as that, and I did not -wish to do it when fagged by a long journey. I have seen young -McCarthy." - -"And what did you learn from him?" - -"Nothing." - -"Could he throw no light?" - -"None at all. I was inclined to think at one time that he knew -who had done it and was screening him or her, but I am convinced -now that he is as puzzled as everyone else. He is not a very -quick-witted youth, though comely to look at and, I should think, -sound at heart." - -"I cannot admire his taste," I remarked, "if it is indeed a fact -that he was averse to a marriage with so charming a young lady as -this Miss Turner." - -"Ah, thereby hangs a rather painful tale. This fellow is madly, -insanely, in love with her, but some two years ago, when he was -only a lad, and before he really knew her, for she had been away -five years at a boarding-school, what does the idiot do but get -into the clutches of a barmaid in Bristol and marry her at a -registry office? No one knows a word of the matter, but you can -imagine how maddening it must be to him to be upbraided for not -doing what he would give his very eyes to do, but what he knows -to be absolutely impossible. It was sheer frenzy of this sort -which made him throw his hands up into the air when his father, -at their last interview, was goading him on to propose to Miss -Turner. On the other hand, he had no means of supporting himself, -and his father, who was by all accounts a very hard man, would -have thrown him over utterly had he known the truth. It was with -his barmaid wife that he had spent the last three days in -Bristol, and his father did not know where he was. Mark that -point. It is of importance. Good has come out of evil, however, -for the barmaid, finding from the papers that he is in serious -trouble and likely to be hanged, has thrown him over utterly and -has written to him to say that she has a husband already in the -Bermuda Dockyard, so that there is really no tie between them. I -think that that bit of news has consoled young McCarthy for all -that he has suffered." - -"But if he is innocent, who has done it?" - -"Ah! who? I would call your attention very particularly to two -points. One is that the murdered man had an appointment with -someone at the pool, and that the someone could not have been his -son, for his son was away, and he did not know when he would -return. The second is that the murdered man was heard to cry -'Cooee!' before he knew that his son had returned. Those are the -crucial points upon which the case depends. And now let us talk -about George Meredith, if you please, and we shall leave all -minor matters until to-morrow." - -There was no rain, as Holmes had foretold, and the morning broke -bright and cloudless. At nine o'clock Lestrade called for us with -the carriage, and we set off for Hatherley Farm and the Boscombe -Pool. - -"There is serious news this morning," Lestrade observed. "It is -said that Mr. Turner, of the Hall, is so ill that his life is -despaired of." - -"An elderly man, I presume?" said Holmes. - -"About sixty; but his constitution has been shattered by his life -abroad, and he has been in failing health for some time. This -business has had a very bad effect upon him. He was an old friend -of McCarthy's, and, I may add, a great benefactor to him, for I -have learned that he gave him Hatherley Farm rent free." - -"Indeed! That is interesting," said Holmes. - -"Oh, yes! In a hundred other ways he has helped him. Everybody -about here speaks of his kindness to him." - -"Really! Does it not strike you as a little singular that this -McCarthy, who appears to have had little of his own, and to have -been under such obligations to Turner, should still talk of -marrying his son to Turner's daughter, who is, presumably, -heiress to the estate, and that in such a very cocksure manner, -as if it were merely a case of a proposal and all else would -follow? It is the more strange, since we know that Turner himself -was averse to the idea. The daughter told us as much. Do you not -deduce something from that?" - -"We have got to the deductions and the inferences," said -Lestrade, winking at me. "I find it hard enough to tackle facts, -Holmes, without flying away after theories and fancies." - -"You are right," said Holmes demurely; "you do find it very hard -to tackle the facts." - -"Anyhow, I have grasped one fact which you seem to find it -difficult to get hold of," replied Lestrade with some warmth. - -"And that is--" - -"That McCarthy senior met his death from McCarthy junior and that -all theories to the contrary are the merest moonshine." - -"Well, moonshine is a brighter thing than fog," said Holmes, -laughing. "But I am very much mistaken if this is not Hatherley -Farm upon the left." - -"Yes, that is it." It was a widespread, comfortable-looking -building, two-storied, slate-roofed, with great yellow blotches -of lichen upon the grey walls. The drawn blinds and the smokeless -chimneys, however, gave it a stricken look, as though the weight -of this horror still lay heavy upon it. We called at the door, -when the maid, at Holmes' request, showed us the boots which her -master wore at the time of his death, and also a pair of the -son's, though not the pair which he had then had. Having measured -these very carefully from seven or eight different points, Holmes -desired to be led to the court-yard, from which we all followed -the winding track which led to Boscombe Pool. - -Sherlock Holmes was transformed when he was hot upon such a scent -as this. Men who had only known the quiet thinker and logician of -Baker Street would have failed to recognise him. His face flushed -and darkened. His brows were drawn into two hard black lines, -while his eyes shone out from beneath them with a steely glitter. -His face was bent downward, his shoulders bowed, his lips -compressed, and the veins stood out like whipcord in his long, -sinewy neck. His nostrils seemed to dilate with a purely animal -lust for the chase, and his mind was so absolutely concentrated -upon the matter before him that a question or remark fell -unheeded upon his ears, or, at the most, only provoked a quick, -impatient snarl in reply. Swiftly and silently he made his way -along the track which ran through the meadows, and so by way of -the woods to the Boscombe Pool. It was damp, marshy ground, as is -all that district, and there were marks of many feet, both upon -the path and amid the short grass which bounded it on either -side. Sometimes Holmes would hurry on, sometimes stop dead, and -once he made quite a little detour into the meadow. Lestrade and -I walked behind him, the detective indifferent and contemptuous, -while I watched my friend with the interest which sprang from the -conviction that every one of his actions was directed towards a -definite end. - -The Boscombe Pool, which is a little reed-girt sheet of water -some fifty yards across, is situated at the boundary between the -Hatherley Farm and the private park of the wealthy Mr. Turner. -Above the woods which lined it upon the farther side we could see -the red, jutting pinnacles which marked the site of the rich -landowner's dwelling. On the Hatherley side of the pool the woods -grew very thick, and there was a narrow belt of sodden grass -twenty paces across between the edge of the trees and the reeds -which lined the lake. Lestrade showed us the exact spot at which -the body had been found, and, indeed, so moist was the ground, -that I could plainly see the traces which had been left by the -fall of the stricken man. To Holmes, as I could see by his eager -face and peering eyes, very many other things were to be read -upon the trampled grass. He ran round, like a dog who is picking -up a scent, and then turned upon my companion. - -"What did you go into the pool for?" he asked. - -"I fished about with a rake. I thought there might be some weapon -or other trace. But how on earth--" - -"Oh, tut, tut! I have no time! That left foot of yours with its -inward twist is all over the place. A mole could trace it, and -there it vanishes among the reeds. Oh, how simple it would all -have been had I been here before they came like a herd of buffalo -and wallowed all over it. Here is where the party with the -lodge-keeper came, and they have covered all tracks for six or -eight feet round the body. But here are three separate tracks of -the same feet." He drew out a lens and lay down upon his -waterproof to have a better view, talking all the time rather to -himself than to us. "These are young McCarthy's feet. Twice he -was walking, and once he ran swiftly, so that the soles are -deeply marked and the heels hardly visible. That bears out his -story. He ran when he saw his father on the ground. Then here are -the father's feet as he paced up and down. What is this, then? It -is the butt-end of the gun as the son stood listening. And this? -Ha, ha! What have we here? Tiptoes! tiptoes! Square, too, quite -unusual boots! They come, they go, they come again--of course -that was for the cloak. Now where did they come from?" He ran up -and down, sometimes losing, sometimes finding the track until we -were well within the edge of the wood and under the shadow of a -great beech, the largest tree in the neighbourhood. Holmes traced -his way to the farther side of this and lay down once more upon -his face with a little cry of satisfaction. For a long time he -remained there, turning over the leaves and dried sticks, -gathering up what seemed to me to be dust into an envelope and -examining with his lens not only the ground but even the bark of -the tree as far as he could reach. A jagged stone was lying among -the moss, and this also he carefully examined and retained. Then -he followed a pathway through the wood until he came to the -highroad, where all traces were lost. - -"It has been a case of considerable interest," he remarked, -returning to his natural manner. "I fancy that this grey house on -the right must be the lodge. I think that I will go in and have a -word with Moran, and perhaps write a little note. Having done -that, we may drive back to our luncheon. You may walk to the cab, -and I shall be with you presently." - -It was about ten minutes before we regained our cab and drove -back into Ross, Holmes still carrying with him the stone which he -had picked up in the wood. - -"This may interest you, Lestrade," he remarked, holding it out. -"The murder was done with it." - -"I see no marks." - -"There are none." - -"How do you know, then?" - -"The grass was growing under it. It had only lain there a few -days. There was no sign of a place whence it had been taken. It -corresponds with the injuries. There is no sign of any other -weapon." - -"And the murderer?" - -"Is a tall man, left-handed, limps with the right leg, wears -thick-soled shooting-boots and a grey cloak, smokes Indian -cigars, uses a cigar-holder, and carries a blunt pen-knife in his -pocket. There are several other indications, but these may be -enough to aid us in our search." - -Lestrade laughed. "I am afraid that I am still a sceptic," he -said. "Theories are all very well, but we have to deal with a -hard-headed British jury." - -"Nous verrons," answered Holmes calmly. "You work your own -method, and I shall work mine. I shall be busy this afternoon, -and shall probably return to London by the evening train." - -"And leave your case unfinished?" - -"No, finished." - -"But the mystery?" - -"It is solved." - -"Who was the criminal, then?" - -"The gentleman I describe." - -"But who is he?" - -"Surely it would not be difficult to find out. This is not such a -populous neighbourhood." - -Lestrade shrugged his shoulders. "I am a practical man," he said, -"and I really cannot undertake to go about the country looking -for a left-handed gentleman with a game leg. I should become the -laughing-stock of Scotland Yard." - -"All right," said Holmes quietly. "I have given you the chance. -Here are your lodgings. Good-bye. I shall drop you a line before -I leave." - -Having left Lestrade at his rooms, we drove to our hotel, where -we found lunch upon the table. Holmes was silent and buried in -thought with a pained expression upon his face, as one who finds -himself in a perplexing position. - -"Look here, Watson," he said when the cloth was cleared "just sit -down in this chair and let me preach to you for a little. I don't -know quite what to do, and I should value your advice. Light a -cigar and let me expound." - - "Pray do so." - -"Well, now, in considering this case there are two points about -young McCarthy's narrative which struck us both instantly, -although they impressed me in his favour and you against him. One -was the fact that his father should, according to his account, -cry 'Cooee!' before seeing him. The other was his singular dying -reference to a rat. He mumbled several words, you understand, but -that was all that caught the son's ear. Now from this double -point our research must commence, and we will begin it by -presuming that what the lad says is absolutely true." - -"What of this 'Cooee!' then?" - -"Well, obviously it could not have been meant for the son. The -son, as far as he knew, was in Bristol. It was mere chance that -he was within earshot. The 'Cooee!' was meant to attract the -attention of whoever it was that he had the appointment with. But -'Cooee' is a distinctly Australian cry, and one which is used -between Australians. There is a strong presumption that the -person whom McCarthy expected to meet him at Boscombe Pool was -someone who had been in Australia." - -"What of the rat, then?" - -Sherlock Holmes took a folded paper from his pocket and flattened -it out on the table. "This is a map of the Colony of Victoria," -he said. "I wired to Bristol for it last night." He put his hand -over part of the map. "What do you read?" - -"ARAT," I read. - -"And now?" He raised his hand. - -"BALLARAT." - -"Quite so. That was the word the man uttered, and of which his -son only caught the last two syllables. He was trying to utter -the name of his murderer. So and so, of Ballarat." - -"It is wonderful!" I exclaimed. - -"It is obvious. And now, you see, I had narrowed the field down -considerably. The possession of a grey garment was a third point -which, granting the son's statement to be correct, was a -certainty. We have come now out of mere vagueness to the definite -conception of an Australian from Ballarat with a grey cloak." - -"Certainly." - -"And one who was at home in the district, for the pool can only -be approached by the farm or by the estate, where strangers could -hardly wander." - -"Quite so." - -"Then comes our expedition of to-day. By an examination of the -ground I gained the trifling details which I gave to that -imbecile Lestrade, as to the personality of the criminal." - -"But how did you gain them?" - -"You know my method. It is founded upon the observation of -trifles." - -"His height I know that you might roughly judge from the length -of his stride. His boots, too, might be told from their traces." - -"Yes, they were peculiar boots." - -"But his lameness?" - -"The impression of his right foot was always less distinct than -his left. He put less weight upon it. Why? Because he limped--he -was lame." - -"But his left-handedness." - -"You were yourself struck by the nature of the injury as recorded -by the surgeon at the inquest. The blow was struck from -immediately behind, and yet was upon the left side. Now, how can -that be unless it were by a left-handed man? He had stood behind -that tree during the interview between the father and son. He had -even smoked there. I found the ash of a cigar, which my special -knowledge of tobacco ashes enables me to pronounce as an Indian -cigar. I have, as you know, devoted some attention to this, and -written a little monograph on the ashes of 140 different -varieties of pipe, cigar, and cigarette tobacco. Having found the -ash, I then looked round and discovered the stump among the moss -where he had tossed it. It was an Indian cigar, of the variety -which are rolled in Rotterdam." - -"And the cigar-holder?" - -"I could see that the end had not been in his mouth. Therefore he -used a holder. The tip had been cut off, not bitten off, but the -cut was not a clean one, so I deduced a blunt pen-knife." - -"Holmes," I said, "you have drawn a net round this man from which -he cannot escape, and you have saved an innocent human life as -truly as if you had cut the cord which was hanging him. I see the -direction in which all this points. The culprit is--" - -"Mr. John Turner," cried the hotel waiter, opening the door of -our sitting-room, and ushering in a visitor. - -The man who entered was a strange and impressive figure. His -slow, limping step and bowed shoulders gave the appearance of -decrepitude, and yet his hard, deep-lined, craggy features, and -his enormous limbs showed that he was possessed of unusual -strength of body and of character. His tangled beard, grizzled -hair, and outstanding, drooping eyebrows combined to give an air -of dignity and power to his appearance, but his face was of an -ashen white, while his lips and the corners of his nostrils were -tinged with a shade of blue. It was clear to me at a glance that -he was in the grip of some deadly and chronic disease. - -"Pray sit down on the sofa," said Holmes gently. "You had my -note?" - -"Yes, the lodge-keeper brought it up. You said that you wished to -see me here to avoid scandal." - -"I thought people would talk if I went to the Hall." - -"And why did you wish to see me?" He looked across at my -companion with despair in his weary eyes, as though his question -was already answered. - -"Yes," said Holmes, answering the look rather than the words. "It -is so. I know all about McCarthy." - -The old man sank his face in his hands. "God help me!" he cried. -"But I would not have let the young man come to harm. I give you -my word that I would have spoken out if it went against him at -the Assizes." - -"I am glad to hear you say so," said Holmes gravely. - -"I would have spoken now had it not been for my dear girl. It -would break her heart--it will break her heart when she hears -that I am arrested." - -"It may not come to that," said Holmes. - -"What?" - -"I am no official agent. I understand that it was your daughter -who required my presence here, and I am acting in her interests. -Young McCarthy must be got off, however." - -"I am a dying man," said old Turner. "I have had diabetes for -years. My doctor says it is a question whether I shall live a -month. Yet I would rather die under my own roof than in a gaol." - -Holmes rose and sat down at the table with his pen in his hand -and a bundle of paper before him. "Just tell us the truth," he -said. "I shall jot down the facts. You will sign it, and Watson -here can witness it. Then I could produce your confession at the -last extremity to save young McCarthy. I promise you that I shall -not use it unless it is absolutely needed." - -"It's as well," said the old man; "it's a question whether I -shall live to the Assizes, so it matters little to me, but I -should wish to spare Alice the shock. And now I will make the -thing clear to you; it has been a long time in the acting, but -will not take me long to tell. - -"You didn't know this dead man, McCarthy. He was a devil -incarnate. I tell you that. God keep you out of the clutches of -such a man as he. His grip has been upon me these twenty years, -and he has blasted my life. I'll tell you first how I came to be -in his power. - -"It was in the early '60's at the diggings. I was a young chap -then, hot-blooded and reckless, ready to turn my hand at -anything; I got among bad companions, took to drink, had no luck -with my claim, took to the bush, and in a word became what you -would call over here a highway robber. There were six of us, and -we had a wild, free life of it, sticking up a station from time -to time, or stopping the wagons on the road to the diggings. -Black Jack of Ballarat was the name I went under, and our party -is still remembered in the colony as the Ballarat Gang. - -"One day a gold convoy came down from Ballarat to Melbourne, and -we lay in wait for it and attacked it. There were six troopers -and six of us, so it was a close thing, but we emptied four of -their saddles at the first volley. Three of our boys were killed, -however, before we got the swag. I put my pistol to the head of -the wagon-driver, who was this very man McCarthy. I wish to the -Lord that I had shot him then, but I spared him, though I saw his -wicked little eyes fixed on my face, as though to remember every -feature. We got away with the gold, became wealthy men, and made -our way over to England without being suspected. There I parted -from my old pals and determined to settle down to a quiet and -respectable life. I bought this estate, which chanced to be in -the market, and I set myself to do a little good with my money, -to make up for the way in which I had earned it. I married, too, -and though my wife died young she left me my dear little Alice. -Even when she was just a baby her wee hand seemed to lead me down -the right path as nothing else had ever done. In a word, I turned -over a new leaf and did my best to make up for the past. All was -going well when McCarthy laid his grip upon me. - -"I had gone up to town about an investment, and I met him in -Regent Street with hardly a coat to his back or a boot to his -foot. - -"'Here we are, Jack,' says he, touching me on the arm; 'we'll be -as good as a family to you. There's two of us, me and my son, and -you can have the keeping of us. If you don't--it's a fine, -law-abiding country is England, and there's always a policeman -within hail.' - -"Well, down they came to the west country, there was no shaking -them off, and there they have lived rent free on my best land -ever since. There was no rest for me, no peace, no forgetfulness; -turn where I would, there was his cunning, grinning face at my -elbow. It grew worse as Alice grew up, for he soon saw I was more -afraid of her knowing my past than of the police. Whatever he -wanted he must have, and whatever it was I gave him without -question, land, money, houses, until at last he asked a thing -which I could not give. He asked for Alice. - -"His son, you see, had grown up, and so had my girl, and as I was -known to be in weak health, it seemed a fine stroke to him that -his lad should step into the whole property. But there I was -firm. I would not have his cursed stock mixed with mine; not that -I had any dislike to the lad, but his blood was in him, and that -was enough. I stood firm. McCarthy threatened. I braved him to do -his worst. We were to meet at the pool midway between our houses -to talk it over. - -"When I went down there I found him talking with his son, so I -smoked a cigar and waited behind a tree until he should be alone. -But as I listened to his talk all that was black and bitter in -me seemed to come uppermost. He was urging his son to marry my -daughter with as little regard for what she might think as if she -were a slut from off the streets. It drove me mad to think that I -and all that I held most dear should be in the power of such a -man as this. Could I not snap the bond? I was already a dying and -a desperate man. Though clear of mind and fairly strong of limb, -I knew that my own fate was sealed. But my memory and my girl! -Both could be saved if I could but silence that foul tongue. I -did it, Mr. Holmes. I would do it again. Deeply as I have sinned, -I have led a life of martyrdom to atone for it. But that my girl -should be entangled in the same meshes which held me was more -than I could suffer. I struck him down with no more compunction -than if he had been some foul and venomous beast. His cry brought -back his son; but I had gained the cover of the wood, though I -was forced to go back to fetch the cloak which I had dropped in -my flight. That is the true story, gentlemen, of all that -occurred." - -"Well, it is not for me to judge you," said Holmes as the old man -signed the statement which had been drawn out. "I pray that we -may never be exposed to such a temptation." - -"I pray not, sir. And what do you intend to do?" - -"In view of your health, nothing. You are yourself aware that you -will soon have to answer for your deed at a higher court than the -Assizes. I will keep your confession, and if McCarthy is -condemned I shall be forced to use it. If not, it shall never be -seen by mortal eye; and your secret, whether you be alive or -dead, shall be safe with us." - -"Farewell, then," said the old man solemnly. "Your own deathbeds, -when they come, will be the easier for the thought of the peace -which you have given to mine." Tottering and shaking in all his -giant frame, he stumbled slowly from the room. - -"God help us!" said Holmes after a long silence. "Why does fate -play such tricks with poor, helpless worms? I never hear of such -a case as this that I do not think of Baxter's words, and say, -'There, but for the grace of God, goes Sherlock Holmes.'" - -James McCarthy was acquitted at the Assizes on the strength of a -number of objections which had been drawn out by Holmes and -submitted to the defending counsel. Old Turner lived for seven -months after our interview, but he is now dead; and there is -every prospect that the son and daughter may come to live happily -together in ignorance of the black cloud which rests upon their -past. - - - -ADVENTURE V. THE FIVE ORANGE PIPS - -When I glance over my notes and records of the Sherlock Holmes -cases between the years '82 and '90, I am faced by so many which -present strange and interesting features that it is no easy -matter to know which to choose and which to leave. Some, however, -have already gained publicity through the papers, and others have -not offered a field for those peculiar qualities which my friend -possessed in so high a degree, and which it is the object of -these papers to illustrate. Some, too, have baffled his -analytical skill, and would be, as narratives, beginnings without -an ending, while others have been but partially cleared up, and -have their explanations founded rather upon conjecture and -surmise than on that absolute logical proof which was so dear to -him. There is, however, one of these last which was so remarkable -in its details and so startling in its results that I am tempted -to give some account of it in spite of the fact that there are -points in connection with it which never have been, and probably -never will be, entirely cleared up. - -The year '87 furnished us with a long series of cases of greater -or less interest, of which I retain the records. Among my -headings under this one twelve months I find an account of the -adventure of the Paradol Chamber, of the Amateur Mendicant -Society, who held a luxurious club in the lower vault of a -furniture warehouse, of the facts connected with the loss of the -British barque "Sophy Anderson", of the singular adventures of the -Grice Patersons in the island of Uffa, and finally of the -Camberwell poisoning case. In the latter, as may be remembered, -Sherlock Holmes was able, by winding up the dead man's watch, to -prove that it had been wound up two hours before, and that -therefore the deceased had gone to bed within that time--a -deduction which was of the greatest importance in clearing up the -case. All these I may sketch out at some future date, but none of -them present such singular features as the strange train of -circumstances which I have now taken up my pen to describe. - -It was in the latter days of September, and the equinoctial gales -had set in with exceptional violence. All day the wind had -screamed and the rain had beaten against the windows, so that -even here in the heart of great, hand-made London we were forced -to raise our minds for the instant from the routine of life and -to recognise the presence of those great elemental forces which -shriek at mankind through the bars of his civilisation, like -untamed beasts in a cage. As evening drew in, the storm grew -higher and louder, and the wind cried and sobbed like a child in -the chimney. Sherlock Holmes sat moodily at one side of the -fireplace cross-indexing his records of crime, while I at the -other was deep in one of Clark Russell's fine sea-stories until -the howl of the gale from without seemed to blend with the text, -and the splash of the rain to lengthen out into the long swash of -the sea waves. My wife was on a visit to her mother's, and for a -few days I was a dweller once more in my old quarters at Baker -Street. - -"Why," said I, glancing up at my companion, "that was surely the -bell. Who could come to-night? Some friend of yours, perhaps?" - -"Except yourself I have none," he answered. "I do not encourage -visitors." - -"A client, then?" - -"If so, it is a serious case. Nothing less would bring a man out -on such a day and at such an hour. But I take it that it is more -likely to be some crony of the landlady's." - -Sherlock Holmes was wrong in his conjecture, however, for there -came a step in the passage and a tapping at the door. He -stretched out his long arm to turn the lamp away from himself and -towards the vacant chair upon which a newcomer must sit. - -"Come in!" said he. - -The man who entered was young, some two-and-twenty at the -outside, well-groomed and trimly clad, with something of -refinement and delicacy in his bearing. The streaming umbrella -which he held in his hand, and his long shining waterproof told -of the fierce weather through which he had come. He looked about -him anxiously in the glare of the lamp, and I could see that his -face was pale and his eyes heavy, like those of a man who is -weighed down with some great anxiety. - -"I owe you an apology," he said, raising his golden pince-nez to -his eyes. "I trust that I am not intruding. I fear that I have -brought some traces of the storm and rain into your snug -chamber." - -"Give me your coat and umbrella," said Holmes. "They may rest -here on the hook and will be dry presently. You have come up from -the south-west, I see." - -"Yes, from Horsham." - -"That clay and chalk mixture which I see upon your toe caps is -quite distinctive." - -"I have come for advice." - -"That is easily got." - -"And help." - -"That is not always so easy." - -"I have heard of you, Mr. Holmes. I heard from Major Prendergast -how you saved him in the Tankerville Club scandal." - -"Ah, of course. He was wrongfully accused of cheating at cards." - -"He said that you could solve anything." - -"He said too much." - -"That you are never beaten." - -"I have been beaten four times--three times by men, and once by a -woman." - -"But what is that compared with the number of your successes?" - -"It is true that I have been generally successful." - -"Then you may be so with me." - -"I beg that you will draw your chair up to the fire and favour me -with some details as to your case." - -"It is no ordinary one." - -"None of those which come to me are. I am the last court of -appeal." - -"And yet I question, sir, whether, in all your experience, you -have ever listened to a more mysterious and inexplicable chain of -events than those which have happened in my own family." - -"You fill me with interest," said Holmes. "Pray give us the -essential facts from the commencement, and I can afterwards -question you as to those details which seem to me to be most -important." - -The young man pulled his chair up and pushed his wet feet out -towards the blaze. - -"My name," said he, "is John Openshaw, but my own affairs have, -as far as I can understand, little to do with this awful -business. It is a hereditary matter; so in order to give you an -idea of the facts, I must go back to the commencement of the -affair. - -"You must know that my grandfather had two sons--my uncle Elias -and my father Joseph. My father had a small factory at Coventry, -which he enlarged at the time of the invention of bicycling. He -was a patentee of the Openshaw unbreakable tire, and his business -met with such success that he was able to sell it and to retire -upon a handsome competence. - -"My uncle Elias emigrated to America when he was a young man and -became a planter in Florida, where he was reported to have done -very well. At the time of the war he fought in Jackson's army, -and afterwards under Hood, where he rose to be a colonel. When -Lee laid down his arms my uncle returned to his plantation, where -he remained for three or four years. About 1869 or 1870 he came -back to Europe and took a small estate in Sussex, near Horsham. -He had made a very considerable fortune in the States, and his -reason for leaving them was his aversion to the negroes, and his -dislike of the Republican policy in extending the franchise to -them. He was a singular man, fierce and quick-tempered, very -foul-mouthed when he was angry, and of a most retiring -disposition. During all the years that he lived at Horsham, I -doubt if ever he set foot in the town. He had a garden and two or -three fields round his house, and there he would take his -exercise, though very often for weeks on end he would never leave -his room. He drank a great deal of brandy and smoked very -heavily, but he would see no society and did not want any -friends, not even his own brother. - -"He didn't mind me; in fact, he took a fancy to me, for at the -time when he saw me first I was a youngster of twelve or so. This -would be in the year 1878, after he had been eight or nine years -in England. He begged my father to let me live with him and he -was very kind to me in his way. When he was sober he used to be -fond of playing backgammon and draughts with me, and he would -make me his representative both with the servants and with the -tradespeople, so that by the time that I was sixteen I was quite -master of the house. I kept all the keys and could go where I -liked and do what I liked, so long as I did not disturb him in -his privacy. There was one singular exception, however, for he -had a single room, a lumber-room up among the attics, which was -invariably locked, and which he would never permit either me or -anyone else to enter. With a boy's curiosity I have peeped -through the keyhole, but I was never able to see more than such a -collection of old trunks and bundles as would be expected in such -a room. - -"One day--it was in March, 1883--a letter with a foreign stamp -lay upon the table in front of the colonel's plate. It was not a -common thing for him to receive letters, for his bills were all -paid in ready money, and he had no friends of any sort. 'From -India!' said he as he took it up, 'Pondicherry postmark! What can -this be?' Opening it hurriedly, out there jumped five little -dried orange pips, which pattered down upon his plate. I began to -laugh at this, but the laugh was struck from my lips at the sight -of his face. His lip had fallen, his eyes were protruding, his -skin the colour of putty, and he glared at the envelope which he -still held in his trembling hand, 'K. K. K.!' he shrieked, and -then, 'My God, my God, my sins have overtaken me!' - -"'What is it, uncle?' I cried. - -"'Death,' said he, and rising from the table he retired to his -room, leaving me palpitating with horror. I took up the envelope -and saw scrawled in red ink upon the inner flap, just above the -gum, the letter K three times repeated. There was nothing else -save the five dried pips. What could be the reason of his -overpowering terror? I left the breakfast-table, and as I -ascended the stair I met him coming down with an old rusty key, -which must have belonged to the attic, in one hand, and a small -brass box, like a cashbox, in the other. - -"'They may do what they like, but I'll checkmate them still,' -said he with an oath. 'Tell Mary that I shall want a fire in my -room to-day, and send down to Fordham, the Horsham lawyer.' - -"I did as he ordered, and when the lawyer arrived I was asked to -step up to the room. The fire was burning brightly, and in the -grate there was a mass of black, fluffy ashes, as of burned -paper, while the brass box stood open and empty beside it. As I -glanced at the box I noticed, with a start, that upon the lid was -printed the treble K which I had read in the morning upon the -envelope. - -"'I wish you, John,' said my uncle, 'to witness my will. I leave -my estate, with all its advantages and all its disadvantages, to -my brother, your father, whence it will, no doubt, descend to -you. If you can enjoy it in peace, well and good! If you find you -cannot, take my advice, my boy, and leave it to your deadliest -enemy. I am sorry to give you such a two-edged thing, but I can't -say what turn things are going to take. Kindly sign the paper -where Mr. Fordham shows you.' - -"I signed the paper as directed, and the lawyer took it away with -him. The singular incident made, as you may think, the deepest -impression upon me, and I pondered over it and turned it every -way in my mind without being able to make anything of it. Yet I -could not shake off the vague feeling of dread which it left -behind, though the sensation grew less keen as the weeks passed -and nothing happened to disturb the usual routine of our lives. I -could see a change in my uncle, however. He drank more than ever, -and he was less inclined for any sort of society. Most of his -time he would spend in his room, with the door locked upon the -inside, but sometimes he would emerge in a sort of drunken frenzy -and would burst out of the house and tear about the garden with a -revolver in his hand, screaming out that he was afraid of no man, -and that he was not to be cooped up, like a sheep in a pen, by -man or devil. When these hot fits were over, however, he would -rush tumultuously in at the door and lock and bar it behind him, -like a man who can brazen it out no longer against the terror -which lies at the roots of his soul. At such times I have seen -his face, even on a cold day, glisten with moisture, as though it -were new raised from a basin. - -"Well, to come to an end of the matter, Mr. Holmes, and not to -abuse your patience, there came a night when he made one of those -drunken sallies from which he never came back. We found him, when -we went to search for him, face downward in a little -green-scummed pool, which lay at the foot of the garden. There -was no sign of any violence, and the water was but two feet deep, -so that the jury, having regard to his known eccentricity, -brought in a verdict of 'suicide.' But I, who knew how he winced -from the very thought of death, had much ado to persuade myself -that he had gone out of his way to meet it. The matter passed, -however, and my father entered into possession of the estate, and -of some 14,000 pounds, which lay to his credit at the bank." - -"One moment," Holmes interposed, "your statement is, I foresee, -one of the most remarkable to which I have ever listened. Let me -have the date of the reception by your uncle of the letter, and -the date of his supposed suicide." - -"The letter arrived on March 10, 1883. His death was seven weeks -later, upon the night of May 2nd." - -"Thank you. Pray proceed." - -"When my father took over the Horsham property, he, at my -request, made a careful examination of the attic, which had been -always locked up. We found the brass box there, although its -contents had been destroyed. On the inside of the cover was a -paper label, with the initials of K. K. K. repeated upon it, and -'Letters, memoranda, receipts, and a register' written beneath. -These, we presume, indicated the nature of the papers which had -been destroyed by Colonel Openshaw. For the rest, there was -nothing of much importance in the attic save a great many -scattered papers and note-books bearing upon my uncle's life in -America. Some of them were of the war time and showed that he had -done his duty well and had borne the repute of a brave soldier. -Others were of a date during the reconstruction of the Southern -states, and were mostly concerned with politics, for he had -evidently taken a strong part in opposing the carpet-bag -politicians who had been sent down from the North. - -"Well, it was the beginning of '84 when my father came to live at -Horsham, and all went as well as possible with us until the -January of '85. On the fourth day after the new year I heard my -father give a sharp cry of surprise as we sat together at the -breakfast-table. There he was, sitting with a newly opened -envelope in one hand and five dried orange pips in the -outstretched palm of the other one. He had always laughed at what -he called my cock-and-bull story about the colonel, but he looked -very scared and puzzled now that the same thing had come upon -himself. - -"'Why, what on earth does this mean, John?' he stammered. - -"My heart had turned to lead. 'It is K. K. K.,' said I. - -"He looked inside the envelope. 'So it is,' he cried. 'Here are -the very letters. But what is this written above them?' - -"'Put the papers on the sundial,' I read, peeping over his -shoulder. - -"'What papers? What sundial?' he asked. - -"'The sundial in the garden. There is no other,' said I; 'but the -papers must be those that are destroyed.' - -"'Pooh!' said he, gripping hard at his courage. 'We are in a -civilised land here, and we can't have tomfoolery of this kind. -Where does the thing come from?' - -"'From Dundee,' I answered, glancing at the postmark. - -"'Some preposterous practical joke,' said he. 'What have I to do -with sundials and papers? I shall take no notice of such -nonsense.' - -"'I should certainly speak to the police,' I said. - -"'And be laughed at for my pains. Nothing of the sort.' - -"'Then let me do so?' - -"'No, I forbid you. I won't have a fuss made about such -nonsense.' - -"It was in vain to argue with him, for he was a very obstinate -man. I went about, however, with a heart which was full of -forebodings. - -"On the third day after the coming of the letter my father went -from home to visit an old friend of his, Major Freebody, who is -in command of one of the forts upon Portsdown Hill. I was glad -that he should go, for it seemed to me that he was farther from -danger when he was away from home. In that, however, I was in -error. Upon the second day of his absence I received a telegram -from the major, imploring me to come at once. My father had -fallen over one of the deep chalk-pits which abound in the -neighbourhood, and was lying senseless, with a shattered skull. I -hurried to him, but he passed away without having ever recovered -his consciousness. He had, as it appears, been returning from -Fareham in the twilight, and as the country was unknown to him, -and the chalk-pit unfenced, the jury had no hesitation in -bringing in a verdict of 'death from accidental causes.' -Carefully as I examined every fact connected with his death, I -was unable to find anything which could suggest the idea of -murder. There were no signs of violence, no footmarks, no -robbery, no record of strangers having been seen upon the roads. -And yet I need not tell you that my mind was far from at ease, -and that I was well-nigh certain that some foul plot had been -woven round him. - -"In this sinister way I came into my inheritance. You will ask me -why I did not dispose of it? I answer, because I was well -convinced that our troubles were in some way dependent upon an -incident in my uncle's life, and that the danger would be as -pressing in one house as in another. - -"It was in January, '85, that my poor father met his end, and two -years and eight months have elapsed since then. During that time -I have lived happily at Horsham, and I had begun to hope that -this curse had passed away from the family, and that it had ended -with the last generation. I had begun to take comfort too soon, -however; yesterday morning the blow fell in the very shape in -which it had come upon my father." - -The young man took from his waistcoat a crumpled envelope, and -turning to the table he shook out upon it five little dried -orange pips. - -"This is the envelope," he continued. "The postmark is -London--eastern division. Within are the very words which were -upon my father's last message: 'K. K. K.'; and then 'Put the -papers on the sundial.'" - -"What have you done?" asked Holmes. - -"Nothing." - -"Nothing?" - -"To tell the truth"--he sank his face into his thin, white -hands--"I have felt helpless. I have felt like one of those poor -rabbits when the snake is writhing towards it. I seem to be in -the grasp of some resistless, inexorable evil, which no foresight -and no precautions can guard against." - -"Tut! tut!" cried Sherlock Holmes. "You must act, man, or you are -lost. Nothing but energy can save you. This is no time for -despair." - -"I have seen the police." - -"Ah!" - -"But they listened to my story with a smile. I am convinced that -the inspector has formed the opinion that the letters are all -practical jokes, and that the deaths of my relations were really -accidents, as the jury stated, and were not to be connected with -the warnings." - -Holmes shook his clenched hands in the air. "Incredible -imbecility!" he cried. - -"They have, however, allowed me a policeman, who may remain in -the house with me." - -"Has he come with you to-night?" - -"No. His orders were to stay in the house." - -Again Holmes raved in the air. - -"Why did you come to me," he cried, "and, above all, why did you -not come at once?" - -"I did not know. It was only to-day that I spoke to Major -Prendergast about my troubles and was advised by him to come to -you." - -"It is really two days since you had the letter. We should have -acted before this. You have no further evidence, I suppose, than -that which you have placed before us--no suggestive detail which -might help us?" - -"There is one thing," said John Openshaw. He rummaged in his coat -pocket, and, drawing out a piece of discoloured, blue-tinted -paper, he laid it out upon the table. "I have some remembrance," -said he, "that on the day when my uncle burned the papers I -observed that the small, unburned margins which lay amid the -ashes were of this particular colour. I found this single sheet -upon the floor of his room, and I am inclined to think that it -may be one of the papers which has, perhaps, fluttered out from -among the others, and in that way has escaped destruction. Beyond -the mention of pips, I do not see that it helps us much. I think -myself that it is a page from some private diary. The writing is -undoubtedly my uncle's." - -Holmes moved the lamp, and we both bent over the sheet of paper, -which showed by its ragged edge that it had indeed been torn from -a book. It was headed, "March, 1869," and beneath were the -following enigmatical notices: - -"4th. Hudson came. Same old platform. - -"7th. Set the pips on McCauley, Paramore, and - John Swain, of St. Augustine. - -"9th. McCauley cleared. - -"10th. John Swain cleared. - -"12th. Visited Paramore. All well." - -"Thank you!" said Holmes, folding up the paper and returning it -to our visitor. "And now you must on no account lose another -instant. We cannot spare time even to discuss what you have told -me. You must get home instantly and act." - -"What shall I do?" - -"There is but one thing to do. It must be done at once. You must -put this piece of paper which you have shown us into the brass -box which you have described. You must also put in a note to say -that all the other papers were burned by your uncle, and that -this is the only one which remains. You must assert that in such -words as will carry conviction with them. Having done this, you -must at once put the box out upon the sundial, as directed. Do -you understand?" - -"Entirely." - -"Do not think of revenge, or anything of the sort, at present. I -think that we may gain that by means of the law; but we have our -web to weave, while theirs is already woven. The first -consideration is to remove the pressing danger which threatens -you. The second is to clear up the mystery and to punish the -guilty parties." - -"I thank you," said the young man, rising and pulling on his -overcoat. "You have given me fresh life and hope. I shall -certainly do as you advise." - -"Do not lose an instant. And, above all, take care of yourself in -the meanwhile, for I do not think that there can be a doubt that -you are threatened by a very real and imminent danger. How do you -go back?" - -"By train from Waterloo." - -"It is not yet nine. The streets will be crowded, so I trust that -you may be in safety. And yet you cannot guard yourself too -closely." - -"I am armed." - -"That is well. To-morrow I shall set to work upon your case." - -"I shall see you at Horsham, then?" - -"No, your secret lies in London. It is there that I shall seek -it." - -"Then I shall call upon you in a day, or in two days, with news -as to the box and the papers. I shall take your advice in every -particular." He shook hands with us and took his leave. Outside -the wind still screamed and the rain splashed and pattered -against the windows. This strange, wild story seemed to have come -to us from amid the mad elements--blown in upon us like a sheet -of sea-weed in a gale--and now to have been reabsorbed by them -once more. - -Sherlock Holmes sat for some time in silence, with his head sunk -forward and his eyes bent upon the red glow of the fire. Then he -lit his pipe, and leaning back in his chair he watched the blue -smoke-rings as they chased each other up to the ceiling. - -"I think, Watson," he remarked at last, "that of all our cases we -have had none more fantastic than this." - -"Save, perhaps, the Sign of Four." - -"Well, yes. Save, perhaps, that. And yet this John Openshaw seems -to me to be walking amid even greater perils than did the -Sholtos." - -"But have you," I asked, "formed any definite conception as to -what these perils are?" - -"There can be no question as to their nature," he answered. - -"Then what are they? Who is this K. K. K., and why does he pursue -this unhappy family?" - -Sherlock Holmes closed his eyes and placed his elbows upon the -arms of his chair, with his finger-tips together. "The ideal -reasoner," he remarked, "would, when he had once been shown a -single fact in all its bearings, deduce from it not only all the -chain of events which led up to it but also all the results which -would follow from it. As Cuvier could correctly describe a whole -animal by the contemplation of a single bone, so the observer who -has thoroughly understood one link in a series of incidents -should be able to accurately state all the other ones, both -before and after. We have not yet grasped the results which the -reason alone can attain to. Problems may be solved in the study -which have baffled all those who have sought a solution by the -aid of their senses. To carry the art, however, to its highest -pitch, it is necessary that the reasoner should be able to -utilise all the facts which have come to his knowledge; and this -in itself implies, as you will readily see, a possession of all -knowledge, which, even in these days of free education and -encyclopaedias, is a somewhat rare accomplishment. It is not so -impossible, however, that a man should possess all knowledge -which is likely to be useful to him in his work, and this I have -endeavoured in my case to do. If I remember rightly, you on one -occasion, in the early days of our friendship, defined my limits -in a very precise fashion." - -"Yes," I answered, laughing. "It was a singular document. -Philosophy, astronomy, and politics were marked at zero, I -remember. Botany variable, geology profound as regards the -mud-stains from any region within fifty miles of town, chemistry -eccentric, anatomy unsystematic, sensational literature and crime -records unique, violin-player, boxer, swordsman, lawyer, and -self-poisoner by cocaine and tobacco. Those, I think, were the -main points of my analysis." - -Holmes grinned at the last item. "Well," he said, "I say now, as -I said then, that a man should keep his little brain-attic -stocked with all the furniture that he is likely to use, and the -rest he can put away in the lumber-room of his library, where he -can get it if he wants it. Now, for such a case as the one which -has been submitted to us to-night, we need certainly to muster -all our resources. Kindly hand me down the letter K of the -'American Encyclopaedia' which stands upon the shelf beside you. -Thank you. Now let us consider the situation and see what may be -deduced from it. In the first place, we may start with a strong -presumption that Colonel Openshaw had some very strong reason for -leaving America. Men at his time of life do not change all their -habits and exchange willingly the charming climate of Florida for -the lonely life of an English provincial town. His extreme love -of solitude in England suggests the idea that he was in fear of -someone or something, so we may assume as a working hypothesis -that it was fear of someone or something which drove him from -America. As to what it was he feared, we can only deduce that by -considering the formidable letters which were received by himself -and his successors. Did you remark the postmarks of those -letters?" - -"The first was from Pondicherry, the second from Dundee, and the -third from London." - -"From East London. What do you deduce from that?" - -"They are all seaports. That the writer was on board of a ship." - -"Excellent. We have already a clue. There can be no doubt that -the probability--the strong probability--is that the writer was -on board of a ship. And now let us consider another point. In the -case of Pondicherry, seven weeks elapsed between the threat and -its fulfilment, in Dundee it was only some three or four days. -Does that suggest anything?" - -"A greater distance to travel." - -"But the letter had also a greater distance to come." - -"Then I do not see the point." - -"There is at least a presumption that the vessel in which the man -or men are is a sailing-ship. It looks as if they always send -their singular warning or token before them when starting upon -their mission. You see how quickly the deed followed the sign -when it came from Dundee. If they had come from Pondicherry in a -steamer they would have arrived almost as soon as their letter. -But, as a matter of fact, seven weeks elapsed. I think that those -seven weeks represented the difference between the mail-boat which -brought the letter and the sailing vessel which brought the -writer." - -"It is possible." - -"More than that. It is probable. And now you see the deadly -urgency of this new case, and why I urged young Openshaw to -caution. The blow has always fallen at the end of the time which -it would take the senders to travel the distance. But this one -comes from London, and therefore we cannot count upon delay." - -"Good God!" I cried. "What can it mean, this relentless -persecution?" - -"The papers which Openshaw carried are obviously of vital -importance to the person or persons in the sailing-ship. I think -that it is quite clear that there must be more than one of them. -A single man could not have carried out two deaths in such a way -as to deceive a coroner's jury. There must have been several in -it, and they must have been men of resource and determination. -Their papers they mean to have, be the holder of them who it may. -In this way you see K. K. K. ceases to be the initials of an -individual and becomes the badge of a society." - -"But of what society?" - -"Have you never--" said Sherlock Holmes, bending forward and -sinking his voice--"have you never heard of the Ku Klux Klan?" - -"I never have." - -Holmes turned over the leaves of the book upon his knee. "Here it -is," said he presently: - -"'Ku Klux Klan. A name derived from the fanciful resemblance to -the sound produced by cocking a rifle. This terrible secret -society was formed by some ex-Confederate soldiers in the -Southern states after the Civil War, and it rapidly formed local -branches in different parts of the country, notably in Tennessee, -Louisiana, the Carolinas, Georgia, and Florida. Its power was -used for political purposes, principally for the terrorising of -the negro voters and the murdering and driving from the country -of those who were opposed to its views. Its outrages were usually -preceded by a warning sent to the marked man in some fantastic -but generally recognised shape--a sprig of oak-leaves in some -parts, melon seeds or orange pips in others. On receiving this -the victim might either openly abjure his former ways, or might -fly from the country. If he braved the matter out, death would -unfailingly come upon him, and usually in some strange and -unforeseen manner. So perfect was the organisation of the -society, and so systematic its methods, that there is hardly a -case upon record where any man succeeded in braving it with -impunity, or in which any of its outrages were traced home to the -perpetrators. For some years the organisation flourished in spite -of the efforts of the United States government and of the better -classes of the community in the South. Eventually, in the year -1869, the movement rather suddenly collapsed, although there have -been sporadic outbreaks of the same sort since that date.' - -"You will observe," said Holmes, laying down the volume, "that -the sudden breaking up of the society was coincident with the -disappearance of Openshaw from America with their papers. It may -well have been cause and effect. It is no wonder that he and his -family have some of the more implacable spirits upon their track. -You can understand that this register and diary may implicate -some of the first men in the South, and that there may be many -who will not sleep easy at night until it is recovered." - -"Then the page we have seen--" - -"Is such as we might expect. It ran, if I remember right, 'sent -the pips to A, B, and C'--that is, sent the society's warning to -them. Then there are successive entries that A and B cleared, or -left the country, and finally that C was visited, with, I fear, a -sinister result for C. Well, I think, Doctor, that we may let -some light into this dark place, and I believe that the only -chance young Openshaw has in the meantime is to do what I have -told him. There is nothing more to be said or to be done -to-night, so hand me over my violin and let us try to forget for -half an hour the miserable weather and the still more miserable -ways of our fellow-men." - - -It had cleared in the morning, and the sun was shining with a -subdued brightness through the dim veil which hangs over the -great city. Sherlock Holmes was already at breakfast when I came -down. - -"You will excuse me for not waiting for you," said he; "I have, I -foresee, a very busy day before me in looking into this case of -young Openshaw's." - -"What steps will you take?" I asked. - -"It will very much depend upon the results of my first inquiries. -I may have to go down to Horsham, after all." - -"You will not go there first?" - -"No, I shall commence with the City. Just ring the bell and the -maid will bring up your coffee." - -As I waited, I lifted the unopened newspaper from the table and -glanced my eye over it. It rested upon a heading which sent a -chill to my heart. - -"Holmes," I cried, "you are too late." - -"Ah!" said he, laying down his cup, "I feared as much. How was it -done?" He spoke calmly, but I could see that he was deeply moved. - -"My eye caught the name of Openshaw, and the heading 'Tragedy -Near Waterloo Bridge.' Here is the account: - -"Between nine and ten last night Police-Constable Cook, of the H -Division, on duty near Waterloo Bridge, heard a cry for help and -a splash in the water. The night, however, was extremely dark and -stormy, so that, in spite of the help of several passers-by, it -was quite impossible to effect a rescue. The alarm, however, was -given, and, by the aid of the water-police, the body was -eventually recovered. It proved to be that of a young gentleman -whose name, as it appears from an envelope which was found in his -pocket, was John Openshaw, and whose residence is near Horsham. -It is conjectured that he may have been hurrying down to catch -the last train from Waterloo Station, and that in his haste and -the extreme darkness he missed his path and walked over the edge -of one of the small landing-places for river steamboats. The body -exhibited no traces of violence, and there can be no doubt that -the deceased had been the victim of an unfortunate accident, -which should have the effect of calling the attention of the -authorities to the condition of the riverside landing-stages." - -We sat in silence for some minutes, Holmes more depressed and -shaken than I had ever seen him. - -"That hurts my pride, Watson," he said at last. "It is a petty -feeling, no doubt, but it hurts my pride. It becomes a personal -matter with me now, and, if God sends me health, I shall set my -hand upon this gang. That he should come to me for help, and that -I should send him away to his death--!" He sprang from his chair -and paced about the room in uncontrollable agitation, with a -flush upon his sallow cheeks and a nervous clasping and -unclasping of his long thin hands. - -"They must be cunning devils," he exclaimed at last. "How could -they have decoyed him down there? The Embankment is not on the -direct line to the station. The bridge, no doubt, was too -crowded, even on such a night, for their purpose. Well, Watson, -we shall see who will win in the long run. I am going out now!" - -"To the police?" - -"No; I shall be my own police. When I have spun the web they may -take the flies, but not before." - -All day I was engaged in my professional work, and it was late in -the evening before I returned to Baker Street. Sherlock Holmes -had not come back yet. It was nearly ten o'clock before he -entered, looking pale and worn. He walked up to the sideboard, -and tearing a piece from the loaf he devoured it voraciously, -washing it down with a long draught of water. - -"You are hungry," I remarked. - -"Starving. It had escaped my memory. I have had nothing since -breakfast." - -"Nothing?" - -"Not a bite. I had no time to think of it." - -"And how have you succeeded?" - -"Well." - -"You have a clue?" - -"I have them in the hollow of my hand. Young Openshaw shall not -long remain unavenged. Why, Watson, let us put their own devilish -trade-mark upon them. It is well thought of!" - -"What do you mean?" - -He took an orange from the cupboard, and tearing it to pieces he -squeezed out the pips upon the table. Of these he took five and -thrust them into an envelope. On the inside of the flap he wrote -"S. H. for J. O." Then he sealed it and addressed it to "Captain -James Calhoun, Barque 'Lone Star,' Savannah, Georgia." - -"That will await him when he enters port," said he, chuckling. -"It may give him a sleepless night. He will find it as sure a -precursor of his fate as Openshaw did before him." - -"And who is this Captain Calhoun?" - -"The leader of the gang. I shall have the others, but he first." - -"How did you trace it, then?" - -He took a large sheet of paper from his pocket, all covered with -dates and names. - -"I have spent the whole day," said he, "over Lloyd's registers -and files of the old papers, following the future career of every -vessel which touched at Pondicherry in January and February in -'83. There were thirty-six ships of fair tonnage which were -reported there during those months. Of these, one, the 'Lone Star,' -instantly attracted my attention, since, although it was reported -as having cleared from London, the name is that which is given to -one of the states of the Union." - -"Texas, I think." - -"I was not and am not sure which; but I knew that the ship must -have an American origin." - -"What then?" - -"I searched the Dundee records, and when I found that the barque -'Lone Star' was there in January, '85, my suspicion became a -certainty. I then inquired as to the vessels which lay at present -in the port of London." - -"Yes?" - -"The 'Lone Star' had arrived here last week. I went down to the -Albert Dock and found that she had been taken down the river by -the early tide this morning, homeward bound to Savannah. I wired -to Gravesend and learned that she had passed some time ago, and -as the wind is easterly I have no doubt that she is now past the -Goodwins and not very far from the Isle of Wight." - -"What will you do, then?" - -"Oh, I have my hand upon him. He and the two mates, are as I -learn, the only native-born Americans in the ship. The others are -Finns and Germans. I know, also, that they were all three away -from the ship last night. I had it from the stevedore who has -been loading their cargo. By the time that their sailing-ship -reaches Savannah the mail-boat will have carried this letter, and -the cable will have informed the police of Savannah that these -three gentlemen are badly wanted here upon a charge of murder." - -There is ever a flaw, however, in the best laid of human plans, -and the murderers of John Openshaw were never to receive the -orange pips which would show them that another, as cunning and as -resolute as themselves, was upon their track. Very long and very -severe were the equinoctial gales that year. We waited long for -news of the "Lone Star" of Savannah, but none ever reached us. We -did at last hear that somewhere far out in the Atlantic a -shattered stern-post of a boat was seen swinging in the trough -of a wave, with the letters "L. S." carved upon it, and that is -all which we shall ever know of the fate of the "Lone Star." - - - -ADVENTURE VI. THE MAN WITH THE TWISTED LIP - -Isa Whitney, brother of the late Elias Whitney, D.D., Principal -of the Theological College of St. George's, was much addicted to -opium. The habit grew upon him, as I understand, from some -foolish freak when he was at college; for having read De -Quincey's description of his dreams and sensations, he had -drenched his tobacco with laudanum in an attempt to produce the -same effects. He found, as so many more have done, that the -practice is easier to attain than to get rid of, and for many -years he continued to be a slave to the drug, an object of -mingled horror and pity to his friends and relatives. I can see -him now, with yellow, pasty face, drooping lids, and pin-point -pupils, all huddled in a chair, the wreck and ruin of a noble -man. - -One night--it was in June, '89--there came a ring to my bell, -about the hour when a man gives his first yawn and glances at the -clock. I sat up in my chair, and my wife laid her needle-work -down in her lap and made a little face of disappointment. - -"A patient!" said she. "You'll have to go out." - -I groaned, for I was newly come back from a weary day. - -We heard the door open, a few hurried words, and then quick steps -upon the linoleum. Our own door flew open, and a lady, clad in -some dark-coloured stuff, with a black veil, entered the room. - -"You will excuse my calling so late," she began, and then, -suddenly losing her self-control, she ran forward, threw her arms -about my wife's neck, and sobbed upon her shoulder. "Oh, I'm in -such trouble!" she cried; "I do so want a little help." - -"Why," said my wife, pulling up her veil, "it is Kate Whitney. -How you startled me, Kate! I had not an idea who you were when -you came in." - -"I didn't know what to do, so I came straight to you." That was -always the way. Folk who were in grief came to my wife like birds -to a light-house. - -"It was very sweet of you to come. Now, you must have some wine -and water, and sit here comfortably and tell us all about it. Or -should you rather that I sent James off to bed?" - -"Oh, no, no! I want the doctor's advice and help, too. It's about -Isa. He has not been home for two days. I am so frightened about -him!" - -It was not the first time that she had spoken to us of her -husband's trouble, to me as a doctor, to my wife as an old friend -and school companion. We soothed and comforted her by such words -as we could find. Did she know where her husband was? Was it -possible that we could bring him back to her? - -It seems that it was. She had the surest information that of late -he had, when the fit was on him, made use of an opium den in the -farthest east of the City. Hitherto his orgies had always been -confined to one day, and he had come back, twitching and -shattered, in the evening. But now the spell had been upon him -eight-and-forty hours, and he lay there, doubtless among the -dregs of the docks, breathing in the poison or sleeping off the -effects. There he was to be found, she was sure of it, at the Bar -of Gold, in Upper Swandam Lane. But what was she to do? How could -she, a young and timid woman, make her way into such a place and -pluck her husband out from among the ruffians who surrounded him? - -There was the case, and of course there was but one way out of -it. Might I not escort her to this place? And then, as a second -thought, why should she come at all? I was Isa Whitney's medical -adviser, and as such I had influence over him. I could manage it -better if I were alone. I promised her on my word that I would -send him home in a cab within two hours if he were indeed at the -address which she had given me. And so in ten minutes I had left -my armchair and cheery sitting-room behind me, and was speeding -eastward in a hansom on a strange errand, as it seemed to me at -the time, though the future only could show how strange it was to -be. - -But there was no great difficulty in the first stage of my -adventure. Upper Swandam Lane is a vile alley lurking behind the -high wharves which line the north side of the river to the east -of London Bridge. Between a slop-shop and a gin-shop, approached -by a steep flight of steps leading down to a black gap like the -mouth of a cave, I found the den of which I was in search. -Ordering my cab to wait, I passed down the steps, worn hollow in -the centre by the ceaseless tread of drunken feet; and by the -light of a flickering oil-lamp above the door I found the latch -and made my way into a long, low room, thick and heavy with the -brown opium smoke, and terraced with wooden berths, like the -forecastle of an emigrant ship. - -Through the gloom one could dimly catch a glimpse of bodies lying -in strange fantastic poses, bowed shoulders, bent knees, heads -thrown back, and chins pointing upward, with here and there a -dark, lack-lustre eye turned upon the newcomer. Out of the black -shadows there glimmered little red circles of light, now bright, -now faint, as the burning poison waxed or waned in the bowls of -the metal pipes. The most lay silent, but some muttered to -themselves, and others talked together in a strange, low, -monotonous voice, their conversation coming in gushes, and then -suddenly tailing off into silence, each mumbling out his own -thoughts and paying little heed to the words of his neighbour. At -the farther end was a small brazier of burning charcoal, beside -which on a three-legged wooden stool there sat a tall, thin old -man, with his jaw resting upon his two fists, and his elbows upon -his knees, staring into the fire. - -As I entered, a sallow Malay attendant had hurried up with a pipe -for me and a supply of the drug, beckoning me to an empty berth. - -"Thank you. I have not come to stay," said I. "There is a friend -of mine here, Mr. Isa Whitney, and I wish to speak with him." - -There was a movement and an exclamation from my right, and -peering through the gloom, I saw Whitney, pale, haggard, and -unkempt, staring out at me. - -"My God! It's Watson," said he. He was in a pitiable state of -reaction, with every nerve in a twitter. "I say, Watson, what -o'clock is it?" - -"Nearly eleven." - -"Of what day?" - -"Of Friday, June 19th." - -"Good heavens! I thought it was Wednesday. It is Wednesday. What -d'you want to frighten a chap for?" He sank his face onto his -arms and began to sob in a high treble key. - -"I tell you that it is Friday, man. Your wife has been waiting -this two days for you. You should be ashamed of yourself!" - -"So I am. But you've got mixed, Watson, for I have only been here -a few hours, three pipes, four pipes--I forget how many. But I'll -go home with you. I wouldn't frighten Kate--poor little Kate. -Give me your hand! Have you a cab?" - -"Yes, I have one waiting." - -"Then I shall go in it. But I must owe something. Find what I -owe, Watson. I am all off colour. I can do nothing for myself." - -I walked down the narrow passage between the double row of -sleepers, holding my breath to keep out the vile, stupefying -fumes of the drug, and looking about for the manager. As I passed -the tall man who sat by the brazier I felt a sudden pluck at my -skirt, and a low voice whispered, "Walk past me, and then look -back at me." The words fell quite distinctly upon my ear. I -glanced down. They could only have come from the old man at my -side, and yet he sat now as absorbed as ever, very thin, very -wrinkled, bent with age, an opium pipe dangling down from between -his knees, as though it had dropped in sheer lassitude from his -fingers. I took two steps forward and looked back. It took all my -self-control to prevent me from breaking out into a cry of -astonishment. He had turned his back so that none could see him -but I. His form had filled out, his wrinkles were gone, the dull -eyes had regained their fire, and there, sitting by the fire and -grinning at my surprise, was none other than Sherlock Holmes. He -made a slight motion to me to approach him, and instantly, as he -turned his face half round to the company once more, subsided -into a doddering, loose-lipped senility. - -"Holmes!" I whispered, "what on earth are you doing in this den?" - -"As low as you can," he answered; "I have excellent ears. If you -would have the great kindness to get rid of that sottish friend -of yours I should be exceedingly glad to have a little talk with -you." - -"I have a cab outside." - -"Then pray send him home in it. You may safely trust him, for he -appears to be too limp to get into any mischief. I should -recommend you also to send a note by the cabman to your wife to -say that you have thrown in your lot with me. If you will wait -outside, I shall be with you in five minutes." - -It was difficult to refuse any of Sherlock Holmes' requests, for -they were always so exceedingly definite, and put forward with -such a quiet air of mastery. I felt, however, that when Whitney -was once confined in the cab my mission was practically -accomplished; and for the rest, I could not wish anything better -than to be associated with my friend in one of those singular -adventures which were the normal condition of his existence. In a -few minutes I had written my note, paid Whitney's bill, led him -out to the cab, and seen him driven through the darkness. In a -very short time a decrepit figure had emerged from the opium den, -and I was walking down the street with Sherlock Holmes. For two -streets he shuffled along with a bent back and an uncertain foot. -Then, glancing quickly round, he straightened himself out and -burst into a hearty fit of laughter. - -"I suppose, Watson," said he, "that you imagine that I have added -opium-smoking to cocaine injections, and all the other little -weaknesses on which you have favoured me with your medical -views." - -"I was certainly surprised to find you there." - -"But not more so than I to find you." - -"I came to find a friend." - -"And I to find an enemy." - -"An enemy?" - -"Yes; one of my natural enemies, or, shall I say, my natural -prey. Briefly, Watson, I am in the midst of a very remarkable -inquiry, and I have hoped to find a clue in the incoherent -ramblings of these sots, as I have done before now. Had I been -recognised in that den my life would not have been worth an -hour's purchase; for I have used it before now for my own -purposes, and the rascally Lascar who runs it has sworn to have -vengeance upon me. There is a trap-door at the back of that -building, near the corner of Paul's Wharf, which could tell some -strange tales of what has passed through it upon the moonless -nights." - -"What! You do not mean bodies?" - -"Ay, bodies, Watson. We should be rich men if we had 1000 pounds -for every poor devil who has been done to death in that den. It -is the vilest murder-trap on the whole riverside, and I fear that -Neville St. Clair has entered it never to leave it more. But our -trap should be here." He put his two forefingers between his -teeth and whistled shrilly--a signal which was answered by a -similar whistle from the distance, followed shortly by the rattle -of wheels and the clink of horses' hoofs. - -"Now, Watson," said Holmes, as a tall dog-cart dashed up through -the gloom, throwing out two golden tunnels of yellow light from -its side lanterns. "You'll come with me, won't you?" - -"If I can be of use." - -"Oh, a trusty comrade is always of use; and a chronicler still -more so. My room at The Cedars is a double-bedded one." - -"The Cedars?" - -"Yes; that is Mr. St. Clair's house. I am staying there while I -conduct the inquiry." - -"Where is it, then?" - -"Near Lee, in Kent. We have a seven-mile drive before us." - -"But I am all in the dark." - -"Of course you are. You'll know all about it presently. Jump up -here. All right, John; we shall not need you. Here's half a -crown. Look out for me to-morrow, about eleven. Give her her -head. So long, then!" - -He flicked the horse with his whip, and we dashed away through -the endless succession of sombre and deserted streets, which -widened gradually, until we were flying across a broad -balustraded bridge, with the murky river flowing sluggishly -beneath us. Beyond lay another dull wilderness of bricks and -mortar, its silence broken only by the heavy, regular footfall of -the policeman, or the songs and shouts of some belated party of -revellers. A dull wrack was drifting slowly across the sky, and a -star or two twinkled dimly here and there through the rifts of -the clouds. Holmes drove in silence, with his head sunk upon his -breast, and the air of a man who is lost in thought, while I sat -beside him, curious to learn what this new quest might be which -seemed to tax his powers so sorely, and yet afraid to break in -upon the current of his thoughts. We had driven several miles, -and were beginning to get to the fringe of the belt of suburban -villas, when he shook himself, shrugged his shoulders, and lit up -his pipe with the air of a man who has satisfied himself that he -is acting for the best. - -"You have a grand gift of silence, Watson," said he. "It makes -you quite invaluable as a companion. 'Pon my word, it is a great -thing for me to have someone to talk to, for my own thoughts are -not over-pleasant. I was wondering what I should say to this dear -little woman to-night when she meets me at the door." - -"You forget that I know nothing about it." - -"I shall just have time to tell you the facts of the case before -we get to Lee. It seems absurdly simple, and yet, somehow I can -get nothing to go upon. There's plenty of thread, no doubt, but I -can't get the end of it into my hand. Now, I'll state the case -clearly and concisely to you, Watson, and maybe you can see a -spark where all is dark to me." - -"Proceed, then." - -"Some years ago--to be definite, in May, 1884--there came to Lee -a gentleman, Neville St. Clair by name, who appeared to have -plenty of money. He took a large villa, laid out the grounds very -nicely, and lived generally in good style. By degrees he made -friends in the neighbourhood, and in 1887 he married the daughter -of a local brewer, by whom he now has two children. He had no -occupation, but was interested in several companies and went into -town as a rule in the morning, returning by the 5:14 from Cannon -Street every night. Mr. St. Clair is now thirty-seven years of -age, is a man of temperate habits, a good husband, a very -affectionate father, and a man who is popular with all who know -him. I may add that his whole debts at the present moment, as far -as we have been able to ascertain, amount to 88 pounds 10s., while -he has 220 pounds standing to his credit in the Capital and -Counties Bank. There is no reason, therefore, to think that money -troubles have been weighing upon his mind. - -"Last Monday Mr. Neville St. Clair went into town rather earlier -than usual, remarking before he started that he had two important -commissions to perform, and that he would bring his little boy -home a box of bricks. Now, by the merest chance, his wife -received a telegram upon this same Monday, very shortly after his -departure, to the effect that a small parcel of considerable -value which she had been expecting was waiting for her at the -offices of the Aberdeen Shipping Company. Now, if you are well up -in your London, you will know that the office of the company is -in Fresno Street, which branches out of Upper Swandam Lane, where -you found me to-night. Mrs. St. Clair had her lunch, started for -the City, did some shopping, proceeded to the company's office, -got her packet, and found herself at exactly 4:35 walking through -Swandam Lane on her way back to the station. Have you followed me -so far?" - -"It is very clear." - -"If you remember, Monday was an exceedingly hot day, and Mrs. St. -Clair walked slowly, glancing about in the hope of seeing a cab, -as she did not like the neighbourhood in which she found herself. -While she was walking in this way down Swandam Lane, she suddenly -heard an ejaculation or cry, and was struck cold to see her -husband looking down at her and, as it seemed to her, beckoning -to her from a second-floor window. The window was open, and she -distinctly saw his face, which she describes as being terribly -agitated. He waved his hands frantically to her, and then -vanished from the window so suddenly that it seemed to her that -he had been plucked back by some irresistible force from behind. -One singular point which struck her quick feminine eye was that -although he wore some dark coat, such as he had started to town -in, he had on neither collar nor necktie. - -"Convinced that something was amiss with him, she rushed down the -steps--for the house was none other than the opium den in which -you found me to-night--and running through the front room she -attempted to ascend the stairs which led to the first floor. At -the foot of the stairs, however, she met this Lascar scoundrel of -whom I have spoken, who thrust her back and, aided by a Dane, who -acts as assistant there, pushed her out into the street. Filled -with the most maddening doubts and fears, she rushed down the -lane and, by rare good-fortune, met in Fresno Street a number of -constables with an inspector, all on their way to their beat. The -inspector and two men accompanied her back, and in spite of the -continued resistance of the proprietor, they made their way to -the room in which Mr. St. Clair had last been seen. There was no -sign of him there. In fact, in the whole of that floor there was -no one to be found save a crippled wretch of hideous aspect, who, -it seems, made his home there. Both he and the Lascar stoutly -swore that no one else had been in the front room during the -afternoon. So determined was their denial that the inspector was -staggered, and had almost come to believe that Mrs. St. Clair had -been deluded when, with a cry, she sprang at a small deal box -which lay upon the table and tore the lid from it. Out there fell -a cascade of children's bricks. It was the toy which he had -promised to bring home. - -"This discovery, and the evident confusion which the cripple -showed, made the inspector realise that the matter was serious. -The rooms were carefully examined, and results all pointed to an -abominable crime. The front room was plainly furnished as a -sitting-room and led into a small bedroom, which looked out upon -the back of one of the wharves. Between the wharf and the bedroom -window is a narrow strip, which is dry at low tide but is covered -at high tide with at least four and a half feet of water. The -bedroom window was a broad one and opened from below. On -examination traces of blood were to be seen upon the windowsill, -and several scattered drops were visible upon the wooden floor of -the bedroom. Thrust away behind a curtain in the front room were -all the clothes of Mr. Neville St. Clair, with the exception of -his coat. His boots, his socks, his hat, and his watch--all were -there. There were no signs of violence upon any of these -garments, and there were no other traces of Mr. Neville St. -Clair. Out of the window he must apparently have gone for no -other exit could be discovered, and the ominous bloodstains upon -the sill gave little promise that he could save himself by -swimming, for the tide was at its very highest at the moment of -the tragedy. - -"And now as to the villains who seemed to be immediately -implicated in the matter. The Lascar was known to be a man of the -vilest antecedents, but as, by Mrs. St. Clair's story, he was -known to have been at the foot of the stair within a very few -seconds of her husband's appearance at the window, he could -hardly have been more than an accessory to the crime. His defence -was one of absolute ignorance, and he protested that he had no -knowledge as to the doings of Hugh Boone, his lodger, and that he -could not account in any way for the presence of the missing -gentleman's clothes. - -"So much for the Lascar manager. Now for the sinister cripple who -lives upon the second floor of the opium den, and who was -certainly the last human being whose eyes rested upon Neville St. -Clair. His name is Hugh Boone, and his hideous face is one which -is familiar to every man who goes much to the City. He is a -professional beggar, though in order to avoid the police -regulations he pretends to a small trade in wax vestas. Some -little distance down Threadneedle Street, upon the left-hand -side, there is, as you may have remarked, a small angle in the -wall. Here it is that this creature takes his daily seat, -cross-legged with his tiny stock of matches on his lap, and as he -is a piteous spectacle a small rain of charity descends into the -greasy leather cap which lies upon the pavement beside him. I -have watched the fellow more than once before ever I thought of -making his professional acquaintance, and I have been surprised -at the harvest which he has reaped in a short time. His -appearance, you see, is so remarkable that no one can pass him -without observing him. A shock of orange hair, a pale face -disfigured by a horrible scar, which, by its contraction, has -turned up the outer edge of his upper lip, a bulldog chin, and a -pair of very penetrating dark eyes, which present a singular -contrast to the colour of his hair, all mark him out from amid -the common crowd of mendicants and so, too, does his wit, for he -is ever ready with a reply to any piece of chaff which may be -thrown at him by the passers-by. This is the man whom we now -learn to have been the lodger at the opium den, and to have been -the last man to see the gentleman of whom we are in quest." - -"But a cripple!" said I. "What could he have done single-handed -against a man in the prime of life?" - -"He is a cripple in the sense that he walks with a limp; but in -other respects he appears to be a powerful and well-nurtured man. -Surely your medical experience would tell you, Watson, that -weakness in one limb is often compensated for by exceptional -strength in the others." - -"Pray continue your narrative." - -"Mrs. St. Clair had fainted at the sight of the blood upon the -window, and she was escorted home in a cab by the police, as her -presence could be of no help to them in their investigations. -Inspector Barton, who had charge of the case, made a very careful -examination of the premises, but without finding anything which -threw any light upon the matter. One mistake had been made in not -arresting Boone instantly, as he was allowed some few minutes -during which he might have communicated with his friend the -Lascar, but this fault was soon remedied, and he was seized and -searched, without anything being found which could incriminate -him. There were, it is true, some blood-stains upon his right -shirt-sleeve, but he pointed to his ring-finger, which had been -cut near the nail, and explained that the bleeding came from -there, adding that he had been to the window not long before, and -that the stains which had been observed there came doubtless from -the same source. He denied strenuously having ever seen Mr. -Neville St. Clair and swore that the presence of the clothes in -his room was as much a mystery to him as to the police. As to -Mrs. St. Clair's assertion that she had actually seen her husband -at the window, he declared that she must have been either mad or -dreaming. He was removed, loudly protesting, to the -police-station, while the inspector remained upon the premises in -the hope that the ebbing tide might afford some fresh clue. - -"And it did, though they hardly found upon the mud-bank what they -had feared to find. It was Neville St. Clair's coat, and not -Neville St. Clair, which lay uncovered as the tide receded. And -what do you think they found in the pockets?" - -"I cannot imagine." - -"No, I don't think you would guess. Every pocket stuffed with -pennies and half-pennies--421 pennies and 270 half-pennies. It -was no wonder that it had not been swept away by the tide. But a -human body is a different matter. There is a fierce eddy between -the wharf and the house. It seemed likely enough that the -weighted coat had remained when the stripped body had been sucked -away into the river." - -"But I understand that all the other clothes were found in the -room. Would the body be dressed in a coat alone?" - -"No, sir, but the facts might be met speciously enough. Suppose -that this man Boone had thrust Neville St. Clair through the -window, there is no human eye which could have seen the deed. -What would he do then? It would of course instantly strike him -that he must get rid of the tell-tale garments. He would seize -the coat, then, and be in the act of throwing it out, when it -would occur to him that it would swim and not sink. He has little -time, for he has heard the scuffle downstairs when the wife tried -to force her way up, and perhaps he has already heard from his -Lascar confederate that the police are hurrying up the street. -There is not an instant to be lost. He rushes to some secret -hoard, where he has accumulated the fruits of his beggary, and he -stuffs all the coins upon which he can lay his hands into the -pockets to make sure of the coat's sinking. He throws it out, and -would have done the same with the other garments had not he heard -the rush of steps below, and only just had time to close the -window when the police appeared." - -"It certainly sounds feasible." - -"Well, we will take it as a working hypothesis for want of a -better. Boone, as I have told you, was arrested and taken to the -station, but it could not be shown that there had ever before -been anything against him. He had for years been known as a -professional beggar, but his life appeared to have been a very -quiet and innocent one. There the matter stands at present, and -the questions which have to be solved--what Neville St. Clair was -doing in the opium den, what happened to him when there, where is -he now, and what Hugh Boone had to do with his disappearance--are -all as far from a solution as ever. I confess that I cannot -recall any case within my experience which looked at the first -glance so simple and yet which presented such difficulties." - -While Sherlock Holmes had been detailing this singular series of -events, we had been whirling through the outskirts of the great -town until the last straggling houses had been left behind, and -we rattled along with a country hedge upon either side of us. -Just as he finished, however, we drove through two scattered -villages, where a few lights still glimmered in the windows. - -"We are on the outskirts of Lee," said my companion. "We have -touched on three English counties in our short drive, starting in -Middlesex, passing over an angle of Surrey, and ending in Kent. -See that light among the trees? That is The Cedars, and beside -that lamp sits a woman whose anxious ears have already, I have -little doubt, caught the clink of our horse's feet." - -"But why are you not conducting the case from Baker Street?" I -asked. - -"Because there are many inquiries which must be made out here. -Mrs. St. Clair has most kindly put two rooms at my disposal, and -you may rest assured that she will have nothing but a welcome for -my friend and colleague. I hate to meet her, Watson, when I have -no news of her husband. Here we are. Whoa, there, whoa!" - -We had pulled up in front of a large villa which stood within its -own grounds. A stable-boy had run out to the horse's head, and -springing down, I followed Holmes up the small, winding -gravel-drive which led to the house. As we approached, the door -flew open, and a little blonde woman stood in the opening, clad -in some sort of light mousseline de soie, with a touch of fluffy -pink chiffon at her neck and wrists. She stood with her figure -outlined against the flood of light, one hand upon the door, one -half-raised in her eagerness, her body slightly bent, her head -and face protruded, with eager eyes and parted lips, a standing -question. - -"Well?" she cried, "well?" And then, seeing that there were two -of us, she gave a cry of hope which sank into a groan as she saw -that my companion shook his head and shrugged his shoulders. - -"No good news?" - -"None." - -"No bad?" - -"No." - -"Thank God for that. But come in. You must be weary, for you have -had a long day." - -"This is my friend, Dr. Watson. He has been of most vital use to -me in several of my cases, and a lucky chance has made it -possible for me to bring him out and associate him with this -investigation." - -"I am delighted to see you," said she, pressing my hand warmly. -"You will, I am sure, forgive anything that may be wanting in our -arrangements, when you consider the blow which has come so -suddenly upon us." - -"My dear madam," said I, "I am an old campaigner, and if I were -not I can very well see that no apology is needed. If I can be of -any assistance, either to you or to my friend here, I shall be -indeed happy." - -"Now, Mr. Sherlock Holmes," said the lady as we entered a -well-lit dining-room, upon the table of which a cold supper had -been laid out, "I should very much like to ask you one or two -plain questions, to which I beg that you will give a plain -answer." - -"Certainly, madam." - -"Do not trouble about my feelings. I am not hysterical, nor given -to fainting. I simply wish to hear your real, real opinion." - -"Upon what point?" - -"In your heart of hearts, do you think that Neville is alive?" - -Sherlock Holmes seemed to be embarrassed by the question. -"Frankly, now!" she repeated, standing upon the rug and looking -keenly down at him as he leaned back in a basket-chair. - -"Frankly, then, madam, I do not." - -"You think that he is dead?" - -"I do." - -"Murdered?" - -"I don't say that. Perhaps." - -"And on what day did he meet his death?" - -"On Monday." - -"Then perhaps, Mr. Holmes, you will be good enough to explain how -it is that I have received a letter from him to-day." - -Sherlock Holmes sprang out of his chair as if he had been -galvanised. - -"What!" he roared. - -"Yes, to-day." She stood smiling, holding up a little slip of -paper in the air. - -"May I see it?" - -"Certainly." - -He snatched it from her in his eagerness, and smoothing it out -upon the table he drew over the lamp and examined it intently. I -had left my chair and was gazing at it over his shoulder. The -envelope was a very coarse one and was stamped with the Gravesend -postmark and with the date of that very day, or rather of the day -before, for it was considerably after midnight. - -"Coarse writing," murmured Holmes. "Surely this is not your -husband's writing, madam." - -"No, but the enclosure is." - -"I perceive also that whoever addressed the envelope had to go -and inquire as to the address." - -"How can you tell that?" - -"The name, you see, is in perfectly black ink, which has dried -itself. The rest is of the greyish colour, which shows that -blotting-paper has been used. If it had been written straight -off, and then blotted, none would be of a deep black shade. This -man has written the name, and there has then been a pause before -he wrote the address, which can only mean that he was not -familiar with it. It is, of course, a trifle, but there is -nothing so important as trifles. Let us now see the letter. Ha! -there has been an enclosure here!" - -"Yes, there was a ring. His signet-ring." - -"And you are sure that this is your husband's hand?" - -"One of his hands." - -"One?" - -"His hand when he wrote hurriedly. It is very unlike his usual -writing, and yet I know it well." - -"'Dearest do not be frightened. All will come well. There is a -huge error which it may take some little time to rectify. -Wait in patience.--NEVILLE.' Written in pencil upon the fly-leaf -of a book, octavo size, no water-mark. Hum! Posted to-day in -Gravesend by a man with a dirty thumb. Ha! And the flap has been -gummed, if I am not very much in error, by a person who had been -chewing tobacco. And you have no doubt that it is your husband's -hand, madam?" - -"None. Neville wrote those words." - -"And they were posted to-day at Gravesend. Well, Mrs. St. Clair, -the clouds lighten, though I should not venture to say that the -danger is over." - -"But he must be alive, Mr. Holmes." - -"Unless this is a clever forgery to put us on the wrong scent. -The ring, after all, proves nothing. It may have been taken from -him." - -"No, no; it is, it is his very own writing!" - -"Very well. It may, however, have been written on Monday and only -posted to-day." - -"That is possible." - -"If so, much may have happened between." - -"Oh, you must not discourage me, Mr. Holmes. I know that all is -well with him. There is so keen a sympathy between us that I -should know if evil came upon him. On the very day that I saw him -last he cut himself in the bedroom, and yet I in the dining-room -rushed upstairs instantly with the utmost certainty that -something had happened. Do you think that I would respond to such -a trifle and yet be ignorant of his death?" - -"I have seen too much not to know that the impression of a woman -may be more valuable than the conclusion of an analytical -reasoner. And in this letter you certainly have a very strong -piece of evidence to corroborate your view. But if your husband -is alive and able to write letters, why should he remain away -from you?" - -"I cannot imagine. It is unthinkable." - -"And on Monday he made no remarks before leaving you?" - -"No." - -"And you were surprised to see him in Swandam Lane?" - -"Very much so." - -"Was the window open?" - -"Yes." - -"Then he might have called to you?" - -"He might." - -"He only, as I understand, gave an inarticulate cry?" - -"Yes." - -"A call for help, you thought?" - -"Yes. He waved his hands." - -"But it might have been a cry of surprise. Astonishment at the -unexpected sight of you might cause him to throw up his hands?" - -"It is possible." - -"And you thought he was pulled back?" - -"He disappeared so suddenly." - -"He might have leaped back. You did not see anyone else in the -room?" - -"No, but this horrible man confessed to having been there, and -the Lascar was at the foot of the stairs." - -"Quite so. Your husband, as far as you could see, had his -ordinary clothes on?" - -"But without his collar or tie. I distinctly saw his bare -throat." - -"Had he ever spoken of Swandam Lane?" - -"Never." - -"Had he ever showed any signs of having taken opium?" - -"Never." - -"Thank you, Mrs. St. Clair. Those are the principal points about -which I wished to be absolutely clear. We shall now have a little -supper and then retire, for we may have a very busy day -to-morrow." - -A large and comfortable double-bedded room had been placed at our -disposal, and I was quickly between the sheets, for I was weary -after my night of adventure. Sherlock Holmes was a man, however, -who, when he had an unsolved problem upon his mind, would go for -days, and even for a week, without rest, turning it over, -rearranging his facts, looking at it from every point of view -until he had either fathomed it or convinced himself that his -data were insufficient. It was soon evident to me that he was now -preparing for an all-night sitting. He took off his coat and -waistcoat, put on a large blue dressing-gown, and then wandered -about the room collecting pillows from his bed and cushions from -the sofa and armchairs. With these he constructed a sort of -Eastern divan, upon which he perched himself cross-legged, with -an ounce of shag tobacco and a box of matches laid out in front -of him. In the dim light of the lamp I saw him sitting there, an -old briar pipe between his lips, his eyes fixed vacantly upon the -corner of the ceiling, the blue smoke curling up from him, -silent, motionless, with the light shining upon his strong-set -aquiline features. So he sat as I dropped off to sleep, and so he -sat when a sudden ejaculation caused me to wake up, and I found -the summer sun shining into the apartment. The pipe was still -between his lips, the smoke still curled upward, and the room was -full of a dense tobacco haze, but nothing remained of the heap of -shag which I had seen upon the previous night. - -"Awake, Watson?" he asked. - -"Yes." - -"Game for a morning drive?" - -"Certainly." - -"Then dress. No one is stirring yet, but I know where the -stable-boy sleeps, and we shall soon have the trap out." He -chuckled to himself as he spoke, his eyes twinkled, and he seemed -a different man to the sombre thinker of the previous night. - -As I dressed I glanced at my watch. It was no wonder that no one -was stirring. It was twenty-five minutes past four. I had hardly -finished when Holmes returned with the news that the boy was -putting in the horse. - -"I want to test a little theory of mine," said he, pulling on his -boots. "I think, Watson, that you are now standing in the -presence of one of the most absolute fools in Europe. I deserve -to be kicked from here to Charing Cross. But I think I have the -key of the affair now." - -"And where is it?" I asked, smiling. - -"In the bathroom," he answered. "Oh, yes, I am not joking," he -continued, seeing my look of incredulity. "I have just been -there, and I have taken it out, and I have got it in this -Gladstone bag. Come on, my boy, and we shall see whether it will -not fit the lock." - -We made our way downstairs as quietly as possible, and out into -the bright morning sunshine. In the road stood our horse and -trap, with the half-clad stable-boy waiting at the head. We both -sprang in, and away we dashed down the London Road. A few country -carts were stirring, bearing in vegetables to the metropolis, but -the lines of villas on either side were as silent and lifeless as -some city in a dream. - -"It has been in some points a singular case," said Holmes, -flicking the horse on into a gallop. "I confess that I have been -as blind as a mole, but it is better to learn wisdom late than -never to learn it at all." - -In town the earliest risers were just beginning to look sleepily -from their windows as we drove through the streets of the Surrey -side. Passing down the Waterloo Bridge Road we crossed over the -river, and dashing up Wellington Street wheeled sharply to the -right and found ourselves in Bow Street. Sherlock Holmes was well -known to the force, and the two constables at the door saluted -him. One of them held the horse's head while the other led us in. - -"Who is on duty?" asked Holmes. - -"Inspector Bradstreet, sir." - -"Ah, Bradstreet, how are you?" A tall, stout official had come -down the stone-flagged passage, in a peaked cap and frogged -jacket. "I wish to have a quiet word with you, Bradstreet." -"Certainly, Mr. Holmes. Step into my room here." It was a small, -office-like room, with a huge ledger upon the table, and a -telephone projecting from the wall. The inspector sat down at his -desk. - -"What can I do for you, Mr. Holmes?" - -"I called about that beggarman, Boone--the one who was charged -with being concerned in the disappearance of Mr. Neville St. -Clair, of Lee." - -"Yes. He was brought up and remanded for further inquiries." - -"So I heard. You have him here?" - -"In the cells." - -"Is he quiet?" - -"Oh, he gives no trouble. But he is a dirty scoundrel." - -"Dirty?" - -"Yes, it is all we can do to make him wash his hands, and his -face is as black as a tinker's. Well, when once his case has been -settled, he will have a regular prison bath; and I think, if you -saw him, you would agree with me that he needed it." - -"I should like to see him very much." - -"Would you? That is easily done. Come this way. You can leave -your bag." - -"No, I think that I'll take it." - -"Very good. Come this way, if you please." He led us down a -passage, opened a barred door, passed down a winding stair, and -brought us to a whitewashed corridor with a line of doors on each -side. - -"The third on the right is his," said the inspector. "Here it -is!" He quietly shot back a panel in the upper part of the door -and glanced through. - -"He is asleep," said he. "You can see him very well." - -We both put our eyes to the grating. The prisoner lay with his -face towards us, in a very deep sleep, breathing slowly and -heavily. He was a middle-sized man, coarsely clad as became his -calling, with a coloured shirt protruding through the rent in his -tattered coat. He was, as the inspector had said, extremely -dirty, but the grime which covered his face could not conceal its -repulsive ugliness. A broad wheal from an old scar ran right -across it from eye to chin, and by its contraction had turned up -one side of the upper lip, so that three teeth were exposed in a -perpetual snarl. A shock of very bright red hair grew low over -his eyes and forehead. - -"He's a beauty, isn't he?" said the inspector. - -"He certainly needs a wash," remarked Holmes. "I had an idea that -he might, and I took the liberty of bringing the tools with me." -He opened the Gladstone bag as he spoke, and took out, to my -astonishment, a very large bath-sponge. - -"He! he! You are a funny one," chuckled the inspector. - -"Now, if you will have the great goodness to open that door very -quietly, we will soon make him cut a much more respectable -figure." - -"Well, I don't know why not," said the inspector. "He doesn't -look a credit to the Bow Street cells, does he?" He slipped his -key into the lock, and we all very quietly entered the cell. The -sleeper half turned, and then settled down once more into a deep -slumber. Holmes stooped to the water-jug, moistened his sponge, -and then rubbed it twice vigorously across and down the -prisoner's face. - -"Let me introduce you," he shouted, "to Mr. Neville St. Clair, of -Lee, in the county of Kent." - -Never in my life have I seen such a sight. The man's face peeled -off under the sponge like the bark from a tree. Gone was the -coarse brown tint! Gone, too, was the horrid scar which had -seamed it across, and the twisted lip which had given the -repulsive sneer to the face! A twitch brought away the tangled -red hair, and there, sitting up in his bed, was a pale, -sad-faced, refined-looking man, black-haired and smooth-skinned, -rubbing his eyes and staring about him with sleepy bewilderment. -Then suddenly realising the exposure, he broke into a scream and -threw himself down with his face to the pillow. - -"Great heavens!" cried the inspector, "it is, indeed, the missing -man. I know him from the photograph." - -The prisoner turned with the reckless air of a man who abandons -himself to his destiny. "Be it so," said he. "And pray what am I -charged with?" - -"With making away with Mr. Neville St.-- Oh, come, you can't be -charged with that unless they make a case of attempted suicide of -it," said the inspector with a grin. "Well, I have been -twenty-seven years in the force, but this really takes the cake." - -"If I am Mr. Neville St. Clair, then it is obvious that no crime -has been committed, and that, therefore, I am illegally -detained." - -"No crime, but a very great error has been committed," said -Holmes. "You would have done better to have trusted your wife." - -"It was not the wife; it was the children," groaned the prisoner. -"God help me, I would not have them ashamed of their father. My -God! What an exposure! What can I do?" - -Sherlock Holmes sat down beside him on the couch and patted him -kindly on the shoulder. - -"If you leave it to a court of law to clear the matter up," said -he, "of course you can hardly avoid publicity. On the other hand, -if you convince the police authorities that there is no possible -case against you, I do not know that there is any reason that the -details should find their way into the papers. Inspector -Bradstreet would, I am sure, make notes upon anything which you -might tell us and submit it to the proper authorities. The case -would then never go into court at all." - -"God bless you!" cried the prisoner passionately. "I would have -endured imprisonment, ay, even execution, rather than have left -my miserable secret as a family blot to my children. - -"You are the first who have ever heard my story. My father was a -schoolmaster in Chesterfield, where I received an excellent -education. I travelled in my youth, took to the stage, and -finally became a reporter on an evening paper in London. One day -my editor wished to have a series of articles upon begging in the -metropolis, and I volunteered to supply them. There was the point -from which all my adventures started. It was only by trying -begging as an amateur that I could get the facts upon which to -base my articles. When an actor I had, of course, learned all the -secrets of making up, and had been famous in the green-room for -my skill. I took advantage now of my attainments. I painted my -face, and to make myself as pitiable as possible I made a good -scar and fixed one side of my lip in a twist by the aid of a -small slip of flesh-coloured plaster. Then with a red head of -hair, and an appropriate dress, I took my station in the business -part of the city, ostensibly as a match-seller but really as a -beggar. For seven hours I plied my trade, and when I returned -home in the evening I found to my surprise that I had received no -less than 26s. 4d. - -"I wrote my articles and thought little more of the matter until, -some time later, I backed a bill for a friend and had a writ -served upon me for 25 pounds. I was at my wit's end where to get -the money, but a sudden idea came to me. I begged a fortnight's -grace from the creditor, asked for a holiday from my employers, -and spent the time in begging in the City under my disguise. In -ten days I had the money and had paid the debt. - -"Well, you can imagine how hard it was to settle down to arduous -work at 2 pounds a week when I knew that I could earn as much in -a day by smearing my face with a little paint, laying my cap on -the ground, and sitting still. It was a long fight between my -pride and the money, but the dollars won at last, and I threw up -reporting and sat day after day in the corner which I had first -chosen, inspiring pity by my ghastly face and filling my pockets -with coppers. Only one man knew my secret. He was the keeper of a -low den in which I used to lodge in Swandam Lane, where I could -every morning emerge as a squalid beggar and in the evenings -transform myself into a well-dressed man about town. This fellow, -a Lascar, was well paid by me for his rooms, so that I knew that -my secret was safe in his possession. - -"Well, very soon I found that I was saving considerable sums of -money. I do not mean that any beggar in the streets of London -could earn 700 pounds a year--which is less than my average -takings--but I had exceptional advantages in my power of making -up, and also in a facility of repartee, which improved by -practice and made me quite a recognised character in the City. -All day a stream of pennies, varied by silver, poured in upon me, -and it was a very bad day in which I failed to take 2 pounds. - -"As I grew richer I grew more ambitious, took a house in the -country, and eventually married, without anyone having a -suspicion as to my real occupation. My dear wife knew that I had -business in the City. She little knew what. - -"Last Monday I had finished for the day and was dressing in my -room above the opium den when I looked out of my window and saw, -to my horror and astonishment, that my wife was standing in the -street, with her eyes fixed full upon me. I gave a cry of -surprise, threw up my arms to cover my face, and, rushing to my -confidant, the Lascar, entreated him to prevent anyone from -coming up to me. I heard her voice downstairs, but I knew that -she could not ascend. Swiftly I threw off my clothes, pulled on -those of a beggar, and put on my pigments and wig. Even a wife's -eyes could not pierce so complete a disguise. But then it -occurred to me that there might be a search in the room, and that -the clothes might betray me. I threw open the window, reopening -by my violence a small cut which I had inflicted upon myself in -the bedroom that morning. Then I seized my coat, which was -weighted by the coppers which I had just transferred to it from -the leather bag in which I carried my takings. I hurled it out of -the window, and it disappeared into the Thames. The other clothes -would have followed, but at that moment there was a rush of -constables up the stair, and a few minutes after I found, rather, -I confess, to my relief, that instead of being identified as Mr. -Neville St. Clair, I was arrested as his murderer. - -"I do not know that there is anything else for me to explain. I -was determined to preserve my disguise as long as possible, and -hence my preference for a dirty face. Knowing that my wife would -be terribly anxious, I slipped off my ring and confided it to the -Lascar at a moment when no constable was watching me, together -with a hurried scrawl, telling her that she had no cause to -fear." - -"That note only reached her yesterday," said Holmes. - -"Good God! What a week she must have spent!" - -"The police have watched this Lascar," said Inspector Bradstreet, -"and I can quite understand that he might find it difficult to -post a letter unobserved. Probably he handed it to some sailor -customer of his, who forgot all about it for some days." - -"That was it," said Holmes, nodding approvingly; "I have no doubt -of it. But have you never been prosecuted for begging?" - -"Many times; but what was a fine to me?" - -"It must stop here, however," said Bradstreet. "If the police are -to hush this thing up, there must be no more of Hugh Boone." - -"I have sworn it by the most solemn oaths which a man can take." - -"In that case I think that it is probable that no further steps -may be taken. But if you are found again, then all must come out. -I am sure, Mr. Holmes, that we are very much indebted to you for -having cleared the matter up. I wish I knew how you reach your -results." - -"I reached this one," said my friend, "by sitting upon five -pillows and consuming an ounce of shag. I think, Watson, that if -we drive to Baker Street we shall just be in time for breakfast." - - - -VII. THE ADVENTURE OF THE BLUE CARBUNCLE - -I had called upon my friend Sherlock Holmes upon the second -morning after Christmas, with the intention of wishing him the -compliments of the season. He was lounging upon the sofa in a -purple dressing-gown, a pipe-rack within his reach upon the -right, and a pile of crumpled morning papers, evidently newly -studied, near at hand. Beside the couch was a wooden chair, and -on the angle of the back hung a very seedy and disreputable -hard-felt hat, much the worse for wear, and cracked in several -places. A lens and a forceps lying upon the seat of the chair -suggested that the hat had been suspended in this manner for the -purpose of examination. - -"You are engaged," said I; "perhaps I interrupt you." - -"Not at all. I am glad to have a friend with whom I can discuss -my results. The matter is a perfectly trivial one"--he jerked his -thumb in the direction of the old hat--"but there are points in -connection with it which are not entirely devoid of interest and -even of instruction." - -I seated myself in his armchair and warmed my hands before his -crackling fire, for a sharp frost had set in, and the windows -were thick with the ice crystals. "I suppose," I remarked, "that, -homely as it looks, this thing has some deadly story linked on to -it--that it is the clue which will guide you in the solution of -some mystery and the punishment of some crime." - -"No, no. No crime," said Sherlock Holmes, laughing. "Only one of -those whimsical little incidents which will happen when you have -four million human beings all jostling each other within the -space of a few square miles. Amid the action and reaction of so -dense a swarm of humanity, every possible combination of events -may be expected to take place, and many a little problem will be -presented which may be striking and bizarre without being -criminal. We have already had experience of such." - -"So much so," I remarked, "that of the last six cases which I -have added to my notes, three have been entirely free of any -legal crime." - -"Precisely. You allude to my attempt to recover the Irene Adler -papers, to the singular case of Miss Mary Sutherland, and to the -adventure of the man with the twisted lip. Well, I have no doubt -that this small matter will fall into the same innocent category. -You know Peterson, the commissionaire?" - -"Yes." - -"It is to him that this trophy belongs." - -"It is his hat." - -"No, no, he found it. Its owner is unknown. I beg that you will -look upon it not as a battered billycock but as an intellectual -problem. And, first, as to how it came here. It arrived upon -Christmas morning, in company with a good fat goose, which is, I -have no doubt, roasting at this moment in front of Peterson's -fire. The facts are these: about four o'clock on Christmas -morning, Peterson, who, as you know, is a very honest fellow, was -returning from some small jollification and was making his way -homeward down Tottenham Court Road. In front of him he saw, in -the gaslight, a tallish man, walking with a slight stagger, and -carrying a white goose slung over his shoulder. As he reached the -corner of Goodge Street, a row broke out between this stranger -and a little knot of roughs. One of the latter knocked off the -man's hat, on which he raised his stick to defend himself and, -swinging it over his head, smashed the shop window behind him. -Peterson had rushed forward to protect the stranger from his -assailants; but the man, shocked at having broken the window, and -seeing an official-looking person in uniform rushing towards him, -dropped his goose, took to his heels, and vanished amid the -labyrinth of small streets which lie at the back of Tottenham -Court Road. The roughs had also fled at the appearance of -Peterson, so that he was left in possession of the field of -battle, and also of the spoils of victory in the shape of this -battered hat and a most unimpeachable Christmas goose." - -"Which surely he restored to their owner?" - -"My dear fellow, there lies the problem. It is true that 'For -Mrs. Henry Baker' was printed upon a small card which was tied to -the bird's left leg, and it is also true that the initials 'H. -B.' are legible upon the lining of this hat, but as there are -some thousands of Bakers, and some hundreds of Henry Bakers in -this city of ours, it is not easy to restore lost property to any -one of them." - -"What, then, did Peterson do?" - -"He brought round both hat and goose to me on Christmas morning, -knowing that even the smallest problems are of interest to me. -The goose we retained until this morning, when there were signs -that, in spite of the slight frost, it would be well that it -should be eaten without unnecessary delay. Its finder has carried -it off, therefore, to fulfil the ultimate destiny of a goose, -while I continue to retain the hat of the unknown gentleman who -lost his Christmas dinner." - -"Did he not advertise?" - -"No." - -"Then, what clue could you have as to his identity?" - -"Only as much as we can deduce." - -"From his hat?" - -"Precisely." - -"But you are joking. What can you gather from this old battered -felt?" - -"Here is my lens. You know my methods. What can you gather -yourself as to the individuality of the man who has worn this -article?" - -I took the tattered object in my hands and turned it over rather -ruefully. It was a very ordinary black hat of the usual round -shape, hard and much the worse for wear. The lining had been of -red silk, but was a good deal discoloured. There was no maker's -name; but, as Holmes had remarked, the initials "H. B." were -scrawled upon one side. It was pierced in the brim for a -hat-securer, but the elastic was missing. For the rest, it was -cracked, exceedingly dusty, and spotted in several places, -although there seemed to have been some attempt to hide the -discoloured patches by smearing them with ink. - -"I can see nothing," said I, handing it back to my friend. - -"On the contrary, Watson, you can see everything. You fail, -however, to reason from what you see. You are too timid in -drawing your inferences." - -"Then, pray tell me what it is that you can infer from this hat?" - -He picked it up and gazed at it in the peculiar introspective -fashion which was characteristic of him. "It is perhaps less -suggestive than it might have been," he remarked, "and yet there -are a few inferences which are very distinct, and a few others -which represent at least a strong balance of probability. That -the man was highly intellectual is of course obvious upon the -face of it, and also that he was fairly well-to-do within the -last three years, although he has now fallen upon evil days. He -had foresight, but has less now than formerly, pointing to a -moral retrogression, which, when taken with the decline of his -fortunes, seems to indicate some evil influence, probably drink, -at work upon him. This may account also for the obvious fact that -his wife has ceased to love him." - -"My dear Holmes!" - -"He has, however, retained some degree of self-respect," he -continued, disregarding my remonstrance. "He is a man who leads a -sedentary life, goes out little, is out of training entirely, is -middle-aged, has grizzled hair which he has had cut within the -last few days, and which he anoints with lime-cream. These are -the more patent facts which are to be deduced from his hat. Also, -by the way, that it is extremely improbable that he has gas laid -on in his house." - -"You are certainly joking, Holmes." - -"Not in the least. Is it possible that even now, when I give you -these results, you are unable to see how they are attained?" - -"I have no doubt that I am very stupid, but I must confess that I -am unable to follow you. For example, how did you deduce that -this man was intellectual?" - -For answer Holmes clapped the hat upon his head. It came right -over the forehead and settled upon the bridge of his nose. "It is -a question of cubic capacity," said he; "a man with so large a -brain must have something in it." - -"The decline of his fortunes, then?" - -"This hat is three years old. These flat brims curled at the edge -came in then. It is a hat of the very best quality. Look at the -band of ribbed silk and the excellent lining. If this man could -afford to buy so expensive a hat three years ago, and has had no -hat since, then he has assuredly gone down in the world." - -"Well, that is clear enough, certainly. But how about the -foresight and the moral retrogression?" - -Sherlock Holmes laughed. "Here is the foresight," said he putting -his finger upon the little disc and loop of the hat-securer. -"They are never sold upon hats. If this man ordered one, it is a -sign of a certain amount of foresight, since he went out of his -way to take this precaution against the wind. But since we see -that he has broken the elastic and has not troubled to replace -it, it is obvious that he has less foresight now than formerly, -which is a distinct proof of a weakening nature. On the other -hand, he has endeavoured to conceal some of these stains upon the -felt by daubing them with ink, which is a sign that he has not -entirely lost his self-respect." - -"Your reasoning is certainly plausible." - -"The further points, that he is middle-aged, that his hair is -grizzled, that it has been recently cut, and that he uses -lime-cream, are all to be gathered from a close examination of the -lower part of the lining. The lens discloses a large number of -hair-ends, clean cut by the scissors of the barber. They all -appear to be adhesive, and there is a distinct odour of -lime-cream. This dust, you will observe, is not the gritty, grey -dust of the street but the fluffy brown dust of the house, -showing that it has been hung up indoors most of the time, while -the marks of moisture upon the inside are proof positive that the -wearer perspired very freely, and could therefore, hardly be in -the best of training." - -"But his wife--you said that she had ceased to love him." - -"This hat has not been brushed for weeks. When I see you, my dear -Watson, with a week's accumulation of dust upon your hat, and -when your wife allows you to go out in such a state, I shall fear -that you also have been unfortunate enough to lose your wife's -affection." - -"But he might be a bachelor." - -"Nay, he was bringing home the goose as a peace-offering to his -wife. Remember the card upon the bird's leg." - -"You have an answer to everything. But how on earth do you deduce -that the gas is not laid on in his house?" - -"One tallow stain, or even two, might come by chance; but when I -see no less than five, I think that there can be little doubt -that the individual must be brought into frequent contact with -burning tallow--walks upstairs at night probably with his hat in -one hand and a guttering candle in the other. Anyhow, he never -got tallow-stains from a gas-jet. Are you satisfied?" - -"Well, it is very ingenious," said I, laughing; "but since, as -you said just now, there has been no crime committed, and no harm -done save the loss of a goose, all this seems to be rather a -waste of energy." - -Sherlock Holmes had opened his mouth to reply, when the door flew -open, and Peterson, the commissionaire, rushed into the apartment -with flushed cheeks and the face of a man who is dazed with -astonishment. - -"The goose, Mr. Holmes! The goose, sir!" he gasped. - -"Eh? What of it, then? Has it returned to life and flapped off -through the kitchen window?" Holmes twisted himself round upon -the sofa to get a fairer view of the man's excited face. - -"See here, sir! See what my wife found in its crop!" He held out -his hand and displayed upon the centre of the palm a brilliantly -scintillating blue stone, rather smaller than a bean in size, but -of such purity and radiance that it twinkled like an electric -point in the dark hollow of his hand. - -Sherlock Holmes sat up with a whistle. "By Jove, Peterson!" said -he, "this is treasure trove indeed. I suppose you know what you -have got?" - -"A diamond, sir? A precious stone. It cuts into glass as though -it were putty." - -"It's more than a precious stone. It is the precious stone." - -"Not the Countess of Morcar's blue carbuncle!" I ejaculated. - -"Precisely so. I ought to know its size and shape, seeing that I -have read the advertisement about it in The Times every day -lately. It is absolutely unique, and its value can only be -conjectured, but the reward offered of 1000 pounds is certainly -not within a twentieth part of the market price." - -"A thousand pounds! Great Lord of mercy!" The commissionaire -plumped down into a chair and stared from one to the other of us. - -"That is the reward, and I have reason to know that there are -sentimental considerations in the background which would induce -the Countess to part with half her fortune if she could but -recover the gem." - -"It was lost, if I remember aright, at the Hotel Cosmopolitan," I -remarked. - -"Precisely so, on December 22nd, just five days ago. John Horner, -a plumber, was accused of having abstracted it from the lady's -jewel-case. The evidence against him was so strong that the case -has been referred to the Assizes. I have some account of the -matter here, I believe." He rummaged amid his newspapers, -glancing over the dates, until at last he smoothed one out, -doubled it over, and read the following paragraph: - -"Hotel Cosmopolitan Jewel Robbery. John Horner, 26, plumber, was -brought up upon the charge of having upon the 22nd inst., -abstracted from the jewel-case of the Countess of Morcar the -valuable gem known as the blue carbuncle. James Ryder, -upper-attendant at the hotel, gave his evidence to the effect -that he had shown Horner up to the dressing-room of the Countess -of Morcar upon the day of the robbery in order that he might -solder the second bar of the grate, which was loose. He had -remained with Horner some little time, but had finally been -called away. On returning, he found that Horner had disappeared, -that the bureau had been forced open, and that the small morocco -casket in which, as it afterwards transpired, the Countess was -accustomed to keep her jewel, was lying empty upon the -dressing-table. Ryder instantly gave the alarm, and Horner was -arrested the same evening; but the stone could not be found -either upon his person or in his rooms. Catherine Cusack, maid to -the Countess, deposed to having heard Ryder's cry of dismay on -discovering the robbery, and to having rushed into the room, -where she found matters as described by the last witness. -Inspector Bradstreet, B division, gave evidence as to the arrest -of Horner, who struggled frantically, and protested his innocence -in the strongest terms. Evidence of a previous conviction for -robbery having been given against the prisoner, the magistrate -refused to deal summarily with the offence, but referred it to -the Assizes. Horner, who had shown signs of intense emotion -during the proceedings, fainted away at the conclusion and was -carried out of court." - -"Hum! So much for the police-court," said Holmes thoughtfully, -tossing aside the paper. "The question for us now to solve is the -sequence of events leading from a rifled jewel-case at one end to -the crop of a goose in Tottenham Court Road at the other. You -see, Watson, our little deductions have suddenly assumed a much -more important and less innocent aspect. Here is the stone; the -stone came from the goose, and the goose came from Mr. Henry -Baker, the gentleman with the bad hat and all the other -characteristics with which I have bored you. So now we must set -ourselves very seriously to finding this gentleman and -ascertaining what part he has played in this little mystery. To -do this, we must try the simplest means first, and these lie -undoubtedly in an advertisement in all the evening papers. If -this fail, I shall have recourse to other methods." - -"What will you say?" - -"Give me a pencil and that slip of paper. Now, then: 'Found at -the corner of Goodge Street, a goose and a black felt hat. Mr. -Henry Baker can have the same by applying at 6:30 this evening at -221B, Baker Street.' That is clear and concise." - -"Very. But will he see it?" - -"Well, he is sure to keep an eye on the papers, since, to a poor -man, the loss was a heavy one. He was clearly so scared by his -mischance in breaking the window and by the approach of Peterson -that he thought of nothing but flight, but since then he must -have bitterly regretted the impulse which caused him to drop his -bird. Then, again, the introduction of his name will cause him to -see it, for everyone who knows him will direct his attention to -it. Here you are, Peterson, run down to the advertising agency -and have this put in the evening papers." - -"In which, sir?" - -"Oh, in the Globe, Star, Pall Mall, St. James's, Evening News, -Standard, Echo, and any others that occur to you." - -"Very well, sir. And this stone?" - -"Ah, yes, I shall keep the stone. Thank you. And, I say, -Peterson, just buy a goose on your way back and leave it here -with me, for we must have one to give to this gentleman in place -of the one which your family is now devouring." - -When the commissionaire had gone, Holmes took up the stone and -held it against the light. "It's a bonny thing," said he. "Just -see how it glints and sparkles. Of course it is a nucleus and -focus of crime. Every good stone is. They are the devil's pet -baits. In the larger and older jewels every facet may stand for a -bloody deed. This stone is not yet twenty years old. It was found -in the banks of the Amoy River in southern China and is remarkable -in having every characteristic of the carbuncle, save that it is -blue in shade instead of ruby red. In spite of its youth, it has -already a sinister history. There have been two murders, a -vitriol-throwing, a suicide, and several robberies brought about -for the sake of this forty-grain weight of crystallised charcoal. -Who would think that so pretty a toy would be a purveyor to the -gallows and the prison? I'll lock it up in my strong box now and -drop a line to the Countess to say that we have it." - -"Do you think that this man Horner is innocent?" - -"I cannot tell." - -"Well, then, do you imagine that this other one, Henry Baker, had -anything to do with the matter?" - -"It is, I think, much more likely that Henry Baker is an -absolutely innocent man, who had no idea that the bird which he -was carrying was of considerably more value than if it were made -of solid gold. That, however, I shall determine by a very simple -test if we have an answer to our advertisement." - -"And you can do nothing until then?" - -"Nothing." - -"In that case I shall continue my professional round. But I shall -come back in the evening at the hour you have mentioned, for I -should like to see the solution of so tangled a business." - -"Very glad to see you. I dine at seven. There is a woodcock, I -believe. By the way, in view of recent occurrences, perhaps I -ought to ask Mrs. Hudson to examine its crop." - -I had been delayed at a case, and it was a little after half-past -six when I found myself in Baker Street once more. As I -approached the house I saw a tall man in a Scotch bonnet with a -coat which was buttoned up to his chin waiting outside in the -bright semicircle which was thrown from the fanlight. Just as I -arrived the door was opened, and we were shown up together to -Holmes' room. - -"Mr. Henry Baker, I believe," said he, rising from his armchair -and greeting his visitor with the easy air of geniality which he -could so readily assume. "Pray take this chair by the fire, Mr. -Baker. It is a cold night, and I observe that your circulation is -more adapted for summer than for winter. Ah, Watson, you have -just come at the right time. Is that your hat, Mr. Baker?" - -"Yes, sir, that is undoubtedly my hat." - -He was a large man with rounded shoulders, a massive head, and a -broad, intelligent face, sloping down to a pointed beard of -grizzled brown. A touch of red in nose and cheeks, with a slight -tremor of his extended hand, recalled Holmes' surmise as to his -habits. His rusty black frock-coat was buttoned right up in -front, with the collar turned up, and his lank wrists protruded -from his sleeves without a sign of cuff or shirt. He spoke in a -slow staccato fashion, choosing his words with care, and gave the -impression generally of a man of learning and letters who had had -ill-usage at the hands of fortune. - -"We have retained these things for some days," said Holmes, -"because we expected to see an advertisement from you giving your -address. I am at a loss to know now why you did not advertise." - -Our visitor gave a rather shamefaced laugh. "Shillings have not -been so plentiful with me as they once were," he remarked. "I had -no doubt that the gang of roughs who assaulted me had carried off -both my hat and the bird. I did not care to spend more money in a -hopeless attempt at recovering them." - -"Very naturally. By the way, about the bird, we were compelled to -eat it." - -"To eat it!" Our visitor half rose from his chair in his -excitement. - -"Yes, it would have been of no use to anyone had we not done so. -But I presume that this other goose upon the sideboard, which is -about the same weight and perfectly fresh, will answer your -purpose equally well?" - -"Oh, certainly, certainly," answered Mr. Baker with a sigh of -relief. - -"Of course, we still have the feathers, legs, crop, and so on of -your own bird, so if you wish--" - -The man burst into a hearty laugh. "They might be useful to me as -relics of my adventure," said he, "but beyond that I can hardly -see what use the disjecta membra of my late acquaintance are -going to be to me. No, sir, I think that, with your permission, I -will confine my attentions to the excellent bird which I perceive -upon the sideboard." - -Sherlock Holmes glanced sharply across at me with a slight shrug -of his shoulders. - -"There is your hat, then, and there your bird," said he. "By the -way, would it bore you to tell me where you got the other one -from? I am somewhat of a fowl fancier, and I have seldom seen a -better grown goose." - -"Certainly, sir," said Baker, who had risen and tucked his newly -gained property under his arm. "There are a few of us who -frequent the Alpha Inn, near the Museum--we are to be found in -the Museum itself during the day, you understand. This year our -good host, Windigate by name, instituted a goose club, by which, -on consideration of some few pence every week, we were each to -receive a bird at Christmas. My pence were duly paid, and the -rest is familiar to you. I am much indebted to you, sir, for a -Scotch bonnet is fitted neither to my years nor my gravity." With -a comical pomposity of manner he bowed solemnly to both of us and -strode off upon his way. - -"So much for Mr. Henry Baker," said Holmes when he had closed the -door behind him. "It is quite certain that he knows nothing -whatever about the matter. Are you hungry, Watson?" - -"Not particularly." - -"Then I suggest that we turn our dinner into a supper and follow -up this clue while it is still hot." - -"By all means." - -It was a bitter night, so we drew on our ulsters and wrapped -cravats about our throats. Outside, the stars were shining coldly -in a cloudless sky, and the breath of the passers-by blew out -into smoke like so many pistol shots. Our footfalls rang out -crisply and loudly as we swung through the doctors' quarter, -Wimpole Street, Harley Street, and so through Wigmore Street into -Oxford Street. In a quarter of an hour we were in Bloomsbury at -the Alpha Inn, which is a small public-house at the corner of one -of the streets which runs down into Holborn. Holmes pushed open -the door of the private bar and ordered two glasses of beer from -the ruddy-faced, white-aproned landlord. - -"Your beer should be excellent if it is as good as your geese," -said he. - -"My geese!" The man seemed surprised. - -"Yes. I was speaking only half an hour ago to Mr. Henry Baker, -who was a member of your goose club." - -"Ah! yes, I see. But you see, sir, them's not our geese." - -"Indeed! Whose, then?" - -"Well, I got the two dozen from a salesman in Covent Garden." - -"Indeed? I know some of them. Which was it?" - -"Breckinridge is his name." - -"Ah! I don't know him. Well, here's your good health landlord, -and prosperity to your house. Good-night." - -"Now for Mr. Breckinridge," he continued, buttoning up his coat -as we came out into the frosty air. "Remember, Watson that though -we have so homely a thing as a goose at one end of this chain, we -have at the other a man who will certainly get seven years' penal -servitude unless we can establish his innocence. It is possible -that our inquiry may but confirm his guilt; but, in any case, we -have a line of investigation which has been missed by the police, -and which a singular chance has placed in our hands. Let us -follow it out to the bitter end. Faces to the south, then, and -quick march!" - -We passed across Holborn, down Endell Street, and so through a -zigzag of slums to Covent Garden Market. One of the largest -stalls bore the name of Breckinridge upon it, and the proprietor -a horsey-looking man, with a sharp face and trim side-whiskers was -helping a boy to put up the shutters. - -"Good-evening. It's a cold night," said Holmes. - -The salesman nodded and shot a questioning glance at my -companion. - -"Sold out of geese, I see," continued Holmes, pointing at the -bare slabs of marble. - -"Let you have five hundred to-morrow morning." - -"That's no good." - -"Well, there are some on the stall with the gas-flare." - -"Ah, but I was recommended to you." - -"Who by?" - -"The landlord of the Alpha." - -"Oh, yes; I sent him a couple of dozen." - -"Fine birds they were, too. Now where did you get them from?" - -To my surprise the question provoked a burst of anger from the -salesman. - -"Now, then, mister," said he, with his head cocked and his arms -akimbo, "what are you driving at? Let's have it straight, now." - -"It is straight enough. I should like to know who sold you the -geese which you supplied to the Alpha." - -"Well then, I shan't tell you. So now!" - -"Oh, it is a matter of no importance; but I don't know why you -should be so warm over such a trifle." - -"Warm! You'd be as warm, maybe, if you were as pestered as I am. -When I pay good money for a good article there should be an end -of the business; but it's 'Where are the geese?' and 'Who did you -sell the geese to?' and 'What will you take for the geese?' One -would think they were the only geese in the world, to hear the -fuss that is made over them." - -"Well, I have no connection with any other people who have been -making inquiries," said Holmes carelessly. "If you won't tell us -the bet is off, that is all. But I'm always ready to back my -opinion on a matter of fowls, and I have a fiver on it that the -bird I ate is country bred." - -"Well, then, you've lost your fiver, for it's town bred," snapped -the salesman. - -"It's nothing of the kind." - -"I say it is." - -"I don't believe it." - -"D'you think you know more about fowls than I, who have handled -them ever since I was a nipper? I tell you, all those birds that -went to the Alpha were town bred." - -"You'll never persuade me to believe that." - -"Will you bet, then?" - -"It's merely taking your money, for I know that I am right. But -I'll have a sovereign on with you, just to teach you not to be -obstinate." - -The salesman chuckled grimly. "Bring me the books, Bill," said -he. - -The small boy brought round a small thin volume and a great -greasy-backed one, laying them out together beneath the hanging -lamp. - -"Now then, Mr. Cocksure," said the salesman, "I thought that I -was out of geese, but before I finish you'll find that there is -still one left in my shop. You see this little book?" - -"Well?" - -"That's the list of the folk from whom I buy. D'you see? Well, -then, here on this page are the country folk, and the numbers -after their names are where their accounts are in the big ledger. -Now, then! You see this other page in red ink? Well, that is a -list of my town suppliers. Now, look at that third name. Just -read it out to me." - -"Mrs. Oakshott, 117, Brixton Road--249," read Holmes. - -"Quite so. Now turn that up in the ledger." - -Holmes turned to the page indicated. "Here you are, 'Mrs. -Oakshott, 117, Brixton Road, egg and poultry supplier.'" - -"Now, then, what's the last entry?" - -"'December 22nd. Twenty-four geese at 7s. 6d.'" - -"Quite so. There you are. And underneath?" - -"'Sold to Mr. Windigate of the Alpha, at 12s.'" - -"What have you to say now?" - -Sherlock Holmes looked deeply chagrined. He drew a sovereign from -his pocket and threw it down upon the slab, turning away with the -air of a man whose disgust is too deep for words. A few yards off -he stopped under a lamp-post and laughed in the hearty, noiseless -fashion which was peculiar to him. - -"When you see a man with whiskers of that cut and the 'Pink 'un' -protruding out of his pocket, you can always draw him by a bet," -said he. "I daresay that if I had put 100 pounds down in front of -him, that man would not have given me such complete information -as was drawn from him by the idea that he was doing me on a -wager. Well, Watson, we are, I fancy, nearing the end of our -quest, and the only point which remains to be determined is -whether we should go on to this Mrs. Oakshott to-night, or -whether we should reserve it for to-morrow. It is clear from what -that surly fellow said that there are others besides ourselves -who are anxious about the matter, and I should--" - -His remarks were suddenly cut short by a loud hubbub which broke -out from the stall which we had just left. Turning round we saw a -little rat-faced fellow standing in the centre of the circle of -yellow light which was thrown by the swinging lamp, while -Breckinridge, the salesman, framed in the door of his stall, was -shaking his fists fiercely at the cringing figure. - -"I've had enough of you and your geese," he shouted. "I wish you -were all at the devil together. If you come pestering me any more -with your silly talk I'll set the dog at you. You bring Mrs. -Oakshott here and I'll answer her, but what have you to do with -it? Did I buy the geese off you?" - -"No; but one of them was mine all the same," whined the little -man. - -"Well, then, ask Mrs. Oakshott for it." - -"She told me to ask you." - -"Well, you can ask the King of Proosia, for all I care. I've had -enough of it. Get out of this!" He rushed fiercely forward, and -the inquirer flitted away into the darkness. - -"Ha! this may save us a visit to Brixton Road," whispered Holmes. -"Come with me, and we will see what is to be made of this -fellow." Striding through the scattered knots of people who -lounged round the flaring stalls, my companion speedily overtook -the little man and touched him upon the shoulder. He sprang -round, and I could see in the gas-light that every vestige of -colour had been driven from his face. - -"Who are you, then? What do you want?" he asked in a quavering -voice. - -"You will excuse me," said Holmes blandly, "but I could not help -overhearing the questions which you put to the salesman just now. -I think that I could be of assistance to you." - -"You? Who are you? How could you know anything of the matter?" - -"My name is Sherlock Holmes. It is my business to know what other -people don't know." - -"But you can know nothing of this?" - -"Excuse me, I know everything of it. You are endeavouring to -trace some geese which were sold by Mrs. Oakshott, of Brixton -Road, to a salesman named Breckinridge, by him in turn to Mr. -Windigate, of the Alpha, and by him to his club, of which Mr. -Henry Baker is a member." - -"Oh, sir, you are the very man whom I have longed to meet," cried -the little fellow with outstretched hands and quivering fingers. -"I can hardly explain to you how interested I am in this matter." - -Sherlock Holmes hailed a four-wheeler which was passing. "In that -case we had better discuss it in a cosy room rather than in this -wind-swept market-place," said he. "But pray tell me, before we -go farther, who it is that I have the pleasure of assisting." - -The man hesitated for an instant. "My name is John Robinson," he -answered with a sidelong glance. - -"No, no; the real name," said Holmes sweetly. "It is always -awkward doing business with an alias." - -A flush sprang to the white cheeks of the stranger. "Well then," -said he, "my real name is James Ryder." - -"Precisely so. Head attendant at the Hotel Cosmopolitan. Pray -step into the cab, and I shall soon be able to tell you -everything which you would wish to know." - -The little man stood glancing from one to the other of us with -half-frightened, half-hopeful eyes, as one who is not sure -whether he is on the verge of a windfall or of a catastrophe. -Then he stepped into the cab, and in half an hour we were back in -the sitting-room at Baker Street. Nothing had been said during -our drive, but the high, thin breathing of our new companion, and -the claspings and unclaspings of his hands, spoke of the nervous -tension within him. - -"Here we are!" said Holmes cheerily as we filed into the room. -"The fire looks very seasonable in this weather. You look cold, -Mr. Ryder. Pray take the basket-chair. I will just put on my -slippers before we settle this little matter of yours. Now, then! -You want to know what became of those geese?" - -"Yes, sir." - -"Or rather, I fancy, of that goose. It was one bird, I imagine in -which you were interested--white, with a black bar across the -tail." - -Ryder quivered with emotion. "Oh, sir," he cried, "can you tell -me where it went to?" - -"It came here." - -"Here?" - -"Yes, and a most remarkable bird it proved. I don't wonder that -you should take an interest in it. It laid an egg after it was -dead--the bonniest, brightest little blue egg that ever was seen. -I have it here in my museum." - -Our visitor staggered to his feet and clutched the mantelpiece -with his right hand. Holmes unlocked his strong-box and held up -the blue carbuncle, which shone out like a star, with a cold, -brilliant, many-pointed radiance. Ryder stood glaring with a -drawn face, uncertain whether to claim or to disown it. - -"The game's up, Ryder," said Holmes quietly. "Hold up, man, or -you'll be into the fire! Give him an arm back into his chair, -Watson. He's not got blood enough to go in for felony with -impunity. Give him a dash of brandy. So! Now he looks a little -more human. What a shrimp it is, to be sure!" - -For a moment he had staggered and nearly fallen, but the brandy -brought a tinge of colour into his cheeks, and he sat staring -with frightened eyes at his accuser. - -"I have almost every link in my hands, and all the proofs which I -could possibly need, so there is little which you need tell me. -Still, that little may as well be cleared up to make the case -complete. You had heard, Ryder, of this blue stone of the -Countess of Morcar's?" - -"It was Catherine Cusack who told me of it," said he in a -crackling voice. - -"I see--her ladyship's waiting-maid. Well, the temptation of -sudden wealth so easily acquired was too much for you, as it has -been for better men before you; but you were not very scrupulous -in the means you used. It seems to me, Ryder, that there is the -making of a very pretty villain in you. You knew that this man -Horner, the plumber, had been concerned in some such matter -before, and that suspicion would rest the more readily upon him. -What did you do, then? You made some small job in my lady's -room--you and your confederate Cusack--and you managed that he -should be the man sent for. Then, when he had left, you rifled -the jewel-case, raised the alarm, and had this unfortunate man -arrested. You then--" - -Ryder threw himself down suddenly upon the rug and clutched at my -companion's knees. "For God's sake, have mercy!" he shrieked. -"Think of my father! Of my mother! It would break their hearts. I -never went wrong before! I never will again. I swear it. I'll -swear it on a Bible. Oh, don't bring it into court! For Christ's -sake, don't!" - -"Get back into your chair!" said Holmes sternly. "It is very well -to cringe and crawl now, but you thought little enough of this -poor Horner in the dock for a crime of which he knew nothing." - -"I will fly, Mr. Holmes. I will leave the country, sir. Then the -charge against him will break down." - -"Hum! We will talk about that. And now let us hear a true account -of the next act. How came the stone into the goose, and how came -the goose into the open market? Tell us the truth, for there lies -your only hope of safety." - -Ryder passed his tongue over his parched lips. "I will tell you -it just as it happened, sir," said he. "When Horner had been -arrested, it seemed to me that it would be best for me to get -away with the stone at once, for I did not know at what moment -the police might not take it into their heads to search me and my -room. There was no place about the hotel where it would be safe. -I went out, as if on some commission, and I made for my sister's -house. She had married a man named Oakshott, and lived in Brixton -Road, where she fattened fowls for the market. All the way there -every man I met seemed to me to be a policeman or a detective; -and, for all that it was a cold night, the sweat was pouring down -my face before I came to the Brixton Road. My sister asked me -what was the matter, and why I was so pale; but I told her that I -had been upset by the jewel robbery at the hotel. Then I went -into the back yard and smoked a pipe and wondered what it would -be best to do. - -"I had a friend once called Maudsley, who went to the bad, and -has just been serving his time in Pentonville. One day he had met -me, and fell into talk about the ways of thieves, and how they -could get rid of what they stole. I knew that he would be true to -me, for I knew one or two things about him; so I made up my mind -to go right on to Kilburn, where he lived, and take him into my -confidence. He would show me how to turn the stone into money. -But how to get to him in safety? I thought of the agonies I had -gone through in coming from the hotel. I might at any moment be -seized and searched, and there would be the stone in my waistcoat -pocket. I was leaning against the wall at the time and looking at -the geese which were waddling about round my feet, and suddenly -an idea came into my head which showed me how I could beat the -best detective that ever lived. - -"My sister had told me some weeks before that I might have the -pick of her geese for a Christmas present, and I knew that she -was always as good as her word. I would take my goose now, and in -it I would carry my stone to Kilburn. There was a little shed in -the yard, and behind this I drove one of the birds--a fine big -one, white, with a barred tail. I caught it, and prying its bill -open, I thrust the stone down its throat as far as my finger -could reach. The bird gave a gulp, and I felt the stone pass -along its gullet and down into its crop. But the creature flapped -and struggled, and out came my sister to know what was the -matter. As I turned to speak to her the brute broke loose and -fluttered off among the others. - -"'Whatever were you doing with that bird, Jem?' says she. - -"'Well,' said I, 'you said you'd give me one for Christmas, and I -was feeling which was the fattest.' - -"'Oh,' says she, 'we've set yours aside for you--Jem's bird, we -call it. It's the big white one over yonder. There's twenty-six -of them, which makes one for you, and one for us, and two dozen -for the market.' - -"'Thank you, Maggie,' says I; 'but if it is all the same to you, -I'd rather have that one I was handling just now.' - -"'The other is a good three pound heavier,' said she, 'and we -fattened it expressly for you.' - -"'Never mind. I'll have the other, and I'll take it now,' said I. - -"'Oh, just as you like,' said she, a little huffed. 'Which is it -you want, then?' - -"'That white one with the barred tail, right in the middle of the -flock.' - -"'Oh, very well. Kill it and take it with you.' - -"Well, I did what she said, Mr. Holmes, and I carried the bird -all the way to Kilburn. I told my pal what I had done, for he was -a man that it was easy to tell a thing like that to. He laughed -until he choked, and we got a knife and opened the goose. My -heart turned to water, for there was no sign of the stone, and I -knew that some terrible mistake had occurred. I left the bird, -rushed back to my sister's, and hurried into the back yard. There -was not a bird to be seen there. - -"'Where are they all, Maggie?' I cried. - -"'Gone to the dealer's, Jem.' - -"'Which dealer's?' - -"'Breckinridge, of Covent Garden.' - -"'But was there another with a barred tail?' I asked, 'the same -as the one I chose?' - -"'Yes, Jem; there were two barred-tailed ones, and I could never -tell them apart.' - -"Well, then, of course I saw it all, and I ran off as hard as my -feet would carry me to this man Breckinridge; but he had sold the -lot at once, and not one word would he tell me as to where they -had gone. You heard him yourselves to-night. Well, he has always -answered me like that. My sister thinks that I am going mad. -Sometimes I think that I am myself. And now--and now I am myself -a branded thief, without ever having touched the wealth for which -I sold my character. God help me! God help me!" He burst into -convulsive sobbing, with his face buried in his hands. - -There was a long silence, broken only by his heavy breathing and -by the measured tapping of Sherlock Holmes' finger-tips upon the -edge of the table. Then my friend rose and threw open the door. - -"Get out!" said he. - -"What, sir! Oh, Heaven bless you!" - -"No more words. Get out!" - -And no more words were needed. There was a rush, a clatter upon -the stairs, the bang of a door, and the crisp rattle of running -footfalls from the street. - -"After all, Watson," said Holmes, reaching up his hand for his -clay pipe, "I am not retained by the police to supply their -deficiencies. If Horner were in danger it would be another thing; -but this fellow will not appear against him, and the case must -collapse. I suppose that I am commuting a felony, but it is just -possible that I am saving a soul. This fellow will not go wrong -again; he is too terribly frightened. Send him to gaol now, and -you make him a gaol-bird for life. Besides, it is the season of -forgiveness. Chance has put in our way a most singular and -whimsical problem, and its solution is its own reward. If you -will have the goodness to touch the bell, Doctor, we will begin -another investigation, in which, also a bird will be the chief -feature." - - - -VIII. THE ADVENTURE OF THE SPECKLED BAND - -On glancing over my notes of the seventy odd cases in which I -have during the last eight years studied the methods of my friend -Sherlock Holmes, I find many tragic, some comic, a large number -merely strange, but none commonplace; for, working as he did -rather for the love of his art than for the acquirement of -wealth, he refused to associate himself with any investigation -which did not tend towards the unusual, and even the fantastic. -Of all these varied cases, however, I cannot recall any which -presented more singular features than that which was associated -with the well-known Surrey family of the Roylotts of Stoke Moran. -The events in question occurred in the early days of my -association with Holmes, when we were sharing rooms as bachelors -in Baker Street. It is possible that I might have placed them -upon record before, but a promise of secrecy was made at the -time, from which I have only been freed during the last month by -the untimely death of the lady to whom the pledge was given. It -is perhaps as well that the facts should now come to light, for I -have reasons to know that there are widespread rumours as to the -death of Dr. Grimesby Roylott which tend to make the matter even -more terrible than the truth. - -It was early in April in the year '83 that I woke one morning to -find Sherlock Holmes standing, fully dressed, by the side of my -bed. He was a late riser, as a rule, and as the clock on the -mantelpiece showed me that it was only a quarter-past seven, I -blinked up at him in some surprise, and perhaps just a little -resentment, for I was myself regular in my habits. - -"Very sorry to knock you up, Watson," said he, "but it's the -common lot this morning. Mrs. Hudson has been knocked up, she -retorted upon me, and I on you." - -"What is it, then--a fire?" - -"No; a client. It seems that a young lady has arrived in a -considerable state of excitement, who insists upon seeing me. She -is waiting now in the sitting-room. Now, when young ladies wander -about the metropolis at this hour of the morning, and knock -sleepy people up out of their beds, I presume that it is -something very pressing which they have to communicate. Should it -prove to be an interesting case, you would, I am sure, wish to -follow it from the outset. I thought, at any rate, that I should -call you and give you the chance." - -"My dear fellow, I would not miss it for anything." - -I had no keener pleasure than in following Holmes in his -professional investigations, and in admiring the rapid -deductions, as swift as intuitions, and yet always founded on a -logical basis with which he unravelled the problems which were -submitted to him. I rapidly threw on my clothes and was ready in -a few minutes to accompany my friend down to the sitting-room. A -lady dressed in black and heavily veiled, who had been sitting in -the window, rose as we entered. - -"Good-morning, madam," said Holmes cheerily. "My name is Sherlock -Holmes. This is my intimate friend and associate, Dr. Watson, -before whom you can speak as freely as before myself. Ha! I am -glad to see that Mrs. Hudson has had the good sense to light the -fire. Pray draw up to it, and I shall order you a cup of hot -coffee, for I observe that you are shivering." - -"It is not cold which makes me shiver," said the woman in a low -voice, changing her seat as requested. - -"What, then?" - -"It is fear, Mr. Holmes. It is terror." She raised her veil as -she spoke, and we could see that she was indeed in a pitiable -state of agitation, her face all drawn and grey, with restless -frightened eyes, like those of some hunted animal. Her features -and figure were those of a woman of thirty, but her hair was shot -with premature grey, and her expression was weary and haggard. -Sherlock Holmes ran her over with one of his quick, -all-comprehensive glances. - -"You must not fear," said he soothingly, bending forward and -patting her forearm. "We shall soon set matters right, I have no -doubt. You have come in by train this morning, I see." - -"You know me, then?" - -"No, but I observe the second half of a return ticket in the palm -of your left glove. You must have started early, and yet you had -a good drive in a dog-cart, along heavy roads, before you reached -the station." - -The lady gave a violent start and stared in bewilderment at my -companion. - -"There is no mystery, my dear madam," said he, smiling. "The left -arm of your jacket is spattered with mud in no less than seven -places. The marks are perfectly fresh. There is no vehicle save a -dog-cart which throws up mud in that way, and then only when you -sit on the left-hand side of the driver." - -"Whatever your reasons may be, you are perfectly correct," said -she. "I started from home before six, reached Leatherhead at -twenty past, and came in by the first train to Waterloo. Sir, I -can stand this strain no longer; I shall go mad if it continues. -I have no one to turn to--none, save only one, who cares for me, -and he, poor fellow, can be of little aid. I have heard of you, -Mr. Holmes; I have heard of you from Mrs. Farintosh, whom you -helped in the hour of her sore need. It was from her that I had -your address. Oh, sir, do you not think that you could help me, -too, and at least throw a little light through the dense darkness -which surrounds me? At present it is out of my power to reward -you for your services, but in a month or six weeks I shall be -married, with the control of my own income, and then at least you -shall not find me ungrateful." - -Holmes turned to his desk and, unlocking it, drew out a small -case-book, which he consulted. - -"Farintosh," said he. "Ah yes, I recall the case; it was -concerned with an opal tiara. I think it was before your time, -Watson. I can only say, madam, that I shall be happy to devote -the same care to your case as I did to that of your friend. As to -reward, my profession is its own reward; but you are at liberty -to defray whatever expenses I may be put to, at the time which -suits you best. And now I beg that you will lay before us -everything that may help us in forming an opinion upon the -matter." - -"Alas!" replied our visitor, "the very horror of my situation -lies in the fact that my fears are so vague, and my suspicions -depend so entirely upon small points, which might seem trivial to -another, that even he to whom of all others I have a right to -look for help and advice looks upon all that I tell him about it -as the fancies of a nervous woman. He does not say so, but I can -read it from his soothing answers and averted eyes. But I have -heard, Mr. Holmes, that you can see deeply into the manifold -wickedness of the human heart. You may advise me how to walk amid -the dangers which encompass me." - -"I am all attention, madam." - -"My name is Helen Stoner, and I am living with my stepfather, who -is the last survivor of one of the oldest Saxon families in -England, the Roylotts of Stoke Moran, on the western border of -Surrey." - -Holmes nodded his head. "The name is familiar to me," said he. - -"The family was at one time among the richest in England, and the -estates extended over the borders into Berkshire in the north, -and Hampshire in the west. In the last century, however, four -successive heirs were of a dissolute and wasteful disposition, -and the family ruin was eventually completed by a gambler in the -days of the Regency. Nothing was left save a few acres of ground, -and the two-hundred-year-old house, which is itself crushed under -a heavy mortgage. The last squire dragged out his existence -there, living the horrible life of an aristocratic pauper; but -his only son, my stepfather, seeing that he must adapt himself to -the new conditions, obtained an advance from a relative, which -enabled him to take a medical degree and went out to Calcutta, -where, by his professional skill and his force of character, he -established a large practice. In a fit of anger, however, caused -by some robberies which had been perpetrated in the house, he -beat his native butler to death and narrowly escaped a capital -sentence. As it was, he suffered a long term of imprisonment and -afterwards returned to England a morose and disappointed man. - -"When Dr. Roylott was in India he married my mother, Mrs. Stoner, -the young widow of Major-General Stoner, of the Bengal Artillery. -My sister Julia and I were twins, and we were only two years old -at the time of my mother's re-marriage. She had a considerable -sum of money--not less than 1000 pounds a year--and this she -bequeathed to Dr. Roylott entirely while we resided with him, -with a provision that a certain annual sum should be allowed to -each of us in the event of our marriage. Shortly after our return -to England my mother died--she was killed eight years ago in a -railway accident near Crewe. Dr. Roylott then abandoned his -attempts to establish himself in practice in London and took us -to live with him in the old ancestral house at Stoke Moran. The -money which my mother had left was enough for all our wants, and -there seemed to be no obstacle to our happiness. - -"But a terrible change came over our stepfather about this time. -Instead of making friends and exchanging visits with our -neighbours, who had at first been overjoyed to see a Roylott of -Stoke Moran back in the old family seat, he shut himself up in -his house and seldom came out save to indulge in ferocious -quarrels with whoever might cross his path. Violence of temper -approaching to mania has been hereditary in the men of the -family, and in my stepfather's case it had, I believe, been -intensified by his long residence in the tropics. A series of -disgraceful brawls took place, two of which ended in the -police-court, until at last he became the terror of the village, -and the folks would fly at his approach, for he is a man of -immense strength, and absolutely uncontrollable in his anger. - -"Last week he hurled the local blacksmith over a parapet into a -stream, and it was only by paying over all the money which I -could gather together that I was able to avert another public -exposure. He had no friends at all save the wandering gipsies, -and he would give these vagabonds leave to encamp upon the few -acres of bramble-covered land which represent the family estate, -and would accept in return the hospitality of their tents, -wandering away with them sometimes for weeks on end. He has a -passion also for Indian animals, which are sent over to him by a -correspondent, and he has at this moment a cheetah and a baboon, -which wander freely over his grounds and are feared by the -villagers almost as much as their master. - -"You can imagine from what I say that my poor sister Julia and I -had no great pleasure in our lives. No servant would stay with -us, and for a long time we did all the work of the house. She was -but thirty at the time of her death, and yet her hair had already -begun to whiten, even as mine has." - -"Your sister is dead, then?" - -"She died just two years ago, and it is of her death that I wish -to speak to you. You can understand that, living the life which I -have described, we were little likely to see anyone of our own -age and position. We had, however, an aunt, my mother's maiden -sister, Miss Honoria Westphail, who lives near Harrow, and we -were occasionally allowed to pay short visits at this lady's -house. Julia went there at Christmas two years ago, and met there -a half-pay major of marines, to whom she became engaged. My -stepfather learned of the engagement when my sister returned and -offered no objection to the marriage; but within a fortnight of -the day which had been fixed for the wedding, the terrible event -occurred which has deprived me of my only companion." - -Sherlock Holmes had been leaning back in his chair with his eyes -closed and his head sunk in a cushion, but he half opened his -lids now and glanced across at his visitor. - -"Pray be precise as to details," said he. - -"It is easy for me to be so, for every event of that dreadful -time is seared into my memory. The manor-house is, as I have -already said, very old, and only one wing is now inhabited. The -bedrooms in this wing are on the ground floor, the sitting-rooms -being in the central block of the buildings. Of these bedrooms -the first is Dr. Roylott's, the second my sister's, and the third -my own. There is no communication between them, but they all open -out into the same corridor. Do I make myself plain?" - -"Perfectly so." - -"The windows of the three rooms open out upon the lawn. That -fatal night Dr. Roylott had gone to his room early, though we -knew that he had not retired to rest, for my sister was troubled -by the smell of the strong Indian cigars which it was his custom -to smoke. She left her room, therefore, and came into mine, where -she sat for some time, chatting about her approaching wedding. At -eleven o'clock she rose to leave me, but she paused at the door -and looked back. - -"'Tell me, Helen,' said she, 'have you ever heard anyone whistle -in the dead of the night?' - -"'Never,' said I. - -"'I suppose that you could not possibly whistle, yourself, in -your sleep?' - -"'Certainly not. But why?' - -"'Because during the last few nights I have always, about three -in the morning, heard a low, clear whistle. I am a light sleeper, -and it has awakened me. I cannot tell where it came from--perhaps -from the next room, perhaps from the lawn. I thought that I would -just ask you whether you had heard it.' - -"'No, I have not. It must be those wretched gipsies in the -plantation.' - -"'Very likely. And yet if it were on the lawn, I wonder that you -did not hear it also.' - -"'Ah, but I sleep more heavily than you.' - -"'Well, it is of no great consequence, at any rate.' She smiled -back at me, closed my door, and a few moments later I heard her -key turn in the lock." - -"Indeed," said Holmes. "Was it your custom always to lock -yourselves in at night?" - -"Always." - -"And why?" - -"I think that I mentioned to you that the doctor kept a cheetah -and a baboon. We had no feeling of security unless our doors were -locked." - -"Quite so. Pray proceed with your statement." - -"I could not sleep that night. A vague feeling of impending -misfortune impressed me. My sister and I, you will recollect, -were twins, and you know how subtle are the links which bind two -souls which are so closely allied. It was a wild night. The wind -was howling outside, and the rain was beating and splashing -against the windows. Suddenly, amid all the hubbub of the gale, -there burst forth the wild scream of a terrified woman. I knew -that it was my sister's voice. I sprang from my bed, wrapped a -shawl round me, and rushed into the corridor. As I opened my door -I seemed to hear a low whistle, such as my sister described, and -a few moments later a clanging sound, as if a mass of metal had -fallen. As I ran down the passage, my sister's door was unlocked, -and revolved slowly upon its hinges. I stared at it -horror-stricken, not knowing what was about to issue from it. By -the light of the corridor-lamp I saw my sister appear at the -opening, her face blanched with terror, her hands groping for -help, her whole figure swaying to and fro like that of a -drunkard. I ran to her and threw my arms round her, but at that -moment her knees seemed to give way and she fell to the ground. -She writhed as one who is in terrible pain, and her limbs were -dreadfully convulsed. At first I thought that she had not -recognised me, but as I bent over her she suddenly shrieked out -in a voice which I shall never forget, 'Oh, my God! Helen! It was -the band! The speckled band!' There was something else which she -would fain have said, and she stabbed with her finger into the -air in the direction of the doctor's room, but a fresh convulsion -seized her and choked her words. I rushed out, calling loudly for -my stepfather, and I met him hastening from his room in his -dressing-gown. When he reached my sister's side she was -unconscious, and though he poured brandy down her throat and sent -for medical aid from the village, all efforts were in vain, for -she slowly sank and died without having recovered her -consciousness. Such was the dreadful end of my beloved sister." - -"One moment," said Holmes, "are you sure about this whistle and -metallic sound? Could you swear to it?" - -"That was what the county coroner asked me at the inquiry. It is -my strong impression that I heard it, and yet, among the crash of -the gale and the creaking of an old house, I may possibly have -been deceived." - -"Was your sister dressed?" - -"No, she was in her night-dress. In her right hand was found the -charred stump of a match, and in her left a match-box." - -"Showing that she had struck a light and looked about her when -the alarm took place. That is important. And what conclusions did -the coroner come to?" - -"He investigated the case with great care, for Dr. Roylott's -conduct had long been notorious in the county, but he was unable -to find any satisfactory cause of death. My evidence showed that -the door had been fastened upon the inner side, and the windows -were blocked by old-fashioned shutters with broad iron bars, -which were secured every night. The walls were carefully sounded, -and were shown to be quite solid all round, and the flooring was -also thoroughly examined, with the same result. The chimney is -wide, but is barred up by four large staples. It is certain, -therefore, that my sister was quite alone when she met her end. -Besides, there were no marks of any violence upon her." - -"How about poison?" - -"The doctors examined her for it, but without success." - -"What do you think that this unfortunate lady died of, then?" - -"It is my belief that she died of pure fear and nervous shock, -though what it was that frightened her I cannot imagine." - -"Were there gipsies in the plantation at the time?" - -"Yes, there are nearly always some there." - -"Ah, and what did you gather from this allusion to a band--a -speckled band?" - -"Sometimes I have thought that it was merely the wild talk of -delirium, sometimes that it may have referred to some band of -people, perhaps to these very gipsies in the plantation. I do not -know whether the spotted handkerchiefs which so many of them wear -over their heads might have suggested the strange adjective which -she used." - -Holmes shook his head like a man who is far from being satisfied. - -"These are very deep waters," said he; "pray go on with your -narrative." - -"Two years have passed since then, and my life has been until -lately lonelier than ever. A month ago, however, a dear friend, -whom I have known for many years, has done me the honour to ask -my hand in marriage. His name is Armitage--Percy Armitage--the -second son of Mr. Armitage, of Crane Water, near Reading. My -stepfather has offered no opposition to the match, and we are to -be married in the course of the spring. Two days ago some repairs -were started in the west wing of the building, and my bedroom -wall has been pierced, so that I have had to move into the -chamber in which my sister died, and to sleep in the very bed in -which she slept. Imagine, then, my thrill of terror when last -night, as I lay awake, thinking over her terrible fate, I -suddenly heard in the silence of the night the low whistle which -had been the herald of her own death. I sprang up and lit the -lamp, but nothing was to be seen in the room. I was too shaken to -go to bed again, however, so I dressed, and as soon as it was -daylight I slipped down, got a dog-cart at the Crown Inn, which -is opposite, and drove to Leatherhead, from whence I have come on -this morning with the one object of seeing you and asking your -advice." - -"You have done wisely," said my friend. "But have you told me -all?" - -"Yes, all." - -"Miss Roylott, you have not. You are screening your stepfather." - -"Why, what do you mean?" - -For answer Holmes pushed back the frill of black lace which -fringed the hand that lay upon our visitor's knee. Five little -livid spots, the marks of four fingers and a thumb, were printed -upon the white wrist. - -"You have been cruelly used," said Holmes. - -The lady coloured deeply and covered over her injured wrist. "He -is a hard man," she said, "and perhaps he hardly knows his own -strength." - -There was a long silence, during which Holmes leaned his chin -upon his hands and stared into the crackling fire. - -"This is a very deep business," he said at last. "There are a -thousand details which I should desire to know before I decide -upon our course of action. Yet we have not a moment to lose. If -we were to come to Stoke Moran to-day, would it be possible for -us to see over these rooms without the knowledge of your -stepfather?" - -"As it happens, he spoke of coming into town to-day upon some -most important business. It is probable that he will be away all -day, and that there would be nothing to disturb you. We have a -housekeeper now, but she is old and foolish, and I could easily -get her out of the way." - -"Excellent. You are not averse to this trip, Watson?" - -"By no means." - -"Then we shall both come. What are you going to do yourself?" - -"I have one or two things which I would wish to do now that I am -in town. But I shall return by the twelve o'clock train, so as to -be there in time for your coming." - -"And you may expect us early in the afternoon. I have myself some -small business matters to attend to. Will you not wait and -breakfast?" - -"No, I must go. My heart is lightened already since I have -confided my trouble to you. I shall look forward to seeing you -again this afternoon." She dropped her thick black veil over her -face and glided from the room. - -"And what do you think of it all, Watson?" asked Sherlock Holmes, -leaning back in his chair. - -"It seems to me to be a most dark and sinister business." - -"Dark enough and sinister enough." - -"Yet if the lady is correct in saying that the flooring and walls -are sound, and that the door, window, and chimney are impassable, -then her sister must have been undoubtedly alone when she met her -mysterious end." - -"What becomes, then, of these nocturnal whistles, and what of the -very peculiar words of the dying woman?" - -"I cannot think." - -"When you combine the ideas of whistles at night, the presence of -a band of gipsies who are on intimate terms with this old doctor, -the fact that we have every reason to believe that the doctor has -an interest in preventing his stepdaughter's marriage, the dying -allusion to a band, and, finally, the fact that Miss Helen Stoner -heard a metallic clang, which might have been caused by one of -those metal bars that secured the shutters falling back into its -place, I think that there is good ground to think that the -mystery may be cleared along those lines." - -"But what, then, did the gipsies do?" - -"I cannot imagine." - -"I see many objections to any such theory." - -"And so do I. It is precisely for that reason that we are going -to Stoke Moran this day. I want to see whether the objections are -fatal, or if they may be explained away. But what in the name of -the devil!" - -The ejaculation had been drawn from my companion by the fact that -our door had been suddenly dashed open, and that a huge man had -framed himself in the aperture. His costume was a peculiar -mixture of the professional and of the agricultural, having a -black top-hat, a long frock-coat, and a pair of high gaiters, -with a hunting-crop swinging in his hand. So tall was he that his -hat actually brushed the cross bar of the doorway, and his -breadth seemed to span it across from side to side. A large face, -seared with a thousand wrinkles, burned yellow with the sun, and -marked with every evil passion, was turned from one to the other -of us, while his deep-set, bile-shot eyes, and his high, thin, -fleshless nose, gave him somewhat the resemblance to a fierce old -bird of prey. - -"Which of you is Holmes?" asked this apparition. - -"My name, sir; but you have the advantage of me," said my -companion quietly. - -"I am Dr. Grimesby Roylott, of Stoke Moran." - -"Indeed, Doctor," said Holmes blandly. "Pray take a seat." - -"I will do nothing of the kind. My stepdaughter has been here. I -have traced her. What has she been saying to you?" - -"It is a little cold for the time of the year," said Holmes. - -"What has she been saying to you?" screamed the old man -furiously. - -"But I have heard that the crocuses promise well," continued my -companion imperturbably. - -"Ha! You put me off, do you?" said our new visitor, taking a step -forward and shaking his hunting-crop. "I know you, you scoundrel! -I have heard of you before. You are Holmes, the meddler." - -My friend smiled. - -"Holmes, the busybody!" - -His smile broadened. - -"Holmes, the Scotland Yard Jack-in-office!" - -Holmes chuckled heartily. "Your conversation is most -entertaining," said he. "When you go out close the door, for -there is a decided draught." - -"I will go when I have said my say. Don't you dare to meddle with -my affairs. I know that Miss Stoner has been here. I traced her! -I am a dangerous man to fall foul of! See here." He stepped -swiftly forward, seized the poker, and bent it into a curve with -his huge brown hands. - -"See that you keep yourself out of my grip," he snarled, and -hurling the twisted poker into the fireplace he strode out of the -room. - -"He seems a very amiable person," said Holmes, laughing. "I am -not quite so bulky, but if he had remained I might have shown him -that my grip was not much more feeble than his own." As he spoke -he picked up the steel poker and, with a sudden effort, -straightened it out again. - -"Fancy his having the insolence to confound me with the official -detective force! This incident gives zest to our investigation, -however, and I only trust that our little friend will not suffer -from her imprudence in allowing this brute to trace her. And now, -Watson, we shall order breakfast, and afterwards I shall walk -down to Doctors' Commons, where I hope to get some data which may -help us in this matter." - - -It was nearly one o'clock when Sherlock Holmes returned from his -excursion. He held in his hand a sheet of blue paper, scrawled -over with notes and figures. - -"I have seen the will of the deceased wife," said he. "To -determine its exact meaning I have been obliged to work out the -present prices of the investments with which it is concerned. The -total income, which at the time of the wife's death was little -short of 1100 pounds, is now, through the fall in agricultural -prices, not more than 750 pounds. Each daughter can claim an -income of 250 pounds, in case of marriage. It is evident, -therefore, that if both girls had married, this beauty would have -had a mere pittance, while even one of them would cripple him to -a very serious extent. My morning's work has not been wasted, -since it has proved that he has the very strongest motives for -standing in the way of anything of the sort. And now, Watson, -this is too serious for dawdling, especially as the old man is -aware that we are interesting ourselves in his affairs; so if you -are ready, we shall call a cab and drive to Waterloo. I should be -very much obliged if you would slip your revolver into your -pocket. An Eley's No. 2 is an excellent argument with gentlemen -who can twist steel pokers into knots. That and a tooth-brush -are, I think, all that we need." - -At Waterloo we were fortunate in catching a train for -Leatherhead, where we hired a trap at the station inn and drove -for four or five miles through the lovely Surrey lanes. It was a -perfect day, with a bright sun and a few fleecy clouds in the -heavens. The trees and wayside hedges were just throwing out -their first green shoots, and the air was full of the pleasant -smell of the moist earth. To me at least there was a strange -contrast between the sweet promise of the spring and this -sinister quest upon which we were engaged. My companion sat in -the front of the trap, his arms folded, his hat pulled down over -his eyes, and his chin sunk upon his breast, buried in the -deepest thought. Suddenly, however, he started, tapped me on the -shoulder, and pointed over the meadows. - -"Look there!" said he. - -A heavily timbered park stretched up in a gentle slope, -thickening into a grove at the highest point. From amid the -branches there jutted out the grey gables and high roof-tree of a -very old mansion. - -"Stoke Moran?" said he. - -"Yes, sir, that be the house of Dr. Grimesby Roylott," remarked -the driver. - -"There is some building going on there," said Holmes; "that is -where we are going." - -"There's the village," said the driver, pointing to a cluster of -roofs some distance to the left; "but if you want to get to the -house, you'll find it shorter to get over this stile, and so by -the foot-path over the fields. There it is, where the lady is -walking." - -"And the lady, I fancy, is Miss Stoner," observed Holmes, shading -his eyes. "Yes, I think we had better do as you suggest." - -We got off, paid our fare, and the trap rattled back on its way -to Leatherhead. - -"I thought it as well," said Holmes as we climbed the stile, -"that this fellow should think we had come here as architects, or -on some definite business. It may stop his gossip. -Good-afternoon, Miss Stoner. You see that we have been as good as -our word." - -Our client of the morning had hurried forward to meet us with a -face which spoke her joy. "I have been waiting so eagerly for -you," she cried, shaking hands with us warmly. "All has turned -out splendidly. Dr. Roylott has gone to town, and it is unlikely -that he will be back before evening." - -"We have had the pleasure of making the doctor's acquaintance," -said Holmes, and in a few words he sketched out what had -occurred. Miss Stoner turned white to the lips as she listened. - -"Good heavens!" she cried, "he has followed me, then." - -"So it appears." - -"He is so cunning that I never know when I am safe from him. What -will he say when he returns?" - -"He must guard himself, for he may find that there is someone -more cunning than himself upon his track. You must lock yourself -up from him to-night. If he is violent, we shall take you away to -your aunt's at Harrow. Now, we must make the best use of our -time, so kindly take us at once to the rooms which we are to -examine." - -The building was of grey, lichen-blotched stone, with a high -central portion and two curving wings, like the claws of a crab, -thrown out on each side. In one of these wings the windows were -broken and blocked with wooden boards, while the roof was partly -caved in, a picture of ruin. The central portion was in little -better repair, but the right-hand block was comparatively modern, -and the blinds in the windows, with the blue smoke curling up -from the chimneys, showed that this was where the family resided. -Some scaffolding had been erected against the end wall, and the -stone-work had been broken into, but there were no signs of any -workmen at the moment of our visit. Holmes walked slowly up and -down the ill-trimmed lawn and examined with deep attention the -outsides of the windows. - -"This, I take it, belongs to the room in which you used to sleep, -the centre one to your sister's, and the one next to the main -building to Dr. Roylott's chamber?" - -"Exactly so. But I am now sleeping in the middle one." - -"Pending the alterations, as I understand. By the way, there does -not seem to be any very pressing need for repairs at that end -wall." - -"There were none. I believe that it was an excuse to move me from -my room." - -"Ah! that is suggestive. Now, on the other side of this narrow -wing runs the corridor from which these three rooms open. There -are windows in it, of course?" - -"Yes, but very small ones. Too narrow for anyone to pass -through." - -"As you both locked your doors at night, your rooms were -unapproachable from that side. Now, would you have the kindness -to go into your room and bar your shutters?" - -Miss Stoner did so, and Holmes, after a careful examination -through the open window, endeavoured in every way to force the -shutter open, but without success. There was no slit through -which a knife could be passed to raise the bar. Then with his -lens he tested the hinges, but they were of solid iron, built -firmly into the massive masonry. "Hum!" said he, scratching his -chin in some perplexity, "my theory certainly presents some -difficulties. No one could pass these shutters if they were -bolted. Well, we shall see if the inside throws any light upon -the matter." - -A small side door led into the whitewashed corridor from which -the three bedrooms opened. Holmes refused to examine the third -chamber, so we passed at once to the second, that in which Miss -Stoner was now sleeping, and in which her sister had met with her -fate. It was a homely little room, with a low ceiling and a -gaping fireplace, after the fashion of old country-houses. A -brown chest of drawers stood in one corner, a narrow -white-counterpaned bed in another, and a dressing-table on the -left-hand side of the window. These articles, with two small -wicker-work chairs, made up all the furniture in the room save -for a square of Wilton carpet in the centre. The boards round and -the panelling of the walls were of brown, worm-eaten oak, so old -and discoloured that it may have dated from the original building -of the house. Holmes drew one of the chairs into a corner and sat -silent, while his eyes travelled round and round and up and down, -taking in every detail of the apartment. - -"Where does that bell communicate with?" he asked at last -pointing to a thick bell-rope which hung down beside the bed, the -tassel actually lying upon the pillow. - -"It goes to the housekeeper's room." - -"It looks newer than the other things?" - -"Yes, it was only put there a couple of years ago." - -"Your sister asked for it, I suppose?" - -"No, I never heard of her using it. We used always to get what we -wanted for ourselves." - -"Indeed, it seemed unnecessary to put so nice a bell-pull there. -You will excuse me for a few minutes while I satisfy myself as to -this floor." He threw himself down upon his face with his lens in -his hand and crawled swiftly backward and forward, examining -minutely the cracks between the boards. Then he did the same with -the wood-work with which the chamber was panelled. Finally he -walked over to the bed and spent some time in staring at it and -in running his eye up and down the wall. Finally he took the -bell-rope in his hand and gave it a brisk tug. - -"Why, it's a dummy," said he. - -"Won't it ring?" - -"No, it is not even attached to a wire. This is very interesting. -You can see now that it is fastened to a hook just above where -the little opening for the ventilator is." - -"How very absurd! I never noticed that before." - -"Very strange!" muttered Holmes, pulling at the rope. "There are -one or two very singular points about this room. For example, -what a fool a builder must be to open a ventilator into another -room, when, with the same trouble, he might have communicated -with the outside air!" - -"That is also quite modern," said the lady. - -"Done about the same time as the bell-rope?" remarked Holmes. - -"Yes, there were several little changes carried out about that -time." - -"They seem to have been of a most interesting character--dummy -bell-ropes, and ventilators which do not ventilate. With your -permission, Miss Stoner, we shall now carry our researches into -the inner apartment." - -Dr. Grimesby Roylott's chamber was larger than that of his -step-daughter, but was as plainly furnished. A camp-bed, a small -wooden shelf full of books, mostly of a technical character, an -armchair beside the bed, a plain wooden chair against the wall, a -round table, and a large iron safe were the principal things -which met the eye. Holmes walked slowly round and examined each -and all of them with the keenest interest. - -"What's in here?" he asked, tapping the safe. - -"My stepfather's business papers." - -"Oh! you have seen inside, then?" - -"Only once, some years ago. I remember that it was full of -papers." - -"There isn't a cat in it, for example?" - -"No. What a strange idea!" - -"Well, look at this!" He took up a small saucer of milk which -stood on the top of it. - -"No; we don't keep a cat. But there is a cheetah and a baboon." - -"Ah, yes, of course! Well, a cheetah is just a big cat, and yet a -saucer of milk does not go very far in satisfying its wants, I -daresay. There is one point which I should wish to determine." He -squatted down in front of the wooden chair and examined the seat -of it with the greatest attention. - -"Thank you. That is quite settled," said he, rising and putting -his lens in his pocket. "Hullo! Here is something interesting!" - -The object which had caught his eye was a small dog lash hung on -one corner of the bed. The lash, however, was curled upon itself -and tied so as to make a loop of whipcord. - -"What do you make of that, Watson?" - -"It's a common enough lash. But I don't know why it should be -tied." - -"That is not quite so common, is it? Ah, me! it's a wicked world, -and when a clever man turns his brains to crime it is the worst -of all. I think that I have seen enough now, Miss Stoner, and -with your permission we shall walk out upon the lawn." - -I had never seen my friend's face so grim or his brow so dark as -it was when we turned from the scene of this investigation. We -had walked several times up and down the lawn, neither Miss -Stoner nor myself liking to break in upon his thoughts before he -roused himself from his reverie. - -"It is very essential, Miss Stoner," said he, "that you should -absolutely follow my advice in every respect." - -"I shall most certainly do so." - -"The matter is too serious for any hesitation. Your life may -depend upon your compliance." - -"I assure you that I am in your hands." - -"In the first place, both my friend and I must spend the night in -your room." - -Both Miss Stoner and I gazed at him in astonishment. - -"Yes, it must be so. Let me explain. I believe that that is the -village inn over there?" - -"Yes, that is the Crown." - -"Very good. Your windows would be visible from there?" - -"Certainly." - -"You must confine yourself to your room, on pretence of a -headache, when your stepfather comes back. Then when you hear him -retire for the night, you must open the shutters of your window, -undo the hasp, put your lamp there as a signal to us, and then -withdraw quietly with everything which you are likely to want -into the room which you used to occupy. I have no doubt that, in -spite of the repairs, you could manage there for one night." - -"Oh, yes, easily." - -"The rest you will leave in our hands." - -"But what will you do?" - -"We shall spend the night in your room, and we shall investigate -the cause of this noise which has disturbed you." - -"I believe, Mr. Holmes, that you have already made up your mind," -said Miss Stoner, laying her hand upon my companion's sleeve. - -"Perhaps I have." - -"Then, for pity's sake, tell me what was the cause of my sister's -death." - -"I should prefer to have clearer proofs before I speak." - -"You can at least tell me whether my own thought is correct, and -if she died from some sudden fright." - -"No, I do not think so. I think that there was probably some more -tangible cause. And now, Miss Stoner, we must leave you for if -Dr. Roylott returned and saw us our journey would be in vain. -Good-bye, and be brave, for if you will do what I have told you, -you may rest assured that we shall soon drive away the dangers -that threaten you." - -Sherlock Holmes and I had no difficulty in engaging a bedroom and -sitting-room at the Crown Inn. They were on the upper floor, and -from our window we could command a view of the avenue gate, and -of the inhabited wing of Stoke Moran Manor House. At dusk we saw -Dr. Grimesby Roylott drive past, his huge form looming up beside -the little figure of the lad who drove him. The boy had some -slight difficulty in undoing the heavy iron gates, and we heard -the hoarse roar of the doctor's voice and saw the fury with which -he shook his clinched fists at him. The trap drove on, and a few -minutes later we saw a sudden light spring up among the trees as -the lamp was lit in one of the sitting-rooms. - -"Do you know, Watson," said Holmes as we sat together in the -gathering darkness, "I have really some scruples as to taking you -to-night. There is a distinct element of danger." - -"Can I be of assistance?" - -"Your presence might be invaluable." - -"Then I shall certainly come." - -"It is very kind of you." - -"You speak of danger. You have evidently seen more in these rooms -than was visible to me." - -"No, but I fancy that I may have deduced a little more. I imagine -that you saw all that I did." - -"I saw nothing remarkable save the bell-rope, and what purpose -that could answer I confess is more than I can imagine." - -"You saw the ventilator, too?" - -"Yes, but I do not think that it is such a very unusual thing to -have a small opening between two rooms. It was so small that a -rat could hardly pass through." - -"I knew that we should find a ventilator before ever we came to -Stoke Moran." - -"My dear Holmes!" - -"Oh, yes, I did. You remember in her statement she said that her -sister could smell Dr. Roylott's cigar. Now, of course that -suggested at once that there must be a communication between the -two rooms. It could only be a small one, or it would have been -remarked upon at the coroner's inquiry. I deduced a ventilator." - -"But what harm can there be in that?" - -"Well, there is at least a curious coincidence of dates. A -ventilator is made, a cord is hung, and a lady who sleeps in the -bed dies. Does not that strike you?" - -"I cannot as yet see any connection." - -"Did you observe anything very peculiar about that bed?" - -"No." - -"It was clamped to the floor. Did you ever see a bed fastened -like that before?" - -"I cannot say that I have." - -"The lady could not move her bed. It must always be in the same -relative position to the ventilator and to the rope--or so we may -call it, since it was clearly never meant for a bell-pull." - -"Holmes," I cried, "I seem to see dimly what you are hinting at. -We are only just in time to prevent some subtle and horrible -crime." - -"Subtle enough and horrible enough. When a doctor does go wrong -he is the first of criminals. He has nerve and he has knowledge. -Palmer and Pritchard were among the heads of their profession. -This man strikes even deeper, but I think, Watson, that we shall -be able to strike deeper still. But we shall have horrors enough -before the night is over; for goodness' sake let us have a quiet -pipe and turn our minds for a few hours to something more -cheerful." - - -About nine o'clock the light among the trees was extinguished, -and all was dark in the direction of the Manor House. Two hours -passed slowly away, and then, suddenly, just at the stroke of -eleven, a single bright light shone out right in front of us. - -"That is our signal," said Holmes, springing to his feet; "it -comes from the middle window." - -As we passed out he exchanged a few words with the landlord, -explaining that we were going on a late visit to an acquaintance, -and that it was possible that we might spend the night there. A -moment later we were out on the dark road, a chill wind blowing -in our faces, and one yellow light twinkling in front of us -through the gloom to guide us on our sombre errand. - -There was little difficulty in entering the grounds, for -unrepaired breaches gaped in the old park wall. Making our way -among the trees, we reached the lawn, crossed it, and were about -to enter through the window when out from a clump of laurel -bushes there darted what seemed to be a hideous and distorted -child, who threw itself upon the grass with writhing limbs and -then ran swiftly across the lawn into the darkness. - -"My God!" I whispered; "did you see it?" - -Holmes was for the moment as startled as I. His hand closed like -a vice upon my wrist in his agitation. Then he broke into a low -laugh and put his lips to my ear. - -"It is a nice household," he murmured. "That is the baboon." - -I had forgotten the strange pets which the doctor affected. There -was a cheetah, too; perhaps we might find it upon our shoulders -at any moment. I confess that I felt easier in my mind when, -after following Holmes' example and slipping off my shoes, I -found myself inside the bedroom. My companion noiselessly closed -the shutters, moved the lamp onto the table, and cast his eyes -round the room. All was as we had seen it in the daytime. Then -creeping up to me and making a trumpet of his hand, he whispered -into my ear again so gently that it was all that I could do to -distinguish the words: - -"The least sound would be fatal to our plans." - -I nodded to show that I had heard. - -"We must sit without light. He would see it through the -ventilator." - -I nodded again. - -"Do not go asleep; your very life may depend upon it. Have your -pistol ready in case we should need it. I will sit on the side of -the bed, and you in that chair." - -I took out my revolver and laid it on the corner of the table. - -Holmes had brought up a long thin cane, and this he placed upon -the bed beside him. By it he laid the box of matches and the -stump of a candle. Then he turned down the lamp, and we were left -in darkness. - -How shall I ever forget that dreadful vigil? I could not hear a -sound, not even the drawing of a breath, and yet I knew that my -companion sat open-eyed, within a few feet of me, in the same -state of nervous tension in which I was myself. The shutters cut -off the least ray of light, and we waited in absolute darkness. - -From outside came the occasional cry of a night-bird, and once at -our very window a long drawn catlike whine, which told us that -the cheetah was indeed at liberty. Far away we could hear the -deep tones of the parish clock, which boomed out every quarter of -an hour. How long they seemed, those quarters! Twelve struck, and -one and two and three, and still we sat waiting silently for -whatever might befall. - -Suddenly there was the momentary gleam of a light up in the -direction of the ventilator, which vanished immediately, but was -succeeded by a strong smell of burning oil and heated metal. -Someone in the next room had lit a dark-lantern. I heard a gentle -sound of movement, and then all was silent once more, though the -smell grew stronger. For half an hour I sat with straining ears. -Then suddenly another sound became audible--a very gentle, -soothing sound, like that of a small jet of steam escaping -continually from a kettle. The instant that we heard it, Holmes -sprang from the bed, struck a match, and lashed furiously with -his cane at the bell-pull. - -"You see it, Watson?" he yelled. "You see it?" - -But I saw nothing. At the moment when Holmes struck the light I -heard a low, clear whistle, but the sudden glare flashing into my -weary eyes made it impossible for me to tell what it was at which -my friend lashed so savagely. I could, however, see that his face -was deadly pale and filled with horror and loathing. He had -ceased to strike and was gazing up at the ventilator when -suddenly there broke from the silence of the night the most -horrible cry to which I have ever listened. It swelled up louder -and louder, a hoarse yell of pain and fear and anger all mingled -in the one dreadful shriek. They say that away down in the -village, and even in the distant parsonage, that cry raised the -sleepers from their beds. It struck cold to our hearts, and I -stood gazing at Holmes, and he at me, until the last echoes of it -had died away into the silence from which it rose. - -"What can it mean?" I gasped. - -"It means that it is all over," Holmes answered. "And perhaps, -after all, it is for the best. Take your pistol, and we will -enter Dr. Roylott's room." - -With a grave face he lit the lamp and led the way down the -corridor. Twice he struck at the chamber door without any reply -from within. Then he turned the handle and entered, I at his -heels, with the cocked pistol in my hand. - -It was a singular sight which met our eyes. On the table stood a -dark-lantern with the shutter half open, throwing a brilliant -beam of light upon the iron safe, the door of which was ajar. -Beside this table, on the wooden chair, sat Dr. Grimesby Roylott -clad in a long grey dressing-gown, his bare ankles protruding -beneath, and his feet thrust into red heelless Turkish slippers. -Across his lap lay the short stock with the long lash which we -had noticed during the day. His chin was cocked upward and his -eyes were fixed in a dreadful, rigid stare at the corner of the -ceiling. Round his brow he had a peculiar yellow band, with -brownish speckles, which seemed to be bound tightly round his -head. As we entered he made neither sound nor motion. - -"The band! the speckled band!" whispered Holmes. - -I took a step forward. In an instant his strange headgear began -to move, and there reared itself from among his hair the squat -diamond-shaped head and puffed neck of a loathsome serpent. - -"It is a swamp adder!" cried Holmes; "the deadliest snake in -India. He has died within ten seconds of being bitten. Violence -does, in truth, recoil upon the violent, and the schemer falls -into the pit which he digs for another. Let us thrust this -creature back into its den, and we can then remove Miss Stoner to -some place of shelter and let the county police know what has -happened." - -As he spoke he drew the dog-whip swiftly from the dead man's lap, -and throwing the noose round the reptile's neck he drew it from -its horrid perch and, carrying it at arm's length, threw it into -the iron safe, which he closed upon it. - -Such are the true facts of the death of Dr. Grimesby Roylott, of -Stoke Moran. It is not necessary that I should prolong a -narrative which has already run to too great a length by telling -how we broke the sad news to the terrified girl, how we conveyed -her by the morning train to the care of her good aunt at Harrow, -of how the slow process of official inquiry came to the -conclusion that the doctor met his fate while indiscreetly -playing with a dangerous pet. The little which I had yet to learn -of the case was told me by Sherlock Holmes as we travelled back -next day. - -"I had," said he, "come to an entirely erroneous conclusion which -shows, my dear Watson, how dangerous it always is to reason from -insufficient data. The presence of the gipsies, and the use of -the word 'band,' which was used by the poor girl, no doubt, to -explain the appearance which she had caught a hurried glimpse of -by the light of her match, were sufficient to put me upon an -entirely wrong scent. I can only claim the merit that I instantly -reconsidered my position when, however, it became clear to me -that whatever danger threatened an occupant of the room could not -come either from the window or the door. My attention was -speedily drawn, as I have already remarked to you, to this -ventilator, and to the bell-rope which hung down to the bed. The -discovery that this was a dummy, and that the bed was clamped to -the floor, instantly gave rise to the suspicion that the rope was -there as a bridge for something passing through the hole and -coming to the bed. The idea of a snake instantly occurred to me, -and when I coupled it with my knowledge that the doctor was -furnished with a supply of creatures from India, I felt that I -was probably on the right track. The idea of using a form of -poison which could not possibly be discovered by any chemical -test was just such a one as would occur to a clever and ruthless -man who had had an Eastern training. The rapidity with which such -a poison would take effect would also, from his point of view, be -an advantage. It would be a sharp-eyed coroner, indeed, who could -distinguish the two little dark punctures which would show where -the poison fangs had done their work. Then I thought of the -whistle. Of course he must recall the snake before the morning -light revealed it to the victim. He had trained it, probably by -the use of the milk which we saw, to return to him when summoned. -He would put it through this ventilator at the hour that he -thought best, with the certainty that it would crawl down the -rope and land on the bed. It might or might not bite the -occupant, perhaps she might escape every night for a week, but -sooner or later she must fall a victim. - -"I had come to these conclusions before ever I had entered his -room. An inspection of his chair showed me that he had been in -the habit of standing on it, which of course would be necessary -in order that he should reach the ventilator. The sight of the -safe, the saucer of milk, and the loop of whipcord were enough to -finally dispel any doubts which may have remained. The metallic -clang heard by Miss Stoner was obviously caused by her stepfather -hastily closing the door of his safe upon its terrible occupant. -Having once made up my mind, you know the steps which I took in -order to put the matter to the proof. I heard the creature hiss -as I have no doubt that you did also, and I instantly lit the -light and attacked it." - -"With the result of driving it through the ventilator." - -"And also with the result of causing it to turn upon its master -at the other side. Some of the blows of my cane came home and -roused its snakish temper, so that it flew upon the first person -it saw. In this way I am no doubt indirectly responsible for Dr. -Grimesby Roylott's death, and I cannot say that it is likely to -weigh very heavily upon my conscience." - - - -IX. THE ADVENTURE OF THE ENGINEER'S THUMB - -Of all the problems which have been submitted to my friend, Mr. -Sherlock Holmes, for solution during the years of our intimacy, -there were only two which I was the means of introducing to his -notice--that of Mr. Hatherley's thumb, and that of Colonel -Warburton's madness. Of these the latter may have afforded a -finer field for an acute and original observer, but the other was -so strange in its inception and so dramatic in its details that -it may be the more worthy of being placed upon record, even if it -gave my friend fewer openings for those deductive methods of -reasoning by which he achieved such remarkable results. The story -has, I believe, been told more than once in the newspapers, but, -like all such narratives, its effect is much less striking when -set forth en bloc in a single half-column of print than when the -facts slowly evolve before your own eyes, and the mystery clears -gradually away as each new discovery furnishes a step which leads -on to the complete truth. At the time the circumstances made a -deep impression upon me, and the lapse of two years has hardly -served to weaken the effect. - -It was in the summer of '89, not long after my marriage, that the -events occurred which I am now about to summarise. I had returned -to civil practice and had finally abandoned Holmes in his Baker -Street rooms, although I continually visited him and occasionally -even persuaded him to forgo his Bohemian habits so far as to come -and visit us. My practice had steadily increased, and as I -happened to live at no very great distance from Paddington -Station, I got a few patients from among the officials. One of -these, whom I had cured of a painful and lingering disease, was -never weary of advertising my virtues and of endeavouring to send -me on every sufferer over whom he might have any influence. - -One morning, at a little before seven o'clock, I was awakened by -the maid tapping at the door to announce that two men had come -from Paddington and were waiting in the consulting-room. I -dressed hurriedly, for I knew by experience that railway cases -were seldom trivial, and hastened downstairs. As I descended, my -old ally, the guard, came out of the room and closed the door -tightly behind him. - -"I've got him here," he whispered, jerking his thumb over his -shoulder; "he's all right." - -"What is it, then?" I asked, for his manner suggested that it was -some strange creature which he had caged up in my room. - -"It's a new patient," he whispered. "I thought I'd bring him -round myself; then he couldn't slip away. There he is, all safe -and sound. I must go now, Doctor; I have my dooties, just the -same as you." And off he went, this trusty tout, without even -giving me time to thank him. - -I entered my consulting-room and found a gentleman seated by the -table. He was quietly dressed in a suit of heather tweed with a -soft cloth cap which he had laid down upon my books. Round one of -his hands he had a handkerchief wrapped, which was mottled all -over with bloodstains. He was young, not more than -five-and-twenty, I should say, with a strong, masculine face; but -he was exceedingly pale and gave me the impression of a man who -was suffering from some strong agitation, which it took all his -strength of mind to control. - -"I am sorry to knock you up so early, Doctor," said he, "but I -have had a very serious accident during the night. I came in by -train this morning, and on inquiring at Paddington as to where I -might find a doctor, a worthy fellow very kindly escorted me -here. I gave the maid a card, but I see that she has left it upon -the side-table." - -I took it up and glanced at it. "Mr. Victor Hatherley, hydraulic -engineer, 16A, Victoria Street (3rd floor)." That was the name, -style, and abode of my morning visitor. "I regret that I have -kept you waiting," said I, sitting down in my library-chair. "You -are fresh from a night journey, I understand, which is in itself -a monotonous occupation." - -"Oh, my night could not be called monotonous," said he, and -laughed. He laughed very heartily, with a high, ringing note, -leaning back in his chair and shaking his sides. All my medical -instincts rose up against that laugh. - -"Stop it!" I cried; "pull yourself together!" and I poured out -some water from a caraffe. - -It was useless, however. He was off in one of those hysterical -outbursts which come upon a strong nature when some great crisis -is over and gone. Presently he came to himself once more, very -weary and pale-looking. - -"I have been making a fool of myself," he gasped. - -"Not at all. Drink this." I dashed some brandy into the water, -and the colour began to come back to his bloodless cheeks. - -"That's better!" said he. "And now, Doctor, perhaps you would -kindly attend to my thumb, or rather to the place where my thumb -used to be." - -He unwound the handkerchief and held out his hand. It gave even -my hardened nerves a shudder to look at it. There were four -protruding fingers and a horrid red, spongy surface where the -thumb should have been. It had been hacked or torn right out from -the roots. - -"Good heavens!" I cried, "this is a terrible injury. It must have -bled considerably." - -"Yes, it did. I fainted when it was done, and I think that I must -have been senseless for a long time. When I came to I found that -it was still bleeding, so I tied one end of my handkerchief very -tightly round the wrist and braced it up with a twig." - -"Excellent! You should have been a surgeon." - -"It is a question of hydraulics, you see, and came within my own -province." - -"This has been done," said I, examining the wound, "by a very -heavy and sharp instrument." - -"A thing like a cleaver," said he. - -"An accident, I presume?" - -"By no means." - -"What! a murderous attack?" - -"Very murderous indeed." - -"You horrify me." - -I sponged the wound, cleaned it, dressed it, and finally covered -it over with cotton wadding and carbolised bandages. He lay back -without wincing, though he bit his lip from time to time. - -"How is that?" I asked when I had finished. - -"Capital! Between your brandy and your bandage, I feel a new man. -I was very weak, but I have had a good deal to go through." - -"Perhaps you had better not speak of the matter. It is evidently -trying to your nerves." - -"Oh, no, not now. I shall have to tell my tale to the police; -but, between ourselves, if it were not for the convincing -evidence of this wound of mine, I should be surprised if they -believed my statement, for it is a very extraordinary one, and I -have not much in the way of proof with which to back it up; and, -even if they believe me, the clues which I can give them are so -vague that it is a question whether justice will be done." - -"Ha!" cried I, "if it is anything in the nature of a problem -which you desire to see solved, I should strongly recommend you -to come to my friend, Mr. Sherlock Holmes, before you go to the -official police." - -"Oh, I have heard of that fellow," answered my visitor, "and I -should be very glad if he would take the matter up, though of -course I must use the official police as well. Would you give me -an introduction to him?" - -"I'll do better. I'll take you round to him myself." - -"I should be immensely obliged to you." - -"We'll call a cab and go together. We shall just be in time to -have a little breakfast with him. Do you feel equal to it?" - -"Yes; I shall not feel easy until I have told my story." - -"Then my servant will call a cab, and I shall be with you in an -instant." I rushed upstairs, explained the matter shortly to my -wife, and in five minutes was inside a hansom, driving with my -new acquaintance to Baker Street. - -Sherlock Holmes was, as I expected, lounging about his -sitting-room in his dressing-gown, reading the agony column of The -Times and smoking his before-breakfast pipe, which was composed -of all the plugs and dottles left from his smokes of the day -before, all carefully dried and collected on the corner of the -mantelpiece. He received us in his quietly genial fashion, -ordered fresh rashers and eggs, and joined us in a hearty meal. -When it was concluded he settled our new acquaintance upon the -sofa, placed a pillow beneath his head, and laid a glass of -brandy and water within his reach. - -"It is easy to see that your experience has been no common one, -Mr. Hatherley," said he. "Pray, lie down there and make yourself -absolutely at home. Tell us what you can, but stop when you are -tired and keep up your strength with a little stimulant." - -"Thank you," said my patient, "but I have felt another man since -the doctor bandaged me, and I think that your breakfast has -completed the cure. I shall take up as little of your valuable -time as possible, so I shall start at once upon my peculiar -experiences." - -Holmes sat in his big armchair with the weary, heavy-lidded -expression which veiled his keen and eager nature, while I sat -opposite to him, and we listened in silence to the strange story -which our visitor detailed to us. - -"You must know," said he, "that I am an orphan and a bachelor, -residing alone in lodgings in London. By profession I am a -hydraulic engineer, and I have had considerable experience of my -work during the seven years that I was apprenticed to Venner & -Matheson, the well-known firm, of Greenwich. Two years ago, -having served my time, and having also come into a fair sum of -money through my poor father's death, I determined to start in -business for myself and took professional chambers in Victoria -Street. - -"I suppose that everyone finds his first independent start in -business a dreary experience. To me it has been exceptionally so. -During two years I have had three consultations and one small -job, and that is absolutely all that my profession has brought -me. My gross takings amount to 27 pounds 10s. Every day, from -nine in the morning until four in the afternoon, I waited in my -little den, until at last my heart began to sink, and I came to -believe that I should never have any practice at all. - -"Yesterday, however, just as I was thinking of leaving the -office, my clerk entered to say there was a gentleman waiting who -wished to see me upon business. He brought up a card, too, with -the name of 'Colonel Lysander Stark' engraved upon it. Close at -his heels came the colonel himself, a man rather over the middle -size, but of an exceeding thinness. I do not think that I have -ever seen so thin a man. His whole face sharpened away into nose -and chin, and the skin of his cheeks was drawn quite tense over -his outstanding bones. Yet this emaciation seemed to be his -natural habit, and due to no disease, for his eye was bright, his -step brisk, and his bearing assured. He was plainly but neatly -dressed, and his age, I should judge, would be nearer forty than -thirty. - -"'Mr. Hatherley?' said he, with something of a German accent. -'You have been recommended to me, Mr. Hatherley, as being a man -who is not only proficient in his profession but is also discreet -and capable of preserving a secret.' - -"I bowed, feeling as flattered as any young man would at such an -address. 'May I ask who it was who gave me so good a character?' - -"'Well, perhaps it is better that I should not tell you that just -at this moment. I have it from the same source that you are both -an orphan and a bachelor and are residing alone in London.' - -"'That is quite correct,' I answered; 'but you will excuse me if -I say that I cannot see how all this bears upon my professional -qualifications. I understand that it was on a professional matter -that you wished to speak to me?' - -"'Undoubtedly so. But you will find that all I say is really to -the point. I have a professional commission for you, but absolute -secrecy is quite essential--absolute secrecy, you understand, and -of course we may expect that more from a man who is alone than -from one who lives in the bosom of his family.' - -"'If I promise to keep a secret,' said I, 'you may absolutely -depend upon my doing so.' - -"He looked very hard at me as I spoke, and it seemed to me that I -had never seen so suspicious and questioning an eye. - -"'Do you promise, then?' said he at last. - -"'Yes, I promise.' - -"'Absolute and complete silence before, during, and after? No -reference to the matter at all, either in word or writing?' - -"'I have already given you my word.' - -"'Very good.' He suddenly sprang up, and darting like lightning -across the room he flung open the door. The passage outside was -empty. - -"'That's all right,' said he, coming back. 'I know that clerks are -sometimes curious as to their master's affairs. Now we can talk -in safety.' He drew up his chair very close to mine and began to -stare at me again with the same questioning and thoughtful look. - -"A feeling of repulsion, and of something akin to fear had begun -to rise within me at the strange antics of this fleshless man. -Even my dread of losing a client could not restrain me from -showing my impatience. - -"'I beg that you will state your business, sir,' said I; 'my time -is of value.' Heaven forgive me for that last sentence, but the -words came to my lips. - -"'How would fifty guineas for a night's work suit you?' he asked. - -"'Most admirably.' - -"'I say a night's work, but an hour's would be nearer the mark. I -simply want your opinion about a hydraulic stamping machine which -has got out of gear. If you show us what is wrong we shall soon -set it right ourselves. What do you think of such a commission as -that?' - -"'The work appears to be light and the pay munificent.' - -"'Precisely so. We shall want you to come to-night by the last -train.' - -"'Where to?' - -"'To Eyford, in Berkshire. It is a little place near the borders -of Oxfordshire, and within seven miles of Reading. There is a -train from Paddington which would bring you there at about -11:15.' - -"'Very good.' - -"'I shall come down in a carriage to meet you.' - -"'There is a drive, then?' - -"'Yes, our little place is quite out in the country. It is a good -seven miles from Eyford Station.' - -"'Then we can hardly get there before midnight. I suppose there -would be no chance of a train back. I should be compelled to stop -the night.' - -"'Yes, we could easily give you a shake-down.' - -"'That is very awkward. Could I not come at some more convenient -hour?' - -"'We have judged it best that you should come late. It is to -recompense you for any inconvenience that we are paying to you, a -young and unknown man, a fee which would buy an opinion from the -very heads of your profession. Still, of course, if you would -like to draw out of the business, there is plenty of time to do -so.' - -"I thought of the fifty guineas, and of how very useful they -would be to me. 'Not at all,' said I, 'I shall be very happy to -accommodate myself to your wishes. I should like, however, to -understand a little more clearly what it is that you wish me to -do.' - -"'Quite so. It is very natural that the pledge of secrecy which -we have exacted from you should have aroused your curiosity. I -have no wish to commit you to anything without your having it all -laid before you. I suppose that we are absolutely safe from -eavesdroppers?' - -"'Entirely.' - -"'Then the matter stands thus. You are probably aware that -fuller's-earth is a valuable product, and that it is only found -in one or two places in England?' - -"'I have heard so.' - -"'Some little time ago I bought a small place--a very small -place--within ten miles of Reading. I was fortunate enough to -discover that there was a deposit of fuller's-earth in one of my -fields. On examining it, however, I found that this deposit was a -comparatively small one, and that it formed a link between two -very much larger ones upon the right and left--both of them, -however, in the grounds of my neighbours. These good people were -absolutely ignorant that their land contained that which was -quite as valuable as a gold-mine. Naturally, it was to my -interest to buy their land before they discovered its true value, -but unfortunately I had no capital by which I could do this. I -took a few of my friends into the secret, however, and they -suggested that we should quietly and secretly work our own little -deposit and that in this way we should earn the money which would -enable us to buy the neighbouring fields. This we have now been -doing for some time, and in order to help us in our operations we -erected a hydraulic press. This press, as I have already -explained, has got out of order, and we wish your advice upon the -subject. We guard our secret very jealously, however, and if it -once became known that we had hydraulic engineers coming to our -little house, it would soon rouse inquiry, and then, if the facts -came out, it would be good-bye to any chance of getting these -fields and carrying out our plans. That is why I have made you -promise me that you will not tell a human being that you are -going to Eyford to-night. I hope that I make it all plain?' - -"'I quite follow you,' said I. 'The only point which I could not -quite understand was what use you could make of a hydraulic press -in excavating fuller's-earth, which, as I understand, is dug out -like gravel from a pit.' - -"'Ah!' said he carelessly, 'we have our own process. We compress -the earth into bricks, so as to remove them without revealing -what they are. But that is a mere detail. I have taken you fully -into my confidence now, Mr. Hatherley, and I have shown you how I -trust you.' He rose as he spoke. 'I shall expect you, then, at -Eyford at 11:15.' - -"'I shall certainly be there.' - -"'And not a word to a soul.' He looked at me with a last long, -questioning gaze, and then, pressing my hand in a cold, dank -grasp, he hurried from the room. - -"Well, when I came to think it all over in cool blood I was very -much astonished, as you may both think, at this sudden commission -which had been intrusted to me. On the one hand, of course, I was -glad, for the fee was at least tenfold what I should have asked -had I set a price upon my own services, and it was possible that -this order might lead to other ones. On the other hand, the face -and manner of my patron had made an unpleasant impression upon -me, and I could not think that his explanation of the -fuller's-earth was sufficient to explain the necessity for my -coming at midnight, and his extreme anxiety lest I should tell -anyone of my errand. However, I threw all fears to the winds, ate -a hearty supper, drove to Paddington, and started off, having -obeyed to the letter the injunction as to holding my tongue. - -"At Reading I had to change not only my carriage but my station. -However, I was in time for the last train to Eyford, and I -reached the little dim-lit station after eleven o'clock. I was the -only passenger who got out there, and there was no one upon the -platform save a single sleepy porter with a lantern. As I passed -out through the wicket gate, however, I found my acquaintance of -the morning waiting in the shadow upon the other side. Without a -word he grasped my arm and hurried me into a carriage, the door -of which was standing open. He drew up the windows on either -side, tapped on the wood-work, and away we went as fast as the -horse could go." - -"One horse?" interjected Holmes. - -"Yes, only one." - -"Did you observe the colour?" - -"Yes, I saw it by the side-lights when I was stepping into the -carriage. It was a chestnut." - -"Tired-looking or fresh?" - -"Oh, fresh and glossy." - -"Thank you. I am sorry to have interrupted you. Pray continue -your most interesting statement." - -"Away we went then, and we drove for at least an hour. Colonel -Lysander Stark had said that it was only seven miles, but I -should think, from the rate that we seemed to go, and from the -time that we took, that it must have been nearer twelve. He sat -at my side in silence all the time, and I was aware, more than -once when I glanced in his direction, that he was looking at me -with great intensity. The country roads seem to be not very good -in that part of the world, for we lurched and jolted terribly. I -tried to look out of the windows to see something of where we -were, but they were made of frosted glass, and I could make out -nothing save the occasional bright blur of a passing light. Now -and then I hazarded some remark to break the monotony of the -journey, but the colonel answered only in monosyllables, and the -conversation soon flagged. At last, however, the bumping of the -road was exchanged for the crisp smoothness of a gravel-drive, -and the carriage came to a stand. Colonel Lysander Stark sprang -out, and, as I followed after him, pulled me swiftly into a porch -which gaped in front of us. We stepped, as it were, right out of -the carriage and into the hall, so that I failed to catch the -most fleeting glance of the front of the house. The instant that -I had crossed the threshold the door slammed heavily behind us, -and I heard faintly the rattle of the wheels as the carriage -drove away. - -"It was pitch dark inside the house, and the colonel fumbled -about looking for matches and muttering under his breath. -Suddenly a door opened at the other end of the passage, and a -long, golden bar of light shot out in our direction. It grew -broader, and a woman appeared with a lamp in her hand, which she -held above her head, pushing her face forward and peering at us. -I could see that she was pretty, and from the gloss with which -the light shone upon her dark dress I knew that it was a rich -material. She spoke a few words in a foreign tongue in a tone as -though asking a question, and when my companion answered in a -gruff monosyllable she gave such a start that the lamp nearly -fell from her hand. Colonel Stark went up to her, whispered -something in her ear, and then, pushing her back into the room -from whence she had come, he walked towards me again with the -lamp in his hand. - -"'Perhaps you will have the kindness to wait in this room for a -few minutes,' said he, throwing open another door. It was a -quiet, little, plainly furnished room, with a round table in the -centre, on which several German books were scattered. Colonel -Stark laid down the lamp on the top of a harmonium beside the -door. 'I shall not keep you waiting an instant,' said he, and -vanished into the darkness. - -"I glanced at the books upon the table, and in spite of my -ignorance of German I could see that two of them were treatises -on science, the others being volumes of poetry. Then I walked -across to the window, hoping that I might catch some glimpse of -the country-side, but an oak shutter, heavily barred, was folded -across it. It was a wonderfully silent house. There was an old -clock ticking loudly somewhere in the passage, but otherwise -everything was deadly still. A vague feeling of uneasiness began -to steal over me. Who were these German people, and what were -they doing living in this strange, out-of-the-way place? And -where was the place? I was ten miles or so from Eyford, that was -all I knew, but whether north, south, east, or west I had no -idea. For that matter, Reading, and possibly other large towns, -were within that radius, so the place might not be so secluded, -after all. Yet it was quite certain, from the absolute stillness, -that we were in the country. I paced up and down the room, -humming a tune under my breath to keep up my spirits and feeling -that I was thoroughly earning my fifty-guinea fee. - -"Suddenly, without any preliminary sound in the midst of the -utter stillness, the door of my room swung slowly open. The woman -was standing in the aperture, the darkness of the hall behind -her, the yellow light from my lamp beating upon her eager and -beautiful face. I could see at a glance that she was sick with -fear, and the sight sent a chill to my own heart. She held up one -shaking finger to warn me to be silent, and she shot a few -whispered words of broken English at me, her eyes glancing back, -like those of a frightened horse, into the gloom behind her. - -"'I would go,' said she, trying hard, as it seemed to me, to -speak calmly; 'I would go. I should not stay here. There is no -good for you to do.' - -"'But, madam,' said I, 'I have not yet done what I came for. I -cannot possibly leave until I have seen the machine.' - -"'It is not worth your while to wait,' she went on. 'You can pass -through the door; no one hinders.' And then, seeing that I smiled -and shook my head, she suddenly threw aside her constraint and -made a step forward, with her hands wrung together. 'For the love -of Heaven!' she whispered, 'get away from here before it is too -late!' - -"But I am somewhat headstrong by nature, and the more ready to -engage in an affair when there is some obstacle in the way. I -thought of my fifty-guinea fee, of my wearisome journey, and of -the unpleasant night which seemed to be before me. Was it all to -go for nothing? Why should I slink away without having carried -out my commission, and without the payment which was my due? This -woman might, for all I knew, be a monomaniac. With a stout -bearing, therefore, though her manner had shaken me more than I -cared to confess, I still shook my head and declared my intention -of remaining where I was. She was about to renew her entreaties -when a door slammed overhead, and the sound of several footsteps -was heard upon the stairs. She listened for an instant, threw up -her hands with a despairing gesture, and vanished as suddenly and -as noiselessly as she had come. - -"The newcomers were Colonel Lysander Stark and a short thick man -with a chinchilla beard growing out of the creases of his double -chin, who was introduced to me as Mr. Ferguson. - -"'This is my secretary and manager,' said the colonel. 'By the -way, I was under the impression that I left this door shut just -now. I fear that you have felt the draught.' - -"'On the contrary,' said I, 'I opened the door myself because I -felt the room to be a little close.' - -"He shot one of his suspicious looks at me. 'Perhaps we had -better proceed to business, then,' said he. 'Mr. Ferguson and I -will take you up to see the machine.' - -"'I had better put my hat on, I suppose.' - -"'Oh, no, it is in the house.' - -"'What, you dig fuller's-earth in the house?' - -"'No, no. This is only where we compress it. But never mind that. -All we wish you to do is to examine the machine and to let us -know what is wrong with it.' - -"We went upstairs together, the colonel first with the lamp, the -fat manager and I behind him. It was a labyrinth of an old house, -with corridors, passages, narrow winding staircases, and little -low doors, the thresholds of which were hollowed out by the -generations who had crossed them. There were no carpets and no -signs of any furniture above the ground floor, while the plaster -was peeling off the walls, and the damp was breaking through in -green, unhealthy blotches. I tried to put on as unconcerned an -air as possible, but I had not forgotten the warnings of the -lady, even though I disregarded them, and I kept a keen eye upon -my two companions. Ferguson appeared to be a morose and silent -man, but I could see from the little that he said that he was at -least a fellow-countryman. - -"Colonel Lysander Stark stopped at last before a low door, which -he unlocked. Within was a small, square room, in which the three -of us could hardly get at one time. Ferguson remained outside, -and the colonel ushered me in. - -"'We are now,' said he, 'actually within the hydraulic press, and -it would be a particularly unpleasant thing for us if anyone were -to turn it on. The ceiling of this small chamber is really the -end of the descending piston, and it comes down with the force of -many tons upon this metal floor. There are small lateral columns -of water outside which receive the force, and which transmit and -multiply it in the manner which is familiar to you. The machine -goes readily enough, but there is some stiffness in the working -of it, and it has lost a little of its force. Perhaps you will -have the goodness to look it over and to show us how we can set -it right.' - -"I took the lamp from him, and I examined the machine very -thoroughly. It was indeed a gigantic one, and capable of -exercising enormous pressure. When I passed outside, however, and -pressed down the levers which controlled it, I knew at once by -the whishing sound that there was a slight leakage, which allowed -a regurgitation of water through one of the side cylinders. An -examination showed that one of the india-rubber bands which was -round the head of a driving-rod had shrunk so as not quite to -fill the socket along which it worked. This was clearly the cause -of the loss of power, and I pointed it out to my companions, who -followed my remarks very carefully and asked several practical -questions as to how they should proceed to set it right. When I -had made it clear to them, I returned to the main chamber of the -machine and took a good look at it to satisfy my own curiosity. -It was obvious at a glance that the story of the fuller's-earth -was the merest fabrication, for it would be absurd to suppose -that so powerful an engine could be designed for so inadequate a -purpose. The walls were of wood, but the floor consisted of a -large iron trough, and when I came to examine it I could see a -crust of metallic deposit all over it. I had stooped and was -scraping at this to see exactly what it was when I heard a -muttered exclamation in German and saw the cadaverous face of the -colonel looking down at me. - -"'What are you doing there?' he asked. - -"I felt angry at having been tricked by so elaborate a story as -that which he had told me. 'I was admiring your fuller's-earth,' -said I; 'I think that I should be better able to advise you as to -your machine if I knew what the exact purpose was for which it -was used.' - -"The instant that I uttered the words I regretted the rashness of -my speech. His face set hard, and a baleful light sprang up in -his grey eyes. - -"'Very well,' said he, 'you shall know all about the machine.' He -took a step backward, slammed the little door, and turned the key -in the lock. I rushed towards it and pulled at the handle, but it -was quite secure, and did not give in the least to my kicks and -shoves. 'Hullo!' I yelled. 'Hullo! Colonel! Let me out!' - -"And then suddenly in the silence I heard a sound which sent my -heart into my mouth. It was the clank of the levers and the swish -of the leaking cylinder. He had set the engine at work. The lamp -still stood upon the floor where I had placed it when examining -the trough. By its light I saw that the black ceiling was coming -down upon me, slowly, jerkily, but, as none knew better than -myself, with a force which must within a minute grind me to a -shapeless pulp. I threw myself, screaming, against the door, and -dragged with my nails at the lock. I implored the colonel to let -me out, but the remorseless clanking of the levers drowned my -cries. The ceiling was only a foot or two above my head, and with -my hand upraised I could feel its hard, rough surface. Then it -flashed through my mind that the pain of my death would depend -very much upon the position in which I met it. If I lay on my -face the weight would come upon my spine, and I shuddered to -think of that dreadful snap. Easier the other way, perhaps; and -yet, had I the nerve to lie and look up at that deadly black -shadow wavering down upon me? Already I was unable to stand -erect, when my eye caught something which brought a gush of hope -back to my heart. - -"I have said that though the floor and ceiling were of iron, the -walls were of wood. As I gave a last hurried glance around, I saw -a thin line of yellow light between two of the boards, which -broadened and broadened as a small panel was pushed backward. For -an instant I could hardly believe that here was indeed a door -which led away from death. The next instant I threw myself -through, and lay half-fainting upon the other side. The panel had -closed again behind me, but the crash of the lamp, and a few -moments afterwards the clang of the two slabs of metal, told me -how narrow had been my escape. - -"I was recalled to myself by a frantic plucking at my wrist, and -I found myself lying upon the stone floor of a narrow corridor, -while a woman bent over me and tugged at me with her left hand, -while she held a candle in her right. It was the same good friend -whose warning I had so foolishly rejected. - -"'Come! come!' she cried breathlessly. 'They will be here in a -moment. They will see that you are not there. Oh, do not waste -the so-precious time, but come!' - -"This time, at least, I did not scorn her advice. I staggered to -my feet and ran with her along the corridor and down a winding -stair. The latter led to another broad passage, and just as we -reached it we heard the sound of running feet and the shouting of -two voices, one answering the other from the floor on which we -were and from the one beneath. My guide stopped and looked about -her like one who is at her wit's end. Then she threw open a door -which led into a bedroom, through the window of which the moon -was shining brightly. - -"'It is your only chance,' said she. 'It is high, but it may be -that you can jump it.' - -"As she spoke a light sprang into view at the further end of the -passage, and I saw the lean figure of Colonel Lysander Stark -rushing forward with a lantern in one hand and a weapon like a -butcher's cleaver in the other. I rushed across the bedroom, -flung open the window, and looked out. How quiet and sweet and -wholesome the garden looked in the moonlight, and it could not be -more than thirty feet down. I clambered out upon the sill, but I -hesitated to jump until I should have heard what passed between -my saviour and the ruffian who pursued me. If she were ill-used, -then at any risks I was determined to go back to her assistance. -The thought had hardly flashed through my mind before he was at -the door, pushing his way past her; but she threw her arms round -him and tried to hold him back. - -"'Fritz! Fritz!' she cried in English, 'remember your promise -after the last time. You said it should not be again. He will be -silent! Oh, he will be silent!' - -"'You are mad, Elise!' he shouted, struggling to break away from -her. 'You will be the ruin of us. He has seen too much. Let me -pass, I say!' He dashed her to one side, and, rushing to the -window, cut at me with his heavy weapon. I had let myself go, and -was hanging by the hands to the sill, when his blow fell. I was -conscious of a dull pain, my grip loosened, and I fell into the -garden below. - -"I was shaken but not hurt by the fall; so I picked myself up and -rushed off among the bushes as hard as I could run, for I -understood that I was far from being out of danger yet. Suddenly, -however, as I ran, a deadly dizziness and sickness came over me. -I glanced down at my hand, which was throbbing painfully, and -then, for the first time, saw that my thumb had been cut off and -that the blood was pouring from my wound. I endeavoured to tie my -handkerchief round it, but there came a sudden buzzing in my -ears, and next moment I fell in a dead faint among the -rose-bushes. - -"How long I remained unconscious I cannot tell. It must have been -a very long time, for the moon had sunk, and a bright morning was -breaking when I came to myself. My clothes were all sodden with -dew, and my coat-sleeve was drenched with blood from my wounded -thumb. The smarting of it recalled in an instant all the -particulars of my night's adventure, and I sprang to my feet with -the feeling that I might hardly yet be safe from my pursuers. But -to my astonishment, when I came to look round me, neither house -nor garden were to be seen. I had been lying in an angle of the -hedge close by the highroad, and just a little lower down was a -long building, which proved, upon my approaching it, to be the -very station at which I had arrived upon the previous night. Were -it not for the ugly wound upon my hand, all that had passed -during those dreadful hours might have been an evil dream. - -"Half dazed, I went into the station and asked about the morning -train. There would be one to Reading in less than an hour. The -same porter was on duty, I found, as had been there when I -arrived. I inquired of him whether he had ever heard of Colonel -Lysander Stark. The name was strange to him. Had he observed a -carriage the night before waiting for me? No, he had not. Was -there a police-station anywhere near? There was one about three -miles off. - -"It was too far for me to go, weak and ill as I was. I determined -to wait until I got back to town before telling my story to the -police. It was a little past six when I arrived, so I went first -to have my wound dressed, and then the doctor was kind enough to -bring me along here. I put the case into your hands and shall do -exactly what you advise." - -We both sat in silence for some little time after listening to -this extraordinary narrative. Then Sherlock Holmes pulled down -from the shelf one of the ponderous commonplace books in which he -placed his cuttings. - -"Here is an advertisement which will interest you," said he. "It -appeared in all the papers about a year ago. Listen to this: -'Lost, on the 9th inst., Mr. Jeremiah Hayling, aged -twenty-six, a hydraulic engineer. Left his lodgings at ten -o'clock at night, and has not been heard of since. Was -dressed in,' etc., etc. Ha! That represents the last time that -the colonel needed to have his machine overhauled, I fancy." - -"Good heavens!" cried my patient. "Then that explains what the -girl said." - -"Undoubtedly. It is quite clear that the colonel was a cool and -desperate man, who was absolutely determined that nothing should -stand in the way of his little game, like those out-and-out -pirates who will leave no survivor from a captured ship. Well, -every moment now is precious, so if you feel equal to it we shall -go down to Scotland Yard at once as a preliminary to starting for -Eyford." - -Some three hours or so afterwards we were all in the train -together, bound from Reading to the little Berkshire village. -There were Sherlock Holmes, the hydraulic engineer, Inspector -Bradstreet, of Scotland Yard, a plain-clothes man, and myself. -Bradstreet had spread an ordnance map of the county out upon the -seat and was busy with his compasses drawing a circle with Eyford -for its centre. - -"There you are," said he. "That circle is drawn at a radius of -ten miles from the village. The place we want must be somewhere -near that line. You said ten miles, I think, sir." - -"It was an hour's good drive." - -"And you think that they brought you back all that way when you -were unconscious?" - -"They must have done so. I have a confused memory, too, of having -been lifted and conveyed somewhere." - -"What I cannot understand," said I, "is why they should have -spared you when they found you lying fainting in the garden. -Perhaps the villain was softened by the woman's entreaties." - -"I hardly think that likely. I never saw a more inexorable face -in my life." - -"Oh, we shall soon clear up all that," said Bradstreet. "Well, I -have drawn my circle, and I only wish I knew at what point upon -it the folk that we are in search of are to be found." - -"I think I could lay my finger on it," said Holmes quietly. - -"Really, now!" cried the inspector, "you have formed your -opinion! Come, now, we shall see who agrees with you. I say it is -south, for the country is more deserted there." - -"And I say east," said my patient. - -"I am for west," remarked the plain-clothes man. "There are -several quiet little villages up there." - -"And I am for north," said I, "because there are no hills there, -and our friend says that he did not notice the carriage go up -any." - -"Come," cried the inspector, laughing; "it's a very pretty -diversity of opinion. We have boxed the compass among us. Who do -you give your casting vote to?" - -"You are all wrong." - -"But we can't all be." - -"Oh, yes, you can. This is my point." He placed his finger in the -centre of the circle. "This is where we shall find them." - -"But the twelve-mile drive?" gasped Hatherley. - -"Six out and six back. Nothing simpler. You say yourself that the -horse was fresh and glossy when you got in. How could it be that -if it had gone twelve miles over heavy roads?" - -"Indeed, it is a likely ruse enough," observed Bradstreet -thoughtfully. "Of course there can be no doubt as to the nature -of this gang." - -"None at all," said Holmes. "They are coiners on a large scale, -and have used the machine to form the amalgam which has taken the -place of silver." - -"We have known for some time that a clever gang was at work," -said the inspector. "They have been turning out half-crowns by -the thousand. We even traced them as far as Reading, but could -get no farther, for they had covered their traces in a way that -showed that they were very old hands. But now, thanks to this -lucky chance, I think that we have got them right enough." - -But the inspector was mistaken, for those criminals were not -destined to fall into the hands of justice. As we rolled into -Eyford Station we saw a gigantic column of smoke which streamed -up from behind a small clump of trees in the neighbourhood and -hung like an immense ostrich feather over the landscape. - -"A house on fire?" asked Bradstreet as the train steamed off -again on its way. - -"Yes, sir!" said the station-master. - -"When did it break out?" - -"I hear that it was during the night, sir, but it has got worse, -and the whole place is in a blaze." - -"Whose house is it?" - -"Dr. Becher's." - -"Tell me," broke in the engineer, "is Dr. Becher a German, very -thin, with a long, sharp nose?" - -The station-master laughed heartily. "No, sir, Dr. Becher is an -Englishman, and there isn't a man in the parish who has a -better-lined waistcoat. But he has a gentleman staying with him, -a patient, as I understand, who is a foreigner, and he looks as -if a little good Berkshire beef would do him no harm." - -The station-master had not finished his speech before we were all -hastening in the direction of the fire. The road topped a low -hill, and there was a great widespread whitewashed building in -front of us, spouting fire at every chink and window, while in -the garden in front three fire-engines were vainly striving to -keep the flames under. - -"That's it!" cried Hatherley, in intense excitement. "There is -the gravel-drive, and there are the rose-bushes where I lay. That -second window is the one that I jumped from." - -"Well, at least," said Holmes, "you have had your revenge upon -them. There can be no question that it was your oil-lamp which, -when it was crushed in the press, set fire to the wooden walls, -though no doubt they were too excited in the chase after you to -observe it at the time. Now keep your eyes open in this crowd for -your friends of last night, though I very much fear that they are -a good hundred miles off by now." - -And Holmes' fears came to be realised, for from that day to this -no word has ever been heard either of the beautiful woman, the -sinister German, or the morose Englishman. Early that morning a -peasant had met a cart containing several people and some very -bulky boxes driving rapidly in the direction of Reading, but -there all traces of the fugitives disappeared, and even Holmes' -ingenuity failed ever to discover the least clue as to their -whereabouts. - -The firemen had been much perturbed at the strange arrangements -which they had found within, and still more so by discovering a -newly severed human thumb upon a window-sill of the second floor. -About sunset, however, their efforts were at last successful, and -they subdued the flames, but not before the roof had fallen in, -and the whole place been reduced to such absolute ruin that, save -some twisted cylinders and iron piping, not a trace remained of -the machinery which had cost our unfortunate acquaintance so -dearly. Large masses of nickel and of tin were discovered stored -in an out-house, but no coins were to be found, which may have -explained the presence of those bulky boxes which have been -already referred to. - -How our hydraulic engineer had been conveyed from the garden to -the spot where he recovered his senses might have remained -forever a mystery were it not for the soft mould, which told us a -very plain tale. He had evidently been carried down by two -persons, one of whom had remarkably small feet and the other -unusually large ones. On the whole, it was most probable that the -silent Englishman, being less bold or less murderous than his -companion, had assisted the woman to bear the unconscious man out -of the way of danger. - -"Well," said our engineer ruefully as we took our seats to return -once more to London, "it has been a pretty business for me! I -have lost my thumb and I have lost a fifty-guinea fee, and what -have I gained?" - -"Experience," said Holmes, laughing. "Indirectly it may be of -value, you know; you have only to put it into words to gain the -reputation of being excellent company for the remainder of your -existence." - - - -X. THE ADVENTURE OF THE NOBLE BACHELOR - -The Lord St. Simon marriage, and its curious termination, have -long ceased to be a subject of interest in those exalted circles -in which the unfortunate bridegroom moves. Fresh scandals have -eclipsed it, and their more piquant details have drawn the -gossips away from this four-year-old drama. As I have reason to -believe, however, that the full facts have never been revealed to -the general public, and as my friend Sherlock Holmes had a -considerable share in clearing the matter up, I feel that no -memoir of him would be complete without some little sketch of -this remarkable episode. - -It was a few weeks before my own marriage, during the days when I -was still sharing rooms with Holmes in Baker Street, that he came -home from an afternoon stroll to find a letter on the table -waiting for him. I had remained indoors all day, for the weather -had taken a sudden turn to rain, with high autumnal winds, and -the Jezail bullet which I had brought back in one of my limbs as -a relic of my Afghan campaign throbbed with dull persistence. -With my body in one easy-chair and my legs upon another, I had -surrounded myself with a cloud of newspapers until at last, -saturated with the news of the day, I tossed them all aside and -lay listless, watching the huge crest and monogram upon the -envelope upon the table and wondering lazily who my friend's -noble correspondent could be. - -"Here is a very fashionable epistle," I remarked as he entered. -"Your morning letters, if I remember right, were from a -fish-monger and a tide-waiter." - -"Yes, my correspondence has certainly the charm of variety," he -answered, smiling, "and the humbler are usually the more -interesting. This looks like one of those unwelcome social -summonses which call upon a man either to be bored or to lie." - -He broke the seal and glanced over the contents. - -"Oh, come, it may prove to be something of interest, after all." - -"Not social, then?" - -"No, distinctly professional." - -"And from a noble client?" - -"One of the highest in England." - -"My dear fellow, I congratulate you." - -"I assure you, Watson, without affectation, that the status of my -client is a matter of less moment to me than the interest of his -case. It is just possible, however, that that also may not be -wanting in this new investigation. You have been reading the -papers diligently of late, have you not?" - -"It looks like it," said I ruefully, pointing to a huge bundle in -the corner. "I have had nothing else to do." - -"It is fortunate, for you will perhaps be able to post me up. I -read nothing except the criminal news and the agony column. The -latter is always instructive. But if you have followed recent -events so closely you must have read about Lord St. Simon and his -wedding?" - -"Oh, yes, with the deepest interest." - -"That is well. The letter which I hold in my hand is from Lord -St. Simon. I will read it to you, and in return you must turn -over these papers and let me have whatever bears upon the matter. -This is what he says: - -"'MY DEAR MR. SHERLOCK HOLMES:--Lord Backwater tells me that I -may place implicit reliance upon your judgment and discretion. I -have determined, therefore, to call upon you and to consult you -in reference to the very painful event which has occurred in -connection with my wedding. Mr. Lestrade, of Scotland Yard, is -acting already in the matter, but he assures me that he sees no -objection to your co-operation, and that he even thinks that -it might be of some assistance. I will call at four o'clock in -the afternoon, and, should you have any other engagement at that -time, I hope that you will postpone it, as this matter is of -paramount importance. Yours faithfully, ST. SIMON.' - -"It is dated from Grosvenor Mansions, written with a quill pen, -and the noble lord has had the misfortune to get a smear of ink -upon the outer side of his right little finger," remarked Holmes -as he folded up the epistle. - -"He says four o'clock. It is three now. He will be here in an -hour." - -"Then I have just time, with your assistance, to get clear upon -the subject. Turn over those papers and arrange the extracts in -their order of time, while I take a glance as to who our client -is." He picked a red-covered volume from a line of books of -reference beside the mantelpiece. "Here he is," said he, sitting -down and flattening it out upon his knee. "'Lord Robert Walsingham -de Vere St. Simon, second son of the Duke of Balmoral.' Hum! 'Arms: -Azure, three caltrops in chief over a fess sable. Born in 1846.' -He's forty-one years of age, which is mature for marriage. Was -Under-Secretary for the colonies in a late administration. The -Duke, his father, was at one time Secretary for Foreign Affairs. -They inherit Plantagenet blood by direct descent, and Tudor on -the distaff side. Ha! Well, there is nothing very instructive in -all this. I think that I must turn to you Watson, for something -more solid." - -"I have very little difficulty in finding what I want," said I, -"for the facts are quite recent, and the matter struck me as -remarkable. I feared to refer them to you, however, as I knew -that you had an inquiry on hand and that you disliked the -intrusion of other matters." - -"Oh, you mean the little problem of the Grosvenor Square -furniture van. That is quite cleared up now--though, indeed, it -was obvious from the first. Pray give me the results of your -newspaper selections." - -"Here is the first notice which I can find. It is in the personal -column of the Morning Post, and dates, as you see, some weeks -back: 'A marriage has been arranged,' it says, 'and will, if -rumour is correct, very shortly take place, between Lord Robert -St. Simon, second son of the Duke of Balmoral, and Miss Hatty -Doran, the only daughter of Aloysius Doran. Esq., of San -Francisco, Cal., U.S.A.' That is all." - -"Terse and to the point," remarked Holmes, stretching his long, -thin legs towards the fire. - -"There was a paragraph amplifying this in one of the society -papers of the same week. Ah, here it is: 'There will soon be a -call for protection in the marriage market, for the present -free-trade principle appears to tell heavily against our home -product. One by one the management of the noble houses of Great -Britain is passing into the hands of our fair cousins from across -the Atlantic. An important addition has been made during the last -week to the list of the prizes which have been borne away by -these charming invaders. Lord St. Simon, who has shown himself -for over twenty years proof against the little god's arrows, has -now definitely announced his approaching marriage with Miss Hatty -Doran, the fascinating daughter of a California millionaire. Miss -Doran, whose graceful figure and striking face attracted much -attention at the Westbury House festivities, is an only child, -and it is currently reported that her dowry will run to -considerably over the six figures, with expectancies for the -future. As it is an open secret that the Duke of Balmoral has -been compelled to sell his pictures within the last few years, -and as Lord St. Simon has no property of his own save the small -estate of Birchmoor, it is obvious that the Californian heiress -is not the only gainer by an alliance which will enable her to -make the easy and common transition from a Republican lady to a -British peeress.'" - -"Anything else?" asked Holmes, yawning. - -"Oh, yes; plenty. Then there is another note in the Morning Post -to say that the marriage would be an absolutely quiet one, that it -would be at St. George's, Hanover Square, that only half a dozen -intimate friends would be invited, and that the party would -return to the furnished house at Lancaster Gate which has been -taken by Mr. Aloysius Doran. Two days later--that is, on -Wednesday last--there is a curt announcement that the wedding had -taken place, and that the honeymoon would be passed at Lord -Backwater's place, near Petersfield. Those are all the notices -which appeared before the disappearance of the bride." - -"Before the what?" asked Holmes with a start. - -"The vanishing of the lady." - -"When did she vanish, then?" - -"At the wedding breakfast." - -"Indeed. This is more interesting than it promised to be; quite -dramatic, in fact." - -"Yes; it struck me as being a little out of the common." - -"They often vanish before the ceremony, and occasionally during -the honeymoon; but I cannot call to mind anything quite so prompt -as this. Pray let me have the details." - -"I warn you that they are very incomplete." - -"Perhaps we may make them less so." - -"Such as they are, they are set forth in a single article of a -morning paper of yesterday, which I will read to you. It is -headed, 'Singular Occurrence at a Fashionable Wedding': - -"'The family of Lord Robert St. Simon has been thrown into the -greatest consternation by the strange and painful episodes which -have taken place in connection with his wedding. The ceremony, as -shortly announced in the papers of yesterday, occurred on the -previous morning; but it is only now that it has been possible to -confirm the strange rumours which have been so persistently -floating about. In spite of the attempts of the friends to hush -the matter up, so much public attention has now been drawn to it -that no good purpose can be served by affecting to disregard what -is a common subject for conversation. - -"'The ceremony, which was performed at St. George's, Hanover -Square, was a very quiet one, no one being present save the -father of the bride, Mr. Aloysius Doran, the Duchess of Balmoral, -Lord Backwater, Lord Eustace and Lady Clara St. Simon (the -younger brother and sister of the bridegroom), and Lady Alicia -Whittington. The whole party proceeded afterwards to the house of -Mr. Aloysius Doran, at Lancaster Gate, where breakfast had been -prepared. It appears that some little trouble was caused by a -woman, whose name has not been ascertained, who endeavoured to -force her way into the house after the bridal party, alleging -that she had some claim upon Lord St. Simon. It was only after a -painful and prolonged scene that she was ejected by the butler -and the footman. The bride, who had fortunately entered the house -before this unpleasant interruption, had sat down to breakfast -with the rest, when she complained of a sudden indisposition and -retired to her room. Her prolonged absence having caused some -comment, her father followed her, but learned from her maid that -she had only come up to her chamber for an instant, caught up an -ulster and bonnet, and hurried down to the passage. One of the -footmen declared that he had seen a lady leave the house thus -apparelled, but had refused to credit that it was his mistress, -believing her to be with the company. On ascertaining that his -daughter had disappeared, Mr. Aloysius Doran, in conjunction with -the bridegroom, instantly put themselves in communication with -the police, and very energetic inquiries are being made, which -will probably result in a speedy clearing up of this very -singular business. Up to a late hour last night, however, nothing -had transpired as to the whereabouts of the missing lady. There -are rumours of foul play in the matter, and it is said that the -police have caused the arrest of the woman who had caused the -original disturbance, in the belief that, from jealousy or some -other motive, she may have been concerned in the strange -disappearance of the bride.'" - -"And is that all?" - -"Only one little item in another of the morning papers, but it is -a suggestive one." - -"And it is--" - -"That Miss Flora Millar, the lady who had caused the disturbance, -has actually been arrested. It appears that she was formerly a -danseuse at the Allegro, and that she has known the bridegroom -for some years. There are no further particulars, and the whole -case is in your hands now--so far as it has been set forth in the -public press." - -"And an exceedingly interesting case it appears to be. I would -not have missed it for worlds. But there is a ring at the bell, -Watson, and as the clock makes it a few minutes after four, I -have no doubt that this will prove to be our noble client. Do not -dream of going, Watson, for I very much prefer having a witness, -if only as a check to my own memory." - -"Lord Robert St. Simon," announced our page-boy, throwing open -the door. A gentleman entered, with a pleasant, cultured face, -high-nosed and pale, with something perhaps of petulance about -the mouth, and with the steady, well-opened eye of a man whose -pleasant lot it had ever been to command and to be obeyed. His -manner was brisk, and yet his general appearance gave an undue -impression of age, for he had a slight forward stoop and a little -bend of the knees as he walked. His hair, too, as he swept off -his very curly-brimmed hat, was grizzled round the edges and thin -upon the top. As to his dress, it was careful to the verge of -foppishness, with high collar, black frock-coat, white waistcoat, -yellow gloves, patent-leather shoes, and light-coloured gaiters. -He advanced slowly into the room, turning his head from left to -right, and swinging in his right hand the cord which held his -golden eyeglasses. - -"Good-day, Lord St. Simon," said Holmes, rising and bowing. "Pray -take the basket-chair. This is my friend and colleague, Dr. -Watson. Draw up a little to the fire, and we will talk this -matter over." - -"A most painful matter to me, as you can most readily imagine, -Mr. Holmes. I have been cut to the quick. I understand that you -have already managed several delicate cases of this sort, sir, -though I presume that they were hardly from the same class of -society." - -"No, I am descending." - -"I beg pardon." - -"My last client of the sort was a king." - -"Oh, really! I had no idea. And which king?" - -"The King of Scandinavia." - -"What! Had he lost his wife?" - -"You can understand," said Holmes suavely, "that I extend to the -affairs of my other clients the same secrecy which I promise to -you in yours." - -"Of course! Very right! very right! I'm sure I beg pardon. As to -my own case, I am ready to give you any information which may -assist you in forming an opinion." - -"Thank you. I have already learned all that is in the public -prints, nothing more. I presume that I may take it as correct--this -article, for example, as to the disappearance of the bride." - -Lord St. Simon glanced over it. "Yes, it is correct, as far as it -goes." - -"But it needs a great deal of supplementing before anyone could -offer an opinion. I think that I may arrive at my facts most -directly by questioning you." - -"Pray do so." - -"When did you first meet Miss Hatty Doran?" - -"In San Francisco, a year ago." - -"You were travelling in the States?" - -"Yes." - -"Did you become engaged then?" - -"No." - -"But you were on a friendly footing?" - -"I was amused by her society, and she could see that I was -amused." - -"Her father is very rich?" - -"He is said to be the richest man on the Pacific slope." - -"And how did he make his money?" - -"In mining. He had nothing a few years ago. Then he struck gold, -invested it, and came up by leaps and bounds." - -"Now, what is your own impression as to the young lady's--your -wife's character?" - -The nobleman swung his glasses a little faster and stared down -into the fire. "You see, Mr. Holmes," said he, "my wife was -twenty before her father became a rich man. During that time she -ran free in a mining camp and wandered through woods or -mountains, so that her education has come from Nature rather than -from the schoolmaster. She is what we call in England a tomboy, -with a strong nature, wild and free, unfettered by any sort of -traditions. She is impetuous--volcanic, I was about to say. She -is swift in making up her mind and fearless in carrying out her -resolutions. On the other hand, I would not have given her the -name which I have the honour to bear"--he gave a little stately -cough--"had not I thought her to be at bottom a noble woman. I -believe that she is capable of heroic self-sacrifice and that -anything dishonourable would be repugnant to her." - -"Have you her photograph?" - -"I brought this with me." He opened a locket and showed us the -full face of a very lovely woman. It was not a photograph but an -ivory miniature, and the artist had brought out the full effect -of the lustrous black hair, the large dark eyes, and the -exquisite mouth. Holmes gazed long and earnestly at it. Then he -closed the locket and handed it back to Lord St. Simon. - -"The young lady came to London, then, and you renewed your -acquaintance?" - -"Yes, her father brought her over for this last London season. I -met her several times, became engaged to her, and have now -married her." - -"She brought, I understand, a considerable dowry?" - -"A fair dowry. Not more than is usual in my family." - -"And this, of course, remains to you, since the marriage is a -fait accompli?" - -"I really have made no inquiries on the subject." - -"Very naturally not. Did you see Miss Doran on the day before the -wedding?" - -"Yes." - -"Was she in good spirits?" - -"Never better. She kept talking of what we should do in our -future lives." - -"Indeed! That is very interesting. And on the morning of the -wedding?" - -"She was as bright as possible--at least until after the -ceremony." - -"And did you observe any change in her then?" - -"Well, to tell the truth, I saw then the first signs that I had -ever seen that her temper was just a little sharp. The incident -however, was too trivial to relate and can have no possible -bearing upon the case." - -"Pray let us have it, for all that." - -"Oh, it is childish. She dropped her bouquet as we went towards -the vestry. She was passing the front pew at the time, and it -fell over into the pew. There was a moment's delay, but the -gentleman in the pew handed it up to her again, and it did not -appear to be the worse for the fall. Yet when I spoke to her of -the matter, she answered me abruptly; and in the carriage, on our -way home, she seemed absurdly agitated over this trifling cause." - -"Indeed! You say that there was a gentleman in the pew. Some of -the general public were present, then?" - -"Oh, yes. It is impossible to exclude them when the church is -open." - -"This gentleman was not one of your wife's friends?" - -"No, no; I call him a gentleman by courtesy, but he was quite a -common-looking person. I hardly noticed his appearance. But -really I think that we are wandering rather far from the point." - -"Lady St. Simon, then, returned from the wedding in a less -cheerful frame of mind than she had gone to it. What did she do -on re-entering her father's house?" - -"I saw her in conversation with her maid." - -"And who is her maid?" - -"Alice is her name. She is an American and came from California -with her." - -"A confidential servant?" - -"A little too much so. It seemed to me that her mistress allowed -her to take great liberties. Still, of course, in America they -look upon these things in a different way." - -"How long did she speak to this Alice?" - -"Oh, a few minutes. I had something else to think of." - -"You did not overhear what they said?" - -"Lady St. Simon said something about 'jumping a claim.' She was -accustomed to use slang of the kind. I have no idea what she -meant." - -"American slang is very expressive sometimes. And what did your -wife do when she finished speaking to her maid?" - -"She walked into the breakfast-room." - -"On your arm?" - -"No, alone. She was very independent in little matters like that. -Then, after we had sat down for ten minutes or so, she rose -hurriedly, muttered some words of apology, and left the room. She -never came back." - -"But this maid, Alice, as I understand, deposes that she went to -her room, covered her bride's dress with a long ulster, put on a -bonnet, and went out." - -"Quite so. And she was afterwards seen walking into Hyde Park in -company with Flora Millar, a woman who is now in custody, and who -had already made a disturbance at Mr. Doran's house that -morning." - -"Ah, yes. I should like a few particulars as to this young lady, -and your relations to her." - -Lord St. Simon shrugged his shoulders and raised his eyebrows. -"We have been on a friendly footing for some years--I may say on -a very friendly footing. She used to be at the Allegro. I have -not treated her ungenerously, and she had no just cause of -complaint against me, but you know what women are, Mr. Holmes. -Flora was a dear little thing, but exceedingly hot-headed and -devotedly attached to me. She wrote me dreadful letters when she -heard that I was about to be married, and, to tell the truth, the -reason why I had the marriage celebrated so quietly was that I -feared lest there might be a scandal in the church. She came to -Mr. Doran's door just after we returned, and she endeavoured to -push her way in, uttering very abusive expressions towards my -wife, and even threatening her, but I had foreseen the -possibility of something of the sort, and I had two police -fellows there in private clothes, who soon pushed her out again. -She was quiet when she saw that there was no good in making a -row." - -"Did your wife hear all this?" - -"No, thank goodness, she did not." - -"And she was seen walking with this very woman afterwards?" - -"Yes. That is what Mr. Lestrade, of Scotland Yard, looks upon as -so serious. It is thought that Flora decoyed my wife out and laid -some terrible trap for her." - -"Well, it is a possible supposition." - -"You think so, too?" - -"I did not say a probable one. But you do not yourself look upon -this as likely?" - -"I do not think Flora would hurt a fly." - -"Still, jealousy is a strange transformer of characters. Pray -what is your own theory as to what took place?" - -"Well, really, I came to seek a theory, not to propound one. I -have given you all the facts. Since you ask me, however, I may -say that it has occurred to me as possible that the excitement of -this affair, the consciousness that she had made so immense a -social stride, had the effect of causing some little nervous -disturbance in my wife." - -"In short, that she had become suddenly deranged?" - -"Well, really, when I consider that she has turned her back--I -will not say upon me, but upon so much that many have aspired to -without success--I can hardly explain it in any other fashion." - -"Well, certainly that is also a conceivable hypothesis," said -Holmes, smiling. "And now, Lord St. Simon, I think that I have -nearly all my data. May I ask whether you were seated at the -breakfast-table so that you could see out of the window?" - -"We could see the other side of the road and the Park." - -"Quite so. Then I do not think that I need to detain you longer. -I shall communicate with you." - -"Should you be fortunate enough to solve this problem," said our -client, rising. - -"I have solved it." - -"Eh? What was that?" - -"I say that I have solved it." - -"Where, then, is my wife?" - -"That is a detail which I shall speedily supply." - -Lord St. Simon shook his head. "I am afraid that it will take -wiser heads than yours or mine," he remarked, and bowing in a -stately, old-fashioned manner he departed. - -"It is very good of Lord St. Simon to honour my head by putting -it on a level with his own," said Sherlock Holmes, laughing. "I -think that I shall have a whisky and soda and a cigar after all -this cross-questioning. I had formed my conclusions as to the -case before our client came into the room." - -"My dear Holmes!" - -"I have notes of several similar cases, though none, as I -remarked before, which were quite as prompt. My whole examination -served to turn my conjecture into a certainty. Circumstantial -evidence is occasionally very convincing, as when you find a -trout in the milk, to quote Thoreau's example." - -"But I have heard all that you have heard." - -"Without, however, the knowledge of pre-existing cases which -serves me so well. There was a parallel instance in Aberdeen some -years back, and something on very much the same lines at Munich -the year after the Franco-Prussian War. It is one of these -cases--but, hullo, here is Lestrade! Good-afternoon, Lestrade! -You will find an extra tumbler upon the sideboard, and there are -cigars in the box." - -The official detective was attired in a pea-jacket and cravat, -which gave him a decidedly nautical appearance, and he carried a -black canvas bag in his hand. With a short greeting he seated -himself and lit the cigar which had been offered to him. - -"What's up, then?" asked Holmes with a twinkle in his eye. "You -look dissatisfied." - -"And I feel dissatisfied. It is this infernal St. Simon marriage -case. I can make neither head nor tail of the business." - -"Really! You surprise me." - -"Who ever heard of such a mixed affair? Every clue seems to slip -through my fingers. I have been at work upon it all day." - -"And very wet it seems to have made you," said Holmes laying his -hand upon the arm of the pea-jacket. - -"Yes, I have been dragging the Serpentine." - -"In heaven's name, what for?" - -"In search of the body of Lady St. Simon." - -Sherlock Holmes leaned back in his chair and laughed heartily. - -"Have you dragged the basin of Trafalgar Square fountain?" he -asked. - -"Why? What do you mean?" - -"Because you have just as good a chance of finding this lady in -the one as in the other." - -Lestrade shot an angry glance at my companion. "I suppose you -know all about it," he snarled. - -"Well, I have only just heard the facts, but my mind is made up." - -"Oh, indeed! Then you think that the Serpentine plays no part in -the matter?" - -"I think it very unlikely." - -"Then perhaps you will kindly explain how it is that we found -this in it?" He opened his bag as he spoke, and tumbled onto the -floor a wedding-dress of watered silk, a pair of white satin -shoes and a bride's wreath and veil, all discoloured and soaked -in water. "There," said he, putting a new wedding-ring upon the -top of the pile. "There is a little nut for you to crack, Master -Holmes." - -"Oh, indeed!" said my friend, blowing blue rings into the air. -"You dragged them from the Serpentine?" - -"No. They were found floating near the margin by a park-keeper. -They have been identified as her clothes, and it seemed to me -that if the clothes were there the body would not be far off." - -"By the same brilliant reasoning, every man's body is to be found -in the neighbourhood of his wardrobe. And pray what did you hope -to arrive at through this?" - -"At some evidence implicating Flora Millar in the disappearance." - -"I am afraid that you will find it difficult." - -"Are you, indeed, now?" cried Lestrade with some bitterness. "I -am afraid, Holmes, that you are not very practical with your -deductions and your inferences. You have made two blunders in as -many minutes. This dress does implicate Miss Flora Millar." - -"And how?" - -"In the dress is a pocket. In the pocket is a card-case. In the -card-case is a note. And here is the very note." He slapped it -down upon the table in front of him. "Listen to this: 'You will -see me when all is ready. Come at once. F.H.M.' Now my theory all -along has been that Lady St. Simon was decoyed away by Flora -Millar, and that she, with confederates, no doubt, was -responsible for her disappearance. Here, signed with her -initials, is the very note which was no doubt quietly slipped -into her hand at the door and which lured her within their -reach." - -"Very good, Lestrade," said Holmes, laughing. "You really are -very fine indeed. Let me see it." He took up the paper in a -listless way, but his attention instantly became riveted, and he -gave a little cry of satisfaction. "This is indeed important," -said he. - -"Ha! you find it so?" - -"Extremely so. I congratulate you warmly." - -Lestrade rose in his triumph and bent his head to look. "Why," he -shrieked, "you're looking at the wrong side!" - -"On the contrary, this is the right side." - -"The right side? You're mad! Here is the note written in pencil -over here." - -"And over here is what appears to be the fragment of a hotel -bill, which interests me deeply." - -"There's nothing in it. I looked at it before," said Lestrade. -"'Oct. 4th, rooms 8s., breakfast 2s. 6d., cocktail 1s., lunch 2s. -6d., glass sherry, 8d.' I see nothing in that." - -"Very likely not. It is most important, all the same. As to the -note, it is important also, or at least the initials are, so I -congratulate you again." - -"I've wasted time enough," said Lestrade, rising. "I believe in -hard work and not in sitting by the fire spinning fine theories. -Good-day, Mr. Holmes, and we shall see which gets to the bottom -of the matter first." He gathered up the garments, thrust them -into the bag, and made for the door. - -"Just one hint to you, Lestrade," drawled Holmes before his rival -vanished; "I will tell you the true solution of the matter. Lady -St. Simon is a myth. There is not, and there never has been, any -such person." - -Lestrade looked sadly at my companion. Then he turned to me, -tapped his forehead three times, shook his head solemnly, and -hurried away. - -He had hardly shut the door behind him when Holmes rose to put on -his overcoat. "There is something in what the fellow says about -outdoor work," he remarked, "so I think, Watson, that I must -leave you to your papers for a little." - -It was after five o'clock when Sherlock Holmes left me, but I had -no time to be lonely, for within an hour there arrived a -confectioner's man with a very large flat box. This he unpacked -with the help of a youth whom he had brought with him, and -presently, to my very great astonishment, a quite epicurean -little cold supper began to be laid out upon our humble -lodging-house mahogany. There were a couple of brace of cold -woodcock, a pheasant, a pt de foie gras pie with a group of -ancient and cobwebby bottles. Having laid out all these luxuries, -my two visitors vanished away, like the genii of the Arabian -Nights, with no explanation save that the things had been paid -for and were ordered to this address. - -Just before nine o'clock Sherlock Holmes stepped briskly into the -room. His features were gravely set, but there was a light in his -eye which made me think that he had not been disappointed in his -conclusions. - -"They have laid the supper, then," he said, rubbing his hands. - -"You seem to expect company. They have laid for five." - -"Yes, I fancy we may have some company dropping in," said he. "I -am surprised that Lord St. Simon has not already arrived. Ha! I -fancy that I hear his step now upon the stairs." - -It was indeed our visitor of the afternoon who came bustling in, -dangling his glasses more vigorously than ever, and with a very -perturbed expression upon his aristocratic features. - -"My messenger reached you, then?" asked Holmes. - -"Yes, and I confess that the contents startled me beyond measure. -Have you good authority for what you say?" - -"The best possible." - -Lord St. Simon sank into a chair and passed his hand over his -forehead. - -"What will the Duke say," he murmured, "when he hears that one of -the family has been subjected to such humiliation?" - -"It is the purest accident. I cannot allow that there is any -humiliation." - -"Ah, you look on these things from another standpoint." - -"I fail to see that anyone is to blame. I can hardly see how the -lady could have acted otherwise, though her abrupt method of -doing it was undoubtedly to be regretted. Having no mother, she -had no one to advise her at such a crisis." - -"It was a slight, sir, a public slight," said Lord St. Simon, -tapping his fingers upon the table. - -"You must make allowance for this poor girl, placed in so -unprecedented a position." - -"I will make no allowance. I am very angry indeed, and I have -been shamefully used." - -"I think that I heard a ring," said Holmes. "Yes, there are steps -on the landing. If I cannot persuade you to take a lenient view -of the matter, Lord St. Simon, I have brought an advocate here -who may be more successful." He opened the door and ushered in a -lady and gentleman. "Lord St. Simon," said he "allow me to -introduce you to Mr. and Mrs. Francis Hay Moulton. The lady, I -think, you have already met." - -At the sight of these newcomers our client had sprung from his -seat and stood very erect, with his eyes cast down and his hand -thrust into the breast of his frock-coat, a picture of offended -dignity. The lady had taken a quick step forward and had held out -her hand to him, but he still refused to raise his eyes. It was -as well for his resolution, perhaps, for her pleading face was -one which it was hard to resist. - -"You're angry, Robert," said she. "Well, I guess you have every -cause to be." - -"Pray make no apology to me," said Lord St. Simon bitterly. - -"Oh, yes, I know that I have treated you real bad and that I -should have spoken to you before I went; but I was kind of -rattled, and from the time when I saw Frank here again I just -didn't know what I was doing or saying. I only wonder I didn't -fall down and do a faint right there before the altar." - -"Perhaps, Mrs. Moulton, you would like my friend and me to leave -the room while you explain this matter?" - -"If I may give an opinion," remarked the strange gentleman, -"we've had just a little too much secrecy over this business -already. For my part, I should like all Europe and America to -hear the rights of it." He was a small, wiry, sunburnt man, -clean-shaven, with a sharp face and alert manner. - -"Then I'll tell our story right away," said the lady. "Frank here -and I met in '84, in McQuire's camp, near the Rockies, where pa -was working a claim. We were engaged to each other, Frank and I; -but then one day father struck a rich pocket and made a pile, -while poor Frank here had a claim that petered out and came to -nothing. The richer pa grew the poorer was Frank; so at last pa -wouldn't hear of our engagement lasting any longer, and he took -me away to 'Frisco. Frank wouldn't throw up his hand, though; so -he followed me there, and he saw me without pa knowing anything -about it. It would only have made him mad to know, so we just -fixed it all up for ourselves. Frank said that he would go and -make his pile, too, and never come back to claim me until he had -as much as pa. So then I promised to wait for him to the end of -time and pledged myself not to marry anyone else while he lived. -'Why shouldn't we be married right away, then,' said he, 'and -then I will feel sure of you; and I won't claim to be your -husband until I come back?' Well, we talked it over, and he had -fixed it all up so nicely, with a clergyman all ready in waiting, -that we just did it right there; and then Frank went off to seek -his fortune, and I went back to pa. - -"The next I heard of Frank was that he was in Montana, and then -he went prospecting in Arizona, and then I heard of him from New -Mexico. After that came a long newspaper story about how a -miners' camp had been attacked by Apache Indians, and there was -my Frank's name among the killed. I fainted dead away, and I was -very sick for months after. Pa thought I had a decline and took -me to half the doctors in 'Frisco. Not a word of news came for a -year and more, so that I never doubted that Frank was really -dead. Then Lord St. Simon came to 'Frisco, and we came to London, -and a marriage was arranged, and pa was very pleased, but I felt -all the time that no man on this earth would ever take the place -in my heart that had been given to my poor Frank. - -"Still, if I had married Lord St. Simon, of course I'd have done -my duty by him. We can't command our love, but we can our -actions. I went to the altar with him with the intention to make -him just as good a wife as it was in me to be. But you may -imagine what I felt when, just as I came to the altar rails, I -glanced back and saw Frank standing and looking at me out of the -first pew. I thought it was his ghost at first; but when I looked -again there he was still, with a kind of question in his eyes, as -if to ask me whether I were glad or sorry to see him. I wonder I -didn't drop. I know that everything was turning round, and the -words of the clergyman were just like the buzz of a bee in my -ear. I didn't know what to do. Should I stop the service and make -a scene in the church? I glanced at him again, and he seemed to -know what I was thinking, for he raised his finger to his lips to -tell me to be still. Then I saw him scribble on a piece of paper, -and I knew that he was writing me a note. As I passed his pew on -the way out I dropped my bouquet over to him, and he slipped the -note into my hand when he returned me the flowers. It was only a -line asking me to join him when he made the sign to me to do so. -Of course I never doubted for a moment that my first duty was now -to him, and I determined to do just whatever he might direct. - -"When I got back I told my maid, who had known him in California, -and had always been his friend. I ordered her to say nothing, but -to get a few things packed and my ulster ready. I know I ought to -have spoken to Lord St. Simon, but it was dreadful hard before -his mother and all those great people. I just made up my mind to -run away and explain afterwards. I hadn't been at the table ten -minutes before I saw Frank out of the window at the other side of -the road. He beckoned to me and then began walking into the Park. -I slipped out, put on my things, and followed him. Some woman -came talking something or other about Lord St. Simon to -me--seemed to me from the little I heard as if he had a little -secret of his own before marriage also--but I managed to get away -from her and soon overtook Frank. We got into a cab together, and -away we drove to some lodgings he had taken in Gordon Square, and -that was my true wedding after all those years of waiting. Frank -had been a prisoner among the Apaches, had escaped, came on to -'Frisco, found that I had given him up for dead and had gone to -England, followed me there, and had come upon me at last on the -very morning of my second wedding." - -"I saw it in a paper," explained the American. "It gave the name -and the church but not where the lady lived." - -"Then we had a talk as to what we should do, and Frank was all -for openness, but I was so ashamed of it all that I felt as if I -should like to vanish away and never see any of them again--just -sending a line to pa, perhaps, to show him that I was alive. It -was awful to me to think of all those lords and ladies sitting -round that breakfast-table and waiting for me to come back. So -Frank took my wedding-clothes and things and made a bundle of -them, so that I should not be traced, and dropped them away -somewhere where no one could find them. It is likely that we -should have gone on to Paris to-morrow, only that this good -gentleman, Mr. Holmes, came round to us this evening, though how -he found us is more than I can think, and he showed us very -clearly and kindly that I was wrong and that Frank was right, and -that we should be putting ourselves in the wrong if we were so -secret. Then he offered to give us a chance of talking to Lord -St. Simon alone, and so we came right away round to his rooms at -once. Now, Robert, you have heard it all, and I am very sorry if -I have given you pain, and I hope that you do not think very -meanly of me." - -Lord St. Simon had by no means relaxed his rigid attitude, but -had listened with a frowning brow and a compressed lip to this -long narrative. - -"Excuse me," he said, "but it is not my custom to discuss my most -intimate personal affairs in this public manner." - -"Then you won't forgive me? You won't shake hands before I go?" - -"Oh, certainly, if it would give you any pleasure." He put out -his hand and coldly grasped that which she extended to him. - -"I had hoped," suggested Holmes, "that you would have joined us -in a friendly supper." - -"I think that there you ask a little too much," responded his -Lordship. "I may be forced to acquiesce in these recent -developments, but I can hardly be expected to make merry over -them. I think that with your permission I will now wish you all a -very good-night." He included us all in a sweeping bow and -stalked out of the room. - -"Then I trust that you at least will honour me with your -company," said Sherlock Holmes. "It is always a joy to meet an -American, Mr. Moulton, for I am one of those who believe that the -folly of a monarch and the blundering of a minister in far-gone -years will not prevent our children from being some day citizens -of the same world-wide country under a flag which shall be a -quartering of the Union Jack with the Stars and Stripes." - -"The case has been an interesting one," remarked Holmes when our -visitors had left us, "because it serves to show very clearly how -simple the explanation may be of an affair which at first sight -seems to be almost inexplicable. Nothing could be more natural -than the sequence of events as narrated by this lady, and nothing -stranger than the result when viewed, for instance, by Mr. -Lestrade of Scotland Yard." - -"You were not yourself at fault at all, then?" - -"From the first, two facts were very obvious to me, the one that -the lady had been quite willing to undergo the wedding ceremony, -the other that she had repented of it within a few minutes of -returning home. Obviously something had occurred during the -morning, then, to cause her to change her mind. What could that -something be? She could not have spoken to anyone when she was -out, for she had been in the company of the bridegroom. Had she -seen someone, then? If she had, it must be someone from America -because she had spent so short a time in this country that she -could hardly have allowed anyone to acquire so deep an influence -over her that the mere sight of him would induce her to change -her plans so completely. You see we have already arrived, by a -process of exclusion, at the idea that she might have seen an -American. Then who could this American be, and why should he -possess so much influence over her? It might be a lover; it might -be a husband. Her young womanhood had, I knew, been spent in -rough scenes and under strange conditions. So far I had got -before I ever heard Lord St. Simon's narrative. When he told us -of a man in a pew, of the change in the bride's manner, of so -transparent a device for obtaining a note as the dropping of a -bouquet, of her resort to her confidential maid, and of her very -significant allusion to claim-jumping--which in miners' parlance -means taking possession of that which another person has a prior -claim to--the whole situation became absolutely clear. She had -gone off with a man, and the man was either a lover or was a -previous husband--the chances being in favour of the latter." - -"And how in the world did you find them?" - -"It might have been difficult, but friend Lestrade held -information in his hands the value of which he did not himself -know. The initials were, of course, of the highest importance, -but more valuable still was it to know that within a week he had -settled his bill at one of the most select London hotels." - -"How did you deduce the select?" - -"By the select prices. Eight shillings for a bed and eightpence -for a glass of sherry pointed to one of the most expensive -hotels. There are not many in London which charge at that rate. -In the second one which I visited in Northumberland Avenue, I -learned by an inspection of the book that Francis H. Moulton, an -American gentleman, had left only the day before, and on looking -over the entries against him, I came upon the very items which I -had seen in the duplicate bill. His letters were to be forwarded -to 226 Gordon Square; so thither I travelled, and being fortunate -enough to find the loving couple at home, I ventured to give them -some paternal advice and to point out to them that it would be -better in every way that they should make their position a little -clearer both to the general public and to Lord St. Simon in -particular. I invited them to meet him here, and, as you see, I -made him keep the appointment." - -"But with no very good result," I remarked. "His conduct was -certainly not very gracious." - -"Ah, Watson," said Holmes, smiling, "perhaps you would not be -very gracious either, if, after all the trouble of wooing and -wedding, you found yourself deprived in an instant of wife and of -fortune. I think that we may judge Lord St. Simon very mercifully -and thank our stars that we are never likely to find ourselves in -the same position. Draw your chair up and hand me my violin, for -the only problem we have still to solve is how to while away -these bleak autumnal evenings." - - - -XI. THE ADVENTURE OF THE BERYL CORONET - -"Holmes," said I as I stood one morning in our bow-window looking -down the street, "here is a madman coming along. It seems rather -sad that his relatives should allow him to come out alone." - -My friend rose lazily from his armchair and stood with his hands -in the pockets of his dressing-gown, looking over my shoulder. It -was a bright, crisp February morning, and the snow of the day -before still lay deep upon the ground, shimmering brightly in the -wintry sun. Down the centre of Baker Street it had been ploughed -into a brown crumbly band by the traffic, but at either side and -on the heaped-up edges of the foot-paths it still lay as white as -when it fell. The grey pavement had been cleaned and scraped, but -was still dangerously slippery, so that there were fewer -passengers than usual. Indeed, from the direction of the -Metropolitan Station no one was coming save the single gentleman -whose eccentric conduct had drawn my attention. - -He was a man of about fifty, tall, portly, and imposing, with a -massive, strongly marked face and a commanding figure. He was -dressed in a sombre yet rich style, in black frock-coat, shining -hat, neat brown gaiters, and well-cut pearl-grey trousers. Yet -his actions were in absurd contrast to the dignity of his dress -and features, for he was running hard, with occasional little -springs, such as a weary man gives who is little accustomed to -set any tax upon his legs. As he ran he jerked his hands up and -down, waggled his head, and writhed his face into the most -extraordinary contortions. - -"What on earth can be the matter with him?" I asked. "He is -looking up at the numbers of the houses." - -"I believe that he is coming here," said Holmes, rubbing his -hands. - -"Here?" - -"Yes; I rather think he is coming to consult me professionally. I -think that I recognise the symptoms. Ha! did I not tell you?" As -he spoke, the man, puffing and blowing, rushed at our door and -pulled at our bell until the whole house resounded with the -clanging. - -A few moments later he was in our room, still puffing, still -gesticulating, but with so fixed a look of grief and despair in -his eyes that our smiles were turned in an instant to horror and -pity. For a while he could not get his words out, but swayed his -body and plucked at his hair like one who has been driven to the -extreme limits of his reason. Then, suddenly springing to his -feet, he beat his head against the wall with such force that we -both rushed upon him and tore him away to the centre of the room. -Sherlock Holmes pushed him down into the easy-chair and, sitting -beside him, patted his hand and chatted with him in the easy, -soothing tones which he knew so well how to employ. - -"You have come to me to tell your story, have you not?" said he. -"You are fatigued with your haste. Pray wait until you have -recovered yourself, and then I shall be most happy to look into -any little problem which you may submit to me." - -The man sat for a minute or more with a heaving chest, fighting -against his emotion. Then he passed his handkerchief over his -brow, set his lips tight, and turned his face towards us. - -"No doubt you think me mad?" said he. - -"I see that you have had some great trouble," responded Holmes. - -"God knows I have!--a trouble which is enough to unseat my -reason, so sudden and so terrible is it. Public disgrace I might -have faced, although I am a man whose character has never yet -borne a stain. Private affliction also is the lot of every man; -but the two coming together, and in so frightful a form, have -been enough to shake my very soul. Besides, it is not I alone. -The very noblest in the land may suffer unless some way be found -out of this horrible affair." - -"Pray compose yourself, sir," said Holmes, "and let me have a -clear account of who you are and what it is that has befallen -you." - -"My name," answered our visitor, "is probably familiar to your -ears. I am Alexander Holder, of the banking firm of Holder & -Stevenson, of Threadneedle Street." - -The name was indeed well known to us as belonging to the senior -partner in the second largest private banking concern in the City -of London. What could have happened, then, to bring one of the -foremost citizens of London to this most pitiable pass? We -waited, all curiosity, until with another effort he braced -himself to tell his story. - -"I feel that time is of value," said he; "that is why I hastened -here when the police inspector suggested that I should secure -your co-operation. I came to Baker Street by the Underground and -hurried from there on foot, for the cabs go slowly through this -snow. That is why I was so out of breath, for I am a man who -takes very little exercise. I feel better now, and I will put the -facts before you as shortly and yet as clearly as I can. - -"It is, of course, well known to you that in a successful banking -business as much depends upon our being able to find remunerative -investments for our funds as upon our increasing our connection -and the number of our depositors. One of our most lucrative means -of laying out money is in the shape of loans, where the security -is unimpeachable. We have done a good deal in this direction -during the last few years, and there are many noble families to -whom we have advanced large sums upon the security of their -pictures, libraries, or plate. - -"Yesterday morning I was seated in my office at the bank when a -card was brought in to me by one of the clerks. I started when I -saw the name, for it was that of none other than--well, perhaps -even to you I had better say no more than that it was a name -which is a household word all over the earth--one of the highest, -noblest, most exalted names in England. I was overwhelmed by the -honour and attempted, when he entered, to say so, but he plunged -at once into business with the air of a man who wishes to hurry -quickly through a disagreeable task. - -"'Mr. Holder,' said he, 'I have been informed that you are in the -habit of advancing money.' - -"'The firm does so when the security is good.' I answered. - -"'It is absolutely essential to me,' said he, 'that I should have -50,000 pounds at once. I could, of course, borrow so trifling a -sum ten times over from my friends, but I much prefer to make it -a matter of business and to carry out that business myself. In my -position you can readily understand that it is unwise to place -one's self under obligations.' - -"'For how long, may I ask, do you want this sum?' I asked. - -"'Next Monday I have a large sum due to me, and I shall then most -certainly repay what you advance, with whatever interest you -think it right to charge. But it is very essential to me that the -money should be paid at once.' - -"'I should be happy to advance it without further parley from my -own private purse,' said I, 'were it not that the strain would be -rather more than it could bear. If, on the other hand, I am to do -it in the name of the firm, then in justice to my partner I must -insist that, even in your case, every businesslike precaution -should be taken.' - -"'I should much prefer to have it so,' said he, raising up a -square, black morocco case which he had laid beside his chair. -'You have doubtless heard of the Beryl Coronet?' - -"'One of the most precious public possessions of the empire,' -said I. - -"'Precisely.' He opened the case, and there, imbedded in soft, -flesh-coloured velvet, lay the magnificent piece of jewellery -which he had named. 'There are thirty-nine enormous beryls,' said -he, 'and the price of the gold chasing is incalculable. The -lowest estimate would put the worth of the coronet at double the -sum which I have asked. I am prepared to leave it with you as my -security.' - -"I took the precious case into my hands and looked in some -perplexity from it to my illustrious client. - -"'You doubt its value?' he asked. - -"'Not at all. I only doubt--' - -"'The propriety of my leaving it. You may set your mind at rest -about that. I should not dream of doing so were it not absolutely -certain that I should be able in four days to reclaim it. It is a -pure matter of form. Is the security sufficient?' - -"'Ample.' - -"'You understand, Mr. Holder, that I am giving you a strong proof -of the confidence which I have in you, founded upon all that I -have heard of you. I rely upon you not only to be discreet and to -refrain from all gossip upon the matter but, above all, to -preserve this coronet with every possible precaution because I -need not say that a great public scandal would be caused if any -harm were to befall it. Any injury to it would be almost as -serious as its complete loss, for there are no beryls in the -world to match these, and it would be impossible to replace them. -I leave it with you, however, with every confidence, and I shall -call for it in person on Monday morning.' - -"Seeing that my client was anxious to leave, I said no more but, -calling for my cashier, I ordered him to pay over fifty 1000 -pound notes. When I was alone once more, however, with the -precious case lying upon the table in front of me, I could not -but think with some misgivings of the immense responsibility -which it entailed upon me. There could be no doubt that, as it -was a national possession, a horrible scandal would ensue if any -misfortune should occur to it. I already regretted having ever -consented to take charge of it. However, it was too late to alter -the matter now, so I locked it up in my private safe and turned -once more to my work. - -"When evening came I felt that it would be an imprudence to leave -so precious a thing in the office behind me. Bankers' safes had -been forced before now, and why should not mine be? If so, how -terrible would be the position in which I should find myself! I -determined, therefore, that for the next few days I would always -carry the case backward and forward with me, so that it might -never be really out of my reach. With this intention, I called a -cab and drove out to my house at Streatham, carrying the jewel -with me. I did not breathe freely until I had taken it upstairs -and locked it in the bureau of my dressing-room. - -"And now a word as to my household, Mr. Holmes, for I wish you to -thoroughly understand the situation. My groom and my page sleep -out of the house, and may be set aside altogether. I have three -maid-servants who have been with me a number of years and whose -absolute reliability is quite above suspicion. Another, Lucy -Parr, the second waiting-maid, has only been in my service a few -months. She came with an excellent character, however, and has -always given me satisfaction. She is a very pretty girl and has -attracted admirers who have occasionally hung about the place. -That is the only drawback which we have found to her, but we -believe her to be a thoroughly good girl in every way. - -"So much for the servants. My family itself is so small that it -will not take me long to describe it. I am a widower and have an -only son, Arthur. He has been a disappointment to me, Mr. -Holmes--a grievous disappointment. I have no doubt that I am -myself to blame. People tell me that I have spoiled him. Very -likely I have. When my dear wife died I felt that he was all I -had to love. I could not bear to see the smile fade even for a -moment from his face. I have never denied him a wish. Perhaps it -would have been better for both of us had I been sterner, but I -meant it for the best. - -"It was naturally my intention that he should succeed me in my -business, but he was not of a business turn. He was wild, -wayward, and, to speak the truth, I could not trust him in the -handling of large sums of money. When he was young he became a -member of an aristocratic club, and there, having charming -manners, he was soon the intimate of a number of men with long -purses and expensive habits. He learned to play heavily at cards -and to squander money on the turf, until he had again and again -to come to me and implore me to give him an advance upon his -allowance, that he might settle his debts of honour. He tried -more than once to break away from the dangerous company which he -was keeping, but each time the influence of his friend, Sir -George Burnwell, was enough to draw him back again. - -"And, indeed, I could not wonder that such a man as Sir George -Burnwell should gain an influence over him, for he has frequently -brought him to my house, and I have found myself that I could -hardly resist the fascination of his manner. He is older than -Arthur, a man of the world to his finger-tips, one who had been -everywhere, seen everything, a brilliant talker, and a man of -great personal beauty. Yet when I think of him in cold blood, far -away from the glamour of his presence, I am convinced from his -cynical speech and the look which I have caught in his eyes that -he is one who should be deeply distrusted. So I think, and so, -too, thinks my little Mary, who has a woman's quick insight into -character. - -"And now there is only she to be described. She is my niece; but -when my brother died five years ago and left her alone in the -world I adopted her, and have looked upon her ever since as my -daughter. She is a sunbeam in my house--sweet, loving, beautiful, -a wonderful manager and housekeeper, yet as tender and quiet and -gentle as a woman could be. She is my right hand. I do not know -what I could do without her. In only one matter has she ever gone -against my wishes. Twice my boy has asked her to marry him, for -he loves her devotedly, but each time she has refused him. I -think that if anyone could have drawn him into the right path it -would have been she, and that his marriage might have changed his -whole life; but now, alas! it is too late--forever too late! - -"Now, Mr. Holmes, you know the people who live under my roof, and -I shall continue with my miserable story. - -"When we were taking coffee in the drawing-room that night after -dinner, I told Arthur and Mary my experience, and of the precious -treasure which we had under our roof, suppressing only the name -of my client. Lucy Parr, who had brought in the coffee, had, I am -sure, left the room; but I cannot swear that the door was closed. -Mary and Arthur were much interested and wished to see the famous -coronet, but I thought it better not to disturb it. - -"'Where have you put it?' asked Arthur. - -"'In my own bureau.' - -"'Well, I hope to goodness the house won't be burgled during the -night.' said he. - -"'It is locked up,' I answered. - -"'Oh, any old key will fit that bureau. When I was a youngster I -have opened it myself with the key of the box-room cupboard.' - -"He often had a wild way of talking, so that I thought little of -what he said. He followed me to my room, however, that night with -a very grave face. - -"'Look here, dad,' said he with his eyes cast down, 'can you let -me have 200 pounds?' - -"'No, I cannot!' I answered sharply. 'I have been far too -generous with you in money matters.' - -"'You have been very kind,' said he, 'but I must have this money, -or else I can never show my face inside the club again.' - -"'And a very good thing, too!' I cried. - -"'Yes, but you would not have me leave it a dishonoured man,' -said he. 'I could not bear the disgrace. I must raise the money -in some way, and if you will not let me have it, then I must try -other means.' - -"I was very angry, for this was the third demand during the -month. 'You shall not have a farthing from me,' I cried, on which -he bowed and left the room without another word. - -"When he was gone I unlocked my bureau, made sure that my -treasure was safe, and locked it again. Then I started to go -round the house to see that all was secure--a duty which I -usually leave to Mary but which I thought it well to perform -myself that night. As I came down the stairs I saw Mary herself -at the side window of the hall, which she closed and fastened as -I approached. - -"'Tell me, dad,' said she, looking, I thought, a little -disturbed, 'did you give Lucy, the maid, leave to go out -to-night?' - -"'Certainly not.' - -"'She came in just now by the back door. I have no doubt that she -has only been to the side gate to see someone, but I think that -it is hardly safe and should be stopped.' - -"'You must speak to her in the morning, or I will if you prefer -it. Are you sure that everything is fastened?' - -"'Quite sure, dad.' - -"'Then, good-night.' I kissed her and went up to my bedroom -again, where I was soon asleep. - -"I am endeavouring to tell you everything, Mr. Holmes, which may -have any bearing upon the case, but I beg that you will question -me upon any point which I do not make clear." - -"On the contrary, your statement is singularly lucid." - -"I come to a part of my story now in which I should wish to be -particularly so. I am not a very heavy sleeper, and the anxiety -in my mind tended, no doubt, to make me even less so than usual. -About two in the morning, then, I was awakened by some sound in -the house. It had ceased ere I was wide awake, but it had left an -impression behind it as though a window had gently closed -somewhere. I lay listening with all my ears. Suddenly, to my -horror, there was a distinct sound of footsteps moving softly in -the next room. I slipped out of bed, all palpitating with fear, -and peeped round the corner of my dressing-room door. - -"'Arthur!' I screamed, 'you villain! you thief! How dare you -touch that coronet?' - -"The gas was half up, as I had left it, and my unhappy boy, -dressed only in his shirt and trousers, was standing beside the -light, holding the coronet in his hands. He appeared to be -wrenching at it, or bending it with all his strength. At my cry -he dropped it from his grasp and turned as pale as death. I -snatched it up and examined it. One of the gold corners, with -three of the beryls in it, was missing. - -"'You blackguard!' I shouted, beside myself with rage. 'You have -destroyed it! You have dishonoured me forever! Where are the -jewels which you have stolen?' - -"'Stolen!' he cried. - -"'Yes, thief!' I roared, shaking him by the shoulder. - -"'There are none missing. There cannot be any missing,' said he. - -"'There are three missing. And you know where they are. Must I -call you a liar as well as a thief? Did I not see you trying to -tear off another piece?' - -"'You have called me names enough,' said he, 'I will not stand it -any longer. I shall not say another word about this business, -since you have chosen to insult me. I will leave your house in -the morning and make my own way in the world.' - -"'You shall leave it in the hands of the police!' I cried -half-mad with grief and rage. 'I shall have this matter probed to -the bottom.' - -"'You shall learn nothing from me,' said he with a passion such -as I should not have thought was in his nature. 'If you choose to -call the police, let the police find what they can.' - -"By this time the whole house was astir, for I had raised my -voice in my anger. Mary was the first to rush into my room, and, -at the sight of the coronet and of Arthur's face, she read the -whole story and, with a scream, fell down senseless on the -ground. I sent the house-maid for the police and put the -investigation into their hands at once. When the inspector and a -constable entered the house, Arthur, who had stood sullenly with -his arms folded, asked me whether it was my intention to charge -him with theft. I answered that it had ceased to be a private -matter, but had become a public one, since the ruined coronet was -national property. I was determined that the law should have its -way in everything. - -"'At least,' said he, 'you will not have me arrested at once. It -would be to your advantage as well as mine if I might leave the -house for five minutes.' - -"'That you may get away, or perhaps that you may conceal what you -have stolen,' said I. And then, realising the dreadful position -in which I was placed, I implored him to remember that not only -my honour but that of one who was far greater than I was at -stake; and that he threatened to raise a scandal which would -convulse the nation. He might avert it all if he would but tell -me what he had done with the three missing stones. - -"'You may as well face the matter,' said I; 'you have been caught -in the act, and no confession could make your guilt more heinous. -If you but make such reparation as is in your power, by telling -us where the beryls are, all shall be forgiven and forgotten.' - -"'Keep your forgiveness for those who ask for it,' he answered, -turning away from me with a sneer. I saw that he was too hardened -for any words of mine to influence him. There was but one way for -it. I called in the inspector and gave him into custody. A search -was made at once not only of his person but of his room and of -every portion of the house where he could possibly have concealed -the gems; but no trace of them could be found, nor would the -wretched boy open his mouth for all our persuasions and our -threats. This morning he was removed to a cell, and I, after -going through all the police formalities, have hurried round to -you to implore you to use your skill in unravelling the matter. -The police have openly confessed that they can at present make -nothing of it. You may go to any expense which you think -necessary. I have already offered a reward of 1000 pounds. My -God, what shall I do! I have lost my honour, my gems, and my son -in one night. Oh, what shall I do!" - -He put a hand on either side of his head and rocked himself to -and fro, droning to himself like a child whose grief has got -beyond words. - -Sherlock Holmes sat silent for some few minutes, with his brows -knitted and his eyes fixed upon the fire. - -"Do you receive much company?" he asked. - -"None save my partner with his family and an occasional friend of -Arthur's. Sir George Burnwell has been several times lately. No -one else, I think." - -"Do you go out much in society?" - -"Arthur does. Mary and I stay at home. We neither of us care for -it." - -"That is unusual in a young girl." - -"She is of a quiet nature. Besides, she is not so very young. She -is four-and-twenty." - -"This matter, from what you say, seems to have been a shock to -her also." - -"Terrible! She is even more affected than I." - -"You have neither of you any doubt as to your son's guilt?" - -"How can we have when I saw him with my own eyes with the coronet -in his hands." - -"I hardly consider that a conclusive proof. Was the remainder of -the coronet at all injured?" - -"Yes, it was twisted." - -"Do you not think, then, that he might have been trying to -straighten it?" - -"God bless you! You are doing what you can for him and for me. -But it is too heavy a task. What was he doing there at all? If -his purpose were innocent, why did he not say so?" - -"Precisely. And if it were guilty, why did he not invent a lie? -His silence appears to me to cut both ways. There are several -singular points about the case. What did the police think of the -noise which awoke you from your sleep?" - -"They considered that it might be caused by Arthur's closing his -bedroom door." - -"A likely story! As if a man bent on felony would slam his door -so as to wake a household. What did they say, then, of the -disappearance of these gems?" - -"They are still sounding the planking and probing the furniture -in the hope of finding them." - -"Have they thought of looking outside the house?" - -"Yes, they have shown extraordinary energy. The whole garden has -already been minutely examined." - -"Now, my dear sir," said Holmes, "is it not obvious to you now -that this matter really strikes very much deeper than either you -or the police were at first inclined to think? It appeared to you -to be a simple case; to me it seems exceedingly complex. Consider -what is involved by your theory. You suppose that your son came -down from his bed, went, at great risk, to your dressing-room, -opened your bureau, took out your coronet, broke off by main -force a small portion of it, went off to some other place, -concealed three gems out of the thirty-nine, with such skill that -nobody can find them, and then returned with the other thirty-six -into the room in which he exposed himself to the greatest danger -of being discovered. I ask you now, is such a theory tenable?" - -"But what other is there?" cried the banker with a gesture of -despair. "If his motives were innocent, why does he not explain -them?" - -"It is our task to find that out," replied Holmes; "so now, if -you please, Mr. Holder, we will set off for Streatham together, -and devote an hour to glancing a little more closely into -details." - -My friend insisted upon my accompanying them in their expedition, -which I was eager enough to do, for my curiosity and sympathy -were deeply stirred by the story to which we had listened. I -confess that the guilt of the banker's son appeared to me to be -as obvious as it did to his unhappy father, but still I had such -faith in Holmes' judgment that I felt that there must be some -grounds for hope as long as he was dissatisfied with the accepted -explanation. He hardly spoke a word the whole way out to the -southern suburb, but sat with his chin upon his breast and his -hat drawn over his eyes, sunk in the deepest thought. Our client -appeared to have taken fresh heart at the little glimpse of hope -which had been presented to him, and he even broke into a -desultory chat with me over his business affairs. A short railway -journey and a shorter walk brought us to Fairbank, the modest -residence of the great financier. - -Fairbank was a good-sized square house of white stone, standing -back a little from the road. A double carriage-sweep, with a -snow-clad lawn, stretched down in front to two large iron gates -which closed the entrance. On the right side was a small wooden -thicket, which led into a narrow path between two neat hedges -stretching from the road to the kitchen door, and forming the -tradesmen's entrance. On the left ran a lane which led to the -stables, and was not itself within the grounds at all, being a -public, though little used, thoroughfare. Holmes left us standing -at the door and walked slowly all round the house, across the -front, down the tradesmen's path, and so round by the garden -behind into the stable lane. So long was he that Mr. Holder and I -went into the dining-room and waited by the fire until he should -return. We were sitting there in silence when the door opened and -a young lady came in. She was rather above the middle height, -slim, with dark hair and eyes, which seemed the darker against -the absolute pallor of her skin. I do not think that I have ever -seen such deadly paleness in a woman's face. Her lips, too, were -bloodless, but her eyes were flushed with crying. As she swept -silently into the room she impressed me with a greater sense of -grief than the banker had done in the morning, and it was the -more striking in her as she was evidently a woman of strong -character, with immense capacity for self-restraint. Disregarding -my presence, she went straight to her uncle and passed her hand -over his head with a sweet womanly caress. - -"You have given orders that Arthur should be liberated, have you -not, dad?" she asked. - -"No, no, my girl, the matter must be probed to the bottom." - -"But I am so sure that he is innocent. You know what woman's -instincts are. I know that he has done no harm and that you will -be sorry for having acted so harshly." - -"Why is he silent, then, if he is innocent?" - -"Who knows? Perhaps because he was so angry that you should -suspect him." - -"How could I help suspecting him, when I actually saw him with -the coronet in his hand?" - -"Oh, but he had only picked it up to look at it. Oh, do, do take -my word for it that he is innocent. Let the matter drop and say -no more. It is so dreadful to think of our dear Arthur in -prison!" - -"I shall never let it drop until the gems are found--never, Mary! -Your affection for Arthur blinds you as to the awful consequences -to me. Far from hushing the thing up, I have brought a gentleman -down from London to inquire more deeply into it." - -"This gentleman?" she asked, facing round to me. - -"No, his friend. He wished us to leave him alone. He is round in -the stable lane now." - -"The stable lane?" She raised her dark eyebrows. "What can he -hope to find there? Ah! this, I suppose, is he. I trust, sir, -that you will succeed in proving, what I feel sure is the truth, -that my cousin Arthur is innocent of this crime." - -"I fully share your opinion, and I trust, with you, that we may -prove it," returned Holmes, going back to the mat to knock the -snow from his shoes. "I believe I have the honour of addressing -Miss Mary Holder. Might I ask you a question or two?" - -"Pray do, sir, if it may help to clear this horrible affair up." - -"You heard nothing yourself last night?" - -"Nothing, until my uncle here began to speak loudly. I heard -that, and I came down." - -"You shut up the windows and doors the night before. Did you -fasten all the windows?" - -"Yes." - -"Were they all fastened this morning?" - -"Yes." - -"You have a maid who has a sweetheart? I think that you remarked -to your uncle last night that she had been out to see him?" - -"Yes, and she was the girl who waited in the drawing-room, and -who may have heard uncle's remarks about the coronet." - -"I see. You infer that she may have gone out to tell her -sweetheart, and that the two may have planned the robbery." - -"But what is the good of all these vague theories," cried the -banker impatiently, "when I have told you that I saw Arthur with -the coronet in his hands?" - -"Wait a little, Mr. Holder. We must come back to that. About this -girl, Miss Holder. You saw her return by the kitchen door, I -presume?" - -"Yes; when I went to see if the door was fastened for the night I -met her slipping in. I saw the man, too, in the gloom." - -"Do you know him?" - -"Oh, yes! he is the green-grocer who brings our vegetables round. -His name is Francis Prosper." - -"He stood," said Holmes, "to the left of the door--that is to -say, farther up the path than is necessary to reach the door?" - -"Yes, he did." - -"And he is a man with a wooden leg?" - -Something like fear sprang up in the young lady's expressive -black eyes. "Why, you are like a magician," said she. "How do you -know that?" She smiled, but there was no answering smile in -Holmes' thin, eager face. - -"I should be very glad now to go upstairs," said he. "I shall -probably wish to go over the outside of the house again. Perhaps -I had better take a look at the lower windows before I go up." - -He walked swiftly round from one to the other, pausing only at -the large one which looked from the hall onto the stable lane. -This he opened and made a very careful examination of the sill -with his powerful magnifying lens. "Now we shall go upstairs," -said he at last. - -The banker's dressing-room was a plainly furnished little -chamber, with a grey carpet, a large bureau, and a long mirror. -Holmes went to the bureau first and looked hard at the lock. - -"Which key was used to open it?" he asked. - -"That which my son himself indicated--that of the cupboard of the -lumber-room." - -"Have you it here?" - -"That is it on the dressing-table." - -Sherlock Holmes took it up and opened the bureau. - -"It is a noiseless lock," said he. "It is no wonder that it did -not wake you. This case, I presume, contains the coronet. We must -have a look at it." He opened the case, and taking out the diadem -he laid it upon the table. It was a magnificent specimen of the -jeweller's art, and the thirty-six stones were the finest that I -have ever seen. At one side of the coronet was a cracked edge, -where a corner holding three gems had been torn away. - -"Now, Mr. Holder," said Holmes, "here is the corner which -corresponds to that which has been so unfortunately lost. Might I -beg that you will break it off." - -The banker recoiled in horror. "I should not dream of trying," -said he. - -"Then I will." Holmes suddenly bent his strength upon it, but -without result. "I feel it give a little," said he; "but, though -I am exceptionally strong in the fingers, it would take me all my -time to break it. An ordinary man could not do it. Now, what do -you think would happen if I did break it, Mr. Holder? There would -be a noise like a pistol shot. Do you tell me that all this -happened within a few yards of your bed and that you heard -nothing of it?" - -"I do not know what to think. It is all dark to me." - -"But perhaps it may grow lighter as we go. What do you think, -Miss Holder?" - -"I confess that I still share my uncle's perplexity." - -"Your son had no shoes or slippers on when you saw him?" - -"He had nothing on save only his trousers and shirt." - -"Thank you. We have certainly been favoured with extraordinary -luck during this inquiry, and it will be entirely our own fault -if we do not succeed in clearing the matter up. With your -permission, Mr. Holder, I shall now continue my investigations -outside." - -He went alone, at his own request, for he explained that any -unnecessary footmarks might make his task more difficult. For an -hour or more he was at work, returning at last with his feet -heavy with snow and his features as inscrutable as ever. - -"I think that I have seen now all that there is to see, Mr. -Holder," said he; "I can serve you best by returning to my -rooms." - -"But the gems, Mr. Holmes. Where are they?" - -"I cannot tell." - -The banker wrung his hands. "I shall never see them again!" he -cried. "And my son? You give me hopes?" - -"My opinion is in no way altered." - -"Then, for God's sake, what was this dark business which was -acted in my house last night?" - -"If you can call upon me at my Baker Street rooms to-morrow -morning between nine and ten I shall be happy to do what I can to -make it clearer. I understand that you give me carte blanche to -act for you, provided only that I get back the gems, and that you -place no limit on the sum I may draw." - -"I would give my fortune to have them back." - -"Very good. I shall look into the matter between this and then. -Good-bye; it is just possible that I may have to come over here -again before evening." - -It was obvious to me that my companion's mind was now made up -about the case, although what his conclusions were was more than -I could even dimly imagine. Several times during our homeward -journey I endeavoured to sound him upon the point, but he always -glided away to some other topic, until at last I gave it over in -despair. It was not yet three when we found ourselves in our -rooms once more. He hurried to his chamber and was down again in -a few minutes dressed as a common loafer. With his collar turned -up, his shiny, seedy coat, his red cravat, and his worn boots, he -was a perfect sample of the class. - -"I think that this should do," said he, glancing into the glass -above the fireplace. "I only wish that you could come with me, -Watson, but I fear that it won't do. I may be on the trail in -this matter, or I may be following a will-o'-the-wisp, but I -shall soon know which it is. I hope that I may be back in a few -hours." He cut a slice of beef from the joint upon the sideboard, -sandwiched it between two rounds of bread, and thrusting this -rude meal into his pocket he started off upon his expedition. - -I had just finished my tea when he returned, evidently in -excellent spirits, swinging an old elastic-sided boot in his -hand. He chucked it down into a corner and helped himself to a -cup of tea. - -"I only looked in as I passed," said he. "I am going right on." - -"Where to?" - -"Oh, to the other side of the West End. It may be some time -before I get back. Don't wait up for me in case I should be -late." - -"How are you getting on?" - -"Oh, so so. Nothing to complain of. I have been out to Streatham -since I saw you last, but I did not call at the house. It is a -very sweet little problem, and I would not have missed it for a -good deal. However, I must not sit gossiping here, but must get -these disreputable clothes off and return to my highly -respectable self." - -I could see by his manner that he had stronger reasons for -satisfaction than his words alone would imply. His eyes twinkled, -and there was even a touch of colour upon his sallow cheeks. He -hastened upstairs, and a few minutes later I heard the slam of -the hall door, which told me that he was off once more upon his -congenial hunt. - -I waited until midnight, but there was no sign of his return, so -I retired to my room. It was no uncommon thing for him to be away -for days and nights on end when he was hot upon a scent, so that -his lateness caused me no surprise. I do not know at what hour he -came in, but when I came down to breakfast in the morning there -he was with a cup of coffee in one hand and the paper in the -other, as fresh and trim as possible. - -"You will excuse my beginning without you, Watson," said he, "but -you remember that our client has rather an early appointment this -morning." - -"Why, it is after nine now," I answered. "I should not be -surprised if that were he. I thought I heard a ring." - -It was, indeed, our friend the financier. I was shocked by the -change which had come over him, for his face which was naturally -of a broad and massive mould, was now pinched and fallen in, -while his hair seemed to me at least a shade whiter. He entered -with a weariness and lethargy which was even more painful than -his violence of the morning before, and he dropped heavily into -the armchair which I pushed forward for him. - -"I do not know what I have done to be so severely tried," said -he. "Only two days ago I was a happy and prosperous man, without -a care in the world. Now I am left to a lonely and dishonoured -age. One sorrow comes close upon the heels of another. My niece, -Mary, has deserted me." - -"Deserted you?" - -"Yes. Her bed this morning had not been slept in, her room was -empty, and a note for me lay upon the hall table. I had said to -her last night, in sorrow and not in anger, that if she had -married my boy all might have been well with him. Perhaps it was -thoughtless of me to say so. It is to that remark that she refers -in this note: - -"'MY DEAREST UNCLE:--I feel that I have brought trouble upon you, -and that if I had acted differently this terrible misfortune -might never have occurred. I cannot, with this thought in my -mind, ever again be happy under your roof, and I feel that I must -leave you forever. Do not worry about my future, for that is -provided for; and, above all, do not search for me, for it will -be fruitless labour and an ill-service to me. In life or in -death, I am ever your loving,--MARY.' - -"What could she mean by that note, Mr. Holmes? Do you think it -points to suicide?" - -"No, no, nothing of the kind. It is perhaps the best possible -solution. I trust, Mr. Holder, that you are nearing the end of -your troubles." - -"Ha! You say so! You have heard something, Mr. Holmes; you have -learned something! Where are the gems?" - -"You would not think 1000 pounds apiece an excessive sum for -them?" - -"I would pay ten." - -"That would be unnecessary. Three thousand will cover the matter. -And there is a little reward, I fancy. Have you your check-book? -Here is a pen. Better make it out for 4000 pounds." - -With a dazed face the banker made out the required check. Holmes -walked over to his desk, took out a little triangular piece of -gold with three gems in it, and threw it down upon the table. - -With a shriek of joy our client clutched it up. - -"You have it!" he gasped. "I am saved! I am saved!" - -The reaction of joy was as passionate as his grief had been, and -he hugged his recovered gems to his bosom. - -"There is one other thing you owe, Mr. Holder," said Sherlock -Holmes rather sternly. - -"Owe!" He caught up a pen. "Name the sum, and I will pay it." - -"No, the debt is not to me. You owe a very humble apology to that -noble lad, your son, who has carried himself in this matter as I -should be proud to see my own son do, should I ever chance to -have one." - -"Then it was not Arthur who took them?" - -"I told you yesterday, and I repeat to-day, that it was not." - -"You are sure of it! Then let us hurry to him at once to let him -know that the truth is known." - -"He knows it already. When I had cleared it all up I had an -interview with him, and finding that he would not tell me the -story, I told it to him, on which he had to confess that I was -right and to add the very few details which were not yet quite -clear to me. Your news of this morning, however, may open his -lips." - -"For heaven's sake, tell me, then, what is this extraordinary -mystery!" - -"I will do so, and I will show you the steps by which I reached -it. And let me say to you, first, that which it is hardest for me -to say and for you to hear: there has been an understanding -between Sir George Burnwell and your niece Mary. They have now -fled together." - -"My Mary? Impossible!" - -"It is unfortunately more than possible; it is certain. Neither -you nor your son knew the true character of this man when you -admitted him into your family circle. He is one of the most -dangerous men in England--a ruined gambler, an absolutely -desperate villain, a man without heart or conscience. Your niece -knew nothing of such men. When he breathed his vows to her, as he -had done to a hundred before her, she flattered herself that she -alone had touched his heart. The devil knows best what he said, -but at least she became his tool and was in the habit of seeing -him nearly every evening." - -"I cannot, and I will not, believe it!" cried the banker with an -ashen face. - -"I will tell you, then, what occurred in your house last night. -Your niece, when you had, as she thought, gone to your room, -slipped down and talked to her lover through the window which -leads into the stable lane. His footmarks had pressed right -through the snow, so long had he stood there. She told him of the -coronet. His wicked lust for gold kindled at the news, and he -bent her to his will. I have no doubt that she loved you, but -there are women in whom the love of a lover extinguishes all -other loves, and I think that she must have been one. She had -hardly listened to his instructions when she saw you coming -downstairs, on which she closed the window rapidly and told you -about one of the servants' escapade with her wooden-legged lover, -which was all perfectly true. - -"Your boy, Arthur, went to bed after his interview with you but -he slept badly on account of his uneasiness about his club debts. -In the middle of the night he heard a soft tread pass his door, -so he rose and, looking out, was surprised to see his cousin -walking very stealthily along the passage until she disappeared -into your dressing-room. Petrified with astonishment, the lad -slipped on some clothes and waited there in the dark to see what -would come of this strange affair. Presently she emerged from the -room again, and in the light of the passage-lamp your son saw -that she carried the precious coronet in her hands. She passed -down the stairs, and he, thrilling with horror, ran along and -slipped behind the curtain near your door, whence he could see -what passed in the hall beneath. He saw her stealthily open the -window, hand out the coronet to someone in the gloom, and then -closing it once more hurry back to her room, passing quite close -to where he stood hid behind the curtain. - -"As long as she was on the scene he could not take any action -without a horrible exposure of the woman whom he loved. But the -instant that she was gone he realised how crushing a misfortune -this would be for you, and how all-important it was to set it -right. He rushed down, just as he was, in his bare feet, opened -the window, sprang out into the snow, and ran down the lane, -where he could see a dark figure in the moonlight. Sir George -Burnwell tried to get away, but Arthur caught him, and there was -a struggle between them, your lad tugging at one side of the -coronet, and his opponent at the other. In the scuffle, your son -struck Sir George and cut him over the eye. Then something -suddenly snapped, and your son, finding that he had the coronet -in his hands, rushed back, closed the window, ascended to your -room, and had just observed that the coronet had been twisted in -the struggle and was endeavouring to straighten it when you -appeared upon the scene." - -"Is it possible?" gasped the banker. - -"You then roused his anger by calling him names at a moment when -he felt that he had deserved your warmest thanks. He could not -explain the true state of affairs without betraying one who -certainly deserved little enough consideration at his hands. He -took the more chivalrous view, however, and preserved her -secret." - -"And that was why she shrieked and fainted when she saw the -coronet," cried Mr. Holder. "Oh, my God! what a blind fool I have -been! And his asking to be allowed to go out for five minutes! -The dear fellow wanted to see if the missing piece were at the -scene of the struggle. How cruelly I have misjudged him!" - -"When I arrived at the house," continued Holmes, "I at once went -very carefully round it to observe if there were any traces in -the snow which might help me. I knew that none had fallen since -the evening before, and also that there had been a strong frost -to preserve impressions. I passed along the tradesmen's path, but -found it all trampled down and indistinguishable. Just beyond it, -however, at the far side of the kitchen door, a woman had stood -and talked with a man, whose round impressions on one side showed -that he had a wooden leg. I could even tell that they had been -disturbed, for the woman had run back swiftly to the door, as was -shown by the deep toe and light heel marks, while Wooden-leg had -waited a little, and then had gone away. I thought at the time -that this might be the maid and her sweetheart, of whom you had -already spoken to me, and inquiry showed it was so. I passed -round the garden without seeing anything more than random tracks, -which I took to be the police; but when I got into the stable -lane a very long and complex story was written in the snow in -front of me. - -"There was a double line of tracks of a booted man, and a second -double line which I saw with delight belonged to a man with naked -feet. I was at once convinced from what you had told me that the -latter was your son. The first had walked both ways, but the -other had run swiftly, and as his tread was marked in places over -the depression of the boot, it was obvious that he had passed -after the other. I followed them up and found they led to the -hall window, where Boots had worn all the snow away while -waiting. Then I walked to the other end, which was a hundred -yards or more down the lane. I saw where Boots had faced round, -where the snow was cut up as though there had been a struggle, -and, finally, where a few drops of blood had fallen, to show me -that I was not mistaken. Boots had then run down the lane, and -another little smudge of blood showed that it was he who had been -hurt. When he came to the highroad at the other end, I found that -the pavement had been cleared, so there was an end to that clue. - -"On entering the house, however, I examined, as you remember, the -sill and framework of the hall window with my lens, and I could -at once see that someone had passed out. I could distinguish the -outline of an instep where the wet foot had been placed in coming -in. I was then beginning to be able to form an opinion as to what -had occurred. A man had waited outside the window; someone had -brought the gems; the deed had been overseen by your son; he had -pursued the thief; had struggled with him; they had each tugged -at the coronet, their united strength causing injuries which -neither alone could have effected. He had returned with the -prize, but had left a fragment in the grasp of his opponent. So -far I was clear. The question now was, who was the man and who -was it brought him the coronet? - -"It is an old maxim of mine that when you have excluded the -impossible, whatever remains, however improbable, must be the -truth. Now, I knew that it was not you who had brought it down, -so there only remained your niece and the maids. But if it were -the maids, why should your son allow himself to be accused in -their place? There could be no possible reason. As he loved his -cousin, however, there was an excellent explanation why he should -retain her secret--the more so as the secret was a disgraceful -one. When I remembered that you had seen her at that window, and -how she had fainted on seeing the coronet again, my conjecture -became a certainty. - -"And who could it be who was her confederate? A lover evidently, -for who else could outweigh the love and gratitude which she must -feel to you? I knew that you went out little, and that your -circle of friends was a very limited one. But among them was Sir -George Burnwell. I had heard of him before as being a man of evil -reputation among women. It must have been he who wore those boots -and retained the missing gems. Even though he knew that Arthur -had discovered him, he might still flatter himself that he was -safe, for the lad could not say a word without compromising his -own family. - -"Well, your own good sense will suggest what measures I took -next. I went in the shape of a loafer to Sir George's house, -managed to pick up an acquaintance with his valet, learned that -his master had cut his head the night before, and, finally, at -the expense of six shillings, made all sure by buying a pair of -his cast-off shoes. With these I journeyed down to Streatham and -saw that they exactly fitted the tracks." - -"I saw an ill-dressed vagabond in the lane yesterday evening," -said Mr. Holder. - -"Precisely. It was I. I found that I had my man, so I came home -and changed my clothes. It was a delicate part which I had to -play then, for I saw that a prosecution must be avoided to avert -scandal, and I knew that so astute a villain would see that our -hands were tied in the matter. I went and saw him. At first, of -course, he denied everything. But when I gave him every -particular that had occurred, he tried to bluster and took down a -life-preserver from the wall. I knew my man, however, and I -clapped a pistol to his head before he could strike. Then he -became a little more reasonable. I told him that we would give -him a price for the stones he held--1000 pounds apiece. That -brought out the first signs of grief that he had shown. 'Why, -dash it all!' said he, 'I've let them go at six hundred for the -three!' I soon managed to get the address of the receiver who had -them, on promising him that there would be no prosecution. Off I -set to him, and after much chaffering I got our stones at 1000 -pounds apiece. Then I looked in upon your son, told him that all -was right, and eventually got to my bed about two o'clock, after -what I may call a really hard day's work." - -"A day which has saved England from a great public scandal," said -the banker, rising. "Sir, I cannot find words to thank you, but -you shall not find me ungrateful for what you have done. Your -skill has indeed exceeded all that I have heard of it. And now I -must fly to my dear boy to apologise to him for the wrong which I -have done him. As to what you tell me of poor Mary, it goes to my -very heart. Not even your skill can inform me where she is now." - -"I think that we may safely say," returned Holmes, "that she is -wherever Sir George Burnwell is. It is equally certain, too, that -whatever her sins are, they will soon receive a more than -sufficient punishment." - - - -XII. THE ADVENTURE OF THE COPPER BEECHES - -"To the man who loves art for its own sake," remarked Sherlock -Holmes, tossing aside the advertisement sheet of the Daily -Telegraph, "it is frequently in its least important and lowliest -manifestations that the keenest pleasure is to be derived. It is -pleasant to me to observe, Watson, that you have so far grasped -this truth that in these little records of our cases which you -have been good enough to draw up, and, I am bound to say, -occasionally to embellish, you have given prominence not so much -to the many causes clbres and sensational trials in which I -have figured but rather to those incidents which may have been -trivial in themselves, but which have given room for those -faculties of deduction and of logical synthesis which I have made -my special province." - -"And yet," said I, smiling, "I cannot quite hold myself absolved -from the charge of sensationalism which has been urged against my -records." - -"You have erred, perhaps," he observed, taking up a glowing -cinder with the tongs and lighting with it the long cherry-wood -pipe which was wont to replace his clay when he was in a -disputatious rather than a meditative mood--"you have erred -perhaps in attempting to put colour and life into each of your -statements instead of confining yourself to the task of placing -upon record that severe reasoning from cause to effect which is -really the only notable feature about the thing." - -"It seems to me that I have done you full justice in the matter," -I remarked with some coldness, for I was repelled by the egotism -which I had more than once observed to be a strong factor in my -friend's singular character. - -"No, it is not selfishness or conceit," said he, answering, as -was his wont, my thoughts rather than my words. "If I claim full -justice for my art, it is because it is an impersonal thing--a -thing beyond myself. Crime is common. Logic is rare. Therefore it -is upon the logic rather than upon the crime that you should -dwell. You have degraded what should have been a course of -lectures into a series of tales." - -It was a cold morning of the early spring, and we sat after -breakfast on either side of a cheery fire in the old room at -Baker Street. A thick fog rolled down between the lines of -dun-coloured houses, and the opposing windows loomed like dark, -shapeless blurs through the heavy yellow wreaths. Our gas was lit -and shone on the white cloth and glimmer of china and metal, for -the table had not been cleared yet. Sherlock Holmes had been -silent all the morning, dipping continuously into the -advertisement columns of a succession of papers until at last, -having apparently given up his search, he had emerged in no very -sweet temper to lecture me upon my literary shortcomings. - -"At the same time," he remarked after a pause, during which he -had sat puffing at his long pipe and gazing down into the fire, -"you can hardly be open to a charge of sensationalism, for out of -these cases which you have been so kind as to interest yourself -in, a fair proportion do not treat of crime, in its legal sense, -at all. The small matter in which I endeavoured to help the King -of Bohemia, the singular experience of Miss Mary Sutherland, the -problem connected with the man with the twisted lip, and the -incident of the noble bachelor, were all matters which are -outside the pale of the law. But in avoiding the sensational, I -fear that you may have bordered on the trivial." - -"The end may have been so," I answered, "but the methods I hold -to have been novel and of interest." - -"Pshaw, my dear fellow, what do the public, the great unobservant -public, who could hardly tell a weaver by his tooth or a -compositor by his left thumb, care about the finer shades of -analysis and deduction! But, indeed, if you are trivial, I cannot -blame you, for the days of the great cases are past. Man, or at -least criminal man, has lost all enterprise and originality. As -to my own little practice, it seems to be degenerating into an -agency for recovering lost lead pencils and giving advice to -young ladies from boarding-schools. I think that I have touched -bottom at last, however. This note I had this morning marks my -zero-point, I fancy. Read it!" He tossed a crumpled letter across -to me. - -It was dated from Montague Place upon the preceding evening, and -ran thus: - -"DEAR MR. HOLMES:--I am very anxious to consult you as to whether -I should or should not accept a situation which has been offered -to me as governess. I shall call at half-past ten to-morrow if I -do not inconvenience you. Yours faithfully, - "VIOLET HUNTER." - -"Do you know the young lady?" I asked. - -"Not I." - -"It is half-past ten now." - -"Yes, and I have no doubt that is her ring." - -"It may turn out to be of more interest than you think. You -remember that the affair of the blue carbuncle, which appeared to -be a mere whim at first, developed into a serious investigation. -It may be so in this case, also." - -"Well, let us hope so. But our doubts will very soon be solved, -for here, unless I am much mistaken, is the person in question." - -As he spoke the door opened and a young lady entered the room. -She was plainly but neatly dressed, with a bright, quick face, -freckled like a plover's egg, and with the brisk manner of a -woman who has had her own way to make in the world. - -"You will excuse my troubling you, I am sure," said she, as my -companion rose to greet her, "but I have had a very strange -experience, and as I have no parents or relations of any sort -from whom I could ask advice, I thought that perhaps you would be -kind enough to tell me what I should do." - -"Pray take a seat, Miss Hunter. I shall be happy to do anything -that I can to serve you." - -I could see that Holmes was favourably impressed by the manner -and speech of his new client. He looked her over in his searching -fashion, and then composed himself, with his lids drooping and -his finger-tips together, to listen to her story. - -"I have been a governess for five years," said she, "in the -family of Colonel Spence Munro, but two months ago the colonel -received an appointment at Halifax, in Nova Scotia, and took his -children over to America with him, so that I found myself without -a situation. I advertised, and I answered advertisements, but -without success. At last the little money which I had saved began -to run short, and I was at my wit's end as to what I should do. - -"There is a well-known agency for governesses in the West End -called Westaway's, and there I used to call about once a week in -order to see whether anything had turned up which might suit me. -Westaway was the name of the founder of the business, but it is -really managed by Miss Stoper. She sits in her own little office, -and the ladies who are seeking employment wait in an anteroom, -and are then shown in one by one, when she consults her ledgers -and sees whether she has anything which would suit them. - -"Well, when I called last week I was shown into the little office -as usual, but I found that Miss Stoper was not alone. A -prodigiously stout man with a very smiling face and a great heavy -chin which rolled down in fold upon fold over his throat sat at -her elbow with a pair of glasses on his nose, looking very -earnestly at the ladies who entered. As I came in he gave quite a -jump in his chair and turned quickly to Miss Stoper. - -"'That will do,' said he; 'I could not ask for anything better. -Capital! capital!' He seemed quite enthusiastic and rubbed his -hands together in the most genial fashion. He was such a -comfortable-looking man that it was quite a pleasure to look at -him. - -"'You are looking for a situation, miss?' he asked. - -"'Yes, sir.' - -"'As governess?' - -"'Yes, sir.' - -"'And what salary do you ask?' - -"'I had 4 pounds a month in my last place with Colonel Spence -Munro.' - -"'Oh, tut, tut! sweating--rank sweating!' he cried, throwing his -fat hands out into the air like a man who is in a boiling -passion. 'How could anyone offer so pitiful a sum to a lady with -such attractions and accomplishments?' - -"'My accomplishments, sir, may be less than you imagine,' said I. -'A little French, a little German, music, and drawing--' - -"'Tut, tut!' he cried. 'This is all quite beside the question. -The point is, have you or have you not the bearing and deportment -of a lady? There it is in a nutshell. If you have not, you are -not fitted for the rearing of a child who may some day play a -considerable part in the history of the country. But if you have -why, then, how could any gentleman ask you to condescend to -accept anything under the three figures? Your salary with me, -madam, would commence at 100 pounds a year.' - -"You may imagine, Mr. Holmes, that to me, destitute as I was, -such an offer seemed almost too good to be true. The gentleman, -however, seeing perhaps the look of incredulity upon my face, -opened a pocket-book and took out a note. - -"'It is also my custom,' said he, smiling in the most pleasant -fashion until his eyes were just two little shining slits amid -the white creases of his face, 'to advance to my young ladies -half their salary beforehand, so that they may meet any little -expenses of their journey and their wardrobe.' - -"It seemed to me that I had never met so fascinating and so -thoughtful a man. As I was already in debt to my tradesmen, the -advance was a great convenience, and yet there was something -unnatural about the whole transaction which made me wish to know -a little more before I quite committed myself. - -"'May I ask where you live, sir?' said I. - -"'Hampshire. Charming rural place. The Copper Beeches, five miles -on the far side of Winchester. It is the most lovely country, my -dear young lady, and the dearest old country-house.' - -"'And my duties, sir? I should be glad to know what they would -be.' - -"'One child--one dear little romper just six years old. Oh, if -you could see him killing cockroaches with a slipper! Smack! -smack! smack! Three gone before you could wink!' He leaned back -in his chair and laughed his eyes into his head again. - -"I was a little startled at the nature of the child's amusement, -but the father's laughter made me think that perhaps he was -joking. - -"'My sole duties, then,' I asked, 'are to take charge of a single -child?' - -"'No, no, not the sole, not the sole, my dear young lady,' he -cried. 'Your duty would be, as I am sure your good sense would -suggest, to obey any little commands my wife might give, provided -always that they were such commands as a lady might with -propriety obey. You see no difficulty, heh?' - -"'I should be happy to make myself useful.' - -"'Quite so. In dress now, for example. We are faddy people, you -know--faddy but kind-hearted. If you were asked to wear any dress -which we might give you, you would not object to our little whim. -Heh?' - -"'No,' said I, considerably astonished at his words. - -"'Or to sit here, or sit there, that would not be offensive to -you?' - -"'Oh, no.' - -"'Or to cut your hair quite short before you come to us?' - -"I could hardly believe my ears. As you may observe, Mr. Holmes, -my hair is somewhat luxuriant, and of a rather peculiar tint of -chestnut. It has been considered artistic. I could not dream of -sacrificing it in this offhand fashion. - -"'I am afraid that that is quite impossible,' said I. He had been -watching me eagerly out of his small eyes, and I could see a -shadow pass over his face as I spoke. - -"'I am afraid that it is quite essential,' said he. 'It is a -little fancy of my wife's, and ladies' fancies, you know, madam, -ladies' fancies must be consulted. And so you won't cut your -hair?' - -"'No, sir, I really could not,' I answered firmly. - -"'Ah, very well; then that quite settles the matter. It is a -pity, because in other respects you would really have done very -nicely. In that case, Miss Stoper, I had best inspect a few more -of your young ladies.' - -"The manageress had sat all this while busy with her papers -without a word to either of us, but she glanced at me now with so -much annoyance upon her face that I could not help suspecting -that she had lost a handsome commission through my refusal. - -"'Do you desire your name to be kept upon the books?' she asked. - -"'If you please, Miss Stoper.' - -"'Well, really, it seems rather useless, since you refuse the -most excellent offers in this fashion,' said she sharply. 'You -can hardly expect us to exert ourselves to find another such -opening for you. Good-day to you, Miss Hunter.' She struck a gong -upon the table, and I was shown out by the page. - -"Well, Mr. Holmes, when I got back to my lodgings and found -little enough in the cupboard, and two or three bills upon the -table, I began to ask myself whether I had not done a very -foolish thing. After all, if these people had strange fads and -expected obedience on the most extraordinary matters, they were -at least ready to pay for their eccentricity. Very few -governesses in England are getting 100 pounds a year. Besides, -what use was my hair to me? Many people are improved by wearing -it short and perhaps I should be among the number. Next day I was -inclined to think that I had made a mistake, and by the day after -I was sure of it. I had almost overcome my pride so far as to go -back to the agency and inquire whether the place was still open -when I received this letter from the gentleman himself. I have it -here and I will read it to you: - - "'The Copper Beeches, near Winchester. -"'DEAR MISS HUNTER:--Miss Stoper has very kindly given me your -address, and I write from here to ask you whether you have -reconsidered your decision. My wife is very anxious that you -should come, for she has been much attracted by my description of -you. We are willing to give 30 pounds a quarter, or 120 pounds a -year, so as to recompense you for any little inconvenience which -our fads may cause you. They are not very exacting, after all. My -wife is fond of a particular shade of electric blue and would -like you to wear such a dress indoors in the morning. You need -not, however, go to the expense of purchasing one, as we have one -belonging to my dear daughter Alice (now in Philadelphia), which -would, I should think, fit you very well. Then, as to sitting -here or there, or amusing yourself in any manner indicated, that -need cause you no inconvenience. As regards your hair, it is no -doubt a pity, especially as I could not help remarking its beauty -during our short interview, but I am afraid that I must remain -firm upon this point, and I only hope that the increased salary -may recompense you for the loss. Your duties, as far as the child -is concerned, are very light. Now do try to come, and I shall -meet you with the dog-cart at Winchester. Let me know your train. -Yours faithfully, JEPHRO RUCASTLE.' - -"That is the letter which I have just received, Mr. Holmes, and -my mind is made up that I will accept it. I thought, however, -that before taking the final step I should like to submit the -whole matter to your consideration." - -"Well, Miss Hunter, if your mind is made up, that settles the -question," said Holmes, smiling. - -"But you would not advise me to refuse?" - -"I confess that it is not the situation which I should like to -see a sister of mine apply for." - -"What is the meaning of it all, Mr. Holmes?" - -"Ah, I have no data. I cannot tell. Perhaps you have yourself -formed some opinion?" - -"Well, there seems to me to be only one possible solution. Mr. -Rucastle seemed to be a very kind, good-natured man. Is it not -possible that his wife is a lunatic, that he desires to keep the -matter quiet for fear she should be taken to an asylum, and that -he humours her fancies in every way in order to prevent an -outbreak?" - -"That is a possible solution--in fact, as matters stand, it is -the most probable one. But in any case it does not seem to be a -nice household for a young lady." - -"But the money, Mr. Holmes, the money!" - -"Well, yes, of course the pay is good--too good. That is what -makes me uneasy. Why should they give you 120 pounds a year, when -they could have their pick for 40 pounds? There must be some -strong reason behind." - -"I thought that if I told you the circumstances you would -understand afterwards if I wanted your help. I should feel so -much stronger if I felt that you were at the back of me." - -"Oh, you may carry that feeling away with you. I assure you that -your little problem promises to be the most interesting which has -come my way for some months. There is something distinctly novel -about some of the features. If you should find yourself in doubt -or in danger--" - -"Danger! What danger do you foresee?" - -Holmes shook his head gravely. "It would cease to be a danger if -we could define it," said he. "But at any time, day or night, a -telegram would bring me down to your help." - -"That is enough." She rose briskly from her chair with the -anxiety all swept from her face. "I shall go down to Hampshire -quite easy in my mind now. I shall write to Mr. Rucastle at once, -sacrifice my poor hair to-night, and start for Winchester -to-morrow." With a few grateful words to Holmes she bade us both -good-night and bustled off upon her way. - -"At least," said I as we heard her quick, firm steps descending -the stairs, "she seems to be a young lady who is very well able -to take care of herself." - -"And she would need to be," said Holmes gravely. "I am much -mistaken if we do not hear from her before many days are past." - -It was not very long before my friend's prediction was fulfilled. -A fortnight went by, during which I frequently found my thoughts -turning in her direction and wondering what strange side-alley of -human experience this lonely woman had strayed into. The unusual -salary, the curious conditions, the light duties, all pointed to -something abnormal, though whether a fad or a plot, or whether -the man were a philanthropist or a villain, it was quite beyond -my powers to determine. As to Holmes, I observed that he sat -frequently for half an hour on end, with knitted brows and an -abstracted air, but he swept the matter away with a wave of his -hand when I mentioned it. "Data! data! data!" he cried -impatiently. "I can't make bricks without clay." And yet he would -always wind up by muttering that no sister of his should ever -have accepted such a situation. - -The telegram which we eventually received came late one night -just as I was thinking of turning in and Holmes was settling down -to one of those all-night chemical researches which he frequently -indulged in, when I would leave him stooping over a retort and a -test-tube at night and find him in the same position when I came -down to breakfast in the morning. He opened the yellow envelope, -and then, glancing at the message, threw it across to me. - -"Just look up the trains in Bradshaw," said he, and turned back -to his chemical studies. - -The summons was a brief and urgent one. - -"Please be at the Black Swan Hotel at Winchester at midday -to-morrow," it said. "Do come! I am at my wit's end. HUNTER." - -"Will you come with me?" asked Holmes, glancing up. - -"I should wish to." - -"Just look it up, then." - -"There is a train at half-past nine," said I, glancing over my -Bradshaw. "It is due at Winchester at 11:30." - -"That will do very nicely. Then perhaps I had better postpone my -analysis of the acetones, as we may need to be at our best in the -morning." - -By eleven o'clock the next day we were well upon our way to the -old English capital. Holmes had been buried in the morning papers -all the way down, but after we had passed the Hampshire border he -threw them down and began to admire the scenery. It was an ideal -spring day, a light blue sky, flecked with little fleecy white -clouds drifting across from west to east. The sun was shining -very brightly, and yet there was an exhilarating nip in the air, -which set an edge to a man's energy. All over the countryside, -away to the rolling hills around Aldershot, the little red and -grey roofs of the farm-steadings peeped out from amid the light -green of the new foliage. - -"Are they not fresh and beautiful?" I cried with all the -enthusiasm of a man fresh from the fogs of Baker Street. - -But Holmes shook his head gravely. - -"Do you know, Watson," said he, "that it is one of the curses of -a mind with a turn like mine that I must look at everything with -reference to my own special subject. You look at these scattered -houses, and you are impressed by their beauty. I look at them, -and the only thought which comes to me is a feeling of their -isolation and of the impunity with which crime may be committed -there." - -"Good heavens!" I cried. "Who would associate crime with these -dear old homesteads?" - -"They always fill me with a certain horror. It is my belief, -Watson, founded upon my experience, that the lowest and vilest -alleys in London do not present a more dreadful record of sin -than does the smiling and beautiful countryside." - -"You horrify me!" - -"But the reason is very obvious. The pressure of public opinion -can do in the town what the law cannot accomplish. There is no -lane so vile that the scream of a tortured child, or the thud of -a drunkard's blow, does not beget sympathy and indignation among -the neighbours, and then the whole machinery of justice is ever -so close that a word of complaint can set it going, and there is -but a step between the crime and the dock. But look at these -lonely houses, each in its own fields, filled for the most part -with poor ignorant folk who know little of the law. Think of the -deeds of hellish cruelty, the hidden wickedness which may go on, -year in, year out, in such places, and none the wiser. Had this -lady who appeals to us for help gone to live in Winchester, I -should never have had a fear for her. It is the five miles of -country which makes the danger. Still, it is clear that she is -not personally threatened." - -"No. If she can come to Winchester to meet us she can get away." - -"Quite so. She has her freedom." - -"What CAN be the matter, then? Can you suggest no explanation?" - -"I have devised seven separate explanations, each of which would -cover the facts as far as we know them. But which of these is -correct can only be determined by the fresh information which we -shall no doubt find waiting for us. Well, there is the tower of -the cathedral, and we shall soon learn all that Miss Hunter has -to tell." - -The Black Swan is an inn of repute in the High Street, at no -distance from the station, and there we found the young lady -waiting for us. She had engaged a sitting-room, and our lunch -awaited us upon the table. - -"I am so delighted that you have come," she said earnestly. "It -is so very kind of you both; but indeed I do not know what I -should do. Your advice will be altogether invaluable to me." - -"Pray tell us what has happened to you." - -"I will do so, and I must be quick, for I have promised Mr. -Rucastle to be back before three. I got his leave to come into -town this morning, though he little knew for what purpose." - -"Let us have everything in its due order." Holmes thrust his long -thin legs out towards the fire and composed himself to listen. - -"In the first place, I may say that I have met, on the whole, -with no actual ill-treatment from Mr. and Mrs. Rucastle. It is -only fair to them to say that. But I cannot understand them, and -I am not easy in my mind about them." - -"What can you not understand?" - -"Their reasons for their conduct. But you shall have it all just -as it occurred. When I came down, Mr. Rucastle met me here and -drove me in his dog-cart to the Copper Beeches. It is, as he -said, beautifully situated, but it is not beautiful in itself, -for it is a large square block of a house, whitewashed, but all -stained and streaked with damp and bad weather. There are grounds -round it, woods on three sides, and on the fourth a field which -slopes down to the Southampton highroad, which curves past about -a hundred yards from the front door. This ground in front belongs -to the house, but the woods all round are part of Lord -Southerton's preserves. A clump of copper beeches immediately in -front of the hall door has given its name to the place. - -"I was driven over by my employer, who was as amiable as ever, -and was introduced by him that evening to his wife and the child. -There was no truth, Mr. Holmes, in the conjecture which seemed to -us to be probable in your rooms at Baker Street. Mrs. Rucastle is -not mad. I found her to be a silent, pale-faced woman, much -younger than her husband, not more than thirty, I should think, -while he can hardly be less than forty-five. From their -conversation I have gathered that they have been married about -seven years, that he was a widower, and that his only child by -the first wife was the daughter who has gone to Philadelphia. Mr. -Rucastle told me in private that the reason why she had left them -was that she had an unreasoning aversion to her stepmother. As -the daughter could not have been less than twenty, I can quite -imagine that her position must have been uncomfortable with her -father's young wife. - -"Mrs. Rucastle seemed to me to be colourless in mind as well as -in feature. She impressed me neither favourably nor the reverse. -She was a nonentity. It was easy to see that she was passionately -devoted both to her husband and to her little son. Her light grey -eyes wandered continually from one to the other, noting every -little want and forestalling it if possible. He was kind to her -also in his bluff, boisterous fashion, and on the whole they -seemed to be a happy couple. And yet she had some secret sorrow, -this woman. She would often be lost in deep thought, with the -saddest look upon her face. More than once I have surprised her -in tears. I have thought sometimes that it was the disposition of -her child which weighed upon her mind, for I have never met so -utterly spoiled and so ill-natured a little creature. He is small -for his age, with a head which is quite disproportionately large. -His whole life appears to be spent in an alternation between -savage fits of passion and gloomy intervals of sulking. Giving -pain to any creature weaker than himself seems to be his one idea -of amusement, and he shows quite remarkable talent in planning -the capture of mice, little birds, and insects. But I would -rather not talk about the creature, Mr. Holmes, and, indeed, he -has little to do with my story." - -"I am glad of all details," remarked my friend, "whether they -seem to you to be relevant or not." - -"I shall try not to miss anything of importance. The one -unpleasant thing about the house, which struck me at once, was -the appearance and conduct of the servants. There are only two, a -man and his wife. Toller, for that is his name, is a rough, -uncouth man, with grizzled hair and whiskers, and a perpetual -smell of drink. Twice since I have been with them he has been -quite drunk, and yet Mr. Rucastle seemed to take no notice of it. -His wife is a very tall and strong woman with a sour face, as -silent as Mrs. Rucastle and much less amiable. They are a most -unpleasant couple, but fortunately I spend most of my time in the -nursery and my own room, which are next to each other in one -corner of the building. - -"For two days after my arrival at the Copper Beeches my life was -very quiet; on the third, Mrs. Rucastle came down just after -breakfast and whispered something to her husband. - -"'Oh, yes,' said he, turning to me, 'we are very much obliged to -you, Miss Hunter, for falling in with our whims so far as to cut -your hair. I assure you that it has not detracted in the tiniest -iota from your appearance. We shall now see how the electric-blue -dress will become you. You will find it laid out upon the bed in -your room, and if you would be so good as to put it on we should -both be extremely obliged.' - -"The dress which I found waiting for me was of a peculiar shade -of blue. It was of excellent material, a sort of beige, but it -bore unmistakable signs of having been worn before. It could not -have been a better fit if I had been measured for it. Both Mr. -and Mrs. Rucastle expressed a delight at the look of it, which -seemed quite exaggerated in its vehemence. They were waiting for -me in the drawing-room, which is a very large room, stretching -along the entire front of the house, with three long windows -reaching down to the floor. A chair had been placed close to the -central window, with its back turned towards it. In this I was -asked to sit, and then Mr. Rucastle, walking up and down on the -other side of the room, began to tell me a series of the funniest -stories that I have ever listened to. You cannot imagine how -comical he was, and I laughed until I was quite weary. Mrs. -Rucastle, however, who has evidently no sense of humour, never so -much as smiled, but sat with her hands in her lap, and a sad, -anxious look upon her face. After an hour or so, Mr. Rucastle -suddenly remarked that it was time to commence the duties of the -day, and that I might change my dress and go to little Edward in -the nursery. - -"Two days later this same performance was gone through under -exactly similar circumstances. Again I changed my dress, again I -sat in the window, and again I laughed very heartily at the funny -stories of which my employer had an immense rpertoire, and which -he told inimitably. Then he handed me a yellow-backed novel, and -moving my chair a little sideways, that my own shadow might not -fall upon the page, he begged me to read aloud to him. I read for -about ten minutes, beginning in the heart of a chapter, and then -suddenly, in the middle of a sentence, he ordered me to cease and -to change my dress. - -"You can easily imagine, Mr. Holmes, how curious I became as to -what the meaning of this extraordinary performance could possibly -be. They were always very careful, I observed, to turn my face -away from the window, so that I became consumed with the desire -to see what was going on behind my back. At first it seemed to be -impossible, but I soon devised a means. My hand-mirror had been -broken, so a happy thought seized me, and I concealed a piece of -the glass in my handkerchief. On the next occasion, in the midst -of my laughter, I put my handkerchief up to my eyes, and was able -with a little management to see all that there was behind me. I -confess that I was disappointed. There was nothing. At least that -was my first impression. At the second glance, however, I -perceived that there was a man standing in the Southampton Road, -a small bearded man in a grey suit, who seemed to be looking in -my direction. The road is an important highway, and there are -usually people there. This man, however, was leaning against the -railings which bordered our field and was looking earnestly up. I -lowered my handkerchief and glanced at Mrs. Rucastle to find her -eyes fixed upon me with a most searching gaze. She said nothing, -but I am convinced that she had divined that I had a mirror in my -hand and had seen what was behind me. She rose at once. - -"'Jephro,' said she, 'there is an impertinent fellow upon the -road there who stares up at Miss Hunter.' - -"'No friend of yours, Miss Hunter?' he asked. - -"'No, I know no one in these parts.' - -"'Dear me! How very impertinent! Kindly turn round and motion to -him to go away.' - -"'Surely it would be better to take no notice.' - -"'No, no, we should have him loitering here always. Kindly turn -round and wave him away like that.' - -"I did as I was told, and at the same instant Mrs. Rucastle drew -down the blind. That was a week ago, and from that time I have -not sat again in the window, nor have I worn the blue dress, nor -seen the man in the road." - -"Pray continue," said Holmes. "Your narrative promises to be a -most interesting one." - -"You will find it rather disconnected, I fear, and there may -prove to be little relation between the different incidents of -which I speak. On the very first day that I was at the Copper -Beeches, Mr. Rucastle took me to a small outhouse which stands -near the kitchen door. As we approached it I heard the sharp -rattling of a chain, and the sound as of a large animal moving -about. - -"'Look in here!' said Mr. Rucastle, showing me a slit between two -planks. 'Is he not a beauty?' - -"I looked through and was conscious of two glowing eyes, and of a -vague figure huddled up in the darkness. - -"'Don't be frightened,' said my employer, laughing at the start -which I had given. 'It's only Carlo, my mastiff. I call him mine, -but really old Toller, my groom, is the only man who can do -anything with him. We feed him once a day, and not too much then, -so that he is always as keen as mustard. Toller lets him loose -every night, and God help the trespasser whom he lays his fangs -upon. For goodness' sake don't you ever on any pretext set your -foot over the threshold at night, for it's as much as your life -is worth.' - -"The warning was no idle one, for two nights later I happened to -look out of my bedroom window about two o'clock in the morning. -It was a beautiful moonlight night, and the lawn in front of the -house was silvered over and almost as bright as day. I was -standing, rapt in the peaceful beauty of the scene, when I was -aware that something was moving under the shadow of the copper -beeches. As it emerged into the moonshine I saw what it was. It -was a giant dog, as large as a calf, tawny tinted, with hanging -jowl, black muzzle, and huge projecting bones. It walked slowly -across the lawn and vanished into the shadow upon the other side. -That dreadful sentinel sent a chill to my heart which I do not -think that any burglar could have done. - -"And now I have a very strange experience to tell you. I had, as -you know, cut off my hair in London, and I had placed it in a -great coil at the bottom of my trunk. One evening, after the -child was in bed, I began to amuse myself by examining the -furniture of my room and by rearranging my own little things. -There was an old chest of drawers in the room, the two upper ones -empty and open, the lower one locked. I had filled the first two -with my linen, and as I had still much to pack away I was -naturally annoyed at not having the use of the third drawer. It -struck me that it might have been fastened by a mere oversight, -so I took out my bunch of keys and tried to open it. The very -first key fitted to perfection, and I drew the drawer open. There -was only one thing in it, but I am sure that you would never -guess what it was. It was my coil of hair. - -"I took it up and examined it. It was of the same peculiar tint, -and the same thickness. But then the impossibility of the thing -obtruded itself upon me. How could my hair have been locked in -the drawer? With trembling hands I undid my trunk, turned out the -contents, and drew from the bottom my own hair. I laid the two -tresses together, and I assure you that they were identical. Was -it not extraordinary? Puzzle as I would, I could make nothing at -all of what it meant. I returned the strange hair to the drawer, -and I said nothing of the matter to the Rucastles as I felt that -I had put myself in the wrong by opening a drawer which they had -locked. - -"I am naturally observant, as you may have remarked, Mr. Holmes, -and I soon had a pretty good plan of the whole house in my head. -There was one wing, however, which appeared not to be inhabited -at all. A door which faced that which led into the quarters of -the Tollers opened into this suite, but it was invariably locked. -One day, however, as I ascended the stair, I met Mr. Rucastle -coming out through this door, his keys in his hand, and a look on -his face which made him a very different person to the round, -jovial man to whom I was accustomed. His cheeks were red, his -brow was all crinkled with anger, and the veins stood out at his -temples with passion. He locked the door and hurried past me -without a word or a look. - -"This aroused my curiosity, so when I went out for a walk in the -grounds with my charge, I strolled round to the side from which I -could see the windows of this part of the house. There were four -of them in a row, three of which were simply dirty, while the -fourth was shuttered up. They were evidently all deserted. As I -strolled up and down, glancing at them occasionally, Mr. Rucastle -came out to me, looking as merry and jovial as ever. - -"'Ah!' said he, 'you must not think me rude if I passed you -without a word, my dear young lady. I was preoccupied with -business matters.' - -"I assured him that I was not offended. 'By the way,' said I, -'you seem to have quite a suite of spare rooms up there, and one -of them has the shutters up.' - -"He looked surprised and, as it seemed to me, a little startled -at my remark. - -"'Photography is one of my hobbies,' said he. 'I have made my -dark room up there. But, dear me! what an observant young lady we -have come upon. Who would have believed it? Who would have ever -believed it?' He spoke in a jesting tone, but there was no jest -in his eyes as he looked at me. I read suspicion there and -annoyance, but no jest. - -"Well, Mr. Holmes, from the moment that I understood that there -was something about that suite of rooms which I was not to know, -I was all on fire to go over them. It was not mere curiosity, -though I have my share of that. It was more a feeling of duty--a -feeling that some good might come from my penetrating to this -place. They talk of woman's instinct; perhaps it was woman's -instinct which gave me that feeling. At any rate, it was there, -and I was keenly on the lookout for any chance to pass the -forbidden door. - -"It was only yesterday that the chance came. I may tell you that, -besides Mr. Rucastle, both Toller and his wife find something to -do in these deserted rooms, and I once saw him carrying a large -black linen bag with him through the door. Recently he has been -drinking hard, and yesterday evening he was very drunk; and when -I came upstairs there was the key in the door. I have no doubt at -all that he had left it there. Mr. and Mrs. Rucastle were both -downstairs, and the child was with them, so that I had an -admirable opportunity. I turned the key gently in the lock, -opened the door, and slipped through. - -"There was a little passage in front of me, unpapered and -uncarpeted, which turned at a right angle at the farther end. -Round this corner were three doors in a line, the first and third -of which were open. They each led into an empty room, dusty and -cheerless, with two windows in the one and one in the other, so -thick with dirt that the evening light glimmered dimly through -them. The centre door was closed, and across the outside of it -had been fastened one of the broad bars of an iron bed, padlocked -at one end to a ring in the wall, and fastened at the other with -stout cord. The door itself was locked as well, and the key was -not there. This barricaded door corresponded clearly with the -shuttered window outside, and yet I could see by the glimmer from -beneath it that the room was not in darkness. Evidently there was -a skylight which let in light from above. As I stood in the -passage gazing at the sinister door and wondering what secret it -might veil, I suddenly heard the sound of steps within the room -and saw a shadow pass backward and forward against the little -slit of dim light which shone out from under the door. A mad, -unreasoning terror rose up in me at the sight, Mr. Holmes. My -overstrung nerves failed me suddenly, and I turned and ran--ran -as though some dreadful hand were behind me clutching at the -skirt of my dress. I rushed down the passage, through the door, -and straight into the arms of Mr. Rucastle, who was waiting -outside. - -"'So,' said he, smiling, 'it was you, then. I thought that it -must be when I saw the door open.' - -"'Oh, I am so frightened!' I panted. - -"'My dear young lady! my dear young lady!'--you cannot think how -caressing and soothing his manner was--'and what has frightened -you, my dear young lady?' - -"But his voice was just a little too coaxing. He overdid it. I -was keenly on my guard against him. - -"'I was foolish enough to go into the empty wing,' I answered. -'But it is so lonely and eerie in this dim light that I was -frightened and ran out again. Oh, it is so dreadfully still in -there!' - -"'Only that?' said he, looking at me keenly. - -"'Why, what did you think?' I asked. - -"'Why do you think that I lock this door?' - -"'I am sure that I do not know.' - -"'It is to keep people out who have no business there. Do you -see?' He was still smiling in the most amiable manner. - -"'I am sure if I had known--' - -"'Well, then, you know now. And if you ever put your foot over -that threshold again'--here in an instant the smile hardened into -a grin of rage, and he glared down at me with the face of a -demon--'I'll throw you to the mastiff.' - -"I was so terrified that I do not know what I did. I suppose that -I must have rushed past him into my room. I remember nothing -until I found myself lying on my bed trembling all over. Then I -thought of you, Mr. Holmes. I could not live there longer without -some advice. I was frightened of the house, of the man, of the -woman, of the servants, even of the child. They were all horrible -to me. If I could only bring you down all would be well. Of -course I might have fled from the house, but my curiosity was -almost as strong as my fears. My mind was soon made up. I would -send you a wire. I put on my hat and cloak, went down to the -office, which is about half a mile from the house, and then -returned, feeling very much easier. A horrible doubt came into my -mind as I approached the door lest the dog might be loose, but I -remembered that Toller had drunk himself into a state of -insensibility that evening, and I knew that he was the only one -in the household who had any influence with the savage creature, -or who would venture to set him free. I slipped in in safety and -lay awake half the night in my joy at the thought of seeing you. -I had no difficulty in getting leave to come into Winchester this -morning, but I must be back before three o'clock, for Mr. and -Mrs. Rucastle are going on a visit, and will be away all the -evening, so that I must look after the child. Now I have told you -all my adventures, Mr. Holmes, and I should be very glad if you -could tell me what it all means, and, above all, what I should -do." - -Holmes and I had listened spellbound to this extraordinary story. -My friend rose now and paced up and down the room, his hands in -his pockets, and an expression of the most profound gravity upon -his face. - -"Is Toller still drunk?" he asked. - -"Yes. I heard his wife tell Mrs. Rucastle that she could do -nothing with him." - -"That is well. And the Rucastles go out to-night?" - -"Yes." - -"Is there a cellar with a good strong lock?" - -"Yes, the wine-cellar." - -"You seem to me to have acted all through this matter like a very -brave and sensible girl, Miss Hunter. Do you think that you could -perform one more feat? I should not ask it of you if I did not -think you a quite exceptional woman." - -"I will try. What is it?" - -"We shall be at the Copper Beeches by seven o'clock, my friend -and I. The Rucastles will be gone by that time, and Toller will, -we hope, be incapable. There only remains Mrs. Toller, who might -give the alarm. If you could send her into the cellar on some -errand, and then turn the key upon her, you would facilitate -matters immensely." - -"I will do it." - -"Excellent! We shall then look thoroughly into the affair. Of -course there is only one feasible explanation. You have been -brought there to personate someone, and the real person is -imprisoned in this chamber. That is obvious. As to who this -prisoner is, I have no doubt that it is the daughter, Miss Alice -Rucastle, if I remember right, who was said to have gone to -America. You were chosen, doubtless, as resembling her in height, -figure, and the colour of your hair. Hers had been cut off, very -possibly in some illness through which she has passed, and so, of -course, yours had to be sacrificed also. By a curious chance you -came upon her tresses. The man in the road was undoubtedly some -friend of hers--possibly her fianc--and no doubt, as you wore -the girl's dress and were so like her, he was convinced from your -laughter, whenever he saw you, and afterwards from your gesture, -that Miss Rucastle was perfectly happy, and that she no longer -desired his attentions. The dog is let loose at night to prevent -him from endeavouring to communicate with her. So much is fairly -clear. The most serious point in the case is the disposition of -the child." - -"What on earth has that to do with it?" I ejaculated. - -"My dear Watson, you as a medical man are continually gaining -light as to the tendencies of a child by the study of the -parents. Don't you see that the converse is equally valid. I have -frequently gained my first real insight into the character of -parents by studying their children. This child's disposition is -abnormally cruel, merely for cruelty's sake, and whether he -derives this from his smiling father, as I should suspect, or -from his mother, it bodes evil for the poor girl who is in their -power." - -"I am sure that you are right, Mr. Holmes," cried our client. "A -thousand things come back to me which make me certain that you -have hit it. Oh, let us lose not an instant in bringing help to -this poor creature." - -"We must be circumspect, for we are dealing with a very cunning -man. We can do nothing until seven o'clock. At that hour we shall -be with you, and it will not be long before we solve the -mystery." - -We were as good as our word, for it was just seven when we -reached the Copper Beeches, having put up our trap at a wayside -public-house. The group of trees, with their dark leaves shining -like burnished metal in the light of the setting sun, were -sufficient to mark the house even had Miss Hunter not been -standing smiling on the door-step. - -"Have you managed it?" asked Holmes. - -A loud thudding noise came from somewhere downstairs. "That is -Mrs. Toller in the cellar," said she. "Her husband lies snoring -on the kitchen rug. Here are his keys, which are the duplicates -of Mr. Rucastle's." - -"You have done well indeed!" cried Holmes with enthusiasm. "Now -lead the way, and we shall soon see the end of this black -business." - -We passed up the stair, unlocked the door, followed on down a -passage, and found ourselves in front of the barricade which Miss -Hunter had described. Holmes cut the cord and removed the -transverse bar. Then he tried the various keys in the lock, but -without success. No sound came from within, and at the silence -Holmes' face clouded over. - -"I trust that we are not too late," said he. "I think, Miss -Hunter, that we had better go in without you. Now, Watson, put -your shoulder to it, and we shall see whether we cannot make our -way in." - -It was an old rickety door and gave at once before our united -strength. Together we rushed into the room. It was empty. There -was no furniture save a little pallet bed, a small table, and a -basketful of linen. The skylight above was open, and the prisoner -gone. - -"There has been some villainy here," said Holmes; "this beauty -has guessed Miss Hunter's intentions and has carried his victim -off." - -"But how?" - -"Through the skylight. We shall soon see how he managed it." He -swung himself up onto the roof. "Ah, yes," he cried, "here's the -end of a long light ladder against the eaves. That is how he did -it." - -"But it is impossible," said Miss Hunter; "the ladder was not -there when the Rucastles went away." - -"He has come back and done it. I tell you that he is a clever and -dangerous man. I should not be very much surprised if this were -he whose step I hear now upon the stair. I think, Watson, that it -would be as well for you to have your pistol ready." - -The words were hardly out of his mouth before a man appeared at -the door of the room, a very fat and burly man, with a heavy -stick in his hand. Miss Hunter screamed and shrunk against the -wall at the sight of him, but Sherlock Holmes sprang forward and -confronted him. - -"You villain!" said he, "where's your daughter?" - -The fat man cast his eyes round, and then up at the open -skylight. - -"It is for me to ask you that," he shrieked, "you thieves! Spies -and thieves! I have caught you, have I? You are in my power. I'll -serve you!" He turned and clattered down the stairs as hard as he -could go. - -"He's gone for the dog!" cried Miss Hunter. - -"I have my revolver," said I. - -"Better close the front door," cried Holmes, and we all rushed -down the stairs together. We had hardly reached the hall when we -heard the baying of a hound, and then a scream of agony, with a -horrible worrying sound which it was dreadful to listen to. An -elderly man with a red face and shaking limbs came staggering out -at a side door. - -"My God!" he cried. "Someone has loosed the dog. It's not been -fed for two days. Quick, quick, or it'll be too late!" - -Holmes and I rushed out and round the angle of the house, with -Toller hurrying behind us. There was the huge famished brute, its -black muzzle buried in Rucastle's throat, while he writhed and -screamed upon the ground. Running up, I blew its brains out, and -it fell over with its keen white teeth still meeting in the great -creases of his neck. With much labour we separated them and -carried him, living but horribly mangled, into the house. We laid -him upon the drawing-room sofa, and having dispatched the sobered -Toller to bear the news to his wife, I did what I could to -relieve his pain. We were all assembled round him when the door -opened, and a tall, gaunt woman entered the room. - -"Mrs. Toller!" cried Miss Hunter. - -"Yes, miss. Mr. Rucastle let me out when he came back before he -went up to you. Ah, miss, it is a pity you didn't let me know -what you were planning, for I would have told you that your pains -were wasted." - -"Ha!" said Holmes, looking keenly at her. "It is clear that Mrs. -Toller knows more about this matter than anyone else." - -"Yes, sir, I do, and I am ready enough to tell what I know." - -"Then, pray, sit down, and let us hear it for there are several -points on which I must confess that I am still in the dark." - -"I will soon make it clear to you," said she; "and I'd have done -so before now if I could ha' got out from the cellar. If there's -police-court business over this, you'll remember that I was the -one that stood your friend, and that I was Miss Alice's friend -too. - -"She was never happy at home, Miss Alice wasn't, from the time -that her father married again. She was slighted like and had no -say in anything, but it never really became bad for her until -after she met Mr. Fowler at a friend's house. As well as I could -learn, Miss Alice had rights of her own by will, but she was so -quiet and patient, she was, that she never said a word about them -but just left everything in Mr. Rucastle's hands. He knew he was -safe with her; but when there was a chance of a husband coming -forward, who would ask for all that the law would give him, then -her father thought it time to put a stop on it. He wanted her to -sign a paper, so that whether she married or not, he could use -her money. When she wouldn't do it, he kept on worrying her until -she got brain-fever, and for six weeks was at death's door. Then -she got better at last, all worn to a shadow, and with her -beautiful hair cut off; but that didn't make no change in her -young man, and he stuck to her as true as man could be." - -"Ah," said Holmes, "I think that what you have been good enough -to tell us makes the matter fairly clear, and that I can deduce -all that remains. Mr. Rucastle then, I presume, took to this -system of imprisonment?" - -"Yes, sir." - -"And brought Miss Hunter down from London in order to get rid of -the disagreeable persistence of Mr. Fowler." - -"That was it, sir." - -"But Mr. Fowler being a persevering man, as a good seaman should -be, blockaded the house, and having met you succeeded by certain -arguments, metallic or otherwise, in convincing you that your -interests were the same as his." - -"Mr. Fowler was a very kind-spoken, free-handed gentleman," said -Mrs. Toller serenely. - -"And in this way he managed that your good man should have no -want of drink, and that a ladder should be ready at the moment -when your master had gone out." - -"You have it, sir, just as it happened." - -"I am sure we owe you an apology, Mrs. Toller," said Holmes, "for -you have certainly cleared up everything which puzzled us. And -here comes the country surgeon and Mrs. Rucastle, so I think, -Watson, that we had best escort Miss Hunter back to Winchester, -as it seems to me that our locus standi now is rather a -questionable one." - -And thus was solved the mystery of the sinister house with the -copper beeches in front of the door. Mr. Rucastle survived, but -was always a broken man, kept alive solely through the care of -his devoted wife. They still live with their old servants, who -probably know so much of Rucastle's past life that he finds it -difficult to part from them. Mr. Fowler and Miss Rucastle were -married, by special license, in Southampton the day after their -flight, and he is now the holder of a government appointment in -the island of Mauritius. As to Miss Violet Hunter, my friend -Holmes, rather to my disappointment, manifested no further -interest in her when once she had ceased to be the centre of one -of his problems, and she is now the head of a private school at -Walsall, where I believe that she has met with considerable success. - - - - - - - - - -End of the Project Gutenberg EBook of The Adventures of Sherlock Holmes, by -Arthur Conan Doyle - -*** END OF THIS PROJECT GUTENBERG EBOOK THE ADVENTURES OF SHERLOCK HOLMES *** - -***** This file should be named 1661-8.txt or 1661-8.zip ***** -This and all associated files of various formats will be found in: - http://www.gutenberg.org/1/6/6/1661/ - -Produced by an anonymous Project Gutenberg volunteer and Jose Menendez - -Updated editions will replace the previous one--the old editions -will be renamed. - -Creating the works from public domain print editions means that no -one owns a United States copyright in these works, so the Foundation -(and you!) can copy and distribute it in the United States without -permission and without paying copyright royalties. Special rules, -set forth in the General Terms of Use part of this license, apply to -copying and distributing Project Gutenberg-tm electronic works to -protect the PROJECT GUTENBERG-tm concept and trademark. Project -Gutenberg is a registered trademark, and may not be used if you -charge for the eBooks, unless you receive specific permission. If you -do not charge anything for copies of this eBook, complying with the -rules is very easy. You may use this eBook for nearly any purpose -such as creation of derivative works, reports, performances and -research. They may be modified and printed and given away--you may do -practically ANYTHING with public domain eBooks. Redistribution is -subject to the trademark license, especially commercial -redistribution. - - - -*** START: FULL LICENSE *** - -THE FULL PROJECT GUTENBERG LICENSE -PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK - -To protect the Project Gutenberg-tm mission of promoting the free -distribution of electronic works, by using or distributing this work -(or any other work associated in any way with the phrase "Project -Gutenberg"), you agree to comply with all the terms of the Full Project -Gutenberg-tm License (available with this file or online at -http://gutenberg.net/license). - - -Section 1. General Terms of Use and Redistributing Project Gutenberg-tm -electronic works - -1.A. By reading or using any part of this Project Gutenberg-tm -electronic work, you indicate that you have read, understand, agree to -and accept all the terms of this license and intellectual property -(trademark/copyright) agreement. If you do not agree to abide by all -the terms of this agreement, you must cease using and return or destroy -all copies of Project Gutenberg-tm electronic works in your possession. -If you paid a fee for obtaining a copy of or access to a Project -Gutenberg-tm electronic work and you do not agree to be bound by the -terms of this agreement, you may obtain a refund from the person or -entity to whom you paid the fee as set forth in paragraph 1.E.8. - -1.B. "Project Gutenberg" is a registered trademark. It may only be -used on or associated in any way with an electronic work by people who -agree to be bound by the terms of this agreement. There are a few -things that you can do with most Project Gutenberg-tm electronic works -even without complying with the full terms of this agreement. See -paragraph 1.C below. There are a lot of things you can do with Project -Gutenberg-tm electronic works if you follow the terms of this agreement -and help preserve free future access to Project Gutenberg-tm electronic -works. See paragraph 1.E below. - -1.C. The Project Gutenberg Literary Archive Foundation ("the Foundation" -or PGLAF), owns a compilation copyright in the collection of Project -Gutenberg-tm electronic works. Nearly all the individual works in the -collection are in the public domain in the United States. If an -individual work is in the public domain in the United States and you are -located in the United States, we do not claim a right to prevent you from -copying, distributing, performing, displaying or creating derivative -works based on the work as long as all references to Project Gutenberg -are removed. Of course, we hope that you will support the Project -Gutenberg-tm mission of promoting free access to electronic works by -freely sharing Project Gutenberg-tm works in compliance with the terms of -this agreement for keeping the Project Gutenberg-tm name associated with -the work. You can easily comply with the terms of this agreement by -keeping this work in the same format with its attached full Project -Gutenberg-tm License when you share it without charge with others. - -1.D. The copyright laws of the place where you are located also govern -what you can do with this work. Copyright laws in most countries are in -a constant state of change. If you are outside the United States, check -the laws of your country in addition to the terms of this agreement -before downloading, copying, displaying, performing, distributing or -creating derivative works based on this work or any other Project -Gutenberg-tm work. The Foundation makes no representations concerning -the copyright status of any work in any country outside the United -States. - -1.E. Unless you have removed all references to Project Gutenberg: - -1.E.1. The following sentence, with active links to, or other immediate -access to, the full Project Gutenberg-tm License must appear prominently -whenever any copy of a Project Gutenberg-tm work (any work on which the -phrase "Project Gutenberg" appears, or with which the phrase "Project -Gutenberg" is associated) is accessed, displayed, performed, viewed, -copied or distributed: - -This eBook is for the use of anyone anywhere at no cost and with -almost no restrictions whatsoever. You may copy it, give it away or -re-use it under the terms of the Project Gutenberg License included -with this eBook or online at www.gutenberg.net - -1.E.2. If an individual Project Gutenberg-tm electronic work is derived -from the public domain (does not contain a notice indicating that it is -posted with permission of the copyright holder), the work can be copied -and distributed to anyone in the United States without paying any fees -or charges. If you are redistributing or providing access to a work -with the phrase "Project Gutenberg" associated with or appearing on the -work, you must comply either with the requirements of paragraphs 1.E.1 -through 1.E.7 or obtain permission for the use of the work and the -Project Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or -1.E.9. - -1.E.3. If an individual Project Gutenberg-tm electronic work is posted -with the permission of the copyright holder, your use and distribution -must comply with both paragraphs 1.E.1 through 1.E.7 and any additional -terms imposed by the copyright holder. Additional terms will be linked -to the Project Gutenberg-tm License for all works posted with the -permission of the copyright holder found at the beginning of this work. - -1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm -License terms from this work, or any files containing a part of this -work or any other work associated with Project Gutenberg-tm. - -1.E.5. Do not copy, display, perform, distribute or redistribute this -electronic work, or any part of this electronic work, without -prominently displaying the sentence set forth in paragraph 1.E.1 with -active links or immediate access to the full terms of the Project -Gutenberg-tm License. - -1.E.6. You may convert to and distribute this work in any binary, -compressed, marked up, nonproprietary or proprietary form, including any -word processing or hypertext form. However, if you provide access to or -distribute copies of a Project Gutenberg-tm work in a format other than -"Plain Vanilla ASCII" or other format used in the official version -posted on the official Project Gutenberg-tm web site (www.gutenberg.net), -you must, at no additional cost, fee or expense to the user, provide a -copy, a means of exporting a copy, or a means of obtaining a copy upon -request, of the work in its original "Plain Vanilla ASCII" or other -form. Any alternate format must include the full Project Gutenberg-tm -License as specified in paragraph 1.E.1. - -1.E.7. Do not charge a fee for access to, viewing, displaying, -performing, copying or distributing any Project Gutenberg-tm works -unless you comply with paragraph 1.E.8 or 1.E.9. - -1.E.8. You may charge a reasonable fee for copies of or providing -access to or distributing Project Gutenberg-tm electronic works provided -that - -- You pay a royalty fee of 20% of the gross profits you derive from - the use of Project Gutenberg-tm works calculated using the method - you already use to calculate your applicable taxes. The fee is - owed to the owner of the Project Gutenberg-tm trademark, but he - has agreed to donate royalties under this paragraph to the - Project Gutenberg Literary Archive Foundation. Royalty payments - must be paid within 60 days following each date on which you - prepare (or are legally required to prepare) your periodic tax - returns. Royalty payments should be clearly marked as such and - sent to the Project Gutenberg Literary Archive Foundation at the - address specified in Section 4, "Information about donations to - the Project Gutenberg Literary Archive Foundation." - -- You provide a full refund of any money paid by a user who notifies - you in writing (or by e-mail) within 30 days of receipt that s/he - does not agree to the terms of the full Project Gutenberg-tm - License. You must require such a user to return or - destroy all copies of the works possessed in a physical medium - and discontinue all use of and all access to other copies of - Project Gutenberg-tm works. - -- You provide, in accordance with paragraph 1.F.3, a full refund of any - money paid for a work or a replacement copy, if a defect in the - electronic work is discovered and reported to you within 90 days - of receipt of the work. - -- You comply with all other terms of this agreement for free - distribution of Project Gutenberg-tm works. - -1.E.9. If you wish to charge a fee or distribute a Project Gutenberg-tm -electronic work or group of works on different terms than are set -forth in this agreement, you must obtain permission in writing from -both the Project Gutenberg Literary Archive Foundation and Michael -Hart, the owner of the Project Gutenberg-tm trademark. Contact the -Foundation as set forth in Section 3 below. - -1.F. - -1.F.1. Project Gutenberg volunteers and employees expend considerable -effort to identify, do copyright research on, transcribe and proofread -public domain works in creating the Project Gutenberg-tm -collection. Despite these efforts, Project Gutenberg-tm electronic -works, and the medium on which they may be stored, may contain -"Defects," such as, but not limited to, incomplete, inaccurate or -corrupt data, transcription errors, a copyright or other intellectual -property infringement, a defective or damaged disk or other medium, a -computer virus, or computer codes that damage or cannot be read by -your equipment. - -1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the "Right -of Replacement or Refund" described in paragraph 1.F.3, the Project -Gutenberg Literary Archive Foundation, the owner of the Project -Gutenberg-tm trademark, and any other party distributing a Project -Gutenberg-tm electronic work under this agreement, disclaim all -liability to you for damages, costs and expenses, including legal -fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT -LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE -PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE -TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE -LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR -INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH -DAMAGE. - -1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a -defect in this electronic work within 90 days of receiving it, you can -receive a refund of the money (if any) you paid for it by sending a -written explanation to the person you received the work from. If you -received the work on a physical medium, you must return the medium with -your written explanation. The person or entity that provided you with -the defective work may elect to provide a replacement copy in lieu of a -refund. If you received the work electronically, the person or entity -providing it to you may choose to give you a second opportunity to -receive the work electronically in lieu of a refund. If the second copy -is also defective, you may demand a refund in writing without further -opportunities to fix the problem. - -1.F.4. Except for the limited right of replacement or refund set forth -in paragraph 1.F.3, this work is provided to you 'AS-IS' WITH NO OTHER -WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO -WARRANTIES OF MERCHANTIBILITY OR FITNESS FOR ANY PURPOSE. - -1.F.5. Some states do not allow disclaimers of certain implied -warranties or the exclusion or limitation of certain types of damages. -If any disclaimer or limitation set forth in this agreement violates the -law of the state applicable to this agreement, the agreement shall be -interpreted to make the maximum disclaimer or limitation permitted by -the applicable state law. The invalidity or unenforceability of any -provision of this agreement shall not void the remaining provisions. - -1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the -trademark owner, any agent or employee of the Foundation, anyone -providing copies of Project Gutenberg-tm electronic works in accordance -with this agreement, and any volunteers associated with the production, -promotion and distribution of Project Gutenberg-tm electronic works, -harmless from all liability, costs and expenses, including legal fees, -that arise directly or indirectly from any of the following which you do -or cause to occur: (a) distribution of this or any Project Gutenberg-tm -work, (b) alteration, modification, or additions or deletions to any -Project Gutenberg-tm work, and (c) any Defect you cause. - - -Section 2. Information about the Mission of Project Gutenberg-tm - -Project Gutenberg-tm is synonymous with the free distribution of -electronic works in formats readable by the widest variety of computers -including obsolete, old, middle-aged and new computers. It exists -because of the efforts of hundreds of volunteers and donations from -people in all walks of life. - -Volunteers and financial support to provide volunteers with the -assistance they need are critical to reaching Project Gutenberg-tm's -goals and ensuring that the Project Gutenberg-tm collection will -remain freely available for generations to come. In 2001, the Project -Gutenberg Literary Archive Foundation was created to provide a secure -and permanent future for Project Gutenberg-tm and future generations. -To learn more about the Project Gutenberg Literary Archive Foundation -and how your efforts and donations can help, see Sections 3 and 4 -and the Foundation web page at http://www.pglaf.org. - - -Section 3. Information about the Project Gutenberg Literary Archive -Foundation - -The Project Gutenberg Literary Archive Foundation is a non profit -501(c)(3) educational corporation organized under the laws of the -state of Mississippi and granted tax exempt status by the Internal -Revenue Service. The Foundation's EIN or federal tax identification -number is 64-6221541. Its 501(c)(3) letter is posted at -http://pglaf.org/fundraising. Contributions to the Project Gutenberg -Literary Archive Foundation are tax deductible to the full extent -permitted by U.S. federal laws and your state's laws. - -The Foundation's principal office is located at 4557 Melan Dr. S. -Fairbanks, AK, 99712., but its volunteers and employees are scattered -throughout numerous locations. Its business office is located at -809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887, email -business@pglaf.org. Email contact links and up to date contact -information can be found at the Foundation's web site and official -page at http://pglaf.org - -For additional contact information: - Dr. Gregory B. Newby - Chief Executive and Director - gbnewby@pglaf.org - - -Section 4. Information about Donations to the Project Gutenberg -Literary Archive Foundation - -Project Gutenberg-tm depends upon and cannot survive without wide -spread public support and donations to carry out its mission of -increasing the number of public domain and licensed works that can be -freely distributed in machine readable form accessible by the widest -array of equipment including outdated equipment. Many small donations -($1 to $5,000) are particularly important to maintaining tax exempt -status with the IRS. - -The Foundation is committed to complying with the laws regulating -charities and charitable donations in all 50 states of the United -States. Compliance requirements are not uniform and it takes a -considerable effort, much paperwork and many fees to meet and keep up -with these requirements. We do not solicit donations in locations -where we have not received written confirmation of compliance. To -SEND DONATIONS or determine the status of compliance for any -particular state visit http://pglaf.org - -While we cannot and do not solicit contributions from states where we -have not met the solicitation requirements, we know of no prohibition -against accepting unsolicited donations from donors in such states who -approach us with offers to donate. - -International donations are gratefully accepted, but we cannot make -any statements concerning tax treatment of donations received from -outside the United States. U.S. laws alone swamp our small staff. - -Please check the Project Gutenberg Web pages for current donation -methods and addresses. Donations are accepted in a number of other -ways including including checks, online payments and credit card -donations. To donate, please visit: http://pglaf.org/donate - - -Section 5. General Information About Project Gutenberg-tm electronic -works. - -Professor Michael S. Hart is the originator of the Project Gutenberg-tm -concept of a library of electronic works that could be freely shared -with anyone. For thirty years, he produced and distributed Project -Gutenberg-tm eBooks with only a loose network of volunteer support. - - -Project Gutenberg-tm eBooks are often created from several printed -editions, all of which are confirmed as Public Domain in the U.S. -unless a copyright notice is included. Thus, we do not necessarily -keep eBooks in compliance with any particular paper edition. - - -Most people start at our Web site which has the main PG search facility: - - http://www.gutenberg.net - -This Web site includes information about Project Gutenberg-tm, -including how to make donations to the Project Gutenberg Literary -Archive Foundation, how to help produce our new eBooks, and how to -subscribe to our email newsletter to hear about new eBooks. diff --git a/slides_sources/source/include.rst b/slides_sources/source/include.rst new file mode 100644 index 00000000..607ee281 --- /dev/null +++ b/slides_sources/source/include.rst @@ -0,0 +1,6 @@ + +.. |instructor_1_name| replace:: Christopher Barker +.. |instructor_1_email| replace:: PythonCHB@gmail.com + +.. |instructor_2_name| replace:: Maria McKinley +.. |instructor_2_email| replace:: maria@mariakathryn.net diff --git a/slides_sources/source/index.rst b/slides_sources/source/index.rst index 970e3d45..040d3dfe 100644 --- a/slides_sources/source/index.rst +++ b/slides_sources/source/index.rst @@ -1,3 +1,8 @@ +*************** +Intro To Python +*************** + + In This Course ============== @@ -9,7 +14,7 @@ In This Course | .. toctree:: | .. toctree:: | | :maxdepth: 1 | :maxdepth: 1 | | | | - | session01 | homework/index | + | session01 | exercises/index | | session02 | supplements/index | | session03 | | | session04 | | @@ -46,14 +51,16 @@ In This Course .. toctree:: :maxdepth: 2 - homework/index + extra_topics + exercises/index supplements/index .. rst-class:: credit These materials copyright Christopher Barker and Cris Ewing, with thanks to Jon Jacky and Brian Dorsey for the materials from which these were derived. -Licenced under the Creative Commons Attribution-ShareAlike 4.0 International Public License. +Licenced under the +Creative Commons Attribution-ShareAlike 4.0 International Public License. https://creativecommons.org/licenses/by-sa/4.0/legalcode diff --git a/slides_sources/source/session01.rst b/slides_sources/source/session01.rst index 2ae3a44c..a282e32a 100644 --- a/slides_sources/source/session01.rst +++ b/slides_sources/source/session01.rst @@ -1,9 +1,16 @@ +.. include:: include.rst + ************************** Session One: Introductions ************************** -| In which you are introduced to this class, your instructors, your environment -| and your new best friend, Python. +Introductions +============= + +In which you are introduced to this class, your instructors, your environment, +and your new best friend, Python. + +| .. image:: /_static/python.png :align: center @@ -15,6 +22,17 @@ Session One: Introductions .. _xkcd.com/353: http://xkcd.com/353 +Goals for Session One: +====================== + +* Meet each other, set expectations for the class. + +* Schedule lightning talks. + +* Get you all up and running with Python + +* Start having fun with Python with a quick tutorial + Introductions ============= @@ -26,37 +44,39 @@ In which we meet each-other Your instructors ---------------- -.. rst-class:: center large +.. rst-class:: center medium -| Christopher Barker -| (PythonCHB at gmail dot com) +| |instructor_1_name| +| |instructor_1_email| | .. nextslide:: -.. rst-class:: center large +.. rst-class:: center medium -| Nathan Savage -| (nathansavagemail at gmail dot com) +| |instructor_2_name| +| |instructor_2_email| | Who are you? ------------- -.. rst-class:: center large +.. rst-class:: center medium Tell us a tiny bit about yourself: * name * programming background: what languages have you used? -* what do you hope to get from this class +* neighbor's name +* neighbor's favorite coffee shop or bar + Introduction to This Class ========================== .. rst-class:: center large -Intro to Python + Introduction to Python Course Materials Online @@ -66,26 +86,27 @@ A rendered HTML copy of the slides for this course may be found online at: http://uwpce-pythoncert.github.io/IntroToPython -Also there are some homework descriptions and supplemental materials. +Also there are some exercise descriptions and supplemental materials. The source of these materials are in the class gitHub repo: https://github.com/UWPCE-PythonCert/IntroToPython -Class email list: We will be using this list to communicate for this class: +We also have a bunch of supplemental resources for the program here: -programming-in-python@googlegroups.com +http://uwpce-pythoncert.github.io/PythonResources/index.html -You should have (or will soon) received and email invitation to join -the mailing list. +The source for those is here: +https://github.com/UWPCE-PythonCert/PythonResources Class Structure --------------- Class Time: - * Some lecture, lots of demos + * Some lecture -- as little as possible + * Lots of demos * Lab time: lots of hand-on practice - Take a break if you need one then... * Lather, Rinse, Repeat..... @@ -95,36 +116,51 @@ Interrupt me with questions -- please! (Some of the best learning prompted by questions) Homework: ----------- +--------- + +* Homework will be reading, exercises, and the occasional Video -* Assigned at each class +* Exercises will be started in class -- but you can finish them at home. * You are adults -- it's up to you to do it -* You can do a gitHub "pull request" if you want us to review it. +* You can do a gitHub "pull request" if you want us to review your work. - - We'll review how to do that later... + - We'll show you how to do that in the second session -Mailing list and Office Hours ------------------------------- +Communication +------------- **Mailing list:** -We've set up a google group -- you will all be invited to join: +We've set up a Google Group for this class: + +programming-in-python@googlegroups.com + +We will be using this list to communicate with you. You should have (or will soon) received an email invitation to join the mailing list. + +Slack: We have set up a slack channel for discussions. Anything python related is fair game. + +https://python2016fall.slack.com/ -``programming-in-python@googlegroups.com`` +We highly encourage you to work together. You will learn at a much deeper level if you work together, +and it gets you ready to collaborate with colleagues. -**Office Hours:** -I generally will hold "office hours" at a coffee shop for a couple hours +Office Hours +------------ + +We will generally will hold "office hours" at a coffee shop for a couple hours each weekend. -Nathan can do some as well. +Please feel free to attend even if you do not have a specific question. +It is an opportunity to work with the instructors and fellow students, +and learn from each other. What are good times for you? - +And what locations? Lightning Talks ---------------- @@ -133,52 +169,12 @@ Lightning Talks * 5 minutes each (including setup) - no kidding! * Every student will give one - * Purposes: introduce yourself, share interests, also show Python applications - * Any topic you like, that is related to Python -- according to you! - + * Purposes: introduce yourself, share interests, show Python applications + * Any topic you like that is related to Python -- according to you! Python Ecosystem ------------------ - -Python is Used for: - - * CS education (this course!) - * Application scripting (GIS, GNU Radio, Blender...) - * Systems administration and "glue" - * Web applications (Django etc. etc. etc.) - * Scientific/technical computing (a la MATLAB, R, .... ) - * Software tools (automated software testing, distributed version control, ...) - * Research (natural language, graph theory, distributed computing, ...) - -An unusually large number of niches -- versatile - -.. nextslide:: - -Used by: - -* Beginners -* Professional software developers, computer system administrators, ... -* Professionals OTHER THAN computer specialists: biologists, urban planners, .... - -An unusually large number of types of users -- versatile - -You can be productive in Python WITHOUT full-time immersion! - - -Python Features ---------------- - -Gets many things right: - -* Readable -- looks nice, makes sense -* No ideology about best way to program -- object-oriented programming, functional, etc. -* No platform preference -- Windows, Mac, Linux, ... -* Easy to connect to other languages -- C, Fortran - essential for science/math -* Large standard library -* Even larger network of external packages -* Countless conveniences, large and small, make it pleasant to work with - +================ What is Python? --------------- @@ -190,7 +186,6 @@ What is Python? * Byte-compiled * Interpreted - .. nextslide:: .. rst-class:: center large @@ -201,7 +196,6 @@ But what does that mean? Python Features --------------- - .. rst-class:: build * Unlike C, C++, C\#, Java ... More like Ruby, Lisp, Perl, Javascript @@ -292,20 +286,18 @@ Python 3.x ("py3k") .. nextslide:: -This class uses Python 2.7 not Python 3.x - -.. rst-class:: build +This class uses Python 3 -- not Python 2 * Adoption of Python 3 is growing fast - * A few key packages still not supported (https://python3wos.appspot.com/) - * Most code in the wild is still 2.x + * Almost all key packages now supported (https://python3wos.appspot.com/) + * But much code in the wild is still 2.x -* You *can* learn to write Python that is forward compatible from 2.x to 3.x +* If you find yourself needing to work with Python 2 and 3, there are ways to write compatible code: -* We will cover that more later in the program. +https://wiki.python.org/moin/PortingPythonToPy3k -* If you find yourself needing to work with Python 2 and 3, there are ways to write compatible code: https://wiki.python.org/moin/PortingPythonToPy3k +* We will cover that more later in the program. Also: a short intro to the differences you really need to know about up front later this session. Introduction to Your Environment @@ -327,50 +319,130 @@ Your Command Line (cli) Having some facility on the command line is important -We won't cover this in class, so if you are not comfortable, please bone up at -home. +We won't cover this much in class, so if you are not comfortable, +please bone up at home. -I suggest running through the **cli** tutorial at "learn code the hard way": +We have some resources here: `PythonResources--command line `_ -`http://cli.learncodethehardway.org/book`_ +**Windows:** -.. _http://cli.learncodethehardway.org/book: http://cli.learncodethehardway.org/book +Most of the demos in class, etc, will be done using the "bash" command line shell on OS-X. This is identical to the bash shell on Linux. +Windows provides the "DOS" command line, which is OK, but pretty old and limited, or "Power Shell" -- a more modern, powerful, flexible command shell. +If you are comfortable with either of these -- go for it. -Your Interpreter ----------------- +If not, you can use the "git Bash" shell -- which is much like the bash shell on OS-X and Linux. Or, on Windows 10, look into the "bash shell for Windows" otherwise known as the "Linux system" - - more info here: `PythonResources--Windows Bash `_ -Python comes with a built-in interpreter. -You see it when you type ``python`` at the command line: +LAB: Getting set up +------------------- -.. code-block:: pycon +Before we move on -- we need to get all of us on the same page, with the tools we need for class. - $ python - Python 2.7.5 (default, Aug 25 2013, 00:04:04) - [GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.0.68)] on darwin - Type "help", "copyright", "credits" or "license" for more information. - >>> +You will find instructions for how to get python, etc, up and running on your machine here: + +**Windows:** + +http://uwpce-pythoncert.github.io/PythonResources/Installing/python_for_windows.html + +**OS-X:** + +http://uwpce-pythoncert.github.io/PythonResources/Installing/python_for_mac.html + +**Linux:** + +http://uwpce-pythoncert.github.io/PythonResources/Installing/python_for_linux.html + +We'll run through some of that together. + +If you already have a working environment, please feel free to help your neighbor or look at the Python Resources pages, particularly reviewing/learning the shell and git. + +http://uwpce-pythoncert.github.io/PythonResources + +Our Class Environment +--------------------- + +We are going to work from a common environment in this class. + +We will take the time here in class to get this going. + +This helps to ensure that you will be able to work. + + +Step 1: Python 3 +------------------ + +.. rst-class:: medium + + Do you already have this?? + +.. code-block:: bash + + $ python + Python 3.6.1 (v3.5.2:4def2a2901a5, Jun 26 2016, 10:47:25) + [GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin + Type "help", "copyright", "credits" or "license" for more information. + >>> + +If not, or you have an older version -- let's install it! + +If you're all ready to go -- take this time to get started on a tutorial: + +http://uwpce-pythoncert.github.io/PythonResources/GeneralPython/learning.html#getting-started-tutorials + + +Step 2: Pip +----------- -That last thing you see, ``>>>`` is the "Python prompt". +Python comes with quite a bit ("batteries included"). + +Sometimes you need a bit more. + +Pip allows you to install Python packages to expand your system. + +The previous instructions include pip as well - make sure it's working. + +Once you've installed pip, you use it to install Python packages by name: + +.. code-block:: bash + + $ python -m pip install foobar + ... + +To find packages (and their proper names), you can search the python +package index (PyPI): + +https://pypi.python.org/pypi + + +Step 3: Install iPython +------------------------ + +As this is an intro class, we are going to use almost entirely features +of the standard library. But there are a couple things you may want: + +**iPython** is an "enhanced python shell" -- it make s it easier to work with python interactively. + +.. code-block:: bash -This is where you type code. + $ python -m pip install ipython[all] -.. nextslide:: Python in the Interpreter +Python in the Interpreter +------------------------- Try it out: -.. code-block:: pycon +.. code-block:: python - >>> print "hello world!" + >>> print("hello world!") hello world! >>> 4 + 5 9 >>> 2 ** 8 - 1 255 - >>> print "one string" + " plus another" + >>> print ("one string" + " plus another") one string plus another >>> @@ -432,8 +504,7 @@ Your Editor Typing code in an interpreter is great for exploring. -But for anything "real", you'll want to save the work you are doing in a more permanent -fashion. +But for anything "real", you'll want to save the work you are doing in a more permanent fashion. This is where an Editor fits in. @@ -445,7 +516,7 @@ MS Word is **not** a text editor. Nor is *TextEdit* on a Mac. -``Notepad`` is a text editor -- but a crappy one. +``Notepad`` on Windows is a text editor -- but a crappy one. You need a real "programmers text editor" @@ -454,7 +525,6 @@ characters hidden behind the scenes. .. nextslide:: Minimum Requirements - At a minimum, your editor should have: .. rst-class:: build @@ -468,27 +538,29 @@ In addition, great features to add include: * Tab completion * Code linting -* Jump-to-definition Have an editor that does all this? Feel free to use it. -If not, I suggest ``SublimeText``: +If not, I suggest ``SublimeText``: http://www.sublimetext.com/ + +(Use version 3, even though it's "beta") + +http://uwpce-pythoncert.github.io/PythonResources/DevEnvironment/sublime_as_ide.html -http://www.sublimetext.com/ +"Atom" is another good open source option. +And, of course, vi or Emacs on Linux, if you are familiar with those. Why No IDE? ----------- I am often asked this question. -An IDE does not give you much that you can't get with a good editor plus a good -interpreter. +An IDE does not give you much that you can't get with a good editor plus a good interpreter. An IDE often weighs a great deal -Setting up IDEs to work with different projects can be challenging and -time-consuming. +Setting up IDEs to work with different projects can be challenging and time-consuming. Particularly when you are first learning, you don't want too much done for you. @@ -499,142 +571,6 @@ Particularly when you are first learning, you don't want too much done for you. YAGNI -Setting Up Your Environment -=========================== - -.. rst-class:: centered large - -Shared setup means reduced complications. - - -Our Class Environment ---------------------- - -We are going to work from a common environment in this class. - -We will take the time here in class to get this going. - -This helps to ensure that you will be able to work. - - -Step 1: Python 2.7 ------------------- - -.. rst-class:: large - -You have this already, RIGHT? - -.. code-block:: bash - - $ python - Python 2.7.5 (default, Aug 25 2013, 00:04:04) - [GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.0.68)] on darwin - Type "help", "copyright", "credits" or "license" for more information. - >>> ^D - $ - -If not: - - * `For the mac <./supplements/python_for_mac.html>`_ - - * `For linux <./supplements/python_for_linux.html>`_ - - * `For windows <./supplements/python_for_windows.html>`_ - -Step 2: Pip ------------ - -Python comes with quite a bit ("batteries included"). - -Sometimes you need a bit more. - -Pip allows you to install Python packages to expand your system. - -You install it by downloading and then executing an installer script: - -.. code-block:: bash - - $ curl -O https://bootstrap.pypa.io/get-pip.py - % Total % Received % Xferd Average Speed Time Time Time Current - Dload Upload Total Spent Left Speed - 100 1309k 100 1309k 0 0 449k 0 0:00:02 0:00:02 --:--:-- 449k - - $ python get-pip.py - -(or go to: http://pip.readthedocs.org/en/latest/installing.html) - -(Windows users will need to do that....) - -.. nextslide:: Using Pip - -Once you've installed pip, you use it to install Python packages by name: - -.. code-block:: bash - - $ pip install foobar - ... - -To find packages (and their proper names), you can search the python -package index (PyPI): - -https://pypi.python.org/pypi - - -Step 3: Install iPython ------------------------- - -As this is an intro class, we are going to use almost entirely features -of standard library. But there are a couple things you may want: - -**iPython** - -.. code-block:: bash - - $pip install ipython - -If you are using SublimeText, you may want: - -.. code-block:: bash - - $ pip install PdbSublimeTextSupport - - -Step 4: Clone Class Repository ------------------------------- - -`gitHub `_ is an industry-standard system for -collaboration on software projects -- particularly open source ones. - -We will use it this class to manage submitting and reviewing your work, etc. - -**Wait!** Don't have a gitHub account? Set one up now. - -Next, you'll make a copy of the class repository using ``git``. - -The canonical copy is in the UWPCE organization on GitHub: - -https://github.com/UWPCE-PythonCert/IntroToPython - -Open that URL, and click on the *Fork* button at the top right corner. - -This will make a copy of this repository in *your* github account. - - -.. nextslide:: Clone Your Fork - -From here, you'll want to make a clone of your copy on your local machine. - -At your command line, run the following commands: - -.. code-block:: bash - - $ cd your_working_directory_for_the_class - $ git clone https://github.com//IntroToPython.git - -(you can copy and paste that link from the gitHub page) - -**Remember**, should be replaced by your github account name. - Introduction to iPython ======================= @@ -653,8 +589,8 @@ Specifically, you'll want to pay attention to the information about `Using iPython for Interactive Work`_. .. _iPython: http://ipython.org -.. _official documentation: http://ipython.org/ipython-doc/stable/index.html -.. _Using iPython for Interactive Work: http://ipython.org/ipython-doc/stable/interactive/index.html +.. _official documentation: http://ipython.readthedocs.io/en/stable/ +.. _Using iPython for Interactive Work: http://ipython.readthedocs.io/en/stable/interactive/index.html .. ifslides:: @@ -671,18 +607,15 @@ Start it up .. code-block:: bash - $ipython - - $ ipython - Python 2.7.6 (v2.7.6:3a1db0d2747e, Nov 10 2013, 00:42:54) - Type "copyright", "credits" or "license" for more information. - - IPython 2.0.0 -- An enhanced Interactive Python. - ? -> Introduction and overview of IPython's features. - %quickref -> Quick reference. - help -> Python's own help system. - object? -> Details about 'object', use 'object??' for extra details. + $ ipython + Python 3.5.0 (v3.5.0:374f501f4567, Sep 12 2015, 11:00:19) + Type "copyright", "credits" or "license" for more information. + IPython 4.0.0 -- An enhanced Interactive Python. + ? -> Introduction and overview of IPython's features. + %quickref -> Quick reference. + help -> Python's own help system. + object? -> Details about 'object', use 'object??' for extra details. .. ifslides:: @@ -746,7 +679,19 @@ To run it, you have a couple options: $ python the_name_of_the_script.py -2) run ``iPython``, and run it from within iPython with the ``run`` command +2) On *nix (linux, OS-X, Windows bash), you can make the file "executable":: + + chmod +x the_file.py + + And make sur it has a "shebang" line at the top:: + + #!/usr/bin/env python + + Then you can run it directly:: + + ./the_file.py + +3) run ``iPython``, and run it from within iPython with the ``run`` command .. code-block:: ipython @@ -758,8 +703,6 @@ To run it, you have a couple options: [demo] - - Basic Python Syntax =================== @@ -768,7 +711,7 @@ Basic Python Syntax .. rst-class:: center mlarge -| Values, Types, and Symbols +| Values, Types, and Names | | Expressions and Statements @@ -778,16 +721,15 @@ Values All of programming is really about manipulating values. -.. rst-class:: build +* Values are pieces of unnamed data: ``42``, ``'Hello, world'`` -* Values are pieces of unnamed data: ``42, 'Hello, world',`` * In Python, all values are objects - * Try ``dir(42)`` - lots going on behind the curtain! + - Try ``dir(42)`` - lots going on behind the curtain! -* Every value belongs to a type +* Every value has a type - * Try ``type(42)`` - the type of a value determines what it can do + - Try ``type(42)`` - the type of a value determines what it can do .. ifslides:: @@ -795,6 +737,7 @@ All of programming is really about manipulating values. [demo] + Literals for the Basic Value types: ------------------------------------ @@ -811,8 +754,10 @@ Boolean values: - ``True`` - ``False`` -(There are intricacies to all of these that we'll get into later) +The nothing object: + - ``None`` +(There are intricacies to all of these that we'll get into later) Code structure -------------- @@ -842,49 +787,30 @@ Statements: In [6]: # statements do not return a value, may contain an expression - In [7]: print "this" - this - - In [8]: line_count = 42 + In [7]: line_count = 42 - In [9]: + In [8]: return something -.. nextslide:: The Print Statement +.. nextslide:: The Print Function It's kind of obvious, but handy when playing with code: .. code-block:: ipython - In [1]: print "something" + In [1]: print("something") something You can print multiple things: .. code-block:: ipython - In [2]: print "the value is", 5 + In [2]: print("the value is", 5) the value is 5 .. nextslide:: -Python automatically adds a newline, which you can suppress with a comma: - - -.. code-block:: ipython - - In [12]: for i in range(5): - ....: print "the value is", - ....: print i - ....: - the value is 0 - the value is 1 - the value is 2 - the value is 3 - -.. nextslide:: - Any python object can be printed (though it might not be pretty...) .. code-block:: ipython @@ -893,7 +819,7 @@ Any python object can be printed (though it might not be pretty...) ...: pass ...: - In [2]: print bar + In [2]: print(bar) @@ -910,7 +836,7 @@ Blocks of code are delimited by a colon and indentation: .. code-block:: python for i in range(100): - print i**2 + print(i**2) .. code-block:: python @@ -941,12 +867,12 @@ These two blocks look the same: .. code-block:: python for i in range(100): - print i**2 + print(i**2) .. code-block:: python for i in range(100): - print i**2 + print(i**2) .. nextslide:: @@ -976,9 +902,10 @@ Make sure your editor is set to use spaces only -- Even when you hit the key +[Python itself allows any number of spaces (and tabs), but you are just going to confuse yourself and others if you do anything else] Expressions ----------------- +------------ An *expression* is made up of values and operators. @@ -991,8 +918,7 @@ An *expression* is made up of values and operators. * Integer vs. float arithmetic * (Python 3 smooths this out) - * Always use ``/`` when you want float results, ``//`` when you want - floored (integer) results + * Always use ``/`` when you want division with float results, ``//`` when you want floored (integer) results (no remainder). * Type conversions @@ -1007,31 +933,31 @@ An *expression* is made up of values and operators. [demo] -Symbols +Names ------- -Symbols are how we give names to values (objects). +Names are how we give names to values (objects) -- hence "names" .. rst-class:: build -* Symbols must begin with an underscore or letter -* Symbols can contain any number of underscores, letters and numbers +* Names must begin with an underscore or letter +* Names can contain any number of underscores, letters and numbers - * this_is_a_symbol + * this_is_a_name * this_is_2 * _AsIsThis * 1butThisIsNot * nor-is-this -* Symbols don't have a type; values do +* Names don't have a type; values do - * This is why python is 'Dynamic' + * This is why python is "Dynamic" -Symbols and Type +Names and Type ---------------- -Evaluating the type of a *symbol* will return the type of the *value* to which +Evaluating the type of a *name* will return the type of the *value* to which it is bound. .. code-block:: ipython @@ -1054,11 +980,12 @@ it is bound. In [26]: type(a) Out[26]: float +*wait!* a has a different type?!? -- yes, because it's the type of teh value: "3.14", names don't actually have a type, they can refer to any type. Assignment ---------- -A *symbol* is **bound** to a *value* with the assignment operator: ``=`` +A *name* is **bound** to a *value* with the assignment operator: ``=`` .. rst-class:: build @@ -1066,7 +993,6 @@ A *symbol* is **bound** to a *value* with the assignment operator: ``=`` * A value can have many names (or none!) * Assignment is a statement, it returns no value - .. nextslide:: Evaluating the name will return the value to which it is bound @@ -1093,13 +1019,13 @@ Variables? .. rst-class:: build -* In most languages, what I'm calling symbols, or names, are called "variables". +* In most languages, what I'm calling names are called "variables". -* In fact, Ill probably call them variables in this class. +* In fact, I'll probably call them variables in this class. * That's because they are used, for the most part, for the same purposes. -* But many of you defined a "variable" as something like: +* But often a "variable" is defined as something like: "a place in memory that can store values" * That is **NOT** what a name in python is! @@ -1179,15 +1105,14 @@ Using this feature, we can swap values between two names in one statement: In [55]: j Out[55]: 4 -Multiple assignment and symbol swapping can be very useful in certain contexts - +Multiple assignment and name swapping can be very useful in certain contexts Deleting -------- -You can't actually delete anything in python... +You can't actually directly delete values in python... -``del`` only deletes a name (or unbinds the name...) +``del`` only deletes a name (or "unbinds" the name...) .. code-block:: ipython @@ -1236,7 +1161,7 @@ Identity Every value in Python is an object. Every object is unique and has a unique *identity*, which you can inspect with -the ``id`` *builtin*: +the ``id`` *builtin* function: .. code-block:: ipython @@ -1255,7 +1180,7 @@ the ``id`` *builtin*: Testing Identity ---------------- -You can find out if the values bound to two different symbols are the **same +You can find out if the values bound to two different names are the **same object** using the ``is`` operator: .. code-block:: ipython @@ -1278,6 +1203,7 @@ object** using the ``is`` operator: [demo] +**NOTE:** checking the id of an object, or using "is" to check if two objects are the same is rarely used except for debugging and understanding what's going on under the hood. They are not used regularly in production code. Equality -------- @@ -1298,12 +1224,34 @@ You can test for the equality of certain values with the ``==`` operator In [81]: val1 == val3 Out[84]: False +A string is never equal to a number! + .. ifslides:: .. rst-class:: centered [demo] +For the numerical values, there is also:: + + >, <, >=, <=, != + +Singletons +---------- + +Python has three "singletons" -- value fro which there is only one instance: + + ``True``, ``False``, and ``None`` + +To check if a name is bound to one of these, you use ``is``:: + + a is True + + b is False + + x is None + +Note that in contrast to english -- "is" is asking a question, not making an assertion -- ``a is True`` means "is a the True value?" Operator Precedence ------------------- @@ -1314,8 +1262,11 @@ Operator Precedence determines what evaluates first: 4 + 3 * 5 != (4 + 3) * 5 -To force statements to be evaluated out of order, use parentheses. +To force statements to be evaluated out of order, use parentheses -- expressions in parentheses are always evaluated first: + (4 + 3) * 5 != 4 + (3 * 5) + +Python follows the "usual" rules of algebra. Python Operator Precedence -------------------------- @@ -1377,7 +1328,7 @@ String Literals A "string" is a chunk of text. -You define a ``string`` value by writing a string *literal*: +You define a "string" value by writing a string *literal*: .. code-block:: ipython @@ -1410,6 +1361,10 @@ You define a ``string`` value by writing a string *literal*: In [7]: r'a "raw" string, the \n comes through as a \n' Out[7]: 'a "raw" string, the \\n comes through as a \\n' +Python3 strings are fully support Unicode, which means that it can suport literally all the languages in the world (and then some -- Klingon, anyone?) + +Because Unicode is native, you can get very far without even thinking about it. Anything you can type in your editor will work fine. + Keywords -------- @@ -1418,7 +1373,7 @@ Python defines a number of **keywords** These are language constructs. -You *cannot* use these words as symbols. +You *cannot* use these words as names. :: @@ -1432,7 +1387,8 @@ You *cannot* use these words as symbols. .. nextslide:: -If you try to use any of the keywords as symbols, you will cause a + +If you try to use any of the keywords as names, you will cause a ``SyntaxError``: .. code-block:: ipython @@ -1446,7 +1402,7 @@ If you try to use any of the keywords as symbols, you will cause a .. code-block:: ipython In [14]: def a_function(else='something'): - ....: print else + ....: print(else) ....: File "", line 1 def a_function(else='something'): @@ -1457,7 +1413,7 @@ If you try to use any of the keywords as symbols, you will cause a __builtins__ ------------ -Python also has a number of pre-bound symbols, called **builtins** +Python also has a number of pre-bound names, called **builtins** Try this: @@ -1471,14 +1427,13 @@ Try this: 'BaseException', 'BufferError', ... - 'unicode', 'vars', 'xrange', 'zip'] .. nextslide:: -You are free to rebind these symbols: +You are free to rebind these names: .. code-block:: ipython @@ -1495,7 +1450,7 @@ You are free to rebind these symbols: TypeError: 'str' object is not callable -In general, this is a **BAD IDEA**. +In general, this is a **BAD IDEA** -- hopefully your editor will warn you. Exceptions @@ -1509,11 +1464,12 @@ There are several exceptions that you are likely to see a lot of: .. rst-class:: build -* ``NameError``: indicates that you have tried to use a symbol that is not bound to - a value. -* ``TypeError``: indicates that you have tried to use the wrong kind of object for - an operation. +* ``NameError``: indicates that you have tried to use a name that is not bound to a value. + +* ``TypeError``: indicates that you have tried to use the wrong kind of object for an operation. + * ``SyntaxError``: indicates that you have mis-typed something. + * ``AttributeError``: indicates that you have tried to access an attribute or method that an object does not have (this often means you have a different type of object than you expect) @@ -1528,36 +1484,34 @@ What is a function? A function is a self-contained chunk of code - You use them when you need the same code to run multiple times, or in multiple parts of the program. -(DRY) - +(DRY) -- "Don't Repeat Yourself" Or just to keep the code clean - Functions can take and return information .. nextslide:: -Minimal Function does nothing +The minimal Function has at least one statement .. code-block:: python - def (): - + def a_name(): + a_statement .. nextslide:: -Pass Statement (Note the indentation!) +Pass Statement does nothing (Note the indentation!) .. code-block:: python def minimal(): pass +This, or course, is not useful -- you will generally have multiple statements in a function. Functions: ``def`` ------------------ @@ -1568,7 +1522,7 @@ Functions: ``def`` * it is executed * it creates a local name - + * it does *not* return a value .. nextslide:: @@ -1587,7 +1541,7 @@ function defs must be executed before the functions can be called: .. code-block:: ipython In [18]: def simple(): - ....: print "I am a simple function" + ....: print("I am a simple function") ....: In [19]: simple() @@ -1603,22 +1557,25 @@ You **call** a function using the function call operator (parens): In [2]: type(simple) Out[2]: function + In [3]: simple Out[3]: + In [4]: simple() I am a simple function +Calling a function is how you run the code in that function. + Functions: Call Stack --------------------- -functions call functions -- this makes an execution stack -- that's all a trace -back is +functions can call other functions -- this makes an execution stack -- that's what a "trace back" is: .. code-block:: ipython In [5]: def exceptional(): - ...: print "I am exceptional!" + ...: print("I am exceptional!") ...: print 1/0 ...: In [6]: def passive(): @@ -1652,13 +1609,13 @@ Functions: Tracebacks in exceptional() 1 def exceptional(): - 2 print "I am exceptional!" - ----> 3 print 1/0 + 2 print("I am exceptional!") + ----> 3 print(1/0) 4 ZeroDivisionError: integer division or modulo by zero - +The error occurred in the ``doer`` function -- but the traceback shows you where that was called from. In a more complex system, this can be VERY useful -- learn to read tracebacks! Functions: ``return`` --------------------- @@ -1674,7 +1631,7 @@ This is actually the simplest possible function: .. nextslide:: -if you don't explicilty put ``return`` there, Python will: +if you don't explicitly put ``return`` there, Python will return None for you: .. code-block:: ipython @@ -1683,15 +1640,15 @@ if you don't explicilty put ``return`` there, Python will: ...: In [10]: fun() In [11]: result = fun() - In [12]: print result + In [12]: print(result) None -note that the interpreter eats ``None`` +note that the interpreter eats ``None`` -- you need to call ``print()`` to see it. .. nextslide:: -Only one return statement will ever be executed. +Only one return statement in a function will ever be executed. Ever. @@ -1704,7 +1661,7 @@ This is useful when debugging! In [14]: def no_error(): ....: return 'done' ....: # no more will happen - ....: print 1/0 + ....: print(1/0) ....: In [15]: no_error() Out[15]: 'done' @@ -1717,7 +1674,7 @@ However, functions *can* return multiple results: .. code-block:: ipython In [16]: def fun(): - ....: return (1, 2, 3) + ....: return 1, 2, 3 ....: In [17]: fun() Out[17]: (1, 2, 3) @@ -1729,7 +1686,7 @@ Remember multiple assignment? .. code-block:: ipython - In [18]: x,y,z = fun() + In [18]: x, y, z = fun() In [19]: x Out[19]: 1 In [20]: y @@ -1748,10 +1705,10 @@ In a ``def`` statement, the values written *inside* the parens are In [22]: def fun(x, y, z): ....: q = x + y + z - ....: print x, y, z, q + ....: print(x, y, z, q) ....: -x, y, z are *local* symbols -- so is q +x, y, z are *local* names -- so is q Functions: arguments @@ -1765,24 +1722,37 @@ When you call a function, you pass values to the function parameters as In [23]: fun(3, 4, 5) 3 4 5 12 -The values you pass in are *bound* to the symbols inside the function and used. +The values you pass in are *bound* to the names inside the function and used. + +The name used outside the object is separete from the name used inside teh function: + +.. code-block:: python + + x = 5 + + def fun(a): + print(a) + + fun(x) + +The "a" printed inside the function is the *same* object as the "x" outside the function. The ``if`` Statement --------------------- -In order to do anything interesting at all (including this week's homework), you need to be able to make a decision. +In order to do anything interesting at all, you need to be able to make a decision. .. nextslide:: -.. code-block:: python +.. code-block:: ipython In [12]: def test(a): ....: if a == 5: - ....: print "that's the value I'm looking for!" + ....: print("that's the value I'm looking for!") ....: elif a == 7: - ....: print "that's an OK number" + ....: print("that's an OK number") ....: else: - ....: print "that number won't do!" + ....: print("that number won't do!") In [13]: test(5) that's the value I'm looking for! @@ -1815,10 +1785,79 @@ Schedule the lightning talks: [demo] +Python 2-3 Differences +====================== + +Much of the example code you'll find online is Python2, rather than Python3 + +For the most part, they are the same -- so you can use those examples to learn from. + +There are a lot of subtle differences that you don't need to concern yourself with just yet. + +But a couple that you'll need to know right off the bat: + +print() +------- + +In python2, ``print`` is a "statement", rather than a function. That means it didn't require parentheses around what you want printed:: + + print something, something_else + +This made it a bit less flexible and powerful. + +But -- if you try to use it that way in Python3, you'll get an error:: + + In [15]: print "this" + File "", line 1 + print "this" + ^ + SyntaxError: Missing parentheses in call to 'print' + +So -- if you get this error, simply add the parentheses:: + + In [16]: print ("this") + this + +.. nextslide:: division + +In python 3, the division operator is "smart" when you divide integers:: + + In [17]: 1 / 2 + Out[17]: 0.5 + +However in python2, integer division, will give you an integer result:: + + In [1]: 1/2 + Out[1]: 0 + +In both versions, you can get "integer division" if you want it with a double slash:: + + In [1]: 1//2 + Out[1]: 0 + +And in python2, you can get the behavior of py3 with "true division":: + + In [2]: from __future__ import division + + In [3]: 1/2 + Out[3]: 0.5 + +For the most part, you just need to be a bit careful with the rare cases where py2 code counts on integer division. + +Other py2/py3 differences +------------------------- + +Most of the other differences are essentially of implementation details, like getting iterators instead of sequences -- we'll talk about that more when it comes up in class. + +There are also a few syntax differences with more advances topics: Exceptions, super(), etc. + +We'll talk about all that when we cover those topics. + + Homework ======== -??? Tasks by Next Week +Tasks and reading by next week Task 1 @@ -1829,7 +1868,7 @@ Task 1 Make sure you have the basics of command line usage down: Work through the supplemental tutorials on setting up your -`Command Line`_ for good development support. +Command Line (http://uwpce-pythoncert.github.io/PythonResources/DevEnvironment/shell.html) for good development support. Make sure you've got your editor set up productively -- at the very very least, make sure it does Python indentation and syntax coloring well. @@ -1840,35 +1879,17 @@ least, make sure it does Python indentation and syntax coloring well. If you are using SublimeText, here are some notes to make it super-nifty: -Setting up `SublimeText`_ . +http://uwpce-pythoncert.github.io/PythonResources/DevEnvironment/sublime_as_ide.html At the end, your editor should support tab completion and pep8 and pyflakes -linting. Your command line should be able to show you what virtualenv is active -and give you information about your git repository when you are inside one. +linting. If you are not using SublimeText, look for plugins that accomplish the same goals for your own editor. If none are available, please consider a change of editor. -.. _SublimeText: supplements/sublime_as_ide.html -.. _Command Line: supplements/shell.html - Also make sure you've got iPython working, if you didn't get to that in class. -Task 2 ------- - -**Python Pushups** - -To get a bit of exercise solving some puzzles with Python, work on the Python -exercises at `CodingBat`_. - - -There are 8 sets of puzzles. Do as many as you can, but try to at least -get all the "Warmups" done. - -.. _CodingBat: http://codingbat.com - Task 3 ------ @@ -1880,10 +1901,8 @@ Task 3 $ mkdir session01 $ cd session01 - * Add a new file to it called ``break_me.py`` - * In the ``break_me.py`` file write four simple Python functions: * Each function, when called, should cause an exception to happen @@ -1898,118 +1917,79 @@ Task 3 * Use the Python standard library reference on `Built In Exceptions`_ as a reference -.. _Built In Exceptions: https://docs.python.org/2/library/exceptions.html - -Task 5 -------- - -**Part 1** (adapted from Downey, "Think Python", ex. 3.5) - -Write a function that draws a grid like the following:: - - + - - - - + - - - - + - | | | - | | | - | | | - | | | - + - - - - + - - - - + - | | | - | | | - | | | - | | | - + - - - - + - - - - + - -.. nextslide:: - -Hint: to print more than one value on a line, you can print a comma-separated sequence: -``print '+', '-'`` - -If the sequence ends with a comma, Python leaves the line unfinished, so the value printed next appears on the same line. - -:: - - print '+', - print '-' - -The output of these statements is ``'+ -'``. +.. _Built In Exceptions: https://docs.python.org/3/library/exceptions.html -A print statement all by itself ends the current line and goes to the next line. +Task 2 +------ -.. nextslide:: +**Python Pushups** -**Part 2:** +To get a bit of exercise solving some puzzles with Python, work on the Python +exercises at "Coding Bat": http://codingbat.com/python -Write a function ``print_grid()`` that takes one integer argument -and prints a grid like the picture above, BUT the size of the -grid is given by the argument. +There are 8 sets of puzzles. Do as many as you can, but try to at least +get all the "Warmups" done. -For example, ``print_grid(11)`` prints the grid in the above picture. -This problem is underspecified. Do something reasonable. +Reading, etc. +------------- -Hints: +Every one of you has a different backgrond and learning style. - A character is a string of length 1 +So take a bit of time to figure out which resource works for you. - ``s + t`` is string ``s`` followed by string ``t`` +http://uwpce-pythoncert.github.io/PythonResources/GeneralPython/learning.html - ``s * n`` is string ``s`` replicated n times +provides some options. Do look it over. -.. nextslide:: +But here are few to get you started this week: -**Part 3:** +*Think Python:* Chapters 1–7 (http://greenteapress.com/wp/think-python-2e/) -Write a function that draws a similar grid with three rows and three columns. +*Dive Into Python:* Chapters 1–2 (http://www.diveintopython3.net/) -(what to do about rounding?) +*LPTHW:* ex. 1–10, 18-21 (http://learnpythonthehardway.org/book/) -And while you are at it -- n rows and columns... +*NOTE:* LPTHW is python 2 -- you will need to add parentheses to all your print calls! +Or follow this excellent introductory tutorial: -Recommended Reading, etc. -------------------------- +https://www.youtube.com/watch?v=MirG-vJOg04 -If you want some more practice with these key concepts: +You should be comfortable with working with variables, numbers, strings, and basic functions. -*Think Python:* Chapters 1–7 (http://greenteapress.com/thinkpython/) +git +--- -*Dive Into Python:* Chapters 1–3 (http://www.diveinto.org/python3/) +We'll be covering the basics of git next week - enough to use for this class. Please read one of these so you'll have a head start: -*LPTHW:* ex. 1–10, 18-21 (http://learnpythonthehardway.org/book/) +http://rogerdudler.github.io/git-guide/ -Or follow this Excellent introductory tutorial: +or -http://pyvideo.org/video/1850/a-hands-on-introduction-to-python-for-beginning-p +https://try.github.io/levels/1/challenges/1 Next Class =========== -.. rst-class:: left - -Next class I will be out of town. - -.. rst-class:: left - -You will be in the capable hands of Cris Ewing - -.. rst-class:: left +Next week, we'll: -Cris is the instructor for the next class in this sequence - -.. rst-class:: left + * get set up with git and gitHub + * Some more basic Python + * More on Functions + * Boolean Expressions + * Code Structure, Modules, and Namespaces -And a great teacher. Office Hours ------------ -I'll do office hours on either Saturday or Sunday from 12:00 -- 3:00 +We will have office hours on either Saturday or Sunday from 10:00 to noon. -Probably in Wallingford, or maybe South Lake Union +Preferences? -Do you have a preference? +Locations? -Nathan's office hours?? diff --git a/slides_sources/source/session02.rst b/slides_sources/source/session02.rst index 52b09843..a5199d68 100644 --- a/slides_sources/source/session02.rst +++ b/slides_sources/source/session02.rst @@ -1,22 +1,13 @@ -******************************************** -Session Two: Functions, Booleans and Modules -******************************************** - -.. ifslides:: - - .. rst-class:: center large - - Oh My! - +.. include:: include.rst +**************************************************** +Session Two: gitHub, Functions, Booleans and Modules +**************************************************** Review/Questions ================ -Review of Previous Session --------------------------- - -.. rst-class:: build +.. rst-class:: left medium * Values and Types * Expressions @@ -27,300 +18,285 @@ Homework Review .. rst-class:: center large -Any questions that are nagging? + Any questions that are nagging? -Class Outline -============= +Lightning Talks Today: +---------------------- -.. rst-class:: left +.. rst-class: medium - * git primer - * Some basic Python - * More on Functions + +| +| David E Tobey +| +| Sharmila Muralidharan +| +| Shu A Latif +| +| Spencer G McGhin + +Class Outline +------------- + + * git / gitHub primer + * Exercise: :ref:`exercise_grid_printer` + * Decisions, Decisions. + * Exercise: :ref:`exercise_fizz_buzz` + * More on functions + * Exercise: :ref:`exercise_fibonacci` * Boolean Expressions * Code Structure, Modules, and Namespaces - First a little git Primer... ============================== -.. rst-class:: center large - Let's get to know git a bit +Why Version Control? +-------------------- + +.. figure:: /_static/phd101212s.gif + :class: fill + :width: 45 % + +.. ifnotslides:: + + "Piled Higher and Deeper" by Jorge Cham + + www.phdcomics.com + What is git? ------------ - .. rst-class:: build .. container:: A "version control system" - A history of everything you do to your code + A history of everything everyone does to 'your' code - A graph of "states" in which your code has existed + A graph of "states" in which the code has existed - That last one is a bit tricky, so let's talk it over for a minute + That last one is a bit tricky, and is not necessary to understand right out of the gate. When you are ready, you can look at this supplement to gain a better understanding: -A Picture of git ----------------- - -.. figure:: /_static/git_simple_timeline.png - :width: 80% - :class: center + :ref: http://uwpce-pythoncert.github.io/PythonResources/DevEnvironment/git_overview.html -.. rst-class:: build -.. container:: +Setting up git +-------------- - A git repository is a set of points in time, with history showing where - you've been. +You should have git installed on your machine and accessible from the command line. There will be a little bit of setup for git that you should only have to do once. - Each point has a *name* (here *A*, *B*, *C*) that uniquely identifies it, - called a *hash* +.. code-block:: bash - The path from one point to the previous is represented by the *difference* - between the two points. + $ git config --global user.name "Marie Curie" + $ git config --global user.email "marie@radioactive.com" -.. nextslide:: - -.. figure:: /_static/git_head.png - :width: 75% - :class: center +Editor +------ -.. rst-class:: build -.. container:: +* git needs an editor occasionally +* default is VI, which is not very intuitive to non-Unix Geeks +* Nano is simple, easy solution for Macs and Linux +* Nano no longer available for windows, use Sublime or Notepad++ - Each point in time can also have a label that points to it. - One of these is *HEAD*, which always points to the place in the timeline - that you are currently looking at. +For Windows users: + http://uwpce-pythoncert.github.io/PythonResources/Installing/git_editor_windows.html .. nextslide:: -.. figure:: /_static/git_master_branch.png - :width: 75% - :class: center - -.. rst-class:: build -.. container:: +Once you have chosen/installed an editor, configure git to use it: - You may also be familiar with the label "master". +nano +``$ git config --global core.editor "nano -w"`` - This is the name that git automatically gives to the first *branch* in a - repository. +sublime (mac) +``$ git config --global core.editor "subl -n -w"`` - A *branch* is actually just a label that points to a specific point in - time. +sublime (win) +``$ git config --global core.editor "'c:/program files/sublime text 2/sublime_text.exe' -w"`` -.. nextslide:: +Notepad++ (Win) +``$ git config --global core.editor "'c:/program files (x86)/Notepad++/notepad++.exe' -multiInst -notabbar -nosession -noPlugin"`` -.. figure:: /_static/git_new_commit.png - :width: 75% - :class: center +Repositories +------------ -.. rst-class:: build -.. container:: +A repository is just a collection of files that 'belong together'. - When you make a *commit* in git, you add a new point to the timeline. +Since ``git`` is a *distributed* versioning system, there is no **central** +repository that serves as the one to rule them all. This simply means that all repositories should look the same. - The HEAD label moves to this new point. +However, to keep things sane, there is generally one "central" repository chosen that users check with for changes, for us this is GitHub. - So does the label for the *branch* you are on. -.. nextslide:: Making a Branch +Working with Remotes +-------------------- -.. figure:: /_static/git_new_branch.png - :width: 75% - :class: center +With git, you work with *local* repositories and *remotes* that they are connected to. .. rst-class:: build .. container:: - You can make a new *branch* with the ``branch`` command. + Git uses shortcuts to address *remotes*. Cloned repositories get an *origin* shortcut for free: - This adds a new label to the current commit. + .. code-block:: bash - Notice that it *does not* check out that branch. + $ git remote -v + origin https://github.com/UWPCE-PythonCert/IntroPython2016.git (fetch) + origin https://github.com/UWPCE-PythonCert/IntroPython2016.git (push) -.. nextslide:: Making a Branch + This shows that the local repo on my machine *originated* from the one in + the UWPCE-PythonCert gitHub account (it shows up twice, because I there is + a shortcut for both fetch from and push to this remote) -.. figure:: /_static/git_checkout_branch.png - :width: 75% - :class: center +.. nextslide:: .. rst-class:: build .. container:: - You can use the ``checkout`` command to switch to the new branch. - - This associates the HEAD label with the *session01* label. + You can work on any project you wish to that has a public repository on Github. However, since you won't have permission to edit most projects directly, there is such a thing as *forking* a project. - Use ``git branch`` to see which branch is *active*:: + When you *fork* a repository, you make a copy of that repository in your own (Github) account. - $ git branch - master - * session01 + When you have made changes that you believe the rest of the community will want to adopt, you make a *pull request* to the original project. The maintainer(s) of that project than have the option of accepting your changes, in which case your changes will become part of that project. -.. nextslide:: Making a Branch - -.. figure:: /_static/git_commit_on_branch.png - :width: 75% - :class: center + This is how we will be working in this class. When you want feedback on your work, you will make a *pull request* to the instructors. -.. rst-class:: build -.. container:: +.. nextslide:: - While it is checked out, new commits move the *session01* label. +Our class materials reside in a repository on *Github* in the *UWPCE-PythonCert* organization: - Notice that HEAD is *always* the same as "where you are now" +.. figure:: /_static/remotes_start.png + :width: 50% + :class: center -.. nextslide:: Making a Branch +.. nextslide:: -You can use this to switch between branches and make changes in isolation. +Note that this is not the same repository as the class materials. -.. rst-class:: build -.. container:: +It will be a repository that is created just for this class, and will be called IntroPython*quarter*. - .. figure:: /_static/git_checkout_master.png - :width: 75% - :class: center +In examples below it is called IntroToPython, so replace that in your head with the name of this year's repository. :) - .. figure:: /_static/git_new_commit_on_master.png - :width: 75% - :class: center +We will create this repository now. -.. nextslide:: Merging Branches +.. nextslide:: -.. rst-class:: build -.. container:: +This new repository will include examples and we will add relevant materials (and exercise solutions) to it throughout the quarter. - Branching allows you to keep related sets of work separate from each-other. +There will be a folder called students at the top level, and everyone will create their own directory within it. - In class here, you can use it to do your homework for each session. +So, everyone will commit to this repository, and everyone will have access to everyone's code. - Simply create a new branch for each session from your repository master - branch. +This will make it easier to collaborate. - Do your work on that branch, and then you can issue a **pull request** in - github to have your work evaluated. +We will do a live demo of setting up a machine now. - This is very much like how teams work in the "real world" so learning it - here will help you. +.. nextslide:: - The final step in the process is merging your work. +We will now create a fork of the class repository from the ``UWPCE-PythonCert`` +account on GitHub into your personal account. This is done on the GitHub website. -.. nextslide:: Merging Branches +Let's pause now to let you all create a gitHub account if you don't have one already. -The ``merge`` command allows you to *combine* your work on one branch with the -work on another. +.. figure:: /_static/remotes_fork.png + :width: 50% + :class: center -.. rst-class:: build -.. container:: +.. nextslide:: - It creates a new commit which reconciles the differences: +The next step is to make a *clone* of your fork on your own computer, which means that **your fork** in github is the *origin* (Demo): - .. figure:: /_static/git_merge_commit.png - :width: 75% - :class: center +.. figure:: /_static/remotes_clone.png + :width: 50% + :class: center - Notice that this commit has **two** parents. +.. nextslide:: +We will now set up our individual folders and include a README in this folder. -.. nextslide:: Conflicts .. rst-class:: build .. container:: - Sometimes when you ``merge`` two branches, you get *conflicts*. - - This happens when the same file was changed in about the same place in two - different ways. + .. code-block:: bash - Often, git can work these types of things out on its own, but if not, - you'll need to manually edit files to fix the problem. + $ cd IntroPythonXXXX + $ git status - You'll be helped by the fact that git will tell you which files are in - conflict. + .. code-block:: bash - Just open those files and look for conflict markers: + $ git pull origin master - * <<<<<<<<< *hash1* (stuff from the current branch) - * ========= (the pivot point between two branches' content) - * >>>>>>>>> *hash2* (stuff from the branch being merged) + .. code-block:: bash -.. nextslide:: Conflicts + $ cd students -Your job in fixing a conflict is to decide exactly what to keep. + .. code-block:: bash -You can (and should) communicate with others on your team when doing this. + $ mkdir maria_mckinley -Always remember to remove the conflict markers too. They are not syntactic -code in any language and will cause errors. + .. code-block:: bash -Once a conflict is resolved, you can ``git add`` the file back and then commit -the merge. + $ cd maria_mckinley + .. code-block:: bash -Working with Remotes --------------------- + $ echo "# Python code for UWPCE-PythonCert class" >> README.rst -Since ``git`` is a *distributed* versioning system, there is no **central** -repository that serves as the one to rule them all. +.. nextslide:: .. rst-class:: build .. container:: - Instead, you work with *local* repositories, and *remotes* that they are - connected to. + Check the status - Cloned repositories get an *origin* remote for free: + .. code-block:: bash + + $ git status + + Add anything you want to commit to your commit: .. code-block:: bash - $ git remote -v - origin https://github.com/UWPCE-PythonCert/IntroToPython.git (fetch) - origin https://github.com/UWPCE-PythonCert/IntroToPython.git (push) + $ git add README.rst - This shows that the local repo on my machine *originated* from the one in - my gitHub account (the one it was cloned from) + Make your commit: -.. nextslide:: + .. code-block:: bash -Our class materials reside in a repository on *Github* in the -*UWPCE-PythonCert* organization: + $ git commit -m 'added a readme file' -.. figure:: /_static/remotes_start.png - :width: 50% - :class: center .. nextslide:: -You've created a fork of the class repository from the ``UWPCE-PythonCert`` -account on GitHub into your personal account: +Push your changes: -.. figure:: /_static/remotes_fork.png - :width: 50% - :class: center + .. code-block:: bash -.. nextslide:: + $ git push origin master -You've made a *clone* of your fork to your own computer, which means that -**your fork** in github is the *origin*: + origin is the default name given by git refering to the server you cloned + (in this case your github repository) + + master is the branch that you are currently pushing to that server + + Go onto GitHub, and make a pull request! + + (This will be a pull request from a fork rather than from a branch) + + https://help.github.com/articles/creating-a-pull-request-from-a-fork/ -.. figure:: /_static/remotes_clone.png - :width: 50% - :class: center .. nextslide:: +You've pushed your own changes to that fork, and then issued pull requests to have that work merged back to the ``UWPCE-PythonCert`` original. + .. rst-class:: build .. container:: - You've pushed your own changes to that fork, and then issued pull requests - to have that worked merged back to the ``UWPCE-PythonCert`` original. - You want to keep your fork up-to-date with that original copy as the class goes forward. @@ -337,18 +313,17 @@ copies of it in different remote locations. This allows you to grab changes made to the repository in these other locations. - For our class, we will add an *upstream* remote to our local copy that points - to the original copy of the material in the ``UWPCE-PythonCert`` account. + For our class, we will add an *upstream* remote to our local copy that points to the original copy of the material in the ``UWPCE-PythonCert`` account, and we will call it, appropriately, "upstream" .. code-block:: bash - $ git remote add upstream https://github.com/UWPCE-PythonCert/IntroToPython.git + $ git remote add upstream https://github.com/UWPCE-PythonCert/IntroPython2015.git $ git remote -v - origin https://github.com/PythonCHB/IntroToPython.git (fetch) - origin https://github.com/PythonCHB/IntroToPython.git (push) - upstream https://github.com/UWPCE-PythonCert/IntroToPython.git (fetch) - upstream https://github.com/UWPCE-PythonCert/IntroToPython.git (push) + origin https://github.com/PythonCHB/IntroPython2015.git (fetch) + origin https://github.com/PythonCHB/IntroPython2015.git (push) + upstream https://github.com/UWPCE-PythonCert/IntroPython2015.git (fetch) + upstream https://github.com/UWPCE-PythonCert/IntroPython2015.git (push) .. nextslide:: @@ -377,13 +352,9 @@ Then you can see the branches you have locally available: $ git branch -a * master remotes/origin/HEAD -> origin/master - remotes/origin/gh-pages remotes/origin/master - remotes/upstream/gh-pages remotes/upstream/master -(the gh-pages branch is used to publish these notes) - .. nextslide:: Fetching Upstream Changes Finally, you can fetch and then merge changes from the upstream master. @@ -394,20 +365,16 @@ Start by making sure you are on your own master branch: $ git checkout master -This is **really really** important. Take the time to ensure you are where you -think you are. +This is **really really** important. Take the time to ensure you are where you think you are, iow, not on a remote. Use git status to find out where you are, if necesary. .. nextslide:: Merging Upstream Changes -Then, fetch the upstream master branch and merge it into your master: +Then, fetch the upstream master branch and merge it into your master. +You can do this in one step with: .. code-block:: bash - $ git fetch upstream master - From https://github.com/UWPCE-PythonCert/IntroToPython - * branch master -> FETCH_HEAD - - $ git merge upstream/master + $ git pull upstream master Updating 3239de7..9ddbdbb Fast-forward Examples/README.rst | 4 ++++ @@ -415,15 +382,11 @@ Then, fetch the upstream master branch and merge it into your master: create mode 100644 Examples/README.rst ... -NOTE: you can do that in one step with: - -.. code-block:: bash - - $ git pull upstream master .. nextslide:: Pushing to Origin Now all the changes from *upstream* are present in your local clone. +You should do this pull everytime you start to work on code. In order to preserve them in your fork on GitHub, you'll have to push: @@ -444,94 +407,152 @@ In order to preserve them in your fork on GitHub, you'll have to push: You can incorporate this into your daily workflow: :: + [make sure you are on correct branch] $ git checkout master + [get any changes from class repository] $ git pull upstream master - $ git push - [do some work] - $ git commit -a + [make sure you are in your student directory, do work] + [verify you are happy with changes] + $ git status + [add your changes to what will be committed] + $ git add . [add a good commit message] + $ git commit -m 'I wrote some Python.' + [push your changes to your remote github account] $ git push - [make a pull request] + [make a pull request on the GitHub website] -Quick Intro to Basics -===================== +.. nextslide:: Note -.. rst-class:: center large +Because of the way we have set up the class, you will be able +to see all work submitted to us from everyone in the class in +the students directory on your machine. This is not a bad thing. +And the files tend to be small. + +We encourage sharing of knowledge in this class. Helping your +fellow students will also help you to better understand. Share +your code, and get use to giving/receiving feedback on how to +improve your code, if you are not already. + + +LAB: Grid Printer +================= + +.. rst-class:: left + + With only the ability to do a bit with numbers and text, you should be + able to do this little project: + + :ref:`exercise_grid_printer` + +Getting Started: +---------------- + +Lets use git and gitHub to manage this project: + +Start by putting a python file in your clone of the class gitHub project: + +.. code-block:: bash + + $ cd my_personal_directory + $ mkdir session_02 + $ cd session_02 + $ touch grid_printer.py + $ git add grid_printer.py + +Then put your code in grid_printer.py + +Committing your code +-------------------- + +When your code does something useful, you can commit it. + +First check the status: + +.. code-block:: bash + + $ git status + +If it's what you expect, you can commit and push: + +.. code-block:: bash + + $ git commit -a -m "first version" + $ git push + +And when you want us to take a look, you can go to gitHub and do a "Pull Request" +(make sure you commit and push first) + + +Committing your code +-------------------- + +Commit early and often. + + +Lightning Talk: +--------------- + +.. rst-class:: center medium + +David E Tobey + + +Beyond Printing +================ + +.. rst-class:: center medium Because there's a few things you just gotta have Basics ------ -It turns out you can't really do much at all without at least a container type, -conditionals and looping... +You really can't really do much at all without at least +conditionals, looping, and a container type... -.. nextslide:: if +Making a Decision +------------------ + +**"Conditionals"** -``if`` and ``elif`` allow you to make decisions: +``if`` and ``elif`` (else if) allow you to make decisions: .. code-block:: python if a: - print 'a' + print('a') elif b: - print 'b' + print('b') elif c: - print 'c' + print('c') else: - print 'that was unexpected' + print('that was unexpected') .. nextslide:: if -What's the difference between these two: +What's the difference between these two? .. code-block:: python if a: - print 'a' + print('a') elif b: - print 'b' + print('b') + ## versus... if a: - print 'a' + print('a') if b: - print 'b' - - -.. nextslide:: switch? - -Many languages have a ``switch`` construct: - -.. code-block:: js - - switch (expr) { - case "Oranges": - document.write("Oranges are $0.59 a pound.
        "); - break; - case "Apples": - document.write("Apples are $0.32 a pound.
        "); - break; - case "Mangoes": - case "Papayas": - document.write("Mangoes and papayas are $2.79 a pound.
        "); - break; - default: - document.write("Sorry, we are out of " + expr + ".
        "); - } - -.. nextslide:: switch? - -**Not Python** + print('b') -use ``if..elif..elif..else`` -(or a dictionary, or subclassing....) - -.. nextslide:: lists +Lists +----- A way to store a bunch of stuff in order @@ -542,8 +563,10 @@ Pretty much like an "array" or "vector" in other languages a_list = [2,3,5,9] a_list_of_strings = ['this', 'that', 'the', 'other'] +You can put any type of object in a list... -.. nextslide:: tuples +Tuples +------- Another way to store an ordered list of things @@ -552,24 +575,27 @@ Another way to store an ordered list of things a_tuple = (2,3,4,5) a_tuple_of_strings = ('this', 'that', 'the', 'other') +You can also put any type of object in a tuple... +(sense a theme here?) Tuples are **not** the same as lists. The exact difference is a topic for next session. -.. nextslide:: for +``for`` loops +-------------- Sometimes called a 'determinate' loop -When you need to do something to everything in a sequence +When you need to do something to all the objects in a sequence .. code-block:: ipython In [10]: a_list = [2,3,4,5] In [11]: for item in a_list: - ....: print item + ....: print(item) ....: 2 3 @@ -577,24 +603,26 @@ When you need to do something to everything in a sequence 5 -.. nextslide:: range() and for +``range()`` and for +------------------- -Range builds lists of numbers automatically +``range`` builds sequences of numbers automatically Use it when you need to do something a set number of times .. code-block:: ipython - In [12]: range(6) - Out[12]: [0, 1, 2, 3, 4, 5] - - In [13]: for i in range(6): - ....: print "*", + In [31]: for i in range(4): + print('*', end=' ') ....: - * * * * * * + * * * * -.. nextslide:: Intricacies +NOTE: ``range(n)`` creates an "iterable" -- something you can loop over +-- more on that later. + +Intricacies +------------ This is enough to get you started. @@ -603,40 +631,47 @@ Each of these have intricacies special to python We'll get to those over the next couple of classes -BREAK TIME -========== +LAB: Fizz Buzz +=============== -Take a few moments to take a breather, when we return we'll do two lightning -talks: +.. rst-class:: left -.. ifslides:: + We now have the tools to do a implementation of the classic "Fizz Buzz" problem: - * Chantal Huynh - * David Fugelso + :ref:`exercise_fizz_buzz` + Do the same git / gitHub dance with this, too! -Functions -========= -Review ------- +Lightning Talk: +--------------- + +.. rst-class:: center medium + +Sharmila Muralidharan + + +More on Functions +================= + +Variable scope +-------------- Defining a function: .. code-block:: python def fun(x, y): - z = x+y + z = x + y return z - x, y, z are *local* names Local vs. Global ---------------- -Symbols bound in Python have a *scope* +Names bound in Python have a *scope* That *scope* determines where a symbol is visible, or what value it has in a given block. @@ -647,7 +682,7 @@ given block. In [15]: y = 33 In [16]: z = 34 In [17]: def fun(y, z): - ....: print x, y, z + ....: print(x, y, z) ....: In [18]: fun(3, 4) 32 3 4 @@ -671,8 +706,8 @@ But, did the value of y and z change in the *global* scope? In general, you should use global bindings mostly for constants. -In python we designate global constants by typing the symbols we bind to them -in ALL_CAPS +The python convention is to designate global constants by typing the +symbols we bind to them in ALL_CAPS .. code-block:: python @@ -683,7 +718,8 @@ in ALL_CAPS This is just a convention, but it's a good one to follow. -.. nextslide:: Global Gotcha +Global Gotcha +-------------- Take a look at this function definition: @@ -694,8 +730,8 @@ Take a look at this function definition: In [22]: def f(): ....: y = x ....: x = 5 - ....: print x - ....: print y + ....: print(x) + ....: print(y) ....: What is going to happen when we call ``f`` @@ -706,17 +742,19 @@ Try it and see: .. code-block:: ipython - In [23]: f() + In [34]: f() --------------------------------------------------------------------------- UnboundLocalError Traceback (most recent call last) - in () + in () ----> 1 f() - in f() + + in f() 1 def f(): ----> 2 y = x 3 x = 5 - 4 print x - 5 print y + 4 print(x) + 5 print(y) + UnboundLocalError: local variable 'x' referenced before assignment Because you are binding the symbol ``x`` locally, it becomes a local and masks @@ -731,7 +769,7 @@ So far we've seen simple parameter lists: .. code-block:: python def fun(x, y, z): - print x, y, z + print(x, y, z) These types of parameters are called *positional* @@ -746,7 +784,7 @@ You can provide *default values* for parameters in a function definition: .. code-block:: ipython In [24]: def fun(x=1, y=2, z=3): - ....: print x, y, z + ....: print(x, y, z) ....: When parameters are given with default values, they become *optional* @@ -803,8 +841,6 @@ This can help reduce the number of `WTFs per minute`_ in reading it later. There are two approaches to this: -.. rst-class:: build - * Comments * Docstrings @@ -824,11 +860,11 @@ You can use them to mark places you want to revisit later: .. code-block:: python for partygoer in partygoers: - for baloon in baloons: + for balloon in balloons: for cupcake in cupcakes: # TODO: Reduce time complexity here. It's killing us # for large parties. - resolve_party_favor(partygoer, baloon, cupcake) + resolve_party_favor(partygoer, balloon, cupcake) .. nextslide:: Comments @@ -846,10 +882,12 @@ This is not useful: # apply soap to each sponge worker.apply_soap(sponge) -.. nextslide:: Docstrings +Note: Nothing special about Python here -- basic good programing practice. + +Docstrings +---------- -In Python, ``docstrings`` are used to provide in-line documentation in a number -of places. +In Python, ``docstrings`` are used to provide in-line documentation in a number of places. The first place we will see is in the definition of ``functions``. @@ -867,24 +905,23 @@ header, it is a ``docstring``: You can then read this in an interpreter as the ``__doc__`` attribute of the function object. -.. nextslide:: Docstrings +.. nextslide:: A ``docstring`` should: -.. rst-class:: build -* be a complete sentence in the form of a command describing what the function +* Be a complete sentence in the form of a command describing what the function does. * """Return a list of values based on blah blah""" is a good docstring * """Returns a list of values based on blah blah""" is *not* -* fit onto a single line. +* Have a useful single line. * If more description is needed, make the first line a complete sentence and add more lines below for enhancement. -* be enclosed with triple-quotes. +* Be enclosed with triple-quotes. * This allows for easy expansion if required at a later date * Always close on the same line if the docstring is only one line. @@ -914,8 +951,7 @@ Recursion is especially useful for a particular set of problems. For example, take the case of the *factorial* function. -In mathematics, the *factorial* of an integer is the result of multiplying that -integer by every integer smaller than it down to 1. +In mathematics, the *factorial* of an integer is the result of multiplying that integer by every integer smaller than it down to 1. :: @@ -929,6 +965,47 @@ We can use a recursive function nicely to model this mathematical function [demo] +``assert`` +---------- + +Writing ``tests`` that demonstrate that your program works is an important part of learning to program. + +The python ``assert`` statement is useful in writing simple tests +for your code. + +.. code-block:: ipython + + In [1]: def add(n1, n2): + ...: return n1 + n2 + ...: + + In [2]: assert add(3, 4) == 7 + + In [3]: assert add(3, 4) == 10 + + --------------------------------------------------------------------- + AssertionError Traceback (most recent call last) + in () + ----> 1 assert add(3, 4) == 10 + + AssertionError: + + +LAB: Fibonacci +============== + +Let's write a few functions in class: + +:ref:`exercise_fibonacci` + + +Lightning Talk: +--------------- + +.. rst-class:: center medium + +Shu A Latif + Boolean Expressions =================== @@ -938,11 +1015,11 @@ Truthiness What is true or false in Python? -.. rst-class:: build +* The Booleans: ``True`` and ``False`` -* The Booleans: ``True`` and ``False`` * "Something or Nothing" -* http://mail.python.org/pipermail/python-dev/2002-April/022107.html + +* http://mail.python.org/pipermail/python-dev/2002-April/022107.html .. nextslide:: @@ -954,36 +1031,37 @@ Determining Truthiness: bool(something) -.. nextslide:: What is False? - -.. rst-class:: build +What is False? +-------------- * ``None`` + * ``False`` + * **Nothing:** -* zero of any numeric type: ``0, 0L, 0.0, 0j``. -* any empty sequence, for example, ``"", (), []``. -* any empty mapping, for example, ``{}`` . -* instances of user-defined classes, if the class defines a ``__nonzero__()`` - or ``__len__()`` method, when that method returns the integer zero or bool - value ``False``. + - Zero of any numeric type: ``0, 0L, 0.0, 0j``. + - Any empty sequence, for example, ``"", (), []``. + - Any empty mapping, for example, ``{}`` . + - Instances of user-defined classes, if the class defines a ``__nonzero__()`` or ``__len__()`` method, when that method returns the integer zero or bool value ``False``. * http://docs.python.org/library/stdtypes.html -.. nextslide:: What is True? +What is True? +------------- .. rst-class:: center large Everything Else -.. nextslide:: Pythonic Booleans +Pythonic Booleans +----------------- Any object in Python, when passed to the ``bool()`` type object, will evaluate to ``True`` or ``False``. -When you use the ``if`` keyword, it automatically does this to the statement provided. +When you use the ``if`` keyword, it automatically does this to the expression provided. Which means that this is redundant, and not Pythonic: @@ -1003,8 +1081,8 @@ Instead, use what Python gives you: do_something() -and, or and not ----------------- +``and``, ``or`` and ``not`` +--------------------------- Python has three boolean keywords, ``and``, ``or`` and ``not``. @@ -1071,12 +1149,13 @@ The first value that defines the result is returned .. ifslides:: - .. rst-class:: centered + .. rst-class:: centered large (demo) -.. nextslide:: Ternary Expressions +Ternary Expressions +------------------- This is a fairly common idiom: @@ -1104,7 +1183,7 @@ PEP 308: Boolean Return Values --------------------- -Remember this puzzle from your CodingBat exercises? +Remember this puzzle from the CodingBat exercises? .. code-block:: python @@ -1160,49 +1239,26 @@ And you can even do math with them (though it's a bit odd to do so): (demo) -In-Class Lab: -============= - -.. rst-class:: center large - -Funky Bools - -Exercises ---------- - -* Try your hand at writing a function that computes the distance between two - points:: - - dist = sqrt( (x1-x2)**2 + (y1-y2)**2 ) +Lightning Talk: +--------------- - print locals() +.. rst-class:: center medium -* Look up the ``%`` operator. What do these do? +Spencer G McGhin - * ``10 % 7 == 3`` - * ``14 % 7 == 0`` -* Write a program that prints the numbers from 1 to 100 inclusive. But for - multiples of three print "Fizz" instead of the number and for the multiples - of five print "Buzz". For numbers which are multiples of both three and five - print "FizzBuzz" instead. +LAB: Booleans +============= -* Experiment with ``locals`` by adding this statement to the functions you just - wrote::: +.. rst-class:: left - print locals() + Working with Booleans, Ternary Expressions, etc: + Re-write a couple CodingBat exercises, returning the direct boolean results, and/or using ternary expressions. -BREAK TIME -========== + Experiment with ``locals`` by adding this statement one of the functions you wrote today:: -Again, let's take a few moments out to take a short break. When we return -we'll have our second two lightning talks: - -.. ifslides:: - - * Ian M Davis - * Schuyler Alan Schwafel + print(locals()) Code Structure, Modules, and Namespaces @@ -1238,7 +1294,7 @@ You can put a one-liner after the colon: .. code-block:: ipython In [167]: x = 12 - In [168]: if x > 4: print x + In [168]: if x > 4: print(x) 12 But this should only be done if it makes your code **more** readable. @@ -1332,7 +1388,8 @@ inside it. (demo) -.. nextslide:: importing from packages +importing from packages +----------------------- .. code-block:: python @@ -1348,7 +1405,7 @@ inside it. http://effbot.org/zone/import-confusion.htm -.. nextslide:: importing from packages +.. nextslide:: .. code-block:: python @@ -1359,21 +1416,22 @@ http://effbot.org/zone/import-confusion.htm **Don't do this!** -Import ------- +``import`` +---------- When you import a module, or a symbol from a module, the Python code is *compiled* to **bytecode**. The result is a ``module.pyc`` file. -This process **executes all code at the module scope**. +Then after compiling, all the code in the module is run **at the module scope**. For this reason, it is good to avoid module-scope statements that have global side-effects. -.. nextslide:: Re-import +Re-import +---------- The code in a module is NOT re-run when imported again @@ -1381,8 +1439,8 @@ It must be explicitly reloaded to be re-run .. code-block:: python - import modulename - reload(modulename) + import importlib + importlib.reload(modulename) .. ifslides:: @@ -1405,7 +1463,7 @@ There are a few ways to do this: * ``In [149]: run hello.py`` -- at the IPython prompt -- running a module brings its names into the interactive namespace -.. nextslide:: Running a Module +.. nextslide Like importing, running a module executes all statements at the module level. @@ -1416,8 +1474,7 @@ is the same as the filename. When you *run* a module, the value of the symbol ``__name__`` is ``__main__``. -This allows you to create blocks of code that are executed *only when you run a -module* +This allows you to create blocks of code that are executed *only when you run a module* .. code-block:: python @@ -1440,39 +1497,11 @@ You can put code here that proves that your module works. [demo] -.. nextslide:: ``Assert`` - -Writing ``tests`` that demonstrate that your program works is an important part -of learning to program. - -The python ``assert`` statement is useful in writing ``main`` blocks that test -your code. - -.. code-block:: ipython - - In [1]: def add(n1, n2): - ...: return n1 + n2 - ...: - - In [2]: assert add(3, 4) == 7 - - In [3]: assert add(3, 4) == 10 - --------------------------------------------------------------------------- - AssertionError Traceback (most recent call last) - in () - ----> 1 assert add(3, 4) == 10 - - AssertionError: - -In-Class Lab -============ Import Interactions +------------------- -Exercises ---------- - -Experiment with importing different ways: +Let's experiment with importing different ways: .. code-block:: ipython @@ -1512,10 +1541,9 @@ Experiment with importing different ways: .. code-block:: python import sys - print sys.path + print(sys.path) import os - print os.path - + print(os.path) You wouldn't want to import * those! @@ -1526,109 +1554,48 @@ You wouldn't want to import * those! os.path.split('/foo/bar/baz.txt') os.path.join('/foo/bar', 'baz.txt') -Homework -======== - -You have two tasks to complete by next class: - -Task 1 ------- - -The Ackermann function, A(m, n), is defined:: - - A(m, n) = - n+1 if m = 0 - A(m−1, 1) if m > 0 and n = 0 - A(m−1, A(m, n−1)) if m > 0 and n > 0. - -See http://en.wikipedia.org/wiki/Ackermann_function. - -Create a new module called ``ack.py`` in a ``session02`` folder in your student folder. In that module, write a function named ``ack`` that performs Ackermann's function. - -* Write a good ``docstring`` for your function according to PEP 257. -* Ackermann's function is not defined for input values less than 0. Validate - inputs to your function and return None if they are negative. -.. nextslide:: - -The wikipedia page provides a table of output values for inputs between 0 and -4. Using this table, add a ``if __name__ == "__main__":`` block to test your -function. - -Test each pair of inputs between 0 and 4 and assert that the result produced by -your function is the result expected by the wikipedia table. - -When your module is run from the command line, these tests should be executed. -If they all pass, print "All Tests Pass" as the result. - -Add your new module to your git clone and commit frequently while working on -your implementation. Include good commit messages that explain concisely both -*what* you are doing and *why*. - -When you are finished, push your changes to your fork of the class repository -in GitHub and make a pull request. - -:: - - - Adapted from "Think Python": Chapter 6, exercise 5. - -Task 2 ------- - -The `Fibonacci Series`_ is a numeric series starting with the integers 0 and 1. -In this series, the next integer is determined by summing the previous two. -This gives us:: - - 0, 1, 1, 2, 3, 5, 8, 13, ... +Next Class +========== -Create a new module ``series.py`` in the ``session02`` folder in your student folder. In it, add a function called ``fibonacci``. The function should have one parameter ``n``. The function should return the ``nth`` value in the fibonacci series. +.. rst-class left -Ensure that your function has a well-formed ``docstring`` +* Sequences +* Iteration +* Strings and String Formatting -.. _Fibonacci Series: http://en.wikipedia.org/wiki/Fibbonaci_Series +* Lightning talks by: -.. nextslide:: + - Beatrice He + - Bradley I Baumel + - Jerry Bearer + - Sheree Pena -The `Lucas Numbers`_ are a related series of integers that start with the -values 2 and 1 rather than 0 and 1. The resulting series looks like this:: - 2, 1, 3, 4, 7, 11, 18, 29, ... +Office hours: Sunday 10:00 -- 12:00 -.. _Lucas Numbers: http://en.wikipedia.org/wiki/Lucas_number -In your ``series.py`` module, add a new function ``lucas`` that returns the -``nth`` value in the *lucas numbers* +Homework +--------- -Ensure that your function has a well-formed ``docstring`` +Review and/or finish reading these class notes. -.. nextslide:: +Finish any labs from class.... -Both the *fibonacci series* and the *lucas numbers* are based on an identical -formula. +**Reading:** -Add a third function called ``sum_series`` with one required parameter and two -optional parameters. The required parameter will determine which element in the -series to print. The two optional parameters will have default values of 0 and -1 and will determine the first two values for the series to be produced. +Think Python, chapters 8, 9, 10, 12 -Calling this function with no optional parameters will produce numbers from the -*fibonacci series*. Calling it with the optional arguments 2 and 1 will -produce values from the *lucas numbers*. Other values for the optional -parameters will produce other series. +(http://greenteapress.com/thinkpython/html/thinkpython009.html) -Ensure that your function has a well-formed ``docstring`` +Learn Python the Hard way: exercises 11 -- 14, 18, 19, 21, 28-33 +(the ones in between are about files -- we'll get to that later.) -.. nextslide:: +http://learnpythonthehardway.org/book/ex11.html -Add an ``if __name__ == "__main__":`` block to the end of your ``series.py`` -module. Use the block to write a series of ``assert`` statements that -demonstrate that your three functions work properly. +NOTE: In python3, you use ``input``, rather than ``raw_input`` -Use comments in this block to inform the observer what your tests do. +Dive Into Python: chapter 4 -Add your new module to your git clone and commit frequently while working on -your implementation. Include good commit messages that explain concisely both -*what* you are doing and *why*. +(http://www.diveintopython3.net/strings.html) -When you are finished, push your changes to your fork of the class repository -in GitHub and make a pull request. diff --git a/slides_sources/source/session03.rst b/slides_sources/source/session03.rst index ecd77c02..bd58f2ff 100644 --- a/slides_sources/source/session03.rst +++ b/slides_sources/source/session03.rst @@ -1,3 +1,5 @@ +.. include:: include.rst + ********************************************************* Session Three: Sequences, Iteration and String Formatting ********************************************************* @@ -8,12 +10,9 @@ Review/Questions Review of Previous Session -------------------------- -.. rst-class:: build - * Functions - recursion - - optional arguments * Booleans @@ -28,8 +27,6 @@ Homework Review * FizzBuzz -* Ackerman - * Series .. rst-class:: center large @@ -41,20 +38,18 @@ git .. rst-class:: center large - OK -- I'll answer git questions... + OK -- we'll answer git questions... Lightning Talks Today: ---------------------- .. rst-class:: mlarge - James Brent Nunn - - Lauren Fries - - Lesley D Reece - - Michel Claessens +| +| Beatrice He +| Bradley I Baumel +| Jerry Bearer +| Sheree Pena Sequences @@ -86,26 +81,27 @@ A *sequence* can be considered as anything that supports Sequence Types -------------- -There are seven builtin types in Python that are *sequences*: +There are eight builtin types in Python that are *sequences*: -* strings -* Unicode strings -* lists -* tuples -* bytearrays -* buffers -* array.arrays -* xrange objects (almost) +* string +* list +* tuple +* bytes +* bytearray +* buffer +* array.array +* range object (almost) -For this class, you won't see much beyond the string types, lists, tuples -- the rest are pretty special purpose. +For this class, you won't see much beyond string, lists, and tuples -- +the rest are pretty special purpose. -But what we say today applies to all sequences (with minor caveats) +But what we learn today applies to all sequences (with minor caveats) Indexing -------- -Items in a sequence may be looked up by *index* using the subscription +Items in a sequence may be looked up by *index* using the indexing operator: ``[]`` Indexing in Python always starts at zero. @@ -159,7 +155,7 @@ Slicing Slicing a sequence creates a new sequence with a range of objects from the original sequence. -It also uses the subscription operator (``[]``), but with a twist. +It also uses the indexing operator (``[]``), but with a twist. ``sequence[start:finish]`` returns all sequence[i] for which start <= i < finish: @@ -215,11 +211,11 @@ Why start from zero? Python indexing feels 'weird' to some folks -- particularly those that don't come with a background in the C family of languages. -Why is the "first" item indexed with zero? +Why is the "first" item indexed with **zero**? Why is the last item in the slice **not** included? -Because these lead to some nifty properties:: +*Because* these lead to some nifty properties:: len(seq[a:b]) == b-a @@ -274,7 +270,7 @@ Indexing past the end of a sequence will raise an error, slicing will not: In [131]: s[10:20] Out[131]: ' words' In [132]: s[20:30] - Out[132]: " + Out[132]: '' (demo) @@ -321,13 +317,12 @@ Using ``+`` or ``*`` on sequences will *concatenate* them: .. code-block:: ipython - In [25]: s1 = "left" - In [26]: s2 = "right" - In [27]: s1 + s2 - Out[27]: 'leftright' - In [28]: (s1 + s2) * 3 - Out[28]: 'leftrightleftrightleftright' - + In [18]: l1 = [1,2,3,4] + In [19]: l2 = [5,6,7,8] + In [20]: l1 + l2 + Out[20]: [1, 2, 3, 4, 5, 6, 7, 8] + In [21]: (l1+l2) * 2 + Out[21]: [1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8] .. nextslide:: Multiplying and Slicing @@ -362,8 +357,7 @@ All sequences have a length. You can get it with the ``len`` builtin: In [37]: len(s) Out[37]: 25 -Remember, Python sequences are zero-indexed, so the last index in a sequence is -``len(s) - 1``: +Remember: Sequences are 0-indexed, so the last index is ``len(s)-1``: .. code-block:: ipython @@ -397,11 +391,11 @@ All sequences also support the ``min`` and ``max`` builtins: Why are those the answers you get? (hint: ``ord('a')``) +Of course this works with numbers, too! .. nextslide:: Index -All sequences also support the ``index`` method, which returns the index of the -first occurence of an item in the sequence: +All sequences also support the ``index`` method, which returns the index of the first occurence of an item in the sequence: .. code-block:: ipython @@ -443,35 +437,30 @@ This does not raise an error if the item you seek is not present: Iteration --------- -.. rst-class:: center large +.. rst-class:: center mlarge -More on this in a while. + All sequences are "iterables" -- -LAB -==== + More on this in a while. -Slicing Lab +Slicing LAB +=========== -Slicing Lab ------------- -Write some functions that: +.. rst-class:: center medium -* return a string with the first and last characters exchanged. -* return a string with every other character removed -* return a string with the first and last 4 characters removed, and every other char in between -* return a string reversed (just with slicing) -* return a string with the middle, then last, then first third in the new order + Let's practice Slicing! + + :ref:`exercise_slicing` -NOTE: these should work with ANY sequence -- not just strings! Lightning Talks ---------------- | -| James Brent Nunn +| Beatrice He | | -| Lauren Fries +| Bradley Baumel | @@ -480,7 +469,7 @@ Lists, Tuples... .. rst-class:: center large -The *other* sequence types. +The *primary* sequence types. Lists ----- @@ -507,6 +496,7 @@ Or by using the ``list`` type object as a constructor: In [8]: list('abc') Out[8]: ['a', 'b', 'c'] +It will take any "iterable" .. nextslide:: List Elements @@ -570,14 +560,13 @@ But they *do* need commas...! In [156]: t = ( 3 ) In [157]: type(t) Out[157]: int - In [158]: t = (3,) + In [158]: t = ( 3, ) In [160]: type(t) Out[160]: tuple .. nextslide:: Converting to Tuple -You can also use the ``tuple`` type object to convert any sequence into a -tuple: +You can also use the ``tuple`` type object to convert any iterable(sequence) into a tuple: .. code-block:: ipython @@ -605,7 +594,7 @@ multiple names (or no name) In [25]: a = (1, 2, name) In [26]: b = (3, 4, other) In [27]: for i in range(3): - ....: print a[i] is b[i], + ....: print(a[i] is b[i], end=' ') ....: False False True @@ -613,7 +602,7 @@ multiple names (or no name) .. rst-class:: center large -So Why Have Both? + So Why Have Both? Mutability @@ -642,18 +631,18 @@ Objects which are mutable may be *changed in place*. Objects which are immutable may not be changed. +Ever. .. nextslide:: The Types We Know -========= ======= +========= =========== Immutable Mutable -========= ======= -Unicode List -String -Integer +========= =========== +String List +Integer Dictionary Float Tuple -========= ======= +========= =========== .. nextslide:: Lists Are Mutable @@ -760,7 +749,7 @@ So, what is going to be in ``bins`` now? We multiplied a sequence containing a single *mutable* object. -We got a list containing five pointers to a single *mutable* object. +We got a list containing five references to a single *mutable* object. .. nextslide:: Mutable Default Argument @@ -790,12 +779,12 @@ used to change the list. You can find all these in the Standard Library Documentation: -http://www.python.org/2/library/stdtypes.html#mutable-sequence-types +https://docs.python.org/3/library/stdtypes.html#typesseq-mutable Assignment ----------- -Yo've already seen changing a single element of a list by assignment. +You've already seen changing a single element of a list by assignment. Pretty much the same as "arrays" in most languages: @@ -936,9 +925,7 @@ Consider this common pattern: if should_be_removed(x): somelist.remove(x) -This looks benign enough, but changing a list while you are iterating over it -can be the cause of some pernicious bugs. - +This looks benign enough, but changing a list while you are iterating over it can be the cause of some pernicious bugs. .. nextslide:: The Problem @@ -946,14 +933,14 @@ For example: .. code-block:: ipython - In [121]: list = range(10) - In [122]: list - Out[122]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] - In [123]: for x in list: - .....: list.remove(x) - .....: - In [124]: list - Out[124]: [1, 3, 5, 7, 9] + In [27]: l = list(range(10)) + In [28]: l + Out[28]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] + In [29]: for item in l: + ....: l.remove(item) + ....: + In [30]: l + Out[30]: [1, 3, 5, 7, 9] Was that what you expected? @@ -963,12 +950,13 @@ Iterate over a copy, and mutate the original: .. code-block:: ipython - In [126]: list = range(10) - In [127]: for x in list[:]: - .....: list.remove(x) - .....: - In [128]: list - Out[128]: [] + In [33]: l = list(range(10)) + + In [34]: for item in l[:]: + ....: l.remove(item) + ....: + In [35]: l + Out[35]: [] .. nextslide:: Just Say It, Already @@ -982,17 +970,16 @@ You can iterate over a sequence. for element in sequence: do_something(element) +which is what we mean when we say a sequence is an "iterable". -Again, we'll touch more on this in a short while, but first a few more words -about Lists and Tuples. +Again, we'll touch more on this in a short while, but first a few more words about Lists and Tuples. Miscellaneous List Methods -------------------------- -These methods change a list in place and are not available on immutable -sequence types. +These methods change a list in place and are not available on immutable sequence types. ``.reverse()`` @@ -1011,16 +998,14 @@ sequence types. In [133]: food Out[133]: ['eggs', 'ham', 'spam'] -Because these methods mutate the list in place, they have a return value of -``None`` +Because these methods mutate the list in place, they have a return value of ``None`` .. nextslide:: Custom Sorting ``.sort()`` can take an optional ``key`` parameter. -It should be a function that takes one parameter (list items one at a time) and -returns something that can be used for sorting: +It should be a function that takes one parameter (list items one at a time) and returns something that can be used for sorting: .. code-block:: ipython @@ -1039,16 +1024,16 @@ List Performance .. rst-class:: build * indexing is fast and constant time: O(1) -* x in s proportional to n: O(n) +* ``x in l`` is proportional to n: O(n) * visiting all is proportional to n: O(n) -* operating on the end of list is fast and constant time: O(1) +* operating on the end of list is fast and constant time: O(1) * append(), pop() * operating on the front (or middle) of the list depends on n: O(n) - * pop(0), insert(0, v) - * But, reversing is fast. Also, collections.deque + * ``pop(0)``, ``insert(0, v)`` + * But, reversing is fast. ``Also, collections.deque`` http://wiki.python.org/moin/TimeComplexity @@ -1067,10 +1052,12 @@ Here are a few guidelines on when to choose a list or a tuple: Otherwise ... taste and convention -.. nextslide:: Convention +Convention +----------- + Lists are Collections (homogeneous): --- contain values of the same type +-- contain values of the same type -- simplifies iterating, sorting, etc tuples are mixed types: @@ -1078,7 +1065,8 @@ tuples are mixed types: -- Kind of like simple C structs. -.. nextslide:: Other Considerations +Other Considerations +-------------------- .. rst-class:: build @@ -1108,92 +1096,52 @@ More Documentation For more information, read the list docs: -http://docs.python.org/2/library/stdtypes.html#mutable-sequence-types +https://docs.python.org/3.5/library/stdtypes.html#mutable-sequence-types (actually any mutable sequence....) -LAB -==== - -List Lab ---------- - -List Lab (after http://www.upriss.org.uk/python/session5.html) - -In your student folder, create a new file called ``list_lab.py``. - -The file should be an executable python script. That is to say that one -should be able to run the script directly like so: - -.. code-block:: bash - - $ ./list_lab.py - -Add the file to your clone of the repository and commit changes frequently -while working on the following tasks. When you are done, push your changes to -GitHub and issue a pull request. - -(if you are struggling with git -- just write the code for now) +One Last Trick +--------------- -When the script is run, it should accomplish the following four series of -actions: +.. rst-class:: left -.. nextslide:: Series 1 +For some of the exercises, you'll need to interact with a user at the +command line. -- Create a list that contains "Apples", "Pears", "Oranges" and "Peaches". -- Display the list. -- Ask the user for another fruit and add it to the end of the list. -- Display the list. -- Ask the user for a number and display the number back to the user and the - fruit corresponding to that number (on a 1-is-first basis). -- Add another fruit to the beginning of the list using "+" and display the - list. -- Add another fruit to the beginning of the list using insert() and display the - list. -- Display all the fruits that begin with "P", using a for loop. +There's a nice built in function to do this - ``input``: +.. code-block:: ipython -.. nextslide:: Series 2 + In [85]: fred = input('type something-->') + type something-->I've typed something -Using the list created in series 1 above: + In [86]: print(fred) + I've typed something -- Display the list. -- Remove the last fruit from the list. -- Display the list. -- Ask the user for a fruit to delete and find it and delete it. -- (Bonus: Multiply the list times two. Keep asking until a match is found. Once - found, delete all occurrences.) +This will display a prompt to the user, allowing them to input text and +allowing you to bind that input to a symbol. -.. nextslide:: Series 3 +LAB +==== -Again, using the list from series 1: +List Lab +--------- -- Ask the user for input displaying a line like "Do you like apples?" -- for each fruit in the list (making the fruit all lowercase). -- For each "no", delete that fruit from the list. -- For any answer that is not "yes" or "no", prompt the user to answer with one - of those two values (a while loop is good here): -- Display the list. +Let's play a bit with Python lists... -.. nextslide:: Series 4 +:ref:`exercise_list_lab` -Once more, using the list from series 1: -- Make a copy of the list and reverse the letters in each fruit in the copy. -- Delete the last item of the original list. Display the original list and the - copy. Lightning Talks ----------------- +--------------- | -| Lesley D Reece -| +| Jerry Bearer | -| Michel Claessens +| Sheree Pena | - Iteration ========= @@ -1210,7 +1158,7 @@ We've seen simple iteration over a sequence with ``for ... in``: .. code-block:: ipython In [170]: for x in "a string": - .....: print x + .....: print(x) .....: a s @@ -1227,7 +1175,7 @@ Contrast this with other languages, where you must build and use an ``index``: .. code-block:: javascript - for(var i=0; i 50: .....: break .....: @@ -1305,11 +1269,11 @@ allow iteration to continue: .....: break .....: if i < 25: .....: continue - .....: print i, + .....: print(i, end=' ') .....: 25 26 27 28 29 ... 41 42 43 44 45 46 47 48 49 50 -.. nextslide:: Else +.. nextslide:: else For loops can also take an optional ``else`` block. @@ -1321,14 +1285,14 @@ Executed only when the loop exits normally (not via break): .....: if x == 11: .....: break .....: else: - .....: print 'finished' + .....: print('finished') finished In [148]: for x in range(10): .....: if x == 5: - .....: print x + .....: print(x) .....: break .....: else: - .....: print 'finished' + .....: print('finished') 5 This is a really nice unique Python feature! @@ -1360,7 +1324,7 @@ potential error -- infinite loops: i = 0; while i < 5: - print i + print(i) .. nextslide:: Terminating a while Loop @@ -1373,7 +1337,7 @@ Use ``break``: .....: i += 1 .....: if i > 10: .....: break - .....: print i + .....: print(i) .....: 1 2 3 4 5 6 7 8 9 10 @@ -1387,7 +1351,7 @@ Set a flag: In [157]: keep_going = True In [158]: while keep_going: .....: num = random.choice(range(5)) - .....: print num + .....: print(num) .....: if num == 3: .....: keep_going = False .....: @@ -1401,7 +1365,7 @@ Use a condition: In [161]: while i < 10: .....: i += random.choice(range(4)) - .....: print i + .....: print(i) .....: 0 0 2 3 4 6 8 8 8 9 12 @@ -1419,7 +1383,7 @@ loop terminates normally (no ``break``) String Features -================= +================ .. rst-class:: center large @@ -1450,6 +1414,13 @@ You can also use ``str()`` (demo) +String Methods +=============== + +String objects have a lot of methods. + +Here are just a few: + String Manipulations --------------------- @@ -1465,7 +1436,8 @@ String Manipulations Out[170]: 'comma|separated|values' -.. nextslide:: Case Switching +Case Switching +-------------- .. code-block:: ipython @@ -1480,7 +1452,8 @@ String Manipulations Out[175]: 'A Long String Of Words' -.. nextslide:: Testing +Testing +-------- .. code-block:: ipython @@ -1495,6 +1468,7 @@ String Manipulations In [186]: fancy.isalnum() Out[186]: False + String Literals ----------------- @@ -1509,20 +1483,20 @@ Common Escape Sequences:: \ooo Character with octal value ooo \xhh Character with hex value hh -for example -- for tab-separted values: +for example -- for tab-separated values: .. code-block:: ipython In [25]: s = "these\tare\tseparated\tby\ttabs" - In [26]: print s + In [26]: print(s) these are separated by tabs - -http://docs.python.org/release/2.5.2/ref/strings.html +https://docs.python.org/3/reference/lexical_analysis.html#string-and-bytes-literals +https://docs.python.org/3/library/stdtypes.html#string-methods Raw Strings -------------- +------------ Add an ``r`` in front of the string literal: @@ -1530,10 +1504,10 @@ Escape Sequences Ignored .. code-block:: ipython - In [408]: print "this\nthat" + In [408]: print("this\nthat") this that - In [409]: print r"this\nthat" + In [409]: print(r"this\nthat") this\nthat **Gotcha** @@ -1553,20 +1527,20 @@ Characters in strings are stored as numeric values: * "ASCII" values: 1-127 -* "ANSI" values: 1-255 +* Unicode values -- 1 - 1,114,111 (!!!) To get the value: .. code-block:: ipython In [109]: for i in 'Chris': - .....: print ord(i), + .....: print(ord(i), end=' ') 67 104 114 105 115 In [110]: for i in (67,104,114,105,115): - .....: print chr(i), - C h r i s + .....: print(chr(i), end='') + Chris -(these days, stick with ASCII, or use Unicode: more on that in a few weeks) +(these days, stick with ASCII, or use full Unicode: more on that in a few weeks) Building Strings @@ -1578,66 +1552,88 @@ You can, but please don't do this: 'Hello ' + name + '!' +(I know -- we did that in the grid_printing excercise) + Do this instead: .. code-block:: python - 'Hello %s!' % name + 'Hello {}!'.format(name) It's much faster and safer, and easier to modify as code gets complicated. -http://docs.python.org/library/stdtypes.html#string-formatting-operations +https://docs.python.org/3/library/string.html#string-formatting + +Old and New string formatting +----------------------------- + +back in early python days, there was the string formatting operator: ``%`` + +.. code-block:: python + + " a string: %s and a number: %i "%("text", 45) +This is very similar to C-style string formatting (`sprintf`). + +It's still around, and handy --- but ... + +The "new" ``format()`` method is more powerful and flexible, so we'll focus on that in this class. .. nextslide:: String Formatting -The string format operator: ``%`` +The string ``format()`` method: .. code-block:: ipython - In [261]: "an integer is: %i" % 34 - Out[261]: 'an integer is: 34' - In [262]: "a floating point is: %f" % 34.5 - Out[262]: 'a floating point is: 34.500000' - In [263]: "a string is: %s" % "anything" - Out[263]: 'a string is: anything' + In [62]: "A decimal integer is: {:d}".format(34) + Out[62]: 'A decimal integer is: 34' + + In [63]: "a floating point is: {:f}".format(34.5) + Out[63]: 'a floating point is: 34.500000' + + In [64]: "a string is the default: {}".format("anything") + Out[64]: 'a string is the default: anything' -.. nextslide:: More Placeholders Multiple placeholders: +----------------------- .. code-block:: ipython - In [264]: "the number %s is %i" % ('five', 5) - Out[264]: 'the number five is 5' - In [266]: "the first 3 numbers are: %i, %i, %i" % (1,2,3) - Out[266]: 'the first 3 numbers are: 1, 2, 3' + In [65]: "the number is {} is {}".format('five', 5) + Out[65]: 'the number is five is 5' + + In [66]: "the first 3 numbers are {}, {}, {}".format(1,2,3) + Out[66]: 'the first 3 numbers are 1, 2, 3' The counts must agree: .. code-block:: ipython - In [187]: "string with %i formatting %s" % (1, ) + In [67]: "string with {} formatting {}".format(1) --------------------------------------------------------------------------- - ... - TypeError: not enough arguments for format string + IndexError Traceback (most recent call last) + in () + ----> 1 "string with {} formatting {}".format(1) + IndexError: tuple index out of range -.. nextslide:: Named placeholders: +------------------- .. code-block:: ipython - In [191]: "Hello, %(name)s, whaddaya know?" % {'name': "Joe"} - Out[191]: 'Hello, Joe, whaddaya know?' + + In [69]: "Hello, {name}, whaddaya know?".format(name="Joe") + Out[69]: 'Hello, Joe, whaddaya know?' You can use values more than once, and skip values: .. code-block:: ipython - In [193]: "Hi, %(name)s. Howzit, %(name)s?" % {'name': "Bob", 'age': 27} - Out[193]: 'Hi, Bob. Howzit, Bob?' + In [73]: "Hi, {name}. Howzit, {name}?".format(name='Bob') + Out[73]: 'Hi, Bob. Howzit, Bob?' .. nextslide:: @@ -1645,83 +1641,32 @@ The format operator works with string variables, too: .. code-block:: ipython - In [45]: s = "%i / %i = %i" + In [80]: s = "{:d} / {:d} = {:f}" - In [46]: a, b = 12, 3 + In [81]: a, b = 12, 3 - In [47]: s%(a, b, a/b) - Out[47]: '12 / 3 = 4' + In [82]: s.format(a, b, a/b) + Out[82]: '12 / 3 = 4.000000' So you can dynamically build a format string +Complex Formatting +------------------ -.. nextslide:: New Formatting - -In more recent versions of Python (2.6+) this is `being phased out`_ in favor of the ``.format()`` method on strings. - -.. code-block:: ipython - - In [194]: "Hello, {}, how's your {}".format("Bob", "wife") - Out[194]: "Hello, Bob, how's your wife" - In [195]: "Hi, {name}. How's your {relation}?".format(name='Bob', relation='wife') - Out[195]: "Hi, Bob. How's your wife?" - - -.. nextslide:: Complex Formatting - -For both of these forms of string formatting, there is a complete syntax for -specifying all sorts of options. +There is a complete syntax for specifying all sorts of options. It's well worth your while to spend some time getting to know this `formatting language`_. You can accomplish a great deal just with this. -.. _formatting language: https://docs.python.org/2/library/string.html#format-specification-mini-language - -.. _being phased out: https://docs.python.org/2/library/stdtypes.html#str.format - +.. _formatting language: https://docs.python.org/3/library/string.html#format-specification-mini-language - -One Last Trick ---------------- - -.. rst-class:: left - -For some of your homework, you'll need to interact with a user at the -command line. - -There's a nice builtin function to do this - ``raw_input``: - -.. code-block:: ipython - - In [196]: fred = raw_input('type something-->') - type something-->;alksdjf - In [197]: fred - Out[197]: ';alksdjf' - -This will display a prompt to the user, allowing them to input text and -allowing you to bind that input to a symbol. - -(There is also ``input()`` -- please dont use it!) - String Formatting LAB ===================== -.. rst-class:: left - - * Rewrite: ``the first 3 numbers are: %i, %i, %i"%(1,2,3)`` +Let's play with these a bit: - for an arbitrary number of numbers... - - * Write a format string that will take: - - ``( 2, 123.4567, 10000)`` - - and produce: - - ``'file_002 : 123.46, 1e+04'`` - - * Then do these with the format() method... +:ref:`exercise_string_formatting` Homework ======== @@ -1731,7 +1676,7 @@ Task 1 Finish the List Lab from class -(and the string formatting lab) +Finish the string formatting lab Task 2 ------ @@ -1740,39 +1685,7 @@ Task 2 ROT13 -The ROT13 encryption scheme is a simple substitution cypher where each letter -in a text is replace by the letter 13 away from it (imagine the alphabet as a -circle, so it wraps around). - -Add a python module named ``rot13.py`` to the session03 dir in your student dir. -This module should provide at least one function called ``rot13`` that takes -any amount of text and returns that same text encrypted by ROT13. - -This function should preserve whitespace, punctuation and capitalization. - -Your module should include an ``if __name__ == '__main__':`` block with tests -that demonstrate that your ``rot13`` function and any helper functions you add -work properly. - - -.. nextslide:: A bit more - -There is a "short-cut" available that will help you accomplish this task. Some -spelunking in `the documentation for strings`_ should help you to find it. If -you do find it, using it is completely fair game. - -As usual, add your new file to your local clone right away. Make commits -early and often and include commit messages that are descriptive and concise. - -When you are done, if you want me to review it, push your changes to github -and issue a pull request. - -try decrypting this: - -"Zntargvp sebz bhgfvqr arne pbeare" - -.. _the documentation for strings: https://docs.python.org/2/library/stdtypes.html#string-methods - +:ref:`exercise_rot13` Task 3 ------ @@ -1781,92 +1694,34 @@ Task 3 Mail Room -You work in the mail room at a local charity. Part of your job is to write -incredibly boring, repetitive emails thanking your donors for their generous -gifts. You are tired of doing this over an over again, so yo've decided to -let Python help you out of a jam. - -Write a small command-line script called ``mailroom.py``. As with Task 1, -This script should be executable. The script should accomplish the -following goals: - -* It should have a data structure that holds a list of your donors and a - history of the amounts they have donated. This structure should be populated - at first with at least five donors, with between 1 and 3 donations each -* The script should prompt the user (you) to choose from a menu of 2 actions: - 'Send a Thank You' or 'Create a Report'. +:ref:`exercise_mailroom` -.. nextslide:: Sending a Thank You - -* If the user (you) selects 'Send a Thank You', prompt for a Full Name. - - * If the user types 'list', show them a list of the donor names and re-prompt - * If the user types a name not in the list, add that name to the data - structure and use it. - * If the user types a name in the list, use it. - * Once a name has been selected, prompt for a donation amount. - * Verify that the amount is in fact a number, and re-prompt if it isn't. - * Once an amount has been given, add that amount to the donation history of - the selected user. - * Finally, use string formatting to compose an email thanking the donor for - their generous donation. Print the email to the terminal and return to the - original prompt. - -**It is fine to forget new donors once the script quits running.** - -.. nextslide:: Creating a Report - -* If the user (you) selected 'Create a Report' Print a list of your donors, - sorted by total historical donation amount. - - - Include Donor Name, total donated, number of donations and average donation - amount as values in each row. - - Using string formatting, format the output rows as nicely as possible. The - end result should be tabular (values in each column should align with those - above and below) - - After printing this report, return to the original prompt. - -* At any point, the user should be able to quit their current task and return - to the original prompt. - -* From the original prompt, the user should be able to quit the script cleanly - -.. nextslide:: Guidelines +Reading +------- -First, factor your script into separate functions. Each of the above -tasks can be accomplished by a series of steps. Write discreet functions -that accomplish individual steps and call them. +Think Python: Chapters 11, 13, 14 -Second, use loops to control the logical flow of your program. Interactive -programs are a classic use-case for the ``while`` loop. +Learn Python the Hard way: 15-17, 39 -Put the functions you write into the script at the top. +Dive Into Python3: Sections 2.6, 2.7, 11 -Put your main interaction into an ``if __name__ == '__main__'`` block. +Next Week: +=========== -Finally, use only functions and the basic Python data types you've learned -about so far. There is no need to go any farther than that for this assignment. +.. rst-class:: mlarge -.. nextslide:: Submission + **Lightning talks next week:** -As always, put the new file in your student directory in a ``session03`` -directory, and add it to your clone early. Make frequent commits with -good, clear messages about what you are doing and why. +Abdishu Hagi -When you are done, push your changes and make a pull request. +Enrique R Silva -Next Week: -=========== +Isaac Cowhey -.. rst-class:: mlarge +Paul G Anderson - **Lightning talks next week:** -Benjamin C Mier -Robert W Perkins -Vinay Gupta -Wayne R Fukuhara diff --git a/slides_sources/source/session04.rst b/slides_sources/source/session04.rst index a6e9e1f1..77ee3d1d 100644 --- a/slides_sources/source/session04.rst +++ b/slides_sources/source/session04.rst @@ -1,11 +1,8 @@ -.. Foundations 2: Python slides file, created by - Chris Barker: May 12, 2014. - -******************************************************* -Session Four: Dictionaries, Sets, Exceptions, and Files -******************************************************* - +.. include:: include.rst +******************************************* +Session Four: Dictionaries, Sets, and Files +******************************************* ================ Review/Questions @@ -35,15 +32,15 @@ Any questions? Lightning Talks Today: ---------------------- -.. rst-class:: mlarge +.. rst-class:: medium - Benjamin C Mier + Abdishu Hagi - Robert W Perkins + Enrique R Silva - Lesley D Reece + Isaac Cowhey - Wayne R Fukuhara + Paul G Anderson ============================== @@ -72,7 +69,7 @@ You can do that in a for loop, also: In [4]: l = [(1, 2), (3, 4), (5, 6)] In [5]: for i, j in l: - print "i:%i, j:%i"%(i, j) + print("i:{}, j:{}".format(i, j)) i:1, j:2 i:3, j:4 @@ -81,8 +78,8 @@ You can do that in a for loop, also: (Mailroom example) -Looping through two loops at once: ----------------------------------- +Looping through two iterables at once: +-------------------------------------- .. rst-class:: mlarge @@ -95,8 +92,8 @@ Looping through two loops at once: In [11]: l2 = [3, 4, 5] In [12]: for i, j in zip(l1, l2): - ....: print "i:%i, j:%i"%(i, j) - ....: + print("i:{}, j:{}".format(i, j)) + i:1, j:3 i:2, j:4 i:3, j:5 @@ -120,7 +117,7 @@ Need the index and the item? In [2]: l = ['this', 'that', 'the other'] In [3]: for i, item in enumerate(l): - ...: print "the %ith item is: %s"%(i, item) + ...: print("the {:d}th item is: {:s}".format(i, item)) ...: the 0th item is: this the 1th item is: that @@ -166,7 +163,34 @@ You can put a mutable item in an immutable object! | Deleting from list (list_lab) | -.. nextslide:: +__main__ +-------- + +What is this:: + + if __name__ == __main__ + +about? + +Every module has a __name__ + +If the module is loaded by ``import`` then it's name is the filename. + +If the module is run at the command line, like: + +.. code-block:: bash + + python3 the_module.py + +Then it's ``__name__`` will be "__main__" + +This can be used to run code only when a module is run as a command, +but not when it is imported. + +(demo) + +assert +------ What is ``assert`` for? @@ -179,10 +203,33 @@ in operational code should be:: if m < 0: raise ValueError -I'll cover Exceptions later this class... +I'll cover more next week ... (Asserts get ignored if optimization is turned on!) +what the heck is reversed()? +---------------------------- + +I had a question in a PR: + +"what is ``reversed(x)``'s resultant object? what good is it?"" + +.. nextslide:: + +try it: + +.. code-block:: ipython + + In [14]: type(reversed(l)) + Out[14]: list_reverseiterator + +so it's a ``list_reverseiterator`` object -- not helpful, is it :-) + +But what it means is that it's an "iterable" that you can then do things like loop through with a for loop, etc. but it hasn't made a copy of the list -- it returns the items one by one as they are asked for. this has performance benefits, as it doesn't have to make a copy of the whole thing. + +So you use it if you want to loop through something in reversed order, but dont actually need an actual list with the order reversed. + +we'll get more into the details of iterators and iterables later in the class. ================= A little warm up @@ -195,6 +242,15 @@ Fun with strings - for an arbitrary number of numbers... +=============== +Lightning Talks +=============== + +| +| Isaac Cowhey +| +| Paul G Anderson +| ===================== Dictionaries and Sets @@ -236,7 +292,7 @@ Dictionary Constructors Dictionary Indexing ------------------- :: - + >>> d = {'name': 'Brian', 'score': 42} >>> d['score'] @@ -325,7 +381,7 @@ Dictionaries have no defined order In [353]: d Out[353]: {'one': 1, 'three': 3, 'two': 2} In [354]: d.keys() - Out[354]: ['three', 'two', 'one'] + Out[354]: dict_keys(['three', 'two', 'one']) Dictionary Iterating -------------------- @@ -336,9 +392,9 @@ Dictionary Iterating In [15]: d = {'name': 'Brian', 'score': 42} - In [16]: for x in d: - print x - ....: + In [16]: for x in d: + print(x) + ....: score name @@ -353,13 +409,13 @@ dict keys and values In [20]: d = {'name': 'Brian', 'score': 42} In [21]: d.keys() - Out[21]: ['score', 'name'] + Out[21]: dict_keys(['score', 'name']) In [22]: d.values() - Out[22]: [42, 'Brian'] + Out[22]: dict_values([42, 'Brian']) In [23]: d.items() - Out[23]: [('score', 42), ('name', 'Brian')] + Out[23]: dict_items([('score', 42), ('name', 'Brian')]) dict keys and values @@ -372,13 +428,13 @@ Iterating on everything In [26]: d = {'name': 'Brian', 'score': 42} In [27]: for k, v in d.items(): - print "%s: %s" % (k,v) - ....: + print("%s: %s" % (k,v)) + ....: score: 42 name: Brian -Dictionary Performance +Dictionary Performance ----------------------- * indexing is fast and constant time: O(1) @@ -400,7 +456,7 @@ Other dict operations: See them all here: -https://docs.python.org/2/library/stdtypes.html#mapping-types-dict +https://docs.python.org/3/library/stdtypes.html#mapping-types-dict Is it in there? @@ -441,23 +497,34 @@ iterating .. code-block:: ipython - In [13]: for item in d.iteritems(): - ....: print item + In [13]: for item in d: + ....: print(item) ....: - ('this', 5) - ('that', 7) - In [15]: for key in d.iterkeys(): - print key + this + that + +which is equivalent to, but faster than: + +.. code-block:: ipython + + In [15]: for key in d.keys(): + print(key) ....: this that - In [16]: for val in d.itervalues(): - print val + +.. nextslide:: + +but to get values, must specify you want values: + +.. code-block:: ipython + + In [16]: for val in d.values(): + print(val) ....: 5 7 -the ``iter*`` methods don't actually create the lists. .. nextslide:: @@ -499,30 +566,42 @@ gets the value if it's there, sets it if it's not In [28]: d Out[28]: {'something': 'a value'} - In [29]: d.setdefault('something', 'a value') - Out[29]: 'a value' - - In [30]: d - Out[30]: {'something': 'a value'} .. nextslide:: -dict View objects: - -Like ``keys()``, ``values()``, ``items()``, but maintain a link to the original dict +Assignment maintains link to the original dict .. code-block:: ipython In [47]: d Out[47]: {'something': 'a value'} - In [48]: item_view = d.viewitems() + In [48]: item_view = d In [49]: d['something else'] = 'another value' In [50]: item_view - Out[50]: dict_items([('something else', 'another value'), ('something', 'a value')]) + Out[50]: {'something': 'a value', 'something else': 'another value'} + + +.. nextslide:: +Use explicit copy method to get a copy + +.. code-block:: ipython + + In [51] item_copy = d.copy() + + In [52]: d['another thing'] = 'different value' + + In [53]: d + Out[53]: + {'another thing': 'different value', + 'something': 'a value', + 'something else': 'another value'} + + In [54]: item_copy + Out[54]: {'something': 'a value', 'something else': 'another value'} Sets @@ -537,19 +616,19 @@ Set Constructors .. code-block:: ipython >>> set() - set([]) + set() >>> set([1, 2, 3]) - set([1, 2, 3]) + {1, 2, 3} >>> {1, 2, 3} - set([1, 2, 3]) + {1, 2, 3} >>> s = set() >>> s.update([1, 2, 3]) >>> s - set([1, 2, 3]) + {1, 2, 3} Set Properties @@ -622,309 +701,24 @@ immutable -- for use as a key in a dict File "", line 1, in AttributeError: 'frozenset' object has no attribute 'add' -LAB -==== - -Dict / Set Lab -Dictionaries and Sets lab --------------------------- - -1. - -* Create a dictionary containing "name", "city", and "cake" for "Chris" from "Seattle" who likes "Chocolate". - -* Display the dictionary. - -* Delete the entry for "cake". - -* Display the dictionary. - -* Add an entry for "fruit" with "Mango" and display the dictionary. - - - Display the dictionary keys. - - Display the dictionary values. - - Display whether or not "cake" is a key in the dictionary (i.e. False) (now). - - Display whether or not "Mango" is a value in the dictionary (i.e. True). - -.. nextslide:: - -2. - -* Using the dict constructor and zip, build a dictionary of numbers from zero - to fifteen and the hexadecimal equivalent (string is fine). - -3. - -* Using the dictionary from item 1: Make a dictionary using the same keys but - with the number of 't's in each value. - -.. nextslide:: sets - -4. - -* Create sets s2, s3 and s4 that contain numbers from zero through twenty, - divisible 2, 3 and 4. - -* Display the sets. - -* Display if s3 is a subset of s2 (False) - -* and if s4 is a subset of s2 (True). - -5. +LAB: Dictionaries and Sets lab +============================== -* Create a set with the letters in 'Python' and add 'i' to the set. +Have some fun with dictionaries and sets! -* Create a frozenset with the letters in 'marathon' +:ref:`exercise_dict_lab` -* display the union and intersection of the two sets. Lightning Talks ----------------- - -| -| Benjamin C Mier -| -| -| Robert W Perkins -| - -========== -Exceptions -========== - -Exceptions ----------- - -Another Branching structure: - -.. code-block:: python - - try: - do_something() - f = open('missing.txt') - process(f) # never called if file missing - except IOError: - print "couldn't open missing.txt" - -Exceptions ----------- -Never Do this: - -.. code-block:: python - - try: - do_something() - f = open('missing.txt') - process(f) # never called if file missing - except: - print "couldn't open missing.txt" - - -Exceptions ----------- - -Use Exceptions, rather than your own tests: - -Don't do this: - -.. code-block:: python - - do_something() - if os.path.exists('missing.txt'): - f = open('missing.txt') - process(f) # never called if file missing - -It will almost always work -- but the almost will drive you crazy - -.. nextslide:: - -Example from homework - -.. code-block:: python - - if num_in.isdigit(): - num_in = int(num_in) - -but -- ``int(num_in)`` will only work if the string can be converted to an integer. - -So you can do - -.. code-block:: python - - try: - num_in = int(num_in) - except ValueError: - print "Input must be an integer, try again." - -Or let the Exception be raised.... - - -.. nextslide:: EAFP - - -"it's Easier to Ask Forgiveness than Permission" - - -- Grace Hopper - - -http://www.youtube.com/watch?v=AZDWveIdqjY - -(Pycon talk by Alex Martelli) - -.. nextslide:: Do you catch all Exceptions? - -For simple scripts, let exceptions happen. - -Only handle the exception if the code can and will do something about it. - -(much better debugging info when an error does occur) - - -Exceptions -- finally ---------------------- - -.. code-block:: python - - try: - do_something() - f = open('missing.txt') - process(f) # never called if file missing - except IOError: - print "couldn't open missing.txt" - finally: - do_some_clean-up - -The ``finally:`` clause will always run - - -Exceptions -- else -------------------- - -.. code-block:: python - - try: - do_something() - f = open('missing.txt') - except IOError: - print "couldn't open missing.txt" - else: - process(f) # only called if there was no exception - -Advantage: - -you know where the Exception came from - -Exceptions -- using them ------------------------- - -.. code-block:: python - - try: - do_something() - f = open('missing.txt') - except IOError as the_error: - print the_error - the_error.extra_info = "some more information" - raise - - -Particularly useful if you catch more than one exception: - -.. code-block:: python - - except (IOError, BufferError, OSError) as the_error: - do_something_with (the_error) - - -Raising Exceptions -------------------- - -.. code-block:: python - - def divide(a,b): - if b == 0: - raise ZeroDivisionError("b can not be zero") - else: - return a / b - - -when you call it: - -.. code-block:: ipython - - In [515]: divide (12,0) - ZeroDivisionError: b can not be zero - - -Built in Exceptions -------------------- - -You can create your own custom exceptions - -But... - -.. code-block:: python - - exp = \ - [name for name in dir(__builtin__) if "Error" in name] - len(exp) - 32 - - -For the most part, you can/should use a built in one - -.. nextslide:: - -Choose the best match you can for the built in Exception you raise. - -Example (for last week's ackerman homework):: - - if (not isinstance(m, int)) or (not isinstance(n, int)): - raise ValueError - -Is it the *value* or the input the problem here? - -Nope: the *type* is the problem:: - - if (not isinstance(m, int)) or (not isinstance(n, int)): - raise TypeError - -but should you be checking type anyway? (EAFP) - -=== -LAB -=== - -Exceptions Lab - - -Exceptions Lab --------------- -Improving ``raw_input`` - -* The ``raw_input()`` function can generate two exceptions: ``EOFError`` - or ``KeyboardInterrupt`` on end-of-file(EOF) or canceled input. - -* Create a wrapper function, perhaps ``safe_input()`` that returns ``None`` - rather rather than raising these exceptions, when the user enters ``^C`` for Keyboard Interrupt, or ``^D`` (``^Z`` on Windows) for End Of File. - -* Update your mailroom program to use exceptions (and IBAFP) to handle - malformed numeric input - -Lightning Talks ----------------- - -| -| Lesley D Reece | +| Abdishu Hagi | -| Wayne R Fukuhara +| Enrique R Silva | - ======================== File Reading and Writing ======================== @@ -973,8 +767,7 @@ File Opening Modes 'rb', 'wb', 'ab' r+, w+, a+ r+b, w+b, a+b - U - U+ + These follow the Unix conventions, and aren't all that well documented in the Python docs. But these BSD docs make it pretty clear: @@ -990,7 +783,6 @@ Text is default * Newlines are translated: ``\r\n -> \n`` * -- reading and writing! * Use \*nix-style in your code: ``\n`` - * In text mode, you can use 'U' for "Universal" newline mode. Gotcha: @@ -1020,7 +812,7 @@ Common Idioms .. code-block:: python for line in open('secrets.txt'): - print line + print(line) (the file object is an iterator!) @@ -1033,6 +825,18 @@ Common Idioms break do_something_with_line() +.. nextslide:: + +We will learn more about the keyword with later, but for now, just understand +the syntax and the advantage over the try-finally block: + +.. code-block:: python + + with open('workfile', 'r') as f: + read_data = f.read() + f.closed + True + File Writing ------------ @@ -1042,6 +846,11 @@ File Writing outfile = open('output.txt', 'w') for i in range(10): outfile.write("this is line: %i\n"%i) + outfile.close() + + with open('output.txt', 'w'): + for i in range(10): + f.write("this is line: %i\n"%i) File Methods @@ -1057,37 +866,21 @@ Commonly Used Methods f.seek(offset) f.tell() # for binary files, mostly - f.flush() - f.close() - -File Like Objects ------------------ - - -Many classes implement the file interface: - - * loggers - * ``sys.stdout`` - * ``urllib.open()`` - * pipes, subprocesses - * StringIO - * variois objects in the ``io`` module - -https://docs.python.org/2/library/stdtypes.html#file-objects - StringIO -------- .. code-block:: python - In [417]: import StringIO - In [420]: f = StringIO.StringIO() + In [417]: import io + In [420]: f = io.StringIO() In [421]: f.write("somestuff") In [422]: f.seek(0) In [423]: f.read() Out[423]: 'somestuff' + Out[424]: stuff = f.getvalue() + Out[425]: f.close() (handy for testing file handling code...) @@ -1129,10 +922,10 @@ os module .. code-block:: python - os.getcwd() -- os.getcwdu() (u for Unicode) - chdir(path) + os.getcwd() + os.chdir(path) os.path.abspath() - os.path.relpath() + os.path.relpath() .. nextslide:: os.path module @@ -1161,16 +954,10 @@ os module pathlib ------- -``pathlib`` is a new package for handling paths in an OO way: +``pathlib`` is a package for handling paths in an OO way: http://pathlib.readthedocs.org/en/pep428/ -It is now part of the Python3 standard library, and has been back-ported for use with Python2: - -.. code-block:: bash - - $ pip install pathlib - All the stuff in os.path and more: .. code-block:: ipython @@ -1180,9 +967,9 @@ All the stuff in os.path and more: In [66]: pth.is_dir() Out[66]: True In [67]: pth.absolute() - Out[67]: PosixPath('/Users/Chris/PythonStuff/CodeFellowsClass/sea-f2-python-sept14/Examples/Session04') + Out[67]: PosixPath('/Users/Chris/PythonStuff/UWPCE/IntroPython2015') In [68]: for f in pth.iterdir(): - print f + print(f) junk2.txt junkfile.txt ... @@ -1193,25 +980,8 @@ LAB Files Lab: If there is time. -Files Lab ---------- - -In the class repo, in: - -``Examples\Session01\students.txt`` - -You will find the list I generated of all the students in the class, and -what programming languages they have used in the past. - -Write a little script that reads that file, and generates a list of all -the languages that have been used. - -Extra credit: keep track of how many students specified each language. +:ref:`exercise_file_lab` -If you've got git set up right, ``git pull upstream master`` should update -your repo. Otherwise, you can get it from gitHub: - -``https://github.com/UWPCE-PythonCert/IntroToPython/blob/master/Examples/Session01/students.txt`` ========= @@ -1220,63 +990,21 @@ Homework Recommended Reading: --------------------- - * Dive Into Python: Chapt. 13,14 - * Unicode: http://www.joelonsoftware.com/articles/Unicode.html - -Assignments: -------------- - - * Finish the dict/sets lab - * Finish the Exceptions lab - * Coding kata: trigrams - * Paths and files - * Update mailroom with dicts and exceptions - - -Text and files and dicts, and... ---------------------------------- - -* Coding Kata 14 - Dave Thomas - http://codekata.com/kata/kata14-tom-swift-under-the-milkwood/ + * Dive Into Python 3: Chapt. 2.7 (and 4 if you haven't already) - and in this doc: +http://www.diveintopython3.net/native-datatypes.html#dictionaries - :doc:`./homework/kata_fourteen` + * Dive Into Python 3: Chapt. 11 - and on github here +http://www.diveintopython3.net/files.html - http://uwpce-pythoncert.github.io/IntroToPython/homework/kata_fourteen.html -.. nextslide:: - -* Use The Adventures of Sherlock Holmes as input: - - :download:`./homework/sherlock.txt` - - and on github here: - - http://uwpce-pythoncert.github.io/IntroToPython/_downloads/sherlock.txt - -* This is intentionally open-ended and underspecified. There are many interesting decisions to make. - -* Experiment with different lengths for the lookup key. (3 words, 4 words, 3 letters, etc) - - -Paths and File Processing --------------------------- - -* write a program which prints the full path to all files in the current - directory, one per line - -* write a program which copies a file from a source, to a destination - (without using shutil, or the OS copy command) - -* update mailroom from last weeks homework to: +Assignments: +------------- - - use dicts where appropriate - - write a full set of letters to everyone to individual files on disk - - see if you can use a dict to switch between the users selections - - Try to use a dict and the .format() method to do the letter as one - big template -- rather than building up a big string in parts. + * Finish the dict/sets lab: :ref:`exercise_dict_lab` + * Finish the files lab: :ref:`exercise_file_lab` + * Coding kata: trigrams: :ref:`exercise_trigrams` + * update mailroom with dicts :ref:`exercise_mailroom_plus` diff --git a/slides_sources/source/session05.rst b/slides_sources/source/session05.rst index b71293db..04b21d7a 100644 --- a/slides_sources/source/session05.rst +++ b/slides_sources/source/session05.rst @@ -1,11 +1,8 @@ +.. include:: include.rst -.. Foundations 2: Python slides file, created by - hieroglyph-quickstart on Wed Apr 2 18:42:06 2014. - - -********************************************************************* -Session Five: Advanced Argument passing, List and Dict Comprehensions -********************************************************************* +**************************************** +Session Five: Exceptions, Comprehensions +**************************************** ====================== Lightning Talks Today: @@ -13,14 +10,13 @@ Lightning Talks Today: .. rst-class:: medium - Darcy Balcarce - - Eric Buer + Alexander C Truong - Henry B Fischer + Darryl Wong - Kyle R Hart + Madhumita Acharya + Matthew T Weidner ================ Review/Questions @@ -30,8 +26,8 @@ Review of Previous Class ------------------------ * Dictionaries - * Exceptions - * Files, etc. + * Sets + * File processing, etc. .. nextslide:: @@ -57,403 +53,502 @@ Review of Previous Class * But it's all good stuff. - * I want time to go over it in class. + * I'll take time to go over it in class. - * So I'm ditching Unicode -- we'll hit it in the last class + * And this week is a light load, so you can catch up. Homework review --------------- -Homework Questions? - -My Solutions to ALL the homework in the class repo in: +My Solutions to all the exercises in the class repo in: ``Solutions/Session04`` -A few tidbits .... +A few tidbits, then I'll take specific questions. + + +The count() method +------------------ + +All Python sequences (including strings) have a ``count()`` method: + +.. code-block:: ipython + + In [1]: s = "This is an arbitrary string" + + In [2]: s.count('t') + Out[2]: 2 + +What if you want a case-insensitive count? + +.. code-block:: ipython + + In [3]: s.lower().count('t') + Out[3]: 3 + +set.update() +------------ + +If you want to add a bunch of stuff to a set, you can use update: + +.. code-block:: ipython + + In [1]: s = set() + +In [2]: s.update +Out[2]: + +In [3]: s.update(['this', 'that']) -.. nextslide:: Sorting stuff in dictionaries: +In [4]: s +Out[4]: {'that', 'this'} + +In [5]: s.update(['this', 'thatthing']) + +In [6]: s +Out[6]: {'that', 'thatthing', 'this'} + +**NOTE:** It's VERY often the case that when you find yourself writing a trivial loop -- there is a way to do it with a built in method! + + + +Sorting stuff in dictionaries: +------------------------------- dicts aren't sorted, so what if you want to do something in a sorted way? -The "old" way: +The "standard" way: .. code-block:: python - keys = d.keys() - keys.sort() - for key in keys: + for key in sorted(d.keys()): ... -Other options: +Another option: .. code-block:: python collections.OrderedDict - sorted() +Also other nifty stuff in the ``collections`` module: -(demo) +https://docs.python.org/3.5/library/collections.html -Code Review ------------- +Using files and "with" +----------------------- -.. rst-class:: center medium +Sorry for the confusion, but I'll be more clear now. -Anyone stuck or confused that's willing to volunteer for a live code review? +When working with files, unless you have a good reason not to, use ``with``: -My Solutions -------------- +.. code-block:: python -Anyone look at my solutions? + with open(the_filename, 'w') as outfile: + outfile.write(something) + do_some_more... + # now done with out file -- it will be closed, regardless of errors, etc. + do_other_stuff -(yeah, not much time for that...) +``with`` invokes a context manager -- which can be confusing, but for now, +just follow this pattern -- it really is more robust. -Anything in particular you'd like me to go over? +And you can even do two at once: -========================= -Advanced Argument Passing -========================= +.. code-block:: python -Keyword arguments ------------------ + with open(source, 'rb') as infile, open(dest, 'wb') as outfile: + outfile.write(infile.read()) + + +Binary files +------------ -When defining a function, you can specify only what you need -- in any order +Python can open files in one of two modes: + + * Text + * Binary + +This is just what you'd think -- if the file contains text, you want text mode. If the file contains arbitrary binary data, you want binary mode. + +All data in all files is binary -- that's how computers work. So in Python3, "text" actually means Unicode -- which is a particular system for matching characters to binary data. + +But this too is complicated -- there are multiple ways that binary data can be mapped to Unicode text, known as "encodings". In Python, text files are by default opened with the "utf-8" encoding. These days, that mostly "just works". + +.. nextslide:: + +But if you read a binary file as text, then Python will try to interpret the bytes as utf-8 encoded text -- and this will likely fail: .. code-block:: ipython - In [151]: def fun(x,y=0,z=0): - print x,y,z - .....: - In [152]: fun(1,2,3) - 1 2 3 - In [153]: fun(1, z=3) - 1 0 3 - In [154]: fun(1, z=3, y=2) - 1 2 3 + In [13]: open("a_photo.jpg").read() + --------------------------------------------------------------------------- + UnicodeDecodeError Traceback (most recent call last) + in () + ----> 1 open("PassportPhoto.JPG").read() + + /Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/codecs.py in decode(self, input, final) + 319 # decode input (taking the buffer into account) + 320 data = self.buffer + input + --> 321 (result, consumed) = self._buffer_decode(data, self.errors, final) + 322 # keep undecoded input until the next call + 323 self.buffer = data[consumed:] + UnicodeDecodeError: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte .. nextslide:: +In Python2, it's less likely that you'll get an error like this -- it doesn't try to decode the file as it's read -- even for text files -- so it's a bit tricky and more error prone. -A Common Idiom: +**NOTE:** If you want to actually DO anything with a binary file, other than passing it around, then you'll need to know a lot about how the details of what the bytes in the file mean -- and most likely, you'll use a library for that -- like an image processing library for the jpeg example above. -.. code-block:: python - def fun(x, y=None): - if y is None: - do_something_different - go_on_here +PEP 8 reminder +-------------- +PEP 8 (Python Enhancement Proposal 8): https://www.python.org/dev/peps/pep-0008/ +Is the "official" style guide for Python code. -.. nextslide:: +Strictly speaking, you only need to follow it for code in the standard library. -Can set defaults to variables +But style matters -- consistent style makes your code easier to read and understand. -.. code-block:: ipython +So **follow PEP 8** - In [156]: y = 4 - In [157]: def fun(x=y): - print "x is:", x - .....: - In [158]: fun() - x is: 4 +**Exception:** if you have a company style guide -- follow that instead. +Try the "pycodestyle" module on your code:: -.. nextslide:: + $ python3 -m pip install pycodestyle + $ pycodestyle my_python_file -Defaults are evaluated when the function is defined +(demo) -.. code-block:: ipython +Naming things... +---------------- - In [156]: y = 4 - In [157]: def fun(x=y): - print "x is:", x - .....: - In [158]: fun() - x is: 4 - In [159]: y = 6 - In [160]: fun() - x is: 4 +It matters what names you give your variables. +Python has rules about what it *allows* +PEP8 has rules for style: capitalization, and underscores and all that. -Function arguments in variables -------------------------------- +But you still get to decide within those rules. + +So use names that make sense to the reader. -function arguments are really just +Naming Guidelines +----------------- -* a tuple (positional arguments) -* a dict (keyword arguments) +Only use single-letter names for things with limited scope: indexes and the like: .. code-block:: python - def f(x, y, w=0, h=0): - print "position: %s, %s -- shape: %s, %s"%(x, y, w, h) + for i, item in enumerate(a_sequence): + do_something(i, item) - position = (3,4) - size = {'h': 10, 'w': 20} +**Don't** use a name like "item", when there is a meaning to what the item is: - >>> f( *position, **size) - position: 3, 4 -- shape: 20, 10 +.. code-block:: python + for name in all_the_names: + do_something_with(name) +Use plurals for collections of things: -Function parameters in variables --------------------------------- +.. code-block:: python -You can also pull the parameters out in the function as a tuple and a dict: + names = ['Fred', 'George', ...] -.. code-block:: ipython +.. nextslide:: + +**Do** re-use names when the use is essentially the same, and you don't need the old one: - def f(*args, **kwargs): - print "the positional arguments are:", args - print "the keyword arguments are:", kwargs +.. code-block:: python - In [389]: f(2, 3, this=5, that=7) - the positional arguments are: (2, 3) - the keyword arguments are: {'this': 5, 'that': 7} + line = line.strip() + line = line.replace(",", " ") + .... -This can be very powerful... +Here's a nice talk about naming: -Passing a dict to str.format() -------------------------------- +http://pyvideo.org/video/3792/name-things-once-0 -Now that you know that keyword args are really a dict, -you can do this nifty trick: -The ``format`` method takes keyword arguments: +Code Review +------------ -.. code-block:: ipython +.. rst-class:: center medium - In [24]: u"My name is {first} {last}".format(last=u"Barker", first=u"Chris") - Out[24]: u'My name is Chris Barker' +Anyone stuck or confused that's willing to volunteer for a live code review? -Build a dict of the keys and values: +My Solutions +------------- -.. code-block:: ipython +Anyone look at my solutions? - In [25]: d = {u"last":u"Barker", u"first":u"Chris"} +(yeah, not much time for that...) -And pass to ``format()``with ``**`` +Anything in particular you'd like me to go over? -.. code-block:: ipython - In [26]: u"My name is {first} {last}".format(**d) - Out[26]: u'My name is Chris Barker' +trigrams +-------- -===================================== -A bit more on mutability (and copies) -===================================== +Let's take a close look at trigrams! -mutable objects +Some of you have already done a nice solution to this. + +But some of you are not sure how to start. + +So let's start from the beginning... + +NOTE: think about set vs list. + +(demo) + +Lightning Talks ---------------- -We've talked about this: mutable objects can have their contents changed in place. +.. rst-class:: medium + +| +| Alexander C Truong +| +| +| Darryl Wong +| + +========== +Exceptions +========== -Immutable objects can not. +A really nifty python feature -- really handy! -This has implications when you have a container with mutable objects in it: +Exceptions +---------- -.. code-block:: ipython +Another Branching structure: - In [28]: list1 = [ [1,2,3], ['a','b'] ] +.. code-block:: python -one way to make a copy of a list: + try: + do_something() + f = open('missing.txt') + process(f) # never called if file missing + except IOError: + print("couldn't open missing.txt") -.. code-block:: ipython +Exceptions +---------- - In [29]: list2 = list1[:] +Never Do this: - In [30]: list2 is list1 - Out[30]: False +.. code-block:: python -they are different lists. + try: + do_something() + f = open('missing.txt') + process(f) # never called if file missing + except: + print "couldn't open missing.txt" -.. nextslide:: +**always** capture the *particular* Exception you know how to handle. -What if we set an element to a new value? -.. code-block:: ipython +Exceptions +---------- - In [31]: list1[0] = [5,6,7] +Use Exceptions, rather than your own tests: - In [32]: list1 - Out[32]: [[5, 6, 7], ['a', 'b']] +Don't do this: - In [33]: list2 - Out[33]: [[1, 2, 3], ['a', 'b']] +.. code-block:: python + + do_something() + if os.path.exists('missing.txt'): + f = open('missing.txt') + process(f) -So they are independent. +It will almost always work -- but the almost will drive you crazy .. nextslide:: -But what if we mutate an element? +Example from homework -.. code-block:: ipython +.. code-block:: python - In [34]: list1[1].append('c') + if num_in.isdigit(): + num_in = int(num_in) - In [35]: list1 - Out[35]: [[5, 6, 7], ['a', 'b', 'c']] +but -- ``int(num_in)`` will only work if the string can be converted to an integer. - In [36]: list2 - Out[36]: [[1, 2, 3], ['a', 'b', 'c']] +So you can do -uuh oh! mutating an element in one list mutated the one in the other list. +.. code-block:: python -.. nextslide:: + try: + num_in = int(num_in) + except ValueError: + print("Input must be an integer, try again.") -Why is that? +Or let the Exception be raised.... -.. code-block:: ipython - In [38]: list1[1] is list2[1] - Out[38]: True +EAFP +---- -The elements are the same object! -This is known as a "shallow" copy -- Python doesn't want to copy more than it needs to, so in this case, it makes a new list, but does not make copies of the contents. +"it's Easier to Ask Forgiveness than Permission" -Same for dicts (and any container type) + -- Grace Hopper -If the elements are immutable, it doesn't really make a differnce -- but be very careful with mutable elements. +http://www.youtube.com/watch?v=AZDWveIdqjY -The copy module ----------------- +(PyCon talk by Alex Martelli) -most objects have a way to make copies (``dict.copy()`` for instance). -but if not, you can use the ``copy`` module to make a copy: +.. nextslide:: Do you catch all Exceptions? -.. code-block:: ipython +For simple scripts, let exceptions happen. - In [39]: import copy +Only handle the exception if the code can and will do something about it. - In [40]: list3 = copy.copy(list2) +(much better debugging info when an error does occur) - In [41]: list3 - Out[41]: [[1, 2, 3], ['a', 'b', 'c']] -This is also a shallow copy. +Exceptions -- finally +--------------------- -.. nextslide:: +.. code-block:: python -But there is another option: + try: + do_something() + f = open('missing.txt') + process(f) # never called if file missing + except IOError: + print("couldn't open missing.txt") + finally: + do_some_clean-up -.. code-block:: ipython +The ``finally:`` clause will always run - In [3]: list1 - Out[3]: [[1, 2, 3], ['a', 'b', 'c']] - In [4]: list2 = copy.deepcopy(list1) +Exceptions -- else +------------------- - In [5]: list1[0].append(4) +.. code-block:: python - In [6]: list1 - Out[6]: [[1, 2, 3, 4], ['a', 'b', 'c']] + try: + do_something() + f = open('missing.txt') + except IOError: + print("couldn't open missing.txt") + else: + process(f) # only called if there was no exception - In [7]: list2 - Out[7]: [[1, 2, 3], ['a', 'b', 'c']] +Advantage: -``deepcopy`` recurses through the object, making copies of everything as it goes. +you know where the Exception came from -.. nextslide:: +Exceptions -- using them +------------------------ +.. code-block:: python -I happened on this thread on stack overflow: + try: + do_something() + f = open('missing.txt') + except IOError as the_error: + print(the_error) + the_error.extra_info = "some more information" + raise -http://stackoverflow.com/questions/3975376/understanding-dict-copy-shallow-or-deep +Particularly useful if you catch more than one exception: -The OP is pretty confused -- can you sort it out? +.. code-block:: python -Make sure you understand the difference between a reference, a shallow copy, and a deep copy. + except (IOError, BufferError, OSError) as the_error: + do_something_with (the_error) -Mutables as default arguments: ------------------------------- -Another "gotcha" is using mutables as default arguments: +Raising Exceptions +------------------- -.. code-block:: ipython +.. code-block:: python - In [11]: def fun(x, a=[]): - ....: a.append(x) - ....: print a - ....: + def divide(a,b): + if b == 0: + raise ZeroDivisionError("b can not be zero") + else: + return a / b -This makes sense: maybe you'd pass in a list, but the default is an empty list. -But: +when you call it: .. code-block:: ipython - In [12]: fun(3) - [3] + In [515]: divide (12,0) + ZeroDivisionError: b can not be zero - In [13]: fun(4) - [3, 4] -Huh?! +Built in Exceptions +------------------- -.. nextslide:: +You can create your own custom exceptions -Remember that that default argument is defined when the function is created: there will be only one list, and every time the function is called, that same list is used. +But... +.. code-block:: python -The solution: + exp = \ + [name for name in dir(__builtin__) if "Error" in name] + len(exp) + 32 -The standard practice for such a mutable default argument: -.. code-block:: ipython +For the most part, you can/should use a built in one - In [15]: def fun(x, a=None): - ....: if a is None: - ....: a = [] - ....: a.append(x) - ....: print a - In [16]: fun(3) - [3] - In [17]: fun(4) - [4] +.. nextslide:: -You get a new list every time the function is called +Choose the best match you can for the built in Exception you raise. +Example (from last week's exercises):: + if (not isinstance(m, int)) or (not isinstance(n, int)): + raise ValueError -LAB ----- +Is it the *value* or the input the problem here? -.. rst-class:: medium +Nope: the *type* is the problem:: - keyword arguments: + if (not isinstance(m, int)) or (not isinstance(n, int)): + raise TypeError -* Write a function that has four optional parameters (with defaults): +but should you be checking type anyway? (EAFP) - - fore_color - - back_color - - link_color - - visited_color +=== +LAB +=== + +Exceptions Lab: + + +:ref:`exercise_exceptions_lab` -* Have it print the colors (use strings for the colors) -* Call it with a couple different parameters set -* Have it pull the parameters out with ``*args, **kwargs`` Lightning Talks ----------------- +--------------- .. rst-class:: medium | -| Darcy Balcarce +| Madhumita Acharya | -| -| Eric Buer -| - +| Matthew T Weidner @@ -463,8 +558,8 @@ List and Dict Comprehensions List comprehensions ------------------- -A bit of functional programming +A bit of functional programming consider this common ``for`` loop structure: @@ -483,10 +578,9 @@ This can be expressed with a single line using a "list comprehension" .. nextslide:: - What about nested for loops? -.. code-block:: python +.. code-block:: python new_list = [] for var in a_list: @@ -516,19 +610,18 @@ But usually you at least have a conditional in the loop: You can add a conditional to the comprehension: -.. code-block:: python +.. code-block:: python new_list = [expr for var in a_list if something_is_true] - (demo) .. nextslide:: Examples: -.. code-block:: ipython +.. code-block:: ipython In [341]: [x**2 for x in range(3)] Out[341]: [0, 1, 4] @@ -543,7 +636,7 @@ Examples: .. nextslide:: -Remember this from last week? +Remember this from earlier today? .. code-block:: python @@ -556,7 +649,6 @@ Remember this from last week? .... - Set Comprehensions ------------------ @@ -586,7 +678,7 @@ Example: finding all the vowels in a string... In [20]: vowels = set('aeiou') - In [21]: { let for let in s if let in vowels } + In [21]: { l for l in s if l in vowels } Out[21]: {'a', 'e', 'i', 'o'} Side note: why did I do ``set('aeiou')`` rather than just `aeiou` ? @@ -629,258 +721,14 @@ Example LAB === -See homework for list comps... - -Lightning Talks ----------------- - -.. rst-class:: medium - -| -| Henry B Fischer -| -| -| Kyle R Hart -| - - -======= -Testing -======= +Here is a nice tutorial on list comprehensions: -.. rst-class:: build left -.. container:: +http://treyhunner.com/2015/12/python-list-comprehensions-now-in-color/ - You've already seen some a very basic testing strategy. +List comps exercises: - You've written some tests using that strategy. +:ref:`exercise_comprehensions` - These tests were pretty basic, and a bit awkward in places (testing error - conditions in particular). - - .. rst-class:: centered - - **It gets better** - -Test Runners ------------- - -So far our tests have been limited to code in an ``if __name__ == "__main__":`` -block. - -.. rst-class:: build - -* They are run only when the file is executed -* They are always run when the file is executed -* You can't do anything else when the file is executed without running tests. - -.. rst-class:: build -.. container:: - - This is not optimal. - - Python provides testing systems to help. - - -Standard Library: ``unittest`` -------------------------------- - - -The original testing system in Python. - -``import unittest`` - -More or less a port of Junit from Java - -A bit verbose: you have to write classes & methods - -(And we haven't covered that yet!) - - -Using ``unittest`` -------------------- - -You write subclasses of the ``unittest.TestCase`` class: - -.. code-block:: python - - # in test.py - import unittest - - class MyTests(unittest.TestCase): - def test_tautology(self): - self.assertEquals(1, 1) - -Then you run the tests by using the ``main`` function from the ``unittest`` -module: - -.. code-block:: python - - # in test.py - if __name__ == '__main__': - unittest.main() - -.. nextslide:: Testing Your Code - -This way, you can write your code in one file and test it from another: - -.. code-block:: python - - # in my_mod.py - def my_func(val1, val2): - return val1 * val2 - - # in test_my_mod.py - import unittest - from my_mod import my_func - - class MyFuncTestCase(unittest.TestCase): - def test_my_func(self): - test_vals = (2, 3) - expected = reduce(lambda x, y: x * y, test_vals) - actual = my_func(*test_vals) - self.assertEquals(expected, actual) - - if __name__ == '__main__': - unittest.main() - -.. nextslide:: Advantages of ``unittest`` - -.. rst-class:: build -.. container:: - - The ``unittest`` module is pretty full featured - - It comes with the standard Python distribution, no installation required. - - It provides a wide variety of assertions for testing all sorts of situations. - - It allows for a setup and tear down workflow both before and after all tests - and before and after each test. - - It's well known and well understood. - -.. nextslide:: Disadvantages: - -.. rst-class:: build -.. container:: - - - It's Object Oriented, and quite heavy. - - - modeled after Java's ``junit`` and it shows... - - It uses the framework design pattern, so knowing how to use the features - means learning what to override. - - Needing to override means you have to be cautious. - - Test discovery is both inflexible and brittle. - -.. nextslide:: Other Options - -There are several other options for running tests in Python. - - -* `Nose`_ -* `pytest`_ -* ... (many frameworks supply their own test runners) - -We are going to play today with pytest - -.. _Nose: https://nose.readthedocs.org/ -.. _pytest: http://pytest.org/latest/ - - -.. nextslide:: Installing ``pytest`` - -The first step is to install the package: - -.. code-block:: bash - - (cff2py)$ pip install pytest - -Once this is complete, you should have a ``py.test`` command you can run -at the command line: - -.. code-block:: bash - - $ py.test - -If you have any tests in your repository, that will find and run them. - -.. rst-class:: build -.. container:: - - **Do you?** - -.. nextslide:: Pre-existing Tests - -Let's take a look at some examples. - -``\Examples\Session05`` - -`` $ py.test`` - -You can also run py.test on a particular test file: - -``py.test test_this.py`` - -The results you should have seen when you ran ``py.test`` above come -partly from these files. - -Let's take a few minutes to look these files over. - -[demo] - -.. nextslide:: What's Happening Here. - -When you run the ``py.test`` command, ``pytest`` starts in your current -working directory and searches the filesystem for things that might be tests. - -It follows some simple rules: - -.. rst-class:: build - -* Any python file that starts with ``test_`` or ``_test`` is imported. -* Any functions in them that start with ``test_`` are run as tests. -* Any classes that start with ``Test`` are treated similarly, with methods that - begin with ``test_`` treated as tests. - - -.. nextslide:: pytest - -This test running framework is simple, flexible and configurable. - -`Read the documentation`_ for more information. - -.. _Read the documentation: http://pytest.org/latest/getting-started.html#getstarted - -.. nextslide:: Test Driven Development - -What we've just done here is the first step in what is called **Test Driven -Development**. - -A bunch of tests exist, but the code to make them pass does not yet exist. - -The red you see in the terminal when we run our tests is a goad to us to write -the code that fixes these tests. - -Let's do that next! - -=== -LAB -=== - -Pick an example from codingbat: - -``http://codingbat.com`` - -Do a bit of test-driven development on it: - - * run somethign on the web site. - * write a few tests using the examples from the site. - * then write the function, and fix it 'till it passes the tests. ========= @@ -890,228 +738,39 @@ Homework Catch up! --------- +* Finish the LABs from today + - Exceptions lab -* First task -- catch up from last week. +* Catch up from last week. - - and add some tests - - and list (and dict, and set) comprehensions... + - Add Exception handling to mailroom + - And list (and dict, and set) comprehensions... -* Then on to some exercises.... +* If you've done all that -- check out the collections module: + - https://docs.python.org/3.5/library/collections.html + - here's a good overview: https://pymotw.com/3/collections/ -List comprehensions --------------------- +==================================== +Material to review before next week: +==================================== -Note: this is a bit of a "backwards" exercise -- -we show you code, you figure out what it does. +**Unit Testing:** -As a result, not much to submit -- but so we can give you credit, submit -a file with a solution to the final problem. +* Dive into Python: chapter 9: + http://www.diveintopython3.net/unit-testing.html -.. code-block:: python - - >>> feast = ['lambs', 'sloths', 'orangutans', 'breakfast cereals', 'fruit bats'] - - >>> comprehension = [delicacy.capitalize() for delicacy in feast] - -What is the output of: - -.. code-block:: python - - >>> comprehension[0] - ??? - - >>> comprehension[2] - ??? - -(figure it out before you try it) - -.. nextslide:: 2. Filtering lists with list comprehensions - - -.. code-block:: python - - >>> feast = ['spam', 'sloths', 'orangutans', 'breakfast cereals', - 'fruit bats'] - - >>> comprehension = [delicacy for delicacy in feast if len(delicacy) > 6] - -What is the output of: - -.. code-block:: python - - >>> len(feast) - ??? - - >>> len(comprehension) - ??? - -(figure it out first!) - -.. nextslide:: 3. Unpacking tuples in list comprehensions - - -.. code-block:: python - - >>> list_of_tuples = [(1, 'lumberjack'), (2, 'inquisition'), (4, 'spam')] - - >>> comprehension = [ skit * number for number, skit in list_of_tuples ] - -What is the output of: - -.. code-block:: python - - >>> comprehension[0] - ??? - - >>> len(comprehension[2]) - ??? - -.. nextslide:: 4. Double list comprehensions - -.. code-block:: python - - >>> list_of_eggs = ['poached egg', 'fried egg'] - - >>> list_of_meats = ['lite spam', 'ham spam', 'fried spam'] - - >>> comprehension = [ '{0} and {1}'.format(egg, meat) for egg in list_of_eggs for meat in list_of_meats] - -What is the output of: - -.. code-block:: python - - >>> len(comprehension) - ??? - - >>> comprehension[0] - ??? - -.. nextslide:: 5. Set comprehensions - - -.. code-block:: python - - >>> comprehension = { x for x in 'aabbbcccc'} - -What is the output of: - -.. code-block:: python - - >>> comprehension - ??? - -.. nextslide:: 6. Dictionary comprehensions - - -.. code-block:: python - - >>> dict_of_weapons = {'first': 'fear', - 'second': 'surprise', - 'third':'ruthless efficiency', - 'forth':'fanatical devotion', - 'fifth': None} - >>> dict_comprehension = \ - { k.upper(): weapon for k, weapon in dict_of_weapons.iteritems() if weapon} - -What is the output of: - -.. code-block:: python - - >>> 'first' in dict_comprehension - ??? - >>> 'FIRST' in dict_comprehension - ??? - >>> len(dict_of_weapons) - ??? - >>> len(dict_comprehension) - ??? - -.. nextslide:: Other resources - - -See also: - -https://github.com/gregmalcolm/python_koans - -https://github.com/gregmalcolm/python_koans/blob/master/python2/koans/about_comprehension.py - - -.. nextslide:: 7. Count even numbers - - -Use test-driven development! - -This is from CodingBat "count_evens" (http://codingbat.com/prob/p189616) - -*Using a list comprehension*, return the number of even ints in the given array. - -Note: the % "mod" operator computes the remainder, e.g. ``5 % 2`` is 1. - -.. code-block:: python - - count_evens([2, 1, 2, 3, 4]) == 3 - - count_evens([2, 2, 0]) == 3 - - count_evens([1, 3, 5]) == 0 - - -.. code-block:: python - - def count_evens(nums): - one_line_comprehension_here - - -``dict`` and ``set`` comprehensions ------------------------------------- - -Let's revisiting the dict/set lab -- see how much you can do with -comprehensions instead. - -Specifically, look at these: - -First a slightly bigger, more interesting (or at least bigger..) dict: - -.. code-block:: python - - food_prefs = {"name": u"Chris", - u"city": u"Seattle", - u"cake": u"chocolate", - u"fruit": u"mango", - u"salad": u"greek", - u"pasta": u"lasagna"} - -.. nextslide:: Working with this dict: - -1. Print the dict by passing it to a string format method, so that you -get something like: - - "Chris is from Seattle, and he likes chocolate cake, mango fruit, - greek salad, and lasagna pasta" - -2. Using a list comprehension, build a dictionary of numbers from zero -to fifteen and the hexadecimal equivalent (string is fine). - -3. Do the previous entirely with a dict comprehension -- should be a one-liner - -4. Using the dictionary from item 1: Make a dictionary using the same -keys but with the number of 'a's in each value. You can do this either -by editing the dict in place, or making a new one. If you edit in place, -make a copy first! - -.. nextslide:: +NOTE: you will find that most introductions to unit testing with Python use the builtin ``unitest`` module. However, it is a bit heavyweight, and requires some knowledge of OOP -- classes, etc. So we'll be using pytest in this class: http://doc.pytest.org/en/latest/. But the principles of testing are the same. -5. Create sets s2, s3 and s4 that contain numbers from zero through twenty, -divisible 2, 3 and 4. +* Ned Batchelder's intro to testing presentation: - a. Do this with one set comprehension for each set. + - http://nedbatchelder.com/text/test0.html - b. What if you had a lot more than 3? -- Don't Repeat Yourself (DRY) +** Advanced Argument Passing - - create a sequence that holds all three sets +* arguments and parameters: - - loop through that sequence to build the sets up -- so no repeated code. + - http://stupidpythonideas.blogspot.com/2013/08/arguments-and-parameters.html - c. Extra credit: do it all as a one-liner by nesting a set comprehension inside a list comprehension. (OK, that may be getting carried away!) + - https://pythontips.com/2013/08/04/args-and-kwargs-in-python-explained/ diff --git a/slides_sources/source/session06.rst b/slides_sources/source/session06.rst index e290d994..d5e624b9 100644 --- a/slides_sources/source/session06.rst +++ b/slides_sources/source/session06.rst @@ -1,25 +1,8 @@ +.. include:: include.rst -******************************************************** -Session Six: Functional and Object Oriented Programming -******************************************************** - -.. rst-class:: left medium - - Lambda and Functional programming. - - Object oriented programming: - - classes, instances, attributes, and subclassing - -===== -NOTE: -===== - -.. rst-class:: center large - - Veteran's Day: - - No class next week +*********************************************** +Session Six: Testing, Advanced Argument Passing +*********************************************** ====================== Lightning Talks Today: @@ -27,14 +10,11 @@ Lightning Talks Today: .. rst-class:: medium - Aleksey Kramer + Adam Hollis - Alexander R Galvin - - Gideon I Sylvan - - Hui Zhang + Nachiket Galande + Paul A Casey ================ Review/Questions @@ -43,11 +23,10 @@ Review/Questions Review of Previous Class ------------------------ -* Argument Passing: ``*args``, ``**kwargs`` +* Exceptions -* comprehensions +* Comprehensions -* testing (a bit more on that soon) =============== Homework review @@ -76,16 +55,6 @@ rich comparisons: numpy .. nextslide:: -Binary mode for files: - -.. code-block:: python - - infile = open(infilename, 'rb') - outfile = open(outfilename, 'wb') - -| -| - You don't actually need to use the result of a list comp: .. code-block:: python @@ -93,1016 +62,773 @@ You don't actually need to use the result of a list comp: for i, st in zip( divisors, sets): [ st.add(j) for j in range(21) if not j%i ] +.. nextslide:: -The collections module ------------------------ - -The collections module has a numbe rof handy special purpose -collections: - - * defautltdict - * namedtuple - * deque - * Counter - -https://docs.python.org/2/library/collections.html - -defaultdict ------------ - -An alternative to ``dict.setdefault()`` - -Makes sense when you are buildng a dict where every value will be the same thing - -Carolyn found this in the ``collections`` package. Useful for the trigrams -assignment: - -.. code-block:: python - - from collections import defaultdict - - trigrams = defaultdict(list) - ... - trigrams[pair].append(follower) +Python functions are objects, so if you don't call them, you don't get an error, you just get the function object, usually not what you want:: -Counter -------- + elif donor_name.lower == "exit": -``Counter``: +this is comparing the string ``lower`` method to the string "exit" and they are never going to be equal! -Hui Zhang found this for counting how many students used which previous -languages. +That should be:: -See my example in ``/Solutions/Session05`` + elif donor_name.lower() == "exit": +This is actually a pretty common typo -- keep an eye out for it when you get strange errors, or something just doesn't seem to be getting triggered. -============================ -Test Driven development demo -============================ +long strings +------------ -In ``Examples/Session06/`` +if you need to do along string literal, sometimes a triple quoted string is perfect:: + """this is a long string. + I want it to hvae multiple lines. + so having the line endings automatic is great. + """ -=================== -Anonymous functions -=================== +But you don't always want the line endings quite like that. And you may not want all that whitespace when fitting it into indented code. -lambda ------- +It turns out that when you put a multiple strings together with no commas or anythign in between -- python will join them: .. code-block:: ipython - In [171]: f = lambda x, y: x+y - In [172]: f(2,3) - Out[172]: 5 - -Content can only be an expression -- not a statement - -Anyone remember what the difference is? - -Called "Anonymous": it doesn't need a name. + In [81]: "this is " "a string " "built up of parts" + Out[81]: 'this is a string built up of parts' .. nextslide:: -It's a python object, it can be stored in a list or other container - -.. code-block:: ipython - - In [7]: l = [lambda x, y: x+y] - In [8]: type(l[0]) - Out[8]: function - - -And you can call it: - -.. code-block:: ipython - - In [9]: l[0](3,4) - Out[9]: 7 - - -Functions as first class objects ---------------------------------- - -You can do that with "regular" functions too: - -.. code-block:: ipython +If it's in parentheses, you can put the next chunk on the next line: - In [12]: def fun(x,y): - ....: return x+y - ....: - In [13]: l = [fun] - In [14]: type(l[0]) - Out[14]: function - In [15]: l[0](3,4) - Out[15]: 7 - - - -====================== -Functional Programming -====================== +.. code-block:: python -map ---- + print("{} is from {}, and he likes " + "{} cake, {} fruit, {} salad, " + "and {} pasta.".format(food_prefs["name"], + food_prefs["city"], + food_prefs["cake"], + food_prefs["fruit"], + food_prefs["salad"], + food_prefs["pasta"])) -``map`` "maps" a function onto a sequence of objects -- It applies the function to each item in the list, returning another list +pretty print +------------ +If you need to print our nested (or large) data structure in a more readable fashion, the "pretty print" module is handy: .. code-block:: ipython - In [23]: l = [2, 5, 7, 12, 6, 4] - In [24]: def fun(x): - return x*2 + 10 - In [25]: map(fun, l) - Out[25]: [14, 20, 24, 34, 22, 18] + from pprint import pprint + In [28]: print(food_prefs) + {'pasta': 'lasagna', 'cake': 'chocolate', 'salad': 'greek', 'fruit': 'mango', 'name': 'Chris', 'city': 'Seattle'} -But if it's a small function, and you only need it once: + In [29]: pprint(food_prefs) + {'cake': 'chocolate', + 'city': 'Seattle', + 'fruit': 'mango', + 'name': 'Chris', + 'pasta': 'lasagna', + 'salad': 'greek'} -.. code-block:: ipython +Exceptions +---------- - In [26]: map(lambda x: x*2 + 10, l) - Out[26]: [14, 20, 24, 34, 22, 18] +Adding stuff to an Exception: +Example from slack -filter ------- - -``filter`` "filters" a sequence of objects with a boolean function -- -It keeps only those for which the function is True -To get only the even numbers: - -.. code-block:: ipython - - In [27]: l = [2, 5, 7, 12, 6, 4] - In [28]: filter(lambda x: not x%2, l) - Out[28]: [2, 12, 6, 4] +Anything else? +-------------- -If you pass ``None`` to ``filter()``, you get only items that evaluate to true: +.. rst-class:: center medium -.. code-block:: ipython + Anything else you want me to go over? - In [1]: l = [1, 0, 2.3, 0.0, 'text', '', [1,2], [], False, True, None ] - In [2]: filter(None, l) - Out[2]: [1, 2.3, 'text', [1, 2], True] +Lightning Talks +---------------- +.. rst-class:: medium +| +| Adam Hollis +| +| Nachiket Galande +| -reduce ------- +======= +Testing +======= -``reduce`` "reduces" a sequence of objects to a single object with a function that combines two arguments +.. rst-class:: build left +.. container:: -To get the sum: + You've already seen a very basic testing strategy. -.. code-block:: ipython + You've written some tests using that strategy. - In [30]: l = [2, 5, 7, 12, 6, 4] - In [31]: reduce(lambda x,y: x+y, l) - Out[31]: 36 + These tests were pretty basic, and a bit awkward in places (testing error + conditions in particular). + .. rst-class:: centered large -To get the product: + **It gets better** -.. code-block:: ipython +Test Runners +------------ - In [32]: reduce(lambda x,y: x*y, l) - Out[32]: 20160 +So far our tests have been limited to code in an ``if __name__ == "__main__":`` +block. -or +.. rst-class:: build -.. code-block:: ipython +* They are run only when the file is executed +* They are always run when the file is executed +* You can't do anything else when the file is executed without running tests. - In [13]: import operator +.. rst-class:: build +.. container:: - In [14]: reduce(operator.mul, l) - Out[14]: 20160 + This is not optimal. -Comprehensions --------------- + Python provides testing systems to help. -Couldn't you do all this with comprehensions? -Yes: +Standard Library: ``unittest`` +------------------------------- -.. code-block:: ipython +The original testing system in Python. - In [33]: [x+2 + 10 for x in l] - Out[33]: [14, 17, 19, 24, 18, 16] +``import unittest`` - In [34]: [x for x in l if not x%2] - Out[34]: [2, 12, 6, 4] +More or less a port of ``Junit`` from Java - In [6]: l - Out[6]: [1, 0, 2.3, 0.0, 'text', '', [1, 2], [], False, True, None] - In [7]: [i for i in l if i] - Out[7]: [1, 2.3, 'text', [1, 2], True] +A bit verbose: you have to write classes & methods -(Except Reduce) +(And we haven't covered that yet!) -But Guido thinks almost all uses of reduce are really ``sum()`` -Functional Programming ----------------------- +Using ``unittest`` +------------------- -Comprehensions and map, filter, reduce are all "functional programming" approaches} +You write subclasses of the ``unittest.TestCase`` class: -``map, filter`` and ``reduce`` pre-date comprehensions in Python's history +.. code-block:: python -Some people like that syntax better + # in test.py + import unittest -And "map-reduce" is a big concept these days for parallel processing of "Big Data" in NoSQL databases. + class MyTests(unittest.TestCase): + def test_tautology(self): + self.assertEquals(1, 1) -(Hadoop, MongoDB, etc.) +Then you run the tests by using the ``main`` function from the ``unittest`` +module: +.. code-block:: python -A bit more about lambda ------------------------- + # in test.py + if __name__ == '__main__': + unittest.main() -Can also use keyword arguments +.. nextslide:: Testing Your Code -.. code-block:: ipython +This way, you can write your code in one file and test it from another: - In [186]: l = [] - In [187]: for i in range(3): - l.append(lambda x, e=i: x**e) - .....: - In [189]: for f in l: - print f(3) - 1 - 3 - 9 +.. code-block:: python -Note when the keyword argument is evaluated: this turns out to be very handy! + # in my_mod.py + def my_func(val1, val2): + return val1 * val2 -=== -LAB -=== + # in test_my_mod.py + import unittest + from my_mod import my_func -lambda and keyword argument magic ------------------------------------ + class MyFuncTestCase(unittest.TestCase): + def test_my_func(self): + test_vals = (2, 3) + expected = reduce(lambda x, y: x * y, test_vals) + actual = my_func(*test_vals) + self.assertEquals(expected, actual) -Write a function that returns a list of n functions, -such that each one, when called, will return the input value, -incremented by an increasing number. + if __name__ == '__main__': + unittest.main() -Use a for loop, ``lambda``, and a keyword argument +.. nextslide:: Advantages of ``unittest`` -( Extra credit ): +.. rst-class:: build +.. container:: -Do it with a list comprehension, instead of a for loop + The ``unittest`` module is pretty full featured -Not clear? here's what you should get + It comes with the standard Python distribution, no installation required. -.. nextslide:: Example calling code + It provides a wide variety of assertions for testing all sorts of situations. -.. code-block:: ipython + It allows for a setup and tear down workflow both before and after all tests and before and after each test. - In [96]: the_list = function_builder(4) - ### so the_list should contain n functions (callables) - In [97]: the_list[0](2) - Out[97]: 2 - ## the zeroth element of the list is a function that add 0 - ## to the input, hence called with 2, returns 2 - In [98]: the_list[1](2) - Out[98]: 3 - ## the 1st element of the list is a function that adds 1 - ## to the input value, thus called with 2, returns 3 - In [100]: for f in the_list: - print f(5) - .....: - 5 - 6 - 7 - 8 - ### If you loop through them all, and call them, each one adds one more - to the input, 5... i.e. the nth function in the list adds n to the input. + It's well known and well understood. +.. nextslide:: Disadvantages: +.. rst-class:: build +.. container:: -Lightning Talks ----------------- -.. rst-class:: medium + It's Object Oriented, and quite "heavyweight". -| -| Aleksey Kramer -| -| Alexander R Galvin -| + - modeled after Java's ``junit`` and it shows... + It uses the framework design pattern, so knowing how to use the features + means learning what to override. -=========================== -Object Oriented Programming -=========================== + Needing to override means you have to be cautious. -Object Oriented Programming ---------------------------- + Test discovery is both inflexible and brittle. -More about Python implementation than OO design/strengths/weaknesses + And there is no built-in parameterized testing. -One reason for this: +Other Options +------------- -Folks can't even agree on what OO "really" means +There are several other options for running tests in Python. -See: The Quarks of Object-Oriented Development +* `Nose`: https://nose.readthedocs.org/ - - Deborah J. Armstrong +* `pytest`: http://pytest.org/latest/ -http://agp.hx0.ru/oop/quarks.pdf +* ... (many frameworks supply their own test runners: e.g. django) +Both are very capable and widely used. I have a personal preference for pytest -.. nextslide:: +-- so we'll use it for this class -Is Python a "True" Object-Oriented Language? +Installing ``pytest`` +--------------------- -(Doesn't support full encapsulation, doesn't *require* -classes, etc...) +The first step is to install the package: -.. nextslide:: +.. code-block:: bash -.. rst-class:: center large + $ python3 -m pip install pytest - I don't Care! +Once this is complete, you should have a ``py.test`` command you can run +at the command line: +.. code-block:: bash -Good software design is about code re-use, clean separation of concerns, -refactorability, testability, etc... + $ py.test -OO can help with all that, but: - * It doesn't guarantee it - * It can get in the way +If you have any tests in your repository, that will find and run them. -.. nextslide:: +.. rst-class:: build +.. container:: -Python is a Dynamic Language + **Do you?** -That clashes with "pure" OO +Pre-existing Tests +------------------ -Think in terms of what makes sense for your project - -- not any one paradigm of software design. +Let's take a look at some examples. +in ``IntroPython2016\Examples\Session06`` -.. nextslide:: +.. code-block:: bash -So what is "object oriented programming"? + $ py.test -| - "Objects can be thought of as wrapping their data - within a set of functions designed to ensure that - the data are used appropriately, and to assist in - that use" +You can also run py.test on a particular test file: -| +.. code-block:: bash -http://en.wikipedia.org/wiki/Object-oriented_programming + $ py.test test_random_unitest.py -.. nextslide:: +The results you should have seen when you ran ``py.test`` above come +partly from these files. -Even simpler: +Let's take a few minutes to look these files over. +[demo] -"Objects are data and the functions that act on them in one place." +What's Happening Here. +---------------------- -This is the core of "encapsulation" +When you run the ``py.test`` command, ``pytest`` starts in your current +working directory and searches the filesystem for things that might be tests. -In Python: just another namespace. +It follows some simple rules: -.. nextslide:: +* Any python file that starts with ``test_`` or ``_test`` is imported. -The OO buzzwords: +* Any functions in them that start with ``test_`` are run as tests. - * data abstraction - * encapsulation - * modularity - * polymorphism - * inheritance +* Any classes that start with ``Test`` are treated similarly, with methods that begin with ``test_`` treated as tests. -Python does all of this, though it doesn't enforce it. +( don't worry about "classes" part just yet ;-) ) -.. nextslide:: +pytest +------ -You can do OO in C +This test running framework is simple, flexible and configurable. -(see the GTK+ project) +Read the documentation for more information: +http://pytest.org/latest/getting-started.html#getstarted -"OO languages" give you some handy tools to make it easier (and safer): +It will run ``unittest`` tests for you. - * polymorphism (duck typing gives you this anyway) - * inheritance +But in addition to finding and running tests, it makes writting tests simple, and provides a bunch of nifty utilities to support more complex testing. -.. nextslide:: +Test Driven Development +----------------------- +in the Examples dir, try:: -OO is the dominant model for the past couple decades + $ py.test test_cigar_party -You will need to use it: +What we've just done here is the first step in what is called: -- It's a good idea for a lot of problems +.. rst-class:: centered -- You'll need to work with OO packages + **Test Driven Development**. -(Even a fair bit of the standard library is Object Oriented) +A bunch of tests exist, but the code to make them pass does not yet exist. +The red you see in the terminal when we run our tests is a goad to us to write the code that fixes these tests. -.. nextslide:: Some definitions +Let's do that next! -class - A category of objects: particular data and behavior: A "circle" (same as a type in python) +Test Driven development demo +----------------------------- -instance - A particular object of a class: a specific circle +Open up: -object - The general case of a instance -- really any value (in Python anyway) +``Examples/Session06/test_cigar_party.py`` -attribute - Something that belongs to an object (or class): generally thought of - as a variable, or single object, as opposed to a ... +and: -method - A function that belongs to a class +``Examples/Session06/cigar_party.py`` -.. nextslide:: +and run:: -.. rst-class:: center + $ py.teset test_cigar_party.py - Note that in python, functions are first class objects, so a method *is* an attribute +Now go in to ``cigar_party.py`` and let's fix the tests. +Let's play with codingbat.py also... -============== -Python Classes -============== +=== +LAB +=== .. rst-class:: left - The ``class`` statement - - ``class`` creates a new type object: + Pick an example from codingbat: - .. code-block:: ipython + ``http://codingbat.com`` - In [4]: class C(object): - pass - ...: - In [5]: type(C) - Out[5]: type + Do a bit of test-driven development on it: - A class is a type -- interesting! + * run something on the web site. + * write a few tests using the examples from the site. + * then write the function, and fix it 'till it passes the tests. - It is created when the statement is run -- much like ``def`` + Do at least two of these... - You don't *have* to subclass from ``object``, but you *should* - - (note on "new style" classes) - -Python Classes +Lightning Talk -------------- -About the simplest class you can write - -.. code-block:: python - - >>> class Point(object): - ... x = 1 - ... y = 2 - >>> Point - - >>> Point.x - 1 - >>> p = Point() - >>> p - <__main__.Point instance at 0x2de918> - >>> p.x - 1 - -.. nextslide:: +.. rst-class:: medium -Basic Structure of a real class: + | + | Paul A Casey + | -.. code-block:: python +========================= +Advanced Argument Passing +========================= - class Point(object): - # everything defined in here is in the class namespace +This is a very, very nifty Python feature -- it really lets you write dynamic programs. - def __init__(self, x, y): - self.x = x - self.y = y +Keyword arguments +----------------- - ## create an instance of the class - p = Point(3,4) +When defining a function, you can specify only what you need -- in any order - ## access the attributes - print "p.x is:", p.x - print "p.y is:", p.y +.. code-block:: ipython + In [151]: def fun(x=0, y=0, z=0): + print(x,y,z) + .....: + In [152]: fun(1,2,3) + 1 2 3 + In [153]: fun(1, z=3) + 1 0 3 + In [154]: fun(z=3, y=2) + 0 2 3 -see: ``Examples/Session06/simple_classes.py`` .. nextslide:: -The Initializer - -The ``__init__`` special method is called when a new instance of a class is created. -You can use it to do any set-up you need +A Common Idiom: .. code-block:: python - class Point(object): - def __init__(self, x, y): - self.x = x - self.y = y - - -It gets the arguments passed when you call the class object: + def fun(x, y=None): + if y is None: + do_something_different + go_on_here -.. code-block:: python - - Point(x, y) .. nextslide:: +Can set defaults to variables + +.. code-block:: ipython -What is this ``self`` thing? + In [156]: y = 4 + In [157]: def fun(x=y): + print("x is:", x) + .....: + In [158]: fun() + x is: 4 -The instance of the class is passed as the first parameter for every method. -"``self``" is only a convention -- but you DO want to use it. +.. nextslide:: -.. code-block:: python +Defaults are evaluated when the function is defined - class Point(object): - def a_function(self, x, y): - ... +.. code-block:: ipython + In [156]: y = 4 + In [157]: def fun(x=y): + print("x is:", x) + .....: + In [158]: fun() + x is: 4 + In [159]: y = 6 + In [160]: fun() + x is: 4 -Does this look familiar from C-style procedural programming? +This is a **very** important point -- I will repeat it! -.. nextslide:: +Function arguments in variables +------------------------------- -Anything assigned to a ``self.`` attribute is kept in the instance -name space -- ``self`` *is* the instance. +When a function is called, its arguments are really just: -That's where all the instance-specific data is. +* a tuple (positional arguments) +* a dict (keyword arguments) .. code-block:: python - class Point(object): - size = 4 - color= "red" - def __init__(self, x, y): - self.x = x - self.y = y + def f(x, y, w=0, h=0): + print("position: {}, {} -- shape: {}, {}".format(x, y, w, h)) -.. nextslide:: + position = (3,4) + size = {'h': 10, 'w': 20} -Anything assigned in the class scope is a class attribute -- every -instance of the class shares the same one. + >>> f(*position, **size) + position: 3, 4 -- shape: 20, 10 -Note: the methods defined by ``def`` are class attributes as well. -The class is one namespace, the instance is another. +Function parameters in variables +-------------------------------- +You can also pull the parameters out in the function as a tuple and a dict: -.. code-block:: python +.. code-block:: ipython - class Point(object): - size = 4 - color= "red" - ... - def get_color(): - return self.color - >>> p3.get_color() - 'red' + def f(*args, **kwargs): + print("the positional arguments are:", args) + print("the keyword arguments are:", kwargs) + In [389]: f(2, 3, this=5, that=7) + the positional arguments are: (2, 3) + the keyword arguments are: {'this': 5, 'that': 7} -class attributes are accessed with ``self`` also. +This can be very powerful... +Passing a dict to str.format() +------------------------------- -.. nextslide:: +Now that you know that keyword args are really a dict, +you know how this nifty trick works: -Typical methods: +The string ``format()`` method takes keyword arguments: -.. code-block:: python +.. code-block:: ipython - class Circle(object): - color = "red" + In [24]: "My name is {first} {last}".format(last="Barker", first="Chris") + Out[24]: 'My name is Chris Barker' - def __init__(self, diameter): - self.diameter = diameter +Build a dict of the keys and values: - def grow(self, factor=2): - self.diameter = self.diameter * factor +.. code-block:: ipython + In [25]: d = {"last":"Barker", "first":"Chris"} -Methods take some parameters, manipulate the attributes in ``self``. +And pass to ``format()``with ``**`` -They may or may not return something useful. +.. code-block:: ipython -.. nextslide:: + In [26]: "My name is {first} {last}".format(**d) + Out[26]: 'My name is Chris Barker' -Gotcha! +Kinda handy for the dict lab, eh? -.. code-block:: python +This: - ... - def grow(self, factor=2): - self.diameter = self.diameter * factor - ... - In [205]: C = Circle(5) - In [206]: C.grow(2,3) +.. code-block:: ipython - TypeError: grow() takes at most 2 arguments (3 given) + print("{} is from {}, and he likes " + "{} cake, {} fruit, {} salad, " + "and {} pasta.".format(food_prefs["name"], + food_prefs["city"], + food_prefs["cake"], + food_prefs["fruit"], + food_prefs["salad"], + food_prefs["pasta"])) -Huh???? I only gave 2 +Becomes: -``self`` is implicitly passed in for you by python. +.. code-block:: ipython -(demo of bound vs. unbound methods) + print("{name} is from {city}, and he likes " + "{cake} cake, {fruit} fruit, {salad} salad, " + "and {pasta} pasta.".format(**food_prefs)) LAB ---- -Let's say you need to render some html... - -The goal is to build a set of classes that render an html -page like this: +Time to play with all this to get a feel for it. -``Examples/Session06/sample_html.html`` +:ref:`exercise_args_kwargs_lab` -We'll start with a single class, then add some sub-classes -to specialize the behavior +This is not all that clearly specified -- the goal is for you to +experiment with various ways to define and call functions, so you +can understand what's possible, and what happens with each call. -Details in: -:ref:`homework_html_renderer` +===================================== +A bit more on mutability (and copies) +===================================== - -Let's see if you can do step 1. in class... - - -Lightning Talks +mutable objects ---------------- -.. rst-class:: medium - -| -| Gideon Sylvan -| -| Hui Zhang -| - -======================= -Subclassing/Inheritance -======================= - -Inheritance ------------ - -In object-oriented programming (OOP), inheritance is a way to reuse code -of existing objects, or to establish a subtype from an existing object. - -Objects are defined by classes, classes can inherit attributes and behavior -from pre-existing classes called base classes or super classes. - -The resulting classes are known as derived classes or subclasses. - -(http://en.wikipedia.org/wiki/Inheritance_%28object-oriented_programming%29) - -Subclassing ------------ +We've talked about this: mutable objects can have their contents changed in place. -A subclass "inherits" all the attributes (methods, etc) of the parent class. +Immutable objects can not. -You can then change ("override") some or all of the attributes to change the behavior. +This has implications when you have a container with mutable objects in it: -You can also add new attributes to extend the behavior. - -The simplest subclass in Python: - -.. code-block:: python - - class A_subclass(The_superclass): - pass - -``A_subclass`` now has exactly the same behavior as ``The_superclass`` - -NOTE: when we put ``object`` in there, it means we are deriving from object -- getting core functionality of all objects. - -Overriding attributes ---------------------- - -Overriding is as simple as creating a new attribute with the same name: +.. code-block:: ipython -.. code-block:: python + In [28]: list1 = [ [1,2,3], ['a','b'] ] - class Circle(object): - color = "red" +one way to make a copy of a list: - ... +.. code-block:: ipython - class NewCircle(Circle): - color = "blue" - >>> nc = NewCircle - >>> print nc.color - blue + In [29]: list2 = list1[:] + In [30]: list2 is list1 + Out[30]: False -all the ``self`` instances will have the new attribute. +they are different lists. -Overriding methods ------------------- +.. nextslide:: -Same thing, but with methods (remember, a method *is* an attribute in python) +What if we set an element to a new value? -.. code-block:: python +.. code-block:: ipython - class Circle(object): - ... - def grow(self, factor=2): - """grows the circle's diameter by factor""" - self.diameter = self.diameter * factor - ... + In [31]: list1[0] = [5,6,7] - class NewCircle(Circle): - ... - def grow(self, factor=2): - """grows the area by factor...""" - self.diameter = self.diameter * math.sqrt(2) + In [32]: list1 + Out[32]: [[5, 6, 7], ['a', 'b']] + In [33]: list2 + Out[33]: [[1, 2, 3], ['a', 'b']] -all the instances will have the new method +So they are independent. .. nextslide:: -Here's a program design suggestion: - -""" +But what if we mutate an element? -Whenever you override a method, the -interface of the new method should be the same as the old. It should take -the same parameters, return the same type, and obey the same preconditions -and postconditions. +.. code-block:: ipython -If you obey this rule, you will find that any function -designed to work with an instance of a superclass, like a Deck, will also work -with instances of subclasses like a Hand or PokerHand. If you violate this -rule, your code will collapse like (sorry) a house of cards. + In [34]: list1[1].append('c') -""" + In [35]: list1 + Out[35]: [[5, 6, 7], ['a', 'b', 'c']] -| -| [ThinkPython 18.10] -| -| ( Demo of class vs. instance attributes ) + In [36]: list2 + Out[36]: [[1, 2, 3], ['a', 'b', 'c']] +uuh oh! mutating an element in one list mutated the one in the other list. -=================== -More on Subclassing -=================== +.. nextslide:: -Overriding \_\_init\_\_ ------------------------ +Why is that? -``__init__`` common method to override} +.. code-block:: ipython -You often need to call the super class ``__init__`` as well + In [38]: list1[1] is list2[1] + Out[38]: True -.. code-block:: python +The elements are the same object! - class Circle(object): - color = "red" - def __init__(self, diameter): - self.diameter = diameter - ... - class CircleR(Circle): - def __init__(self, radius): - diameter = radius*2 - Circle.__init__(self, diameter) +This is known as a "shallow" copy -- Python doesn't want to copy more than it needs to, so in this case, it makes a new list, but does not make copies of the contents. +Same for dicts (and any container type -- even tuples!) +If the elements are immutable, it doesn't really make a differnce -- but be very careful with mutable elements. -exception to: "don't change the method signature" rule. -More subclassing +The copy module ---------------- -You can also call the superclass' other methods: - -.. code-block:: python - class Circle(object): - ... - def get_area(self, diameter): - return math.pi * (diameter/2.0)**2 +most objects have a way to make copies (``dict.copy()`` for instance). +but if not, you can use the ``copy`` module to make a copy: - class CircleR2(Circle): - ... - def get_area(self): - return Circle.get_area(self, self.radius*2) - -There is nothing special about ``__init__`` except that it gets called -automatically when you instantiate an instance. +.. code-block:: ipython + In [39]: import copy -When to Subclass ----------------- + In [40]: list3 = copy.copy(list2) -"Is a" relationship: Subclass/inheritance + In [41]: list3 + Out[41]: [[1, 2, 3], ['a', 'b', 'c']] -"Has a" relationship: Composition +This is also a shallow copy. .. nextslide:: -"Is a" vs "Has a" - -You may have a class that needs to accumulate an arbitrary number of objects. - -A list can do that -- so should you subclass list? - -Ask yourself: - --- **Is** your class a list (with some extra functionality)? - -or - --- Does you class **have** a list? - -You only want to subclass list if your class could be used anywhere a list can be used. - - -Attribute resolution order --------------------------- - -When you access an attribute: - -``an_instance.something`` - -Python looks for it in this order: - - * Is it an instance attribute ? - * Is it a class attribute ? - * Is it a superclass attribute ? - * Is it a super-superclass attribute ? - * ... - - -It can get more complicated... - -http://www.python.org/getit/releases/2.3/mro/ - -http://python-history.blogspot.com/2010/06/method-resolution-order.html - - -What are Python classes, really? --------------------------------- - -Putting aside the OO theory... - -Python classes are: - - * Namespaces - - * One for the class object - * One for each instance - - * Attribute resolution order - * Auto tacking-on of ``self`` when methods are called +But there is another option: +.. code-block:: ipython -That's about it -- really! + In [3]: list1 + Out[3]: [[1, 2, 3], ['a', 'b', 'c']] + In [4]: list2 = copy.deepcopy(list1) -Type-Based dispatch -------------------- + In [5]: list1[0].append(4) -You'll see code that looks like this: + In [6]: list1 + Out[6]: [[1, 2, 3, 4], ['a', 'b', 'c']] -.. code-block:: python + In [7]: list2 + Out[7]: [[1, 2, 3], ['a', 'b', 'c']] - if isinstance(other, A_Class): - Do_something_with_other - else: - Do_something_else +``deepcopy`` recurses through the object, making copies of everything as it goes. +.. nextslide:: -Usually better to use "duck typing" (polymorphism) -But when it's called for: +I happened on this thread on stack overflow: - * ``isinstance()`` - * ``issubclass()`` +http://stackoverflow.com/questions/3975376/understanding-dict-copy-shallow-or-deep -.. nextslide:: +The OP is pretty confused -- can you sort it out? -GvR: "Five Minute Multi- methods in Python": +Make sure you understand the difference between a reference, a shallow copy, and a deep copy. -http://www.artima.com/weblogs/viewpost.jsp?thread=101605 +Mutables as default arguments: +------------------------------ -http://www.python.org/getit/releases/2.3/mro/ +Another "gotcha" is using mutables as default arguments: -http://python-history.blogspot.com/2010/06/method-resolution-order.html +.. code-block:: ipython + In [11]: def fun(x, a=[]): + ....: a.append(x) + ....: print(a) + ....: -Wrap Up -------- +This makes sense: maybe you'd pass in a specific list, but if not, the default is an empty list. -Thinking OO in Python: +But: -Think about what makes sense for your code: +.. code-block:: ipython -* Code re-use -* Clean APIs -* ... + In [12]: fun(3) + [3] -Don't be a slave to what OO is *supposed* to look like. + In [13]: fun(4) + [3, 4] -Let OO work for you, not *create* work for you +Huh?! .. nextslide:: -OO in Python: +Remember that that default argument is defined when the function is created: there will be only one list, and every time the function is called, that same list is used. -The Art of Subclassing: *Raymond Hettinger* -http://pyvideo.org/video/879/the-art-of-subclassing +The solution: -"classes are for code re-use -- not creating taxonomies" +The standard practice for such a mutable default argument: -Stop Writing Classes: *Jack Diederich* +.. code-block:: ipython -http://pyvideo.org/video/880/stop-writing-classes + In [15]: def fun(x, a=None): + ....: if a is None: + ....: a = [] + ....: a.append(x) + ....: print(a) + In [16]: fun(3) + [3] + In [17]: fun(4) + [4] -"If your class has only two methods -- and one of them is ``__init__`` --- you don't need a class" +You get a new list every time the function is called ======== Homework ======== -.. rst-class:: left medium - - * finish the lambda:keyword magic lab - - * functional files - - * html renderer - - -Functional files ------------------ - -Write a program that takes a filename and "cleans" the file be removing -all the leading and trailing whitespace from each line. - -Read in the original file and write out a new one, either creating a new -file or overwriting the existing one. - -Give your user the option of which to perform. - -Use ``map()`` to do the work. +.. rst-class:: left -Write a second version using a comprehension. + Finish up the Labs -.. nextslide:: Hint + Write a complete set of unit tests for your mailroom program. -``sys.argv`` hold the command line arguments the user typed in. If the -user types: + * You will likely find that it is really hard to test without refactoring. -.. code-block:: bash + * This is Good! - $ python the_script a_file_name + * If code is hard to test -- it probably should be refactored. -Then: -.. code-block:: python - import sys - filename = sys.argv[1] +Material to review for next week +-------------------------------- -will get ``filename == "a_file_name"`` +Next week, we'll get started on Object Oriented Methods. It's a good idea to read up on it first -- so we can dive right in: + * Dive into Python3: 7.2 -- 7.3 + http://www.diveintopython3.net/iterators.html#defining-classes -Html rendering system: ------------------------ + * Think Python: 15 -- 18 + http://www.greenteapress.com/thinkpython/html/thinkpython016.html -:ref:`homework_html_renderer` + * LPTHW: 40 -- 44 + http://learnpythonthehardway.org/book/ex40.html -| +[note that in py3 you don't need to inherit from object] -You will build an html generator, using: +Talk by Raymond Hettinger: -* A Base Class with a couple methods -* Subclasses overriding class attributes -* Subclasses overriding a method -* Subclasses overriding the ``__init__`` +Video of talk: https://youtu.be/HTLu2DFOdTg -These are the core OO approaches +Slides: https://speakerdeck.com/pyconslides/pythons-class-development-toolkit-by-raymond-hettinger diff --git a/slides_sources/source/session07.rst b/slides_sources/source/session07.rst index 6ddcf53f..46bbd8e4 100644 --- a/slides_sources/source/session07.rst +++ b/slides_sources/source/session07.rst @@ -1,22 +1,19 @@ +.. include:: include.rst -.. Foundations 2: Python slides file, created by - hieroglyph-quickstart on Wed Apr 2 18:42:06 2014. +*************************** +Object Oriented Programming +*************************** -*********************** -Session Seven: More OO -*********************** +Lightning Talks today +--------------------- -.. rst-class:: medium centered - -.. container:: - - Multiple Inheritance - - Properties - - Class methods and static methods +.. rst-class:: medium - Special (Magic) Methods + | + | Charles E Robison + | + | Paul Vosper + | ================ Review/Questions @@ -25,727 +22,898 @@ Review/Questions Review of Previous Class ------------------------ -* Object Oriented Programming: +.. rst-class:: medium - - classes + Advanced Argument passing - - instances + Testing - - attributes and methods +Any questions? - - subclassing +Should I go over my solution(s)? - - overriding methods -Homework review ---------------- +Notes from homework: +-------------------- -Homework Questions? +**chaining or...** -Have you all got an HTML Renderer working? +Consider this: -Do you have a feel for classes, subclassing, overriding methods, ...? +``elif selection == '3' or 'exit':`` -Personal Project ------------------ +Careful here: you want to check if selection is '3' or 'exit', but that is no quite what this means: -The bulk of the homework for the rest of the class will be a personal project: +You want: -* It can be for fun, or something you need for your job. -* It should be large enought to take a few weeks homework time to do. -* It should demostrate that you can do something useful with python. -* It should follow PEP8 (https://www.python.org/dev/peps/pep-0008) -* It should have unit tests! -* Ideally, it will be in version control (gitHub) -* I'm not going to require an specific python features (i.e. classes): use - what is appropriate for your project +``(selection == '3') or (selection == 'exit')`` -* Due the Friday after the last class (December 12) +== has higher precedence than or, so you don't need the parentheses. -| -| By next week, send me a project proposal: can be short and sweet. -| +``selection == '3' or selection == 'exit'`` +That feels like more typing, but that's what you have to do. -Lightning Talks Today: ------------------------ +.. nextslide:: -.. rst-class:: medium +So what does the first version mean? - Andrew P Klock +It would return true for '3', but would never fail. Due to operator precedence, it is: - Vinay Gupta +``(selection == '3') or 'exit'`` - Ousmane Conde +so first it's checking if selection == '3', which will return True or False. - Salim Hassan Hamed +Then it does the or: ``True or 'exit'`` or ``False or 'exit'`` +``or`` returns the first "truthy" value it finds, to it will return either True or 'exit', regardless of the value of selection. 'exit' is truthy, so this if clause will always run. -=================== -More on Subclassing -=================== +(let's try this out in iPython) -.. rst-class:: left - I pointed you to this Video last class: +=========================== +Object Oriented Programming +=========================== - The Art of Subclassing: *Raymond Hettinger* +.. rst-class:: medium centered - http://pyvideo.org/video/879/the-art-of-subclassing +.. container:: - If you haven't watched it, It's well worth your time + Classes + Instances -What's a Subclass For? ----------------------- + Class and instance attributes -The most salient points from that video are as follows: + Subclassing -* **Subclassing is not for Specialization** + Overriding methods -* **Subclassing is for Reusing Code** -* **Bear in mind that the subclass is in charge** -Multiple Inheritance --------------------- +=========================== +Object Oriented Programming +=========================== -Multiple inheritance: Inheriting from more than one class +A Core approach to organizing code. -Simply provide more than one parent. +I'm going to go through this fast. -.. code-block:: python +So we can get to the actual coding. - class Combined(Super1, Super2, Super3): - def __init__(self, something, something else): - # some custom initialization here. - Super1.__init__(self, ......) - Super2.__init__(self, ......) - Super3.__init__(self, ......) - # possibly more custom initialization -(calls to the super class ``__init__`` are optional -- case dependent) +Object Oriented Programming +--------------------------- -.. nextslide:: Method Resolution Order +More about Python implementation than OO design/strengths/weaknesses -.. code-block:: python +One reason for this: - class Combined(Super1, Super2, Super3) +Folks can't even agree on what OO "really" means -Attributes are located bottom-to-top, left-to-right +See: The Quarks of Object-Oriented Development -* Is it an instance attribute ? -* Is it a class attribute ? -* Is it a superclass attribute ? + - Deborah J. Armstrong - - Is it an attribute of the left-most superclass? - - Is it an attribute of the next superclass? - - and so on up the hierarchy... +http://agp.hx0.ru/oop/quarks.pdf -* Is it a super-superclass attribute ? -* ... also left to right ... -http://python-history.blogspot.com/2010/06/method-resolution-order.html +.. nextslide:: -.. nextslide:: Mix-ins +Is Python a "True" Object-Oriented Language? -So why would you want to do this? One reason: *mixins* +(Doesn't support full encapsulation, doesn't *require* +classes, etc...) -Provides an subset of expected functionality in a re-usable package. +.. nextslide:: -Huh? this is why -- +.. rst-class:: center large -Hierarchies are not always simple: + I don't Care! -* Animal - * Mammal +Good software design is about code re-use, clean separation of concerns, +refactorability, testability, etc... - * GiveBirth() +OO can help with all that, but: + * It doesn't guarantee it + * It can get in the way - * Bird +.. nextslide:: - * LayEggs() +Python is a Dynamic Language -Where do you put a Platypus? +That clashes with "pure" OO -Real World Example: `FloatCanvas`_ +Think in terms of what makes sense for your project -.. _FloatCanvas: https://github.com/svn2github/wxPython/blob/master/3rdParty/FloatCanvas/floatcanvas/FloatCanvas.py#L485 +-- not any one paradigm of software design. -.. nextslide:: New-Style Classes +.. nextslide:: -All the class definitions we've been showing inherit from ``object``. +So what is "object oriented programming"? -This is referred to as a "new style" class. +| + "Objects can be thought of as wrapping their data + within a set of functions designed to ensure that + the data are used appropriately, and to assist in + that use" -They were introduced in python2.2 to better merge types and classes, and clean -up a few things. +| -There are differences in method resolution order and properties. +http://en.wikipedia.org/wiki/Object-oriented_programming -**Always Make New-Style Classes** +.. nextslide:: -(that is, always subclass from object...) +Even simpler: -The differences are subtle, and may not appear until they jump up to bite you. +"Objects are data and the functions that act on them in one place." -.. nextslide:: ``super()`` +This is the core of "encapsulation" -``super()``: use it to call a superclass method, rather than explicitly calling -the unbound method on the superclass. +In Python: just another namespace. -instead of: +.. nextslide:: -.. code-block:: python +The OO buzzwords: - class A(B): - def __init__(self, *args, **kwargs) - B.__init__(self, *argw, **kwargs) - ... + * data abstraction + * encapsulation + * modularity + * polymorphism + * inheritance -You can do: +Python does all of this, though it doesn't enforce it. -.. code-block:: python +.. nextslide:: - class A(B): - def __init__(self, *args, **kwargs) - super(A, self).__init__(*argw, **kwargs) - ... +You can do OO in C -.. nextslide:: Caveats +(see the GTK+ project) -Caution: There are some subtle differences with multiple inheritance. -You can use explicit calling to ensure that the 'right' method is called. +"OO languages" give you some handy tools to make it easier (and safer): -.. rst-class:: medium + * polymorphism (duck typing gives you this anyway) + * inheritance - **Background** -Two seminal articles about ``super()``: +.. nextslide:: -"Super Considered Harmful" -- James Knight +OO is the dominant model for the past couple decades -https://fuhm.net/super-harmful/ +You will need to use it: -"super() considered super!" -- Raymond Hettinger +- It's a good idea for a lot of problems -http://rhettinger.wordpress.com/2011/05/26/super-considered-super/} +- You'll need to work with OO packages -(Both worth reading....) +(Even a fair bit of the standard library is Object Oriented) + + +.. nextslide:: Some definitions + +class + A category of objects: particular data and behavior: A "circle" (same as a type in python) -========== -Properties -========== +instance + A particular object of a class: a specific circle + +object + The general case of a instance -- really any value (in Python anyway) + +attribute + Something that belongs to an object (or class): generally thought of + as a variable, or single object, as opposed to a ... + +method + A function that belongs to a class + +.. nextslide:: + +.. rst-class:: center + + Note that in python, functions are first class objects, so a method *is* an attribute + + +============== +Python Classes +============== .. rst-class:: left -.. container:: - One of the strengths of Python is lack of clutter. + The ``class`` statement - Attributes are simple and concise: + ``class`` creates a new type object: .. code-block:: ipython - In [5]: class C(object): - def __init__(self): - self.x = 5 - In [6]: c = C() - In [7]: c.x - Out[7]: 5 - In [8]: c.x = 8 - In [9]: c.x - Out[9]: 8 + In [4]: class C: + pass + ...: + In [5]: type(C) + Out[5]: type + A class is a type -- interesting! -Getter and Setters? -------------------- + It is created when the statement is run -- much like ``def`` -But what if you need to add behavior later? +Python Classes +-------------- -.. rst-class:: build +About the simplest class you can write -* do some calculation -* check data validity -* keep things in sync +.. code-block:: python + >>> class Point: + ... x = 1 + ... y = 2 + >>> Point + + >>> Point.x + 1 + >>> p = Point() + >>> p + <__main__.Point instance at 0x2de918> + >>> p.x + 1 .. nextslide:: -.. code-block:: ipython +Basic Structure of a real class: - In [5]: class C(object): - ...: def __init__(self): - ...: self.x = 5 - ...: def get_x(self): - ...: return self.x - ...: def set_x(self, x): - ...: self.x = x - ...: - In [6]: c = C() - In [7]: c.get_x() - Out[7]: 5 - In [8]: c.set_x(8) - In [9]: c.get_x() - Out[9]: 8 +.. code-block:: python + class Point: + # everything defined in here is in the class namespace - This is ugly and verbose -- `Java`_? + def __init__(self, x, y): + self.x = x + self.y = y -.. _Java: http://dirtsimple.org/2004/12/python-is-not-java.html + ## create an instance of the class + p = Point(3,4) + + ## access the attributes + print("p.x is:", p.x) + print("p.y is:", p.y) + + +see: ``Examples/Session07/simple_classes.py`` + +.. nextslide:: + +The Initializer + +The ``__init__`` special method is called when a new instance of a class is created. + +You can use it to do any set-up you need + +.. code-block:: python + + class Point(object): + def __init__(self, x, y): + self.x = x + self.y = y -properties ------------ -.. code-block:: ipython +It gets the arguments passed when you call the class object: - class C(object): - _x = None - @property - def x(self): - return self._x - @x.setter - def x(self, value): - self._x = value +.. code-block:: python + + Point(x, y) + +.. nextslide:: + + +What is this ``self`` thing? + +The instance of the class is passed as the first parameter for every method. + +"``self``" is only a convention -- but you DO want to use it. + +.. code-block:: python + + class Point: + def a_function(self, x, y): + ... - In [28]: c = C() - In [30]: c.x = 5 - In [31]: print c.x - 5 -Now the interface is like simple attribute access! +Does this look familiar from C-style procedural programming? + .. nextslide:: -What's up with the "@" symbols? +Anything assigned to a ``self`` attribute is kept in the instance +name space -Those are "decorations" it's a syntax for wrapping functions up with something special. +-- ``self`` *is* the instance. -We'll cover that in detail in a couple weeks, but for now -- just copy the syntax. +That's where all the instance-specific data is. .. code-block:: python - @property - def x(self): + class Point(object): + size = 4 + color= "red" + def __init__(self, x, y): + self.x = x + self.y = y + +.. nextslide:: + +Anything assigned in the class scope is a class attribute -- every +instance of the class shares the same one. + +Note: the methods defined by ``def`` are class attributes as well. -means: make a property called x with this as the "getter". +The class is one namespace, the instance is another. .. code-block:: python - @x.setter - def x(self, value): + class Point: + size = 4 + color= "red" + ... + def get_color(): + return self.color + >>> p3.get_color() + 'red' -means: make the "setter" of the 'x' property this new function -.. nextslide:: "Read Only" Attributes +class attributes are accessed with ``self`` also. -You do not need to define a setter. If you don't, you get a "read only" attribute: -.. code-block:: ipython +.. nextslide:: - In [11]: class D(object): - ....: def __init__(self, x=5): - ....: self._x = 5 - ....: @property - ....: def getx(self): - ....: """I am read only""" - ....: return self._x - ....: - In [12]: d = D() - In [13]: d.x - Out[13]: 5 - In [14]: d.x = 6 - --------------------------------------------------------------------------- - AttributeError Traceback (most recent call last) - in () - ----> 1 d.x = 6 - AttributeError: can't set attribute +Typical methods: -deleters ---------- +.. code-block:: python + + class Circle: + color = "red" -If you want to do something special when a property is deleted, you can define -a deleter is well: + def __init__(self, diameter): + self.diameter = diameter -.. code-block:: ipython + def grow(self, factor=2): + self.diameter = self.diameter * factor - In [11]: class D(object): - ....: def __init__(self, x=5): - ....: self._x = 5 - ....: @property - ....: def x(self): - ....: return self._x - ....: @x.deleter - ....: def x(self): - ....: del self._x -If you leave this out, the property can't be deleted, which is usually -what you want. +Methods take some parameters, manipulate the attributes in ``self``. -.. rst-class:: centered +They may or may not return something useful. -[demo: :download:`properties_example.py <../../Examples/Session07/properties_example.py>`] +.. nextslide:: +Gotcha! + +.. code-block:: python + + ... + def grow(self, factor=2): + self.diameter = self.diameter * factor + ... + In [205]: C = Circle(5) + In [206]: C.grow(2,3) + + TypeError: grow() takes at most 2 arguments (3 given) + +Huh???? I only gave 2 + +``self`` is implicitly passed in for you by python. + +(demo of bound vs. unbound methods) LAB ---- +.. rst-class:: medium + + We now know enough to do something useful. + +Let's say you need to render some html... + +The goal is to build a set of classes that render an html +page. + +We'll start with a single class, then add some sub-classes +to specialize the behavior + +Details in: -Let's use some of this to build a nice class to represent a Circle. +:ref:`exercise_html_renderer` -For now, Let's do steps 1-4 of: +Let's get a start with step 1. in class. + +I'll give you a few minutes to think about it -- then we'll get started as a group. -:ref:`homework_circle_class` Lightning Talks ---------------- .. rst-class:: medium + | + | Charles E Robisons + | + | Paul Vosper + | + +======================= +Subclassing/Inheritance +======================= + +Inheritance +----------- + +In object-oriented programming (OOP), inheritance is a way to reuse code +of existing objects, or to establish a subtype from an existing object. + +Objects are defined by classes, classes can inherit attributes and behavior +from pre-existing classes called base classes or super classes. + +The resulting classes are known as derived classes or subclasses. + +(http://en.wikipedia.org/wiki/Inheritance_%28object-oriented_programming%29) + +Subclassing +----------- + +A subclass "inherits" all the attributes (methods, etc) of the parent class. + +You can then change ("override") some or all of the attributes to change the behavior. + +You can also add new attributes to extend the behavior. + +The simplest subclass in Python: + +.. code-block:: python + + class A_subclass(The_superclass): + pass + +``A_subclass`` now has exactly the same behavior as ``The_superclass`` + +Overriding attributes +--------------------- + +Overriding is as simple as creating a new attribute with the same name: + +.. code-block:: python + + class Circle: + color = "red" + + ... + + class NewCircle(Circle): + color = "blue" + >>> nc = NewCircle + >>> print(nc.color) + blue + + +all the ``self`` instances will have the new attribute. + +Overriding methods +------------------ + +Same thing, but with methods (remember, a method *is* an attribute in python) + +.. code-block:: python + + class Circle: + ... + def grow(self, factor=2): + """grows the circle's diameter by factor""" + self.diameter = self.diameter * factor + ... + + class NewCircle(Circle): + ... + def grow(self, factor=2): + """grows the area by factor...""" + self.diameter = self.diameter * math.sqrt(2) + + +all the instances will have the new method + +.. nextslide:: + +Here's a program design suggestion: + +""" + +Whenever you override a method, the interface of the new method should be the same as the old. It should take the same parameters, return the same type, and obey the same preconditions and postconditions. + +If you obey this rule, you will find that any function designed to work with an instance of a superclass, like a Deck, will also work with instances of subclasses like a Hand or PokerHand. If you violate this rule, your code will collapse like (sorry) a house of cards. + +""" + | -| Andrew P Klock -| -| Vinay Gupta +| [ThinkPython 18.10] | +| ( Demo of class vs. instance attributes ) -======================== -Static and Class Methods -======================== - -.. rst-class:: left build -.. container:: +=================== +More on Subclassing +=================== - You've seen how methods of a class are *bound* to an instance when it is - created. +Overriding \_\_init\_\_ +----------------------- - And you've seen how the argument ``self`` is then automatically passed to - the method when it is called. +``__init__`` common method to override - And you've seen how you can call *unbound* methods on a class object so - long as you pass an instance of that class as the first argument. +You often need to call the super class ``__init__`` as well - .. rst-class:: centered +.. code-block:: python - **But what if you don't want or need an instance?** + class Circle: + color = "red" + def __init__(self, diameter): + self.diameter = diameter + ... + class CircleR(Circle): + def __init__(self, radius): + diameter = radius*2 + Circle.__init__(self, diameter) -Static Methods --------------- +exception to: "don't change the method signature" rule. -A *static method* is a method that doesn't get self: +More subclassing +---------------- +You can also call the superclass' other methods: -.. code-block:: ipython +.. code-block:: python - In [36]: class StaticAdder(object): + class Circle: + ... + def get_area(self, diameter): + return math.pi * (diameter/2.0)**2 - ....: @staticmethod - ....: def add(a, b): - ....: return a + b - ....: - In [37]: StaticAdder.add(3, 6) - Out[37]: 9 + class CircleR2(Circle): + ... + def get_area(self): + return Circle.get_area(self, self.radius*2) -.. rst-class:: centered +There is nothing special about ``__init__`` except that it gets called +automatically when you instantiate an instance. -[demo: :download:`static_method.py <../../Examples/Session07/static_method.py>`] +When to Subclass +---------------- -.. nextslide:: Why? +"Is a" relationship: Subclass/inheritance -.. rst-class:: build -.. container:: +"Has a" relationship: Composition - Where are static methods useful? +.. nextslide:: - Usually they aren't +"**Is** a" vs "**Has** a"** - 99% of the time, it's better just to write a module-level function +You may have a class that needs to accumulate an arbitrary number of objects. - An example from the Standard Library (tarfile.py): +A list can do that -- so should you subclass list? - .. code-block:: python +Ask yourself: - class TarInfo(object): - # ... - @staticmethod - def _create_payload(payload): - """Return the string payload filled with zero bytes - up to the next 512 byte border. - """ - blocks, remainder = divmod(len(payload), BLOCKSIZE) - if remainder > 0: - payload += (BLOCKSIZE - remainder) * NUL - return payload +-- **Is** your class a list (with some extra functionality)? +or -Class Methods -------------- +-- Does you class **have** a list? -A class method gets the class object, rather than an instance, as the first -argument +You only want to subclass list if your class could be used anywhere a list can be used. -.. code-block:: ipython - In [41]: class Classy(object): - ....: x = 2 - ....: @classmethod - ....: def a_class_method(cls, y): - ....: print "in a class method: ", cls - ....: return y ** cls.x - ....: - In [42]: Classy.a_class_method(4) - in a class method: - Out[42]: 16 +Attribute resolution order +-------------------------- -.. rst-class:: centered +When you access an attribute: -[demo: :download:`class_method.py <../../Examples/Session07/class_method.py>`] +``an_instance.something`` +Python looks for it in this order: -.. nextslide:: Why? + * Is it an instance attribute ? + * Is it a class attribute ? + * Is it a superclass attribute ? + * Is it a super-superclass attribute ? + * ... -.. rst-class:: build -.. container:: - Unlike static methods, class methods are quite common. +It can get more complicated... - They have the advantage of being friendly to subclassing. +https://www.python.org/download/releases/2.3/mro/ - Consider this: +http://python-history.blogspot.com/2010/06/method-resolution-order.html - .. code-block:: ipython - In [44]: class SubClassy(Classy): - ....: x = 3 - ....: +What are Python classes, really? +-------------------------------- - In [45]: SubClassy.a_class_method(4) - in a class method: - Out[45]: 64 +Putting aside the OO theory... -.. nextslide:: Alternate Constructors +Python classes are: -Because of this friendliness to subclassing, class methods are often used to -build alternate constructors. + * Namespaces -Consider the case of wanting to build a dictionary with a given iterable of -keys: + * One for the class object + * One for each instance -.. code-block:: ipython + * Attribute resolution order + * Auto tacking-on of ``self`` when methods are called - In [57]: d = dict([1,2,3]) - --------------------------------------------------------------------------- - TypeError Traceback (most recent call last) - in () - ----> 1 d = dict([1,2,3]) - TypeError: cannot convert dictionary update sequence element #0 to a sequence +That's about it -- really! -.. nextslide:: ``dict.fromkeys()`` +Type-Based dispatch +------------------- -The stock constructor for a dictionary won't work this way. So the dict object -implements an alternate constructor that *can*. +You'll see code that looks like this: .. code-block:: python - @classmethod - def fromkeys(cls, iterable, value=None): - '''OD.fromkeys(S[, v]) -> New ordered dictionary with keys from S. - If not specified, the value defaults to None. - ''' - self = cls() - for key in iterable: - self[key] = value - return self + if isinstance(other, A_Class): + Do_something_with_other + else: + Do_something_else -(this is actually from the OrderedDict implementation in ``collections.py``) -See also datetime.datetime.now(), etc.... +Usually better to use "duck typing" (polymorphism) -.. nextslide:: Curious? +But when it's called for: -Properties, Static Methods and Class Methods are powerful features of Pythons -OO model. + * ``isinstance()`` + * ``issubclass()`` -They are implemented using an underlying structure called *descriptors* +.. nextslide:: -`Here is a low level look`_ at how the descriptor protocol works. +GvR: "Five Minute Multi- methods in Python": -The cool part is that this mechanism is available to you, the programmer, as -well. +http://www.artima.com/weblogs/viewpost.jsp?thread=101605 -.. _Here is a low level look: https://docs.python.org/2/howto/descriptor.html +https://www.python.org/download/releases/2.3/mro/ +http://python-history.blogspot.com/2010/06/method-resolution-order.html -Extra Credit: use a class method to make an alternate constructor that takes -the diameter instead. -=============== -Special Methods -=============== +Wrap Up +------- -.. rst-class:: left -.. container:: +Thinking OO in Python: - Special methods (also called *magic* methods) are the secret sauce to Python's - Duck typing. +Think about what makes sense for your code: - Defining the appropriate special methods in your classes is how you make your - class act like standard classes. +* Code re-use +* Clean APIs +* ... -What's in a Name? ------------------ +Don't be a slave to what OO is *supposed* to look like. -We've seen at least one special method so far:: +Let OO work for you, not *create* work for you - __init__ +.. nextslide:: -It's all in the double underscores... +OO in Python: -Pronounced "dunder" (or "under-under") +The Art of Subclassing: *Raymond Hettinger* -try: ``dir(2)`` or ``dir(list)`` +http://pyvideo.org/video/879/the-art-of-subclassing -.. nextslide:: Generally Useful Special Methods +"classes are for code re-use -- not creating taxonomies" -Most classes should at lest have these special methods: +Stop Writing Classes: *Jack Diederich* -``object.__str__``: - Called by the str() built-in function and by the print statement to compute - the *informal* string representation of an object. +http://pyvideo.org/video/880/stop-writing-classes -``object.__unicode__``: - Called by the unicode() built-in function. This converts an object to an - *informal* unicode representation. +"If your class has only two methods -- and one of them is ``__init__`` +-- you don't need a class" - (more on Unicode later....) -``object.__repr__``: - Called by the repr() built-in function and by string conversions (reverse - quotes) to compute the *official* string representation of an object. +=== +LAB +=== - (ideally: ``eval( repr(something) ) == something``) +.. rst-class:: left medium + * html renderer: let's see how much more we can do! -Protocols ----------- +.. rst-class:: left -.. rst-class:: build -.. container:: + :ref:`exercise_html_renderer` - The set of special methods needed to emulate a particular type of Python object - is called a *protocol*. + Now we have a base class, and we can: - Your classes can "become" like Python built-in classes by implementing the - methods in a given protocol. + * Subclass overriding class attributes + * Subclass overriding a method + * Subclass overriding the ``__init__`` - Remember, these are more *guidelines* than laws. Implement what you need. + These are the core OO approaches -.. nextslide:: The Numerics Protocol +=================== +More on Subclassing +=================== -Do you want your class to behave like a number? Implement these methods: +.. rst-class:: left + + This is a great talk (yes, I'm repeating): + + The Art of Subclassing: *Raymond Hettinger* + + http://pyvideo.org/video/879/the-art-of-subclassing + + If you haven't watched it, It's well worth your time + +What's a Subclass For? +---------------------- + +The most salient points from that video are as follows: + +* **Subclassing is not for Specialization** + +* **Subclassing is for Reusing Code** + +* **Bear in mind that the subclass is in charge** + + +Multiple Inheritance +-------------------- + +Multiple inheritance: Inheriting from more than one class + +Simply provide more than one parent. .. code-block:: python - object.__add__(self, other) - object.__sub__(self, other) - object.__mul__(self, other) - object.__floordiv__(self, other) - object.__mod__(self, other) - object.__divmod__(self, other) - object.__pow__(self, other[, modulo]) - object.__lshift__(self, other) - object.__rshift__(self, other) - object.__and__(self, other) - object.__xor__(self, other) - object.__or__(self, other) + class Combined(Super1, Super2, Super3): + def __init__(self, something, something else): + # some custom initialization here. + Super1.__init__(self, ......) + Super2.__init__(self, ......) + Super3.__init__(self, ......) + # possibly more custom initialization -.. nextslide:: The Container Protocol +(calls to the super class ``__init__`` are optional -- case dependent) -Want to make a container type? Here's what you need: +.. nextslide:: Method Resolution Order .. code-block:: python - object.__len__(self) - object.__getitem__(self, key) - object.__setitem__(self, key, value) - object.__delitem__(self, key) - object.__iter__(self) - object.__reversed__(self) - object.__contains__(self, item) - object.__getslice__(self, i, j) - object.__setslice__(self, i, j, sequence) - object.__delslice__(self, i, j) + class Combined(Super1, Super2, Super3) +Attributes are located bottom-to-top, left-to-right -.. nextslide:: An Example +* Is it an instance attribute ? +* Is it a class attribute ? +* Is it a superclass attribute ? -Each of these methods supports a common Python operation. + - Is it an attribute of the left-most superclass? + - Is it an attribute of the next superclass? + - and so on up the hierarchy... -For example, to make '+' work with a sequence type in a vector-like fashion, -implement ``__add__``: +* Is it a super-superclass attribute ? +* ... also left to right ... -.. code-block:: python +http://python-history.blogspot.com/2010/06/method-resolution-order.html - def __add__(self, v): - """return the element-wise vector sum of self and v - """ - assert len(self) == len(v) - return vector([x1 + x2 for x1, x2 in zip(self, v)]) +.. nextslide:: Mix-ins -.. rst-class:: centered +So why would you want to do this? One reason: *mixins* -[a more complete example may be seen :download:`here <./supplements/vector.py>`] +Provides an subset of expected functionality in a re-usable package. +Huh? this is why -- +Hierarchies are not always simple: -.. nextslide:: Summary +* Animal -Use special methods when you want your class to act like a "standard" class in -some way. + * Mammal -Look up the special methods you need and define them. + * GiveBirth() -There's more to read about the details of implementing these methods: + * Bird -* https://docs.python.org/2/reference/datamodel.html#special-method-names -* http://www.rafekettler.com/magicmethods.html + * LayEggs() +Where do you put a Platypus? -Lightning Talks ----------------- +Real World Example: `FloatCanvas`_ + +.. _FloatCanvas: https://github.com/wxWidgets/wxPython/blob/master/wx/lib/floatcanvas/FloatCanvas.py#L485 + + +``super()`` +----------- + +``super()``: use it to call a superclass method, rather than explicitly calling +the unbound method on the superclass. + +instead of: + +.. code-block:: python + + class A(B): + def __init__(self, *args, **kwargs) + B.__init__(self, *argw, **kwargs) + ... + +You can do: + +.. code-block:: python + + class A(B): + def __init__(self, *args, **kwargs) + super().__init__(*argw, **kwargs) + ... + +.. nextslide:: Caveats + +Caution: There are some subtle differences with multiple inheritance. + +You can use explicit calling to ensure that the 'right' method is called. .. rst-class:: medium -| -| Ousmane Conde -| -| Salim Hassan Hamed -| + **Background** -LAB ----- +Two seminal articles about ``super()``: -Let's complete our nifty Circle class: +"Super Considered Harmful" -- James Knight -Steps 5-8 of: +https://fuhm.net/super-harmful/ -:ref:`homework_circle_class` +"super() considered super!" -- Raymond Hettinger +http://rhettinger.wordpress.com/2011/05/26/super-considered-super/ + +(Both worth reading....) ======== Homework ======== -Complete the Circle class +Complete your html renderer. + +Watch these videos: + +Python class toolkit: *Raymond Hettinger* -- https://youtu.be/HTLu2DFOdTg + +https://speakerdeck.com/pyconslides/pythons-class-development-toolkit-by-raymond-hettinger + +The Art of Subclassing: *Raymond Hettinger* -- http://pyvideo.org/video/879/the-art-of-subclassing + +Stop Writing Classes: *Jack Diederich* -- http://pyvideo.org/video/880/stop-writing-classes -Decide what you are going to do for your proejct, and send me a simple proposal. +Read up on super() diff --git a/slides_sources/source/session08.rst b/slides_sources/source/session08.rst index f1a9624c..609a26e1 100644 --- a/slides_sources/source/session08.rst +++ b/slides_sources/source/session08.rst @@ -1,10 +1,8 @@ -****************************************************** -Session Eight: Callable classes, Iterators, Generators -****************************************************** +.. include:: include.rst -.. rst-class:: large centered - -The tools of Pythonicity +**************************************************** +Session Eight: More OO: Properties, Special methods. +**************************************************** ================ @@ -14,613 +12,923 @@ Review/Questions Review of Previous Class ------------------------ -* Advanced OO Concepts - - * Properties - * Special Methods +* Basic OO Concepts -Homework review ---------------- + * Classes + * class vs. instance attributes + * subclassing + * overriding methods / attributes -* Circle Class -* Writing Tests using the ``pytest`` module Lightning Talks Today: ----------------------- .. rst-class:: medium -Alireza Hashemloo + Paul Briant -Arielle R Simmons + Jay Raina -Eric W Westman + Josh Hicks -Ryan J Albright -========================= -Emulating Standard types -========================= +Personal Project +----------------- -.. rst-class:: medium +The bulk of the homework for the rest of the class will be a personal project: - Making your classes behave like the built-ins +* It can be for fun, or something you need for your job. +* It should be large enough to take a few weeks homework time to do. +* **It should demostrate that you can do something useful with python.** +* It should follow PEP8 (https://www.python.org/dev/peps/pep-0008) +* It should have unit tests! +* Ideally, it will be in version control (gitHub) +* I don't require any specific python features (i.e. classes): use + what is appropriate for your project +* Due the Sunday after the last class (December 11) -Callable classes ------------------ +| +| By next week, send me a project proposal: short and sweet. +| -We've been using functions a lot: +Homework review +--------------- + +* html renderer +* Test-driven development + +Homework Notes: +--------------- + +``**kwargs`` will always define a ``kwargs`` dict: it just may be empty. + +And there is no need to check if it's empty before trying to loop through it. .. code-block:: python - def my_fun(something): - do_something - ... - return something + if self.attributes != {}: + for key, value in self.attributes.items(): + self.atts += ' {}="{}"'.format(key, value) -And then we can call it: +no need for ``!= {}`` -- an empty dict is "Falsey" + +**but** no need for that check at all. If the dict (or list, or tuple) is +empty, then the loop is a do-nothing operation: .. code-block:: python - result = my_fun(some_arguments) + for key, value in self.attributes.items(): + self.atts += ' {}="{}"'.format(key, value) -.. nextslide:: +will not run if self.attributes is an empty dict. -But what if we need to store some data to know how to evaluate that function? -Example: a function that computes a quadratic function: +Dynamic typing and class attributes +----------------------------------- -.. math:: +* what happens if we change a class attribute after creating instances?? - y = a x^2 + bx + c + - let's try ``Element.indent`` ... -You could pass in a, b and c each time: +* setting an instance attribute overwrites class attributes: -.. code-block:: python +``self.tag =`` overrights the class attribute (sort of!) - def quadratic(x, a, b, c): - return a * x**2 + b * x + c +Let's experiment with that. -But what if you are using the same a, b, and c numerous times? -Or what if you need to pass this in to something -(like map) that requires a function that takes a single argument? +dict as switch +-------------- -"Callables" ------------ +.. rst-class:: medium -Various places in python expect a "callable" -- something that you can -call like a function: + What to use instead of "switch-case"? + +A number of languages have a "switch-case" construct:: + + switch(argument) { + case 0: + return "zero"; + case 1: + return "one"; + case 2: + return "two"; + default: + return "nothing"; + }; + +How do you spell this in python? + +``if-elif`` chains +------------------- + +The obvious way to spell it is a chain of ``elif`` statements: .. code-block:: python - a_result = something(some_arguments) + if argument == 0: + return "zero" + elif argument == 1: + return "one" + elif argument == 2: + return "two" + else: + return "nothing" -"something" in this case is often a function, but can be anything else -that is "callable". +And there is nothing wrong with that, but.... -What have we been introduced to recently that is "callable", but not a -function object? +.. nextslide:: -Custom callable objects ------------------------- +The ``elif`` chain is neither elegant nor efficient. -The trick is one of Python's "magic methods" +There are a number of ways to spell it in python -- one elegant one is to use a dict: .. code-block:: python - __call__(*args, **kwargs) + arg_dict = {0:"zero", 1:"one", 2: "two"} + dict.get(argument, "nothing") -If you define a ``__call__`` method in your class, it will be used when -code "calls" an instance of your class: +Simple, elegant, and fast. -.. code-block:: python +You can do a dispatch table by putting functions as the value. - class Callable(object): - def __init__(self, .....) - some_initilization - def __call__(self, some_parameters) +Example: Chris' mailroom2 solution. -Then you can do: +Polymorphism as switch: +----------------------- -.. code-block:: python +It turns out that a lot of uses of switch-case in non-OO languages is to +change behaviour depending on teh type of object being worked on:: - callable_instance = Callable(some_arguments) + switch(object.tag) { + case 'html': + render_html_element; + case 'p': + render_p_element; + ... - result = callable_instance(some_arguments) +I saw some of this in the html renderer: +.. nextslide:: -Writing your own sequence type -------------------------------- +.. code-block:: python -Python has a handful of nifty sequence types built in: + def render(out_file, ind=""): + .... + if self.tag == 'html': + tag = "" + end_tag = "" + elif self.tag == 'p': + tag = "

        " + end_tag = "

        " - * lists - * tuples - * strings - * ... +This will work, of course, but: -But what if you need a sequence that isn't built in? +* it means you need to know every tag that you might render when you write this render method. -A Sparse array --------------- +* In a more complex system, you will need to go update all sorts of things all over teh place when you add a tag. -Example: Sparse Array +* It means anyone extending the system with more tags needs to edit the core base class. -Sometimes we have data sets that are "sparse" -- i.e. most of the values are zero. +Polymorphism +------------ -So you may not want to store a huge bunch of zeros. +The alternative is to use polymorphism: -But you do want the array to look like a regular old sequence. +Your ``render()`` method doesn't need to know what all the objects are +that it may need to render. -So how do you do that? +All it needs to know is that they all will have a method +that does the right thing. -The Sequence protocol ----------------------- +So the above becomes, simply: -You can make your class look like a regular python sequence by defining -the set of special methods you need: +.. code-block:: python -https://docs.python.org/2/reference/datamodel.html#emulating-container-types + def render(out_file, ind=""): + .... + tag, end_tag = self.make_tags() -and +This is known as polymorphism, because many different objects are behave +the same way. -http://www.rafekettler.com/magicmethods.html#sequence +.. nextslide:: -The key ones are: +This is usally handled by subclassing, so they all get all teh same +methods by default, and you only need to specialize the ones that need it. -+-------------------+-----------------------+ -| ``__len__`` | for ``len(sequence)`` | -+-------------------+-----------------------+ -| ``__getitem__`` | for ``x = seq[i]`` | -+-------------------+-----------------------+ -| ``__setitem__`` | for ``seq[i] = x`` | -+-------------------+-----------------------+ -| ``__delitem__`` | for ``del seq[i]`` | -+-------------------+-----------------------+ -| ``__contains__`` | for ``x in seq`` | -+-------------------+-----------------------+ +But in Python -- it can be done with duck-typing instead, as the TextWrapper example. -==== -LAB -==== +Duck typing and EAFP +-------------------- -.. rst-class:: medium +* notes on Duck Typing: :ref:`exercise_html_renderer` - Let's do the previous motivating examples. +* put the ``except`` as close as you can to where you expect an exception to be raised! -Callables: +* Let's look at a couple ways to do that. + +Code Review ----------- -Write a class for a quadratic equation. +* anyone stuck that wants to work through your code? -* The initializer for that class should take the parameters: ``a, b, c`` +* And/or go through mine... -* It should store those parameters as attributes. +Lightning Talks: +---------------- -* The resulting instance should evaluate the function when called, and return the result: +.. rst-class:: medium + | + | Paul Briant + | + | Jay Raina + | + | Josh Hicks -.. code-block:: python - my_quad = Quadratic(a=2, b=3, c=1) - my_quad(0) +========== +Properties +========== -Sparse Array: -------------- +.. rst-class:: left +.. container:: + + One of the strengths of Python is lack of clutter. -Write a class for a sparse array + Attributes are simple and concise: -* Internally, it can store the values in a dict, with the index as the keys) + .. code-block:: ipython -* It should take a sequence of values as an initializer + In [5]: class C: + def __init__(self): + self.x = 5 + In [6]: c = C() + In [7]: c.x + Out[7]: 5 + In [8]: c.x = 8 + In [9]: c.x + Out[9]: 8 -* you should be able to tell how long it is: ``len(my_array)`` -* It should support getting and setting particular elements via indexing. +Getter and Setters? +------------------- + +But what if you need to add behavior later? -* It should support deleting an element by index. +.. rst-class:: build -* It should raise an ``IndexError`` if you try to access an index beyond the end. +* do some calculation +* check data validity +* keep things in sync -* Can you make it support slicing? -* How else can you make it like a list? +.. nextslide:: .. code-block:: ipython - In [10]: my_array = SparseArray( (1,0,0,0,2,0,0,0,5) ) - In [11]: my_array[4] - Out[11]: 2 - In [12]: my_array[2] - Out[12]: 0 + In [5]: class C: + ...: def __init__(self): + ...: self.x = 5 + ...: def get_x(self): + ...: return self.x + ...: def set_x(self, x): + ...: self.x = x + ...: + In [6]: c = C() + In [7]: c.get_x() + Out[7]: 5 + In [8]: c.set_x(8) + In [9]: c.get_x() + Out[9]: 8 -Lightning Talks ----------------- -.. rst-class:: medium + This is ugly and verbose -- `Java`_? -| -| Alireza Hashemloo -| -| Arielle R Simmons -| +.. _Java: http://dirtsimple.org/2004/12/python-is-not-java.html -========================= -Iterators and Generators -========================= +properties +----------- -.. rst-class:: medium +.. code-block:: ipython - What goes on in those for loops? + class C: + _x = None + @property + def x(self): + return self._x + @x.setter + def x(self, value): + self._x = value -Iterators ---------- + In [28]: c = C() + In [30]: c.x = 5 + In [31]: print(c.x) + 5 -Iterators are one of the main reasons Python code is so readable: +Now the interface is like simple attribute access! + +.. nextslide:: + +What's up with the "@" symbols? + +Those are "decorations" it's a syntax for wrapping functions up with something special. + +We'll cover that in detail in a couple weeks, but for now -- just copy the syntax. .. code-block:: python - for x in just_about_anything: - do_stuff(x) + @property + def x(self): -It does not have to be a "sequence": list, tuple, etc. +means: make a property called x with this as the "getter". -Rather: you can loop through anything that satisfies the "iterator protocol" +.. code-block:: python -http://docs.python.org/library/stdtypes.html#iterator-types + @x.setter + def x(self, value): -The Iterator Protocol +means: make the "setter" of the 'x' property this new function + +"Read Only" Attributes ---------------------- -An iterator must have the following methods: +You do not need to define a setter. If you don't, you get a "read only" attribute: -.. code-block:: python +.. code-block:: ipython - an_iterator.__iter__() + In [11]: class D(): + ....: def __init__(self, x=5): + ....: self._x = 5 + ....: @property + ....: def getx(self): + ....: """I am read only""" + ....: return self._x + ....: + In [12]: d = D() + In [13]: d.x + Out[13]: 5 + In [14]: d.x = 6 + --------------------------------------------------------------------------- + AttributeError Traceback (most recent call last) + in () + ----> 1 d.x = 6 + AttributeError: can't set attribute + +Deleters +--------- -Returns the iterator object itself. This is required to allow both containers -and iterators to be used with the ``for`` and ``in`` statements. +If you want to do something special when a property is deleted, you can define +a deleter is well: -.. code-block:: python +.. code-block:: ipython - an_iterator.next() + In [11]: class D(): + ....: def __init__(self, x=5): + ....: self._x = 5 + ....: @property + ....: def x(self): + ....: return self._x + ....: @x.deleter + ....: def x(self): + ....: del self._x -Returns the next item from the container. If there are no further items, -raises the ``StopIteration`` exception. +If you leave this out, the property can't be deleted, which is usually +what you want. -List as an Iterator: --------------------- +.. rst-class:: centered + +[demo: :download:`properties_example.py <../../Examples/Session08/properties_example.py>`] + + +=== +LAB +=== + +Let's use some of this to build a nice class to represent a Circle. + +For now, Let's do steps 1-4 of: + +:ref:`exercise_circle_class` + + +======================== +Static and Class Methods +======================== + +.. rst-class:: left build +.. container:: + + You've seen how methods of a class are *bound* to an instance when it is + created. + + And you've seen how the argument ``self`` is then automatically passed to + the method when it is called. + + And you've seen how you can call *unbound* methods on a class object so + long as you pass an instance of that class as the first argument. + + + .. rst-class:: centered + + **But what if you don't want or need an instance?** + + +Static Methods +-------------- + +A *static method* is a method that doesn't get self: .. code-block:: ipython - In [10]: a_list = [1,2,3] + In [36]: class StaticAdder: - In [11]: list_iter = a_list.__iter__() + ....: @staticmethod + ....: def add(a, b): + ....: return a + b + ....: - In [12]: list_iter.next() - Out[12]: 1 + In [37]: StaticAdder.add(3, 6) + Out[37]: 9 - In [13]: list_iter.next() - Out[13]: 2 +.. rst-class:: centered - In [14]: list_iter.next() - Out[14]: 3 +[demo: :download:`static_method.py <../../Examples/Session08/static_method.py>`] - In [15]: list_iter.next() - -------------------------------------------------- - StopIteration Traceback (most recent call last) - in () - ----> 1 list_iter.next() - StopIteration: -Making an Iterator -------------------- +.. nextslide:: Why? -A simple version of ``xrange()`` +.. rst-class:: build +.. container:: -.. code-block:: python + Where are static methods useful? - class IterateMe_1(object): - def __init__(self, stop=5): - self.current = 0 - self.stop = stop - def __iter__(self): - return self - def next(self): - if self.current < self.stop: - self.current += 1 - return self.current - else: - raise StopIteration - -(demo: :download:`iterator_1.py <../../Examples/Session08/iterator_1.py>`) - -``iter()`` ------------ + Usually they aren't + + 99% of the time, it's better just to write a module-level function + + An example from the Standard Library (tarfile.py): -How do you get the iterator object (the thing with the next() method) from an "iterable"? + .. code-block:: python -The ``iter()`` function: + class TarInfo: + # ... + @staticmethod + def _create_payload(payload): + """Return the string payload filled with zero bytes + up to the next 512 byte border. + """ + blocks, remainder = divmod(len(payload), BLOCKSIZE) + if remainder > 0: + payload += (BLOCKSIZE - remainder) * NUL + return payload + + +Class Methods +------------- + +A class method gets the class object, rather than an instance, as the first +argument .. code-block:: ipython - In [20]: iter([2,3,4]) - Out[20]: + In [41]: class Classy: + ....: x = 2 + ....: @classmethod + ....: def a_class_method(cls, y): + ....: print("in a class method: ", cls) + ....: return y ** cls.x + ....: + In [42]: Classy.a_class_method(4) + in a class method: + Out[42]: 16 + +.. rst-class:: centered - In [21]: iter("a string") - Out[21]: +[demo: :download:`class_method.py <../../Examples/Session08/class_method.py>`] - In [22]: iter( ('a', 'tuple') ) - Out[22]: -for an arbitrary object, ``iter()`` calls the ``__iter__`` method. But it knows about some objects (``str``, for instance) that don't have a ``__iter__`` method. +Why? +---- +.. rst-class:: build +.. container:: -What does ``for`` do? ----------------------- + Unlike static methods, class methods are quite common. + + They have the advantage of being friendly to subclassing. -Now that we know the iterator protocol, we can write something like a for loop: + Consider this: + .. code-block:: ipython -:download:`my_for.py <../../Examples/Session08/my_for.py>` + In [44]: class SubClassy(Classy): + ....: x = 3 + ....: + + In [45]: SubClassy.a_class_method(4) + in a class method: + Out[45]: 64 + +Alternate Constructors +----------------------- + +Because of this friendliness to subclassing, class methods are often used to +build alternate constructors. + +Consider the case of wanting to build a dictionary with a given iterable of +keys: + +.. code-block:: ipython + + In [57]: d = dict([1,2,3]) + --------------------------------------------------------------------------- + TypeError Traceback (most recent call last) + in () + ----> 1 d = dict([1,2,3]) + + TypeError: cannot convert dictionary update sequence element #0 to a sequence + + +.. nextslide:: ``dict.fromkeys()`` + +The stock constructor for a dictionary won't work this way. So the dict object +implements an alternate constructor that *can*. .. code-block:: python - def my_for(an_iterable, func): - """ - Emulation of a for loop. + @classmethod + def fromkeys(cls, iterable, value=None): + '''OD.fromkeys(S[, v]) -> New ordered dictionary with keys from S. + If not specified, the value defaults to None. + ''' + self = cls() + for key in iterable: + self[key] = value + return self - func() will be called with each item in an_iterable - """ - # equiv of "for i in l:" - iterator = iter(an_iterable) - while True: - try: - i = iterator.next() - except StopIteration: - break - func(i) +(this is actually from the OrderedDict implementation in ``collections.py``) +See also datetime.datetime.now(), etc.... -Itertools ---------- +.. nextslide:: Curious? -``itertools`` is a collection of utilities that make it easy to -build an iterator that iterates over sequences in various common ways +Properties, Static Methods and Class Methods are powerful features of Python's +OO model. -http://docs.python.org/library/itertools.html +They are implemented using an underlying structure called *descriptors* -NOTE: +`Here is a low level look`_ at how the descriptor protocol works. -iterators are not *only* for ``for`` +The cool part is that this mechanism is available to you, the programmer, as +well. -They can be used with anything that expects an iterator: +.. _Here is a low level look: https://docs.python.org/2/howto/descriptor.html -``sum``, ``tuple``, ``sorted``, and ``list`` -For example. +For the Circle Lab: use a class method to make an alternate constructor that takes +the diameter instead. -LAB ------ +=============== +Special Methods +=============== + +.. rst-class:: left +.. container:: -In the ``Examples/session08`` dir, you will find: -:download:`iterator_1.py <../../Examples/Session08/iterator_1.py>` + Special methods (also called *magic* methods) are the secret sauce to Python's Duck typing. -* Extend (``iterator_1.py`` ) to be more like ``xrange()`` -- add three input parameters: ``iterator_2(start, stop, step=1)`` + Defining the appropriate special methods in your classes is how you make your class act like standard classes. -* See what happens if you break out in the middle of the loop: +What's in a Name? +----------------- + +We've seen at least one special method so far:: + + __init__ + +It's all in the double underscores... + +Pronounced "dunder" (or "under-under") + +try: ``dir(2)`` or ``dir(list)`` + +.. nextslide:: Generally Useful Special Methods + +Most classes should at least have these special methods: + +``object.__str__``: + Called by the str() built-in function and by the print function to compute + the *informal* string representation of an object. + +``object.__repr__``: + Called by the repr() built-in function to compute the *official* string representation of an object. + + (ideally: ``eval( repr(something) ) == something``) + +(demo) + +Protocols +---------- + +.. rst-class:: build +.. container:: + + The set of special methods needed to emulate a particular type of Python object is called a *protocol*. + + Your classes can "become" like Python built-in classes by implementing the + methods in a given protocol. + + Remember, these are more *guidelines* than laws. Implement what you need. + + +.. nextslide:: The Numerics Protocol + +Do you want your class to behave like a number? Implement these methods: .. code-block:: python - it = IterateMe_2(2, 20, 2) - for i in it: - if i > 10: break - print i + object.__add__(self, other) + object.__sub__(self, other) + object.__mul__(self, other) + object.__floordiv__(self, other) + object.__mod__(self, other) + object.__divmod__(self, other) + object.__pow__(self, other[, modulo]) + object.__lshift__(self, other) + object.__rshift__(self, other) + object.__and__(self, other) + object.__xor__(self, other) + object.__or__(self, other) -And then pick up again: +.. nextslide:: The Container Protocol + +Want to make a container type? Here's what you need: .. code-block:: python - for i in it: - print i + object.__len__(self) + object.__getitem__(self, key) + object.__setitem__(self, key, value) + object.__delitem__(self, key) + object.__iter__(self) + object.__reversed__(self) + object.__contains__(self, item) + object.__getslice__(self, i, j) + object.__setslice__(self, i, j, sequence) + object.__delslice__(self, i, j) -* Does ``xrange()`` behave the same? - - make yours match ``xrange()`` +.. nextslide:: An Example -LAB2 ------ +Each of these methods supports a common Python operation. -Make the SparseArray class from the previous lab an iterator, so you can do: +For example, to make '+' work with a sequence type in a vector-like fashion, +implement ``__add__``: .. code-block:: python - for i in my_sparse_array: - do_something_with(i) + def __add__(self, v): + """return the element-wise vector sum of self and v + """ + assert len(self) == len(v) + return vector([x1 + x2 for x1, x2 in zip(self, v)]) +.. rst-class:: centered -Lightning Talks ----------------- +A more complete example may be seen in: -.. rst-class:: medium +Examples/Session08/vector.py -| -| Eric W Westman -| -| Ryan J Albright -| +or: :download:`here <../../Examples/Session08/vector.py>` +.. nextslide:: Summary +Use special methods when you want your class to act like a "standard" class in +some way. -Generators ----------- +Look up the special methods you need and define them. -Generators give you the iterator immediately: +There's more to read about the details of implementing these methods: -* no access to the underlying data ... if it even exists +* https://docs.python.org/3.5/reference/datamodel.html#special-method-names +* https://github.com/RafeKettler/magicmethods/blob/master/magicmethods.markdown +=== +LAB +=== -Conceptually: - Iterators are about various ways to loop over data, generators generate the data on the fly. +Let's complete our nifty Circle class: -Practically: - You can use either one either way (and a generator is one type of iterator) +Steps 5-8 of: - Generators do some of the book-keeping for you -- simpler syntax. +:ref:`exercise_circle_class` -yield ------- -``yield`` is a way to make a quickie generator with a function: +========================= +Emulating Standard types +========================= -.. code-block:: python +.. rst-class:: medium - def a_generator_function(params): - some_stuff - yield something + Making your classes behave like the built-ins -Generator functions "yield" a value, rather than returning a value. -State is preserved in between yields. +Callable classes +----------------- +We've been using functions a lot: -.. nextslide:: generator functions +.. code-block:: python -A function with ``yield`` in it is a "factory" for a generator + def my_fun(something): + do_something + ... + return something -Each time you call it, you get a new generator: +And then we can call it: .. code-block:: python - gen_a = a_generator() - gen_b = a_generator() + result = my_fun(some_arguments) + +.. nextslide:: -Each instance keeps its own state. +But what if we need to store some data to know how to evaluate that function? -Really just a shorthand for an iterator class that does the book keeping for you. +Example: a function that computes a quadratic function: -.. nextslide:: +.. math:: -An example: like ``xrange()`` + y = a x^2 + bx + c + +You could pass in a, b and c each time: .. code-block:: python - def y_xrange(start, stop, step=1): - i = start - while i < stop: - yield i - i += step + def quadratic(x, a, b, c): + return a * x**2 + b * x + c -Real World Example from FloatCanvas: +But what if you are using the same a, b, and c numerous times? -https://github.com/svn2github/wxPython/blob/master/3rdParty/FloatCanvas/floatcanvas/FloatCanvas.py#L100 +Or what if you need to pass this in to something +(like map) that requires a function that takes a single argument? +"Callables" +----------- -.. nextslide:: +Various places in python expect a "callable" -- something that you can +call like a function: -Note: +.. code-block:: python -.. code-block:: ipython + a_result = something(some_arguments) - In [164]: gen = y_xrange(2,6) - In [165]: type(gen) - Out[165]: generator - In [166]: dir(gen) - Out[166]: - ... - '__iter__', - ... - 'next', +"something" in this case is often a function, but can be anything else +that is "callable". +What have we been introduced to recently that is "callable", but not a +function object? -So the generator **is** an iterator +Custom callable objects +------------------------ -Note: A generator function can also be a method in a class +The trick is one of Python's "magic methods" +.. code-block:: python -.. More about iterators and generators: + __call__(*args, **kwargs) -.. http://www.learningpython.com/2009/02/23/iterators-iterables-and-generators-oh-my/ +If you define a ``__call__`` method in your class, it will be used when +code "calls" an instance of your class: -:download:`yield_example.py <../../Examples/Session08/yield_example.py>` +.. code-block:: python -generator comprehension ------------------------ + class Callable: + def __init__(self, .....) + some_initilization + def __call__(self, some_parameters) -yet another way to make a generator: +Then you can do: .. code-block:: python - >>> [x * 2 for x in [1, 2, 3]] - [2, 4, 6] - >>> (x * 2 for x in [1, 2, 3]) - at 0x10911bf50> - >>> for n in (x * 2 for x in [1, 2, 3]): - ... print n - ... 2 4 6 + callable_instance = Callable(some_arguments) + result = callable_instance(some_arguments) -More interesting if [1, 2, 3] is also a generator -LAB ----- +Writing your own sequence type +------------------------------- -Write a few generators: +Python has a handful of nifty sequence types built in: -* Sum of integers -* Doubler -* Fibonacci sequence -* Prime numbers + * lists + * tuples + * strings + * ... -(test code in -:download:`test_generator.py <../../Examples/Session08/test_generator.py>`) +But what if you need a sequence that isn't built in? -Descriptions: +A Sparse array +-------------- -Sum of the integers: - keep adding the next integer +Example: Sparse Array - 0 + 1 + 2 + 3 + 4 + 5 + ... +Sometimes we have data sets that are "sparse" -- i.e. most of the values are zero. - so the sequence is: +So you may not want to store a huge bunch of zeros. - 0, 1, 3, 6, 10, 15 ..... +But you do want the array to look like a regular old sequence. -.. nextslide:: +So how do you do that? + +The Sequence protocol +---------------------- + +You can make your class look like a regular python sequence by defining +the set of special methods you need: + +https://docs.python.org/3/reference/datamodel.html#emulating-container-types + +and + +https://github.com/RafeKettler/magicmethods/blob/master/magicmethods.markdown#sequence + +The key ones are: + ++-------------------+-----------------------+ +| ``__len__`` | for ``len(sequence)`` | ++-------------------+-----------------------+ +| ``__getitem__`` | for ``x = seq[i]`` | ++-------------------+-----------------------+ +| ``__setitem__`` | for ``seq[i] = x`` | ++-------------------+-----------------------+ +| ``__delitem__`` | for ``del seq[i]`` | ++-------------------+-----------------------+ +| ``__contains__`` | for ``x in seq`` | ++-------------------+-----------------------+ + +==== +LAB +==== + +.. rst-class:: medium + + Let's do the previous motivating examples. -Doubler: - Each value is double the previous value: +Callables: +----------- - 1, 2, 4, 8, 16, 32, +Write a class for a quadratic equation. -Fibonacci sequence: - The fibonacci sequence as a generator: +* The initializer for that class should take the parameters: ``a, b, c`` - f(n) = f(n-1) + f(n-2) +* It should store those parameters as attributes. - 1, 1, 2, 3, 5, 8, 13, 21, 34... +* The resulting instance should evaluate the function when called, and return the result: -Prime numbers: - Generate the prime numbers (numbers only divisible by them self and 1): - 2, 3, 5, 7, 11, 13, 17, 19, 23... +.. code-block:: python -Others to try: - Try x^2, x^3, counting by threes, x^e, counting by minus seven, ... + my_quad = Quadratic(a=2, b=3, c=1) + + my_quad(0) + +Sparse Array: +------------- + +Write a class for a sparse array: + +:ref:`exercise_sparse_array` ======== Homework ======== -.. rst-class:: left medium +.. rst-class:: left + + Reading: + + Lambda: + + http://www.blog.pythonlibrary.org/2015/10/28/python-101-lambda-basics/ + + https://pythonconquerstheuniverse.wordpress.com/2011/08/29/lambda_tutorial/ + + Complete the Circle class + + Complete the Sparse Array class + + Decide what you are going to do for your project, and send me a simple proposal. Get started if you can. - Finish up the Labs from class + Good book: - Get started on your project! + Python 3 Object Oriented Programming: *Dusty Phillips* - (Send me a proposal if you haven't already) + (Dusty is a local boy and co-founder of PuPPy) diff --git a/slides_sources/source/session09.rst b/slides_sources/source/session09.rst index 6f2fc56d..e6d953d7 100644 --- a/slides_sources/source/session09.rst +++ b/slides_sources/source/session09.rst @@ -1,1274 +1,656 @@ +.. include:: include.rst -.. Foundations 2: Python slides file, created by - hieroglyph-quickstart on Wed Apr 2 18:42:06 2014. +************************************************************ +Anonymous Functions and Iterators, Iterables, and Generators +************************************************************ - -****************************************************************** -Session Nine: Decorators, Context Managers, Packages and packaging -****************************************************************** - -====================== -Lightning Talks Today: -====================== +==================== +Lightning Talks Now: +==================== .. rst-class:: medium - Lou Ascoli - - Ralph Brand - - Danielle Marcos - - Carolyn Evans - -================ -Review/Questions -================ - -Review of complete sparse array class - -========== -Decorators -========== - -**A Short Reminder** - -.. rst-class:: left -.. container:: - - Functions are things that generate values based on input (arguments). - - In Python, functions are first-class objects. - - This means that you can bind symbols to them, pass them around, just like - other objects. - - Because of this fact, you can write functions that take functions as - arguments and/or return functions as values: - - .. code-block:: python + Jack M Hefner - def substitute(a_function): - def new_function(*args, **kwargs): - return "I'm not that other function" - return new_function + Ninad Naik -A Definition ------------- - -There are many things you can do with a simple pattern like this one. -So many, that we give it a special name: - -.. rst-class:: centered medium - -**Decorator** - -.. rst-class:: build centered -.. container:: - - "A decorator is a function that takes a function as an argument and - returns a function as a return value."" - - That's nice and all, but why is that useful? - -An Example ----------- - -Imagine you are trying to debug a module with a number of functions like this -one: - -.. code-block:: python - - def add(a, b): - return a + b - -.. rst-class:: build -.. container:: - - You want to see when each function is called, with what arguments and - with what result. So you rewrite each function as follows: - - .. code-block:: python - - def add(a, b): - print "Function 'add' called with args: %r, %r"%(a, b) - result = a + b - print "\tResult --> %r" % result - return result - -.. nextslide:: + Simbarashe P Change -That's not particularly nice, especially if you have lots of functions -in your module. -Now imagine we defined the following, more generic *decorator*: +=================== +Anonymous functions +=================== -.. code-block:: python - - def logged_func(func): - def logged(*args, **kwargs): - print "Function %r called" % func.__name__ - if args: - print "\twith args: %r" % args - if kwargs: - print "\twith kwargs: %r" % kwargs - result = func(*args, **kwargs) - print "\t Result --> %r" % result - return result - return logged - -.. nextslide:: - -We could then make logging versions of our module functions: - -.. code-block:: python - - logging_add = logged_func(add) - -Then, where we want to see the results, we can use the logged version: +lambda +------ .. code-block:: ipython - In [37]: logging_add(3, 4) - Function 'add' called - with args: (3, 4) - Result --> 7 - Out[37]: 7 + In [171]: f = lambda x, y: x+y + In [172]: f(2,3) + Out[172]: 5 -.. rst-class:: build -.. container:: +Content of function can only be an expression -- not a statement - This is nice, but we have to call the new function wherever we originally - had the old one. +Anyone remember what the difference is? - It'd be nicer if we could just call the old function and have it log. +Called "Anonymous": it doesn't get a name. .. nextslide:: -Remembering that you can easily rebind symbols in Python using *assignment -statements* leads you to this form: - -.. code-block:: python - - def logged_func(func): - # implemented above - - def add(a, b): - return a + b - add = logged_func(add) - -.. rst-class:: build -.. container:: - - And now you can simply use the code you've already written and calls to - ``add`` will be logged: - - .. code-block:: ipython - - In [41]: add(3, 4) - Function 'add' called - with args: (3, 4) - Result --> 7 - Out[41]: 7 +It's a python object, it can be stored in a list or other container -Syntax ------- - -Rebinding the name of a function to the result of calling a decorator on that -function is called **decoration**. - -Because this is so common, Python provides a special operator to perform it -more *declaratively*: the ``@`` operator: - -(I told you I'd eventually explain what was going on under the hood -with that wierd `@` symbol) - -.. code-block:: python - - # this is the imperative version: - def add(a, b): - return a + b - add = logged_func(add) - - # and this declarative form is exactly equal: - @logged_func - def add(a, b): - return a + b - -.. rst-class:: build -.. container:: - - The declarative form (called a decorator expression) is far more common, - but both have the identical result, and can be used interchangeably. - -Callables ---------- - -Our original definition of a *decorator* was nice and simple, but a tiny bit -incomplete. - -In reality, decorators can be used with anything that is *callable*. - -Remember from last week, a *callable* is a function, a method on a class, -or a class that implements the ``__call__`` special method. - -So in fact the definition should be updated as follows: +.. code-block:: ipython -.. rst-class:: centered + In [7]: l = [lambda x, y: x+y] + In [8]: type(l[0]) + Out[8]: function -A decorator is a callable that takes a callable as an argument and -returns a callable as a return value. -An Example ----------- +And you can call it: -Consider a decorator that would save the results of calling an expensive -function with given arguments: +.. code-block:: ipython -.. code-block:: python + In [9]: l[0](3,4) + Out[9]: 7 - class Memoize: - """ - memoize decorator from avinash.vora - http://avinashv.net/2008/04/python-decorators-syntactic-sugar/ - """ - def __init__(self, function): # runs when memoize class is called - self.function = function - self.memoized = {} - - def __call__(self, *args): # runs when memoize instance is called - try: - return self.memoized[args] - except KeyError: - self.memoized[args] = self.function(*args) - return self.memoized[args] -.. nextslide:: +Functions as first class objects +--------------------------------- -Let's try that out with a potentially expensive function: +You can do that with "regular" functions too: .. code-block:: ipython - In [56]: @Memoize - ....: def sum2x(n): - ....: return sum(2 * i for i in xrange(n)) + In [12]: def fun(x,y): + ....: return x+y ....: + In [13]: l = [fun] + In [14]: type(l[0]) + Out[14]: function + In [15]: l[0](3,4) + Out[15]: 7 - In [57]: sum2x(10000000) - Out[57]: 99999990000000 - - In [58]: sum2x(10000000) - Out[58]: 99999990000000 - -It's nice to see that in action, but what if we want to know *exactly* how much -difference it made? -Nested Decorators ------------------ -You can stack decorator expressions. The result is like calling each decorator -in order, from bottom to top: - -.. code-block:: python +====================== +Functional Programming +====================== - @decorator_two - @decorator_one - def func(x): - pass +No real consensus about what that means. - # is exactly equal to: - def func(x): - pass - func = decorator_two(decorator_one(func)) +But there are some "classic" methods available in Python. -.. nextslide:: +map +--- -Let's define another decorator that will time how long a given call takes: +``map`` "maps" a function onto a sequence of objects -- It applies the function to each item in the list, returning another list -.. code-block:: python - import time - def timed_func(func): - def timed(*args, **kwargs): - start = time.time() - result = func(*args, **kwargs) - elapsed = time.time() - start - print "time expired: %s" % elapsed - return result - return timed +.. code-block:: ipython -.. nextslide:: + In [23]: l = [2, 5, 7, 12, 6, 4] + In [24]: def fun(x): + return x*2 + 10 + In [25]: map(fun, l) + Out[25]: -And now we can use this new decorator stacked along with our memoizing -decorator: +Huh? what's a "map" object? It's an iterator (more on that later). .. code-block:: ipython - In [71]: @timed_func - ....: @Memoize - ....: def sum2x(n): - ....: return sum(2 * i for i in xrange(n)) - In [72]: sum2x(10000000) - time expired: 0.997071027756 - Out[72]: 99999990000000 - In [73]: sum2x(10000000) - time expired: 4.05311584473e-06 - Out[73]: 99999990000000 + In [19]: list(map(fun, l)) + Out[19]: [14, 20, 24, 34, 22, 18] +Ah, that's better. -Examples from the Standard Library ----------------------------------- +But if it's a small function, and you only need it once: -It's going to be a lot more common for you to use pre-defined decorators than -for you to be writing your own. +.. code-block:: ipython -We've seen a few already: + In [26]: list(map(lambda x: x*2 + 10, l)) + Out[26]: [14, 20, 24, 34, 22, 18] -.. nextslide:: -For example, ``@staticmethod`` and ``@classmethod`` can also be used as simple -callables, without the nifty decorator expression: +filter +------ -.. code-block:: python +``filter`` "filters" a sequence of objects with a boolean function -- +It keeps only those for which the function is True -- filtering out the rest. - # the way we saw last week: - class C(object): - @staticmethod - def add(a, b): - return a + b +To get only the even numbers: -Is exactly the same as: +.. code-block:: ipython -.. code-block:: python + In [27]: l = [2, 5, 7, 12, 6, 4] + In [28]: list(filter(lambda x: not x%2, l)) + Out[28]: [2, 12, 6, 4] - class C(object): - def add(a, b): - return a + b - add = staticmethod(add) +If you pass ``None`` to ``filter()``, you get only items that evaluate to true: -Note that the "``def``" binds the name ``add``, then the next line -rebinds it. +.. code-block:: ipython + In [1]: l = [1, 0, 2.3, 0.0, 'text', '', [1,2], [], False, True, None ] -.. nextslide:: + In [2]: list(filter(None, l)) + Out[2]: [1, 2.3, 'text', [1, 2], True] -The ``classmethod()`` builtin can do the same thing: -.. code-block:: python +Comprehensions +-------------- - # in declarative style - class C(object): - @classmethod - def from_iterable(cls, seq): - # method body +Couldn't you do all this with comprehensions? - # in imperative style: - class C(object): - def from_iterable(cls, seq): - # method body - from_iterable = classmethod(from_iterable) +Yes: +.. code-block:: ipython -property() ------------ + In [33]: [x+2 + 10 for x in l] + Out[33]: [14, 17, 19, 24, 18, 16] -Remember the property() built in? + In [34]: [x for x in l if not x%2] + Out[34]: [2, 12, 6, 4] -Perhaps most commonly, you'll see the ``property()`` builtin used this way. + In [6]: l + Out[6]: [1, 0, 2.3, 0.0, 'text', '', [1, 2], [], False, True, None] + In [7]: [i for i in l if i] + Out[7]: [1, 2.3, 'text', [1, 2], True] -Last week we saw this code: -.. code-block:: python +Functional Programming +---------------------- - class C(object): - def __init__(self): - self._x = None - @property - def x(self): - return self._x - @x.setter - def x(self, value): - self._x = value - @x.deleter - def x(self): - del self._x +Comprehensions, map, and filter are all "functional programming" approaches -.. nextslide:: +``map, filter`` and ``reduce`` pre-date comprehensions in Python's history -But this could also be accomplished like so: +Some people like that syntax better -.. code-block:: python +And "map-reduce" is a big concept these days for parallel processing of "Big Data" in NoSQL databases. - class C(object): - def __init__(self): - self._x = None - def getx(self): - return self._x - def setx(self, value): - self._x = value - def delx(self): - del self._x - x = property(getx, setx, delx, - "I'm the 'x' property.") +(Hadoop, MongoDB, etc.) -.. nextslide:: -Note that in this case, the decorator object returned by the property decorator -itself implements additional decorators as attributes on the returned method -object. So you could actually do this: +A bit more about lambda +------------------------ +It is very useful for specifying the sorting key: +.. code-block:: ipython -.. code-block:: python + In [55]: lst = [("Chris","Barker"), ("Fred", "Jones"), ("Zola", "Adams")] - class C(object): - def __init__(self): - self._x = None - def x(self): - return self._x - x = property(x) - def _set_x(self, value): - self._x = value - x = x.setter(_set_x) - def _del_x(self): - del self._x - x = x.deleter(_del_x) - -But that's getting really ugly! + In [56]: lst.sort() -LAB ----- + In [57]: lst + Out[57]: [('Chris', 'Barker'), ('Fred', 'Jones'), ('Zola', 'Adams')] -**p_wrapper Decorator** + In [58]: lst.sort(key=lambda x: x[1]) -Write a simple decorator you can apply to a function that returns a string. + In [59]: lst + Out[59]: [('Zola', 'Adams'), ('Chris', 'Barker'), ('Fred', 'Jones')] -Decorating such a function should result in the original output, wrapped by an -HTML 'p' tag: +lambda and keyword arguments +---------------------------- .. code-block:: ipython - In [4]: @p_wrapper - ...: def return_a_string(string): - ...: return string - ...: - - In [5]: return_a_string("this is a string") - Out[5]: '

        this is a string

        ' + In [186]: l = [] + In [187]: for i in range(3): + l.append(lambda x, e=i: x**e) + .....: + In [189]: for f in l: + print(f(3)) + 1 + 3 + 9 -simple test code in -:download:`Examples/Session09/test_p_wrapper.py <../../Examples/Session09/test_p_wrapper.py>` +Note when the keyword argument is evaluated: this turns out to be very handy! +=== +LAB +=== -Lightning Talks ----------------- +Here's an exercise to try out some of this: -.. rst-class:: medium +:ref:`exercise_lambda_magic` -| -| Lou Ascoli -| -| Ralph Brand -| -================= -Context Managers -================= - -**A Short Digression** +=== +LAB +=== -.. rst-class:: left build -.. container:: +Let's use some of this ability to use functions a objects for something useful: - Repetition in code stinks (DRY!) +:ref:`exercise_trapezoidal_rule` - A large source of repetition in code deals with the handling of external - resources. - As an example, how many times do you think you might type the following - code: +========================= +Iterators and Generators +========================= - .. code-block:: python - file_handle = open('filename.txt', 'r') - file_content = file_handle.read() - file_handle.close() - # do some stuff with the contents +.. rst-class:: large centered - What happens if you forget to call ``.close()``? + The Tools of Pythonicity - What happens if reading the file raises an exception? +.. rst-class:: medium -Resource Handling ------------------ + What goes on in those for loops? -Leaving an open file handle laying around is bad enough. What if the resource -is a network connection, or a database cursor? +Iterators and Iterables +----------------------- -You can write more robust code for handling your resources: +Iteration is one of the main reasons Python code is so readable: .. code-block:: python - try: - file_handle = open('filename.txt', 'r') - file_content = file_handle.read() - finally: - file_handle.close() - # do something with file_content here - -But what exceptions do you want to catch? And do you really want to have to -remember to type all that **every** time you open a resource? - -.. nextslide:: It Gets Better - -Starting in version 2.5, Python provides a structure for reducing the -repetition needed to handle resources like this. - -.. rst-class:: centered - -**Context Managers** - -You can encapsulate the setup, error handling and teardown of resources in a -few simple steps. + for x in just_about_anything: + do_stuff(x) -The key is to use the ``with`` statement. +An iterable is anything that can be looped over sequentially, so it does not have to be +a "sequence": list, tuple, etc. For example, a string is iterable. -.. nextslide:: ``with`` a little help - -Since the introduction of the ``with`` statement in `pep343`_, the above six -lines of defensive code have been replaced with this simple form: +An iterator is an iterable that remembers state. All sequences are iterable, but +not all sequences are iterators. To make a sequence an iterator, you can call it with iter: .. code-block:: python - with open('filename', 'r') as file_handle: - file_content = file_handle.read() - # do something with file_content - -``open`` builtin is defined as a *context manager*. - -The resource it returnes (``file_handle``) is automatically and reliably closed -when the code block ends. - -.. _pep343: http://legacy.python.org/dev/peps/pep-0343/ - -.. nextslide:: A Growing Trend + my_iter = iter(my_sequence) -At this point in Python history, many functions you might expect to behave this -way do: +Iterator Types: -* ``open`` and ``io.open`` both work as context managers. - (``io.open`` is good for working with unicode) -* networks connections via ``socket`` do as well. -* most implementations of database wrappers can open connections or cursors as - context managers. -* ... +https://docs.python.org/3/library/stdtypes.html#iterator-types -* But what if you are working with a library that doesn't support this - (``urllib``)? - -.. nextslide:: Close It Automatically - -There are a couple of ways you can go. +Iterables +--------- -If the resource in questions has a ``.close()`` method, then you can simply use -the ``closing`` context manager from ``contextlib`` to handle the issue: +To make an object iterable, you simply have to implement the __getitem__ method. .. code-block:: python - import urllib - from contextlib import closing - - with closing(urllib.urlopen('http://google.com/')) as web_connection: - # do something with the open resource - # and here, it will be closed automatically + class T: + def __getitem__(self, position): + if position > 5: + raise IndexError + return position -But what if the thing doesn't have a ``close()`` method, or you're creating -the thing and it shouldn't have a close() method? +Demo -Do It Yourself ----------------- -You can also define a context manager of your own. - -The interface is simple. It must be a class that implements two -more of the nifty python *special methods* - -**__enter__(self)** Called when the ``with`` statement is run, it should return something to work with in the created context. - -**__exit__(self, e_type, e_val, e_traceback)** Clean-up that needs to happen is implemented here. - -The arguments will be the exception raised in the context. - -If the exception will be handled here, return True. If not, return False. - -Let's see this in action to get a sense of what happens. - -An Example ----------- - -Consider this code: - -.. code-block:: python - - class Context(object): - """from Doug Hellmann, PyMOTW - http://pymotw.com/2/contextlib/#module-contextlib - """ - def __init__(self, handle_error): - print '__init__(%s)' % handle_error - self.handle_error = handle_error - def __enter__(self): - print '__enter__()' - return self - def __exit__(self, exc_type, exc_val, exc_tb): - print '__exit__(%r, %r, %r)' % (exc_type, exc_val, exc_tb) - return self.handle_error +``iter()`` +----------- -:download:`Examples/Session09/context_managers.py <../../Examples/Session09/context_managers.py>` +How do you get the iterator object from an "iterable"? +The iter function will make any iterable an iterator. It first looks for the __iter__ +method, and if none is found, uses get_item to create the iterator. -.. nextslide:: - -This class doesn't do much of anything, but playing with it can help -clarify the order in which things happen: +The ``iter()`` function: .. code-block:: ipython - In [46]: with Context(True) as foo: - ....: print 'This is in the context' - ....: raise RuntimeError('this is the error message') - __init__(True) - __enter__() - This is in the context - __exit__(, this is the error message, ) + In [20]: iter([2,3,4]) + Out[20]: -.. rst-class:: build -.. container:: + In [21]: iter("a string") + Out[21]: - Because the exit method returns True, the raised error is 'handled'. + In [22]: iter( ('a', 'tuple') ) + Out[22]: -.. nextslide:: -What if we try with ``False``? +List as an Iterator: +-------------------- .. code-block:: ipython - In [47]: with Context(False) as foo: - ....: print 'This is in the context' - ....: raise RuntimeError('this is the error message') - __init__(False) - __enter__() - This is in the context - __exit__(, this is the error message, ) - --------------------------------------------------------------------------- - RuntimeError Traceback (most recent call last) - in () - 1 with Context(False) as foo: - 2 print 'This is in the context' - ----> 3 raise RuntimeError('this is the error message') - 4 - RuntimeError: this is the error message - -.. nextslide:: ``contextmanager`` decorator - -``contextlib.contextmanager`` turns generator functions into context managers. -Consider this code: + In [10]: a_list = [1,2,3] -.. code-block:: python + In [11]: list_iter = iter(a_list) - from contextlib import contextmanager - - @contextmanager - def context(boolean): - print "__init__ code here" - try: - print "__enter__ code goes here" - yield object() - except Exception as e: - print "errors handled here" - if not boolean: - raise - finally: - print "__exit__ cleanup goes here" + In [12]: next(list_iter) + Out[12]: 1 -.. nextslide:: - -The code is similar to the class defined previously. + In [13]: next(list_iter) + Out[13]: 2 -And using it has similar results. We can handle errors: + In [14]: next(list_iter) + Out[14]: 3 -.. code-block:: ipython + In [15]: next(list_iter) + -------------------------------------------------- + StopIteration Traceback (most recent call last) + in () + ----> 1 next(list_iter) + StopIteration: - In [50]: with context(True): - ....: print "in the context" - ....: raise RuntimeError("error raised") - __init__ code here - __enter__ code goes here - in the context - errors handled here - __exit__ cleanup goes here - -.. nextslide:: +Using iterators when you can +---------------------------- -Or, we can allow them to propagate: +Example: trigrams: .. code-block:: ipython - In [51]: with context(False): - ....: print "in the context" - ....: raise RuntimeError("error raised") - __init__ code here - __enter__ code goes here - in the context - errors handled here - __exit__ cleanup goes here - --------------------------------------------------------------------------- - RuntimeError Traceback (most recent call last) - in () - 1 with context(False): - 2 print "in the context" - ----> 3 raise RuntimeError("error raised") - 4 - RuntimeError: error raised + triplets = zip(words, words[1:], words[2:]) +zip() returns an iterable -- it does not build up the whole list. +So this is quite efficient. -LAB ----- -**Timing Context Manager** +but slicing: ([1:]) produces a copy -- so this does use three copies of +the list -- not so good if memory is tight. Note that they are shallow copies, so not **that** bad. -Create a context manager that will print the elapsed time taken to -run all the code inside the context: +Nevertheless, we can do better: .. code-block:: ipython - In [3]: with Timer() as t: - ...: for i in range(100000): - ...: i = i ** 20 - ...: - this code took 0.206805 seconds - -**Extra Credit**: allow the ``Timer`` context manager to take a file-like -object as an argument (the default should be sys.stdout). The results of the -timing should be printed to the file-like object. - - -Lightning Talks ----------------- - -.. rst-class:: medium - -| -| Danielle Marcos -| -| Carolyn Evans -| - - -====================== -Packages and Packaging -====================== - -Modules and Packages --------------------- + from itertools import islice -A module is a file (``something.py``) with python code in it + In [68]: triplets = zip(words, islice(words, 1, None), islice(words, 2, None)) -A package is a directory with an ``__init__.py`` file in it + In [69]: for triplet in triplets: + ...: print(triplet) + ...: + ('this', 'that', 'the') + ('that', 'the', 'other') + ('the', 'other', 'and') + ('other', 'and', 'one') + ('and', 'one', 'more') -And usually other modules, packages, etc... -:: +The Iterator Protocol +---------------------- - my_package - __init__.py - module_a.py - module_b.py +The main thing that differentiates an iterator from an iterable (sequence) +is that an iterator saves state. +An iterable must have the following methods: .. code-block:: python - import my_package - + an_iterator.__iter__() -runs the code ``my_package/__init__.py`` (if there is any) - -Modules and Packages --------------------- +Usually returns the iterator object itself. .. code-block:: python - import sys - for p in sys.path: - print p - -(demo) - -Installing Python ------------------ - -Linux: - -Usually part of the system -- just use it. - -Windows: - -Use the python.org version: - -* System Wide - -* Can install multiple versions if need be - -* Third party binaries for it. - -Installing Python ------------------ -OS-X: - -Comes with the system, but: - - * Apple has never upgraded within a release - * There are non-open source components - * Third party packages may or may not support it - * Apple does use it -- so don't mess with it - * I usually recommend the ``python.org`` version - -(Also Macports, Fink, Home Brew...) - + an_iterator.__next__() -Distributions -------------- +Returns the next item from the container. If there are no further items, +raises the ``StopIteration`` exception. -There are also a few "curated" distributions: -These provide python and a package management system for hard-to-buid packages. - -Widely used by the scipy community -(lots of hard to build stuff that needs to work together...) - - * Anaconda (https://store.continuum.io/cshop/anaconda/) - * Canopy (https://www.enthought.com/products/canopy/) - * ActivePython (http://www.activestate.com/activepython) - - -Installing Packages +Making an Iterator ------------------- -Every Python installation has its own stdlib and ``site-packages`` folder - -``site-packages`` is the default place for third-party packages -Finding Packages ----------------- -The Python Package Index: +A simple version of ``range()`` -**PyPi** - -http://pypi.python.org/pypi - -Installing Packages -------------------- -.. rst-class:: medium +.. code-block:: python - **From source** + class IterateMe_1: + def __init__(self, stop=5): + self.current = 0 + self.stop = stop + def __iter__(self): + return self + def __next__(self): + if self.current < self.stop: + self.current += 1 + return self.current + else: + raise StopIteration + +(demo: :download:`iterator_1.py <../../Examples/Session09/iterator_1.py>`) + +What does ``for`` do? +---------------------- -* (``setup.py install`` ) +Now that we know the iterator protocol, we can write something like a for loop: -* With the system installer (apt-get, yum, etc...) -.. rst-class:: medium +:download:`my_for.py <../../Examples/Session09/my_for.py>` - **From binaries:** +.. code-block:: python -* Windows: MSI installers + def my_for(an_iterable, func): + """ + Emulation of a for loop. -* OS-X: dmg installers (make sure to get compatible packages) + func() will be called with each item in an_iterable + """ + # equiv of "for i in l:" + iterator = iter(an_iterable) + while True: + try: + i = next(iterator) + except StopIteration: + break + func(i) -* And now: binary wheels -- (More and more of those available) -* ``pip`` should find appropriate binary wheels if they are there. +Itertools +--------- +``itertools`` is a collection of utilities that make it easy to +build an iterator that iterates over sequences in various common ways -.. nextslide:: +http://docs.python.org/3/library/itertools.html -In the beginning, there was the ``distutils``: +NOTE: -But ``distutils`` is missing some key features: +iteratables are not *only* for ``for`` -* package versioning -* package discovery -* auto-install +They can be used with anything that expects an iterable: -- And then came ``PyPi`` +``sum``, ``tuple``, ``sorted``, and ``list`` -- And then came ``setuptools`` -- But that wasn't well maintained... +LAB +----- -- Then there was ``distribute/pip`` +In the ``Examples/session09`` dir, you will find: +:download:`iterator_1.py <../../Examples/Session09/iterator_1.py>` -- Which has now been merged back into ``setuptools`` +* Extend (``iterator_1.py`` ) to be more like ``range()`` -- add three input parameters: ``iterator_2(start, stop, step=1)`` -Now it's pretty stable: pip+setuptools: use them. +* What happens if you break from a loop and try to pick it up again: -Installing Packages -------------------- +.. code-block:: python -Actually, it's still a bit of a mess + it = IterateMe_2(2, 20, 2) + for i in it: + if i > 10: break + print(i) -But getting better, and the mess is *almost* cleaned up. +.. code-block:: python -Current State of Packaging --------------------------- + for i in it: + print(i) -To build packages: distutils +* Does ``range()`` behave the same? - * http://docs.python.org/2/distutils/ + - make yours match ``range()`` -For more features: setuptools + - is range an iterator or an iteratable? - * https://pythonhosted.org/setuptools/ -To install packages: pip - * https://pip.pypa.io/en/latest/installing.html +Generators +---------- -For binary packages: wheels +Generators - * http://www.python.org/dev/peps/pep-0427/ +* give you an iterator object +* no access to the underlying data ... if it even exists -(installable by pip) -Compiled Packages ------------------ +Conceptually: + Iterators are about various ways to loop over data. -Biggest issue is with compiled extensions: + Generators can generate the data on the fly. - * (C/C++, Fortran, etc.) +Practically: + You can use either one either way (and a generator is one type of iterator). - * You need the right compiler set up + Generators do some of the book-keeping for you -- simpler syntax. -Dependencies: +yield +------ - * Here's were it gets really ugly +``yield`` is a way to make a quickie generator with a function: - * Particularly on Windows +.. code-block:: python -.. nextslide:: + def a_generator_function(params): + some_stuff + yield something -**Linux** +Generator functions "yield" a value, rather than returning a value. -Pretty straightforward: +State is preserved in between yields. -1. Is there a system package? - * use it (apt-get install the_package) +.. nextslide:: generator functions -2. Try ``pip install``: it may just work! +A function with ``yield`` in it is a "factory" for a generator -3. Install the dependencies, build from source:: +Each time you call it, you get a new generator: - python setup.py build +.. code-block:: python - python setup.py install + gen_a = a_generator() + gen_b = a_generator() -(may need "something-devel" packages) +Each instance keeps its own state. +Really just a shorthand for an iterator class that does the book keeping for you. .. nextslide:: -**Windows** - -Sometimes simpler: - -1) A lot of packages have Windows binaries: - - - Usually for python.org builds - - Excellent source: http://www.lfd.uci.edu/~gohlke/pythonlibs/ - - Make sure you get 32 or 64 bit consistent +An example: like ``range()`` -2) But if no binaries: - - - Hope the dependencies are available! - - Set up the compiler - -MS now has a compiler just for python! - -http://www.microsoft.com/en-us/download/details.aspx?id=44266 +.. code-block:: python -.. nextslide:: + def y_range(start, stop, step=1): + i = start + while i < stop: + yield i + i += step -**OS-X** +Real World Example from FloatCanvas: -Lots of Python versions: - - Apple's built-in (different for each version of OS) - - python.org builds - - 32+64 bit Intel (and even PPC still kicking around) - - Macports - - Homebrew +https://github.com/svn2github/wxPython/blob/master/3rdParty/FloatCanvas/floatcanvas/FloatCanvas.py#L100 -Binary Installers (dmg or wheel) have to match python version .. nextslide:: -**OS-X** - -If you have to build it yourself - -Xcode compiler (the right version) - - - Version 3.* for 32 bit PPC+Intel - - - Version > 4.* for 32+64 bit Intel +Note: -(make sure to get the SDKs for older versions) - -If extra dependencies: - - - macports or homebrew often easiest way to build them - - -Final Recommendations ---------------------- - -First try: ``pip install`` - -If that doesn't work: - -Read the docs of the package you want to install - -Do what they say - -(Or use Anaconda or Canopy) - -virtualenv ----------- - -``virtualenv`` is a tool to create isolated Python environments. - -Very useful for developing multiple apps - -Or deploying more than one app on one system - -http://www.virtualenv.org/en/latest/index.html} - -Remember the notes from the beginning of class? :ref:`virtualenv_section` - -(Cris will probably make you do this next class) - -============ -Distributing -============ - -Distributing ------------- -What if you need to distribute you own: - -Scripts - -Libraries - -Applications - - -Scripts -------- - -Often you can just copy, share, or check in the script to source -control and call it good. - -But only if it's a single file, and doesn't need anything non-standard - -When the script needs more than just the stdlib - -(or your company standard environment) - -You have an application, not a script - - -Libraries ---------- - -When you read the distutils docs, it's usually libraries they're talking about - -Scripts + library is the same... - -(http://docs.python.org/distutils/) - -distutils ---------- - -``distutils`` makes it easy to do the easy stuff: - -Distribute and install to multiple platforms, etc. - -Even binaries, installers and compiled packages - -(Except dependencies) - -(http://docs.python.org/distutils/) - -distutils basics ----------------- - -It's all in the ``setup.py file``: - -.. code-block::python - - from distutils.core import setup - setup(name='Distutils', - version='1.0', - description='Python Distribution Utilities', - author='Greg Ward', - author_email='gward@python.net', - url='http://www.python.org/sigs/distutils-sig/', - packages=['distutils', 'distutils.command'], - ) - -(http://docs.python.org/distutils/) - -distutils basics ----------------- - -Once your setup.py is written, you can: - -:: - - python setup.py ... - build build everything needed to install - install install everything from build directory - sdist create a source distribution - (tarball, zip file, etc.) - bdist create a built (binary) distribution - bdist_rpm create an RPM distribution - bdist_wininst create an executable installer for MS Windows - upload upload binary package to PyPI - -wheels ------- - -"wheels" are the "new" package format for python. - -A wheel is essentially a zip file of the entire package, ready to be -unpacked in the right place on installation. - -``pip`` will look for wheels for OS-X and Windows on PyPi, and auto-install -them if they exist - -This is particularly nice for packages with non-python dependencies. - - -More complex packaging ----------------------- - -For a complex package: - -You want to use a well structured setup: +.. code-block:: ipython -http://the-hitchhikers-guide-to-packaging.readthedocs.org/en/latest/ + In [164]: gen = y_range(2,6) + In [165]: type(gen) + Out[165]: generator + In [166]: dir(gen) + Out[166]: + ... + '__iter__', + ... + '__next__', -develop mode ------------- -While you are developing your package, Installing it is a pain. +So the generator **is** an iterator -But you want your code to be able to import, etc. as though it were installed +Note: A generator function can also be a method in a class -``setup.py develop`` installs links to your code, rather than copies --- so it looks like it's installed, but it's using the original source -``python setup.py develop`` +More about iterators and generators: -You need ``setuptools`` and a setup.py to use it. +http://www.learningpython.com/2009/02/23/iterators-iterables-and-generators-oh-my/ +:download:`yield_example.py <../../Examples/Session09/yield_example.py>` -Applications ------------- +generator comprehension +----------------------- -For a complete application: +yet another way to make a generator: - * Web apps - * GUI apps +.. code-block:: python -Multiple options: + >>> [x * 2 for x in [1, 2, 3]] + [2, 4, 6] + >>> (x * 2 for x in [1, 2, 3]) + at 0x10911bf50> + >>> for n in (x * 2 for x in [1, 2, 3]): + ... print n + ... 2 4 6 - * Virtualenv + VCS - * zc.buildout ( http://www.buildout.org/} - * System packages (rpm, deb, ...) - * Bundles... +More interesting if [1, 2, 3] is also a generator -Bundles -------- +Note that `map` and `filter` produce iterators. -Bundles are Python + all your code + plus all the dependencies -- -all in one single "bundle" +LAB +---- -Most popular on Windows and OS-X +Write a few generators: -:: +* Sum of integers +* Doubler +* Fibonacci sequence +* Prime numbers - py2exe - py2app - pyinstaller - ... +(test code in +:download:`test_generator.py <../../Examples/Session09/test_generator.py>`) +Descriptions: -User doesn't even have to know it's python +Sum of the integers: + keep adding the next integer -Examples: + 0 + 1 + 2 + 3 + 4 + 5 + ... - http://www.bitpim.org/ + so the sequence is: - http://response.restoration.noaa.gov/nucos + 0, 1, 3, 6, 10, 15 ..... -LAB ---- +.. nextslide:: -Write a setup.py for a script of yours +Doubler: + Each value is double the previous value: - * Ideally, your script relies on at least one other module - * At a minimum, you'll need to specify ``scripts`` - * and probably ``py_modules`` - * try: + 1, 2, 4, 8, 16, 32, - * ``python setup.py build`` - * ``python setup.py install`` - * ``python setup.py sdist`` +Fibonacci sequence: + The fibonacci sequence as a generator: - * EXTRA: install ``setuptools`` + f(n) = f(n-1) + f(n-2) - * use: ``from setuptools import setup`` - * try: `` python setup.py develop`` + 1, 1, 2, 3, 5, 8, 13, 21, 34... - * EXTRA2: install ``wheel`` +Prime numbers: + Generate the prime numbers (numbers only divisible by them self and 1): - * ``python setup.py bdist_wheel`` + 2, 3, 5, 7, 11, 13, 17, 19, 23... +Others to try: + Try x^2, x^3, counting by threes, x^e, counting by minus seven, ... -(my example: ``Examples/Session09/capitalize``) ========== Next Week ========== -We'll be talking about Unicode. Read: - -.. rst-class:: medium centered - - The Absolute Minimum Every Software Developer Absolutely, Positively - Must Know About Unicode and Character Sets (No Excuses!) - -http://www.joelonsoftware.com/articles/Unicode.html +Decorators and Context managers -- fun stuff! -Also: Cris Ewing will come by to talk about the second quarter -web development class Homework --------- Finish up the labs -Work on your project +Work on your project -- not much time left! And *do* let me know what you're doing if you haven't yet! diff --git a/slides_sources/source/session10.rst b/slides_sources/source/session10.rst index ea5cd10c..8465c79e 100644 --- a/slides_sources/source/session10.rst +++ b/slides_sources/source/session10.rst @@ -1,16 +1,8 @@ -************************************************* -Session Ten: Unicode, Persistence/Serialization -************************************************* +.. include:: include.rst -===================== -Web Development Class -===================== - -.. rst-class:: large centered - - Internet Programming in Python - - Cris Ewing +******************************************************* +Session Ten: Decorators and Context Managers -- Wrap Up +******************************************************* ================ Review/Questions @@ -19,1234 +11,818 @@ Review/Questions Review of Previous Class ------------------------ +Any questions??? - * Decorators - * Context Managers - * Packaging +Homework review +--------------- +Homework Questions? +From any of the Exercises... Projects -------- -Due Dec Friday, Dec 12th, 11:59pm PST +Due Sunday, Dec 11th -.. rst-class:: centered medium +.. rst-class:: medium - (that's three days!) + (that's five days!) Push to github or email them to me. -Lightning Talks Today ---------------------- +====================== +Lightning Talks Today: +====================== .. rst-class:: medium - | Danielle G Marcos - | - | Carolyn Evans - | - | Bryan L Davis - | - | Changqing Zhu - | - | Alexandra N Kazakova - | - -(first three go now!) - -======== -Unicode -======== - -.. rst-class:: left - - I hope you all read this: - - The Absolute Minimum Every Software Developer Absolutely, - Positively Must Know About Unicode and Character Sets (No Excuses!) - - http://www.joelonsoftware.com/articles/Unicode.html - - If not -- go read it! - -Fact number 1: --------------- - -.. rst-class:: centered medium - - Everything is made up of bytes - -If it's on disk or transmitted over a network, it's bytes - -Python provides some abstractions to make it easier to deal with bytes - -Unicode is a biggie - -Actually, dealing with numbers rather than bytes is big -- but we take that for granted - + Marcus D Williams -What the heck is Unicode anyway? ---------------------------------- + Minghao Yang -* First there was chaos... + Sasi Mandava - * Different machines used different encodings - -* Then there was ASCII -- and all was good (7 bit), 127 characters - - * (for English speakers, anyway) - -* But each vendor used the top half (127-255) for different things. - - * macroman, Windows 1252, etc... - - * There is now "latin-1", but still a lot of old files around - -* Non Western-European languages required totally incompatible 1-byte - encodings - -* No way to mix languages with different alphabets. - -Fact number 2: --------------- - -.. rst-class:: centered medium - - The world needs more than 255 charactors. - -.. rst-class:: centered - - Hello, world! • Здравствуй, мир! - - Բարեւ, աշխարհի! • !مرحبا ، العالم - - !שלום, עולם • 여보세요 세계! - - नमस्ते, दुनिया! • 你好,世界! +============ +Code Review? +============ -Enter Unicode --------------- -The Unicode idea is pretty simple: - * one "code point" for all characters in all languages -But how do you express that in bytes? - * Early days: we can fit all the code points in a two byte integer (65536 characters) +.. rst-class:: left - * Turns out that didn't work -- we now need 32 bit integer to hold all of unicode - "raw" (UTC-4) -- well we dopnt need that many, but common machines don't have - 24 bit integers. + Anyone unsatisfied with their solution -- or stuck? -Enter "encodings": - * An encoding is a way to map specific bytes to a code point. + Do you think you've "got" iterators, iterables, and generators? - * Each code point can have one or more bytes. + Options: + 1) Look at someone's code. -========= -Mechanics -========= + 2) look at some of my code. -What are strings? ------------------ + 3) Go over someone's project code -- anyone stuck on something? -Py2 strings are sequences of bytes + 4) wait till the end of class -- and see how much time we have. -Unicode strings are sequences of platonic characters +========== +Decorators +========== -It's almost one code point per character -- but there are complications -with combined characters: accents, etc. (we can ignore those most of the time) +**A Short Reminder** -Platonic characters cannot be written to disk or network! +.. rst-class:: left -(ANSI: one character == one byte -- so easy!) + Functions are things that generate values based on input (arguments). + In Python, functions are first-class objects. -str vs unicode -------------------- + This means that you can bind names to them, pass them around, etc., just like + other objects. -Python 2 has two types that let you work with text: + Because of this fact, you can write functions that take functions as + arguments and/or return functions as values: -* ``str`` + .. code-block:: python -* ``unicode`` + def substitute(a_function): + def new_function(*args, **kwargs): + return "I'm not that other function" + return new_function -And two ways to work with binary data: -* ``str`` +A Definition +------------ -* ``bytes()`` (and ``bytearray``) +There are many things you can do with a simple pattern like this one. +So many, that we give it a special name: -**but:** +.. rst-class:: centered medium -.. code-block:: ipython +**Decorator** - In [86]: str is bytes - Out[86]: True +.. rst-class:: build centered -``bytes`` is there for py3 compatibility -- but it's good for making your -intentions clear, too. + "A decorator is a function that takes a function as an argument and + returns a function as a return value." + That's nice and all, but why is that useful? -Unicode --------- +An Example +---------- -The ``unicode`` object lets you work with characters +Imagine you are trying to debug a module with a number of functions like this +one: -It has all the same methods as the string object. +.. code-block:: python -"encoding" is converting from a unicode object to bytes + def add(a, b): + return a + b -"decoding" is converting from bytes to a unicode object +.. rst-class:: build +.. container:: -(sometimes this feels backwards...) + You want to see when each function is called, with what arguments and + with what result. So you rewrite each function as follows: -Using unicode in Py2 ---------------------- + .. code-block:: python -Built in functions + def add(a, b): + print("Function 'add' called with args: {}, {}".format(a, b) ) + result = a + b + print("\tResult --> {}".format(result)) + return result -.. code-block:: python +.. nextslide:: - ord() - chr() - unichr() - str() - unicode() +That's not particularly nice, especially if you have lots of functions +in your module. -The codecs module +Now imagine we defined the following, more generic *decorator*: .. code-block:: python - import codecs - codecs.encode() - codecs.decode() - codecs.open() # better to use ``io.open`` + def logged_func(func): + def logged(*args, **kwargs): + print("Function {} called".format(func.__name__)) + if args: + print("\twith args: {}".format(args)) + if kwargs: + print("\twith kwargs: {}".format(kwargs)) + result = func(*args, **kwargs) + print("\t Result --> {}".format(result)) + return result + return logged +(demo) -Encoding and Decoding ----------------------- - -Encoding +.. nextslide:: -.. code-block:: ipython +We could then make logging versions of our module functions: - In [17]: u"this".encode('utf-8') - Out[17]: 'this' +.. code-block:: python - In [18]: u"this".encode('utf-16') - Out[18]: '\xff\xfet\x00h\x00i\x00s\x00' + logging_add = logged_func(add) -Decoding +Then, where we want to see the results, we can use the logged version: .. code-block:: ipython - In [99]: print '\xff\xfe."+"x\x00\xb2\x00'.decode('utf-16') - ∮∫x² - + In [37]: logging_add(3, 4) + Function 'add' called + with args: (3, 4) + Result --> 7 + Out[37]: 7 +.. rst-class:: build +.. container:: -Unicode Literals ------------------- + This is nice, but we have to call the new function wherever we originally + had the old one. -1) Use unicode in your source files: + It'd be nicer if we could just call the old function and have it log. -.. code-block:: python - - # -*- coding: utf-8 -*- +.. nextslide:: -2) escape the unicode characters: +Remembering that you can easily rebind symbols in Python using *assignment +statements* leads you to this form: .. code-block:: python - print u"The integral sign: \u222B" - print u"The integral sign: \N{integral}" - -Lots of tables of code points online: - -One example: - http://inamidst.com/stuff/unidata/ + def logged_func(func): + # implemented above -:download:`hello_unicode.py <../../Examples/Session10/hello_unicode.py>`. + def add(a, b): + return a + b + add = logged_func(add) +.. rst-class:: build +.. container:: -Using Unicode --------------- - -Use ``unicode`` objects in all your code - -Decode on input - -Encode on output - -Many packages do this for you: *XML processing, databases, ...* - -**Gotcha:** + And now you can simply use the code you've already written and calls to + ``add`` will be logged: -Python has a default encoding (usually ascii) + .. code-block:: ipython -.. code-block:: ipython - - In [2]: sys.getdefaultencoding() - Out[2]: 'ascii' + In [41]: add(3, 4) + Function 'add' called + with args: (3, 4) + Result --> 7 + Out[41]: 7 -The default encoding will get used in unexpected places! +Syntax +------ -Using unicode everywhere -------------------------- +Rebinding the name of a function to the result of calling a decorator on that +function is called **decoration**. -Python 2.6 and above have a nice feature to make it easier to use unicode everywhere +Because this is so common, Python provides a special operator to perform it +more *declaratively*: the ``@`` operator +-- I told you I'd eventually explain what was going on under the hood with +that wierd `@` symbol: .. code-block:: python - from __future__ import unicode_literals + def add(a, b): + return a + b + add = logged_func(add) -After running that line, the ``u''`` is assumed + @logged_func + def add(a, b): + return a + b -.. code-block:: ipython - - In [1]: s = "this is a regular py2 string" - In [2]: print type(s) - +The declarative form (called a decorator expression) is far more common, +but both have the identical result, and can be used interchangeably. - In [3]: from __future__ import unicode_literals - In [4]: s = "this is now a unicode string" - In [5]: type(s) - Out[5]: unicode +(demo) -NOTE: You can still get py2 strings from other sources! +Callables +--------- +Our original definition of a *decorator* was nice and simple, but a tiny bit +incomplete. -Encodings ----------- +In reality, decorators can be used with anything that is *callable*. -What encoding should I use??? +Remember from last week, a *callable* is a function, a method on a class, +or a class that implements the ``__call__`` special method. -There are a lot: +So in fact the definition should be updated as follows: -http://en.wikipedia.org/wiki/Comparison_of_Unicode_encodings - -But only a couple you are likely to need: - -* utf-8 (``*nix``) -* utf-16 (Windows) - -And of course, still the one-bytes ones. - -* ASCII -* Latin-1 - -UTF-8 -------- - -Probably the one you'll use most -- most common in Internet protocols (xml, JSON, etc.) +.. rst-class:: centered medium -Nice properties: +A decorator is a callable that takes a callable as an argument and +returns a callable as a return value. -* ASCII compatible: first 127 characters are the same +An Example +---------- -* Any ascii string is a utf-8 string +Consider a decorator that would save the results of calling an expensive +function with given arguments: -* compact for mostly-english text. +.. code-block:: python -Gotchas: + class Memoize: + """ + memoize decorator from avinash.vora + http://avinashv.net/2008/04/python-decorators-syntactic-sugar/ + """ + def __init__(self, function): # runs when memoize class is called + self.function = function + self.memoized = {} + + def __call__(self, *args): # runs when memoize instance is called + try: + return self.memoized[args] + except KeyError: + self.memoized[args] = self.function(*args) + return self.memoized[args] -* "higher" code points may use more than one byte: up to 4 for one character +.. nextslide:: -* ASCII compatible means in may work with default encoding in tests -- but then blow up with real data... +Let's try that out with a potentially expensive function: -UTF-16 --------- +.. code-block:: ipython -Kind of like UTF-8, except it uses at least 16bits (2 bytes) for each character: not ASCII compatible. + In [56]: @Memoize + ....: def sum2x(n): + ....: return sum(2 * i for i in xrange(n)) + ....: -But it still needs more than two bytes for some code points, so you still can't assume two byte per character. + In [57]: sum2x(10000000) + Out[57]: 99999990000000 -In C/C++ held in a "wide char" or "wide string". + In [58]: sum2x(10000000) + Out[58]: 99999990000000 -MS Windows uses UTF-16, as does (I think) Java. +It's nice to see that in action, but what if we want to know *exactly* +how much difference it made? -UTF-16 criticism +Nested Decorators ----------------- -There is a lot of criticism on the net about UTF-16 -- it's kind of the worst of both worlds: - -* You can't assume every character is the same number of bytes -* It takes up more memory than UTF-8 - -`UTF-16 Considered Harmful `_ - -But to be fair: - -Early versions of Unicode: everything fit into two bytes (65536 code points). - -MS and Java were fairly early adopters, and it seemed simple enough to just use 2 bytes per character. +You can stack decorator expressions. The result is like calling each +decorator in order, from bottom to top: -When it turned out that 4 bytes were really needed, they were kind of stuck in the middle. - -Latin-1 --------- - -**NOT Unicode**: - -a 1-byte per char encoding. - -* Superset of ASCII suitable for Western European languages. +.. code-block:: python -* The most common one-byte per char encoding for European text. + @decorator_two + @decorator_one + def func(x): + pass -* Nice property -- every byte value from 0 to 255 is a valid character ( at least in Python ) + # is exactly equal to: + def func(x): + pass + func = decorator_two(decorator_one(func)) .. nextslide:: -* You will never get an UnicodeDecodeError if you try to decode arbitrary bytes with latin-1. - -* And it can "round-trip" through a unicode object. - -* Useful if you don't know the encoding -- at least it won't raise an Exception - -* Useful if you need to work with combined text+binary data. - -:download:`latin1_test.py <../../Examples/Session10/latin1_test.py>`. - - -Unicode Docs --------------- - -Python Docs Unicode HowTo: - -http://docs.python.org/howto/unicode.html - -"Reading Unicode from a file is therefore simple" +Let's define another decorator that will time how long a given call takes: .. code-block:: python - import io - f = io.open('hello_unicode.py', encoding='utf-8') - for line in f: - print repr(line) - + import time + def timed_func(func): + def timed(*args, **kwargs): + start = time.time() + result = func(*args, **kwargs) + elapsed = time.time() - start + print("time expired: {}".format(elapsed)) + return result + return timed -Encodings Built-in to Python: - http://docs.python.org/2/library/codecs.html#standard-encodings - - -Gotchas in Python 2 --------------------- - -file names, etc: +.. nextslide:: -If you pass in unicode, you get unicode +And now we can use this new decorator stacked along with our memoizing +decorator: .. code-block:: ipython - In [9]: os.listdir('./') - Out[9]: ['hello_unicode.py', 'text.utf16', 'text.utf32'] - - In [10]: os.listdir(u'./') - Out[10]: [u'hello_unicode.py', u'text.utf16', u'text.utf32'] + In [71]: @timed_func + ....: @Memoize + ....: def sum2x(n): + ....: return sum(2 * i for i in xrange(n)) + In [72]: sum2x(10000000) + time expired: 0.997071027756 + Out[72]: 99999990000000 + In [73]: sum2x(10000000) + time expired: 4.05311584473e-06 + Out[73]: 99999990000000 -Python deals with the file system encoding for you... -But: some more obscure calls don't support unicode filenames: +Examples from the Standard Library +---------------------------------- -``os.statvfs()`` (http://bugs.python.org/issue18695) +It's going to be a lot more common for you to use pre-defined decorators than +for you to be writing your own. +We've seen a few already: .. nextslide:: -Exception messages: - - * Py2 Exceptions use str when they print messages. +For example, ``@staticmethod`` and ``@classmethod`` can also be used as simple +callables, without the nifty decorator expression: - * But what if you pass in a unicode object? - - * It is encoded with the default encoding. - - * ``UnicodeDecodeError`` Inside an Exception???? - - NOPE: it swallows it instead. - -:download:`unicode_exception_test.py <../../Examples/Session10/unicode_exception_test.py>`. - -Unicode in Python 3 ----------------------- - -The "string" object is unicode. - -Py3 has two distinct concepts: +.. code-block:: python -* "text" -- uses the str object (which is always unicode!) -* "binary data" -- uses bytes or bytearray + # the way we saw last week: + class C(object): + @staticmethod + def add(a, b): + return a + b -Everything that's about text is unicode. +Is exactly the same as: -Everything that requires binary data uses bytes. +.. code-block:: python -It's all much cleaner. + class C(object): + def add(a, b): + return a + b + add = staticmethod(add) -(by the way, the recent implementations are very efficient...) +Note that the "``def``" binds the name ``add``, then the next line +rebinds it. -================= -Basic Unicode LAB -================= +.. nextslide:: -.. rst-class left +The ``classmethod()`` builtin can do the same thing: -* Find some nifty non-ascii characters you might use. +.. code-block:: python - - Create a unicode object with them in two different ways. - - :download:`here <../../Examples/Session10/hello_unicode.py>` is one example + # in declarative style + class C(object): + @classmethod + def from_iterable(cls, seq): + # method body -* Read the contents into unicode objects: + # in imperative style: + class C(object): + def from_iterable(cls, seq): + # method body + from_iterable = classmethod(from_iterable) - - :download:`ICanEatGlass.utf8.txt <../../Examples/Session10/ICanEatGlass.utf8.txt>` - - :download:`ICanEatGlass.utf16.txt <../../Examples/Session10/ICanEatGlass.utf16.txt>` -and/ or +property() +----------- - - :download:`text.utf8 <../../Examples/Session10/text.utf8>` - - :download:`text.utf16 <../../Examples/Session10/text.utf16>` - - :download:`text.utf32 <../../Examples/Session10/text.utf32>` +Remember the property() built in? -* write some of the text from the first exercise to file -- read that - file back in. +Perhaps most commonly, you'll see the ``property()`` builtin used this way. -.. nextslide:: Some Help +Two weeks ago we saw this code: -.. rst-class:: left +.. code-block:: python -Reference: http://inamidst.com/stuff/unidata/ + class C(object): + def __init__(self): + self._x = None + @property + def x(self): + return self._x + @x.setter + def x(self, value): + self._x = value + @x.deleter + def x(self): + del self._x -NOTE: if your terminal does not support unicode -- you'll get an error trying -to print. Try a different terminal or IDE, or google for a solution. +.. nextslide:: -Challenge Unicode LAB ----------------------- +But this could also be accomplished like so: -We saw this earlier +.. code-block:: python -.. code-block:: ipython + class C(object): + def __init__(self): + self._x = None + def getx(self): + return self._x + def setx(self, value): + self._x = value + def delx(self): + del self._x + x = property(getx, setx, delx, + "I'm the 'x' property.") - In [38]: u'to \N{INFINITY} and beyond!'.decode('utf-8') - --------------------------------------------------------------------------- - UnicodeEncodeError Traceback (most recent call last) - in () - ----> 1 u'to \N{INFINITY} and beyond!'.decode('utf-8') - /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/utf_8.pyc in decode(input, errors) - 14 - 15 def decode(input, errors='strict'): - ---> 16 return codecs.utf_8_decode(input, errors, True) - 17 - 18 class IncrementalEncoder(codecs.IncrementalEncoder): +``Examples/Session10/property_ugly.py`` - UnicodeEncodeError: 'ascii' codec can't encode character u'\u221e' in position 3: ordinal not in range(128) .. nextslide:: -But why would you **decode** a unicode object? - -And it should be a no-op -- why the exception? - -And why 'ascii'? I specified 'utf-8'! +Note that in this case, the decorator object returned by the property decorator +itself implements additional decorators as attributes on the returned method +object. So you could actually do this: -It's there for backward compatibility - -What's happening under the hood: .. code-block:: python - u'to \N{INFINITY} and beyond!'.encode().decode('utf-8') - -It encodes with the default encoding (ascii), then decodes - -In this case, it barfs on attempting to encode to 'ascii' + class C(object): + def __init__(self): + self._x = None + def x(self): + return self._x + x = property(x) + def _set_x(self, value): + self._x = value + x = x.setter(_set_x) + def _del_x(self): + del self._x + x = x.deleter(_del_x) + +But that's getting really ugly! -.. nextslide:: +LAB +---- -So never call decode on a unicode object! +**p_wrapper Decorator** -But what if someone passes one into a function of yours that's expecting -a py2 string? +Write a simple decorator you can apply to a function that returns a string. -Type checking and converting -- yeach! +Decorating such a function should result in the original output, wrapped by an +HTML 'p' tag: -Read: +.. code-block:: ipython -http://axialcorps.com/2014/03/20/unicode-str/ + In [4]: @p_wrapper + ...: def return_a_string(string): + ...: return string + ...: -See if you can figure out the decorators: + In [5]: return_a_string("this is a string") + Out[5]: '

        this is a string

        ' -:download:`unicodify.py <../../Examples/Session10/unicodify.py>`. +simple test code in: +``Examples/Session10/test_p_wrapper.py`` -(This is advanced Python JuJu: Aren't you glad I didn't ask you to write -that yourself?) Lightning Talks ------------------ +---------------- + .. rst-class:: medium | -| Changqing Zhu +| Marcus D Williams | -| Alexandra N Kazakova +| Minghao Yang +| +| Sasi Mandava | -============ -Code Review? -============ - -.. rst-class:: left - - Options: - - 1) Look at someone's code. - - 2) Do a bit with persistance / serialization - (pickle, json, csv, ini files, xml...) +================= +Context Managers +================= -Serialization -------------- +**Repetition in code stinks (DRY!)** -Today is less about concepts +.. rst-class:: left build +.. container:: -More about learning to use a given module -So less talk, more coding + A large source of repetition in code deals with the handling of external + resources. -.. nextslide:: + As an example, how many times do you think you might type the following + code: -I'm focusing on methods available in the Python standard library + .. code-block:: python -Serialization is the process of putting your potentially complex -(and nested) python data structures into a linear (serial) form .. i.e. a string of bytes. + file_handle = open('filename.txt', 'r') + file_content = file_handle.read() + file_handle.close() + # do some stuff with the contents -The serial form can be saved to a file, pushed over the wire, etc. + What happens if you forget to call ``.close()``? -Persistence ------------ + What happens if reading the file raises an exception? -Persistence is saving your python data structure(s) to disk -- so they -will persist once the python process is finished. -Any serial form can provide persistence (by dumping/loading it to/from -a file), but not all persistence mechanisms are serial (i.e RDBMS) +Resource Handling +----------------- -http://wiki.python.org/moin/PersistenceTools +Leaving an open file handle laying around is bad enough. What if the resource +is a network connection, or a database cursor? -======================= -Python Specific Formats -======================= +You can write more robust code for handling your resources: -Python Literals ---------------- +.. code-block:: python -Putting plain old python literals in your file + try: + file_handle = open('filename.txt', 'r') + file_content = file_handle.read() + finally: + file_handle.close() + # do something with file_content here -Gives a nice, human-editable form for config files, etc. +But what exceptions do you want to catch? And do you really want to have to +remember to type all that **every** time you open a resource? -Don't use for untrusted sources!!! +.. nextslide:: It Gets Better -Python Literals ---------------- +Starting in version 2.5, Python provides a structure for reducing the +repetition needed to handle resources like this. -Good for basic python types. -(can work for your own classes, too -- if you write a good ``__repr__`` ) +.. rst-class:: centered -In theory, ``repr()`` always gives a form that can be re-constructed. +**Context Managers** -Often ``str()`` form works too. +You can encapsulate the setup, error handling and teardown of resources in a +few simple steps. -``pprint`` (pretty print) module can make it easier to read. +The key is to use the ``with`` statement. -Python Literal Example +``with`` a little help ---------------------- -.. code-block:: ipython - - # a list of dicts - data = [{'this':5, 'that':4}, {'spam':7, 'eggs':3.4}] - In [51]: s = repr(data) # save a string version: - In [52]: data2 = eval(s) # re-construct with eval: - In [53]: data2 == data # they are equal - Out[53]: True - In [54]: data is data2 # but not the same object - Out[54]: False - - -You can save the string to a file and even use ``import`` - -(NOTE: ``ast.literal_eval`` is safer than eval) - -pretty print ------------- - -.. code-block:: ipython - - In [69]: import pprint - In [71]: repr(data) - Out[71]: "[{'this': 5, 'that': 4}, {'eggs': 3.4, 'spam': 7}, {'foo': 86, 'bar': 4.5}, {'fun': 43, 'baz': 6.5}]" - In [72]: s = pprint.pformat(data) - In [73]: print s - [{'that': 4, 'this': 5}, - {'eggs': 3.4, 'spam': 7}, - {'bar': 4.5, 'foo': 86}, - {'baz': 6.5, 'fun': 43}] - - -Pickle ------- - -Pickle is a binary format for python objects - -You can essentially dump any python object to disk (or string, or socket, or... - -``cPickle`` is faster than pickle, but -can't be customized -- you usually want ``cPickle`` - -http://docs.python.org/library/pickle.html - - -.. nextslide:: - -.. code-block:: ipython - - In [87]: import cPickle as pickle - In [83]: data - Out[83]: - [{'that': 4, 'this': 5}, - {'eggs': 3.4, 'spam': 7}, - {'bar': 4.5, 'foo': 86}, - {'baz': 6.5, 'fun': 43}] - In [84]: pickle.dump(data, open('data.pkl', 'wb')) - In [85]: data2 = pickle.load(open('data.pkl', 'rb')) - In [86]: data2 == data - Out[86]: True - - -http://docs.python.org/library/pickle.html - -Shelve ------- - -A "shelf" is a persistent, dictionary-like object - -The values (not the keys!) can be essentially arbitrary Python -objects (anything picklable) - -NOTE: will not reflect changes in mutable objects without re-writing them to the db. (or use writeback=True) - -If less that 100s of MB -- just use a dict and pickle it. - -http://docs.python.org/library/shelve.html +Since the introduction of the ``with`` statement in `pep343`_, the above six +lines of defensive code have been replaced with this simple form: +.. code-block:: python -.. nextslide:: + with open('filename', 'r') as file_handle: + file_content = file_handle.read() + # do something with file_content +``open`` builtin is defined as a *context manager*. -``shelve`` presents a ``dict`` interface: +The resource it returns (``file_handle``) is automatically and reliably closed +when the code block ends. -.. code-block:: ipython +.. _pep343: http://legacy.python.org/dev/peps/pep-0343/ - import shelve - d = shelve.open(filename) - d[key] = data # store data at key - data = d[key] # retrieve a COPY of data at key - del d[key] # delete data stored at key - flag = d.has_key(key) # true if the key exists - d.close() # close it +.. nextslide:: A Growing Trend -http://docs.python.org/library/shelve.html +At this point in Python history, many functions you might expect to behave this +way do: -LAB ---- +* ``open`` and works as a context manager. +* networks connections via ``socket`` do as well. +* most implementations of database wrappers can open connections or cursors as + context managers. +* ... -There are two datasets in the ``Examples\Session10`` dir: +* But what if you are working with a library that doesn't support this + (``urllib``)? -.. code-block:: ipython +Close It Automatically +---------------------- - add_book_data.py - add_book_data_flat.py - # load with: - from add_book_data import AddressBook +There are a couple of ways you can go. -They have address book data -- one with a nested dict, one "flat" +If the resource in questions has a ``.close()`` method, then you can simply use +the ``closing`` context manager from ``contextlib`` to handle the issue: -* Write a module that saves the data as python literals in a file +.. code-block:: python - - and reads it back in + from urllib import request + from contextlib import closing -* Write a module that saves the data as a pickle in a file + with closing(request.urlopen('http://google.com/')) as web_connection: + # do something with the open resource + # and here, it will be closed automatically - - and reads it back in +But what if the thing doesn't have a ``close()`` method, or you're creating +the thing and it shouldn't have a close() method? -* Write a module that saves the data in a shelve +(full confession: urlib.request was not a context manager in py2 -- but it is in py3) - - and accesses it one by one. +Do It Yourself +-------------- +You can also define a context manager of your own. -=================== -Interchange Formats -=================== +The interface is simple. It must be a class that implements two +more of the nifty python *special methods* -INI ---- +**__enter__(self)** Called when the ``with`` statement is run, it should +return something to work with in the created context. -INI files +**__exit__(self, e_type, e_val, e_traceback)** Clean-up that needs to +happen is implemented here. -(the old Windows config files) +The arguments will be the exception raised in the context. -:: +If the exception will be handled here, return True. If not, return False. - [Section1] - int = 15 - bool = true - float = 3.1415 - [Section2] - int = 32 - ... +Let's see this in action to get a sense of what happens. +An Example +---------- +Consider this code: -Good for configuration data, etc. +.. code-block:: python -ConfigParser ------------- + class Context(object): + """from Doug Hellmann, PyMOTW + https://pymotw.com/3/contextlib/#module-contextlib + """ + def __init__(self, handle_error): + print('__init__({})'.format(handle_error)) + self.handle_error = handle_error -Writing ``ini`` files: + def __enter__(self): + print('__enter__()') + return self -.. code-block:: ipython + def __exit__(self, exc_type, exc_val, exc_tb): + print('__exit__({}, {}, {})'.format(exc_type, exc_val, exc_tb)) + return self.handle_error - import ConfigParser - config = ConfigParser.ConfigParser() - config.add_section('Section1') - config.set('Section1', 'int', '15') - config.set('Section1', 'bool', 'true') - config.set('Section1', 'float', '3.1415') - # Writing our configuration file to 'example.cfg' - config.write( open('example.cfg', 'wb') ) +``Examples/Session10/context_managers.py`` -Note: all keys and values are strings .. nextslide:: -Reading ``ini`` files: +This class doesn't do much of anything, but playing with it can help +clarify the order in which things happen: .. code-block:: ipython - >>> config = ConfigParser.ConfigParser() - >>> config.read('example.cfg') - >>> config.sections() - ['Section1', 'Section2'] - >>> config.get('Section1', 'float') - '3.1415' - >>> config.items('Section1') - [('int', '15'), ('bool', 'true'), ('float', '3.1415')] - + In [46]: with Context(True) as foo: + ....: print('This is in the context') + ....: raise RuntimeError('this is the error message') + __init__(True) + __enter__() + This is in the context + __exit__(, this is the error message, ) -http://docs.python.org/library/configparser.html +.. rst-class:: build +.. container:: -CSV ---- + Because the exit method returns True, the raised error is 'handled'. -CSV (Comma Separated Values) format is the most common import and export format for spreadsheets and databases. - -No real standard -- the Python csv package more or less follows MS Excel "standard" (with other "dialects" available) - -Can use delimiters other than commas... (I like tabs better) +.. nextslide:: -Most useful for simple tabular data +What if we try with ``False``? -CSV module ----------- +.. code-block:: ipython -Reading ``CSV`` files: + In [47]: with Context(False) as foo: + ....: print('This is in the context') + ....: raise RuntimeError('this is the error message') + __init__(False) + __enter__() + This is in the context + __exit__(, this is the error message, ) + --------------------------------------------------------------------------- + RuntimeError Traceback (most recent call last) + in () + 1 with Context(False) as foo: + 2 print 'This is in the context' + ----> 3 raise RuntimeError('this is the error message') + 4 + RuntimeError: this is the error message + +The ``contextmanager`` decorator +-------------------------------- + +``contextlib.contextmanager`` turns generator functions into context managers. + +Consider this code: .. code-block:: python - >>> import csv - >>> spamReader = csv.reader( open('eggs.csv', 'rb') ) - >>> for row in spamReader: - ... print ', '.join(row) - Spam, Spam, Spam, Spam, Spam, Baked Beans - Spam, Lovely Spam, Wonderful Spam - - - -``csv`` module takes care of string quoting, etc. for you - -http://docs.python.org/library/csv.html + from contextlib import contextmanager + + @contextmanager + def context(boolean): + print("__init__ code here") + try: + print("__enter__ code goes here") + yield object() + except Exception as e: + print("errors handled here") + if not boolean: + raise e + finally: + print("__exit__ cleanup goes here") .. nextslide:: -Writing ``CSV`` files: - -.. code-block:: python - - >>> import csv - >>> spamWriter = csv.writer(open('eggs.csv', 'wb'), - quoting=csv.QUOTE_MINIMAL) - >>> spamWriter.writerow(['Spam'] * 5 + ['Baked Beans']) - >>> spamWriter.writerow(['Spam', 'Lovely Spam', 'Wonderful Spam']) - - -``csv`` module takes care of string quoting, etc for you - -http://docs.python.org/library/csv.html - -JSON ----- - -JSON (JavaScript Object Notation) is a subset of JavaScript syntax used as a lightweight data interchange format. - -Python module has an interface similar to pickle - -Can handle the standard Python data types - -Specializable encoding/decoding for other types -- but I wouldn't do that! - -Presents a similar interface as ``pickle`` - -http://www.json.org/ +The code is similar to the class defined previously. -http://docs.python.org/library/json.html - -Python json module ------------------- +And using it has similar results. We can handle errors: .. code-block:: ipython - In [94]: s = json.dumps(data) - Out[95]: '[{"this": 5, "that": 4}, {"eggs": 3.4, "spam": 7}, - {"foo": 86, "bar": 4.5}, {"fun": 43, "baz": 6.5}]' - # looks a lot like python literals... - In [96]: data2 = json.loads(s) - Out[97]: - [{u'that': 4, u'this': 5}, - {u'eggs': 3.4, u'spam': 7}, - ... - In [98]: data2 == data - Out[98]: True # they are the same - - -(also ``json.dump() and json.load()`` for files - -http://docs.python.org/library/json.html - -XML ---- - -XML is a standardized version of SGML, designed for use as a data storage / interchange format. - -NOTE: HTML is also SGML, and modern versions conform to the XML standard. - -XML in the python std lib -------------------------- - -``xml.dom`` - -``xml.sax`` - -``xml.parsers.expat`` - -``xml.etree`` - -http://docs.python.org/library/xml.etree.elementtree.html - -elementtree ------------ - -The Element type is a flexible container object, designed to store hierarchical data structures in memory. - -Essentially an in-memory XML -- can be read from / written-to XML - -an ``ElementTree`` is an entire XML doc - -an ``Element`` is a node in that tree - -http://docs.python.org/library/xml.etree.elementtree.html} - -LAB ---- - -:: - - # load with: - from add_book_data import AddressBook - - -They have address book data -- one with a nested dict, one "flat" - -* Write a module that saves the data as an INI file - - - and reads it back in - -* Write a module that saves the data as a CSV file - - - and reads it back in - -* Write a module that saves the data in JSON - - - and reads it back in - -* Write a module that saves the data in XML - - - and reads it back in - - - this gets ugly! - - -========= -DataBases -========= - -anydbm ------- - -``anydbm`` is a generic interface to variants of the DBM database - -Suitable for storing data that fits well into a python dict with strings as both keys and values - -Note: anydbm will use the dbm system that works on your system -- this may be different on different systems -- so the db files may NOT be compatible! ``whichdb`` will try to figure it out, but it's not guaranteed - -http://docs.python.org/library/anydbm.html - -anydbm module -------------- -Writing data: - -:: - - #creating a dbm file: - anydbm.open(filename, 'n') - - -flag options are: - -* 'r' -- Open existing database for reading only (default) -* 'w' -- Open existing database for reading and writing -* 'c' -- Open database for reading and writing, creating it if it doesn’t exist -* 'n' -- Always create a new, empty database, open for reading and writing - -http://docs.python.org/library/anydbm.html - -anydbm module -------------- - -``dbm`` provides dict-like interface: - -:: - - db = dbm.open("dbm", "c") - db["first"] = "bruce" - db["second"] = "micheal" - db["third"] = "fred" - db["second"] = "john" #overwrite - db.close() - # read it: - db = dbm.open("dbm", "r") - for key in db.keys(): - print key, db[key] - - - -http://docs.python.org/library/anydbm.html - - -sqlite ------- - -SQLite: C library provides a lightweight disk-based single-file database - -Nonstandard variant of the SQL query language - -Very broadly used as as an embedded databases for storing application-specific data etc. - -Firefox plug-in: - -https://addons.mozilla.org/en-US/firefox/addon/sqlite-manager/ - - -python sqlite module --------------------- - -``sqlite3`` Python module wraps C lib -- provides standard DB-API interface - -Allows (and requires) SQL queries - -Can provide high performance, flexible, portable storage for your app - -http://docs.python.org/library/sqlite3.html - + In [96]: with context(True): + ....: print("in the context") + ....: raise RuntimeError("error raised") + ....: + __init__ code here + __enter__ code goes here + in the context + errors handled here + __exit__ cleanup goes here .. nextslide:: -Example: - -:: - - import sqlite3 - # open a connection to a db file: - conn = sqlite3.connect('example.db') - # or build one in-memory - conn = sqlite3.connect(':memory:') - # create a cursor - c = conn.cursor() - -http://docs.python.org/library/sqlite3.html - -python sqlite module --------------------- - -Execute SQL with the cursor: - -:: - - # Create table - c.execute("'CREATE TABLE stocks - (date text, trans text, symbol text, qty real, price real)"') - # Insert a row of data - c.execute("INSERT INTO stocks VALUES ('2006-01-05','BUY','RHAT',100,35.14)") - # Save (commit) the changes - conn.commit() - # Close the cursor if we are done with it - c.close() - +Or, we can allow them to propagate: +.. code-block:: ipython -http://docs.python.org/library/sqlite3.html - -python sqlite module --------------------- - -``SELECT`` creates an cursor that can be iterated: - -:: - - >>> for row in c.execute('SELECT * FROM stocks ORDER BY price'): - print row - (u'2006-01-05', u'BUY', u'RHAT', 100, 35.14) - (u'2006-03-28', u'BUY', u'IBM', 1000, 45.0) - ... - - -Or you can get the rows one by one or in a list: - -:: - - c.fetchone() - c.fetchall() - - -python sqlite module --------------------- - -Good idea to use the DB-API’s parameter substitution: - -:: - - t = (symbol,) - c.execute('SELECT * FROM stocks WHERE symbol=?', t) - print c.fetchone() - # Larger example that inserts many records at a time - purchases = [('2006-03-28', 'BUY', 'IBM', 1000, 45.00), - ('2006-04-05', 'BUY', 'MSFT', 1000, 72.00), - ('2006-04-06', 'SELL', 'IBM', 500, 53.00), - ] - c.executemany('INSERT INTO stocks VALUES (?,?,?,?,?)', purchases) - - - -http://xkcd.com/327/ - -DB-API ------- - -The DB-API spec (PEP 249) is a specification for interaction between Python and Relational Databases.} - -Support for a large number of third-party Database drivers: - - * MySQL - * PostgreSQL - * Oracle - * MSSQL (?) - * ..... - -http://www.python.org/dev/peps/pep-0249} - -============= -Other Options -============= - -Object-Relation Mappers ------------------------ - -Systems for mapping Python objects to tables - -Saves you writing that glue code (and the SQL) - -Usually deal with mapping to variety of back-ends: - -- test with SQLite, deploy with PostreSQL - - SQL Alchemy - -- http://www.sqlalchemy.org/ - -Django ORM -https://docs.djangoproject.com/en/dev/topics/db/ - -Object Databases ----------------- - -Directly store and retrieve Python Objects. - -Kind of like ``shelve`` , but more flexible, and give you searching, etc. - -ZODB: (http://www.zodb.org/ - -Durus: (https://www.mems-exchange.org/software/DurusWorks/}) - -NoSQL ------ -Map-Reduce, etc. - -....Big deal for "Big Data": Amazon, Google, etc. - -Document-Oriented Storage - -* MongoDB (BSON interface, JSON documents) + In [51]: with context(False): + ....: print("in the context") + ....: raise RuntimeError("error raised") + __init__ code here + __enter__ code goes here + in the context + errors handled here + __exit__ cleanup goes here + --------------------------------------------------------------------------- + RuntimeError Traceback (most recent call last) + in () + 1 with context(False): + 2 print "in the context" + ----> 3 raise RuntimeError("error raised") + 4 + RuntimeError: error raised -* CouchDB (Apache): - * JSON documents +LAB +---- +**Timing Context Manager** - * Javascript querying (MapReduce) +Create a context manager that will print the elapsed time taken to +run all the code inside the context: - * HTTP API +.. code-block:: ipython + In [3]: with Timer() as t: + ...: for i in range(100000): + ...: i = i ** 20 + ...: + this code took 0.206805 seconds -LAB ---- +**Extra Credit**: allow the ``Timer`` context manager to take a file-like +object as an argument (the default should be sys.stdout). The results of the +timing should be printed to the file-like object. -:: - # load with: - from add_book_data import AddressBook +Projects +-------- -* Write a module that saves the data in a dbm datbase +Projects due this Sunday. We'll review them early next week. If you turn +it in early, we should review it sooner. - - and reads it back in +To turn in: + * Put up it up gitHub, and do a pull request + * Put it in its own gitHub repository and point me to it. + * zip up the code an email it to me. -* Write a module that saves the data in an SQLItE datbase +PythonCHB@gmail.com - - and reads it back in +Please do the online course evaluation - - helps to know SQL here... +Anyone want office hours Sunday? +Or another time? +Keep writing Python! \ No newline at end of file diff --git a/slides_sources/source/supplements/index.rst b/slides_sources/source/supplements/index.rst index aef9e219..07d4a91d 100644 --- a/slides_sources/source/supplements/index.rst +++ b/slides_sources/source/supplements/index.rst @@ -1,14 +1,8 @@ +********************** Supplemental Materials -====================== +********************** .. toctree:: :maxdepth: 1 - python_learning_resources - python_for_mac - python_for_windows - python_for_linux - virtualenv - sublime_as_ide - shell unicode diff --git a/slides_sources/source/supplements/python_for_linux.rst b/slides_sources/source/supplements/python_for_linux.rst deleted file mode 100644 index 183be0f5..00000000 --- a/slides_sources/source/supplements/python_for_linux.rst +++ /dev/null @@ -1,96 +0,0 @@ -*********************************************************** -Setting up Linux for Python and this class -*********************************************************** - -NOTE: this is from memory: no system to test on right now. - -================== -Getting The Tools -================== - -Python -------- - -You probably already have python. Try: - -.. code-block:: bash - - $ python - Python 2.7.8 (v2.7.8:ee879c0ffa11, Jun 29 2014, 21:07:35) - [GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on linux - -You can see what version you've got. If you don't have 2.7.*, then you'll need to go try to find a newer version -- your distribution may have a package named something like: - -.. code-block:: bash - - $ apt-get install python2.7 - -Or ``yum install`` or ??? - - -Terminal ---------- - -Every Linux box has a terminal emulator -- find and use it. - - - -git ----- - -git is likely to be there on your system already, but if not: - -.. code-block:: bash - - $apt-get install git - -pip ---- - -``pip`` is the Python package installer. - -Many python packages are also available directly from your distro -- but you'll get the latest and greatest if you use ``pip`` to install it instead. - -To get pip, the first option is to use your system package manager, something like: - -.. code-block:: bash - - $apt-get install python-pip - -If that doesn't work, you can get it from: - -https://pip.pypa.io/en/latest/installing.html - -download ``get-pip.py`` from that site, and run it with python:: - - $ python get-pip.py - -It should download and install ``pip`` (and ``setuptools``) - -You can now use pip to install other packages. - -iPython --------- - -One we are going to use in class is ``iPython``:: - - $ pip install ipython - -You should now be able to run ``iPython``:: - - $ ipython - Python 2.7.8 (v2.7.8:ee879c0ffa11, Jun 29 2014, 21:07:35) - Type "copyright", "credits" or "license" for more information. - - IPython 2.0.0 -- An enhanced Interactive Python. - ? -> Introduction and overview of IPython's features. - %quickref -> Quick reference. - help -> Python's own help system. - object? -> Details about 'object', use 'object??' for extra details. - - - - - - - diff --git a/slides_sources/source/supplements/python_for_mac.rst b/slides_sources/source/supplements/python_for_mac.rst deleted file mode 100644 index 205ab54b..00000000 --- a/slides_sources/source/supplements/python_for_mac.rst +++ /dev/null @@ -1,118 +0,0 @@ -*********************************************************** -Setting up your Mac for Python and this class -*********************************************************** - -================== -Getting The Tools -================== - -.. rst-class:: left - -OS-X comes with Python out of the box, but not the full setup you'll need for development, and this class. - -.. rst-class:: left - -**Note**: - -.. rst-class:: left - -If you use ``macports`` or ``homebrew`` to manage \*nix software on your machine, feel free to use those for ``python``, ``git``, etc, as well. If not, then read on. - -Python -------- - -While OS-X does provide python out of the box -- it tends not to have the -latest version, and you really don't want to mess with the system -installation. So I recommend installing an independent installation from -``python.org``: - -Download and install Python 2.7.8 from Python.org: - -https://www.python.org/ftp/python/2.7.8/python-2.7.8-macosx10.6.dmg - -Simple as that. - - -Terminal ---------- - -The built-in "terminal" application works fine. Find it in: - -:: - - /Applications/Utilities/Terminal - -Drag it to the dock to easy access. - -git ----- - -Get a git client -- the gitHub GUI client may be nice -- I honestly don't know. - -There are a couple options for a command line client. - -This one: - -http://sourceforge.net/projects/git-osx-installer/ - -Is a big download and install, but has everything you need out of the box. - -This one: - -http://git-scm.com/download/mac - -Works great, but you need the XCode command line tools to run it. If you already have that, or expect to need a compiler anyway, then this is a good option. - -You can get XCode from the Apple App Store. - -(If you try running "git" on the command line after installing, it should send you there). - -Warning: XCode is a BIG download. Once installed, run it so it can initialize itself. - -After either of these is installed, the ``git`` command should work: - -.. code-block:: bash - - $ git --version - git version 1.8.5.2 (Apple Git-48) - -pip ---- - -``pip`` is the Python package installer. Unfortunately, it doesn't come out of the box with Python2.7, so you need to install it: - -https://pip.pypa.io/en/latest/installing.html - -download ``get-pip.py`` from that site, and run it with python:: - - $ python get-pip.py - -It should download and install ``pip`` (and ``setuptools``) - -You can now use pip to install other packages. - -iPython --------- - -One we are going to use in class is ``iPython``:: - - $ pip install ipython - -You should now be able to run ``iPython``:: - - $ ipython - Python 2.7.8 (v2.7.8:ee879c0ffa11, Jun 29 2014, 21:07:35) - Type "copyright", "credits" or "license" for more information. - - IPython 2.0.0 -- An enhanced Interactive Python. - ? -> Introduction and overview of IPython's features. - %quickref -> Quick reference. - help -> Python's own help system. - object? -> Details about 'object', use 'object??' for extra details. - - - - - - - diff --git a/slides_sources/source/supplements/python_for_windows.rst b/slides_sources/source/supplements/python_for_windows.rst deleted file mode 100644 index fd54c209..00000000 --- a/slides_sources/source/supplements/python_for_windows.rst +++ /dev/null @@ -1,104 +0,0 @@ -*********************************************************** -Setting up Windows for Python and this class -*********************************************************** - -NOTE: this is from memory: no system to test on right now. - -================== -Getting The Tools -================== - -Python -------- - -There are a number of python distributions available -- many designed for easier support of scientific programming: - -Anaconda -Enthought Canopy -Python(x,y) - -But for core use, the installer from python.org is the way to go: - -https://www.python.org/downloads/ - -You want the installer for Python 2.7.8 -- probably 64 bit, though if you have a 32 bit sytem, you can get that. There is essentially no difference for the purposes of this course. - -Double click and install. - - -Terminal ---------- - -You can use the "DOS Box" as a terminal, though the newer "powershell" is a better option. - -But to use the Python in the terminal efectively, you need to put a couple paths on your "PATH" environment variable: - -http://www.computerhope.com/issues/ch000549.htm - -You want to add: - -``C:\Python2.7`` - -and - -``C:\Python2.7\Scripts`` - -to ``PATH`` - - -git ----- - -Get a git client -- the gitHub GUI client may be nice -- I honestly don't know. - -There is also TortoiseGit: - -https://code.google.com/p/tortoisegit/ - -which integrates git with the filemanager. But for the purposes of learning, it may be better to use a command line client: - -http://git-scm.com/download/win - -I think that gives you a "Git bash shell" -- a command window that gives you a \*nix - like command line shell. - - -pip ---- - -``pip`` is the Python package installer. Unfortunately, it doesn't come out of the box with Python2.7, so you need to install it: - -https://pip.pypa.io/en/latest/installing.html - -download ``get-pip.py`` from that site, and run it with python:: - - $ python get-pip.py - -It should download and install ``pip`` (and ``setuptools``) - -You can now use pip to install other packages. - -iPython --------- - -One we are going to use in class is ``iPython``:: - - $ pip install ipython - -You should now be able to run ``iPython``:: - - $ ipython - Python 2.7.8 (v2.7.8:ee879c0ffa11, Jun 29 2014, 21:07:35) - Type "copyright", "credits" or "license" for more information. - - IPython 2.0.0 -- An enhanced Interactive Python. - ? -> Introduction and overview of IPython's features. - %quickref -> Quick reference. - help -> Python's own help system. - object? -> Details about 'object', use 'object??' for extra details. - - - - - - - diff --git a/slides_sources/source/supplements/python_learning_resources.rst b/slides_sources/source/supplements/python_learning_resources.rst deleted file mode 100644 index d437aac2..00000000 --- a/slides_sources/source/supplements/python_learning_resources.rst +++ /dev/null @@ -1,112 +0,0 @@ -*********************************************************** -Useful Python Learning Resources -*********************************************************** - -In addition to the material we cover in class, there are numerous online -resources to help a newcomer get to know Python. The following list represents -the best-known and best-regarded of the breed. If you are itching for a bit -more work on your Python chops, you should try these out. - -Python Language Resources -=============================== - -As a Python programmer, you'll want to keep a bookmark pointed at the -official Python documentation (https://docs.python.org/2/), especially -the documentation for the standard library -(https://docs.python.org/2/library/index.html). However, there are a -number of additional resources you can (and should) use to help build -your Python chops. - -For the beginner ----------------------- - -* **The Python Tutorial** - (https://docs.python.org/2/tutorial/): This is the - official tutorial from the Python website. No more authoritative source is - available. - -* **Code Academy Python Track** - (http://www.codecademy.com/tracks/python): Often - cited as a great resource, this site offers an entertaining and engaging - approach and in-browser work. - -* **Learn Python the Hard Way** - (http://learnpythonthehardway.org/book/): Solid - and gradual. This course offers a great foundation for folks who have never - programmed in any language before. - -* **Dive Into Python 3** - (http://www.diveinto.org/python3/): The updated version - of a classic. This book offers an introduction to Python aimed at the student - who has experience programming in another language. - -* **Python for You and Me** - (http://pymbook.readthedocs.org/en/latest/): Simple - and clear. This is a great book for absolute newcomers, or to keep as a quick - reference as you get used to the language. - -* **Think Python** - (http://greenteapress.com/thinkpython/): Methodical and - complete. This book offers a very "computer science"-style introduction to - Python. It is really an intro to Python *in the service of* Computer Science, - though, so while helpful for the absolute newcomer, it isn't quite as - "pythonic" as it might be. - -* **Core Python Programming** - (http://corepython.com/): Only available as a dead - trees version, but if you like to have book to hold in your hands anyway, this - is the best textbook style introduction out there. It starts from the - beginning, but gets into the full language. Published in 2009, but still in - print, with updated appendixes available for new language features. - -* **Python 101** - (http://www.blog.pythonlibrary.org/2014/06/03/python-101-book-published-today/) - Available as a reasonably priced ebook. This is a new one from a popular Blogger - about Python. Lots of practical examples. Also avaiable as a Kindle book: - http://www.amazon.com/Python-101-Michael-Driscoll-ebook/dp/B00KQTFHNK - -Next Steps ----------------- - -* **New Coder** - (http://newcoder.io): Advertised as "Five lifejackets to throw to - the new coder", this site offers five very interesting tutorials written in - an engaging style. Not an introduction. More a second step. - -* **OpenHatch** - (https://openhatch.org/wiki/Intermediate_Python_Workshop/Projects): - The Open Hatch project offers a number of workshops with well-paced - intermediate tutorials for Python programming. A great place to go once you - have the basics down and are ready for more challenging work. - -Evaluating Your Options ------------------------------ - -The blurbs above are short descriptions of the material in each resource. I've -drawn them both from my own usage of the various tools, and from a wonderful -set of online reviews -(http://planningadinner.blogspot.com/search/label/So%20you%20want%20to%20learn%20Python.%20What%27s%20next%3F) -done by Marta Maria Casetti on her blog, "Planning a Dinner" -(http://planningadinner.blogspot.com/). -The poster she presented at PyCon 2014 -(http://planningadinner.blogspot.com/2014/04/the-poster.html) -as a result of that research offers some great hints about the aspects of -Python programming best covered by each resource. I would urge any new student -of Python to take the time to look over this poster to help determine the best -path forward for themselves. - -iPython Interpreter Resources -================================== - -iPython is an enhanced interpreter that makes interactive experimentation at the command line much more pleasant and powerful. - -* **The iPython tutorial** - (http://ipython.org/ipython-doc/rel-0.10.2/html/interactive/tutorial.html) - -* **Using IPython for interactive work** - (http://ipython.org/ipython-doc/stable/interactive/index.html) - Learn about the abilities iPython provides for interactive sessions. - -* **The iPython Documentation** - (http://ipython.org/ipython-doc/stable/index.html) - Use this to learn more about iPython's amazing capabilities. diff --git a/slides_sources/source/supplements/shell.rst b/slides_sources/source/supplements/shell.rst deleted file mode 100644 index edc554ff..00000000 --- a/slides_sources/source/supplements/shell.rst +++ /dev/null @@ -1,241 +0,0 @@ -******************************************* -Shell Customizations for Python Development -******************************************* - -The command line is your home as a developer. You must be comfortable there. -In order to improve your comfort there are a number of enhancements you can -make to improve your experience, especially with non-standard software like -``git`` and ``virtualenv`` - -What was that name, again? -========================== - -For example, ``bash`` offers tab completion. But that doesn't extend to -interactions with ``git``. Considering how many branches, tags and remotes you -end up interacting with, and how many long-winded commands there are in -``git``, having a similar autocompletion for them would be very nice. - -The folks who create such things have been kind enough to provide a shell -script that sets this up. And it's not hard to install. - -`The script`_ is called ``git-completion`` and it's available in ``bash``, -``tcsh`` and ``zsh`` flavors. - -.. _The script: https://github.com/git/git/tree/master/contrib/completion - -To use it, download the version of the script that corresponds to your -preferred shell from the tag of the git repo that corresponds to the version of -git you are using. I've got git 1.8.4.2 installed on my machine, so -`this is the version for me`_. Put it in your home directory: - -.. code-block:: bash - - $ cd - $ curl https://raw.github.com/git/git/v1.8.4.2/contrib/completion/git-completion.bash -o .git-completion.bash - -Then source it from your shell startup file: - -.. code-block:: bash - - source ~/.git-completion.bash - -There's even a nifty gist that `does this automatically`_ for OS X. - -.. _this is the version for me: https://raw.github.com/git/git/v1.8.4.2/contrib/completion/git-completion.bash -.. _does this automatically: https://gist.github.com/johngibb/972430 - -Once installed, you should be able to visit any repository you have on your -machine and get tab completion of branch names, remotes and all git commands. - -Where am I, what am I doing? -============================ - -As a working developer, you end up with a *lot* of projects. Even with tab -completion its a chore to remember which branch is checked out, how far ahead -or behind the remote you are, and so on. - -Enter `git-prompt`_. Again, you place this code in your home directory, and -then source it from your shell startup file: - -.. code-block:: bash - - source ~/.git-prompt.sh - -Once you do this you can use the ``__git_ps1`` shell command and a number of -shell variables to configure ``PS1`` and change your shell prompt. You can show -the name of the current branch of a repository when you are in one. You can -get information about the status of HEAD, modified files, stashes, untracked -files and more. - -.. _git-prompt: https://github.com/git/git/blob/master/contrib/completion/git-prompt.sh - -There's two ways to do this. The first is to use ``__git_ps1`` as a command -directly in a ``PS1`` expression in your shell startup file: - -.. code-block:: bash - - export PS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ ' - -The result looks like this: - -.. image:: /_static/simple_prompt.png - :width: 600px - :alt: Overriding PS1 provides a customized shell prompt - - -That's not bad, but a bit of color would be nice, and perhaps breaking things -onto more than one line so you can parse what you're seeing more easily would -be helpful. - -For that, you'll need to change strategies. The ``__git_ps1`` command can be -used as a single element in the expression for ``PS1``. But it can also be -used itself as the ``PROMPT_COMMAND`` env variable (this command is for -``bash``, there's different one for ``zsh``). If defined, this command will be -used to form ``PS1`` dynamically. - -When you use ``__git_ps1`` in this way, a couple of things happen. First, -instead of taking only one optional argument (a format string), you can provide -two or optionally three arguments: - -* The first will be prepended to the output of the command -* The second will be appended after -* The optional third argumment will be used as a format string for the output - of the command itself. If there is no output, it will not appear at all. - -Combining these three elements can be very expressive. For example, A standard -OS X command prompt can be expressed like so: ``\h:\W \u\\\$ ``. If you use this -expression as the second argument, leave the first empty and provide a simple format -ending in a newline for the ``__git_ps1`` output, you get some nice results. - -Enter this in your shell startup file: - -.. code-block:: bash - - PROMPT_COMMAND='__git_ps1 "" "\h:\W \u\\\$ " "[%s]\n"' - -That produces a nice two-line prompt that appears when you're in a git repo, and -disappears when you're not: - -.. image:: /_static/two_line_prompt.png - :width: 600px - :alt: A two-line prompt showing current git repository - -You can also play with setting a few environment variables in your shell -startup file to expand this further. For example, colorizing the output and -providing information about the state of a repo: - -.. code-block:: bash - - GIT_PS1_SHOWDIRTYSTATE=1 - GIT_PS1_SHOWCOLORHINTS=1 - GIT_PS1_SHOWSTASHSTATE=1 - GIT_PS1_SHOWUPSTREAM="auto" - PROMPT_COMMAND='__git_ps1 "" "\h:\W \u\\\$ " "[%s]\n"' - -.. image:: /_static/color_git_prompt.png - :width: 600px - :alt: A colorized git prompt - -Not half bad at all. - -But wait, there's more. -======================= - -The problem with this is that it doesn't play well with another incredibly -useful tool, `virtualenv`_. When you activate a virtualenv, it prepends the name -of the environment you are working on to the shell prompt. - -But it uses the standard ``PS1`` shell variable to do this. Since you've now -used the ``PROMPT_COMMAND`` to create your prompt, ``PS1`` is ignored, and -this nice feature of virtualenv is lost. - -.. _virtualenv: http://virtualenv.org - -Luckily, there is a way out. Bash shell scripting offers `parameter expansion`_ -and a trick of the that syntax can help. Normally, a shell parameter is -referenced like so: - -.. code-block:: bash - - $ PARAM='foobar' - $ echo $PARAM - foobar - -In complicated situations, you can wrap the name of the paramter in curly -braces to avoid confusion with following characters: - -.. code-block:: bash - - $ echo ${PARAM}andthennotparam - foobarandthennotparam - -What is not as well known is that this curly-brace syntax has a lot of -interesting variations. For example, you can use ``PARAM`` as a test and -actually print something else entirely: - -.. code-block:: bash - - $ echo ${PARAM:+'foo'} - foo - $ echo ${PARAM:+'bar'} - - $ - -The key here is the ``:`` bit immediately after ``PARAM``. If the ``+`` -char is present, then if ``PARAM`` is unset or null, what comes after is not -printed, otherwise it is. - -If you look at the script that `activates a virtualenv in bash`_ you'll notice -that it exports ``VIRTUAL_ENV``. This means that so long as a virtualenv is -active, this environmental variable will be set. And it will be unset when no -environment is active. - -.. _parameter expansion: http://www.gnu.org/software/bash/manual/bash.html#Shell-Parameter-Expansion -.. _activates a virtualenv in bash: https://github.com/pypa/virtualenv/blob/develop/virtualenv_embedded/activate.sh - -You can use that! - -Armed with this knowledge, you can construct a shell expression that will either -print the name of the active virtualenv in square brackets, or print nothing if -no virtualenv was active: - -.. code-block:: bash - - $ echo ${VIRTUAL_ENV:+[`basename $VIRTUAL_ENV`]} - - $ source /path/to/someenv/bin/activate - $ echo ${VIRTUAL_ENV:+[`basename $VIRTUAL_ENV`]} - someenv - - -Roll that into your shell startup file. You'll have everything you want. You -can even throw in a little more color for good measure: - -.. code-block:: bash - - source ~/.git-prompt.sh - # PS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ ' - GIT_PS1_SHOWDIRTYSTATE=1 - GIT_PS1_SHOWCOLORHINTS=1 - GIT_PS1_SHOWSTASHSTATE=1 - GIT_PS1_SHOWUPSTREAM="auto" - Color_Off="\[\033[0m\]" - Yellow="\[\033[0;33m\]" - PROMPT_COMMAND='__git_ps1 "${VIRTUAL_ENV:+[$Yellow`basename $VIRTUAL_ENV`$Color_Off]\n}" "\h:\W \u\\\$ " "[%s]\n"' - -And voilà! You've got a shell prompt that informs about all the things you'll -need to know when working on a daily basis: - -.. image:: /_static/virtualenv_prompt.png - :width: 600px - :alt: A shell session showing the prompt with both virtualenv and git information - -Wrap-Up -======= - -There is still a great deal more that you could do with your shell, but this -will suffice for now. If you are interested in reading further, there is -`a lot to learn`_. - -.. _a lot to learn: http://www.gnu.org/software/bash/manual/bash.html - diff --git a/slides_sources/source/supplements/sublime_as_ide.rst b/slides_sources/source/supplements/sublime_as_ide.rst deleted file mode 100644 index f1dff74c..00000000 --- a/slides_sources/source/supplements/sublime_as_ide.rst +++ /dev/null @@ -1,392 +0,0 @@ -************************************************** -Turning Sublime Text Into a Lightweight Python IDE -************************************************** - - -A solid text editor is a developer's best friend. You use it constantly and it -becomes like a second pair of hands. The keyboard commands you use daily -become so engrained in your muscle memory that you stop thinking about them -entirely. - -With Sublime Text, it's possible to turn your text editor into the functional -equivalent of a Python IDE. The best part is you don't have to install an IDE -to do it. - -Requirements -============ - -Here are *my* requirements for an 'IDE': - -* It should provide excellent, configurable syntax colorization. -* It should allow for robust tab completion. -* It should offer the ability to jump to the definition of symbols in other - files. -* It should perform automatic code linting to help avoid silly mistakes. -* It should be able to interact with a Python interpreter such that when - debugging, the editor will follow along with the debugger. - - -Which Version? -============== - -Version 2 will be fine, but I would urge you to consider updating to version 3. -Some of the plugins I recommend are not available for version 2. - - -Basic Settings -============== - -All configuration in Sublime Text is done via `JSON`_. It's simple to learn. go -and read that link then return here. - -There are a number of `different levels of configuration`_ in Sublime Text. You -will most often work on settings at the user level. - -.. _JSON: http://www.json.org -.. _different levels of configuration: http://www.sublimetext.com/docs/3/settings.html - -Open ``Preferences`` -> ``Settings - Default`` to see all the default settings -and choose which to override. - -Create your own set of preferences by opening ``Preferences`` -> ``Settings - -User``. This will create an empty file, you can then copy the settings you want -to override from the default set into your personal settings. - -Here's a reasonable set of preliminary settings (theme, color scheme and font -are quite personal, find ones that suit you.): - -.. code-block:: json - - source - - { - "color_scheme": "Packages/User/Cobalt (SL).tmTheme", - "theme": "Soda Light 3.sublime-theme", - // A font face that helps distinguish between 0 (the number) and 'O' (the letter) - // among other problem characters. - "font_face": "DroidSansMonoSlashed", - // getting older. I wonder if comfy font size increases as a linear - // function of age? - "font_size": 15, - "ignored_packages": - [ - // I'm not a vi user, so this is of no use to me. - "Vintage" - ], - "rulers": - [ - // set text rulers so I can judge line length for pep8 - 72, // docstrings - 79, // optimum code line length - 100 // maximum allowable length - ], - "word_wrap": false, // I hate auto-wrapped text. - "wrap_width": 79 // This is used by a plugin elsewhere - "tab_size": 4, - "translate_tabs_to_spaces": true, - "use_tab_stops": true, - } - - -Especially important is the setting ``translate_tabs_to_spaces``, which ensures -that any time you hit a tab key, the single ``\t`` character is replaced by four -``\s`` characters. In Python this is **vital**! - - -Extending the Editor -==================== - -Most of the requirements above go beyond basic editor function. Use Plugins. - -Sublime Text comes with a great system for `Package Control`_. It handles -installing and uninstalling plugins, and even updates installed plugins for -you. You can also manually install plugins that haven't made it to the big-time -yet, including `ones you write yourself`_. Happily, the plugin system is -Python! - -.. _Package Control: https://sublime.wbond.net -.. _ones you write yourself: http://docs.sublimetext.info/en/latest/extensibility/plugins.html - - -To install a plugin using Package Control, open the ``command palette`` with -``shift-super-P`` (``ctrl-shift-P`` on Windows/Linux). The ``super`` key is -``command`` or ``⌘`` on OS X. When the palette opens, typing ``install`` will -bring up the ``Package Control: Install Package`` command. Hit ``enter`` to -select it. - -.. image:: /_static/pc_menu.png - :width: 600px - :align: center - :alt: The package control command in the command palette. - -After you select the command, Sublime Text fetches an updated list of packages -from the network. It might take a second or two for the list to appear. When it -does, start to type the name of the package you want. Sublime Text filters the -list and shows you what you want to see. To install a plugin, select it with -the mouse, or use arrow keys to navigate the list and hit ``enter`` when your -plugin is highlighted. - -.. image:: /_static/plugin_list.png - :width: 600px - :align: center - -Useful Plugins -============== - -Here are the plugins I've installed to achieve the requirements above. - -Autocompletion --------------- - -By default, Sublime Text will index symbols in open files and projects, but -that doesn't cover installed python packages that may be part of a non-standard -run environment. - -There are two to choose from: - -1. `SublimeCodeIntel`_ offers strong support for multiple languages through - it's own plugin system. It is a bit heavy and requires building an index. -2. `SublimeJedi`_ only supports Python, but is faster and keeps an index on its - own. - -.. _SublimeCodeIntel: https://sublime.wbond.net/packages/SublimeCodeIntel -.. _SublimeJedi: https://sublime.wbond.net/packages/Jedi%20-%20Python%20autocompletion - -I've installed ``SublimeJedi``, and used the following settings *per project* to -ensure that all relevant code is found: - -.. code-block:: json - - { - "folders": - [ - // ... - ], - - "settings": { - // ... - "python_interpreter_path": "/Users/cewing/pythons/python-2.7/bin/python", - - "python_package_paths": [ - "/path/to/project/buildout/parts/omelette" - ] - } - } - -The ``python_interpreter_path`` allows me to indicate which Python executable -should be introspected for symbol definitions. - -The ``python_package_paths`` setting allows designating additional paths that -will be searched for Python packages containing symbols. - -.. image:: /_static/tab_completion.png - :width: 600px - :align: center - :alt: Tab completion provided by SublimeJedi - -Once configured, you should be able to use the ``ctrl-shift-G`` keyboard -shortcut to jump directly to the definition of a symbol. You can also use -``alt-shift-F`` to find other usages of the same symbol elsewhere in your code. - -Code Linting ------------- - -Code linting shows you mistakes you've made in your source *before* you attempt -to run the code. This saves time. Sublime Text has an available plugin for code -linters called `SublimeLinter`_. - -.. _SublimeLinter: http://sublimelinter.readthedocs.org/en/latest/ - - -Python has a couple of great tools available for linting, the `pep8`_ and -`pyflakes`_ packages. ``Pep8`` checks for style violations, lines too long, -extra spaces and so on. ``Pyflakes`` checks for syntactic violations, like -using a symbol that isn't defined or importing a symbol you don't use. - -Another Python linting package, `flake8`_ combines these two, and adds in -`mccabe`_, a tool to check the `cyclomatic complexity`_ of code you write. This -can be of great help in discovering methods and functions that could be -simplified and thus made easier to understand and more testable. - - -.. _pep8: https://pypi.python.org/pypi/pep8 -.. _pyflakes: https://pypi.python.org/pypi/pyflakes -.. _flake8: https://pypi.python.org/pypi/flake8 -.. _mccabe: https://pypi.python.org/pypi/mccabe -.. _cyclomatic complexity: http://en.wikipedia.org/wiki/Cyclomatic_complexity - -There is a nice plugin for the SublimeLinter that `utilizes flake8`_. For it to -work, the plugin will need to have a Python executable that has the Python -tools it needs installed. - - -Use `virtualenv`_ to accomplish this. - -(**Warning:** there is some indication that ``SublimeLinter`` doesn't support -virtual environments. So if you have trouble, it may be best to make sure -that the python packages you need are installed in your main python install, -rather than a virtualenv. To do this, simply skip the virtualenv instrcutions -below, and go on the pip installing.) - -First, create a virtualenv and activate it: - -.. _utilizes flake8: https://sublime.wbond.net/packages/SublimeLinter-flake8 -.. _virtualenv: http://virtualenv.org - -.. code-block:: bash - - $ cd /Users/cewing/virtualenvs - $ virtualenv sublenv - New python executable in sublenv/bin/python - Installing setuptools, pip...done. - $ source sublenv/bin/activate - (sublenv)$ - -Then use Python packaging tools to install the required packages: - -.. code-block:: bash - - (sublenv)$ pip install flake8 - Downloading/unpacking flake8 - [...] - Downloading/unpacking pyflakes>=0.7.3 (from flake8) - [...] - Downloading/unpacking pep8>=1.4.6 (from flake8) - [...] - Downloading/unpacking mccabe>=0.2.1 (from flake8) - [...] - Installing collected packages: flake8, pyflakes, pep8, mccabe - [...] - Successfully installed flake8 pyflakes pep8 mccabe - Cleaning up... - (sublenv)$ - -The Python executable for this ``virtualenv`` now has the required packages -installed. You can look in ``/path/to/sublenv/bin`` to see the executable -commands for each: - - (sublenv)$ ls sublenv/bin - activate easy_install-2.7 pip2.7 - activate.csh flake8 pyflakes - activate.fish pep8 python - activate_this.py pip python2 - easy_install pip2 python2.7 - -Now install SublimeLinter and then SublimeLinter-flake8 using Package Control. - -Here are the settings you can add to ``Preferences`` -> ``Package Settings`` -> -``SublimeLinter`` -> ``Settings - User``: - -.. code-block:: json - - { - //... - "linters": { - "flake8": { - "@disable": false, - "args": [], - "builtins": "", - "excludes": [], - "ignore": "", - "max-complexity": 10, - "max-line-length": null, - "select": "" - } - }, - //... - "paths": { - "linux": [], - "osx": [ - "/Users/cewing/virtualenvs/sublenv/bin" - ], - "windows": [] - }, - "python_paths": { - "linux": [], - "osx": [ - "/Users/cewing/virtualenvs/sublenv/bin" - ], - "windows": [] - }, - //... - } - -The ``paths`` key points to the path that contains the ``flake8`` executable -command. - -The ``python_paths`` key points to the location of the python executable to be -used. - -The settings inside the ``flake8`` object control the performance of the -linter. `Read more about them here`_. - -.. _Read more about them here: https://github.com/SublimeLinter/SublimeLinter-flake8#settings - -.. image:: /_static/flake8_output.png - :width: 600px - :align: center - :alt: Flake8 shows unused import and trailing whitespace issues. - -White Space Management ----------------------- - -One of the issues highlighted by ``flake8`` is trailing spaces. Sublime text -provides a setting that allows you to remove them every time you save a file: - -.. code-block:: json - - source - - { - "trim_trailing_whitespace_on_save": true - } - -**Do not use this setting** - -Removing trailing whitespace by default causes a *ton* of noise in commits. - -Keep commits for stylistic cleanup separate from those that make important -changes to code. - -The `TrailingSpaces`_ SublimeText plugin can help with this. - -.. _TrailingSpaces: https://github.com/SublimeText/TrailingSpaces - -Here are the settings you can use: - -.. code-block:: json - - { - //... - "trailing_spaces_modified_lines_only": true, - "trailing_spaces_trim_on_save": true, - // ... - } - -This allows trimming whitespace on save, but *only on lines you have directly -modified*. You can still trim *all* whitespace manually and keep changesets -free of noise. - -Follow-Along ------------- - -The final requirement for a reasonable IDE experience is to be able to follow a -debugging session in the file where the code exists. - -There is no plugin for SublimeText that supports this. But there is a Python -package you can install into the virtualenv for each of your projects that does -it. - -The package is called `PDBSublimeTextSupport`_ and its simple to install with ``pip``: - -.. _PDBSublimeTextSupport: https://pypi.python.org/pypi/PdbSublimeTextSupport - -.. code-block:: bash - - (projectenv)$ pip install PDBSublimeTextSupport - -With that package installed in the Python that is used for your project, any -breakpoint you set will automatically pop to the surface in SublimeText. And -as you step through the code, you will see the current line in your Sublime -Text file move along with you. - diff --git a/slides_sources/source/supplements/unicode.rst b/slides_sources/source/supplements/unicode.rst index 4e34ce6c..80d9b0b0 100644 --- a/slides_sources/source/supplements/unicode.rst +++ b/slides_sources/source/supplements/unicode.rst @@ -1,17 +1,35 @@ +.. Another verison os the Unicode discussion +.. -- I think there is a bit in here that we'll want to use. -.. _unicode_supplement: +Unicode +======= -=================== -Unicode in Python 2 -=================== +.. rst-class:: left -A quick run-down of Unicode, its use in Python 2, and some of the gotchas that arise. + I hope you all read this: - - Chris Barker + The Absolute Minimum Every Software Developer Absolutely, + Positively Must Know About Unicode and Character Sets (No Excuses!) -History -======= + http://www.joelonsoftware.com/articles/Unicode.html + + If not -- go read it! + +Fact number 1: +-------------- + +.. rst-class:: centered medium + + Everything is made up of bytes + +If it's on disk or transmitted over a network, it's bytes + +Python provides some abstractions to make it easier to deal with bytes + +Unicode is a biggie + +Actually, dealing with numbers rather than bytes is big -- but we take that for granted What the heck is Unicode anyway? @@ -27,55 +45,51 @@ What the heck is Unicode anyway? * But each vendor used the top half (127-255) for different things. - * MacRoman, Windows 1252, etc... + * macroman, Windows 1252, etc... * There is now "latin-1", but still a lot of old files around -* Non-Western European languages required totally incompatible 1-byte encodings +* Non Western-European languages required totally incompatible 1-byte + encodings * No way to mix languages with different alphabets. - -Enter Unicode +Fact number 2: -------------- -The Unicode idea is pretty simple: -* one "code point" for all characters in all languages - -But how do you express that in bytes? - * Early days: we can fit all the code points in a two byte integer (65536 characters) - - * Turns out that didn't work -- now need 32 bit integer to hold all of unicode "raw" (UTC-4) +.. rst-class:: centered medium -Enter "encodings": - * An encoding is a way to map specific bytes to a code point. + The world needs more than 255 charactors. - * Each code point can have one or more bytes. +.. rst-class:: centered + Hello, world! • Здравствуй, мир! -Unicode --------- + Բարեւ, աշխարհի! • !مرحبا ، العالم -A good start: + !שלום, עולם • 여보세요 세계! -The Absolute Minimum Every Software Developer Absolutely, -Positively Must Know About Unicode and Character Sets (No Excuses!) + नमस्ते, दुनिया! • 你好,世界! -http://www.joelonsoftware.com/articles/Unicode.html +Enter Unicode +-------------- -.. nextslide:: +The Unicode idea is pretty simple: -**Everything is Bytes** + * one "code point" for all characters in all languages -* If it's on disk or on a network, it's bytes +But how do you express that in bytes? + * Early days: we can fit all the code points in a two byte integer (65536 characters) -* Python provides some abstractions to make it easier to deal with bytes + * Turns out that didn't work -- we now need 32 bit integer to hold all of unicode + "raw" (UTC-4) -- well we don't need quite that many, but common machines don't have + 24 bit integers. -Unicode is a biggie +Enter "encodings": + * An encoding is a way to map specific bytes to a code point. -(actually, dealing with numbers rather than bytes is big -- but we take that -for granted) + * Each code point can have one or more bytes. Mechanics @@ -89,14 +103,14 @@ Py2 strings are sequences of bytes Unicode strings are sequences of platonic characters It's almost one code point per character -- but there are complications -with combined characters: accents, etc. +with combined characters: accents, etc. (we can ignore those most of the time) Platonic characters cannot be written to disk or network! (ANSI: one character == one byte -- so easy!) -Strings vs unicode +str vs unicode ------------------- Python 2 has two types that let you work with text: @@ -118,7 +132,7 @@ And two ways to work with binary data: In [86]: str is bytes Out[86]: True -``bytes`` is there for py3 compatibility - -but it's good for making your +``bytes`` is there for py3 compatibility -- but it's good for making your intentions clear, too. @@ -135,6 +149,7 @@ It has all the same methods as the string object. (sometimes this feels backwards...) + Using unicode in Py2 --------------------- @@ -226,6 +241,7 @@ Python has a default encoding (usually ascii) The default encoding will get used in unexpected places! + Using unicode everywhere ------------------------- @@ -236,7 +252,7 @@ Python 2.6 and above have a nice feature to make it easier to use unicode everyw from __future__ import unicode_literals After running that line, the ``u''`` is assumed - + .. code-block:: ipython In [1]: s = "this is a regular py2 string" @@ -252,7 +268,7 @@ NOTE: You can still get py2 strings from other sources! Encodings ----------- +--------- What encoding should I use??? @@ -265,13 +281,13 @@ But only a couple you are likely to need: * utf-8 (``*nix``) * utf-16 (Windows) -and of course, still the one-bytes ones. +And of course, still the one-bytes ones. * ASCII * Latin-1 UTF-8 -------- +----- Probably the one you'll use most -- most common in Internet protocols (xml, JSON, etc.) @@ -290,29 +306,31 @@ Gotchas: * ASCII compatible means in may work with default encoding in tests -- but then blow up with real data... UTF-16 --------- +------ Kind of like UTF-8, except it uses at least 16bits (2 bytes) for each character: not ASCII compatible. -But is still needs more than two bytes for some code points, so you still can't process +But it still needs more than two bytes for some code points, so you still can't assume two byte per character. In C/C++ held in a "wide char" or "wide string". MS Windows uses UTF-16, as does (I think) Java. UTF-16 criticism ------------------ +---------------- There is a lot of criticism on the net about UTF-16 -- it's kind of the worst of both worlds: * You can't assume every character is the same number of bytes * It takes up more memory than UTF-8 -`UTF Considered Harmful `_ +`UTF-16 Considered Harmful `_ But to be fair: -Early versions of Unicode: everything fit into two bytes (65536 code points). MS and Java were fairly early adopters, and it seemed simple enough to just use 2 bytes per character. +Early versions of Unicode: everything fit into two bytes (65536 code points). + +MS and Java were fairly early adopters, and it seemed simple enough to just use 2 bytes per character. When it turned out that 4 bytes were really needed, they were kind of stuck in the middle. @@ -325,7 +343,7 @@ a 1-byte per char encoding. * Superset of ASCII suitable for Western European languages. -* The most common one-byte per char encoding for European text. +* The most common one-byte-per-char encoding for European text. * Nice property -- every byte value from 0 to 255 is a valid character ( at least in Python ) @@ -343,7 +361,7 @@ a 1-byte per char encoding. Unicode Docs --------------- +------------ Python Docs Unicode HowTo: @@ -353,8 +371,8 @@ http://docs.python.org/howto/unicode.html .. code-block:: python - import codecs - f = codecs.open('unicode.rst', encoding='utf-8') + import io + f = io.open('hello_unicode.py', encoding='utf-8') for line in f: print repr(line) @@ -364,7 +382,7 @@ Encodings Built-in to Python: Gotchas in Python 2 --------------------- +------------------- file names, etc: @@ -388,9 +406,9 @@ But: some more obscure calls don't support unicode filenames: .. nextslide:: Exception messages: - + * Py2 Exceptions use str when they print messages. - + * But what if you pass in a unicode object? * It is encoded with the default encoding. @@ -399,7 +417,7 @@ Exception messages: NOPE: it swallows it instead. -:download:`exception_test.py <./exception_test.py>`. +:download:`unicode_exception_test.py <./unicode_exception_test.py>`. Unicode in Python 3 ---------------------- @@ -420,11 +438,11 @@ It's all much cleaner. (by the way, the recent implementations are very efficient...) -Exercises -========= Basic Unicode LAB -------------------- +================= + +.. rst-class left * Find some nifty non-ascii characters you might use. @@ -442,11 +460,14 @@ and/ or - :download:`text.utf16 <./text.utf16>` - :download:`text.utf32 <./text.utf32>` -* write some of the text from the first exercise to file -- read that file back in. +* write some of the text from the first exercise to file -- read that + file back in. .. nextslide:: Some Help -reference: http://inamidst.com/stuff/unidata/ +.. rst-class:: left + +Reference: http://inamidst.com/stuff/unidata/ NOTE: if your terminal does not support unicode -- you'll get an error trying to print. Try a different terminal or IDE, or google for a solution. @@ -465,10 +486,10 @@ We saw this earlier ----> 1 u'to \N{INFINITY} and beyond!'.decode('utf-8') /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/utf_8.pyc in decode(input, errors) - 14 + 14 15 def decode(input, errors='strict'): ---> 16 return codecs.utf_8_decode(input, errors, True) - 17 + 17 18 class IncrementalEncoder(codecs.IncrementalEncoder): UnicodeEncodeError: 'ascii' codec can't encode character u'\u221e' in position 3: ordinal not in range(128) @@ -483,7 +504,7 @@ And why 'ascii'? I specified 'utf-8'! It's there for backward compatibility -What's happening under the hood +What's happening under the hood: .. code-block:: python @@ -497,7 +518,8 @@ In this case, it barfs on attempting to encode to 'ascii' So never call decode on a unicode object! -But what if someone passes one into a function of yours that's expecting a py2 string? +But what if someone passes one into a function of yours that's expecting +a py2 string? Type checking and converting -- yeach! @@ -510,5 +532,6 @@ See if you can figure out the decorators: :download:`unicodify.py <./unicodify.py>`. -(This is advanced Python JuJu: Aren't you glad I didn't ask you to write that yourself?) +(This is advanced Python JuJu: Aren't you glad I didn't ask you to write +that yourself?) diff --git a/slides_sources/source/supplements/unicode_exception_test.py b/slides_sources/source/supplements/unicode_exception_test.py new file mode 100755 index 00000000..24666dc2 --- /dev/null +++ b/slides_sources/source/supplements/unicode_exception_test.py @@ -0,0 +1,16 @@ +#!/usr/bin/python + +""" +example for what happens when you pass non-ascii unicode to a Exception +""" + +#msg = u'This is an ASCII-compatible unicode message' + +msg = u'This is an non ASCII\N{EM DASH}compatible unicode message' + +print "\nDo you see this message in the Exception report?\n" +print msg +print + +raise ValueError(msg) + diff --git a/slides_sources/source/supplements/virtualenv.rst b/slides_sources/source/supplements/virtualenv.rst deleted file mode 100644 index 2b11489e..00000000 --- a/slides_sources/source/supplements/virtualenv.rst +++ /dev/null @@ -1,420 +0,0 @@ -.. _virtualenv_section: - -*********************** -Working with Virtualenv -*********************** - -.. rst-class:: medium - - "For every non-standard package installed in a system Python, the gods kill a - kitten" - - - me - -============ -Reasons Why -============ -.. rst-class:: left - - * As a working developer you will need to install packages that aren't in the - Python standard Library - * As a working developer you often need to install *different* versions of the - *same* library for different projects - * Conflicts arising from having the wrong version of a dependency installed can - cause long-term nightmares - * Use `virtualenv`_ ... - * **Always** - - -Installing Virtualenv ---------------------- - -The best way is to install directly in your system Python (one exception to the -rule). - -To do so you will have to have `pip`_ installed. - -Try the following command: - -.. code-block:: bash - - $ which pip - /usr/local/bin/pip - -If the ``which`` command returns no value for you, then ``pip`` is not -installed in your system. To fix this, follow `the instructions here`_. - -Once you have ``pip`` installed in your system, you can use it to install -`virtualenv`_. Because you are installing it into your system python, you will -most likely need ``superuser`` privileges to do so: - -.. code-block:: bash - - $ sudo pip install virtualenv - Downloading/unpacking virtualenv - Downloading virtualenv-1.11.2-py2.py3-none-any.whl (2.8MB): 2.8MB downloaded - Installing collected packages: virtualenv - Successfully installed virtualenv - Cleaning up... - -Great. Once that's done, you should find that you have a ``virtualenv`` -command available to you from your shell: - -.. code-block:: bash - - $ virtualenv --help - Usage: virtualenv [OPTIONS] DEST_DIR - - Options: - --version show program's version number and exit - -h, --help ... - - -.. _pip: http://www.pip-installer.org -.. _the instructions here: http://www.pip-installer.org/en/latest/installing.html - -================ -Using Virtualenv -================ - -.. rst-class:: left - - Creating a new virtualenv is very very simple: - - .. code-block:: bash - - $ virtualenv [options] - - - ```` is just the name of the environment you want to create. It's - arbitrary. Let's make one for demonstration purposes: - - .. code-block:: bash - - $ virtualenv demoenv - New python executable in demoenv/bin/python - Installing setuptools, pip...done. - -What Happened? --------------- - -When you ran that command, a couple of things took place: - -* A new directory with your requested name was created -* A new Python executable was created in /bin (/Scripts on Windows) -* The new Python was cloned from your system Python (where virtualenv was - installed) -* The new Python was isolated from any libraries installed in the old Python -* Setuptools was installed so you have ``easy_install`` for this new python -* Pip was installed so you have ``pip`` for this new python - -Activation ----------- - -The virtual environment you just created, ``demoenv`` contains an executable -Python command, but if you do a quick check to see which Python executable is -found by your terminal, you'll see that it is not the one: - -.. code-block:: bash - - $ which python - /usr/bin/python - -You can execute the new Python by explicitly pointing to it: - -.. code-block:: bash - - $ ./demoenv/bin/python -V - Python 2.7.5 - -but that's tedious and hard to remember. Instead, ``activate`` your virtualenv -using the ``source`` command: - -.. code-block:: bash - - $ source demoenv/bin/activate - (demoenv)$ which python - /Users/cewing/demoenv/bin/python - -There. That's better. Now whenever you run the ``python`` command, the -executable that will be used will be the new one in your ``demoenv``. - -Notice also that the your shell prompt has changed. It indicates which -``virtualenv`` is currently active. Little clues like that really help you to -keep things straight when you've got a lot of projects going on, so it's nice -the makers of virtualenv thought of it. - -Installing Packages -------------------- - -Now that your virtualenv is active, not only has your ``python`` executable been -hijacked, so have ``pip`` and ``easy_install``: - -.. code-block:: bash - - (demoenv)$ which pip - /Users/cewing/demoenv/bin/pip - (demoenv)$ which easy_install - /Users/cewing/demoenv/bin/easy_install - -This means that using these tools to install packages will install them *into -your virtual environment only* and not into the system Python. Let's see this -in action. We'll install a package called ``docutils`` that provides support -for converting ReStructuredText documents into other formats like HTML, LaTeX -and more: - -.. code-block:: bash - - (demoenv)$ pip install docutils - Downloading/unpacking docutils - Downloading docutils-0.11.tar.gz (1.6MB): 1.6MB downloaded - Running setup.py (path:/Users/cewing/demoenv/build/docutils/setup.py) egg_info for package docutils - ... - changing mode of /Users/cewing/demoenv/bin/rst2xml.py to 755 - changing mode of /Users/cewing/demoenv/bin/rstpep2html.py to 755 - Successfully installed docutils - Cleaning up... - -And now, when we fire up our Python interpreter, the docutils package is -available to us: - -.. code-block:: pycon - - (demoenv)$ python - Python 2.7.5 (default, Aug 25 2013, 00:04:04) - [GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.0.68)] on darwin - Type "help", "copyright", "credits" or "license" for more information. - >>> import docutils - >>> docutils.__path__ - ['/Users/cewing/demoenv/lib/python2.7/site-packages/docutils'] - >>> ^d - (demoenv)$ - -There's one other interesting side-effect of installing software with -``virtualenv``. The ``docutils`` package provides a number of executable -scripts when it is installed: ``rst2html.py``, ``rst2latex.py`` and so on. -These scripts are set up to execute using the Python with which they were -built. What this means is that running these scripts will use the Python -executable in your virtualenv, *even if that virtualenv is not active*! - -Deactivation ------------- - -So you've got a virtual environment created. And you've activated it so that -you can install packages and use them. Eventually you'll need to move on to -some other project. This likely means that you'll need to stop working with -this ``virtualenv`` and switch to another (it's a good idea to keep a separate -``virtualenv`` for every project you work on). - -When a ``virtualenv`` is active, all you have to do is use the ``deactivate`` -command: - -.. code-block:: bash - - (demoenv)$ deactivate - $ which python - /usr/bin/python - -Note that your shell prompt returns to normal, and now the executable Python -found when you check ``python`` is the system one again. - -Cleaning Up ------------ - -The final great advantage that ``virtualenv`` confers on you as a developer is -the ability to easily remove a batch of installed Python software from your -system. Consider a situation where you installed a library that breaks your -Python (it happens). If you are working in your system Python, you now have to -figure out what that package installed, where, and go clean it out manually. -With ``virtualenv`` the process is as simple as removing the directory that -virtualenv created when you started out. Let's do that with our ``demoenv``: - -.. code-block:: bash - - $ rm -rf demoenv - -And that's it. The entire environment and all the packages you installed into -it are now gone. There's no traces left to pollute your world. - -VirtualenvWrapper -================= - -So you have this great tool that allows you to build isolated environments in -which you can install Python software. Several questions arise when considering -this. - -* Where should such environments be placed? -* How can the environments be tied to the projects you are working on? -* Once you have more than a trivial number of projects, how can you keep track - of all these virtualenvs? - -Like any good tool, ``virtualenv`` does not impose on you any particular way of -working. You can place your environments into the directories where you are -building the project to which they apply. You can keep them all in a single -global location. You can build a random path generator that drops them -wherever. - -But any of these methods lead inevetably to chaos. They require too much from -you. It would be better if you could manage your virtual environments easily -and intuitively. - -With `virtualenvwrapper`_ you can. - -Installation ------------- - -Let's start by installing the package in our system Python, alongside -``virtualenv`` (again, you'll need ``superuser`` to do this): - -.. code-block:: bash - - $ sudo pip install virtualenvwrapper - Downloading/unpacking virtualenvwrapper - Downloading virtualenvwrapper-4.2.tar.gz (125kB): 125kB downloaded - Running setup.py (path:/private/tmp/pip_build_root/virtualenvwrapper/setup.py) egg_info for package virtualenvwrapper - ... - Successfully installed virtualenvwrapper virtualenv-clone stevedore - Cleaning up... - $ - -Once that's finished, you'll need to wire the system up by letting your shell -know that the commands it provides are present. Add the following lines to your -shell startup file (``.profile``, ``.bash-profile``, ...): - -.. code-block:: bash - - export WORKON_HOME=~/.virtualenvs - source /usr/local/bin/virtualenvwrapper.sh - -This will create a new environmental variable, ``WORKON_HOME``, that determines -where new virtual environments will be created. The actual name is completely -arbitrary. - -You'll need to be sure that the location you set exists: - -.. code-block:: bash - - $ mkdir ~/.virtualenvs - -Using ``mkvirtualenv`` ----------------------- - -When you've done that, start a new terminal and you'll have access to the -``mkvirtualenv`` command: - -.. code-block:: bash - - $ mkvirtualenv testenv - New python executable in testenv/bin/python - Installing setuptools, pip...done. - (testenv)$ ls ~/.virtualenvs - testenv - (testenv)$ which python - /Users/cewing/.virtualenvs/testenv/bin/python - (testenv)$ - -Notice a couple of things: - -* The new environment you asked for was created in ``WORKON_HOME`` -* The new environment was *immedately* activated for you - -That's a nice feature, eh? No more needing to remember to ``activate`` the env -you just created to install packages. - -Using ``workon`` ----------------- - -In addition to this nice little feature, you can also use the ``workon`` -command to see which environments you have, and to switch from one to another: - -.. code-block:: bash - - (testenv)$ workon - testenv - (testenv)$ mkvirtualenv number2 - New python executable in number2/bin/python - Installing setuptools, pip...done. - (number2)$ workon - number2 - testenv - (number2)$ workon testenv - (testenv)$ - -Sweet! - -The same ``deactivate`` command can get you back to your system environment: - -.. code-block:: bash - - (testenv)$ deactivate - $ - -Using ``mkproject`` -------------------- - -That takes care of deciding where to put new environments. It also clears up -the question of how to remember which ones you have and how to start them up -and switch between them. But we still have to figure out how to remember which -environment goes with which project. - -That's what the ``mkproject`` command is for. - -First, go back to your shell startup file and add a new environmental variable: - -.. code-block:: bash - - export PROJECT_HOME=~/projects #<- this line here is new - export WORKON_HOME=~/.virtualenvs - source /usr/local/bin/virtualenvwrapper.sh - -Then, make sure the directory you named exists: - -.. code-block:: bash - - $ mkdir ~/projects - -After all that, fire up a new shell to pick up the changes and try this: - -.. code-block:: bash - - $ mkproject foo - New python executable in foo/bin/python - Installing setuptools, pip...done. - Creating /Users/cewing/projects/foo - Setting project for foo to /Users/cewing/projects/foo - (foo)$ which python - /Users/cewing/.virtualenvs/foo/bin/python - (foo)$ pwd - /Users/cewing/projects/foo - (foo)$ ls -a $VIRTUAL_ENV - . .Python bin lib - .. .project include - (foo)$ more $VIRTUAL_ENV/.project - /Users/cewing/projects/foo - -Whoa! That command did a lot: - -* Created a new ``virtualenv`` in your ``$WORKON_HOME`` -* Created a new project directory in your ``$PROJECT_HOME`` -* Placed a ``.project`` file in your home directory with a path leading to the - associated project directory -* Activated the new virtualenv for you -* Automatically moved your present working directory to the new project - directory. - -And now, you can begin working on your ``foo`` project, secure that you will be -installing packages into the right environment. - -A Few Last Words -================ - -This quick introduction is **by no means** an exhaustive manual for either of -the packages we've talked about. There is a great deal more that they can do. -In particular, ``virtualenvwrapper`` is highly customizable, with support for -custom scripts to be hooked into every stage of the ``virtualenv`` workflow. - -I urge you to read the documentation for `virtualenv`_ and `virtualenvwrapper`_ -yourself to find out more. - -.. _virtualenv: http://www.virtualenv.org/ -.. _virtualenvwrapper: http://virtualenvwrapper.readthedocs.org